index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SearchAlertRulesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class SearchAlertRulesRequest extends RpcAcsRequest<SearchAlertRulesResponse> { private String appType; private Integer currentPage; private String pid; private String systemRegionId; private String title; private String type; private List<Tags> tagss; private String resourceGroupId; private String alertRuleId; private Integer pageSize; public SearchAlertRulesRequest() { super("ARMS", "2019-08-08", "SearchAlertRules", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAppType() { return this.appType; } public void setAppType(String appType) { this.appType = appType; if(appType != null){ putQueryParameter("AppType", appType); } } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; if(currentPage != null){ putQueryParameter("CurrentPage", currentPage.toString()); } } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; if(pid != null){ putQueryParameter("Pid", pid); } } public String getSystemRegionId() { return this.systemRegionId; } public void setSystemRegionId(String systemRegionId) { this.systemRegionId = systemRegionId; if(systemRegionId != null){ putQueryParameter("SystemRegionId", systemRegionId); } } public String getTitle() { return this.title; } public void setTitle(String title) { this.title = title; if(title != null){ putQueryParameter("Title", title); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } public List<Tags> getTagss() { return this.tagss; } public void setTagss(List<Tags> tagss) { this.tagss = tagss; if (tagss != null) { for (int depth1 = 0; depth1 < tagss.size(); depth1++) { putQueryParameter("Tags." + (depth1 + 1) + ".Value" , tagss.get(depth1).getValue()); putQueryParameter("Tags." + (depth1 + 1) + ".Key" , tagss.get(depth1).getKey()); } } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public String getAlertRuleId() { return this.alertRuleId; } public void setAlertRuleId(String alertRuleId) { this.alertRuleId = alertRuleId; if(alertRuleId != null){ putQueryParameter("AlertRuleId", alertRuleId); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public static class Tags { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<SearchAlertRulesResponse> getResponseClass() { return SearchAlertRulesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SearchAlertRulesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.SearchAlertRulesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SearchAlertRulesResponse extends AcsResponse { private String requestId; private PageBean pageBean; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public PageBean getPageBean() { return this.pageBean; } public void setPageBean(PageBean pageBean) { this.pageBean = pageBean; } public static class PageBean { private Integer pageNumber; private Integer pageSize; private Integer totalCount; private List<AlertRuleEntity> alertRules; public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<AlertRuleEntity> getAlertRules() { return this.alertRules; } public void setAlertRules(List<AlertRuleEntity> alertRules) { this.alertRules = alertRules; } public static class AlertRuleEntity { private String status; private Long updateTime; private String contactGroupIdList; private Long createTime; private String alertTitle; private String userId; private Integer alertVersion; private Boolean hostByAlertManager; private Integer alertType; private String contactGroupIds; private String config; private String regionId; private String alertLevel; private String taskStatus; private String title; private Long taskId; private Long id; private String resourceGroupId; private List<String> alertWays; private List<String> alertWay; private AlarmContext alarmContext; private AlertRule alertRule; private MetricParam metricParam; private Notice notice; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public Long getUpdateTime() { return this.updateTime; } public void setUpdateTime(Long updateTime) { this.updateTime = updateTime; } public String getContactGroupIdList() { return this.contactGroupIdList; } public void setContactGroupIdList(String contactGroupIdList) { this.contactGroupIdList = contactGroupIdList; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public String getAlertTitle() { return this.alertTitle; } public void setAlertTitle(String alertTitle) { this.alertTitle = alertTitle; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } public Integer getAlertVersion() { return this.alertVersion; } public void setAlertVersion(Integer alertVersion) { this.alertVersion = alertVersion; } public Boolean getHostByAlertManager() { return this.hostByAlertManager; } public void setHostByAlertManager(Boolean hostByAlertManager) { this.hostByAlertManager = hostByAlertManager; } public Integer getAlertType() { return this.alertType; } public void setAlertType(Integer alertType) { this.alertType = alertType; } public String getContactGroupIds() { return this.contactGroupIds; } public void setContactGroupIds(String contactGroupIds) { this.contactGroupIds = contactGroupIds; } public String getConfig() { return this.config; } public void setConfig(String config) { this.config = config; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getAlertLevel() { return this.alertLevel; } public void setAlertLevel(String alertLevel) { this.alertLevel = alertLevel; } public String getTaskStatus() { return this.taskStatus; } public void setTaskStatus(String taskStatus) { this.taskStatus = taskStatus; } public String getTitle() { return this.title; } public void setTitle(String title) { this.title = title; } public Long getTaskId() { return this.taskId; } public void setTaskId(Long taskId) { this.taskId = taskId; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; } public List<String> getAlertWays() { return this.alertWays; } public void setAlertWays(List<String> alertWays) { this.alertWays = alertWays; } public List<String> getAlertWay() { return this.alertWay; } public void setAlertWay(List<String> alertWay) { this.alertWay = alertWay; } public AlarmContext getAlarmContext() { return this.alarmContext; } public void setAlarmContext(AlarmContext alarmContext) { this.alarmContext = alarmContext; } public AlertRule getAlertRule() { return this.alertRule; } public void setAlertRule(AlertRule alertRule) { this.alertRule = alertRule; } public MetricParam getMetricParam() { return this.metricParam; } public void setMetricParam(MetricParam metricParam) { this.metricParam = metricParam; } public Notice getNotice() { return this.notice; } public void setNotice(Notice notice) { this.notice = notice; } public static class AlarmContext { private String alarmContentTemplate; private String subTitle; private String alarmContentSubTitle; private String content; public String getAlarmContentTemplate() { return this.alarmContentTemplate; } public void setAlarmContentTemplate(String alarmContentTemplate) { this.alarmContentTemplate = alarmContentTemplate; } public String getSubTitle() { return this.subTitle; } public void setSubTitle(String subTitle) { this.subTitle = subTitle; } public String getAlarmContentSubTitle() { return this.alarmContentSubTitle; } public void setAlarmContentSubTitle(String alarmContentSubTitle) { this.alarmContentSubTitle = alarmContentSubTitle; } public String getContent() { return this.content; } public void setContent(String content) { this.content = content; } } public static class AlertRule { private String operator; private List<Rule> rules; public String getOperator() { return this.operator; } public void setOperator(String operator) { this.operator = operator; } public List<Rule> getRules() { return this.rules; } public void setRules(List<Rule> rules) { this.rules = rules; } public static class Rule { private String measure; private Float value; private String aggregates; private Integer nValue; private String operator; private String alias; public String getMeasure() { return this.measure; } public void setMeasure(String measure) { this.measure = measure; } public Float getValue() { return this.value; } public void setValue(Float value) { this.value = value; } public String getAggregates() { return this.aggregates; } public void setAggregates(String aggregates) { this.aggregates = aggregates; } public Integer getNValue() { return this.nValue; } public void setNValue(Integer nValue) { this.nValue = nValue; } public String getOperator() { return this.operator; } public void setOperator(String operator) { this.operator = operator; } public String getAlias() { return this.alias; } public void setAlias(String alias) { this.alias = alias; } } } public static class MetricParam { private String type; private String appGroupId; private String appId; private String pid; private List<Dimension> dimensions; public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getAppGroupId() { return this.appGroupId; } public void setAppGroupId(String appGroupId) { this.appGroupId = appGroupId; } public String getAppId() { return this.appId; } public void setAppId(String appId) { this.appId = appId; } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; } public List<Dimension> getDimensions() { return this.dimensions; } public void setDimensions(List<Dimension> dimensions) { this.dimensions = dimensions; } public static class Dimension { private String key; private String type; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } } public static class Notice { private Long endTime; private Long noticeEndTime; private Long startTime; private Long noticeStartTime; public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; } public Long getNoticeEndTime() { return this.noticeEndTime; } public void setNoticeEndTime(Long noticeEndTime) { this.noticeEndTime = noticeEndTime; } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; } public Long getNoticeStartTime() { return this.noticeStartTime; } public void setNoticeStartTime(Long noticeStartTime) { this.noticeStartTime = noticeStartTime; } } } } @Override public SearchAlertRulesResponse getInstance(UnmarshallerContext context) { return SearchAlertRulesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SearchEventsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class SearchEventsRequest extends RpcAcsRequest<SearchEventsResponse> { private Integer isTrigger; private String appType; private Long endTime; private String pid; private Integer currentPage; private Long startTime; private Integer alertType; private Integer pageSize; private Long alertId; public SearchEventsRequest() { super("ARMS", "2019-08-08", "SearchEvents", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getIsTrigger() { return this.isTrigger; } public void setIsTrigger(Integer isTrigger) { this.isTrigger = isTrigger; if(isTrigger != null){ putQueryParameter("IsTrigger", isTrigger.toString()); } } public String getAppType() { return this.appType; } public void setAppType(String appType) { this.appType = appType; if(appType != null){ putQueryParameter("AppType", appType); } } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("EndTime", endTime.toString()); } } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; if(pid != null){ putQueryParameter("Pid", pid); } } public Integer getCurrentPage() { return this.currentPage; } public void setCurrentPage(Integer currentPage) { this.currentPage = currentPage; if(currentPage != null){ putQueryParameter("CurrentPage", currentPage.toString()); } } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("StartTime", startTime.toString()); } } public Integer getAlertType() { return this.alertType; } public void setAlertType(Integer alertType) { this.alertType = alertType; if(alertType != null){ putQueryParameter("AlertType", alertType.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Long getAlertId() { return this.alertId; } public void setAlertId(Long alertId) { this.alertId = alertId; if(alertId != null){ putQueryParameter("AlertId", alertId.toString()); } } @Override public Class<SearchEventsResponse> getResponseClass() { return SearchEventsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SearchEventsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.SearchEventsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SearchEventsResponse extends AcsResponse { private Integer isTrigger; private String requestId; private PageBean pageBean; public Integer getIsTrigger() { return this.isTrigger; } public void setIsTrigger(Integer isTrigger) { this.isTrigger = isTrigger; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public PageBean getPageBean() { return this.pageBean; } public void setPageBean(PageBean pageBean) { this.pageBean = pageBean; } public static class PageBean { private Integer pageNumber; private Integer pageSize; private Integer totalCount; private List<EventItem> event; public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<EventItem> getEvent() { return this.event; } public void setEvent(List<EventItem> event) { this.event = event; } public static class EventItem { private Long eventTime; private String eventLevel; private String alertRule; private String message; private Integer alertType; private String alertName; private Long id; private Long alertId; private List<String> links; public Long getEventTime() { return this.eventTime; } public void setEventTime(Long eventTime) { this.eventTime = eventTime; } public String getEventLevel() { return this.eventLevel; } public void setEventLevel(String eventLevel) { this.eventLevel = eventLevel; } public String getAlertRule() { return this.alertRule; } public void setAlertRule(String alertRule) { this.alertRule = alertRule; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getAlertType() { return this.alertType; } public void setAlertType(Integer alertType) { this.alertType = alertType; } public String getAlertName() { return this.alertName; } public void setAlertName(String alertName) { this.alertName = alertName; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public Long getAlertId() { return this.alertId; } public void setAlertId(Long alertId) { this.alertId = alertId; } public List<String> getLinks() { return this.links; } public void setLinks(List<String> links) { this.links = links; } } } @Override public SearchEventsResponse getInstance(UnmarshallerContext context) { return SearchEventsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SearchRetcodeAppByPageRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class SearchRetcodeAppByPageRequest extends RpcAcsRequest<SearchRetcodeAppByPageResponse> { private String retcodeAppId; private Integer pageNumber; private List<Tags> tagss; private String resourceGroupId; private String retcodeAppName; private Integer pageSize; public SearchRetcodeAppByPageRequest() { super("ARMS", "2019-08-08", "SearchRetcodeAppByPage", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getRetcodeAppId() { return this.retcodeAppId; } public void setRetcodeAppId(String retcodeAppId) { this.retcodeAppId = retcodeAppId; if(retcodeAppId != null){ putQueryParameter("RetcodeAppId", retcodeAppId); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public List<Tags> getTagss() { return this.tagss; } public void setTagss(List<Tags> tagss) { this.tagss = tagss; if (tagss != null) { for (int depth1 = 0; depth1 < tagss.size(); depth1++) { putQueryParameter("Tags." + (depth1 + 1) + ".Value" , tagss.get(depth1).getValue()); putQueryParameter("Tags." + (depth1 + 1) + ".Key" , tagss.get(depth1).getKey()); } } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public String getRetcodeAppName() { return this.retcodeAppName; } public void setRetcodeAppName(String retcodeAppName) { this.retcodeAppName = retcodeAppName; if(retcodeAppName != null){ putQueryParameter("RetcodeAppName", retcodeAppName); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public static class Tags { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<SearchRetcodeAppByPageResponse> getResponseClass() { return SearchRetcodeAppByPageResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SearchRetcodeAppByPageResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.SearchRetcodeAppByPageResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SearchRetcodeAppByPageResponse extends AcsResponse { private String requestId; private PageBean pageBean; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public PageBean getPageBean() { return this.pageBean; } public void setPageBean(PageBean pageBean) { this.pageBean = pageBean; } public static class PageBean { private Integer pageNumber; private Integer pageSize; private Integer totalCount; private List<RetcodeApp> retcodeApps; public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<RetcodeApp> getRetcodeApps() { return this.retcodeApps; } public void setRetcodeApps(List<RetcodeApp> retcodeApps) { this.retcodeApps = retcodeApps; } public static class RetcodeApp { private String type; private String appName; private String retcodeAppType; private Long updateTime; private Long createTime; private String pid; private Long appId; private String userId; private String regionId; private String nickName; private String resourceGroupId; private List<TagsItem> tags; public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public String getRetcodeAppType() { return this.retcodeAppType; } public void setRetcodeAppType(String retcodeAppType) { this.retcodeAppType = retcodeAppType; } public Long getUpdateTime() { return this.updateTime; } public void setUpdateTime(Long updateTime) { this.updateTime = updateTime; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; } public Long getAppId() { return this.appId; } public void setAppId(Long appId) { this.appId = appId; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getNickName() { return this.nickName; } public void setNickName(String nickName) { this.nickName = nickName; } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; } public List<TagsItem> getTags() { return this.tags; } public void setTags(List<TagsItem> tags) { this.tags = tags; } public static class TagsItem { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } } } @Override public SearchRetcodeAppByPageResponse getInstance(UnmarshallerContext context) { return SearchRetcodeAppByPageResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SearchTraceAppByNameRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class SearchTraceAppByNameRequest extends RpcAcsRequest<SearchTraceAppByNameResponse> { private String traceAppName; private List<Tags> tagss; public SearchTraceAppByNameRequest() { super("ARMS", "2019-08-08", "SearchTraceAppByName", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getTraceAppName() { return this.traceAppName; } public void setTraceAppName(String traceAppName) { this.traceAppName = traceAppName; if(traceAppName != null){ putQueryParameter("TraceAppName", traceAppName); } } public List<Tags> getTagss() { return this.tagss; } public void setTagss(List<Tags> tagss) { this.tagss = tagss; if (tagss != null) { for (int depth1 = 0; depth1 < tagss.size(); depth1++) { putQueryParameter("Tags." + (depth1 + 1) + ".Value" , tagss.get(depth1).getValue()); putQueryParameter("Tags." + (depth1 + 1) + ".Key" , tagss.get(depth1).getKey()); } } } public static class Tags { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<SearchTraceAppByNameResponse> getResponseClass() { return SearchTraceAppByNameResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SearchTraceAppByNameResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.SearchTraceAppByNameResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SearchTraceAppByNameResponse extends AcsResponse { private String requestId; private List<TraceApp> traceApps; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<TraceApp> getTraceApps() { return this.traceApps; } public void setTraceApps(List<TraceApp> traceApps) { this.traceApps = traceApps; } public static class TraceApp { private String type; private String appName; private Long updateTime; private Boolean show; private Long createTime; private String pid; private Long appId; private String userId; private String regionId; private String resourceGroupId; private List<TagsItem> tags; private List<String> labels; public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public Long getUpdateTime() { return this.updateTime; } public void setUpdateTime(Long updateTime) { this.updateTime = updateTime; } public Boolean getShow() { return this.show; } public void setShow(Boolean show) { this.show = show; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; } public Long getAppId() { return this.appId; } public void setAppId(Long appId) { this.appId = appId; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; } public List<TagsItem> getTags() { return this.tags; } public void setTags(List<TagsItem> tags) { this.tags = tags; } public List<String> getLabels() { return this.labels; } public void setLabels(List<String> labels) { this.labels = labels; } public static class TagsItem { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } } @Override public SearchTraceAppByNameResponse getInstance(UnmarshallerContext context) { return SearchTraceAppByNameResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SearchTraceAppByPageRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class SearchTraceAppByPageRequest extends RpcAcsRequest<SearchTraceAppByPageResponse> { private Integer pageNumber; private List<Tags> tagss; private String resourceGroupId; private String traceAppName; private Integer pageSize; public SearchTraceAppByPageRequest() { super("ARMS", "2019-08-08", "SearchTraceAppByPage", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public List<Tags> getTagss() { return this.tagss; } public void setTagss(List<Tags> tagss) { this.tagss = tagss; if (tagss != null) { for (int depth1 = 0; depth1 < tagss.size(); depth1++) { putQueryParameter("Tags." + (depth1 + 1) + ".Value" , tagss.get(depth1).getValue()); putQueryParameter("Tags." + (depth1 + 1) + ".Key" , tagss.get(depth1).getKey()); } } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public String getTraceAppName() { return this.traceAppName; } public void setTraceAppName(String traceAppName) { this.traceAppName = traceAppName; if(traceAppName != null){ putQueryParameter("TraceAppName", traceAppName); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public static class Tags { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<SearchTraceAppByPageResponse> getResponseClass() { return SearchTraceAppByPageResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SearchTraceAppByPageResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.SearchTraceAppByPageResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SearchTraceAppByPageResponse extends AcsResponse { private String requestId; private PageBean pageBean; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public PageBean getPageBean() { return this.pageBean; } public void setPageBean(PageBean pageBean) { this.pageBean = pageBean; } public static class PageBean { private Integer pageNumber; private Integer pageSize; private Integer totalCount; private List<TraceApp> traceApps; public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public List<TraceApp> getTraceApps() { return this.traceApps; } public void setTraceApps(List<TraceApp> traceApps) { this.traceApps = traceApps; } public static class TraceApp { private String type; private String appName; private Long updateTime; private Boolean show; private Long createTime; private String pid; private Long appId; private String userId; private String regionId; private String resourceGroupId; private List<TagsItem> tags; private List<String> labels; public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; } public Long getUpdateTime() { return this.updateTime; } public void setUpdateTime(Long updateTime) { this.updateTime = updateTime; } public Boolean getShow() { return this.show; } public void setShow(Boolean show) { this.show = show; } public Long getCreateTime() { return this.createTime; } public void setCreateTime(Long createTime) { this.createTime = createTime; } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; } public Long getAppId() { return this.appId; } public void setAppId(Long appId) { this.appId = appId; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; } public List<TagsItem> getTags() { return this.tags; } public void setTags(List<TagsItem> tags) { this.tags = tags; } public List<String> getLabels() { return this.labels; } public void setLabels(List<String> labels) { this.labels = labels; } public static class TagsItem { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } } } @Override public SearchTraceAppByPageResponse getInstance(UnmarshallerContext context) { return SearchTraceAppByPageResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SearchTracesByPageRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class SearchTracesByPageRequest extends RpcAcsRequest<SearchTracesByPageResponse> { private Long endTime; private String pid; private Long startTime; private Boolean reverse; private Long minDuration; private Integer pageNumber; private Boolean isError; private List<Tags> tagss; private String serviceIp; private List<ExclusionFilters> exclusionFilterss; private String operationName; private Integer pageSize; private String serviceName; public SearchTracesByPageRequest() { super("ARMS", "2019-08-08", "SearchTracesByPage", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("EndTime", endTime.toString()); } } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; if(pid != null){ putQueryParameter("Pid", pid); } } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("StartTime", startTime.toString()); } } public Boolean getReverse() { return this.reverse; } public void setReverse(Boolean reverse) { this.reverse = reverse; if(reverse != null){ putQueryParameter("Reverse", reverse.toString()); } } public Long getMinDuration() { return this.minDuration; } public void setMinDuration(Long minDuration) { this.minDuration = minDuration; if(minDuration != null){ putQueryParameter("MinDuration", minDuration.toString()); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Boolean getIsError() { return this.isError; } public void setIsError(Boolean isError) { this.isError = isError; if(isError != null){ putQueryParameter("IsError", isError.toString()); } } public List<Tags> getTagss() { return this.tagss; } public void setTagss(List<Tags> tagss) { this.tagss = tagss; if (tagss != null) { for (int depth1 = 0; depth1 < tagss.size(); depth1++) { putQueryParameter("Tags." + (depth1 + 1) + ".Value" , tagss.get(depth1).getValue()); putQueryParameter("Tags." + (depth1 + 1) + ".Key" , tagss.get(depth1).getKey()); } } } public String getServiceIp() { return this.serviceIp; } public void setServiceIp(String serviceIp) { this.serviceIp = serviceIp; if(serviceIp != null){ putQueryParameter("ServiceIp", serviceIp); } } public List<ExclusionFilters> getExclusionFilterss() { return this.exclusionFilterss; } public void setExclusionFilterss(List<ExclusionFilters> exclusionFilterss) { this.exclusionFilterss = exclusionFilterss; if (exclusionFilterss != null) { for (int depth1 = 0; depth1 < exclusionFilterss.size(); depth1++) { putQueryParameter("ExclusionFilters." + (depth1 + 1) + ".Value" , exclusionFilterss.get(depth1).getValue()); putQueryParameter("ExclusionFilters." + (depth1 + 1) + ".Key" , exclusionFilterss.get(depth1).getKey()); } } } public String getOperationName() { return this.operationName; } public void setOperationName(String operationName) { this.operationName = operationName; if(operationName != null){ putQueryParameter("OperationName", operationName); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getServiceName() { return this.serviceName; } public void setServiceName(String serviceName) { this.serviceName = serviceName; if(serviceName != null){ putQueryParameter("ServiceName", serviceName); } } public static class Tags { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } public static class ExclusionFilters { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<SearchTracesByPageResponse> getResponseClass() { return SearchTracesByPageResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SearchTracesByPageResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.SearchTracesByPageResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SearchTracesByPageResponse extends AcsResponse { private String requestId; private PageBean pageBean; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public PageBean getPageBean() { return this.pageBean; } public void setPageBean(PageBean pageBean) { this.pageBean = pageBean; } public static class PageBean { private Integer pageNumber; private Integer pageSize; private Integer total; private List<TraceInfo> traceInfos; public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getTotal() { return this.total; } public void setTotal(Integer total) { this.total = total; } public List<TraceInfo> getTraceInfos() { return this.traceInfos; } public void setTraceInfos(List<TraceInfo> traceInfos) { this.traceInfos = traceInfos; } public static class TraceInfo { private String operationName; private String serviceIp; private Long duration; private Long timestamp; private String serviceName; private String traceID; private String spanID; public String getOperationName() { return this.operationName; } public void setOperationName(String operationName) { this.operationName = operationName; } public String getServiceIp() { return this.serviceIp; } public void setServiceIp(String serviceIp) { this.serviceIp = serviceIp; } public Long getDuration() { return this.duration; } public void setDuration(Long duration) { this.duration = duration; } public Long getTimestamp() { return this.timestamp; } public void setTimestamp(Long timestamp) { this.timestamp = timestamp; } public String getServiceName() { return this.serviceName; } public void setServiceName(String serviceName) { this.serviceName = serviceName; } public String getTraceID() { return this.traceID; } public void setTraceID(String traceID) { this.traceID = traceID; } public String getSpanID() { return this.spanID; } public void setSpanID(String spanID) { this.spanID = spanID; } } } @Override public SearchTracesByPageResponse getInstance(UnmarshallerContext context) { return SearchTracesByPageResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SearchTracesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class SearchTracesRequest extends RpcAcsRequest<SearchTracesResponse> { private Long endTime; private String pid; private Long startTime; private Boolean reverse; private Long minDuration; private String serviceIp; private List<ExclusionFilters> exclusionFilterss; private String operationName; private String serviceName; private List<Tag> tags; public SearchTracesRequest() { super("ARMS", "2019-08-08", "SearchTraces", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("EndTime", endTime.toString()); } } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; if(pid != null){ putQueryParameter("Pid", pid); } } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("StartTime", startTime.toString()); } } public Boolean getReverse() { return this.reverse; } public void setReverse(Boolean reverse) { this.reverse = reverse; if(reverse != null){ putQueryParameter("Reverse", reverse.toString()); } } public Long getMinDuration() { return this.minDuration; } public void setMinDuration(Long minDuration) { this.minDuration = minDuration; if(minDuration != null){ putQueryParameter("MinDuration", minDuration.toString()); } } public String getServiceIp() { return this.serviceIp; } public void setServiceIp(String serviceIp) { this.serviceIp = serviceIp; if(serviceIp != null){ putQueryParameter("ServiceIp", serviceIp); } } public List<ExclusionFilters> getExclusionFilterss() { return this.exclusionFilterss; } public void setExclusionFilterss(List<ExclusionFilters> exclusionFilterss) { this.exclusionFilterss = exclusionFilterss; if (exclusionFilterss != null) { for (int depth1 = 0; depth1 < exclusionFilterss.size(); depth1++) { putQueryParameter("ExclusionFilters." + (depth1 + 1) + ".Value" , exclusionFilterss.get(depth1).getValue()); putQueryParameter("ExclusionFilters." + (depth1 + 1) + ".Key" , exclusionFilterss.get(depth1).getKey()); } } } public String getOperationName() { return this.operationName; } public void setOperationName(String operationName) { this.operationName = operationName; if(operationName != null){ putQueryParameter("OperationName", operationName); } } public String getServiceName() { return this.serviceName; } public void setServiceName(String serviceName) { this.serviceName = serviceName; if(serviceName != null){ putQueryParameter("ServiceName", serviceName); } } public List<Tag> getTags() { return this.tags; } public void setTags(List<Tag> tags) { this.tags = tags; if (tags != null) { for (int depth1 = 0; depth1 < tags.size(); depth1++) { putQueryParameter("Tag." + (depth1 + 1) + ".Value" , tags.get(depth1).getValue()); putQueryParameter("Tag." + (depth1 + 1) + ".Key" , tags.get(depth1).getKey()); } } } public static class ExclusionFilters { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } public static class Tag { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<SearchTracesResponse> getResponseClass() { return SearchTracesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SearchTracesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.SearchTracesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SearchTracesResponse extends AcsResponse { private String requestId; private List<TraceInfo> traceInfos; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<TraceInfo> getTraceInfos() { return this.traceInfos; } public void setTraceInfos(List<TraceInfo> traceInfos) { this.traceInfos = traceInfos; } public static class TraceInfo { private String operationName; private String serviceIp; private Long duration; private Long timestamp; private String serviceName; private String traceID; private String spanID; public String getOperationName() { return this.operationName; } public void setOperationName(String operationName) { this.operationName = operationName; } public String getServiceIp() { return this.serviceIp; } public void setServiceIp(String serviceIp) { this.serviceIp = serviceIp; } public Long getDuration() { return this.duration; } public void setDuration(Long duration) { this.duration = duration; } public Long getTimestamp() { return this.timestamp; } public void setTimestamp(Long timestamp) { this.timestamp = timestamp; } public String getServiceName() { return this.serviceName; } public void setServiceName(String serviceName) { this.serviceName = serviceName; } public String getTraceID() { return this.traceID; } public void setTraceID(String traceID) { this.traceID = traceID; } public String getSpanID() { return this.spanID; } public void setSpanID(String spanID) { this.spanID = spanID; } } @Override public SearchTracesResponse getInstance(UnmarshallerContext context) { return SearchTracesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SendTTSVerifyLinkRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class SendTTSVerifyLinkRequest extends RpcAcsRequest<SendTTSVerifyLinkResponse> { private Long contactId; private String phone; public SendTTSVerifyLinkRequest() { super("ARMS", "2019-08-08", "SendTTSVerifyLink", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getContactId() { return this.contactId; } public void setContactId(Long contactId) { this.contactId = contactId; if(contactId != null){ putBodyParameter("ContactId", contactId.toString()); } } public String getPhone() { return this.phone; } public void setPhone(String phone) { this.phone = phone; if(phone != null){ putBodyParameter("Phone", phone); } } @Override public Class<SendTTSVerifyLinkResponse> getResponseClass() { return SendTTSVerifyLinkResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SendTTSVerifyLinkResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.SendTTSVerifyLinkResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SendTTSVerifyLinkResponse extends AcsResponse { private String requestId; private Boolean isSuccess; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getIsSuccess() { return this.isSuccess; } public void setIsSuccess(Boolean isSuccess) { this.isSuccess = isSuccess; } @Override public SendTTSVerifyLinkResponse getInstance(UnmarshallerContext context) { return SendTTSVerifyLinkResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SetRetcodeShareStatusRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class SetRetcodeShareStatusRequest extends RpcAcsRequest<SetRetcodeShareStatusResponse> { private String appName; private String pid; private Boolean status; public SetRetcodeShareStatusRequest() { super("ARMS", "2019-08-08", "SetRetcodeShareStatus", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; if(appName != null){ putQueryParameter("AppName", appName); } } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; if(pid != null){ putQueryParameter("Pid", pid); } } public Boolean getStatus() { return this.status; } public void setStatus(Boolean status) { this.status = status; if(status != null){ putQueryParameter("Status", status.toString()); } } @Override public Class<SetRetcodeShareStatusResponse> getResponseClass() { return SetRetcodeShareStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SetRetcodeShareStatusResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.SetRetcodeShareStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SetRetcodeShareStatusResponse extends AcsResponse { private Boolean isSuccess; private String requestId; public Boolean getIsSuccess() { return this.isSuccess; } public void setIsSuccess(Boolean isSuccess) { this.isSuccess = isSuccess; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public SetRetcodeShareStatusResponse getInstance(UnmarshallerContext context) { return SetRetcodeShareStatusResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/StartAlertRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class StartAlertRequest extends RpcAcsRequest<StartAlertResponse> { private String alertId; public StartAlertRequest() { super("ARMS", "2019-08-08", "StartAlert", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAlertId() { return this.alertId; } public void setAlertId(String alertId) { this.alertId = alertId; if(alertId != null){ putQueryParameter("AlertId", alertId); } } @Override public Class<StartAlertResponse> getResponseClass() { return StartAlertResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/StartAlertResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.StartAlertResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class StartAlertResponse extends AcsResponse { private Boolean isSuccess; private String requestId; public Boolean getIsSuccess() { return this.isSuccess; } public void setIsSuccess(Boolean isSuccess) { this.isSuccess = isSuccess; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public StartAlertResponse getInstance(UnmarshallerContext context) { return StartAlertResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/StartTimingSyntheticTaskRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.google.gson.Gson; import com.google.gson.annotations.SerializedName; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class StartTimingSyntheticTaskRequest extends RpcAcsRequest<StartTimingSyntheticTaskResponse> { @SerializedName("taskIds") private List<String> taskIds; public StartTimingSyntheticTaskRequest() { super("ARMS", "2019-08-08", "StartTimingSyntheticTask", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public List<String> getTaskIds() { return this.taskIds; } public void setTaskIds(List<String> taskIds) { this.taskIds = taskIds; if (taskIds != null) { putQueryParameter("TaskIds" , new Gson().toJson(taskIds)); } } @Override public Class<StartTimingSyntheticTaskResponse> getResponseClass() { return StartTimingSyntheticTaskResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/StartTimingSyntheticTaskResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.StartTimingSyntheticTaskResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class StartTimingSyntheticTaskResponse extends AcsResponse { private String requestId; private Long code; private String message; private Boolean data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getCode() { return this.code; } public void setCode(Long code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getData() { return this.data; } public void setData(Boolean data) { this.data = data; } @Override public StartTimingSyntheticTaskResponse getInstance(UnmarshallerContext context) { return StartTimingSyntheticTaskResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/StopAlertRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class StopAlertRequest extends RpcAcsRequest<StopAlertResponse> { private String alertId; public StopAlertRequest() { super("ARMS", "2019-08-08", "StopAlert", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAlertId() { return this.alertId; } public void setAlertId(String alertId) { this.alertId = alertId; if(alertId != null){ putQueryParameter("AlertId", alertId); } } @Override public Class<StopAlertResponse> getResponseClass() { return StopAlertResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/StopAlertResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.StopAlertResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class StopAlertResponse extends AcsResponse { private Boolean isSuccess; private String requestId; public Boolean getIsSuccess() { return this.isSuccess; } public void setIsSuccess(Boolean isSuccess) { this.isSuccess = isSuccess; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public StopAlertResponse getInstance(UnmarshallerContext context) { return StopAlertResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/StopTimingSyntheticTaskRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.google.gson.Gson; import com.google.gson.annotations.SerializedName; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class StopTimingSyntheticTaskRequest extends RpcAcsRequest<StopTimingSyntheticTaskResponse> { @SerializedName("taskIds") private List<String> taskIds; public StopTimingSyntheticTaskRequest() { super("ARMS", "2019-08-08", "StopTimingSyntheticTask", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public List<String> getTaskIds() { return this.taskIds; } public void setTaskIds(List<String> taskIds) { this.taskIds = taskIds; if (taskIds != null) { putQueryParameter("TaskIds" , new Gson().toJson(taskIds)); } } @Override public Class<StopTimingSyntheticTaskResponse> getResponseClass() { return StopTimingSyntheticTaskResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/StopTimingSyntheticTaskResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.StopTimingSyntheticTaskResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class StopTimingSyntheticTaskResponse extends AcsResponse { private String requestId; private Long code; private String message; private Boolean data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getCode() { return this.code; } public void setCode(Long code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getData() { return this.data; } public void setData(Boolean data) { this.data = data; } @Override public StopTimingSyntheticTaskResponse getInstance(UnmarshallerContext context) { return StopTimingSyntheticTaskResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SwitchSyntheticTaskStatusRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class SwitchSyntheticTaskStatusRequest extends RpcAcsRequest<SwitchSyntheticTaskStatusResponse> { private List<Long> taskIdss; private Long switchStatus; public SwitchSyntheticTaskStatusRequest() { super("ARMS", "2019-08-08", "SwitchSyntheticTaskStatus", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public List<Long> getTaskIdss() { return this.taskIdss; } public void setTaskIdss(List<Long> taskIdss) { this.taskIdss = taskIdss; if (taskIdss != null) { for (int i = 0; i < taskIdss.size(); i++) { putQueryParameter("TaskIds." + (i + 1) , taskIdss.get(i)); } } } public Long getSwitchStatus() { return this.switchStatus; } public void setSwitchStatus(Long switchStatus) { this.switchStatus = switchStatus; if(switchStatus != null){ putQueryParameter("SwitchStatus", switchStatus.toString()); } } @Override public Class<SwitchSyntheticTaskStatusResponse> getResponseClass() { return SwitchSyntheticTaskStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SwitchSyntheticTaskStatusResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.SwitchSyntheticTaskStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SwitchSyntheticTaskStatusResponse extends AcsResponse { private String requestId; private String result; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getResult() { return this.result; } public void setResult(String result) { this.result = result; } @Override public SwitchSyntheticTaskStatusResponse getInstance(UnmarshallerContext context) { return SwitchSyntheticTaskStatusResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SyncRecordingRulesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class SyncRecordingRulesRequest extends RpcAcsRequest<SyncRecordingRulesResponse> { private String clusterId; private String targetClusters; public SyncRecordingRulesRequest() { super("ARMS", "2019-08-08", "SyncRecordingRules", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public String getTargetClusters() { return this.targetClusters; } public void setTargetClusters(String targetClusters) { this.targetClusters = targetClusters; if(targetClusters != null){ putQueryParameter("TargetClusters", targetClusters); } } @Override public Class<SyncRecordingRulesResponse> getResponseClass() { return SyncRecordingRulesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/SyncRecordingRulesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.SyncRecordingRulesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SyncRecordingRulesResponse extends AcsResponse { private String requestId; private String data; private Integer code; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public SyncRecordingRulesResponse getInstance(UnmarshallerContext context) { return SyncRecordingRulesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/TagResourcesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class TagResourcesRequest extends RpcAcsRequest<TagResourcesResponse> { private List<String> resourceIds; private String resourceType; private List<Tag> tags; public TagResourcesRequest() { super("ARMS", "2019-08-08", "TagResources", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public List<String> getResourceIds() { return this.resourceIds; } public void setResourceIds(List<String> resourceIds) { this.resourceIds = resourceIds; if (resourceIds != null) { for (int i = 0; i < resourceIds.size(); i++) { putQueryParameter("ResourceId." + (i + 1) , resourceIds.get(i)); } } } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; if(resourceType != null){ putQueryParameter("ResourceType", resourceType); } } public List<Tag> getTags() { return this.tags; } public void setTags(List<Tag> tags) { this.tags = tags; if (tags != null) { for (int depth1 = 0; depth1 < tags.size(); depth1++) { putQueryParameter("Tag." + (depth1 + 1) + ".Value" , tags.get(depth1).getValue()); putQueryParameter("Tag." + (depth1 + 1) + ".Key" , tags.get(depth1).getKey()); } } } public static class Tag { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<TagResourcesResponse> getResponseClass() { return TagResourcesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/TagResourcesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.TagResourcesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class TagResourcesResponse extends AcsResponse { private String requestId; private String data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } @Override public TagResourcesResponse getInstance(UnmarshallerContext context) { return TagResourcesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UninstallManagedPrometheusRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UninstallManagedPrometheusRequest extends RpcAcsRequest<UninstallManagedPrometheusResponse> { private String clusterId; private String clusterType; private String resourceGroupId; private String vpcId; public UninstallManagedPrometheusRequest() { super("ARMS", "2019-08-08", "UninstallManagedPrometheus", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public String getClusterType() { return this.clusterType; } public void setClusterType(String clusterType) { this.clusterType = clusterType; if(clusterType != null){ putQueryParameter("ClusterType", clusterType); } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public String getVpcId() { return this.vpcId; } public void setVpcId(String vpcId) { this.vpcId = vpcId; if(vpcId != null){ putQueryParameter("VpcId", vpcId); } } @Override public Class<UninstallManagedPrometheusResponse> getResponseClass() { return UninstallManagedPrometheusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UninstallManagedPrometheusResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UninstallManagedPrometheusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UninstallManagedPrometheusResponse extends AcsResponse { private String requestId; private String data; private Boolean success; private String message; private Integer code; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } @Override public UninstallManagedPrometheusResponse getInstance(UnmarshallerContext context) { return UninstallManagedPrometheusResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UninstallPromClusterRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UninstallPromClusterRequest extends RpcAcsRequest<UninstallPromClusterResponse> { private String aliyunLang; private String clusterId; public UninstallPromClusterRequest() { super("ARMS", "2019-08-08", "UninstallPromCluster", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAliyunLang() { return this.aliyunLang; } public void setAliyunLang(String aliyunLang) { this.aliyunLang = aliyunLang; if(aliyunLang != null){ putQueryParameter("AliyunLang", aliyunLang); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<UninstallPromClusterResponse> getResponseClass() { return UninstallPromClusterResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UninstallPromClusterResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UninstallPromClusterResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UninstallPromClusterResponse extends AcsResponse { private String data; private String requestId; private String message; private Integer code; public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } @Override public UninstallPromClusterResponse getInstance(UnmarshallerContext context) { return UninstallPromClusterResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UntagResourcesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UntagResourcesRequest extends RpcAcsRequest<UntagResourcesResponse> { private Boolean all; private List<String> resourceIds; private String resourceType; private List<Tags> tagss; private List<String> tagKeys; public UntagResourcesRequest() { super("ARMS", "2019-08-08", "UntagResources", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Boolean getAll() { return this.all; } public void setAll(Boolean all) { this.all = all; if(all != null){ putQueryParameter("All", all.toString()); } } public List<String> getResourceIds() { return this.resourceIds; } public void setResourceIds(List<String> resourceIds) { this.resourceIds = resourceIds; if (resourceIds != null) { for (int i = 0; i < resourceIds.size(); i++) { putQueryParameter("ResourceId." + (i + 1) , resourceIds.get(i)); } } } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; if(resourceType != null){ putQueryParameter("ResourceType", resourceType); } } public List<Tags> getTagss() { return this.tagss; } public void setTagss(List<Tags> tagss) { this.tagss = tagss; if (tagss != null) { for (int depth1 = 0; depth1 < tagss.size(); depth1++) { putQueryParameter("Tags." + (depth1 + 1) + ".Value" , tagss.get(depth1).getValue()); putQueryParameter("Tags." + (depth1 + 1) + ".Key" , tagss.get(depth1).getKey()); } } } public List<String> getTagKeys() { return this.tagKeys; } public void setTagKeys(List<String> tagKeys) { this.tagKeys = tagKeys; if (tagKeys != null) { for (int i = 0; i < tagKeys.size(); i++) { putQueryParameter("TagKey." + (i + 1) , tagKeys.get(i)); } } } public static class Tags { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<UntagResourcesResponse> getResponseClass() { return UntagResourcesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UntagResourcesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UntagResourcesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UntagResourcesResponse extends AcsResponse { private String requestId; private String data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } @Override public UntagResourcesResponse getInstance(UnmarshallerContext context) { return UntagResourcesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateAlertContactGroupRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdateAlertContactGroupRequest extends RpcAcsRequest<UpdateAlertContactGroupResponse> { private Long contactGroupId; private String contactGroupName; private String contactIds; public UpdateAlertContactGroupRequest() { super("ARMS", "2019-08-08", "UpdateAlertContactGroup", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getContactGroupId() { return this.contactGroupId; } public void setContactGroupId(Long contactGroupId) { this.contactGroupId = contactGroupId; if(contactGroupId != null){ putQueryParameter("ContactGroupId", contactGroupId.toString()); } } public String getContactGroupName() { return this.contactGroupName; } public void setContactGroupName(String contactGroupName) { this.contactGroupName = contactGroupName; if(contactGroupName != null){ putQueryParameter("ContactGroupName", contactGroupName); } } public String getContactIds() { return this.contactIds; } public void setContactIds(String contactIds) { this.contactIds = contactIds; if(contactIds != null){ putQueryParameter("ContactIds", contactIds); } } @Override public Class<UpdateAlertContactGroupResponse> getResponseClass() { return UpdateAlertContactGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateAlertContactGroupResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdateAlertContactGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateAlertContactGroupResponse extends AcsResponse { private Boolean isSuccess; private String requestId; public Boolean getIsSuccess() { return this.isSuccess; } public void setIsSuccess(Boolean isSuccess) { this.isSuccess = isSuccess; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public UpdateAlertContactGroupResponse getInstance(UnmarshallerContext context) { return UpdateAlertContactGroupResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateAlertContactRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdateAlertContactRequest extends RpcAcsRequest<UpdateAlertContactResponse> { private Long contactId; private String phoneNum; private String contactName; private String dingRobotWebhookUrl; private String email; private Boolean systemNoc; public UpdateAlertContactRequest() { super("ARMS", "2019-08-08", "UpdateAlertContact", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getContactId() { return this.contactId; } public void setContactId(Long contactId) { this.contactId = contactId; if(contactId != null){ putQueryParameter("ContactId", contactId.toString()); } } public String getPhoneNum() { return this.phoneNum; } public void setPhoneNum(String phoneNum) { this.phoneNum = phoneNum; if(phoneNum != null){ putQueryParameter("PhoneNum", phoneNum); } } public String getContactName() { return this.contactName; } public void setContactName(String contactName) { this.contactName = contactName; if(contactName != null){ putQueryParameter("ContactName", contactName); } } public String getDingRobotWebhookUrl() { return this.dingRobotWebhookUrl; } public void setDingRobotWebhookUrl(String dingRobotWebhookUrl) { this.dingRobotWebhookUrl = dingRobotWebhookUrl; if(dingRobotWebhookUrl != null){ putQueryParameter("DingRobotWebhookUrl", dingRobotWebhookUrl); } } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; if(email != null){ putQueryParameter("Email", email); } } public Boolean getSystemNoc() { return this.systemNoc; } public void setSystemNoc(Boolean systemNoc) { this.systemNoc = systemNoc; if(systemNoc != null){ putQueryParameter("SystemNoc", systemNoc.toString()); } } @Override public Class<UpdateAlertContactResponse> getResponseClass() { return UpdateAlertContactResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateAlertContactResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdateAlertContactResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateAlertContactResponse extends AcsResponse { private Boolean isSuccess; private String requestId; public Boolean getIsSuccess() { return this.isSuccess; } public void setIsSuccess(Boolean isSuccess) { this.isSuccess = isSuccess; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public UpdateAlertContactResponse getInstance(UnmarshallerContext context) { return UpdateAlertContactResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateAlertRuleRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdateAlertRuleRequest extends RpcAcsRequest<UpdateAlertRuleResponse> { private Boolean isAutoStart; private String contactGroupIds; private Long alertId; private String templageAlertConfig; public UpdateAlertRuleRequest() { super("ARMS", "2019-08-08", "UpdateAlertRule", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Boolean getIsAutoStart() { return this.isAutoStart; } public void setIsAutoStart(Boolean isAutoStart) { this.isAutoStart = isAutoStart; if(isAutoStart != null){ putQueryParameter("IsAutoStart", isAutoStart.toString()); } } public String getContactGroupIds() { return this.contactGroupIds; } public void setContactGroupIds(String contactGroupIds) { this.contactGroupIds = contactGroupIds; if(contactGroupIds != null){ putQueryParameter("ContactGroupIds", contactGroupIds); } } public Long getAlertId() { return this.alertId; } public void setAlertId(Long alertId) { this.alertId = alertId; if(alertId != null){ putQueryParameter("AlertId", alertId.toString()); } } public String getTemplageAlertConfig() { return this.templageAlertConfig; } public void setTemplageAlertConfig(String templageAlertConfig) { this.templageAlertConfig = templageAlertConfig; if(templageAlertConfig != null){ putQueryParameter("TemplageAlertConfig", templageAlertConfig); } } @Override public Class<UpdateAlertRuleResponse> getResponseClass() { return UpdateAlertRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateAlertRuleResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdateAlertRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateAlertRuleResponse extends AcsResponse { private String data; private String requestId; private Long alertId; public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getAlertId() { return this.alertId; } public void setAlertId(Long alertId) { this.alertId = alertId; } @Override public UpdateAlertRuleResponse getInstance(UnmarshallerContext context) { return UpdateAlertRuleResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateDispatchRuleRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdateDispatchRuleRequest extends RpcAcsRequest<UpdateDispatchRuleResponse> { private String dispatchRule; public UpdateDispatchRuleRequest() { super("ARMS", "2019-08-08", "UpdateDispatchRule", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getDispatchRule() { return this.dispatchRule; } public void setDispatchRule(String dispatchRule) { this.dispatchRule = dispatchRule; if(dispatchRule != null){ putQueryParameter("DispatchRule", dispatchRule); } } @Override public Class<UpdateDispatchRuleResponse> getResponseClass() { return UpdateDispatchRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateDispatchRuleResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdateDispatchRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateDispatchRuleResponse extends AcsResponse { private Boolean success; private String requestId; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public UpdateDispatchRuleResponse getInstance(UnmarshallerContext context) { return UpdateDispatchRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateEnvCustomJobRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdateEnvCustomJobRequest extends RpcAcsRequest<UpdateEnvCustomJobResponse> { private String aliyunLang; private String configYaml; private String environmentId; private String customJobName; private String status; public UpdateEnvCustomJobRequest() { super("ARMS", "2019-08-08", "UpdateEnvCustomJob", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAliyunLang() { return this.aliyunLang; } public void setAliyunLang(String aliyunLang) { this.aliyunLang = aliyunLang; if(aliyunLang != null){ putQueryParameter("AliyunLang", aliyunLang); } } public String getConfigYaml() { return this.configYaml; } public void setConfigYaml(String configYaml) { this.configYaml = configYaml; if(configYaml != null){ putBodyParameter("ConfigYaml", configYaml); } } public String getEnvironmentId() { return this.environmentId; } public void setEnvironmentId(String environmentId) { this.environmentId = environmentId; if(environmentId != null){ putQueryParameter("EnvironmentId", environmentId); } } public String getCustomJobName() { return this.customJobName; } public void setCustomJobName(String customJobName) { this.customJobName = customJobName; if(customJobName != null){ putQueryParameter("CustomJobName", customJobName); } } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; if(status != null){ putQueryParameter("Status", status); } } @Override public Class<UpdateEnvCustomJobResponse> getResponseClass() { return UpdateEnvCustomJobResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateEnvCustomJobResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdateEnvCustomJobResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateEnvCustomJobResponse extends AcsResponse { private String requestId; private Integer code; private String data; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public UpdateEnvCustomJobResponse getInstance(UnmarshallerContext context) { return UpdateEnvCustomJobResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateEnvPodMonitorRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdateEnvPodMonitorRequest extends RpcAcsRequest<UpdateEnvPodMonitorResponse> { private Boolean dryRun; private String aliyunLang; private String configYaml; private String podMonitorName; private String environmentId; private String namespace; public UpdateEnvPodMonitorRequest() { super("ARMS", "2019-08-08", "UpdateEnvPodMonitor", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Boolean getDryRun() { return this.dryRun; } public void setDryRun(Boolean dryRun) { this.dryRun = dryRun; if(dryRun != null){ putQueryParameter("DryRun", dryRun.toString()); } } public String getAliyunLang() { return this.aliyunLang; } public void setAliyunLang(String aliyunLang) { this.aliyunLang = aliyunLang; if(aliyunLang != null){ putQueryParameter("AliyunLang", aliyunLang); } } public String getConfigYaml() { return this.configYaml; } public void setConfigYaml(String configYaml) { this.configYaml = configYaml; if(configYaml != null){ putBodyParameter("ConfigYaml", configYaml); } } public String getPodMonitorName() { return this.podMonitorName; } public void setPodMonitorName(String podMonitorName) { this.podMonitorName = podMonitorName; if(podMonitorName != null){ putQueryParameter("PodMonitorName", podMonitorName); } } public String getEnvironmentId() { return this.environmentId; } public void setEnvironmentId(String environmentId) { this.environmentId = environmentId; if(environmentId != null){ putQueryParameter("EnvironmentId", environmentId); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } @Override public Class<UpdateEnvPodMonitorResponse> getResponseClass() { return UpdateEnvPodMonitorResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateEnvPodMonitorResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdateEnvPodMonitorResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateEnvPodMonitorResponse extends AcsResponse { private String requestId; private Integer code; private String message; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String matchedMsg; private String matchedTargetCount; public String getMatchedMsg() { return this.matchedMsg; } public void setMatchedMsg(String matchedMsg) { this.matchedMsg = matchedMsg; } public String getMatchedTargetCount() { return this.matchedTargetCount; } public void setMatchedTargetCount(String matchedTargetCount) { this.matchedTargetCount = matchedTargetCount; } } @Override public UpdateEnvPodMonitorResponse getInstance(UnmarshallerContext context) { return UpdateEnvPodMonitorResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateEnvServiceMonitorRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdateEnvServiceMonitorRequest extends RpcAcsRequest<UpdateEnvServiceMonitorResponse> { private String serviceMonitorName; private Boolean dryRun; private String aliyunLang; private String configYaml; private String environmentId; private String namespace; public UpdateEnvServiceMonitorRequest() { super("ARMS", "2019-08-08", "UpdateEnvServiceMonitor", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getServiceMonitorName() { return this.serviceMonitorName; } public void setServiceMonitorName(String serviceMonitorName) { this.serviceMonitorName = serviceMonitorName; if(serviceMonitorName != null){ putQueryParameter("ServiceMonitorName", serviceMonitorName); } } public Boolean getDryRun() { return this.dryRun; } public void setDryRun(Boolean dryRun) { this.dryRun = dryRun; if(dryRun != null){ putQueryParameter("DryRun", dryRun.toString()); } } public String getAliyunLang() { return this.aliyunLang; } public void setAliyunLang(String aliyunLang) { this.aliyunLang = aliyunLang; if(aliyunLang != null){ putQueryParameter("AliyunLang", aliyunLang); } } public String getConfigYaml() { return this.configYaml; } public void setConfigYaml(String configYaml) { this.configYaml = configYaml; if(configYaml != null){ putBodyParameter("ConfigYaml", configYaml); } } public String getEnvironmentId() { return this.environmentId; } public void setEnvironmentId(String environmentId) { this.environmentId = environmentId; if(environmentId != null){ putQueryParameter("EnvironmentId", environmentId); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } @Override public Class<UpdateEnvServiceMonitorResponse> getResponseClass() { return UpdateEnvServiceMonitorResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateEnvServiceMonitorResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdateEnvServiceMonitorResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateEnvServiceMonitorResponse extends AcsResponse { private String requestId; private Integer code; private String message; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String matchedMsg; private String matchedTargetCount; public String getMatchedMsg() { return this.matchedMsg; } public void setMatchedMsg(String matchedMsg) { this.matchedMsg = matchedMsg; } public String getMatchedTargetCount() { return this.matchedTargetCount; } public void setMatchedTargetCount(String matchedTargetCount) { this.matchedTargetCount = matchedTargetCount; } } @Override public UpdateEnvServiceMonitorResponse getInstance(UnmarshallerContext context) { return UpdateEnvServiceMonitorResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateEnvironmentRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdateEnvironmentRequest extends RpcAcsRequest<UpdateEnvironmentResponse> { private String aliyunLang; private String environmentName; private String environmentId; private String feePackage; public UpdateEnvironmentRequest() { super("ARMS", "2019-08-08", "UpdateEnvironment", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAliyunLang() { return this.aliyunLang; } public void setAliyunLang(String aliyunLang) { this.aliyunLang = aliyunLang; if(aliyunLang != null){ putQueryParameter("AliyunLang", aliyunLang); } } public String getEnvironmentName() { return this.environmentName; } public void setEnvironmentName(String environmentName) { this.environmentName = environmentName; if(environmentName != null){ putQueryParameter("EnvironmentName", environmentName); } } public String getEnvironmentId() { return this.environmentId; } public void setEnvironmentId(String environmentId) { this.environmentId = environmentId; if(environmentId != null){ putQueryParameter("EnvironmentId", environmentId); } } public String getFeePackage() { return this.feePackage; } public void setFeePackage(String feePackage) { this.feePackage = feePackage; if(feePackage != null){ putQueryParameter("FeePackage", feePackage); } } @Override public Class<UpdateEnvironmentResponse> getResponseClass() { return UpdateEnvironmentResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateEnvironmentResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdateEnvironmentResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateEnvironmentResponse extends AcsResponse { private String requestId; private Integer code; private String data; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public UpdateEnvironmentResponse getInstance(UnmarshallerContext context) { return UpdateEnvironmentResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateGrafanaWorkspaceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdateGrafanaWorkspaceRequest extends RpcAcsRequest<UpdateGrafanaWorkspaceResponse> { private String aliyunLang; private String description; private String grafanaWorkspaceName; private String grafanaWorkspaceId; public UpdateGrafanaWorkspaceRequest() { super("ARMS", "2019-08-08", "UpdateGrafanaWorkspace", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAliyunLang() { return this.aliyunLang; } public void setAliyunLang(String aliyunLang) { this.aliyunLang = aliyunLang; if(aliyunLang != null){ putQueryParameter("AliyunLang", aliyunLang); } } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putQueryParameter("Description", description); } } public String getGrafanaWorkspaceName() { return this.grafanaWorkspaceName; } public void setGrafanaWorkspaceName(String grafanaWorkspaceName) { this.grafanaWorkspaceName = grafanaWorkspaceName; if(grafanaWorkspaceName != null){ putQueryParameter("GrafanaWorkspaceName", grafanaWorkspaceName); } } public String getGrafanaWorkspaceId() { return this.grafanaWorkspaceId; } public void setGrafanaWorkspaceId(String grafanaWorkspaceId) { this.grafanaWorkspaceId = grafanaWorkspaceId; if(grafanaWorkspaceId != null){ putQueryParameter("GrafanaWorkspaceId", grafanaWorkspaceId); } } @Override public Class<UpdateGrafanaWorkspaceResponse> getResponseClass() { return UpdateGrafanaWorkspaceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateGrafanaWorkspaceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdateGrafanaWorkspaceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateGrafanaWorkspaceResponse extends AcsResponse { private String requestId; private String message; private Integer code; private Boolean success; private String traceId; private Boolean data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getTraceId() { return this.traceId; } public void setTraceId(String traceId) { this.traceId = traceId; } public Boolean getData() { return this.data; } public void setData(Boolean data) { this.data = data; } @Override public UpdateGrafanaWorkspaceResponse getInstance(UnmarshallerContext context) { return UpdateGrafanaWorkspaceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateGrafanaWorkspaceVersionRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdateGrafanaWorkspaceVersionRequest extends RpcAcsRequest<UpdateGrafanaWorkspaceVersionResponse> { private String aliyunLang; private String grafanaWorkspaceId; private String grafanaVersion; public UpdateGrafanaWorkspaceVersionRequest() { super("ARMS", "2019-08-08", "UpdateGrafanaWorkspaceVersion", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAliyunLang() { return this.aliyunLang; } public void setAliyunLang(String aliyunLang) { this.aliyunLang = aliyunLang; if(aliyunLang != null){ putQueryParameter("AliyunLang", aliyunLang); } } public String getGrafanaWorkspaceId() { return this.grafanaWorkspaceId; } public void setGrafanaWorkspaceId(String grafanaWorkspaceId) { this.grafanaWorkspaceId = grafanaWorkspaceId; if(grafanaWorkspaceId != null){ putQueryParameter("GrafanaWorkspaceId", grafanaWorkspaceId); } } public String getGrafanaVersion() { return this.grafanaVersion; } public void setGrafanaVersion(String grafanaVersion) { this.grafanaVersion = grafanaVersion; if(grafanaVersion != null){ putQueryParameter("GrafanaVersion", grafanaVersion); } } @Override public Class<UpdateGrafanaWorkspaceVersionResponse> getResponseClass() { return UpdateGrafanaWorkspaceVersionResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateGrafanaWorkspaceVersionResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdateGrafanaWorkspaceVersionResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateGrafanaWorkspaceVersionResponse extends AcsResponse { private String requestId; private String message; private Integer code; private Boolean success; private String traceId; private Boolean data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getTraceId() { return this.traceId; } public void setTraceId(String traceId) { this.traceId = traceId; } public Boolean getData() { return this.data; } public void setData(Boolean data) { this.data = data; } @Override public UpdateGrafanaWorkspaceVersionResponse getInstance(UnmarshallerContext context) { return UpdateGrafanaWorkspaceVersionResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateIntegrationRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdateIntegrationRequest extends RpcAcsRequest<UpdateIntegrationResponse> { private String initiativeRecoverValue; private String liveness; private Long integrationId; private String description; private Long recoverTime; private String duplicateKey; private String integrationName; private Boolean state; private String initiativeRecoverField; private String fieldRedefineRules; private String stat; private Boolean autoRecover; private String extendedFieldRedefineRules; private String integrationProductType; public UpdateIntegrationRequest() { super("ARMS", "2019-08-08", "UpdateIntegration", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInitiativeRecoverValue() { return this.initiativeRecoverValue; } public void setInitiativeRecoverValue(String initiativeRecoverValue) { this.initiativeRecoverValue = initiativeRecoverValue; if(initiativeRecoverValue != null){ putBodyParameter("InitiativeRecoverValue", initiativeRecoverValue); } } public String getLiveness() { return this.liveness; } public void setLiveness(String liveness) { this.liveness = liveness; if(liveness != null){ putBodyParameter("Liveness", liveness); } } public Long getIntegrationId() { return this.integrationId; } public void setIntegrationId(Long integrationId) { this.integrationId = integrationId; if(integrationId != null){ putBodyParameter("IntegrationId", integrationId.toString()); } } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putBodyParameter("Description", description); } } public Long getRecoverTime() { return this.recoverTime; } public void setRecoverTime(Long recoverTime) { this.recoverTime = recoverTime; if(recoverTime != null){ putBodyParameter("RecoverTime", recoverTime.toString()); } } public String getDuplicateKey() { return this.duplicateKey; } public void setDuplicateKey(String duplicateKey) { this.duplicateKey = duplicateKey; if(duplicateKey != null){ putBodyParameter("DuplicateKey", duplicateKey); } } public String getIntegrationName() { return this.integrationName; } public void setIntegrationName(String integrationName) { this.integrationName = integrationName; if(integrationName != null){ putBodyParameter("IntegrationName", integrationName); } } public Boolean getState() { return this.state; } public void setState(Boolean state) { this.state = state; if(state != null){ putBodyParameter("State", state.toString()); } } public String getInitiativeRecoverField() { return this.initiativeRecoverField; } public void setInitiativeRecoverField(String initiativeRecoverField) { this.initiativeRecoverField = initiativeRecoverField; if(initiativeRecoverField != null){ putBodyParameter("InitiativeRecoverField", initiativeRecoverField); } } public String getFieldRedefineRules() { return this.fieldRedefineRules; } public void setFieldRedefineRules(String fieldRedefineRules) { this.fieldRedefineRules = fieldRedefineRules; if(fieldRedefineRules != null){ putBodyParameter("FieldRedefineRules", fieldRedefineRules); } } public String getStat() { return this.stat; } public void setStat(String stat) { this.stat = stat; if(stat != null){ putBodyParameter("Stat", stat); } } public Boolean getAutoRecover() { return this.autoRecover; } public void setAutoRecover(Boolean autoRecover) { this.autoRecover = autoRecover; if(autoRecover != null){ putBodyParameter("AutoRecover", autoRecover.toString()); } } public String getExtendedFieldRedefineRules() { return this.extendedFieldRedefineRules; } public void setExtendedFieldRedefineRules(String extendedFieldRedefineRules) { this.extendedFieldRedefineRules = extendedFieldRedefineRules; if(extendedFieldRedefineRules != null){ putBodyParameter("ExtendedFieldRedefineRules", extendedFieldRedefineRules); } } public String getIntegrationProductType() { return this.integrationProductType; } public void setIntegrationProductType(String integrationProductType) { this.integrationProductType = integrationProductType; if(integrationProductType != null){ putBodyParameter("IntegrationProductType", integrationProductType); } } @Override public Class<UpdateIntegrationResponse> getResponseClass() { return UpdateIntegrationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateIntegrationResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdateIntegrationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateIntegrationResponse extends AcsResponse { private String requestId; private Integration integration; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integration getIntegration() { return this.integration; } public void setIntegration(Integration integration) { this.integration = integration; } public static class Integration { private Long integrationId; private String integrationName; private String integrationProductType; private String description; private String apiEndpoint; private String shortToken; private Boolean autoRecover; private Long recoverTime; private String duplicateKey; private Boolean state; private String liveness; private String initiativeRecoverField; private String initiativeRecoverValue; private List<Long> stat; private List<Map<Object,Object>> fieldRedefineRules; private List<Map<Object,Object>> extendedFieldRedefineRules; public Long getIntegrationId() { return this.integrationId; } public void setIntegrationId(Long integrationId) { this.integrationId = integrationId; } public String getIntegrationName() { return this.integrationName; } public void setIntegrationName(String integrationName) { this.integrationName = integrationName; } public String getIntegrationProductType() { return this.integrationProductType; } public void setIntegrationProductType(String integrationProductType) { this.integrationProductType = integrationProductType; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getApiEndpoint() { return this.apiEndpoint; } public void setApiEndpoint(String apiEndpoint) { this.apiEndpoint = apiEndpoint; } public String getShortToken() { return this.shortToken; } public void setShortToken(String shortToken) { this.shortToken = shortToken; } public Boolean getAutoRecover() { return this.autoRecover; } public void setAutoRecover(Boolean autoRecover) { this.autoRecover = autoRecover; } public Long getRecoverTime() { return this.recoverTime; } public void setRecoverTime(Long recoverTime) { this.recoverTime = recoverTime; } public String getDuplicateKey() { return this.duplicateKey; } public void setDuplicateKey(String duplicateKey) { this.duplicateKey = duplicateKey; } public Boolean getState() { return this.state; } public void setState(Boolean state) { this.state = state; } public String getLiveness() { return this.liveness; } public void setLiveness(String liveness) { this.liveness = liveness; } public String getInitiativeRecoverField() { return this.initiativeRecoverField; } public void setInitiativeRecoverField(String initiativeRecoverField) { this.initiativeRecoverField = initiativeRecoverField; } public String getInitiativeRecoverValue() { return this.initiativeRecoverValue; } public void setInitiativeRecoverValue(String initiativeRecoverValue) { this.initiativeRecoverValue = initiativeRecoverValue; } public List<Long> getStat() { return this.stat; } public void setStat(List<Long> stat) { this.stat = stat; } public List<Map<Object,Object>> getFieldRedefineRules() { return this.fieldRedefineRules; } public void setFieldRedefineRules(List<Map<Object,Object>> fieldRedefineRules) { this.fieldRedefineRules = fieldRedefineRules; } public List<Map<Object,Object>> getExtendedFieldRedefineRules() { return this.extendedFieldRedefineRules; } public void setExtendedFieldRedefineRules(List<Map<Object,Object>> extendedFieldRedefineRules) { this.extendedFieldRedefineRules = extendedFieldRedefineRules; } } @Override public UpdateIntegrationResponse getInstance(UnmarshallerContext context) { return UpdateIntegrationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateMetricDropRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdateMetricDropRequest extends RpcAcsRequest<UpdateMetricDropResponse> { private String clusterId; private String metricDrop; public UpdateMetricDropRequest() { super("ARMS", "2019-08-08", "UpdateMetricDrop", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public String getMetricDrop() { return this.metricDrop; } public void setMetricDrop(String metricDrop) { this.metricDrop = metricDrop; if(metricDrop != null){ putQueryParameter("MetricDrop", metricDrop); } } @Override public Class<UpdateMetricDropResponse> getResponseClass() { return UpdateMetricDropResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateMetricDropResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdateMetricDropResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateMetricDropResponse extends AcsResponse { private String requestId; private String data; private Long code; private String message; private Boolean success; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Long getCode() { return this.code; } public void setCode(Long code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } @Override public UpdateMetricDropResponse getInstance(UnmarshallerContext context) { return UpdateMetricDropResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdatePrometheusAlertRuleRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdatePrometheusAlertRuleRequest extends RpcAcsRequest<UpdatePrometheusAlertRuleResponse> { private String expression; private String alertName; private String annotations; private String clusterId; private Long dispatchRuleId; private String type; private String message; private String labels; private List<Tags> tagss; private String duration; private Long alertId; private String notifyType; public UpdatePrometheusAlertRuleRequest() { super("ARMS", "2019-08-08", "UpdatePrometheusAlertRule", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getExpression() { return this.expression; } public void setExpression(String expression) { this.expression = expression; if(expression != null){ putQueryParameter("Expression", expression); } } public String getAlertName() { return this.alertName; } public void setAlertName(String alertName) { this.alertName = alertName; if(alertName != null){ putQueryParameter("AlertName", alertName); } } public String getAnnotations() { return this.annotations; } public void setAnnotations(String annotations) { this.annotations = annotations; if(annotations != null){ putQueryParameter("Annotations", annotations); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public Long getDispatchRuleId() { return this.dispatchRuleId; } public void setDispatchRuleId(Long dispatchRuleId) { this.dispatchRuleId = dispatchRuleId; if(dispatchRuleId != null){ putQueryParameter("DispatchRuleId", dispatchRuleId.toString()); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; if(message != null){ putQueryParameter("Message", message); } } public String getLabels() { return this.labels; } public void setLabels(String labels) { this.labels = labels; if(labels != null){ putQueryParameter("Labels", labels); } } public List<Tags> getTagss() { return this.tagss; } public void setTagss(List<Tags> tagss) { this.tagss = tagss; if (tagss != null) { for (int depth1 = 0; depth1 < tagss.size(); depth1++) { putQueryParameter("Tags." + (depth1 + 1) + ".Value" , tagss.get(depth1).getValue()); putQueryParameter("Tags." + (depth1 + 1) + ".Key" , tagss.get(depth1).getKey()); } } } public String getDuration() { return this.duration; } public void setDuration(String duration) { this.duration = duration; if(duration != null){ putQueryParameter("Duration", duration); } } public Long getAlertId() { return this.alertId; } public void setAlertId(Long alertId) { this.alertId = alertId; if(alertId != null){ putQueryParameter("AlertId", alertId.toString()); } } public String getNotifyType() { return this.notifyType; } public void setNotifyType(String notifyType) { this.notifyType = notifyType; if(notifyType != null){ putQueryParameter("NotifyType", notifyType); } } public static class Tags { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<UpdatePrometheusAlertRuleResponse> getResponseClass() { return UpdatePrometheusAlertRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdatePrometheusAlertRuleResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdatePrometheusAlertRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdatePrometheusAlertRuleResponse extends AcsResponse { private String requestId; private Long code; private String message; private Boolean success; private PrometheusAlertRule prometheusAlertRule; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getCode() { return this.code; } public void setCode(Long code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public PrometheusAlertRule getPrometheusAlertRule() { return this.prometheusAlertRule; } public void setPrometheusAlertRule(PrometheusAlertRule prometheusAlertRule) { this.prometheusAlertRule = prometheusAlertRule; } public static class PrometheusAlertRule { private Integer status; private String type; private String notifyType; private String expression; private String message; private String duration; private Long dispatchRuleId; private String alertName; private Long alertId; private String clusterId; private List<Label> labels; private List<Annotation> annotations; public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getNotifyType() { return this.notifyType; } public void setNotifyType(String notifyType) { this.notifyType = notifyType; } public String getExpression() { return this.expression; } public void setExpression(String expression) { this.expression = expression; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getDuration() { return this.duration; } public void setDuration(String duration) { this.duration = duration; } public Long getDispatchRuleId() { return this.dispatchRuleId; } public void setDispatchRuleId(Long dispatchRuleId) { this.dispatchRuleId = dispatchRuleId; } public String getAlertName() { return this.alertName; } public void setAlertName(String alertName) { this.alertName = alertName; } public Long getAlertId() { return this.alertId; } public void setAlertId(Long alertId) { this.alertId = alertId; } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; } public List<Label> getLabels() { return this.labels; } public void setLabels(List<Label> labels) { this.labels = labels; } public List<Annotation> getAnnotations() { return this.annotations; } public void setAnnotations(List<Annotation> annotations) { this.annotations = annotations; } public static class Label { private String name; private String value; public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } public static class Annotation { private String name; private String value; public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } } @Override public UpdatePrometheusAlertRuleResponse getInstance(UnmarshallerContext context) { return UpdatePrometheusAlertRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdatePrometheusGlobalViewRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdatePrometheusGlobalViewRequest extends RpcAcsRequest<UpdatePrometheusGlobalViewResponse> { private Boolean allSubClustersSuccess; private String clusterId; private String groupName; private String resourceGroupId; private String mostRegionId; private String subClustersJson; public UpdatePrometheusGlobalViewRequest() { super("ARMS", "2019-08-08", "UpdatePrometheusGlobalView", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Boolean getAllSubClustersSuccess() { return this.allSubClustersSuccess; } public void setAllSubClustersSuccess(Boolean allSubClustersSuccess) { this.allSubClustersSuccess = allSubClustersSuccess; if(allSubClustersSuccess != null){ putQueryParameter("AllSubClustersSuccess", allSubClustersSuccess.toString()); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; if(groupName != null){ putQueryParameter("GroupName", groupName); } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public String getMostRegionId() { return this.mostRegionId; } public void setMostRegionId(String mostRegionId) { this.mostRegionId = mostRegionId; if(mostRegionId != null){ putQueryParameter("MostRegionId", mostRegionId); } } public String getSubClustersJson() { return this.subClustersJson; } public void setSubClustersJson(String subClustersJson) { this.subClustersJson = subClustersJson; if(subClustersJson != null){ putQueryParameter("SubClustersJson", subClustersJson); } } @Override public Class<UpdatePrometheusGlobalViewResponse> getResponseClass() { return UpdatePrometheusGlobalViewResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdatePrometheusGlobalViewResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdatePrometheusGlobalViewResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdatePrometheusGlobalViewResponse extends AcsResponse { private String requestId; private String message; private Integer code; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Boolean success; private List<FailedInstance> failedInstances; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public List<FailedInstance> getFailedInstances() { return this.failedInstances; } public void setFailedInstances(List<FailedInstance> failedInstances) { this.failedInstances = failedInstances; } public static class FailedInstance { private String sourceName; private String sourceType; private String userId; private String clusterId; public String getSourceName() { return this.sourceName; } public void setSourceName(String sourceName) { this.sourceName = sourceName; } public String getSourceType() { return this.sourceType; } public void setSourceType(String sourceType) { this.sourceType = sourceType; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; } } } @Override public UpdatePrometheusGlobalViewResponse getInstance(UnmarshallerContext context) { return UpdatePrometheusGlobalViewResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdatePrometheusInstanceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdatePrometheusInstanceRequest extends RpcAcsRequest<UpdatePrometheusInstanceResponse> { private String clusterId; private String resourceGroupId; private String authFreeReadPolicy; private String authFreeWritePolicy; private Boolean enableAuthFreeRead; private Integer storageDuration; private Boolean enableAuthToken; private Boolean enableAuthFreeWrite; private String paymentType; private Integer archiveDuration; public UpdatePrometheusInstanceRequest() { super("ARMS", "2019-08-08", "UpdatePrometheusInstance", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public String getAuthFreeReadPolicy() { return this.authFreeReadPolicy; } public void setAuthFreeReadPolicy(String authFreeReadPolicy) { this.authFreeReadPolicy = authFreeReadPolicy; if(authFreeReadPolicy != null){ putQueryParameter("AuthFreeReadPolicy", authFreeReadPolicy); } } public String getAuthFreeWritePolicy() { return this.authFreeWritePolicy; } public void setAuthFreeWritePolicy(String authFreeWritePolicy) { this.authFreeWritePolicy = authFreeWritePolicy; if(authFreeWritePolicy != null){ putQueryParameter("AuthFreeWritePolicy", authFreeWritePolicy); } } public Boolean getEnableAuthFreeRead() { return this.enableAuthFreeRead; } public void setEnableAuthFreeRead(Boolean enableAuthFreeRead) { this.enableAuthFreeRead = enableAuthFreeRead; if(enableAuthFreeRead != null){ putQueryParameter("EnableAuthFreeRead", enableAuthFreeRead.toString()); } } public Integer getStorageDuration() { return this.storageDuration; } public void setStorageDuration(Integer storageDuration) { this.storageDuration = storageDuration; if(storageDuration != null){ putQueryParameter("StorageDuration", storageDuration.toString()); } } public Boolean getEnableAuthToken() { return this.enableAuthToken; } public void setEnableAuthToken(Boolean enableAuthToken) { this.enableAuthToken = enableAuthToken; if(enableAuthToken != null){ putQueryParameter("EnableAuthToken", enableAuthToken.toString()); } } public Boolean getEnableAuthFreeWrite() { return this.enableAuthFreeWrite; } public void setEnableAuthFreeWrite(Boolean enableAuthFreeWrite) { this.enableAuthFreeWrite = enableAuthFreeWrite; if(enableAuthFreeWrite != null){ putQueryParameter("EnableAuthFreeWrite", enableAuthFreeWrite.toString()); } } public String getPaymentType() { return this.paymentType; } public void setPaymentType(String paymentType) { this.paymentType = paymentType; if(paymentType != null){ putQueryParameter("PaymentType", paymentType); } } public Integer getArchiveDuration() { return this.archiveDuration; } public void setArchiveDuration(Integer archiveDuration) { this.archiveDuration = archiveDuration; if(archiveDuration != null){ putQueryParameter("ArchiveDuration", archiveDuration.toString()); } } @Override public Class<UpdatePrometheusInstanceResponse> getResponseClass() { return UpdatePrometheusInstanceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdatePrometheusInstanceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdatePrometheusInstanceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdatePrometheusInstanceResponse extends AcsResponse { private String requestId; private String data; private String message; private Integer code; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } @Override public UpdatePrometheusInstanceResponse getInstance(UnmarshallerContext context) { return UpdatePrometheusInstanceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdatePrometheusIntegrationRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdatePrometheusIntegrationRequest extends RpcAcsRequest<UpdatePrometheusIntegrationResponse> { private String integrationType; private String clusterId; private Long instanceId; private String param; public UpdatePrometheusIntegrationRequest() { super("ARMS", "2019-08-08", "UpdatePrometheusIntegration", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getIntegrationType() { return this.integrationType; } public void setIntegrationType(String integrationType) { this.integrationType = integrationType; if(integrationType != null){ putQueryParameter("IntegrationType", integrationType); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public Long getInstanceId() { return this.instanceId; } public void setInstanceId(Long instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId.toString()); } } public String getParam() { return this.param; } public void setParam(String param) { this.param = param; if(param != null){ putQueryParameter("Param", param); } } @Override public Class<UpdatePrometheusIntegrationResponse> getResponseClass() { return UpdatePrometheusIntegrationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdatePrometheusIntegrationResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdatePrometheusIntegrationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdatePrometheusIntegrationResponse extends AcsResponse { private String requestId; private String message; private Integer code; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long instanceId; private String instanceName; public Long getInstanceId() { return this.instanceId; } public void setInstanceId(Long instanceId) { this.instanceId = instanceId; } public String getInstanceName() { return this.instanceName; } public void setInstanceName(String instanceName) { this.instanceName = instanceName; } } @Override public UpdatePrometheusIntegrationResponse getInstance(UnmarshallerContext context) { return UpdatePrometheusIntegrationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdatePrometheusMonitoringRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdatePrometheusMonitoringRequest extends RpcAcsRequest<UpdatePrometheusMonitoringResponse> { private String configYaml; private String clusterId; private String type; private String monitoringName; public UpdatePrometheusMonitoringRequest() { super("ARMS", "2019-08-08", "UpdatePrometheusMonitoring", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getConfigYaml() { return this.configYaml; } public void setConfigYaml(String configYaml) { this.configYaml = configYaml; if(configYaml != null){ putBodyParameter("ConfigYaml", configYaml); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } public String getMonitoringName() { return this.monitoringName; } public void setMonitoringName(String monitoringName) { this.monitoringName = monitoringName; if(monitoringName != null){ putQueryParameter("MonitoringName", monitoringName); } } @Override public Class<UpdatePrometheusMonitoringResponse> getResponseClass() { return UpdatePrometheusMonitoringResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdatePrometheusMonitoringResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdatePrometheusMonitoringResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdatePrometheusMonitoringResponse extends AcsResponse { private String requestId; private Integer code; private String data; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public UpdatePrometheusMonitoringResponse getInstance(UnmarshallerContext context) { return UpdatePrometheusMonitoringResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdatePrometheusMonitoringStatusRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdatePrometheusMonitoringStatusRequest extends RpcAcsRequest<UpdatePrometheusMonitoringStatusResponse> { private String clusterId; private String type; private String monitoringName; private String status; public UpdatePrometheusMonitoringStatusRequest() { super("ARMS", "2019-08-08", "UpdatePrometheusMonitoringStatus", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } public String getMonitoringName() { return this.monitoringName; } public void setMonitoringName(String monitoringName) { this.monitoringName = monitoringName; if(monitoringName != null){ putQueryParameter("MonitoringName", monitoringName); } } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; if(status != null){ putQueryParameter("Status", status); } } @Override public Class<UpdatePrometheusMonitoringStatusResponse> getResponseClass() { return UpdatePrometheusMonitoringStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdatePrometheusMonitoringStatusResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdatePrometheusMonitoringStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdatePrometheusMonitoringStatusResponse extends AcsResponse { private String requestId; private Integer code; private String data; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public UpdatePrometheusMonitoringStatusResponse getInstance(UnmarshallerContext context) { return UpdatePrometheusMonitoringStatusResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateRumAppRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdateRumAppRequest extends RpcAcsRequest<UpdateRumAppResponse> { private Boolean restart; private Boolean autoRestart; private String appConfig; private String description; private String pid; private String realRegionId; private Boolean stop; private String backendServiceTraceRegion; private String nickname; private String serviceDomainOperationJson; private Boolean isSubscribe; private String bonreeSDKConfigJson; public UpdateRumAppRequest() { super("ARMS", "2019-08-08", "UpdateRumApp", "arms"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Boolean getRestart() { return this.restart; } public void setRestart(Boolean restart) { this.restart = restart; if(restart != null){ putQueryParameter("Restart", restart.toString()); } } public Boolean getAutoRestart() { return this.autoRestart; } public void setAutoRestart(Boolean autoRestart) { this.autoRestart = autoRestart; if(autoRestart != null){ putQueryParameter("AutoRestart", autoRestart.toString()); } } public String getAppConfig() { return this.appConfig; } public void setAppConfig(String appConfig) { this.appConfig = appConfig; if(appConfig != null){ putQueryParameter("AppConfig", appConfig); } } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putQueryParameter("Description", description); } } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; if(pid != null){ putQueryParameter("Pid", pid); } } public String getRealRegionId() { return this.realRegionId; } public void setRealRegionId(String realRegionId) { this.realRegionId = realRegionId; if(realRegionId != null){ putQueryParameter("RealRegionId", realRegionId); } } public Boolean getStop() { return this.stop; } public void setStop(Boolean stop) { this.stop = stop; if(stop != null){ putQueryParameter("Stop", stop.toString()); } } public String getBackendServiceTraceRegion() { return this.backendServiceTraceRegion; } public void setBackendServiceTraceRegion(String backendServiceTraceRegion) { this.backendServiceTraceRegion = backendServiceTraceRegion; if(backendServiceTraceRegion != null){ putQueryParameter("BackendServiceTraceRegion", backendServiceTraceRegion); } } public String getNickname() { return this.nickname; } public void setNickname(String nickname) { this.nickname = nickname; if(nickname != null){ putQueryParameter("Nickname", nickname); } } public String getServiceDomainOperationJson() { return this.serviceDomainOperationJson; } public void setServiceDomainOperationJson(String serviceDomainOperationJson) { this.serviceDomainOperationJson = serviceDomainOperationJson; if(serviceDomainOperationJson != null){ putQueryParameter("ServiceDomainOperationJson", serviceDomainOperationJson); } } public Boolean getIsSubscribe() { return this.isSubscribe; } public void setIsSubscribe(Boolean isSubscribe) { this.isSubscribe = isSubscribe; if(isSubscribe != null){ putQueryParameter("IsSubscribe", isSubscribe.toString()); } } public String getBonreeSDKConfigJson() { return this.bonreeSDKConfigJson; } public void setBonreeSDKConfigJson(String bonreeSDKConfigJson) { this.bonreeSDKConfigJson = bonreeSDKConfigJson; if(bonreeSDKConfigJson != null){ putQueryParameter("BonreeSDKConfigJson", bonreeSDKConfigJson); } } @Override public Class<UpdateRumAppResponse> getResponseClass() { return UpdateRumAppResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateRumAppResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdateRumAppResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateRumAppResponse extends AcsResponse { private String requestId; private String code; private String success; private String message; private String httpStatusCode; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getSuccess() { return this.success; } public void setSuccess(String success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(String httpStatusCode) { this.httpStatusCode = httpStatusCode; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String config; private Integer usage; private Integer limit; private Boolean limited; public String getConfig() { return this.config; } public void setConfig(String config) { this.config = config; } public Integer getUsage() { return this.usage; } public void setUsage(Integer usage) { this.usage = usage; } public Integer getLimit() { return this.limit; } public void setLimit(Integer limit) { this.limit = limit; } public Boolean getLimited() { return this.limited; } public void setLimited(Boolean limited) { this.limited = limited; } } @Override public UpdateRumAppResponse getInstance(UnmarshallerContext context) { return UpdateRumAppResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateRumFileStatusRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdateRumFileStatusRequest extends RpcAcsRequest<UpdateRumFileStatusResponse> { private String pid; private String uuid; private String versionId; private String fileName; private String size; private String status; public UpdateRumFileStatusRequest() { super("ARMS", "2019-08-08", "UpdateRumFileStatus", "arms"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; if(pid != null){ putQueryParameter("Pid", pid); } } public String getUuid() { return this.uuid; } public void setUuid(String uuid) { this.uuid = uuid; if(uuid != null){ putQueryParameter("Uuid", uuid); } } public String getVersionId() { return this.versionId; } public void setVersionId(String versionId) { this.versionId = versionId; if(versionId != null){ putQueryParameter("VersionId", versionId); } } public String getFileName() { return this.fileName; } public void setFileName(String fileName) { this.fileName = fileName; if(fileName != null){ putQueryParameter("FileName", fileName); } } public String getSize() { return this.size; } public void setSize(String size) { this.size = size; if(size != null){ putQueryParameter("Size", size); } } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; if(status != null){ putQueryParameter("Status", status); } } @Override public Class<UpdateRumFileStatusResponse> getResponseClass() { return UpdateRumFileStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateRumFileStatusResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdateRumFileStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateRumFileStatusResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public UpdateRumFileStatusResponse getInstance(UnmarshallerContext context) { return UpdateRumFileStatusResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateTimingSyntheticTaskRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import java.util.Map; import com.google.gson.Gson; import com.google.gson.annotations.SerializedName; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdateTimingSyntheticTaskRequest extends RpcAcsRequest<UpdateTimingSyntheticTaskResponse> { @SerializedName("availableAssertions") private List<AvailableAssertions> availableAssertions; @SerializedName("commonSetting") private CommonSetting commonSetting; private String frequency; @SerializedName("tags") private List<Tags> tags; private String resourceGroupId; @SerializedName("monitorConf") private MonitorConf monitorConf; @SerializedName("customPeriod") private CustomPeriod customPeriod; private String name; private String taskId; @SerializedName("monitors") private List<Monitors> monitors; public UpdateTimingSyntheticTaskRequest() { super("ARMS", "2019-08-08", "UpdateTimingSyntheticTask", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public List<AvailableAssertions> getAvailableAssertions() { return this.availableAssertions; } public void setAvailableAssertions(List<AvailableAssertions> availableAssertions) { this.availableAssertions = availableAssertions; if (availableAssertions != null) { putQueryParameter("AvailableAssertions" , new Gson().toJson(availableAssertions)); } } public CommonSetting getCommonSetting() { return this.commonSetting; } public void setCommonSetting(CommonSetting commonSetting) { this.commonSetting = commonSetting; if (commonSetting != null) { putQueryParameter("CommonSetting" , new Gson().toJson(commonSetting)); } } public String getFrequency() { return this.frequency; } public void setFrequency(String frequency) { this.frequency = frequency; if(frequency != null){ putQueryParameter("Frequency", frequency); } } public List<Tags> getTags() { return this.tags; } public void setTags(List<Tags> tags) { this.tags = tags; if (tags != null) { putQueryParameter("Tags" , new Gson().toJson(tags)); } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public MonitorConf getMonitorConf() { return this.monitorConf; } public void setMonitorConf(MonitorConf monitorConf) { this.monitorConf = monitorConf; if (monitorConf != null) { putQueryParameter("MonitorConf" , new Gson().toJson(monitorConf)); } } public CustomPeriod getCustomPeriod() { return this.customPeriod; } public void setCustomPeriod(CustomPeriod customPeriod) { this.customPeriod = customPeriod; if (customPeriod != null) { putQueryParameter("CustomPeriod" , new Gson().toJson(customPeriod)); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putQueryParameter("Name", name); } } public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; if(taskId != null){ putQueryParameter("TaskId", taskId); } } public List<Monitors> getMonitors() { return this.monitors; } public void setMonitors(List<Monitors> monitors) { this.monitors = monitors; if (monitors != null) { putQueryParameter("Monitors" , new Gson().toJson(monitors)); } } public static class AvailableAssertions { @SerializedName("Expect") private String expect; @SerializedName("Type") private String type; @SerializedName("Operator") private String operator; @SerializedName("Target") private String target; public String getExpect() { return this.expect; } public void setExpect(String expect) { this.expect = expect; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getOperator() { return this.operator; } public void setOperator(String operator) { this.operator = operator; } public String getTarget() { return this.target; } public void setTarget(String target) { this.target = target; } } public static class CommonSetting { @SerializedName("CustomPrometheusSetting") private CustomPrometheusSetting customPrometheusSetting; @SerializedName("CustomHost") private CustomHost customHost; @SerializedName("XtraceRegion") private String xtraceRegion; @SerializedName("IpType") private Integer ipType; @SerializedName("IsOpenTrace") private Boolean isOpenTrace; @SerializedName("TraceClientType") private Integer traceClientType; @SerializedName("CustomVPCSetting") private CustomVPCSetting customVPCSetting; @SerializedName("MonitorSamples") private Integer monitorSamples; public CustomPrometheusSetting getCustomPrometheusSetting() { return this.customPrometheusSetting; } public void setCustomPrometheusSetting(CustomPrometheusSetting customPrometheusSetting) { this.customPrometheusSetting = customPrometheusSetting; } public CustomHost getCustomHost() { return this.customHost; } public void setCustomHost(CustomHost customHost) { this.customHost = customHost; } public String getXtraceRegion() { return this.xtraceRegion; } public void setXtraceRegion(String xtraceRegion) { this.xtraceRegion = xtraceRegion; } public Integer getIpType() { return this.ipType; } public void setIpType(Integer ipType) { this.ipType = ipType; } public Boolean getIsOpenTrace() { return this.isOpenTrace; } public void setIsOpenTrace(Boolean isOpenTrace) { this.isOpenTrace = isOpenTrace; } public Integer getTraceClientType() { return this.traceClientType; } public void setTraceClientType(Integer traceClientType) { this.traceClientType = traceClientType; } public CustomVPCSetting getCustomVPCSetting() { return this.customVPCSetting; } public void setCustomVPCSetting(CustomVPCSetting customVPCSetting) { this.customVPCSetting = customVPCSetting; } public Integer getMonitorSamples() { return this.monitorSamples; } public void setMonitorSamples(Integer monitorSamples) { this.monitorSamples = monitorSamples; } public static class CustomPrometheusSetting { @SerializedName("PrometheusLabels") private Map<String,String> prometheusLabels; @SerializedName("PrometheusClusterRegion") private String prometheusClusterRegion; @SerializedName("PrometheusClusterId") private String prometheusClusterId; public Map<String,String> getPrometheusLabels() { return this.prometheusLabels; } public void setPrometheusLabels(Map<String,String> prometheusLabels) { this.prometheusLabels = prometheusLabels; } public String getPrometheusClusterRegion() { return this.prometheusClusterRegion; } public void setPrometheusClusterRegion(String prometheusClusterRegion) { this.prometheusClusterRegion = prometheusClusterRegion; } public String getPrometheusClusterId() { return this.prometheusClusterId; } public void setPrometheusClusterId(String prometheusClusterId) { this.prometheusClusterId = prometheusClusterId; } } public static class CustomHost { @SerializedName("Hosts") private List<HostsItem> hosts; @SerializedName("SelectType") private Integer selectType; public List<HostsItem> getHosts() { return this.hosts; } public void setHosts(List<HostsItem> hosts) { this.hosts = hosts; } public Integer getSelectType() { return this.selectType; } public void setSelectType(Integer selectType) { this.selectType = selectType; } public static class HostsItem { @SerializedName("Domain") private String domain; @SerializedName("IpType") private Integer ipType; @SerializedName("Ips") private List<String> ips; public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; } public Integer getIpType() { return this.ipType; } public void setIpType(Integer ipType) { this.ipType = ipType; } public List<String> getIps() { return this.ips; } public void setIps(List<String> ips) { this.ips = ips; } } } public static class CustomVPCSetting { @SerializedName("VSwitchId") private String vSwitchId; @SerializedName("SecureGroupId") private String secureGroupId; @SerializedName("RegionId") private String regionId; @SerializedName("VpcId") private String vpcId; public String getVSwitchId() { return this.vSwitchId; } public void setVSwitchId(String vSwitchId) { this.vSwitchId = vSwitchId; } public String getSecureGroupId() { return this.secureGroupId; } public void setSecureGroupId(String secureGroupId) { this.secureGroupId = secureGroupId; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getVpcId() { return this.vpcId; } public void setVpcId(String vpcId) { this.vpcId = vpcId; } } } public static class Tags { @SerializedName("Value") private String value; @SerializedName("Key") private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } public static class MonitorConf { @SerializedName("NetICMP") private NetICMP netICMP; @SerializedName("ApiHTTP") private ApiHTTP apiHTTP; @SerializedName("Website") private Website website; @SerializedName("Stream") private Stream stream; @SerializedName("NetDNS") private NetDNS netDNS; @SerializedName("NetTCP") private NetTCP netTCP; @SerializedName("FileDownload") private FileDownload fileDownload; public NetICMP getNetICMP() { return this.netICMP; } public void setNetICMP(NetICMP netICMP) { this.netICMP = netICMP; } public ApiHTTP getApiHTTP() { return this.apiHTTP; } public void setApiHTTP(ApiHTTP apiHTTP) { this.apiHTTP = apiHTTP; } public Website getWebsite() { return this.website; } public void setWebsite(Website website) { this.website = website; } public Stream getStream() { return this.stream; } public void setStream(Stream stream) { this.stream = stream; } public NetDNS getNetDNS() { return this.netDNS; } public void setNetDNS(NetDNS netDNS) { this.netDNS = netDNS; } public NetTCP getNetTCP() { return this.netTCP; } public void setNetTCP(NetTCP netTCP) { this.netTCP = netTCP; } public FileDownload getFileDownload() { return this.fileDownload; } public void setFileDownload(FileDownload fileDownload) { this.fileDownload = fileDownload; } public static class NetICMP { @SerializedName("TracertTimeout") private Long tracertTimeout; @SerializedName("Interval") private Long interval; @SerializedName("SplitPackage") private Boolean splitPackage; @SerializedName("PackageSize") private Integer packageSize; @SerializedName("TracertEnable") private Boolean tracertEnable; @SerializedName("TargetUrl") private String targetUrl; @SerializedName("Timeout") private Long timeout; @SerializedName("PackageNum") private Integer packageNum; @SerializedName("TracertNumMax") private Integer tracertNumMax; public Long getTracertTimeout() { return this.tracertTimeout; } public void setTracertTimeout(Long tracertTimeout) { this.tracertTimeout = tracertTimeout; } public Long getInterval() { return this.interval; } public void setInterval(Long interval) { this.interval = interval; } public Boolean getSplitPackage() { return this.splitPackage; } public void setSplitPackage(Boolean splitPackage) { this.splitPackage = splitPackage; } public Integer getPackageSize() { return this.packageSize; } public void setPackageSize(Integer packageSize) { this.packageSize = packageSize; } public Boolean getTracertEnable() { return this.tracertEnable; } public void setTracertEnable(Boolean tracertEnable) { this.tracertEnable = tracertEnable; } public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } public Long getTimeout() { return this.timeout; } public void setTimeout(Long timeout) { this.timeout = timeout; } public Integer getPackageNum() { return this.packageNum; } public void setPackageNum(Integer packageNum) { this.packageNum = packageNum; } public Integer getTracertNumMax() { return this.tracertNumMax; } public void setTracertNumMax(Integer tracertNumMax) { this.tracertNumMax = tracertNumMax; } } public static class ApiHTTP { @SerializedName("ConnectTimeout") private Long connectTimeout; @SerializedName("RequestBody") private RequestBody requestBody; @SerializedName("Method") private String method; @SerializedName("CheckCert") private Boolean checkCert; @SerializedName("ProtocolAlpnProtocol") private Integer protocolAlpnProtocol; @SerializedName("RequestHeaders") private Map<String,String> requestHeaders; @SerializedName("TargetUrl") private String targetUrl; @SerializedName("Timeout") private Long timeout; public Long getConnectTimeout() { return this.connectTimeout; } public void setConnectTimeout(Long connectTimeout) { this.connectTimeout = connectTimeout; } public RequestBody getRequestBody() { return this.requestBody; } public void setRequestBody(RequestBody requestBody) { this.requestBody = requestBody; } public String getBizMethod() { return this.method; } public void setBizMethod(String method) { this.method = method; } public Boolean getCheckCert() { return this.checkCert; } public void setCheckCert(Boolean checkCert) { this.checkCert = checkCert; } public Integer getProtocolAlpnProtocol() { return this.protocolAlpnProtocol; } public void setProtocolAlpnProtocol(Integer protocolAlpnProtocol) { this.protocolAlpnProtocol = protocolAlpnProtocol; } public Map<String,String> getRequestHeaders() { return this.requestHeaders; } public void setRequestHeaders(Map<String,String> requestHeaders) { this.requestHeaders = requestHeaders; } public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } public Long getTimeout() { return this.timeout; } public void setTimeout(Long timeout) { this.timeout = timeout; } public static class RequestBody { @SerializedName("Type") private String type; @SerializedName("Content") private String content; public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getContent() { return this.content; } public void setContent(String content) { this.content = content; } } } public static class Website { @SerializedName("FlowHijackJumpTimes") private Integer flowHijackJumpTimes; @SerializedName("DNSHijackWhitelist") private String dNSHijackWhitelist; @SerializedName("SlowElementThreshold") private Long slowElementThreshold; @SerializedName("VerifyStringBlacklist") private String verifyStringBlacklist; @SerializedName("CustomHeader") private Integer customHeader; @SerializedName("WaitCompletionTime") private Long waitCompletionTime; @SerializedName("DisableCompression") private Integer disableCompression; @SerializedName("MonitorTimeout") private Long monitorTimeout; @SerializedName("VerifyStringWhitelist") private String verifyStringWhitelist; @SerializedName("CustomHeaderContent") private Map<String,String> customHeaderContent; @SerializedName("FilterInvalidIP") private Integer filterInvalidIP; @SerializedName("DisableCache") private Integer disableCache; @SerializedName("PageTamper") private String pageTamper; @SerializedName("FlowHijackLogo") private String flowHijackLogo; @SerializedName("AutomaticScrolling") private Integer automaticScrolling; @SerializedName("TargetUrl") private String targetUrl; @SerializedName("Redirection") private Integer redirection; @SerializedName("IgnoreCertificateError") private Integer ignoreCertificateError; @SerializedName("ElementBlacklist") private String elementBlacklist; public Integer getFlowHijackJumpTimes() { return this.flowHijackJumpTimes; } public void setFlowHijackJumpTimes(Integer flowHijackJumpTimes) { this.flowHijackJumpTimes = flowHijackJumpTimes; } public String getDNSHijackWhitelist() { return this.dNSHijackWhitelist; } public void setDNSHijackWhitelist(String dNSHijackWhitelist) { this.dNSHijackWhitelist = dNSHijackWhitelist; } public Long getSlowElementThreshold() { return this.slowElementThreshold; } public void setSlowElementThreshold(Long slowElementThreshold) { this.slowElementThreshold = slowElementThreshold; } public String getVerifyStringBlacklist() { return this.verifyStringBlacklist; } public void setVerifyStringBlacklist(String verifyStringBlacklist) { this.verifyStringBlacklist = verifyStringBlacklist; } public Integer getCustomHeader() { return this.customHeader; } public void setCustomHeader(Integer customHeader) { this.customHeader = customHeader; } public Long getWaitCompletionTime() { return this.waitCompletionTime; } public void setWaitCompletionTime(Long waitCompletionTime) { this.waitCompletionTime = waitCompletionTime; } public Integer getDisableCompression() { return this.disableCompression; } public void setDisableCompression(Integer disableCompression) { this.disableCompression = disableCompression; } public Long getMonitorTimeout() { return this.monitorTimeout; } public void setMonitorTimeout(Long monitorTimeout) { this.monitorTimeout = monitorTimeout; } public String getVerifyStringWhitelist() { return this.verifyStringWhitelist; } public void setVerifyStringWhitelist(String verifyStringWhitelist) { this.verifyStringWhitelist = verifyStringWhitelist; } public Map<String,String> getCustomHeaderContent() { return this.customHeaderContent; } public void setCustomHeaderContent(Map<String,String> customHeaderContent) { this.customHeaderContent = customHeaderContent; } public Integer getFilterInvalidIP() { return this.filterInvalidIP; } public void setFilterInvalidIP(Integer filterInvalidIP) { this.filterInvalidIP = filterInvalidIP; } public Integer getDisableCache() { return this.disableCache; } public void setDisableCache(Integer disableCache) { this.disableCache = disableCache; } public String getPageTamper() { return this.pageTamper; } public void setPageTamper(String pageTamper) { this.pageTamper = pageTamper; } public String getFlowHijackLogo() { return this.flowHijackLogo; } public void setFlowHijackLogo(String flowHijackLogo) { this.flowHijackLogo = flowHijackLogo; } public Integer getAutomaticScrolling() { return this.automaticScrolling; } public void setAutomaticScrolling(Integer automaticScrolling) { this.automaticScrolling = automaticScrolling; } public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } public Integer getRedirection() { return this.redirection; } public void setRedirection(Integer redirection) { this.redirection = redirection; } public Integer getIgnoreCertificateError() { return this.ignoreCertificateError; } public void setIgnoreCertificateError(Integer ignoreCertificateError) { this.ignoreCertificateError = ignoreCertificateError; } public String getElementBlacklist() { return this.elementBlacklist; } public void setElementBlacklist(String elementBlacklist) { this.elementBlacklist = elementBlacklist; } } public static class Stream { @SerializedName("PlayerType") private Integer playerType; @SerializedName("StreamType") private Integer streamType; @SerializedName("StreamAddressType") private Integer streamAddressType; @SerializedName("CustomHeaderContent") private Map<String,String> customHeaderContent; @SerializedName("StreamMonitorTimeout") private Integer streamMonitorTimeout; @SerializedName("WhiteList") private String whiteList; @SerializedName("TargetUrl") private String targetUrl; public Integer getPlayerType() { return this.playerType; } public void setPlayerType(Integer playerType) { this.playerType = playerType; } public Integer getStreamType() { return this.streamType; } public void setStreamType(Integer streamType) { this.streamType = streamType; } public Integer getStreamAddressType() { return this.streamAddressType; } public void setStreamAddressType(Integer streamAddressType) { this.streamAddressType = streamAddressType; } public Map<String,String> getCustomHeaderContent() { return this.customHeaderContent; } public void setCustomHeaderContent(Map<String,String> customHeaderContent) { this.customHeaderContent = customHeaderContent; } public Integer getStreamMonitorTimeout() { return this.streamMonitorTimeout; } public void setStreamMonitorTimeout(Integer streamMonitorTimeout) { this.streamMonitorTimeout = streamMonitorTimeout; } public String getWhiteList() { return this.whiteList; } public void setWhiteList(String whiteList) { this.whiteList = whiteList; } public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } } public static class NetDNS { @SerializedName("Dig") private Integer dig; @SerializedName("NsServer") private String nsServer; @SerializedName("QueryMethod") private Integer queryMethod; @SerializedName("TargetUrl") private String targetUrl; @SerializedName("DnsServerIpType") private Integer dnsServerIpType; @SerializedName("Timeout") private Long timeout; public Integer getDig() { return this.dig; } public void setDig(Integer dig) { this.dig = dig; } public String getNsServer() { return this.nsServer; } public void setNsServer(String nsServer) { this.nsServer = nsServer; } public Integer getQueryMethod() { return this.queryMethod; } public void setQueryMethod(Integer queryMethod) { this.queryMethod = queryMethod; } public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } public Integer getDnsServerIpType() { return this.dnsServerIpType; } public void setDnsServerIpType(Integer dnsServerIpType) { this.dnsServerIpType = dnsServerIpType; } public Long getTimeout() { return this.timeout; } public void setTimeout(Long timeout) { this.timeout = timeout; } } public static class NetTCP { @SerializedName("ConnectTimes") private Integer connectTimes; @SerializedName("TracertTimeout") private Long tracertTimeout; @SerializedName("Interval") private Long interval; @SerializedName("TracertEnable") private Boolean tracertEnable; @SerializedName("TargetUrl") private String targetUrl; @SerializedName("Timeout") private Long timeout; @SerializedName("TracertNumMax") private Integer tracertNumMax; public Integer getConnectTimes() { return this.connectTimes; } public void setConnectTimes(Integer connectTimes) { this.connectTimes = connectTimes; } public Long getTracertTimeout() { return this.tracertTimeout; } public void setTracertTimeout(Long tracertTimeout) { this.tracertTimeout = tracertTimeout; } public Long getInterval() { return this.interval; } public void setInterval(Long interval) { this.interval = interval; } public Boolean getTracertEnable() { return this.tracertEnable; } public void setTracertEnable(Boolean tracertEnable) { this.tracertEnable = tracertEnable; } public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } public Long getTimeout() { return this.timeout; } public void setTimeout(Long timeout) { this.timeout = timeout; } public Integer getTracertNumMax() { return this.tracertNumMax; } public void setTracertNumMax(Integer tracertNumMax) { this.tracertNumMax = tracertNumMax; } } public static class FileDownload { @SerializedName("IgnoreCertificateUntrustworthyError") private Integer ignoreCertificateUntrustworthyError; @SerializedName("ConnectionTimeout") private Long connectionTimeout; @SerializedName("IgnoreCertificateCanceledError") private Integer ignoreCertificateCanceledError; @SerializedName("IgnoreCertificateOutOfDateError") private Integer ignoreCertificateOutOfDateError; @SerializedName("DownloadKernel") private Integer downloadKernel; @SerializedName("WhiteList") private String whiteList; @SerializedName("IgnoreCertificateAuthError") private Integer ignoreCertificateAuthError; @SerializedName("MonitorTimeout") private Long monitorTimeout; @SerializedName("ValidateKeywords") private String validateKeywords; @SerializedName("IgnoreInvalidHostError") private Integer ignoreInvalidHostError; @SerializedName("CustomHeaderContent") private Map<String,String> customHeaderContent; @SerializedName("TransmissionSize") private Long transmissionSize; @SerializedName("IgnoreCertificateUsingError") private Integer ignoreCertificateUsingError; @SerializedName("QuickProtocol") private Integer quickProtocol; @SerializedName("IgnoreCertificateStatusError") private Integer ignoreCertificateStatusError; @SerializedName("TargetUrl") private String targetUrl; @SerializedName("Redirection") private Integer redirection; @SerializedName("VerifyWay") private Integer verifyWay; public Integer getIgnoreCertificateUntrustworthyError() { return this.ignoreCertificateUntrustworthyError; } public void setIgnoreCertificateUntrustworthyError(Integer ignoreCertificateUntrustworthyError) { this.ignoreCertificateUntrustworthyError = ignoreCertificateUntrustworthyError; } public Long getConnectionTimeout() { return this.connectionTimeout; } public void setConnectionTimeout(Long connectionTimeout) { this.connectionTimeout = connectionTimeout; } public Integer getIgnoreCertificateCanceledError() { return this.ignoreCertificateCanceledError; } public void setIgnoreCertificateCanceledError(Integer ignoreCertificateCanceledError) { this.ignoreCertificateCanceledError = ignoreCertificateCanceledError; } public Integer getIgnoreCertificateOutOfDateError() { return this.ignoreCertificateOutOfDateError; } public void setIgnoreCertificateOutOfDateError(Integer ignoreCertificateOutOfDateError) { this.ignoreCertificateOutOfDateError = ignoreCertificateOutOfDateError; } public Integer getDownloadKernel() { return this.downloadKernel; } public void setDownloadKernel(Integer downloadKernel) { this.downloadKernel = downloadKernel; } public String getWhiteList() { return this.whiteList; } public void setWhiteList(String whiteList) { this.whiteList = whiteList; } public Integer getIgnoreCertificateAuthError() { return this.ignoreCertificateAuthError; } public void setIgnoreCertificateAuthError(Integer ignoreCertificateAuthError) { this.ignoreCertificateAuthError = ignoreCertificateAuthError; } public Long getMonitorTimeout() { return this.monitorTimeout; } public void setMonitorTimeout(Long monitorTimeout) { this.monitorTimeout = monitorTimeout; } public String getValidateKeywords() { return this.validateKeywords; } public void setValidateKeywords(String validateKeywords) { this.validateKeywords = validateKeywords; } public Integer getIgnoreInvalidHostError() { return this.ignoreInvalidHostError; } public void setIgnoreInvalidHostError(Integer ignoreInvalidHostError) { this.ignoreInvalidHostError = ignoreInvalidHostError; } public Map<String,String> getCustomHeaderContent() { return this.customHeaderContent; } public void setCustomHeaderContent(Map<String,String> customHeaderContent) { this.customHeaderContent = customHeaderContent; } public Long getTransmissionSize() { return this.transmissionSize; } public void setTransmissionSize(Long transmissionSize) { this.transmissionSize = transmissionSize; } public Integer getIgnoreCertificateUsingError() { return this.ignoreCertificateUsingError; } public void setIgnoreCertificateUsingError(Integer ignoreCertificateUsingError) { this.ignoreCertificateUsingError = ignoreCertificateUsingError; } public Integer getQuickProtocol() { return this.quickProtocol; } public void setQuickProtocol(Integer quickProtocol) { this.quickProtocol = quickProtocol; } public Integer getIgnoreCertificateStatusError() { return this.ignoreCertificateStatusError; } public void setIgnoreCertificateStatusError(Integer ignoreCertificateStatusError) { this.ignoreCertificateStatusError = ignoreCertificateStatusError; } public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } public Integer getRedirection() { return this.redirection; } public void setRedirection(Integer redirection) { this.redirection = redirection; } public Integer getVerifyWay() { return this.verifyWay; } public void setVerifyWay(Integer verifyWay) { this.verifyWay = verifyWay; } } } public static class CustomPeriod { @SerializedName("EndHour") private Integer endHour; @SerializedName("StartHour") private Integer startHour; public Integer getEndHour() { return this.endHour; } public void setEndHour(Integer endHour) { this.endHour = endHour; } public Integer getStartHour() { return this.startHour; } public void setStartHour(Integer startHour) { this.startHour = startHour; } } public static class Monitors { @SerializedName("ClientType") private Integer clientType; @SerializedName("CityCode") private String cityCode; @SerializedName("OperatorCode") private String operatorCode; public Integer getClientType() { return this.clientType; } public void setClientType(Integer clientType) { this.clientType = clientType; } public String getCityCode() { return this.cityCode; } public void setCityCode(String cityCode) { this.cityCode = cityCode; } public String getOperatorCode() { return this.operatorCode; } public void setOperatorCode(String operatorCode) { this.operatorCode = operatorCode; } } @Override public Class<UpdateTimingSyntheticTaskResponse> getResponseClass() { return UpdateTimingSyntheticTaskResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateTimingSyntheticTaskResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdateTimingSyntheticTaskResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateTimingSyntheticTaskResponse extends AcsResponse { private String requestId; private Boolean success; private Long code; private String message; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Long getCode() { return this.code; } public void setCode(Long code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String taskId; public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; } } @Override public UpdateTimingSyntheticTaskResponse getInstance(UnmarshallerContext context) { return UpdateTimingSyntheticTaskResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateWebhookRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpdateWebhookRequest extends RpcAcsRequest<UpdateWebhookResponse> { private String httpHeaders; private String method; private Long contactId; private String httpParams; private String body; private String url; private String contactName; private String recoverBody; public UpdateWebhookRequest() { super("ARMS", "2019-08-08", "UpdateWebhook", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getHttpHeaders() { return this.httpHeaders; } public void setHttpHeaders(String httpHeaders) { this.httpHeaders = httpHeaders; if(httpHeaders != null){ putQueryParameter("HttpHeaders", httpHeaders); } } public String getBizMethod() { return this.method; } public void setBizMethod(String method) { this.method = method; if(method != null){ putQueryParameter("Method", method); } } public Long getContactId() { return this.contactId; } public void setContactId(Long contactId) { this.contactId = contactId; if(contactId != null){ putQueryParameter("ContactId", contactId.toString()); } } public String getHttpParams() { return this.httpParams; } public void setHttpParams(String httpParams) { this.httpParams = httpParams; if(httpParams != null){ putQueryParameter("HttpParams", httpParams); } } public String getBody() { return this.body; } public void setBody(String body) { this.body = body; if(body != null){ putQueryParameter("Body", body); } } public String getUrl() { return this.url; } public void setUrl(String url) { this.url = url; if(url != null){ putQueryParameter("Url", url); } } public String getContactName() { return this.contactName; } public void setContactName(String contactName) { this.contactName = contactName; if(contactName != null){ putQueryParameter("ContactName", contactName); } } public String getRecoverBody() { return this.recoverBody; } public void setRecoverBody(String recoverBody) { this.recoverBody = recoverBody; if(recoverBody != null){ putQueryParameter("RecoverBody", recoverBody); } } @Override public Class<UpdateWebhookResponse> getResponseClass() { return UpdateWebhookResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpdateWebhookResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpdateWebhookResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpdateWebhookResponse extends AcsResponse { private Boolean isSuccess; private String requestId; public Boolean getIsSuccess() { return this.isSuccess; } public void setIsSuccess(Boolean isSuccess) { this.isSuccess = isSuccess; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public UpdateWebhookResponse getInstance(UnmarshallerContext context) { return UpdateWebhookResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpgradeAddonReleaseRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpgradeAddonReleaseRequest extends RpcAcsRequest<UpgradeAddonReleaseResponse> { private String addonVersion; private Boolean dryRun; private String values; private String releaseName; private String environmentId; public UpgradeAddonReleaseRequest() { super("ARMS", "2019-08-08", "UpgradeAddonRelease", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAddonVersion() { return this.addonVersion; } public void setAddonVersion(String addonVersion) { this.addonVersion = addonVersion; if(addonVersion != null){ putQueryParameter("AddonVersion", addonVersion); } } public Boolean getDryRun() { return this.dryRun; } public void setDryRun(Boolean dryRun) { this.dryRun = dryRun; if(dryRun != null){ putQueryParameter("DryRun", dryRun.toString()); } } public String getValues() { return this.values; } public void setValues(String values) { this.values = values; if(values != null){ putQueryParameter("Values", values); } } public String getReleaseName() { return this.releaseName; } public void setReleaseName(String releaseName) { this.releaseName = releaseName; if(releaseName != null){ putQueryParameter("ReleaseName", releaseName); } } public String getEnvironmentId() { return this.environmentId; } public void setEnvironmentId(String environmentId) { this.environmentId = environmentId; if(environmentId != null){ putQueryParameter("EnvironmentId", environmentId); } } @Override public Class<UpgradeAddonReleaseResponse> getResponseClass() { return UpgradeAddonReleaseResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpgradeAddonReleaseResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpgradeAddonReleaseResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpgradeAddonReleaseResponse extends AcsResponse { private String requestId; private Integer code; private Boolean success; private String message; private String data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } @Override public UpgradeAddonReleaseResponse getInstance(UnmarshallerContext context) { return UpgradeAddonReleaseResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpgradeEnvironmentFeatureRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UpgradeEnvironmentFeatureRequest extends RpcAcsRequest<UpgradeEnvironmentFeatureResponse> { private String aliyunLang; private String values; private String featureName; private String environmentId; private String featureVersion; public UpgradeEnvironmentFeatureRequest() { super("ARMS", "2019-08-08", "UpgradeEnvironmentFeature", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAliyunLang() { return this.aliyunLang; } public void setAliyunLang(String aliyunLang) { this.aliyunLang = aliyunLang; if(aliyunLang != null){ putQueryParameter("AliyunLang", aliyunLang); } } public String getValues() { return this.values; } public void setValues(String values) { this.values = values; if(values != null){ putQueryParameter("Values", values); } } public String getFeatureName() { return this.featureName; } public void setFeatureName(String featureName) { this.featureName = featureName; if(featureName != null){ putQueryParameter("FeatureName", featureName); } } public String getEnvironmentId() { return this.environmentId; } public void setEnvironmentId(String environmentId) { this.environmentId = environmentId; if(environmentId != null){ putQueryParameter("EnvironmentId", environmentId); } } public String getFeatureVersion() { return this.featureVersion; } public void setFeatureVersion(String featureVersion) { this.featureVersion = featureVersion; if(featureVersion != null){ putQueryParameter("FeatureVersion", featureVersion); } } @Override public Class<UpgradeEnvironmentFeatureResponse> getResponseClass() { return UpgradeEnvironmentFeatureResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UpgradeEnvironmentFeatureResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.Map; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UpgradeEnvironmentFeatureResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UpgradeEnvironmentFeatureResponse extends AcsResponse { private String requestId; private Integer code; private String message; private Boolean success; private Map<Object,Object> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Map<Object,Object> getData() { return this.data; } public void setData(Map<Object,Object> data) { this.data = data; } @Override public UpgradeEnvironmentFeatureResponse getInstance(UnmarshallerContext context) { return UpgradeEnvironmentFeatureResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UploadRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class UploadRequest extends RpcAcsRequest<UploadResponse> { private String fileName; private String file; private String edition; private String pid; private String version; public UploadRequest() { super("ARMS", "2019-08-08", "Upload", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getFileName() { return this.fileName; } public void setFileName(String fileName) { this.fileName = fileName; if(fileName != null){ putQueryParameter("FileName", fileName); } } public String getFile() { return this.file; } public void setFile(String file) { this.file = file; if(file != null){ putBodyParameter("File", file); } } public String getEdition() { return this.edition; } public void setEdition(String edition) { this.edition = edition; if(edition != null){ putQueryParameter("Edition", edition); } } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; if(pid != null){ putQueryParameter("Pid", pid); } } public String getVersion() { return this.version; } public void setVersion(String version) { this.version = version; if(version != null){ putQueryParameter("Version", version); } } @Override public Class<UploadResponse> getResponseClass() { return UploadResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/UploadResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.UploadResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class UploadResponse extends AcsResponse { private String requestId; private UploadResult uploadResult; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public UploadResult getUploadResult() { return this.uploadResult; } public void setUploadResult(UploadResult uploadResult) { this.uploadResult = uploadResult; } public static class UploadResult { private String fid; private String fileName; private String uploadTime; public String getFid() { return this.fid; } public void setFid(String fid) { this.fid = fid; } public String getFileName() { return this.fileName; } public void setFileName(String fileName) { this.fileName = fileName; } public String getUploadTime() { return this.uploadTime; } public void setUploadTime(String uploadTime) { this.uploadTime = uploadTime; } } @Override public UploadResponse getInstance(UnmarshallerContext context) { return UploadResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform/v20190808/AddAliClusterIdsToPrometheusGlobalViewResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.transform.v20190808; import com.aliyuncs.arms.model.v20190808.AddAliClusterIdsToPrometheusGlobalViewResponse; import com.aliyuncs.arms.model.v20190808.AddAliClusterIdsToPrometheusGlobalViewResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class AddAliClusterIdsToPrometheusGlobalViewResponseUnmarshaller { public static AddAliClusterIdsToPrometheusGlobalViewResponse unmarshall(AddAliClusterIdsToPrometheusGlobalViewResponse addAliClusterIdsToPrometheusGlobalViewResponse, UnmarshallerContext _ctx) { addAliClusterIdsToPrometheusGlobalViewResponse.setRequestId(_ctx.stringValue("AddAliClusterIdsToPrometheusGlobalViewResponse.RequestId")); addAliClusterIdsToPrometheusGlobalViewResponse.setCode(_ctx.integerValue("AddAliClusterIdsToPrometheusGlobalViewResponse.Code")); addAliClusterIdsToPrometheusGlobalViewResponse.setMessage(_ctx.stringValue("AddAliClusterIdsToPrometheusGlobalViewResponse.Message")); Data data = new Data(); data.setSuccess(_ctx.booleanValue("AddAliClusterIdsToPrometheusGlobalViewResponse.Data.Success")); data.setMsg(_ctx.stringValue("AddAliClusterIdsToPrometheusGlobalViewResponse.Data.Msg")); data.setInfo(_ctx.stringValue("AddAliClusterIdsToPrometheusGlobalViewResponse.Data.Info")); addAliClusterIdsToPrometheusGlobalViewResponse.setData(data); return addAliClusterIdsToPrometheusGlobalViewResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform/v20190808/AddGrafanaResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.transform.v20190808; import com.aliyuncs.arms.model.v20190808.AddGrafanaResponse; import com.aliyuncs.transform.UnmarshallerContext; public class AddGrafanaResponseUnmarshaller { public static AddGrafanaResponse unmarshall(AddGrafanaResponse addGrafanaResponse, UnmarshallerContext _ctx) { addGrafanaResponse.setRequestId(_ctx.stringValue("AddGrafanaResponse.RequestId")); addGrafanaResponse.setData(_ctx.stringValue("AddGrafanaResponse.Data")); return addGrafanaResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform/v20190808/AddIntegrationResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.transform.v20190808; import com.aliyuncs.arms.model.v20190808.AddIntegrationResponse; import com.aliyuncs.transform.UnmarshallerContext; public class AddIntegrationResponseUnmarshaller { public static AddIntegrationResponse unmarshall(AddIntegrationResponse addIntegrationResponse, UnmarshallerContext _ctx) { addIntegrationResponse.setRequestId(_ctx.stringValue("AddIntegrationResponse.RequestId")); addIntegrationResponse.setData(_ctx.stringValue("AddIntegrationResponse.Data")); addIntegrationResponse.setCode(_ctx.integerValue("AddIntegrationResponse.Code")); addIntegrationResponse.setMessage(_ctx.stringValue("AddIntegrationResponse.Message")); return addIntegrationResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform/v20190808/AddPrometheusGlobalViewByAliClusterIdsResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.transform.v20190808; import com.aliyuncs.arms.model.v20190808.AddPrometheusGlobalViewByAliClusterIdsResponse; import com.aliyuncs.arms.model.v20190808.AddPrometheusGlobalViewByAliClusterIdsResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class AddPrometheusGlobalViewByAliClusterIdsResponseUnmarshaller { public static AddPrometheusGlobalViewByAliClusterIdsResponse unmarshall(AddPrometheusGlobalViewByAliClusterIdsResponse addPrometheusGlobalViewByAliClusterIdsResponse, UnmarshallerContext _ctx) { addPrometheusGlobalViewByAliClusterIdsResponse.setRequestId(_ctx.stringValue("AddPrometheusGlobalViewByAliClusterIdsResponse.RequestId")); addPrometheusGlobalViewByAliClusterIdsResponse.setCode(_ctx.integerValue("AddPrometheusGlobalViewByAliClusterIdsResponse.Code")); addPrometheusGlobalViewByAliClusterIdsResponse.setMessage(_ctx.stringValue("AddPrometheusGlobalViewByAliClusterIdsResponse.Message")); Data data = new Data(); data.setSuccess(_ctx.booleanValue("AddPrometheusGlobalViewByAliClusterIdsResponse.Data.Success")); data.setMsg(_ctx.stringValue("AddPrometheusGlobalViewByAliClusterIdsResponse.Data.Msg")); data.setInfo(_ctx.stringValue("AddPrometheusGlobalViewByAliClusterIdsResponse.Data.Info")); addPrometheusGlobalViewByAliClusterIdsResponse.setData(data); return addPrometheusGlobalViewByAliClusterIdsResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform/v20190808/AddPrometheusGlobalViewResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.transform.v20190808; import com.aliyuncs.arms.model.v20190808.AddPrometheusGlobalViewResponse; import com.aliyuncs.arms.model.v20190808.AddPrometheusGlobalViewResponse.Data; import com.aliyuncs.arms.model.v20190808.AddPrometheusGlobalViewResponse.Data.Info; import com.aliyuncs.transform.UnmarshallerContext; public class AddPrometheusGlobalViewResponseUnmarshaller { public static AddPrometheusGlobalViewResponse unmarshall(AddPrometheusGlobalViewResponse addPrometheusGlobalViewResponse, UnmarshallerContext _ctx) { addPrometheusGlobalViewResponse.setRequestId(_ctx.stringValue("AddPrometheusGlobalViewResponse.RequestId")); addPrometheusGlobalViewResponse.setCode(_ctx.integerValue("AddPrometheusGlobalViewResponse.Code")); addPrometheusGlobalViewResponse.setMessage(_ctx.stringValue("AddPrometheusGlobalViewResponse.Message")); Data data = new Data(); data.setSuccess(_ctx.booleanValue("AddPrometheusGlobalViewResponse.Data.Success")); data.setMsg(_ctx.stringValue("AddPrometheusGlobalViewResponse.Data.Msg")); Info info = new Info(); info.setRegionId(_ctx.stringValue("AddPrometheusGlobalViewResponse.Data.Info.RegionId")); info.setGlobalViewClusterId(_ctx.stringValue("AddPrometheusGlobalViewResponse.Data.Info.GlobalViewClusterId")); info.setFailedInstances(_ctx.stringValue("AddPrometheusGlobalViewResponse.Data.Info.FailedInstances")); data.setInfo(info); addPrometheusGlobalViewResponse.setData(data); return addPrometheusGlobalViewResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform/v20190808/AddPrometheusInstanceResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.transform.v20190808; import com.aliyuncs.arms.model.v20190808.AddPrometheusInstanceResponse; import com.aliyuncs.transform.UnmarshallerContext; public class AddPrometheusInstanceResponseUnmarshaller { public static AddPrometheusInstanceResponse unmarshall(AddPrometheusInstanceResponse addPrometheusInstanceResponse, UnmarshallerContext _ctx) { addPrometheusInstanceResponse.setRequestId(_ctx.stringValue("AddPrometheusInstanceResponse.RequestId")); addPrometheusInstanceResponse.setData(_ctx.stringValue("AddPrometheusInstanceResponse.Data")); addPrometheusInstanceResponse.setCode(_ctx.integerValue("AddPrometheusInstanceResponse.Code")); addPrometheusInstanceResponse.setMessage(_ctx.stringValue("AddPrometheusInstanceResponse.Message")); addPrometheusInstanceResponse.setSuccess(_ctx.booleanValue("AddPrometheusInstanceResponse.Success")); return addPrometheusInstanceResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform/v20190808/AddPrometheusIntegrationResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.transform.v20190808; import com.aliyuncs.arms.model.v20190808.AddPrometheusIntegrationResponse; import com.aliyuncs.arms.model.v20190808.AddPrometheusIntegrationResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class AddPrometheusIntegrationResponseUnmarshaller { public static AddPrometheusIntegrationResponse unmarshall(AddPrometheusIntegrationResponse addPrometheusIntegrationResponse, UnmarshallerContext _ctx) { addPrometheusIntegrationResponse.setRequestId(_ctx.stringValue("AddPrometheusIntegrationResponse.RequestId")); addPrometheusIntegrationResponse.setCode(_ctx.integerValue("AddPrometheusIntegrationResponse.Code")); addPrometheusIntegrationResponse.setMessage(_ctx.stringValue("AddPrometheusIntegrationResponse.Message")); Data data = new Data(); data.setInstanceId(_ctx.longValue("AddPrometheusIntegrationResponse.Data.InstanceId")); data.setInstanceName(_ctx.stringValue("AddPrometheusIntegrationResponse.Data.InstanceName")); addPrometheusIntegrationResponse.setData(data); return addPrometheusIntegrationResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform/v20190808/AddRecordingRuleResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.transform.v20190808; import com.aliyuncs.arms.model.v20190808.AddRecordingRuleResponse; import com.aliyuncs.transform.UnmarshallerContext; public class AddRecordingRuleResponseUnmarshaller { public static AddRecordingRuleResponse unmarshall(AddRecordingRuleResponse addRecordingRuleResponse, UnmarshallerContext _ctx) { addRecordingRuleResponse.setRequestId(_ctx.stringValue("AddRecordingRuleResponse.RequestId")); addRecordingRuleResponse.setData(_ctx.stringValue("AddRecordingRuleResponse.Data")); addRecordingRuleResponse.setCode(_ctx.integerValue("AddRecordingRuleResponse.Code")); addRecordingRuleResponse.setMessage(_ctx.stringValue("AddRecordingRuleResponse.Message")); return addRecordingRuleResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform/v20190808/AddTagToFlinkClusterResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.transform.v20190808; import com.aliyuncs.arms.model.v20190808.AddTagToFlinkClusterResponse; import com.aliyuncs.transform.UnmarshallerContext; public class AddTagToFlinkClusterResponseUnmarshaller { public static AddTagToFlinkClusterResponse unmarshall(AddTagToFlinkClusterResponse addTagToFlinkClusterResponse, UnmarshallerContext _ctx) { addTagToFlinkClusterResponse.setRequestId(_ctx.stringValue("AddTagToFlinkClusterResponse.RequestId")); addTagToFlinkClusterResponse.setSuccess(_ctx.booleanValue("AddTagToFlinkClusterResponse.Success")); addTagToFlinkClusterResponse.setCode(_ctx.integerValue("AddTagToFlinkClusterResponse.Code")); addTagToFlinkClusterResponse.setData(_ctx.stringValue("AddTagToFlinkClusterResponse.Data")); return addTagToFlinkClusterResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform/v20190808/AppendInstancesToPrometheusGlobalViewResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.transform.v20190808; import com.aliyuncs.arms.model.v20190808.AppendInstancesToPrometheusGlobalViewResponse; import com.aliyuncs.arms.model.v20190808.AppendInstancesToPrometheusGlobalViewResponse.Data; import com.aliyuncs.transform.UnmarshallerContext; public class AppendInstancesToPrometheusGlobalViewResponseUnmarshaller { public static AppendInstancesToPrometheusGlobalViewResponse unmarshall(AppendInstancesToPrometheusGlobalViewResponse appendInstancesToPrometheusGlobalViewResponse, UnmarshallerContext _ctx) { appendInstancesToPrometheusGlobalViewResponse.setRequestId(_ctx.stringValue("AppendInstancesToPrometheusGlobalViewResponse.RequestId")); appendInstancesToPrometheusGlobalViewResponse.setCode(_ctx.integerValue("AppendInstancesToPrometheusGlobalViewResponse.Code")); appendInstancesToPrometheusGlobalViewResponse.setMessage(_ctx.stringValue("AppendInstancesToPrometheusGlobalViewResponse.Message")); Data data = new Data(); data.setSuccess(_ctx.booleanValue("AppendInstancesToPrometheusGlobalViewResponse.Data.Success")); data.setMsg(_ctx.stringValue("AppendInstancesToPrometheusGlobalViewResponse.Data.Msg")); data.setInfo(_ctx.stringValue("AppendInstancesToPrometheusGlobalViewResponse.Data.Info")); appendInstancesToPrometheusGlobalViewResponse.setData(data); return appendInstancesToPrometheusGlobalViewResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform/v20190808/ApplyScenarioResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.transform.v20190808; import com.aliyuncs.arms.model.v20190808.ApplyScenarioResponse; import com.aliyuncs.transform.UnmarshallerContext; public class ApplyScenarioResponseUnmarshaller { public static ApplyScenarioResponse unmarshall(ApplyScenarioResponse applyScenarioResponse, UnmarshallerContext _ctx) { applyScenarioResponse.setRequestId(_ctx.stringValue("ApplyScenarioResponse.RequestId")); applyScenarioResponse.setResult(_ctx.stringValue("ApplyScenarioResponse.Result")); return applyScenarioResponse; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/transform/v20190808/BindPrometheusGrafanaInstanceResponseUnmarshaller.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.transform.v20190808; import com.aliyuncs.arms.model.v20190808.BindPrometheusGrafanaInstanceResponse; import com.aliyuncs.transform.UnmarshallerContext; public class BindPrometheusGrafanaInstanceResponseUnmarshaller { public static BindPrometheusGrafanaInstanceResponse unmarshall(BindPrometheusGrafanaInstanceResponse bindPrometheusGrafanaInstanceResponse, UnmarshallerContext _ctx) { bindPrometheusGrafanaInstanceResponse.setRequestId(_ctx.stringValue("BindPrometheusGrafanaInstanceResponse.RequestId")); bindPrometheusGrafanaInstanceResponse.setData(_ctx.booleanValue("BindPrometheusGrafanaInstanceResponse.Data")); bindPrometheusGrafanaInstanceResponse.setMessage(_ctx.stringValue("BindPrometheusGrafanaInstanceResponse.Message")); bindPrometheusGrafanaInstanceResponse.setCode(_ctx.integerValue("BindPrometheusGrafanaInstanceResponse.Code")); return bindPrometheusGrafanaInstanceResponse; } }