index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/ApplyMetricRuleTemplateResponse.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.cms.model.v20190101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.ApplyMetricRuleTemplateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ApplyMetricRuleTemplateResponse extends AcsResponse { private Integer code; private String message; private String requestId; private Boolean success; private Resource resource; 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 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 Resource getResource() { return this.resource; } public void setResource(Resource resource) { this.resource = resource; } public static class Resource { private Long groupId; private List<Result> alertResults; public Long getGroupId() { return this.groupId; } public void setGroupId(Long groupId) { this.groupId = groupId; } public List<Result> getAlertResults() { return this.alertResults; } public void setAlertResults(List<Result> alertResults) { this.alertResults = alertResults; } public static class Result { private String code; private String message; private Boolean success; private String ruleName; private String ruleId; public String getCode() { return this.code; } public void setCode(String 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 String getRuleName() { return this.ruleName; } public void setRuleName(String ruleName) { this.ruleName = ruleName; } public String getRuleId() { return this.ruleId; } public void setRuleId(String ruleId) { this.ruleId = ruleId; } } } @Override public ApplyMetricRuleTemplateResponse getInstance(UnmarshallerContext context) { return ApplyMetricRuleTemplateResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/BatchCreateInstantSiteMonitorRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class BatchCreateInstantSiteMonitorRequest extends RpcAcsRequest<BatchCreateInstantSiteMonitorResponse> { private List<TaskList> taskLists; public BatchCreateInstantSiteMonitorRequest() { super("Cms", "2019-01-01", "BatchCreateInstantSiteMonitor", "cms"); setMethod(MethodType.POST); } public List<TaskList> getTaskLists() { return this.taskLists; } public void setTaskLists(List<TaskList> taskLists) { this.taskLists = taskLists; if (taskLists != null) { for (int depth1 = 0; depth1 < taskLists.size(); depth1++) { putQueryParameter("TaskList." + (depth1 + 1) + ".OptionsJson" , taskLists.get(depth1).getOptionsJson()); putQueryParameter("TaskList." + (depth1 + 1) + ".Address" , taskLists.get(depth1).getAddress()); putQueryParameter("TaskList." + (depth1 + 1) + ".TaskType" , taskLists.get(depth1).getTaskType()); putQueryParameter("TaskList." + (depth1 + 1) + ".TaskName" , taskLists.get(depth1).getTaskName()); putQueryParameter("TaskList." + (depth1 + 1) + ".IspCities" , taskLists.get(depth1).getIspCities()); } } } public static class TaskList { private String optionsJson; private String address; private String taskType; private String taskName; private String ispCities; public String getOptionsJson() { return this.optionsJson; } public void setOptionsJson(String optionsJson) { this.optionsJson = optionsJson; } public String getAddress() { return this.address; } public void setAddress(String address) { this.address = address; } public String getTaskType() { return this.taskType; } public void setTaskType(String taskType) { this.taskType = taskType; } public String getTaskName() { return this.taskName; } public void setTaskName(String taskName) { this.taskName = taskName; } public String getIspCities() { return this.ispCities; } public void setIspCities(String ispCities) { this.ispCities = ispCities; } } @Override public Class<BatchCreateInstantSiteMonitorResponse> getResponseClass() { return BatchCreateInstantSiteMonitorResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/BatchCreateInstantSiteMonitorResponse.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.cms.model.v20190101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.BatchCreateInstantSiteMonitorResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class BatchCreateInstantSiteMonitorResponse extends AcsResponse { private String requestId; private String message; private Boolean success; private String code; private List<DataItem> 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 Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public List<DataItem> getData() { return this.data; } public void setData(List<DataItem> data) { this.data = data; } public static class DataItem { private String taskName; private String taskId; public String getTaskName() { return this.taskName; } public void setTaskName(String taskName) { this.taskName = taskName; } public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; } } @Override public BatchCreateInstantSiteMonitorResponse getInstance(UnmarshallerContext context) { return BatchCreateInstantSiteMonitorResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/BatchCreateIntantSiteMonitorRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class BatchCreateIntantSiteMonitorRequest extends RpcAcsRequest<BatchCreateIntantSiteMonitorResponse> { private List<TaskList> taskLists; public BatchCreateIntantSiteMonitorRequest() { super("Cms", "2019-01-01", "BatchCreateIntantSiteMonitor", "cms"); setMethod(MethodType.POST); } public List<TaskList> getTaskLists() { return this.taskLists; } public void setTaskLists(List<TaskList> taskLists) { this.taskLists = taskLists; if (taskLists != null) { for (int depth1 = 0; depth1 < taskLists.size(); depth1++) { putQueryParameter("TaskList." + (depth1 + 1) + ".OptionsJson" , taskLists.get(depth1).getOptionsJson()); putQueryParameter("TaskList." + (depth1 + 1) + ".Address" , taskLists.get(depth1).getAddress()); putQueryParameter("TaskList." + (depth1 + 1) + ".TaskType" , taskLists.get(depth1).getTaskType()); putQueryParameter("TaskList." + (depth1 + 1) + ".TaskName" , taskLists.get(depth1).getTaskName()); putQueryParameter("TaskList." + (depth1 + 1) + ".IspCities" , taskLists.get(depth1).getIspCities()); } } } public static class TaskList { private String optionsJson; private String address; private String taskType; private String taskName; private String ispCities; public String getOptionsJson() { return this.optionsJson; } public void setOptionsJson(String optionsJson) { this.optionsJson = optionsJson; } public String getAddress() { return this.address; } public void setAddress(String address) { this.address = address; } public String getTaskType() { return this.taskType; } public void setTaskType(String taskType) { this.taskType = taskType; } public String getTaskName() { return this.taskName; } public void setTaskName(String taskName) { this.taskName = taskName; } public String getIspCities() { return this.ispCities; } public void setIspCities(String ispCities) { this.ispCities = ispCities; } } @Override public Class<BatchCreateIntantSiteMonitorResponse> getResponseClass() { return BatchCreateIntantSiteMonitorResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/BatchCreateIntantSiteMonitorResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.BatchCreateIntantSiteMonitorResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class BatchCreateIntantSiteMonitorResponse extends AcsResponse { private String requestId; private String message; private Boolean success; private String data; private String code; 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 Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } @Override public BatchCreateIntantSiteMonitorResponse getInstance(UnmarshallerContext context) { return BatchCreateIntantSiteMonitorResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateCmsCallNumOrderRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateCmsCallNumOrderRequest extends RpcAcsRequest<CreateCmsCallNumOrderResponse> { private Integer autoRenewPeriod; private Integer period; private Boolean autoPay; private Boolean autoUseCoupon; private String periodUnit; private String phoneCount; public CreateCmsCallNumOrderRequest() { super("Cms", "2019-01-01", "CreateCmsCallNumOrder", "cms"); setMethod(MethodType.POST); } public Integer getAutoRenewPeriod() { return this.autoRenewPeriod; } public void setAutoRenewPeriod(Integer autoRenewPeriod) { this.autoRenewPeriod = autoRenewPeriod; if(autoRenewPeriod != null){ putQueryParameter("AutoRenewPeriod", autoRenewPeriod.toString()); } } public Integer getPeriod() { return this.period; } public void setPeriod(Integer period) { this.period = period; if(period != null){ putQueryParameter("Period", period.toString()); } } public Boolean getAutoPay() { return this.autoPay; } public void setAutoPay(Boolean autoPay) { this.autoPay = autoPay; if(autoPay != null){ putQueryParameter("AutoPay", autoPay.toString()); } } public Boolean getAutoUseCoupon() { return this.autoUseCoupon; } public void setAutoUseCoupon(Boolean autoUseCoupon) { this.autoUseCoupon = autoUseCoupon; if(autoUseCoupon != null){ putQueryParameter("AutoUseCoupon", autoUseCoupon.toString()); } } public String getPeriodUnit() { return this.periodUnit; } public void setPeriodUnit(String periodUnit) { this.periodUnit = periodUnit; if(periodUnit != null){ putQueryParameter("PeriodUnit", periodUnit); } } public String getPhoneCount() { return this.phoneCount; } public void setPhoneCount(String phoneCount) { this.phoneCount = phoneCount; if(phoneCount != null){ putQueryParameter("PhoneCount", phoneCount); } } @Override public Class<CreateCmsCallNumOrderResponse> getResponseClass() { return CreateCmsCallNumOrderResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateCmsCallNumOrderResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.CreateCmsCallNumOrderResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateCmsCallNumOrderResponse extends AcsResponse { private String orderId; private String requestId; public String getOrderId() { return this.orderId; } public void setOrderId(String orderId) { this.orderId = orderId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public CreateCmsCallNumOrderResponse getInstance(UnmarshallerContext context) { return CreateCmsCallNumOrderResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateCmsOrderRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateCmsOrderRequest extends RpcAcsRequest<CreateCmsOrderResponse> { private String smsCount; private Boolean autoUseCoupon; private String logMonitorStream; private String customTimeSeries; private String apiCount; private String phoneCount; private Integer autoRenewPeriod; private Integer period; private Boolean autoPay; private String suggestType; private String eventStoreNum; private String siteTaskNum; private String periodUnit; private String siteOperatorNum; private String siteEcsNum; private String eventStoreTime; private String payType; public CreateCmsOrderRequest() { super("Cms", "2019-01-01", "CreateCmsOrder", "cms"); setMethod(MethodType.POST); } public String getSmsCount() { return this.smsCount; } public void setSmsCount(String smsCount) { this.smsCount = smsCount; if(smsCount != null){ putQueryParameter("SmsCount", smsCount); } } public Boolean getAutoUseCoupon() { return this.autoUseCoupon; } public void setAutoUseCoupon(Boolean autoUseCoupon) { this.autoUseCoupon = autoUseCoupon; if(autoUseCoupon != null){ putQueryParameter("AutoUseCoupon", autoUseCoupon.toString()); } } public String getLogMonitorStream() { return this.logMonitorStream; } public void setLogMonitorStream(String logMonitorStream) { this.logMonitorStream = logMonitorStream; if(logMonitorStream != null){ putQueryParameter("LogMonitorStream", logMonitorStream); } } public String getCustomTimeSeries() { return this.customTimeSeries; } public void setCustomTimeSeries(String customTimeSeries) { this.customTimeSeries = customTimeSeries; if(customTimeSeries != null){ putQueryParameter("CustomTimeSeries", customTimeSeries); } } public String getApiCount() { return this.apiCount; } public void setApiCount(String apiCount) { this.apiCount = apiCount; if(apiCount != null){ putQueryParameter("ApiCount", apiCount); } } public String getPhoneCount() { return this.phoneCount; } public void setPhoneCount(String phoneCount) { this.phoneCount = phoneCount; if(phoneCount != null){ putQueryParameter("PhoneCount", phoneCount); } } public Integer getAutoRenewPeriod() { return this.autoRenewPeriod; } public void setAutoRenewPeriod(Integer autoRenewPeriod) { this.autoRenewPeriod = autoRenewPeriod; if(autoRenewPeriod != null){ putQueryParameter("AutoRenewPeriod", autoRenewPeriod.toString()); } } public Integer getPeriod() { return this.period; } public void setPeriod(Integer period) { this.period = period; if(period != null){ putQueryParameter("Period", period.toString()); } } public Boolean getAutoPay() { return this.autoPay; } public void setAutoPay(Boolean autoPay) { this.autoPay = autoPay; if(autoPay != null){ putQueryParameter("AutoPay", autoPay.toString()); } } public String getSuggestType() { return this.suggestType; } public void setSuggestType(String suggestType) { this.suggestType = suggestType; if(suggestType != null){ putQueryParameter("SuggestType", suggestType); } } public String getEventStoreNum() { return this.eventStoreNum; } public void setEventStoreNum(String eventStoreNum) { this.eventStoreNum = eventStoreNum; if(eventStoreNum != null){ putQueryParameter("EventStoreNum", eventStoreNum); } } public String getSiteTaskNum() { return this.siteTaskNum; } public void setSiteTaskNum(String siteTaskNum) { this.siteTaskNum = siteTaskNum; if(siteTaskNum != null){ putQueryParameter("SiteTaskNum", siteTaskNum); } } public String getPeriodUnit() { return this.periodUnit; } public void setPeriodUnit(String periodUnit) { this.periodUnit = periodUnit; if(periodUnit != null){ putQueryParameter("PeriodUnit", periodUnit); } } public String getSiteOperatorNum() { return this.siteOperatorNum; } public void setSiteOperatorNum(String siteOperatorNum) { this.siteOperatorNum = siteOperatorNum; if(siteOperatorNum != null){ putQueryParameter("SiteOperatorNum", siteOperatorNum); } } public String getSiteEcsNum() { return this.siteEcsNum; } public void setSiteEcsNum(String siteEcsNum) { this.siteEcsNum = siteEcsNum; if(siteEcsNum != null){ putQueryParameter("SiteEcsNum", siteEcsNum); } } public String getEventStoreTime() { return this.eventStoreTime; } public void setEventStoreTime(String eventStoreTime) { this.eventStoreTime = eventStoreTime; if(eventStoreTime != null){ putQueryParameter("EventStoreTime", eventStoreTime); } } public String getPayType() { return this.payType; } public void setPayType(String payType) { this.payType = payType; if(payType != null){ putQueryParameter("PayType", payType); } } @Override public Class<CreateCmsOrderResponse> getResponseClass() { return CreateCmsOrderResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateCmsOrderResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.CreateCmsOrderResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateCmsOrderResponse extends AcsResponse { private String orderId; private String requestId; public String getOrderId() { return this.orderId; } public void setOrderId(String orderId) { this.orderId = orderId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public CreateCmsOrderResponse getInstance(UnmarshallerContext context) { return CreateCmsOrderResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateCmsSmspackageOrderRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateCmsSmspackageOrderRequest extends RpcAcsRequest<CreateCmsSmspackageOrderResponse> { private Integer autoRenewPeriod; private Integer period; private Boolean autoPay; private String smsCount; private Boolean autoUseCoupon; private String periodUnit; public CreateCmsSmspackageOrderRequest() { super("Cms", "2019-01-01", "CreateCmsSmspackageOrder", "cms"); setMethod(MethodType.POST); } public Integer getAutoRenewPeriod() { return this.autoRenewPeriod; } public void setAutoRenewPeriod(Integer autoRenewPeriod) { this.autoRenewPeriod = autoRenewPeriod; if(autoRenewPeriod != null){ putQueryParameter("AutoRenewPeriod", autoRenewPeriod.toString()); } } public Integer getPeriod() { return this.period; } public void setPeriod(Integer period) { this.period = period; if(period != null){ putQueryParameter("Period", period.toString()); } } public Boolean getAutoPay() { return this.autoPay; } public void setAutoPay(Boolean autoPay) { this.autoPay = autoPay; if(autoPay != null){ putQueryParameter("AutoPay", autoPay.toString()); } } public String getSmsCount() { return this.smsCount; } public void setSmsCount(String smsCount) { this.smsCount = smsCount; if(smsCount != null){ putQueryParameter("SmsCount", smsCount); } } public Boolean getAutoUseCoupon() { return this.autoUseCoupon; } public void setAutoUseCoupon(Boolean autoUseCoupon) { this.autoUseCoupon = autoUseCoupon; if(autoUseCoupon != null){ putQueryParameter("AutoUseCoupon", autoUseCoupon.toString()); } } public String getPeriodUnit() { return this.periodUnit; } public void setPeriodUnit(String periodUnit) { this.periodUnit = periodUnit; if(periodUnit != null){ putQueryParameter("PeriodUnit", periodUnit); } } @Override public Class<CreateCmsSmspackageOrderResponse> getResponseClass() { return CreateCmsSmspackageOrderResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateCmsSmspackageOrderResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.CreateCmsSmspackageOrderResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateCmsSmspackageOrderResponse extends AcsResponse { private String orderId; private String requestId; public String getOrderId() { return this.orderId; } public void setOrderId(String orderId) { this.orderId = orderId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public CreateCmsSmspackageOrderResponse getInstance(UnmarshallerContext context) { return CreateCmsSmspackageOrderResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateDynamicTagGroupRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateDynamicTagGroupRequest extends RpcAcsRequest<CreateDynamicTagGroupResponse> { private Boolean enableSubscribeEvent; private String matchExpressFilterRelation; private Boolean enableInstallAgent; private List<MatchExpress> matchExpresss; private List<String> contactGroupLists; private List<String> templateIdLists; private String tagKey; private String tagRegionId; public CreateDynamicTagGroupRequest() { super("Cms", "2019-01-01", "CreateDynamicTagGroup", "cms"); setMethod(MethodType.POST); } public Boolean getEnableSubscribeEvent() { return this.enableSubscribeEvent; } public void setEnableSubscribeEvent(Boolean enableSubscribeEvent) { this.enableSubscribeEvent = enableSubscribeEvent; if(enableSubscribeEvent != null){ putQueryParameter("EnableSubscribeEvent", enableSubscribeEvent.toString()); } } public String getMatchExpressFilterRelation() { return this.matchExpressFilterRelation; } public void setMatchExpressFilterRelation(String matchExpressFilterRelation) { this.matchExpressFilterRelation = matchExpressFilterRelation; if(matchExpressFilterRelation != null){ putQueryParameter("MatchExpressFilterRelation", matchExpressFilterRelation); } } public Boolean getEnableInstallAgent() { return this.enableInstallAgent; } public void setEnableInstallAgent(Boolean enableInstallAgent) { this.enableInstallAgent = enableInstallAgent; if(enableInstallAgent != null){ putQueryParameter("EnableInstallAgent", enableInstallAgent.toString()); } } public List<MatchExpress> getMatchExpresss() { return this.matchExpresss; } public void setMatchExpresss(List<MatchExpress> matchExpresss) { this.matchExpresss = matchExpresss; if (matchExpresss != null) { for (int depth1 = 0; depth1 < matchExpresss.size(); depth1++) { putQueryParameter("MatchExpress." + (depth1 + 1) + ".TagName" , matchExpresss.get(depth1).getTagName()); putQueryParameter("MatchExpress." + (depth1 + 1) + ".TagValue" , matchExpresss.get(depth1).getTagValue()); putQueryParameter("MatchExpress." + (depth1 + 1) + ".TagValueMatchFunction" , matchExpresss.get(depth1).getTagValueMatchFunction()); } } } public List<String> getContactGroupLists() { return this.contactGroupLists; } public void setContactGroupLists(List<String> contactGroupLists) { this.contactGroupLists = contactGroupLists; if (contactGroupLists != null) { for (int i = 0; i < contactGroupLists.size(); i++) { putQueryParameter("ContactGroupList." + (i + 1) , contactGroupLists.get(i)); } } } public List<String> getTemplateIdLists() { return this.templateIdLists; } public void setTemplateIdLists(List<String> templateIdLists) { this.templateIdLists = templateIdLists; if (templateIdLists != null) { for (int i = 0; i < templateIdLists.size(); i++) { putQueryParameter("TemplateIdList." + (i + 1) , templateIdLists.get(i)); } } } public String getTagKey() { return this.tagKey; } public void setTagKey(String tagKey) { this.tagKey = tagKey; if(tagKey != null){ putQueryParameter("TagKey", tagKey); } } public String getTagRegionId() { return this.tagRegionId; } public void setTagRegionId(String tagRegionId) { this.tagRegionId = tagRegionId; if(tagRegionId != null){ putQueryParameter("TagRegionId", tagRegionId); } } public static class MatchExpress { private String tagName; private String tagValue; private String tagValueMatchFunction; public String getTagName() { return this.tagName; } public void setTagName(String tagName) { this.tagName = tagName; } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; } public String getTagValueMatchFunction() { return this.tagValueMatchFunction; } public void setTagValueMatchFunction(String tagValueMatchFunction) { this.tagValueMatchFunction = tagValueMatchFunction; } } @Override public Class<CreateDynamicTagGroupResponse> getResponseClass() { return CreateDynamicTagGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateDynamicTagGroupResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.CreateDynamicTagGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateDynamicTagGroupResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private String id; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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 String getId() { return this.id; } public void setId(String id) { this.id = id; } @Override public CreateDynamicTagGroupResponse getInstance(UnmarshallerContext context) { return CreateDynamicTagGroupResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateGroupMetricRulesRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateGroupMetricRulesRequest extends RpcAcsRequest<CreateGroupMetricRulesResponse> { private Long groupId; private List<GroupMetricRules> groupMetricRuless; public CreateGroupMetricRulesRequest() { super("Cms", "2019-01-01", "CreateGroupMetricRules", "cms"); setMethod(MethodType.POST); } public Long getGroupId() { return this.groupId; } public void setGroupId(Long groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId.toString()); } } public List<GroupMetricRules> getGroupMetricRuless() { return this.groupMetricRuless; } public void setGroupMetricRuless(List<GroupMetricRules> groupMetricRuless) { this.groupMetricRuless = groupMetricRuless; if (groupMetricRuless != null) { for (int depth1 = 0; depth1 < groupMetricRuless.size(); depth1++) { putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Webhook" , groupMetricRuless.get(depth1).getWebhook()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Escalations.Warn.ComparisonOperator" , groupMetricRuless.get(depth1).getEscalationsWarnComparisonOperator()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".DynamicAlertSensitivity" , groupMetricRuless.get(depth1).getDynamicAlertSensitivity()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".RuleName" , groupMetricRuless.get(depth1).getRuleName()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Escalations.Info.Statistics" , groupMetricRuless.get(depth1).getEscalationsInfoStatistics()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".EffectiveInterval" , groupMetricRuless.get(depth1).getEffectiveInterval()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".DynamicAlertHistoryDataRange" , groupMetricRuless.get(depth1).getDynamicAlertHistoryDataRange()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Escalations.Warn.PreCondition" , groupMetricRuless.get(depth1).getEscalationsWarnPreCondition()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Escalations.Info.ComparisonOperator" , groupMetricRuless.get(depth1).getEscalationsInfoComparisonOperator()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".NoDataPolicy" , groupMetricRuless.get(depth1).getNoDataPolicy()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".NoEffectiveInterval" , groupMetricRuless.get(depth1).getNoEffectiveInterval()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".EmailSubject" , groupMetricRuless.get(depth1).getEmailSubject()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".SilenceTime" , groupMetricRuless.get(depth1).getSilenceTime()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Escalations.Info.PreCondition" , groupMetricRuless.get(depth1).getEscalationsInfoPreCondition()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".MetricName" , groupMetricRuless.get(depth1).getMetricName()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Escalations.Warn.Times" , groupMetricRuless.get(depth1).getEscalationsWarnTimes()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".CompositeExpression" , groupMetricRuless.get(depth1).getCompositeExpression()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Escalations.Warn.Threshold" , groupMetricRuless.get(depth1).getEscalationsWarnThreshold()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Period" , groupMetricRuless.get(depth1).getPeriod()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".ContactGroups" , groupMetricRuless.get(depth1).getContactGroups()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Escalations.Critical.Statistics" , groupMetricRuless.get(depth1).getEscalationsCriticalStatistics()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".RuleType" , groupMetricRuless.get(depth1).getRuleType()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Escalations.Info.Times" , groupMetricRuless.get(depth1).getEscalationsInfoTimes()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".ExtraDimensionJson" , groupMetricRuless.get(depth1).getExtraDimensionJson()); if (groupMetricRuless.get(depth1).getLabelss() != null) { for (int depth2 = 0; depth2 < groupMetricRuless.get(depth1).getLabelss().size(); depth2++) { putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Labels." + (depth2 + 1) + ".Value" , groupMetricRuless.get(depth1).getLabelss().get(depth2).getValue()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Labels." + (depth2 + 1) + ".Key" , groupMetricRuless.get(depth1).getLabelss().get(depth2).getKey()); } } putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Escalations.Critical.Times" , groupMetricRuless.get(depth1).getEscalationsCriticalTimes()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Escalations.Info.Threshold" , groupMetricRuless.get(depth1).getEscalationsInfoThreshold()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Escalations.Warn.Statistics" , groupMetricRuless.get(depth1).getEscalationsWarnStatistics()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Namespace" , groupMetricRuless.get(depth1).getNamespace()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Interval" , groupMetricRuless.get(depth1).getInterval()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".RuleId" , groupMetricRuless.get(depth1).getRuleId()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Category" , groupMetricRuless.get(depth1).getCategory()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Escalations.Critical.ComparisonOperator" , groupMetricRuless.get(depth1).getEscalationsCriticalComparisonOperator()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Escalations.Critical.PreCondition" , groupMetricRuless.get(depth1).getEscalationsCriticalPreCondition()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Escalations.Critical.Threshold" , groupMetricRuless.get(depth1).getEscalationsCriticalThreshold()); putQueryParameter("GroupMetricRules." + (depth1 + 1) + ".Dimensions" , groupMetricRuless.get(depth1).getDimensions()); } } } public static class GroupMetricRules { private String webhook; private String escalationsWarnComparisonOperator; private String dynamicAlertSensitivity; private String ruleName; private String escalationsInfoStatistics; private String effectiveInterval; private String dynamicAlertHistoryDataRange; private String escalationsWarnPreCondition; private String escalationsInfoComparisonOperator; private String noDataPolicy; private String noEffectiveInterval; private String emailSubject; private Integer silenceTime; private String escalationsInfoPreCondition; private String metricName; private Integer escalationsWarnTimes; private String compositeExpression; private String escalationsWarnThreshold; private String period; private String contactGroups; private String escalationsCriticalStatistics; private String ruleType; private Integer escalationsInfoTimes; private String extraDimensionJson; private List<Labels> labelss; private Integer escalationsCriticalTimes; private String escalationsInfoThreshold; private String escalationsWarnStatistics; private String namespace; private String interval; private String ruleId; private String category; private String escalationsCriticalComparisonOperator; private String escalationsCriticalPreCondition; private String escalationsCriticalThreshold; private String dimensions; public String getWebhook() { return this.webhook; } public void setWebhook(String webhook) { this.webhook = webhook; } public String getEscalationsWarnComparisonOperator() { return this.escalationsWarnComparisonOperator; } public void setEscalationsWarnComparisonOperator(String escalationsWarnComparisonOperator) { this.escalationsWarnComparisonOperator = escalationsWarnComparisonOperator; } public String getDynamicAlertSensitivity() { return this.dynamicAlertSensitivity; } public void setDynamicAlertSensitivity(String dynamicAlertSensitivity) { this.dynamicAlertSensitivity = dynamicAlertSensitivity; } public String getRuleName() { return this.ruleName; } public void setRuleName(String ruleName) { this.ruleName = ruleName; } public String getEscalationsInfoStatistics() { return this.escalationsInfoStatistics; } public void setEscalationsInfoStatistics(String escalationsInfoStatistics) { this.escalationsInfoStatistics = escalationsInfoStatistics; } public String getEffectiveInterval() { return this.effectiveInterval; } public void setEffectiveInterval(String effectiveInterval) { this.effectiveInterval = effectiveInterval; } public String getDynamicAlertHistoryDataRange() { return this.dynamicAlertHistoryDataRange; } public void setDynamicAlertHistoryDataRange(String dynamicAlertHistoryDataRange) { this.dynamicAlertHistoryDataRange = dynamicAlertHistoryDataRange; } public String getEscalationsWarnPreCondition() { return this.escalationsWarnPreCondition; } public void setEscalationsWarnPreCondition(String escalationsWarnPreCondition) { this.escalationsWarnPreCondition = escalationsWarnPreCondition; } public String getEscalationsInfoComparisonOperator() { return this.escalationsInfoComparisonOperator; } public void setEscalationsInfoComparisonOperator(String escalationsInfoComparisonOperator) { this.escalationsInfoComparisonOperator = escalationsInfoComparisonOperator; } public String getNoDataPolicy() { return this.noDataPolicy; } public void setNoDataPolicy(String noDataPolicy) { this.noDataPolicy = noDataPolicy; } public String getNoEffectiveInterval() { return this.noEffectiveInterval; } public void setNoEffectiveInterval(String noEffectiveInterval) { this.noEffectiveInterval = noEffectiveInterval; } public String getEmailSubject() { return this.emailSubject; } public void setEmailSubject(String emailSubject) { this.emailSubject = emailSubject; } public Integer getSilenceTime() { return this.silenceTime; } public void setSilenceTime(Integer silenceTime) { this.silenceTime = silenceTime; } public String getEscalationsInfoPreCondition() { return this.escalationsInfoPreCondition; } public void setEscalationsInfoPreCondition(String escalationsInfoPreCondition) { this.escalationsInfoPreCondition = escalationsInfoPreCondition; } public String getMetricName() { return this.metricName; } public void setMetricName(String metricName) { this.metricName = metricName; } public Integer getEscalationsWarnTimes() { return this.escalationsWarnTimes; } public void setEscalationsWarnTimes(Integer escalationsWarnTimes) { this.escalationsWarnTimes = escalationsWarnTimes; } public String getCompositeExpression() { return this.compositeExpression; } public void setCompositeExpression(String compositeExpression) { this.compositeExpression = compositeExpression; } public String getEscalationsWarnThreshold() { return this.escalationsWarnThreshold; } public void setEscalationsWarnThreshold(String escalationsWarnThreshold) { this.escalationsWarnThreshold = escalationsWarnThreshold; } public String getPeriod() { return this.period; } public void setPeriod(String period) { this.period = period; } public String getContactGroups() { return this.contactGroups; } public void setContactGroups(String contactGroups) { this.contactGroups = contactGroups; } public String getEscalationsCriticalStatistics() { return this.escalationsCriticalStatistics; } public void setEscalationsCriticalStatistics(String escalationsCriticalStatistics) { this.escalationsCriticalStatistics = escalationsCriticalStatistics; } public String getRuleType() { return this.ruleType; } public void setRuleType(String ruleType) { this.ruleType = ruleType; } public Integer getEscalationsInfoTimes() { return this.escalationsInfoTimes; } public void setEscalationsInfoTimes(Integer escalationsInfoTimes) { this.escalationsInfoTimes = escalationsInfoTimes; } public String getExtraDimensionJson() { return this.extraDimensionJson; } public void setExtraDimensionJson(String extraDimensionJson) { this.extraDimensionJson = extraDimensionJson; } public List<Labels> getLabelss() { return this.labelss; } public void setLabelss(List<Labels> labelss) { this.labelss = labelss; } public Integer getEscalationsCriticalTimes() { return this.escalationsCriticalTimes; } public void setEscalationsCriticalTimes(Integer escalationsCriticalTimes) { this.escalationsCriticalTimes = escalationsCriticalTimes; } public String getEscalationsInfoThreshold() { return this.escalationsInfoThreshold; } public void setEscalationsInfoThreshold(String escalationsInfoThreshold) { this.escalationsInfoThreshold = escalationsInfoThreshold; } public String getEscalationsWarnStatistics() { return this.escalationsWarnStatistics; } public void setEscalationsWarnStatistics(String escalationsWarnStatistics) { this.escalationsWarnStatistics = escalationsWarnStatistics; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public String getInterval() { return this.interval; } public void setInterval(String interval) { this.interval = interval; } public String getRuleId() { return this.ruleId; } public void setRuleId(String ruleId) { this.ruleId = ruleId; } public String getCategory() { return this.category; } public void setCategory(String category) { this.category = category; } public String getEscalationsCriticalComparisonOperator() { return this.escalationsCriticalComparisonOperator; } public void setEscalationsCriticalComparisonOperator(String escalationsCriticalComparisonOperator) { this.escalationsCriticalComparisonOperator = escalationsCriticalComparisonOperator; } public String getEscalationsCriticalPreCondition() { return this.escalationsCriticalPreCondition; } public void setEscalationsCriticalPreCondition(String escalationsCriticalPreCondition) { this.escalationsCriticalPreCondition = escalationsCriticalPreCondition; } public String getEscalationsCriticalThreshold() { return this.escalationsCriticalThreshold; } public void setEscalationsCriticalThreshold(String escalationsCriticalThreshold) { this.escalationsCriticalThreshold = escalationsCriticalThreshold; } public String getDimensions() { return this.dimensions; } public void setDimensions(String dimensions) { this.dimensions = dimensions; } public static class Labels { 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<CreateGroupMetricRulesResponse> getResponseClass() { return CreateGroupMetricRulesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateGroupMetricRulesResponse.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.cms.model.v20190101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.CreateGroupMetricRulesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateGroupMetricRulesResponse extends AcsResponse { private Integer code; private String message; private String requestId; private Boolean success; private List<AlertResult> resources; 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 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 List<AlertResult> getResources() { return this.resources; } public void setResources(List<AlertResult> resources) { this.resources = resources; } public static class AlertResult { private Integer code; private String message; private Boolean success; private String ruleName; private String ruleId; 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 String getRuleName() { return this.ruleName; } public void setRuleName(String ruleName) { this.ruleName = ruleName; } public String getRuleId() { return this.ruleId; } public void setRuleId(String ruleId) { this.ruleId = ruleId; } } @Override public CreateGroupMetricRulesResponse getInstance(UnmarshallerContext context) { return CreateGroupMetricRulesResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateGroupMonitoringAgentProcessRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateGroupMonitoringAgentProcessRequest extends RpcAcsRequest<CreateGroupMonitoringAgentProcessResponse> { private List<AlertConfig> alertConfigs; private String groupId; private String processName; private String matchExpressFilterRelation; private List<MatchExpress> matchExpresss; public CreateGroupMonitoringAgentProcessRequest() { super("Cms", "2019-01-01", "CreateGroupMonitoringAgentProcess", "cms"); setMethod(MethodType.POST); } public List<AlertConfig> getAlertConfigs() { return this.alertConfigs; } public void setAlertConfigs(List<AlertConfig> alertConfigs) { this.alertConfigs = alertConfigs; if (alertConfigs != null) { for (int depth1 = 0; depth1 < alertConfigs.size(); depth1++) { putQueryParameter("AlertConfig." + (depth1 + 1) + ".Times" , alertConfigs.get(depth1).getTimes()); putQueryParameter("AlertConfig." + (depth1 + 1) + ".Webhook" , alertConfigs.get(depth1).getWebhook()); putQueryParameter("AlertConfig." + (depth1 + 1) + ".NoEffectiveInterval" , alertConfigs.get(depth1).getNoEffectiveInterval()); putQueryParameter("AlertConfig." + (depth1 + 1) + ".SilenceTime" , alertConfigs.get(depth1).getSilenceTime()); putQueryParameter("AlertConfig." + (depth1 + 1) + ".Threshold" , alertConfigs.get(depth1).getThreshold()); putQueryParameter("AlertConfig." + (depth1 + 1) + ".ComparisonOperator" , alertConfigs.get(depth1).getComparisonOperator()); putQueryParameter("AlertConfig." + (depth1 + 1) + ".EffectiveInterval" , alertConfigs.get(depth1).getEffectiveInterval()); putQueryParameter("AlertConfig." + (depth1 + 1) + ".EscalationsLevel" , alertConfigs.get(depth1).getEscalationsLevel()); putQueryParameter("AlertConfig." + (depth1 + 1) + ".Statistics" , alertConfigs.get(depth1).getStatistics()); } } } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId); } } public String getProcessName() { return this.processName; } public void setProcessName(String processName) { this.processName = processName; if(processName != null){ putQueryParameter("ProcessName", processName); } } public String getMatchExpressFilterRelation() { return this.matchExpressFilterRelation; } public void setMatchExpressFilterRelation(String matchExpressFilterRelation) { this.matchExpressFilterRelation = matchExpressFilterRelation; if(matchExpressFilterRelation != null){ putQueryParameter("MatchExpressFilterRelation", matchExpressFilterRelation); } } public List<MatchExpress> getMatchExpresss() { return this.matchExpresss; } public void setMatchExpresss(List<MatchExpress> matchExpresss) { this.matchExpresss = matchExpresss; if (matchExpresss != null) { for (int depth1 = 0; depth1 < matchExpresss.size(); depth1++) { putQueryParameter("MatchExpress." + (depth1 + 1) + ".Function" , matchExpresss.get(depth1).getFunction()); putQueryParameter("MatchExpress." + (depth1 + 1) + ".Name" , matchExpresss.get(depth1).getName()); putQueryParameter("MatchExpress." + (depth1 + 1) + ".Value" , matchExpresss.get(depth1).getValue()); } } } public static class AlertConfig { private String times; private String webhook; private String noEffectiveInterval; private String silenceTime; private String threshold; private String comparisonOperator; private String effectiveInterval; private String escalationsLevel; private String statistics; public String getTimes() { return this.times; } public void setTimes(String times) { this.times = times; } public String getWebhook() { return this.webhook; } public void setWebhook(String webhook) { this.webhook = webhook; } public String getNoEffectiveInterval() { return this.noEffectiveInterval; } public void setNoEffectiveInterval(String noEffectiveInterval) { this.noEffectiveInterval = noEffectiveInterval; } public String getSilenceTime() { return this.silenceTime; } public void setSilenceTime(String silenceTime) { this.silenceTime = silenceTime; } public String getThreshold() { return this.threshold; } public void setThreshold(String threshold) { this.threshold = threshold; } public String getComparisonOperator() { return this.comparisonOperator; } public void setComparisonOperator(String comparisonOperator) { this.comparisonOperator = comparisonOperator; } public String getEffectiveInterval() { return this.effectiveInterval; } public void setEffectiveInterval(String effectiveInterval) { this.effectiveInterval = effectiveInterval; } public String getEscalationsLevel() { return this.escalationsLevel; } public void setEscalationsLevel(String escalationsLevel) { this.escalationsLevel = escalationsLevel; } public String getStatistics() { return this.statistics; } public void setStatistics(String statistics) { this.statistics = statistics; } } public static class MatchExpress { private String function; private String name; private String value; public String getFunction() { return this.function; } public void setFunction(String function) { this.function = function; } 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 Class<CreateGroupMonitoringAgentProcessResponse> getResponseClass() { return CreateGroupMonitoringAgentProcessResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateGroupMonitoringAgentProcessResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.CreateGroupMonitoringAgentProcessResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateGroupMonitoringAgentProcessResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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; } @Override public CreateGroupMonitoringAgentProcessResponse getInstance(UnmarshallerContext context) { return CreateGroupMonitoringAgentProcessResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateHostAvailabilityRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateHostAvailabilityRequest extends RpcAcsRequest<CreateHostAvailabilityResponse> { private String taskOptionHttpMethod; private String taskOptionHttpHeader; private List<AlertConfigEscalationList> alertConfigEscalationLists; private String taskName; private Integer alertConfigSilenceTime; private String taskOptionHttpResponseCharset; private Boolean taskOptionHttpNegative; private Integer taskOptionInterval; private Integer alertConfigNotifyType; private String taskOptionTelnetOrPingHost; private String taskOptionHttpResponseMatchContent; private List<String> instanceLists; private String taskType; private Long groupId; private Integer alertConfigEndTime; private String taskOptionHttpURI; private String taskScope; private String taskOptionHttpPostContent; private Integer alertConfigStartTime; private String alertConfigWebHook; public CreateHostAvailabilityRequest() { super("Cms", "2019-01-01", "CreateHostAvailability", "cms"); setMethod(MethodType.POST); } public String getTaskOptionHttpMethod() { return this.taskOptionHttpMethod; } public void setTaskOptionHttpMethod(String taskOptionHttpMethod) { this.taskOptionHttpMethod = taskOptionHttpMethod; if(taskOptionHttpMethod != null){ putQueryParameter("TaskOption.HttpMethod", taskOptionHttpMethod); } } public String getTaskOptionHttpHeader() { return this.taskOptionHttpHeader; } public void setTaskOptionHttpHeader(String taskOptionHttpHeader) { this.taskOptionHttpHeader = taskOptionHttpHeader; if(taskOptionHttpHeader != null){ putQueryParameter("TaskOption.HttpHeader", taskOptionHttpHeader); } } public List<AlertConfigEscalationList> getAlertConfigEscalationLists() { return this.alertConfigEscalationLists; } public void setAlertConfigEscalationLists(List<AlertConfigEscalationList> alertConfigEscalationLists) { this.alertConfigEscalationLists = alertConfigEscalationLists; if (alertConfigEscalationLists != null) { for (int depth1 = 0; depth1 < alertConfigEscalationLists.size(); depth1++) { putQueryParameter("AlertConfigEscalationList." + (depth1 + 1) + ".Times" , alertConfigEscalationLists.get(depth1).getTimes()); putQueryParameter("AlertConfigEscalationList." + (depth1 + 1) + ".MetricName" , alertConfigEscalationLists.get(depth1).getMetricName()); putQueryParameter("AlertConfigEscalationList." + (depth1 + 1) + ".Value" , alertConfigEscalationLists.get(depth1).getValue()); putQueryParameter("AlertConfigEscalationList." + (depth1 + 1) + ".Operator" , alertConfigEscalationLists.get(depth1).getOperator()); putQueryParameter("AlertConfigEscalationList." + (depth1 + 1) + ".Aggregate" , alertConfigEscalationLists.get(depth1).getAggregate()); } } } public String getTaskName() { return this.taskName; } public void setTaskName(String taskName) { this.taskName = taskName; if(taskName != null){ putQueryParameter("TaskName", taskName); } } public Integer getAlertConfigSilenceTime() { return this.alertConfigSilenceTime; } public void setAlertConfigSilenceTime(Integer alertConfigSilenceTime) { this.alertConfigSilenceTime = alertConfigSilenceTime; if(alertConfigSilenceTime != null){ putQueryParameter("AlertConfig.SilenceTime", alertConfigSilenceTime.toString()); } } public String getTaskOptionHttpResponseCharset() { return this.taskOptionHttpResponseCharset; } public void setTaskOptionHttpResponseCharset(String taskOptionHttpResponseCharset) { this.taskOptionHttpResponseCharset = taskOptionHttpResponseCharset; if(taskOptionHttpResponseCharset != null){ putQueryParameter("TaskOption.HttpResponseCharset", taskOptionHttpResponseCharset); } } public Boolean getTaskOptionHttpNegative() { return this.taskOptionHttpNegative; } public void setTaskOptionHttpNegative(Boolean taskOptionHttpNegative) { this.taskOptionHttpNegative = taskOptionHttpNegative; if(taskOptionHttpNegative != null){ putQueryParameter("TaskOption.HttpNegative", taskOptionHttpNegative.toString()); } } public Integer getTaskOptionInterval() { return this.taskOptionInterval; } public void setTaskOptionInterval(Integer taskOptionInterval) { this.taskOptionInterval = taskOptionInterval; if(taskOptionInterval != null){ putQueryParameter("TaskOption.Interval", taskOptionInterval.toString()); } } public Integer getAlertConfigNotifyType() { return this.alertConfigNotifyType; } public void setAlertConfigNotifyType(Integer alertConfigNotifyType) { this.alertConfigNotifyType = alertConfigNotifyType; if(alertConfigNotifyType != null){ putQueryParameter("AlertConfig.NotifyType", alertConfigNotifyType.toString()); } } public String getTaskOptionTelnetOrPingHost() { return this.taskOptionTelnetOrPingHost; } public void setTaskOptionTelnetOrPingHost(String taskOptionTelnetOrPingHost) { this.taskOptionTelnetOrPingHost = taskOptionTelnetOrPingHost; if(taskOptionTelnetOrPingHost != null){ putQueryParameter("TaskOption.TelnetOrPingHost", taskOptionTelnetOrPingHost); } } public String getTaskOptionHttpResponseMatchContent() { return this.taskOptionHttpResponseMatchContent; } public void setTaskOptionHttpResponseMatchContent(String taskOptionHttpResponseMatchContent) { this.taskOptionHttpResponseMatchContent = taskOptionHttpResponseMatchContent; if(taskOptionHttpResponseMatchContent != null){ putQueryParameter("TaskOption.HttpResponseMatchContent", taskOptionHttpResponseMatchContent); } } public List<String> getInstanceLists() { return this.instanceLists; } public void setInstanceLists(List<String> instanceLists) { this.instanceLists = instanceLists; if (instanceLists != null) { for (int i = 0; i < instanceLists.size(); i++) { putQueryParameter("InstanceList." + (i + 1) , instanceLists.get(i)); } } } public String getTaskType() { return this.taskType; } public void setTaskType(String taskType) { this.taskType = taskType; if(taskType != null){ putQueryParameter("TaskType", taskType); } } public Long getGroupId() { return this.groupId; } public void setGroupId(Long groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId.toString()); } } public Integer getAlertConfigEndTime() { return this.alertConfigEndTime; } public void setAlertConfigEndTime(Integer alertConfigEndTime) { this.alertConfigEndTime = alertConfigEndTime; if(alertConfigEndTime != null){ putQueryParameter("AlertConfig.EndTime", alertConfigEndTime.toString()); } } public String getTaskOptionHttpURI() { return this.taskOptionHttpURI; } public void setTaskOptionHttpURI(String taskOptionHttpURI) { this.taskOptionHttpURI = taskOptionHttpURI; if(taskOptionHttpURI != null){ putQueryParameter("TaskOption.HttpURI", taskOptionHttpURI); } } public String getTaskScope() { return this.taskScope; } public void setTaskScope(String taskScope) { this.taskScope = taskScope; if(taskScope != null){ putQueryParameter("TaskScope", taskScope); } } public String getTaskOptionHttpPostContent() { return this.taskOptionHttpPostContent; } public void setTaskOptionHttpPostContent(String taskOptionHttpPostContent) { this.taskOptionHttpPostContent = taskOptionHttpPostContent; if(taskOptionHttpPostContent != null){ putQueryParameter("TaskOption.HttpPostContent", taskOptionHttpPostContent); } } public Integer getAlertConfigStartTime() { return this.alertConfigStartTime; } public void setAlertConfigStartTime(Integer alertConfigStartTime) { this.alertConfigStartTime = alertConfigStartTime; if(alertConfigStartTime != null){ putQueryParameter("AlertConfig.StartTime", alertConfigStartTime.toString()); } } public String getAlertConfigWebHook() { return this.alertConfigWebHook; } public void setAlertConfigWebHook(String alertConfigWebHook) { this.alertConfigWebHook = alertConfigWebHook; if(alertConfigWebHook != null){ putQueryParameter("AlertConfig.WebHook", alertConfigWebHook); } } public static class AlertConfigEscalationList { private Integer times; private String metricName; private String value; private String operator; private String aggregate; public Integer getTimes() { return this.times; } public void setTimes(Integer times) { this.times = times; } public String getMetricName() { return this.metricName; } public void setMetricName(String metricName) { this.metricName = metricName; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getOperator() { return this.operator; } public void setOperator(String operator) { this.operator = operator; } public String getAggregate() { return this.aggregate; } public void setAggregate(String aggregate) { this.aggregate = aggregate; } } @Override public Class<CreateHostAvailabilityResponse> getResponseClass() { return CreateHostAvailabilityResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateHostAvailabilityResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.CreateHostAvailabilityResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateHostAvailabilityResponse extends AcsResponse { private String code; private String message; private String requestId; private Long taskId; private Boolean success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getTaskId() { return this.taskId; } public void setTaskId(Long taskId) { this.taskId = taskId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } @Override public CreateHostAvailabilityResponse getInstance(UnmarshallerContext context) { return CreateHostAvailabilityResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateHybridMonitorNamespaceRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateHybridMonitorNamespaceRequest extends RpcAcsRequest<CreateHybridMonitorNamespaceResponse> { private String description; private String spec; private String namespace; public CreateHybridMonitorNamespaceRequest() { super("Cms", "2019-01-01", "CreateHybridMonitorNamespace", "cms"); setMethod(MethodType.POST); } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putQueryParameter("Description", description); } } public String getSpec() { return this.spec; } public void setSpec(String spec) { this.spec = spec; if(spec != null){ putQueryParameter("Spec", spec); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } @Override public Class<CreateHybridMonitorNamespaceResponse> getResponseClass() { return CreateHybridMonitorNamespaceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateHybridMonitorNamespaceResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.CreateHybridMonitorNamespaceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateHybridMonitorNamespaceResponse extends AcsResponse { private String code; private String message; private String requestId; private String success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getSuccess() { return this.success; } public void setSuccess(String success) { this.success = success; } @Override public CreateHybridMonitorNamespaceResponse getInstance(UnmarshallerContext context) { return CreateHybridMonitorNamespaceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateHybridMonitorSLSGroupRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateHybridMonitorSLSGroupRequest extends RpcAcsRequest<CreateHybridMonitorSLSGroupResponse> { private String sLSGroupDescription; private List<SLSGroupConfig> sLSGroupConfigs; private String sLSGroupName; public CreateHybridMonitorSLSGroupRequest() { super("Cms", "2019-01-01", "CreateHybridMonitorSLSGroup", "cms"); setMethod(MethodType.POST); } public String getSLSGroupDescription() { return this.sLSGroupDescription; } public void setSLSGroupDescription(String sLSGroupDescription) { this.sLSGroupDescription = sLSGroupDescription; if(sLSGroupDescription != null){ putQueryParameter("SLSGroupDescription", sLSGroupDescription); } } public List<SLSGroupConfig> getSLSGroupConfigs() { return this.sLSGroupConfigs; } public void setSLSGroupConfigs(List<SLSGroupConfig> sLSGroupConfigs) { this.sLSGroupConfigs = sLSGroupConfigs; if (sLSGroupConfigs != null) { for (int depth1 = 0; depth1 < sLSGroupConfigs.size(); depth1++) { putQueryParameter("SLSGroupConfig." + (depth1 + 1) + ".SLSLogstore" , sLSGroupConfigs.get(depth1).getSLSLogstore()); putQueryParameter("SLSGroupConfig." + (depth1 + 1) + ".SLSUserId" , sLSGroupConfigs.get(depth1).getSLSUserId()); putQueryParameter("SLSGroupConfig." + (depth1 + 1) + ".SLSProject" , sLSGroupConfigs.get(depth1).getSLSProject()); putQueryParameter("SLSGroupConfig." + (depth1 + 1) + ".SLSRegion" , sLSGroupConfigs.get(depth1).getSLSRegion()); } } } public String getSLSGroupName() { return this.sLSGroupName; } public void setSLSGroupName(String sLSGroupName) { this.sLSGroupName = sLSGroupName; if(sLSGroupName != null){ putQueryParameter("SLSGroupName", sLSGroupName); } } public static class SLSGroupConfig { private String sLSLogstore; private String sLSUserId; private String sLSProject; private String sLSRegion; public String getSLSLogstore() { return this.sLSLogstore; } public void setSLSLogstore(String sLSLogstore) { this.sLSLogstore = sLSLogstore; } public String getSLSUserId() { return this.sLSUserId; } public void setSLSUserId(String sLSUserId) { this.sLSUserId = sLSUserId; } public String getSLSProject() { return this.sLSProject; } public void setSLSProject(String sLSProject) { this.sLSProject = sLSProject; } public String getSLSRegion() { return this.sLSRegion; } public void setSLSRegion(String sLSRegion) { this.sLSRegion = sLSRegion; } } @Override public Class<CreateHybridMonitorSLSGroupResponse> getResponseClass() { return CreateHybridMonitorSLSGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateHybridMonitorSLSGroupResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.CreateHybridMonitorSLSGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateHybridMonitorSLSGroupResponse extends AcsResponse { private String code; private String message; private String requestId; private String success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getSuccess() { return this.success; } public void setSuccess(String success) { this.success = success; } @Override public CreateHybridMonitorSLSGroupResponse getInstance(UnmarshallerContext context) { return CreateHybridMonitorSLSGroupResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateHybridMonitorTaskRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateHybridMonitorTaskRequest extends RpcAcsRequest<CreateHybridMonitorTaskResponse> { private String description; private String taskName; private String collectInterval; private String targetUserId; private String collectTargetType; private List<AttachLabels> attachLabelss; private String taskType; private String groupId; private String targetUserIdList; private String yARMConfig; private String namespace; private SLSProcessConfig sLSProcessConfig; public CreateHybridMonitorTaskRequest() { super("Cms", "2019-01-01", "CreateHybridMonitorTask", "cms"); setMethod(MethodType.POST); } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putQueryParameter("Description", description); } } public String getTaskName() { return this.taskName; } public void setTaskName(String taskName) { this.taskName = taskName; if(taskName != null){ putQueryParameter("TaskName", taskName); } } public String getCollectInterval() { return this.collectInterval; } public void setCollectInterval(String collectInterval) { this.collectInterval = collectInterval; if(collectInterval != null){ putQueryParameter("CollectInterval", collectInterval); } } public String getTargetUserId() { return this.targetUserId; } public void setTargetUserId(String targetUserId) { this.targetUserId = targetUserId; if(targetUserId != null){ putQueryParameter("TargetUserId", targetUserId); } } public String getCollectTargetType() { return this.collectTargetType; } public void setCollectTargetType(String collectTargetType) { this.collectTargetType = collectTargetType; if(collectTargetType != null){ putQueryParameter("CollectTargetType", collectTargetType); } } public List<AttachLabels> getAttachLabelss() { return this.attachLabelss; } public void setAttachLabelss(List<AttachLabels> attachLabelss) { this.attachLabelss = attachLabelss; if (attachLabelss != null) { for (int depth1 = 0; depth1 < attachLabelss.size(); depth1++) { putQueryParameter("AttachLabels." + (depth1 + 1) + ".Name" , attachLabelss.get(depth1).getName()); putQueryParameter("AttachLabels." + (depth1 + 1) + ".Value" , attachLabelss.get(depth1).getValue()); } } } public String getTaskType() { return this.taskType; } public void setTaskType(String taskType) { this.taskType = taskType; if(taskType != null){ putQueryParameter("TaskType", taskType); } } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId); } } public String getTargetUserIdList() { return this.targetUserIdList; } public void setTargetUserIdList(String targetUserIdList) { this.targetUserIdList = targetUserIdList; if(targetUserIdList != null){ putQueryParameter("TargetUserIdList", targetUserIdList); } } public String getYARMConfig() { return this.yARMConfig; } public void setYARMConfig(String yARMConfig) { this.yARMConfig = yARMConfig; if(yARMConfig != null){ putQueryParameter("YARMConfig", yARMConfig); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } public SLSProcessConfig getSLSProcessConfig() { return this.sLSProcessConfig; } public void setSLSProcessConfig(SLSProcessConfig sLSProcessConfig) { this.sLSProcessConfig = sLSProcessConfig; if (sLSProcessConfig != null) { if (sLSProcessConfig.getFilter() != null) { if (sLSProcessConfig.getFilter().getFilters() != null) { for (int depth1 = 0; depth1 < sLSProcessConfig.getFilter().getFilters().size(); depth1++) { if (sLSProcessConfig.getFilter().getFilters().get(depth1) != null) { putQueryParameter("SLSProcessConfig.Filter.Filters." + (depth1 + 1) + ".SLSKeyName" , sLSProcessConfig.getFilter().getFilters().get(depth1).getSLSKeyName()); putQueryParameter("SLSProcessConfig.Filter.Filters." + (depth1 + 1) + ".Value" , sLSProcessConfig.getFilter().getFilters().get(depth1).getValue()); putQueryParameter("SLSProcessConfig.Filter.Filters." + (depth1 + 1) + ".Operator" , sLSProcessConfig.getFilter().getFilters().get(depth1).getOperator()); } } } putQueryParameter("SLSProcessConfig.Filter.Relation" , sLSProcessConfig.getFilter().getRelation()); } if (sLSProcessConfig.getExpress() != null) { for (int depth1 = 0; depth1 < sLSProcessConfig.getExpress().size(); depth1++) { if (sLSProcessConfig.getExpress().get(depth1) != null) { putQueryParameter("SLSProcessConfig.Express." + (depth1 + 1) + ".Alias" , sLSProcessConfig.getExpress().get(depth1).getAlias()); putQueryParameter("SLSProcessConfig.Express." + (depth1 + 1) + ".Express" , sLSProcessConfig.getExpress().get(depth1).getExpress()); } } } if (sLSProcessConfig.getGroupBy() != null) { for (int depth1 = 0; depth1 < sLSProcessConfig.getGroupBy().size(); depth1++) { if (sLSProcessConfig.getGroupBy().get(depth1) != null) { putQueryParameter("SLSProcessConfig.GroupBy." + (depth1 + 1) + ".SLSKeyName" , sLSProcessConfig.getGroupBy().get(depth1).getSLSKeyName()); putQueryParameter("SLSProcessConfig.GroupBy." + (depth1 + 1) + ".Alias" , sLSProcessConfig.getGroupBy().get(depth1).getAlias()); } } } if (sLSProcessConfig.getStatistics() != null) { for (int depth1 = 0; depth1 < sLSProcessConfig.getStatistics().size(); depth1++) { if (sLSProcessConfig.getStatistics().get(depth1) != null) { putQueryParameter("SLSProcessConfig.Statistics." + (depth1 + 1) + ".SLSKeyName" , sLSProcessConfig.getStatistics().get(depth1).getSLSKeyName()); putQueryParameter("SLSProcessConfig.Statistics." + (depth1 + 1) + ".Function" , sLSProcessConfig.getStatistics().get(depth1).getFunction()); putQueryParameter("SLSProcessConfig.Statistics." + (depth1 + 1) + ".Alias" , sLSProcessConfig.getStatistics().get(depth1).getAlias()); putQueryParameter("SLSProcessConfig.Statistics." + (depth1 + 1) + ".Parameter2" , sLSProcessConfig.getStatistics().get(depth1).getParameter2()); putQueryParameter("SLSProcessConfig.Statistics." + (depth1 + 1) + ".Parameter1" , sLSProcessConfig.getStatistics().get(depth1).getParameter1()); } } } } } public static class AttachLabels { 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 SLSProcessConfig { private Filter filter; private List<ExpressItem> express; private List<GroupByItem> groupBy; private List<StatisticsItem> statistics; public Filter getFilter() { return this.filter; } public void setFilter(Filter filter) { this.filter = filter; } public List<ExpressItem> getExpress() { return this.express; } public void setExpress(List<ExpressItem> express) { this.express = express; } public List<GroupByItem> getGroupBy() { return this.groupBy; } public void setGroupBy(List<GroupByItem> groupBy) { this.groupBy = groupBy; } public List<StatisticsItem> getStatistics() { return this.statistics; } public void setStatistics(List<StatisticsItem> statistics) { this.statistics = statistics; } public static class Filter { private List<FiltersItem> filters; private String relation; public List<FiltersItem> getFilters() { return this.filters; } public void setFilters(List<FiltersItem> filters) { this.filters = filters; } public String getRelation() { return this.relation; } public void setRelation(String relation) { this.relation = relation; } public static class FiltersItem { private String sLSKeyName; private String value; private String operator; public String getSLSKeyName() { return this.sLSKeyName; } public void setSLSKeyName(String sLSKeyName) { this.sLSKeyName = sLSKeyName; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getOperator() { return this.operator; } public void setOperator(String operator) { this.operator = operator; } } } public static class ExpressItem { private String alias; private String express; public String getAlias() { return this.alias; } public void setAlias(String alias) { this.alias = alias; } public String getExpress() { return this.express; } public void setExpress(String express) { this.express = express; } } public static class GroupByItem { private String sLSKeyName; private String alias; public String getSLSKeyName() { return this.sLSKeyName; } public void setSLSKeyName(String sLSKeyName) { this.sLSKeyName = sLSKeyName; } public String getAlias() { return this.alias; } public void setAlias(String alias) { this.alias = alias; } } public static class StatisticsItem { private String sLSKeyName; private String function; private String alias; private String parameter2; private String parameter1; public String getSLSKeyName() { return this.sLSKeyName; } public void setSLSKeyName(String sLSKeyName) { this.sLSKeyName = sLSKeyName; } public String getFunction() { return this.function; } public void setFunction(String function) { this.function = function; } public String getAlias() { return this.alias; } public void setAlias(String alias) { this.alias = alias; } public String getParameter2() { return this.parameter2; } public void setParameter2(String parameter2) { this.parameter2 = parameter2; } public String getParameter1() { return this.parameter1; } public void setParameter1(String parameter1) { this.parameter1 = parameter1; } } } @Override public Class<CreateHybridMonitorTaskResponse> getResponseClass() { return CreateHybridMonitorTaskResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateHybridMonitorTaskResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.CreateHybridMonitorTaskResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateHybridMonitorTaskResponse extends AcsResponse { private String code; private String message; private String requestId; private String success; private Long taskId; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getSuccess() { return this.success; } public void setSuccess(String success) { this.success = success; } public Long getTaskId() { return this.taskId; } public void setTaskId(Long taskId) { this.taskId = taskId; } @Override public CreateHybridMonitorTaskResponse getInstance(UnmarshallerContext context) { return CreateHybridMonitorTaskResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateInstantSiteMonitorRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateInstantSiteMonitorRequest extends RpcAcsRequest<CreateInstantSiteMonitorResponse> { private Integer randomIspCity; private String address; private String taskType; private String taskName; private String ispCities; private String optionsJson; public CreateInstantSiteMonitorRequest() { super("Cms", "2019-01-01", "CreateInstantSiteMonitor", "cms"); setMethod(MethodType.POST); } public Integer getRandomIspCity() { return this.randomIspCity; } public void setRandomIspCity(Integer randomIspCity) { this.randomIspCity = randomIspCity; if(randomIspCity != null){ putQueryParameter("RandomIspCity", randomIspCity.toString()); } } public String getAddress() { return this.address; } public void setAddress(String address) { this.address = address; if(address != null){ putQueryParameter("Address", address); } } public String getTaskType() { return this.taskType; } public void setTaskType(String taskType) { this.taskType = taskType; if(taskType != null){ putQueryParameter("TaskType", taskType); } } public String getTaskName() { return this.taskName; } public void setTaskName(String taskName) { this.taskName = taskName; if(taskName != null){ putQueryParameter("TaskName", taskName); } } public String getIspCities() { return this.ispCities; } public void setIspCities(String ispCities) { this.ispCities = ispCities; if(ispCities != null){ putQueryParameter("IspCities", ispCities); } } public String getOptionsJson() { return this.optionsJson; } public void setOptionsJson(String optionsJson) { this.optionsJson = optionsJson; if(optionsJson != null){ putQueryParameter("OptionsJson", optionsJson); } } @Override public Class<CreateInstantSiteMonitorResponse> getResponseClass() { return CreateInstantSiteMonitorResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateInstantSiteMonitorResponse.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.cms.model.v20190101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.CreateInstantSiteMonitorResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateInstantSiteMonitorResponse extends AcsResponse { private String code; private String message; private String requestId; private String success; private List<CreateResultListItem> createResultList; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getSuccess() { return this.success; } public void setSuccess(String success) { this.success = success; } public List<CreateResultListItem> getCreateResultList() { return this.createResultList; } public void setCreateResultList(List<CreateResultListItem> createResultList) { this.createResultList = createResultList; } public static class CreateResultListItem { private String taskId; private String taskName; public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; } public String getTaskName() { return this.taskName; } public void setTaskName(String taskName) { this.taskName = taskName; } } @Override public CreateInstantSiteMonitorResponse getInstance(UnmarshallerContext context) { return CreateInstantSiteMonitorResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateMetricRuleBlackListRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateMetricRuleBlackListRequest extends RpcAcsRequest<CreateMetricRuleBlackListResponse> { private String scopeType; private List<String> instancess; private String enableEndTime; private String scopeValue; private String enableStartTime; private String effectiveTime; private String name; private String namespace; private List<Metrics> metricss; private String category; public CreateMetricRuleBlackListRequest() { super("Cms", "2019-01-01", "CreateMetricRuleBlackList", "cms"); setMethod(MethodType.POST); } public String getScopeType() { return this.scopeType; } public void setScopeType(String scopeType) { this.scopeType = scopeType; if(scopeType != null){ putQueryParameter("ScopeType", scopeType); } } public List<String> getInstancess() { return this.instancess; } public void setInstancess(List<String> instancess) { this.instancess = instancess; if (instancess != null) { for (int i = 0; i < instancess.size(); i++) { putQueryParameter("Instances." + (i + 1) , instancess.get(i)); } } } public String getEnableEndTime() { return this.enableEndTime; } public void setEnableEndTime(String enableEndTime) { this.enableEndTime = enableEndTime; if(enableEndTime != null){ putQueryParameter("EnableEndTime", enableEndTime); } } public String getScopeValue() { return this.scopeValue; } public void setScopeValue(String scopeValue) { this.scopeValue = scopeValue; if(scopeValue != null){ putQueryParameter("ScopeValue", scopeValue); } } public String getEnableStartTime() { return this.enableStartTime; } public void setEnableStartTime(String enableStartTime) { this.enableStartTime = enableStartTime; if(enableStartTime != null){ putQueryParameter("EnableStartTime", enableStartTime); } } public String getEffectiveTime() { return this.effectiveTime; } public void setEffectiveTime(String effectiveTime) { this.effectiveTime = effectiveTime; if(effectiveTime != null){ putQueryParameter("EffectiveTime", effectiveTime); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putQueryParameter("Name", name); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } public List<Metrics> getMetricss() { return this.metricss; } public void setMetricss(List<Metrics> metricss) { this.metricss = metricss; if (metricss != null) { for (int depth1 = 0; depth1 < metricss.size(); depth1++) { putQueryParameter("Metrics." + (depth1 + 1) + ".Resource" , metricss.get(depth1).getResource()); putQueryParameter("Metrics." + (depth1 + 1) + ".MetricName" , metricss.get(depth1).getMetricName()); } } } public String getCategory() { return this.category; } public void setCategory(String category) { this.category = category; if(category != null){ putQueryParameter("Category", category); } } public static class Metrics { private String resource; private String metricName; public String getResource() { return this.resource; } public void setResource(String resource) { this.resource = resource; } public String getMetricName() { return this.metricName; } public void setMetricName(String metricName) { this.metricName = metricName; } } @Override public Class<CreateMetricRuleBlackListResponse> getResponseClass() { return CreateMetricRuleBlackListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateMetricRuleBlackListResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.CreateMetricRuleBlackListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateMetricRuleBlackListResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private String id; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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 String getId() { return this.id; } public void setId(String id) { this.id = id; } @Override public CreateMetricRuleBlackListResponse getInstance(UnmarshallerContext context) { return CreateMetricRuleBlackListResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateMetricRuleResourcesRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateMetricRuleResourcesRequest extends RpcAcsRequest<CreateMetricRuleResourcesResponse> { private String resources; private String ruleId; private String overwrite; public CreateMetricRuleResourcesRequest() { super("Cms", "2019-01-01", "CreateMetricRuleResources", "cms"); setMethod(MethodType.POST); } public String getResources() { return this.resources; } public void setResources(String resources) { this.resources = resources; if(resources != null){ putQueryParameter("Resources", resources); } } public String getRuleId() { return this.ruleId; } public void setRuleId(String ruleId) { this.ruleId = ruleId; if(ruleId != null){ putQueryParameter("RuleId", ruleId); } } public String getOverwrite() { return this.overwrite; } public void setOverwrite(String overwrite) { this.overwrite = overwrite; if(overwrite != null){ putQueryParameter("Overwrite", overwrite); } } @Override public Class<CreateMetricRuleResourcesResponse> getResponseClass() { return CreateMetricRuleResourcesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateMetricRuleResourcesResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.CreateMetricRuleResourcesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateMetricRuleResourcesResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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; } @Override public CreateMetricRuleResourcesResponse getInstance(UnmarshallerContext context) { return CreateMetricRuleResourcesResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateMetricRuleTemplateRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateMetricRuleTemplateRequest extends RpcAcsRequest<CreateMetricRuleTemplateResponse> { private String description; private String name; private List<AlertTemplates> alertTemplatess; public CreateMetricRuleTemplateRequest() { super("Cms", "2019-01-01", "CreateMetricRuleTemplate", "cms"); setMethod(MethodType.POST); } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putQueryParameter("Description", description); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putQueryParameter("Name", name); } } public List<AlertTemplates> getAlertTemplatess() { return this.alertTemplatess; } public void setAlertTemplatess(List<AlertTemplates> alertTemplatess) { this.alertTemplatess = alertTemplatess; if (alertTemplatess != null) { for (int depth1 = 0; depth1 < alertTemplatess.size(); depth1++) { putQueryParameter("AlertTemplates." + (depth1 + 1) + ".Escalations.Warn.Threshold" , alertTemplatess.get(depth1).getEscalationsWarnThreshold()); putQueryParameter("AlertTemplates." + (depth1 + 1) + ".Period" , alertTemplatess.get(depth1).getPeriod()); putQueryParameter("AlertTemplates." + (depth1 + 1) + ".Webhook" , alertTemplatess.get(depth1).getWebhook()); putQueryParameter("AlertTemplates." + (depth1 + 1) + ".Escalations.Warn.ComparisonOperator" , alertTemplatess.get(depth1).getEscalationsWarnComparisonOperator()); putQueryParameter("AlertTemplates." + (depth1 + 1) + ".Escalations.Critical.Statistics" , alertTemplatess.get(depth1).getEscalationsCriticalStatistics()); putQueryParameter("AlertTemplates." + (depth1 + 1) + ".Escalations.Info.Times" , alertTemplatess.get(depth1).getEscalationsInfoTimes()); putQueryParameter("AlertTemplates." + (depth1 + 1) + ".RuleName" , alertTemplatess.get(depth1).getRuleName()); putQueryParameter("AlertTemplates." + (depth1 + 1) + ".Escalations.Info.Statistics" , alertTemplatess.get(depth1).getEscalationsInfoStatistics()); putQueryParameter("AlertTemplates." + (depth1 + 1) + ".Escalations.Critical.Times" , alertTemplatess.get(depth1).getEscalationsCriticalTimes()); putQueryParameter("AlertTemplates." + (depth1 + 1) + ".Escalations.Info.ComparisonOperator" , alertTemplatess.get(depth1).getEscalationsInfoComparisonOperator()); putQueryParameter("AlertTemplates." + (depth1 + 1) + ".Escalations.Info.Threshold" , alertTemplatess.get(depth1).getEscalationsInfoThreshold()); putQueryParameter("AlertTemplates." + (depth1 + 1) + ".Escalations.Warn.Statistics" , alertTemplatess.get(depth1).getEscalationsWarnStatistics()); putQueryParameter("AlertTemplates." + (depth1 + 1) + ".Namespace" , alertTemplatess.get(depth1).getNamespace()); putQueryParameter("AlertTemplates." + (depth1 + 1) + ".Selector" , alertTemplatess.get(depth1).getSelector()); putQueryParameter("AlertTemplates." + (depth1 + 1) + ".MetricName" , alertTemplatess.get(depth1).getMetricName()); putQueryParameter("AlertTemplates." + (depth1 + 1) + ".Escalations.Warn.Times" , alertTemplatess.get(depth1).getEscalationsWarnTimes()); putQueryParameter("AlertTemplates." + (depth1 + 1) + ".Category" , alertTemplatess.get(depth1).getCategory()); putQueryParameter("AlertTemplates." + (depth1 + 1) + ".Escalations.Critical.ComparisonOperator" , alertTemplatess.get(depth1).getEscalationsCriticalComparisonOperator()); putQueryParameter("AlertTemplates." + (depth1 + 1) + ".Escalations.Critical.Threshold" , alertTemplatess.get(depth1).getEscalationsCriticalThreshold()); } } } public static class AlertTemplates { private String escalationsWarnThreshold; private Integer period; private String webhook; private String escalationsWarnComparisonOperator; private String escalationsCriticalStatistics; private Integer escalationsInfoTimes; private String ruleName; private String escalationsInfoStatistics; private Integer escalationsCriticalTimes; private String escalationsInfoComparisonOperator; private String escalationsInfoThreshold; private String escalationsWarnStatistics; private String namespace; private String selector; private String metricName; private Integer escalationsWarnTimes; private String category; private String escalationsCriticalComparisonOperator; private String escalationsCriticalThreshold; public String getEscalationsWarnThreshold() { return this.escalationsWarnThreshold; } public void setEscalationsWarnThreshold(String escalationsWarnThreshold) { this.escalationsWarnThreshold = escalationsWarnThreshold; } public Integer getPeriod() { return this.period; } public void setPeriod(Integer period) { this.period = period; } public String getWebhook() { return this.webhook; } public void setWebhook(String webhook) { this.webhook = webhook; } public String getEscalationsWarnComparisonOperator() { return this.escalationsWarnComparisonOperator; } public void setEscalationsWarnComparisonOperator(String escalationsWarnComparisonOperator) { this.escalationsWarnComparisonOperator = escalationsWarnComparisonOperator; } public String getEscalationsCriticalStatistics() { return this.escalationsCriticalStatistics; } public void setEscalationsCriticalStatistics(String escalationsCriticalStatistics) { this.escalationsCriticalStatistics = escalationsCriticalStatistics; } public Integer getEscalationsInfoTimes() { return this.escalationsInfoTimes; } public void setEscalationsInfoTimes(Integer escalationsInfoTimes) { this.escalationsInfoTimes = escalationsInfoTimes; } public String getRuleName() { return this.ruleName; } public void setRuleName(String ruleName) { this.ruleName = ruleName; } public String getEscalationsInfoStatistics() { return this.escalationsInfoStatistics; } public void setEscalationsInfoStatistics(String escalationsInfoStatistics) { this.escalationsInfoStatistics = escalationsInfoStatistics; } public Integer getEscalationsCriticalTimes() { return this.escalationsCriticalTimes; } public void setEscalationsCriticalTimes(Integer escalationsCriticalTimes) { this.escalationsCriticalTimes = escalationsCriticalTimes; } public String getEscalationsInfoComparisonOperator() { return this.escalationsInfoComparisonOperator; } public void setEscalationsInfoComparisonOperator(String escalationsInfoComparisonOperator) { this.escalationsInfoComparisonOperator = escalationsInfoComparisonOperator; } public String getEscalationsInfoThreshold() { return this.escalationsInfoThreshold; } public void setEscalationsInfoThreshold(String escalationsInfoThreshold) { this.escalationsInfoThreshold = escalationsInfoThreshold; } public String getEscalationsWarnStatistics() { return this.escalationsWarnStatistics; } public void setEscalationsWarnStatistics(String escalationsWarnStatistics) { this.escalationsWarnStatistics = escalationsWarnStatistics; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public String getSelector() { return this.selector; } public void setSelector(String selector) { this.selector = selector; } public String getMetricName() { return this.metricName; } public void setMetricName(String metricName) { this.metricName = metricName; } public Integer getEscalationsWarnTimes() { return this.escalationsWarnTimes; } public void setEscalationsWarnTimes(Integer escalationsWarnTimes) { this.escalationsWarnTimes = escalationsWarnTimes; } public String getCategory() { return this.category; } public void setCategory(String category) { this.category = category; } public String getEscalationsCriticalComparisonOperator() { return this.escalationsCriticalComparisonOperator; } public void setEscalationsCriticalComparisonOperator(String escalationsCriticalComparisonOperator) { this.escalationsCriticalComparisonOperator = escalationsCriticalComparisonOperator; } public String getEscalationsCriticalThreshold() { return this.escalationsCriticalThreshold; } public void setEscalationsCriticalThreshold(String escalationsCriticalThreshold) { this.escalationsCriticalThreshold = escalationsCriticalThreshold; } } @Override public Class<CreateMetricRuleTemplateResponse> getResponseClass() { return CreateMetricRuleTemplateResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateMetricRuleTemplateResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.CreateMetricRuleTemplateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateMetricRuleTemplateResponse extends AcsResponse { private Integer code; private String message; private String requestId; private Boolean success; private Long id; 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 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 getId() { return this.id; } public void setId(Long id) { this.id = id; } @Override public CreateMetricRuleTemplateResponse getInstance(UnmarshallerContext context) { return CreateMetricRuleTemplateResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateMonitorAgentProcessRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateMonitorAgentProcessRequest extends RpcAcsRequest<CreateMonitorAgentProcessResponse> { private String processName; private String instanceId; private String processUser; public CreateMonitorAgentProcessRequest() { super("Cms", "2019-01-01", "CreateMonitorAgentProcess", "cms"); setMethod(MethodType.POST); } public String getProcessName() { return this.processName; } public void setProcessName(String processName) { this.processName = processName; if(processName != null){ putQueryParameter("ProcessName", processName); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public String getProcessUser() { return this.processUser; } public void setProcessUser(String processUser) { this.processUser = processUser; if(processUser != null){ putQueryParameter("ProcessUser", processUser); } } @Override public Class<CreateMonitorAgentProcessResponse> getResponseClass() { return CreateMonitorAgentProcessResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateMonitorAgentProcessResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.CreateMonitorAgentProcessResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateMonitorAgentProcessResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Long id; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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 getId() { return this.id; } public void setId(Long id) { this.id = id; } @Override public CreateMonitorAgentProcessResponse getInstance(UnmarshallerContext context) { return CreateMonitorAgentProcessResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateMonitorGroupByResourceGroupIdRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateMonitorGroupByResourceGroupIdRequest extends RpcAcsRequest<CreateMonitorGroupByResourceGroupIdResponse> { private String resourceGroupName; private Boolean enableSubscribeEvent; private String resourceGroupId; private Boolean enableInstallAgent; private List<String> contactGroupLists; public CreateMonitorGroupByResourceGroupIdRequest() { super("Cms", "2019-01-01", "CreateMonitorGroupByResourceGroupId", "cms"); setMethod(MethodType.POST); } public String getResourceGroupName() { return this.resourceGroupName; } public void setResourceGroupName(String resourceGroupName) { this.resourceGroupName = resourceGroupName; if(resourceGroupName != null){ putQueryParameter("ResourceGroupName", resourceGroupName); } } public Boolean getEnableSubscribeEvent() { return this.enableSubscribeEvent; } public void setEnableSubscribeEvent(Boolean enableSubscribeEvent) { this.enableSubscribeEvent = enableSubscribeEvent; if(enableSubscribeEvent != null){ putQueryParameter("EnableSubscribeEvent", enableSubscribeEvent.toString()); } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public Boolean getEnableInstallAgent() { return this.enableInstallAgent; } public void setEnableInstallAgent(Boolean enableInstallAgent) { this.enableInstallAgent = enableInstallAgent; if(enableInstallAgent != null){ putQueryParameter("EnableInstallAgent", enableInstallAgent.toString()); } } public List<String> getContactGroupLists() { return this.contactGroupLists; } public void setContactGroupLists(List<String> contactGroupLists) { this.contactGroupLists = contactGroupLists; if (contactGroupLists != null) { for (int i = 0; i < contactGroupLists.size(); i++) { putQueryParameter("ContactGroupList." + (i + 1) , contactGroupLists.get(i)); } } } @Override public Class<CreateMonitorGroupByResourceGroupIdResponse> getResponseClass() { return CreateMonitorGroupByResourceGroupIdResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateMonitorGroupByResourceGroupIdResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.CreateMonitorGroupByResourceGroupIdResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateMonitorGroupByResourceGroupIdResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Long id; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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 getId() { return this.id; } public void setId(Long id) { this.id = id; } @Override public CreateMonitorGroupByResourceGroupIdResponse getInstance(UnmarshallerContext context) { return CreateMonitorGroupByResourceGroupIdResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateMonitorGroupInstancesRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateMonitorGroupInstancesRequest extends RpcAcsRequest<CreateMonitorGroupInstancesResponse> { private List<Instances> instancess; private String groupId; public CreateMonitorGroupInstancesRequest() { super("Cms", "2019-01-01", "CreateMonitorGroupInstances", "cms"); setMethod(MethodType.POST); } public List<Instances> getInstancess() { return this.instancess; } public void setInstancess(List<Instances> instancess) { this.instancess = instancess; if (instancess != null) { for (int depth1 = 0; depth1 < instancess.size(); depth1++) { putQueryParameter("Instances." + (depth1 + 1) + ".InstanceName" , instancess.get(depth1).getInstanceName()); putQueryParameter("Instances." + (depth1 + 1) + ".InstanceId" , instancess.get(depth1).getInstanceId()); putQueryParameter("Instances." + (depth1 + 1) + ".RegionId" , instancess.get(depth1).getRegionId()); putQueryParameter("Instances." + (depth1 + 1) + ".Category" , instancess.get(depth1).getCategory()); } } } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId); } } public static class Instances { private String instanceName; private String instanceId; private String regionId; private String category; public String getInstanceName() { return this.instanceName; } public void setInstanceName(String instanceName) { this.instanceName = instanceName; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getCategory() { return this.category; } public void setCategory(String category) { this.category = category; } } @Override public Class<CreateMonitorGroupInstancesResponse> getResponseClass() { return CreateMonitorGroupInstancesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateMonitorGroupInstancesResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.CreateMonitorGroupInstancesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateMonitorGroupInstancesResponse extends AcsResponse { private Integer code; private String message; private String requestId; private Boolean success; 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 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; } @Override public CreateMonitorGroupInstancesResponse getInstance(UnmarshallerContext context) { return CreateMonitorGroupInstancesResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateMonitorGroupNotifyPolicyRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateMonitorGroupNotifyPolicyRequest extends RpcAcsRequest<CreateMonitorGroupNotifyPolicyResponse> { private String policyType; private String groupId; private Long endTime; private Long startTime; public CreateMonitorGroupNotifyPolicyRequest() { super("Cms", "2019-01-01", "CreateMonitorGroupNotifyPolicy", "cms"); setMethod(MethodType.POST); } public String getPolicyType() { return this.policyType; } public void setPolicyType(String policyType) { this.policyType = policyType; if(policyType != null){ putQueryParameter("PolicyType", policyType); } } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId); } } public Long getEndTime() { return this.endTime; } public void setEndTime(Long endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("EndTime", endTime.toString()); } } public Long getStartTime() { return this.startTime; } public void setStartTime(Long startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("StartTime", startTime.toString()); } } @Override public Class<CreateMonitorGroupNotifyPolicyResponse> getResponseClass() { return CreateMonitorGroupNotifyPolicyResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateMonitorGroupNotifyPolicyResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.CreateMonitorGroupNotifyPolicyResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateMonitorGroupNotifyPolicyResponse extends AcsResponse { private String code; private String message; private String requestId; private Integer result; private String success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getResult() { return this.result; } public void setResult(Integer result) { this.result = result; } public String getSuccess() { return this.success; } public void setSuccess(String success) { this.success = success; } @Override public CreateMonitorGroupNotifyPolicyResponse getInstance(UnmarshallerContext context) { return CreateMonitorGroupNotifyPolicyResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateMonitorGroupRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateMonitorGroupRequest extends RpcAcsRequest<CreateMonitorGroupResponse> { private String contactGroups; private String groupName; public CreateMonitorGroupRequest() { super("Cms", "2019-01-01", "CreateMonitorGroup", "cms"); setMethod(MethodType.POST); } public String getContactGroups() { return this.contactGroups; } public void setContactGroups(String contactGroups) { this.contactGroups = contactGroups; if(contactGroups != null){ putQueryParameter("ContactGroups", contactGroups); } } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; if(groupName != null){ putQueryParameter("GroupName", groupName); } } @Override public Class<CreateMonitorGroupResponse> getResponseClass() { return CreateMonitorGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateMonitorGroupResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.CreateMonitorGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateMonitorGroupResponse extends AcsResponse { private Integer code; private String message; private String requestId; private Long groupId; private Boolean success; 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 String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getGroupId() { return this.groupId; } public void setGroupId(Long groupId) { this.groupId = groupId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } @Override public CreateMonitorGroupResponse getInstance(UnmarshallerContext context) { return CreateMonitorGroupResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateMonitoringAgentProcessRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateMonitoringAgentProcessRequest extends RpcAcsRequest<CreateMonitoringAgentProcessResponse> { private String processName; private String instanceId; private String processUser; public CreateMonitoringAgentProcessRequest() { super("Cms", "2019-01-01", "CreateMonitoringAgentProcess", "cms"); setMethod(MethodType.POST); } public String getProcessName() { return this.processName; } public void setProcessName(String processName) { this.processName = processName; if(processName != null){ putQueryParameter("ProcessName", processName); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public String getProcessUser() { return this.processUser; } public void setProcessUser(String processUser) { this.processUser = processUser; if(processUser != null){ putQueryParameter("ProcessUser", processUser); } } @Override public Class<CreateMonitoringAgentProcessResponse> getResponseClass() { return CreateMonitoringAgentProcessResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateMonitoringAgentProcessResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.CreateMonitoringAgentProcessResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateMonitoringAgentProcessResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Long id; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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 getId() { return this.id; } public void setId(Long id) { this.id = id; } @Override public CreateMonitoringAgentProcessResponse getInstance(UnmarshallerContext context) { return CreateMonitoringAgentProcessResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateSiteMonitorRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class CreateSiteMonitorRequest extends RpcAcsRequest<CreateSiteMonitorResponse> { private String taskName; private String alertIds; private String address; private String taskType; private String ispCities; private String optionsJson; private String interval; public CreateSiteMonitorRequest() { super("Cms", "2019-01-01", "CreateSiteMonitor", "cms"); setMethod(MethodType.POST); } public String getTaskName() { return this.taskName; } public void setTaskName(String taskName) { this.taskName = taskName; if(taskName != null){ putQueryParameter("TaskName", taskName); } } public String getAlertIds() { return this.alertIds; } public void setAlertIds(String alertIds) { this.alertIds = alertIds; if(alertIds != null){ putQueryParameter("AlertIds", alertIds); } } public String getAddress() { return this.address; } public void setAddress(String address) { this.address = address; if(address != null){ putQueryParameter("Address", address); } } public String getTaskType() { return this.taskType; } public void setTaskType(String taskType) { this.taskType = taskType; if(taskType != null){ putQueryParameter("TaskType", taskType); } } public String getIspCities() { return this.ispCities; } public void setIspCities(String ispCities) { this.ispCities = ispCities; if(ispCities != null){ putQueryParameter("IspCities", ispCities); } } public String getOptionsJson() { return this.optionsJson; } public void setOptionsJson(String optionsJson) { this.optionsJson = optionsJson; if(optionsJson != null){ putQueryParameter("OptionsJson", optionsJson); } } public String getInterval() { return this.interval; } public void setInterval(String interval) { this.interval = interval; if(interval != null){ putQueryParameter("Interval", interval); } } @Override public Class<CreateSiteMonitorResponse> getResponseClass() { return CreateSiteMonitorResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/CreateSiteMonitorResponse.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.cms.model.v20190101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.CreateSiteMonitorResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateSiteMonitorResponse extends AcsResponse { private String code; private String message; private String requestId; private String success; private List<CreateResultListItem> createResultList; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getSuccess() { return this.success; } public void setSuccess(String success) { this.success = success; } public List<CreateResultListItem> getCreateResultList() { return this.createResultList; } public void setCreateResultList(List<CreateResultListItem> createResultList) { this.createResultList = createResultList; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class CreateResultListItem { private String taskId; private String taskName; public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; } public String getTaskName() { return this.taskName; } public void setTaskName(String taskName) { this.taskName = taskName; } } public static class Data { private List<Contact> attachAlertResult; public List<Contact> getAttachAlertResult() { return this.attachAlertResult; } public void setAttachAlertResult(List<Contact> attachAlertResult) { this.attachAlertResult = attachAlertResult; } public static class Contact { private String code; private String message; private String requestId; private String success; private String ruleId; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getSuccess() { return this.success; } public void setSuccess(String success) { this.success = success; } public String getRuleId() { return this.ruleId; } public void setRuleId(String ruleId) { this.ruleId = ruleId; } } } @Override public CreateSiteMonitorResponse getInstance(UnmarshallerContext context) { return CreateSiteMonitorResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteContactGroupRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteContactGroupRequest extends RpcAcsRequest<DeleteContactGroupResponse> { private String contactGroupName; public DeleteContactGroupRequest() { super("Cms", "2019-01-01", "DeleteContactGroup", "cms"); setMethod(MethodType.POST); } public String getContactGroupName() { return this.contactGroupName; } public void setContactGroupName(String contactGroupName) { this.contactGroupName = contactGroupName; if(contactGroupName != null){ putQueryParameter("ContactGroupName", contactGroupName); } } @Override public Class<DeleteContactGroupResponse> getResponseClass() { return DeleteContactGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteContactGroupResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteContactGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteContactGroupResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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; } @Override public DeleteContactGroupResponse getInstance(UnmarshallerContext context) { return DeleteContactGroupResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteContactRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteContactRequest extends RpcAcsRequest<DeleteContactResponse> { private String contactName; public DeleteContactRequest() { super("Cms", "2019-01-01", "DeleteContact", "cms"); setMethod(MethodType.POST); } public String getContactName() { return this.contactName; } public void setContactName(String contactName) { this.contactName = contactName; if(contactName != null){ putQueryParameter("ContactName", contactName); } } @Override public Class<DeleteContactResponse> getResponseClass() { return DeleteContactResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteContactResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteContactResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteContactResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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; } @Override public DeleteContactResponse getInstance(UnmarshallerContext context) { return DeleteContactResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteCustomMetricRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteCustomMetricRequest extends RpcAcsRequest<DeleteCustomMetricResponse> { private String groupId; private String uUID; private String metricName; private String md5; public DeleteCustomMetricRequest() { super("Cms", "2019-01-01", "DeleteCustomMetric", "cms"); setMethod(MethodType.POST); } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId); } } public String getUUID() { return this.uUID; } public void setUUID(String uUID) { this.uUID = uUID; if(uUID != null){ putQueryParameter("UUID", uUID); } } public String getMetricName() { return this.metricName; } public void setMetricName(String metricName) { this.metricName = metricName; if(metricName != null){ putQueryParameter("MetricName", metricName); } } public String getMd5() { return this.md5; } public void setMd5(String md5) { this.md5 = md5; if(md5 != null){ putQueryParameter("Md5", md5); } } @Override public Class<DeleteCustomMetricResponse> getResponseClass() { return DeleteCustomMetricResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteCustomMetricResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteCustomMetricResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteCustomMetricResponse extends AcsResponse { private String code; private String message; private String requestId; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public DeleteCustomMetricResponse getInstance(UnmarshallerContext context) { return DeleteCustomMetricResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteDynamicTagGroupRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteDynamicTagGroupRequest extends RpcAcsRequest<DeleteDynamicTagGroupResponse> { private String dynamicTagRuleId; public DeleteDynamicTagGroupRequest() { super("Cms", "2019-01-01", "DeleteDynamicTagGroup", "cms"); setMethod(MethodType.POST); } public String getDynamicTagRuleId() { return this.dynamicTagRuleId; } public void setDynamicTagRuleId(String dynamicTagRuleId) { this.dynamicTagRuleId = dynamicTagRuleId; if(dynamicTagRuleId != null){ putQueryParameter("DynamicTagRuleId", dynamicTagRuleId); } } @Override public Class<DeleteDynamicTagGroupResponse> getResponseClass() { return DeleteDynamicTagGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteDynamicTagGroupResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteDynamicTagGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteDynamicTagGroupResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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; } @Override public DeleteDynamicTagGroupResponse getInstance(UnmarshallerContext context) { return DeleteDynamicTagGroupResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteEventRuleTargetsRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteEventRuleTargetsRequest extends RpcAcsRequest<DeleteEventRuleTargetsResponse> { private String ruleName; private List<String> idss; public DeleteEventRuleTargetsRequest() { super("Cms", "2019-01-01", "DeleteEventRuleTargets", "cms"); setMethod(MethodType.POST); } public String getRuleName() { return this.ruleName; } public void setRuleName(String ruleName) { this.ruleName = ruleName; if(ruleName != null){ putQueryParameter("RuleName", ruleName); } } public List<String> getIdss() { return this.idss; } public void setIdss(List<String> idss) { this.idss = idss; if (idss != null) { for (int i = 0; i < idss.size(); i++) { putQueryParameter("Ids." + (i + 1) , idss.get(i)); } } } @Override public Class<DeleteEventRuleTargetsResponse> getResponseClass() { return DeleteEventRuleTargetsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteEventRuleTargetsResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteEventRuleTargetsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteEventRuleTargetsResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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; } @Override public DeleteEventRuleTargetsResponse getInstance(UnmarshallerContext context) { return DeleteEventRuleTargetsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteEventRulesRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteEventRulesRequest extends RpcAcsRequest<DeleteEventRulesResponse> { private List<String> ruleNamess; public DeleteEventRulesRequest() { super("Cms", "2019-01-01", "DeleteEventRules", "cms"); setMethod(MethodType.POST); } public List<String> getRuleNamess() { return this.ruleNamess; } public void setRuleNamess(List<String> ruleNamess) { this.ruleNamess = ruleNamess; if (ruleNamess != null) { for (int i = 0; i < ruleNamess.size(); i++) { putQueryParameter("RuleNames." + (i + 1) , ruleNamess.get(i)); } } } @Override public Class<DeleteEventRulesResponse> getResponseClass() { return DeleteEventRulesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteEventRulesResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteEventRulesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteEventRulesResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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; } @Override public DeleteEventRulesResponse getInstance(UnmarshallerContext context) { return DeleteEventRulesResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteExporterOutputRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteExporterOutputRequest extends RpcAcsRequest<DeleteExporterOutputResponse> { private String destName; public DeleteExporterOutputRequest() { super("Cms", "2019-01-01", "DeleteExporterOutput", "cms"); setMethod(MethodType.POST); } public String getDestName() { return this.destName; } public void setDestName(String destName) { this.destName = destName; if(destName != null){ putQueryParameter("DestName", destName); } } @Override public Class<DeleteExporterOutputResponse> getResponseClass() { return DeleteExporterOutputResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteExporterOutputResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteExporterOutputResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteExporterOutputResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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; } @Override public DeleteExporterOutputResponse getInstance(UnmarshallerContext context) { return DeleteExporterOutputResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteExporterRuleRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteExporterRuleRequest extends RpcAcsRequest<DeleteExporterRuleResponse> { private String ruleName; public DeleteExporterRuleRequest() { super("Cms", "2019-01-01", "DeleteExporterRule", "cms"); setMethod(MethodType.POST); } public String getRuleName() { return this.ruleName; } public void setRuleName(String ruleName) { this.ruleName = ruleName; if(ruleName != null){ putQueryParameter("RuleName", ruleName); } } @Override public Class<DeleteExporterRuleResponse> getResponseClass() { return DeleteExporterRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteExporterRuleResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteExporterRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteExporterRuleResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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; } @Override public DeleteExporterRuleResponse getInstance(UnmarshallerContext context) { return DeleteExporterRuleResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteGroupMonitoringAgentProcessRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteGroupMonitoringAgentProcessRequest extends RpcAcsRequest<DeleteGroupMonitoringAgentProcessResponse> { private String groupId; private String id; public DeleteGroupMonitoringAgentProcessRequest() { super("Cms", "2019-01-01", "DeleteGroupMonitoringAgentProcess", "cms"); setMethod(MethodType.POST); } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId); } } public String getId() { return this.id; } public void setId(String id) { this.id = id; if(id != null){ putQueryParameter("Id", id); } } @Override public Class<DeleteGroupMonitoringAgentProcessResponse> getResponseClass() { return DeleteGroupMonitoringAgentProcessResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteGroupMonitoringAgentProcessResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteGroupMonitoringAgentProcessResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteGroupMonitoringAgentProcessResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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; } @Override public DeleteGroupMonitoringAgentProcessResponse getInstance(UnmarshallerContext context) { return DeleteGroupMonitoringAgentProcessResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteHostAvailabilityRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteHostAvailabilityRequest extends RpcAcsRequest<DeleteHostAvailabilityResponse> { private List<Long> ids; public DeleteHostAvailabilityRequest() { super("Cms", "2019-01-01", "DeleteHostAvailability", "cms"); setMethod(MethodType.POST); } public List<Long> getIds() { return this.ids; } public void setIds(List<Long> ids) { this.ids = ids; if (ids != null) { for (int i = 0; i < ids.size(); i++) { putQueryParameter("Id." + (i + 1) , ids.get(i)); } } } @Override public Class<DeleteHostAvailabilityResponse> getResponseClass() { return DeleteHostAvailabilityResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteHostAvailabilityResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteHostAvailabilityResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteHostAvailabilityResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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; } @Override public DeleteHostAvailabilityResponse getInstance(UnmarshallerContext context) { return DeleteHostAvailabilityResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteHybridMonitorNamespaceRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteHybridMonitorNamespaceRequest extends RpcAcsRequest<DeleteHybridMonitorNamespaceResponse> { private String namespace; public DeleteHybridMonitorNamespaceRequest() { super("Cms", "2019-01-01", "DeleteHybridMonitorNamespace", "cms"); setMethod(MethodType.POST); } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } @Override public Class<DeleteHybridMonitorNamespaceResponse> getResponseClass() { return DeleteHybridMonitorNamespaceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteHybridMonitorNamespaceResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteHybridMonitorNamespaceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteHybridMonitorNamespaceResponse extends AcsResponse { private String code; private String message; private String requestId; private String success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getSuccess() { return this.success; } public void setSuccess(String success) { this.success = success; } @Override public DeleteHybridMonitorNamespaceResponse getInstance(UnmarshallerContext context) { return DeleteHybridMonitorNamespaceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteHybridMonitorSLSGroupRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteHybridMonitorSLSGroupRequest extends RpcAcsRequest<DeleteHybridMonitorSLSGroupResponse> { private String sLSGroupName; public DeleteHybridMonitorSLSGroupRequest() { super("Cms", "2019-01-01", "DeleteHybridMonitorSLSGroup", "cms"); setMethod(MethodType.POST); } public String getSLSGroupName() { return this.sLSGroupName; } public void setSLSGroupName(String sLSGroupName) { this.sLSGroupName = sLSGroupName; if(sLSGroupName != null){ putQueryParameter("SLSGroupName", sLSGroupName); } } @Override public Class<DeleteHybridMonitorSLSGroupResponse> getResponseClass() { return DeleteHybridMonitorSLSGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteHybridMonitorSLSGroupResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteHybridMonitorSLSGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteHybridMonitorSLSGroupResponse extends AcsResponse { private String code; private String message; private String requestId; private String success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getSuccess() { return this.success; } public void setSuccess(String success) { this.success = success; } @Override public DeleteHybridMonitorSLSGroupResponse getInstance(UnmarshallerContext context) { return DeleteHybridMonitorSLSGroupResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteHybridMonitorTaskRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteHybridMonitorTaskRequest extends RpcAcsRequest<DeleteHybridMonitorTaskResponse> { private String targetUserId; private String namespace; private String taskId; public DeleteHybridMonitorTaskRequest() { super("Cms", "2019-01-01", "DeleteHybridMonitorTask", "cms"); setMethod(MethodType.POST); } public String getTargetUserId() { return this.targetUserId; } public void setTargetUserId(String targetUserId) { this.targetUserId = targetUserId; if(targetUserId != null){ putQueryParameter("TargetUserId", targetUserId); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; if(taskId != null){ putQueryParameter("TaskId", taskId); } } @Override public Class<DeleteHybridMonitorTaskResponse> getResponseClass() { return DeleteHybridMonitorTaskResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteHybridMonitorTaskResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteHybridMonitorTaskResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteHybridMonitorTaskResponse extends AcsResponse { private String code; private String message; private String requestId; private String success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getSuccess() { return this.success; } public void setSuccess(String success) { this.success = success; } @Override public DeleteHybridMonitorTaskResponse getInstance(UnmarshallerContext context) { return DeleteHybridMonitorTaskResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteLogMonitorRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteLogMonitorRequest extends RpcAcsRequest<DeleteLogMonitorResponse> { private Long logId; public DeleteLogMonitorRequest() { super("Cms", "2019-01-01", "DeleteLogMonitor", "cms"); setMethod(MethodType.POST); } public Long getLogId() { return this.logId; } public void setLogId(Long logId) { this.logId = logId; if(logId != null){ putQueryParameter("LogId", logId.toString()); } } @Override public Class<DeleteLogMonitorResponse> getResponseClass() { return DeleteLogMonitorResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteLogMonitorResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteLogMonitorResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteLogMonitorResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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; } @Override public DeleteLogMonitorResponse getInstance(UnmarshallerContext context) { return DeleteLogMonitorResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteMetricRuleBlackListRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteMetricRuleBlackListRequest extends RpcAcsRequest<DeleteMetricRuleBlackListResponse> { private String id; public DeleteMetricRuleBlackListRequest() { super("Cms", "2019-01-01", "DeleteMetricRuleBlackList", "cms"); setMethod(MethodType.POST); } public String getId() { return this.id; } public void setId(String id) { this.id = id; if(id != null){ putQueryParameter("Id", id); } } @Override public Class<DeleteMetricRuleBlackListResponse> getResponseClass() { return DeleteMetricRuleBlackListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteMetricRuleBlackListResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteMetricRuleBlackListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteMetricRuleBlackListResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private Integer count; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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 Integer getCount() { return this.count; } public void setCount(Integer count) { this.count = count; } @Override public DeleteMetricRuleBlackListResponse getInstance(UnmarshallerContext context) { return DeleteMetricRuleBlackListResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteMetricRuleResourcesRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteMetricRuleResourcesRequest extends RpcAcsRequest<DeleteMetricRuleResourcesResponse> { private String resources; private String ruleId; public DeleteMetricRuleResourcesRequest() { super("Cms", "2019-01-01", "DeleteMetricRuleResources", "cms"); setMethod(MethodType.POST); } public String getResources() { return this.resources; } public void setResources(String resources) { this.resources = resources; if(resources != null){ putQueryParameter("Resources", resources); } } public String getRuleId() { return this.ruleId; } public void setRuleId(String ruleId) { this.ruleId = ruleId; if(ruleId != null){ putQueryParameter("RuleId", ruleId); } } @Override public Class<DeleteMetricRuleResourcesResponse> getResponseClass() { return DeleteMetricRuleResourcesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteMetricRuleResourcesResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteMetricRuleResourcesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteMetricRuleResourcesResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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; } @Override public DeleteMetricRuleResourcesResponse getInstance(UnmarshallerContext context) { return DeleteMetricRuleResourcesResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteMetricRuleTargetsRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteMetricRuleTargetsRequest extends RpcAcsRequest<DeleteMetricRuleTargetsResponse> { private List<String> targetIdss; private String ruleId; public DeleteMetricRuleTargetsRequest() { super("Cms", "2019-01-01", "DeleteMetricRuleTargets", "cms"); setMethod(MethodType.POST); } public List<String> getTargetIdss() { return this.targetIdss; } public void setTargetIdss(List<String> targetIdss) { this.targetIdss = targetIdss; if (targetIdss != null) { for (int i = 0; i < targetIdss.size(); i++) { putQueryParameter("TargetIds." + (i + 1) , targetIdss.get(i)); } } } public String getRuleId() { return this.ruleId; } public void setRuleId(String ruleId) { this.ruleId = ruleId; if(ruleId != null){ putQueryParameter("RuleId", ruleId); } } @Override public Class<DeleteMetricRuleTargetsResponse> getResponseClass() { return DeleteMetricRuleTargetsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteMetricRuleTargetsResponse.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.cms.model.v20190101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteMetricRuleTargetsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteMetricRuleTargetsResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private FailIds failIds; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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 FailIds getFailIds() { return this.failIds; } public void setFailIds(FailIds failIds) { this.failIds = failIds; } public static class FailIds { private List<String> targetIds; public List<String> getTargetIds() { return this.targetIds; } public void setTargetIds(List<String> targetIds) { this.targetIds = targetIds; } } @Override public DeleteMetricRuleTargetsResponse getInstance(UnmarshallerContext context) { return DeleteMetricRuleTargetsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteMetricRuleTemplateRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteMetricRuleTemplateRequest extends RpcAcsRequest<DeleteMetricRuleTemplateResponse> { private String templateId; public DeleteMetricRuleTemplateRequest() { super("Cms", "2019-01-01", "DeleteMetricRuleTemplate", "cms"); setMethod(MethodType.POST); } public String getTemplateId() { return this.templateId; } public void setTemplateId(String templateId) { this.templateId = templateId; if(templateId != null){ putQueryParameter("TemplateId", templateId); } } @Override public Class<DeleteMetricRuleTemplateResponse> getResponseClass() { return DeleteMetricRuleTemplateResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteMetricRuleTemplateResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteMetricRuleTemplateResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteMetricRuleTemplateResponse extends AcsResponse { private Integer code; private String message; private String requestId; private Boolean success; private Resource resource; 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 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 Resource getResource() { return this.resource; } public void setResource(Resource resource) { this.resource = resource; } public static class Resource { private String templateId; public String getTemplateId() { return this.templateId; } public void setTemplateId(String templateId) { this.templateId = templateId; } } @Override public DeleteMetricRuleTemplateResponse getInstance(UnmarshallerContext context) { return DeleteMetricRuleTemplateResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteMetricRulesRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteMetricRulesRequest extends RpcAcsRequest<DeleteMetricRulesResponse> { private List<String> ids; public DeleteMetricRulesRequest() { super("Cms", "2019-01-01", "DeleteMetricRules", "cms"); setMethod(MethodType.POST); } public List<String> getIds() { return this.ids; } public void setIds(List<String> ids) { this.ids = ids; if (ids != null) { for (int i = 0; i < ids.size(); i++) { putQueryParameter("Id." + (i + 1) , ids.get(i)); } } } @Override public Class<DeleteMetricRulesResponse> getResponseClass() { return DeleteMetricRulesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteMetricRulesResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteMetricRulesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteMetricRulesResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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; } @Override public DeleteMetricRulesResponse getInstance(UnmarshallerContext context) { return DeleteMetricRulesResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteMonitorGroupDynamicRuleRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteMonitorGroupDynamicRuleRequest extends RpcAcsRequest<DeleteMonitorGroupDynamicRuleResponse> { private Long groupId; private String category; public DeleteMonitorGroupDynamicRuleRequest() { super("Cms", "2019-01-01", "DeleteMonitorGroupDynamicRule", "cms"); setMethod(MethodType.POST); } public Long getGroupId() { return this.groupId; } public void setGroupId(Long groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId.toString()); } } public String getCategory() { return this.category; } public void setCategory(String category) { this.category = category; if(category != null){ putQueryParameter("Category", category); } } @Override public Class<DeleteMonitorGroupDynamicRuleResponse> getResponseClass() { return DeleteMonitorGroupDynamicRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteMonitorGroupDynamicRuleResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteMonitorGroupDynamicRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteMonitorGroupDynamicRuleResponse extends AcsResponse { private Integer code; private String message; private String requestId; private Boolean success; 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 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; } @Override public DeleteMonitorGroupDynamicRuleResponse getInstance(UnmarshallerContext context) { return DeleteMonitorGroupDynamicRuleResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteMonitorGroupInstancesRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteMonitorGroupInstancesRequest extends RpcAcsRequest<DeleteMonitorGroupInstancesResponse> { private Long groupId; private String instanceIdList; private String category; public DeleteMonitorGroupInstancesRequest() { super("Cms", "2019-01-01", "DeleteMonitorGroupInstances", "cms"); setMethod(MethodType.POST); } public Long getGroupId() { return this.groupId; } public void setGroupId(Long groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId.toString()); } } public String getInstanceIdList() { return this.instanceIdList; } public void setInstanceIdList(String instanceIdList) { this.instanceIdList = instanceIdList; if(instanceIdList != null){ putQueryParameter("InstanceIdList", instanceIdList); } } public String getCategory() { return this.category; } public void setCategory(String category) { this.category = category; if(category != null){ putQueryParameter("Category", category); } } @Override public Class<DeleteMonitorGroupInstancesResponse> getResponseClass() { return DeleteMonitorGroupInstancesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteMonitorGroupInstancesResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteMonitorGroupInstancesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteMonitorGroupInstancesResponse extends AcsResponse { private Integer code; private String message; private String requestId; private Boolean success; 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 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; } @Override public DeleteMonitorGroupInstancesResponse getInstance(UnmarshallerContext context) { return DeleteMonitorGroupInstancesResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteMonitorGroupNotifyPolicyRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteMonitorGroupNotifyPolicyRequest extends RpcAcsRequest<DeleteMonitorGroupNotifyPolicyResponse> { private String policyType; private String groupId; public DeleteMonitorGroupNotifyPolicyRequest() { super("Cms", "2019-01-01", "DeleteMonitorGroupNotifyPolicy", "cms"); setMethod(MethodType.POST); } public String getPolicyType() { return this.policyType; } public void setPolicyType(String policyType) { this.policyType = policyType; if(policyType != null){ putQueryParameter("PolicyType", policyType); } } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId); } } @Override public Class<DeleteMonitorGroupNotifyPolicyResponse> getResponseClass() { return DeleteMonitorGroupNotifyPolicyResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteMonitorGroupNotifyPolicyResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteMonitorGroupNotifyPolicyResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteMonitorGroupNotifyPolicyResponse extends AcsResponse { private String code; private String message; private String requestId; private Integer result; private String success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getResult() { return this.result; } public void setResult(Integer result) { this.result = result; } public String getSuccess() { return this.success; } public void setSuccess(String success) { this.success = success; } @Override public DeleteMonitorGroupNotifyPolicyResponse getInstance(UnmarshallerContext context) { return DeleteMonitorGroupNotifyPolicyResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteMonitorGroupRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteMonitorGroupRequest extends RpcAcsRequest<DeleteMonitorGroupResponse> { private Long groupId; public DeleteMonitorGroupRequest() { super("Cms", "2019-01-01", "DeleteMonitorGroup", "cms"); setMethod(MethodType.POST); } public Long getGroupId() { return this.groupId; } public void setGroupId(Long groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId.toString()); } } @Override public Class<DeleteMonitorGroupResponse> getResponseClass() { return DeleteMonitorGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteMonitorGroupResponse.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.cms.model.v20190101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteMonitorGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteMonitorGroupResponse extends AcsResponse { private Integer code; private String message; private String requestId; private Boolean success; private Group group; 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 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 Group getGroup() { return this.group; } public void setGroup(Group group) { this.group = group; } public static class Group { private String groupName; private List<ContactGroup> contactGroups; public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public List<ContactGroup> getContactGroups() { return this.contactGroups; } public void setContactGroups(List<ContactGroup> contactGroups) { this.contactGroups = contactGroups; } public static class ContactGroup { private String name; public String getName() { return this.name; } public void setName(String name) { this.name = name; } } } @Override public DeleteMonitorGroupResponse getInstance(UnmarshallerContext context) { return DeleteMonitorGroupResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteMonitoringAgentProcessRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteMonitoringAgentProcessRequest extends RpcAcsRequest<DeleteMonitoringAgentProcessResponse> { private String processName; private String instanceId; private String processId; public DeleteMonitoringAgentProcessRequest() { super("Cms", "2019-01-01", "DeleteMonitoringAgentProcess", "cms"); setMethod(MethodType.POST); } public String getProcessName() { return this.processName; } public void setProcessName(String processName) { this.processName = processName; if(processName != null){ putQueryParameter("ProcessName", processName); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public String getProcessId() { return this.processId; } public void setProcessId(String processId) { this.processId = processId; if(processId != null){ putQueryParameter("ProcessId", processId); } } @Override public Class<DeleteMonitoringAgentProcessResponse> getResponseClass() { return DeleteMonitoringAgentProcessResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteMonitoringAgentProcessResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteMonitoringAgentProcessResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteMonitoringAgentProcessResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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; } @Override public DeleteMonitoringAgentProcessResponse getInstance(UnmarshallerContext context) { return DeleteMonitoringAgentProcessResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteSiteMonitorsRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DeleteSiteMonitorsRequest extends RpcAcsRequest<DeleteSiteMonitorsResponse> { private Boolean isDeleteAlarms; private String taskIds; public DeleteSiteMonitorsRequest() { super("Cms", "2019-01-01", "DeleteSiteMonitors", "cms"); setMethod(MethodType.POST); } public Boolean getIsDeleteAlarms() { return this.isDeleteAlarms; } public void setIsDeleteAlarms(Boolean isDeleteAlarms) { this.isDeleteAlarms = isDeleteAlarms; if(isDeleteAlarms != null){ putQueryParameter("IsDeleteAlarms", isDeleteAlarms.toString()); } } public String getTaskIds() { return this.taskIds; } public void setTaskIds(String taskIds) { this.taskIds = taskIds; if(taskIds != null){ putQueryParameter("TaskIds", taskIds); } } @Override public Class<DeleteSiteMonitorsResponse> getResponseClass() { return DeleteSiteMonitorsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DeleteSiteMonitorsResponse.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.cms.model.v20190101; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DeleteSiteMonitorsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteSiteMonitorsResponse extends AcsResponse { private String code; private String message; private String requestId; private String success; private Data data; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getSuccess() { return this.success; } public void setSuccess(String success) { this.success = success; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Integer count; public Integer getCount() { return this.count; } public void setCount(Integer count) { this.count = count; } } @Override public DeleteSiteMonitorsResponse getInstance(UnmarshallerContext context) { return DeleteSiteMonitorsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DescribeActiveMetricRuleListRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeActiveMetricRuleListRequest extends RpcAcsRequest<DescribeActiveMetricRuleListResponse> { private String product; public DescribeActiveMetricRuleListRequest() { super("Cms", "2019-01-01", "DescribeActiveMetricRuleList", "cms"); setMethod(MethodType.POST); } public String getProduct() { return this.product; } public void setProduct(String product) { this.product = product; if(product != null){ putQueryParameter("Product", product); } } @Override public Class<DescribeActiveMetricRuleListResponse> getResponseClass() { return DescribeActiveMetricRuleListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DescribeActiveMetricRuleListResponse.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.cms.model.v20190101; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.cms.transform.v20190101.DescribeActiveMetricRuleListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeActiveMetricRuleListResponse extends AcsResponse { private String code; private String message; private String requestId; private Boolean success; private List<Alarm> datapoints; private List<Alert> alertList; public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } 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 List<Alarm> getDatapoints() { return this.datapoints; } public void setDatapoints(List<Alarm> datapoints) { this.datapoints = datapoints; } public List<Alert> getAlertList() { return this.alertList; } public void setAlertList(List<Alert> alertList) { this.alertList = alertList; } public static class Alarm { private String silenceTime; private String metricName; private String evaluationCount; private String webhook; private String state; private String contactGroups; private String namespace; private String ruleName; private String ruleId; private String period; private String comparisonOperator; private String endTime; private String startTime; private String threshold; private String statistics; private String enable; public String getSilenceTime() { return this.silenceTime; } public void setSilenceTime(String silenceTime) { this.silenceTime = silenceTime; } public String getMetricName() { return this.metricName; } public void setMetricName(String metricName) { this.metricName = metricName; } public String getEvaluationCount() { return this.evaluationCount; } public void setEvaluationCount(String evaluationCount) { this.evaluationCount = evaluationCount; } public String getWebhook() { return this.webhook; } public void setWebhook(String webhook) { this.webhook = webhook; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getContactGroups() { return this.contactGroups; } public void setContactGroups(String contactGroups) { this.contactGroups = contactGroups; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public String getRuleName() { return this.ruleName; } public void setRuleName(String ruleName) { this.ruleName = ruleName; } public String getRuleId() { return this.ruleId; } public void setRuleId(String ruleId) { this.ruleId = ruleId; } public String getPeriod() { return this.period; } public void setPeriod(String period) { this.period = period; } public String getComparisonOperator() { return this.comparisonOperator; } public void setComparisonOperator(String comparisonOperator) { this.comparisonOperator = comparisonOperator; } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } public String getThreshold() { return this.threshold; } public void setThreshold(String threshold) { this.threshold = threshold; } public String getStatistics() { return this.statistics; } public void setStatistics(String statistics) { this.statistics = statistics; } public String getEnable() { return this.enable; } public void setEnable(String enable) { this.enable = enable; } } public static class Alert { private String silenceTime; private String metricName; private String webhook; private String contactGroups; private String namespace; private String effectiveInterval; private String noEffectiveInterval; private String mailSubject; private String ruleName; private String ruleId; private String period; private String alertState; private String dimensions; private Boolean enableState; private String resources; private Escalations escalations; public String getSilenceTime() { return this.silenceTime; } public void setSilenceTime(String silenceTime) { this.silenceTime = silenceTime; } public String getMetricName() { return this.metricName; } public void setMetricName(String metricName) { this.metricName = metricName; } public String getWebhook() { return this.webhook; } public void setWebhook(String webhook) { this.webhook = webhook; } public String getContactGroups() { return this.contactGroups; } public void setContactGroups(String contactGroups) { this.contactGroups = contactGroups; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public String getEffectiveInterval() { return this.effectiveInterval; } public void setEffectiveInterval(String effectiveInterval) { this.effectiveInterval = effectiveInterval; } public String getNoEffectiveInterval() { return this.noEffectiveInterval; } public void setNoEffectiveInterval(String noEffectiveInterval) { this.noEffectiveInterval = noEffectiveInterval; } public String getMailSubject() { return this.mailSubject; } public void setMailSubject(String mailSubject) { this.mailSubject = mailSubject; } public String getRuleName() { return this.ruleName; } public void setRuleName(String ruleName) { this.ruleName = ruleName; } public String getRuleId() { return this.ruleId; } public void setRuleId(String ruleId) { this.ruleId = ruleId; } public String getPeriod() { return this.period; } public void setPeriod(String period) { this.period = period; } public String getAlertState() { return this.alertState; } public void setAlertState(String alertState) { this.alertState = alertState; } public String getDimensions() { return this.dimensions; } public void setDimensions(String dimensions) { this.dimensions = dimensions; } public Boolean getEnableState() { return this.enableState; } public void setEnableState(Boolean enableState) { this.enableState = enableState; } public String getResources() { return this.resources; } public void setResources(String resources) { this.resources = resources; } public Escalations getEscalations() { return this.escalations; } public void setEscalations(Escalations escalations) { this.escalations = escalations; } public static class Escalations { private Info info; private Warn warn; private Critical critical; public Info getInfo() { return this.info; } public void setInfo(Info info) { this.info = info; } public Warn getWarn() { return this.warn; } public void setWarn(Warn warn) { this.warn = warn; } public Critical getCritical() { return this.critical; } public void setCritical(Critical critical) { this.critical = critical; } public static class Info { private String comparisonOperator; private String times; private String threshold; private String statistics; public String getComparisonOperator() { return this.comparisonOperator; } public void setComparisonOperator(String comparisonOperator) { this.comparisonOperator = comparisonOperator; } public String getTimes() { return this.times; } public void setTimes(String times) { this.times = times; } public String getThreshold() { return this.threshold; } public void setThreshold(String threshold) { this.threshold = threshold; } public String getStatistics() { return this.statistics; } public void setStatistics(String statistics) { this.statistics = statistics; } } public static class Warn { private String comparisonOperator; private String times; private String threshold; private String statistics; public String getComparisonOperator() { return this.comparisonOperator; } public void setComparisonOperator(String comparisonOperator) { this.comparisonOperator = comparisonOperator; } public String getTimes() { return this.times; } public void setTimes(String times) { this.times = times; } public String getThreshold() { return this.threshold; } public void setThreshold(String threshold) { this.threshold = threshold; } public String getStatistics() { return this.statistics; } public void setStatistics(String statistics) { this.statistics = statistics; } } public static class Critical { private String comparisonOperator; private String times; private String threshold; private String statistics; public String getComparisonOperator() { return this.comparisonOperator; } public void setComparisonOperator(String comparisonOperator) { this.comparisonOperator = comparisonOperator; } public String getTimes() { return this.times; } public void setTimes(String times) { this.times = times; } public String getThreshold() { return this.threshold; } public void setThreshold(String threshold) { this.threshold = threshold; } public String getStatistics() { return this.statistics; } public void setStatistics(String statistics) { this.statistics = statistics; } } } } @Override public DescribeActiveMetricRuleListResponse getInstance(UnmarshallerContext context) { return DescribeActiveMetricRuleListResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model
java-sources/com/aliyun/aliyun-java-sdk-cms/7.0.46/com/aliyuncs/cms/model/v20190101/DescribeAlertHistoryListRequest.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.cms.model.v20190101; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; /** * @author auto create * @version */ public class DescribeAlertHistoryListRequest extends RpcAcsRequest<DescribeAlertHistoryListResponse> { private String ruleName; private String startTime; private Integer pageSize; private String state; private String metricName; private String groupId; private String endTime; private Boolean ascending; private String namespace; private Integer page; private String ruleId; private String status; public DescribeAlertHistoryListRequest() { super("Cms", "2019-01-01", "DescribeAlertHistoryList", "cms"); setMethod(MethodType.POST); } public String getRuleName() { return this.ruleName; } public void setRuleName(String ruleName) { this.ruleName = ruleName; if(ruleName != null){ putQueryParameter("RuleName", ruleName); } } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; if(startTime != null){ putQueryParameter("StartTime", startTime); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getState() { return this.state; } public void setState(String state) { this.state = state; if(state != null){ putQueryParameter("State", state); } } public String getMetricName() { return this.metricName; } public void setMetricName(String metricName) { this.metricName = metricName; if(metricName != null){ putQueryParameter("MetricName", metricName); } } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId); } } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; if(endTime != null){ putQueryParameter("EndTime", endTime); } } public Boolean getAscending() { return this.ascending; } public void setAscending(Boolean ascending) { this.ascending = ascending; if(ascending != null){ putQueryParameter("Ascending", ascending.toString()); } } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; if(namespace != null){ putQueryParameter("Namespace", namespace); } } public Integer getPage() { return this.page; } public void setPage(Integer page) { this.page = page; if(page != null){ putQueryParameter("Page", page.toString()); } } public String getRuleId() { return this.ruleId; } public void setRuleId(String ruleId) { this.ruleId = ruleId; if(ruleId != null){ putQueryParameter("RuleId", ruleId); } } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; if(status != null){ putQueryParameter("Status", status); } } @Override public Class<DescribeAlertHistoryListResponse> getResponseClass() { return DescribeAlertHistoryListResponse.class; } }