index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/AddPrometheusGlobalViewByAliClusterIdsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class AddPrometheusGlobalViewByAliClusterIdsRequest extends RpcAcsRequest<AddPrometheusGlobalViewByAliClusterIdsResponse> { private String productCode; private String clusterIds; private String groupName; public AddPrometheusGlobalViewByAliClusterIdsRequest() { super("ARMS", "2019-08-08", "AddPrometheusGlobalViewByAliClusterIds", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getProductCode() { return this.productCode; } public void setProductCode(String productCode) { this.productCode = productCode; if(productCode != null){ putQueryParameter("ProductCode", productCode); } } public String getClusterIds() { return this.clusterIds; } public void setClusterIds(String clusterIds) { this.clusterIds = clusterIds; if(clusterIds != null){ putQueryParameter("ClusterIds", clusterIds); } } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; if(groupName != null){ putQueryParameter("GroupName", groupName); } } @Override public Class<AddPrometheusGlobalViewByAliClusterIdsResponse> getResponseClass() { return AddPrometheusGlobalViewByAliClusterIdsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/AddPrometheusGlobalViewByAliClusterIdsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.AddPrometheusGlobalViewByAliClusterIdsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class AddPrometheusGlobalViewByAliClusterIdsResponse extends AcsResponse { private String requestId; private Integer code; private String message; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Boolean success; private String msg; private String info; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMsg() { return this.msg; } public void setMsg(String msg) { this.msg = msg; } public String getInfo() { return this.info; } public void setInfo(String info) { this.info = info; } } @Override public AddPrometheusGlobalViewByAliClusterIdsResponse getInstance(UnmarshallerContext context) { return AddPrometheusGlobalViewByAliClusterIdsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/AddPrometheusGlobalViewRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class AddPrometheusGlobalViewRequest extends RpcAcsRequest<AddPrometheusGlobalViewResponse> { private String resourceGroupId; private List<Tag> tags; private String groupName; private String clusters; public AddPrometheusGlobalViewRequest() { super("ARMS", "2019-08-08", "AddPrometheusGlobalView", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public List<Tag> getTags() { return this.tags; } public void setTags(List<Tag> tags) { this.tags = tags; if (tags != null) { for (int depth1 = 0; depth1 < tags.size(); depth1++) { putQueryParameter("Tag." + (depth1 + 1) + ".Value" , tags.get(depth1).getValue()); putQueryParameter("Tag." + (depth1 + 1) + ".Key" , tags.get(depth1).getKey()); } } } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; if(groupName != null){ putQueryParameter("GroupName", groupName); } } public String getClusters() { return this.clusters; } public void setClusters(String clusters) { this.clusters = clusters; if(clusters != null){ putQueryParameter("Clusters", clusters); } } public static class Tag { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<AddPrometheusGlobalViewResponse> getResponseClass() { return AddPrometheusGlobalViewResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/AddPrometheusGlobalViewResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.AddPrometheusGlobalViewResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class AddPrometheusGlobalViewResponse extends AcsResponse { private String requestId; private Integer code; private String message; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Boolean success; private String msg; private Info info; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMsg() { return this.msg; } public void setMsg(String msg) { this.msg = msg; } public Info getInfo() { return this.info; } public void setInfo(Info info) { this.info = info; } public static class Info { private String regionId; private String globalViewClusterId; private String failedInstances; public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getGlobalViewClusterId() { return this.globalViewClusterId; } public void setGlobalViewClusterId(String globalViewClusterId) { this.globalViewClusterId = globalViewClusterId; } public String getFailedInstances() { return this.failedInstances; } public void setFailedInstances(String failedInstances) { this.failedInstances = failedInstances; } } } @Override public AddPrometheusGlobalViewResponse getInstance(UnmarshallerContext context) { return AddPrometheusGlobalViewResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/AddPrometheusInstanceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class AddPrometheusInstanceRequest extends RpcAcsRequest<AddPrometheusInstanceResponse> { private String name; private String type; public AddPrometheusInstanceRequest() { super("ARMS", "2019-08-08", "AddPrometheusInstance", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putQueryParameter("Name", name); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } @Override public Class<AddPrometheusInstanceResponse> getResponseClass() { return AddPrometheusInstanceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/AddPrometheusInstanceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.AddPrometheusInstanceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class AddPrometheusInstanceResponse extends AcsResponse { private String data; private String requestId; private Integer code; private String message; private Boolean success; public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public 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; } @Override public AddPrometheusInstanceResponse getInstance(UnmarshallerContext context) { return AddPrometheusInstanceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/AddPrometheusIntegrationRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class AddPrometheusIntegrationRequest extends RpcAcsRequest<AddPrometheusIntegrationResponse> { private String integrationType; private String param; private String clusterId; public AddPrometheusIntegrationRequest() { super("ARMS", "2019-08-08", "AddPrometheusIntegration", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getIntegrationType() { return this.integrationType; } public void setIntegrationType(String integrationType) { this.integrationType = integrationType; if(integrationType != null){ putQueryParameter("IntegrationType", integrationType); } } public String getParam() { return this.param; } public void setParam(String param) { this.param = param; if(param != null){ putQueryParameter("Param", param); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<AddPrometheusIntegrationResponse> getResponseClass() { return AddPrometheusIntegrationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/AddPrometheusIntegrationResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.AddPrometheusIntegrationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class AddPrometheusIntegrationResponse extends AcsResponse { private String requestId; private Integer code; private String message; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long instanceId; private String instanceName; public Long getInstanceId() { return this.instanceId; } public void setInstanceId(Long instanceId) { this.instanceId = instanceId; } public String getInstanceName() { return this.instanceName; } public void setInstanceName(String instanceName) { this.instanceName = instanceName; } } @Override public AddPrometheusIntegrationResponse getInstance(UnmarshallerContext context) { return AddPrometheusIntegrationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/AddRecordingRuleRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class AddRecordingRuleRequest extends RpcAcsRequest<AddRecordingRuleResponse> { private String ruleYaml; private String clusterId; public AddRecordingRuleRequest() { super("ARMS", "2019-08-08", "AddRecordingRule", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getRuleYaml() { return this.ruleYaml; } public void setRuleYaml(String ruleYaml) { this.ruleYaml = ruleYaml; if(ruleYaml != null){ putQueryParameter("RuleYaml", ruleYaml); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<AddRecordingRuleResponse> getResponseClass() { return AddRecordingRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/AddRecordingRuleResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.AddRecordingRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class AddRecordingRuleResponse extends AcsResponse { private String requestId; private String data; private Integer code; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public AddRecordingRuleResponse getInstance(UnmarshallerContext context) { return AddRecordingRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/AddTagToFlinkClusterRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class AddTagToFlinkClusterRequest extends RpcAcsRequest<AddTagToFlinkClusterResponse> { private String flinkWorkSpaceName; private String clusterId; private String targetUserId; private String resourceGroupId; private String flinkWorkSpaceId; public AddTagToFlinkClusterRequest() { super("ARMS", "2019-08-08", "AddTagToFlinkCluster", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getFlinkWorkSpaceName() { return this.flinkWorkSpaceName; } public void setFlinkWorkSpaceName(String flinkWorkSpaceName) { this.flinkWorkSpaceName = flinkWorkSpaceName; if(flinkWorkSpaceName != null){ putQueryParameter("FlinkWorkSpaceName", flinkWorkSpaceName); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public String getTargetUserId() { return this.targetUserId; } public void setTargetUserId(String targetUserId) { this.targetUserId = targetUserId; if(targetUserId != null){ putQueryParameter("TargetUserId", targetUserId); } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public String getFlinkWorkSpaceId() { return this.flinkWorkSpaceId; } public void setFlinkWorkSpaceId(String flinkWorkSpaceId) { this.flinkWorkSpaceId = flinkWorkSpaceId; if(flinkWorkSpaceId != null){ putQueryParameter("FlinkWorkSpaceId", flinkWorkSpaceId); } } @Override public Class<AddTagToFlinkClusterResponse> getResponseClass() { return AddTagToFlinkClusterResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/AddTagToFlinkClusterResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.AddTagToFlinkClusterResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class AddTagToFlinkClusterResponse extends AcsResponse { private String requestId; private Boolean success; private Integer code; private String data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } @Override public AddTagToFlinkClusterResponse getInstance(UnmarshallerContext context) { return AddTagToFlinkClusterResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/AppendInstancesToPrometheusGlobalViewRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class AppendInstancesToPrometheusGlobalViewRequest extends RpcAcsRequest<AppendInstancesToPrometheusGlobalViewResponse> { private String globalViewClusterId; private String groupName; private String clusters; public AppendInstancesToPrometheusGlobalViewRequest() { super("ARMS", "2019-08-08", "AppendInstancesToPrometheusGlobalView", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getGlobalViewClusterId() { return this.globalViewClusterId; } public void setGlobalViewClusterId(String globalViewClusterId) { this.globalViewClusterId = globalViewClusterId; if(globalViewClusterId != null){ putQueryParameter("GlobalViewClusterId", globalViewClusterId); } } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; if(groupName != null){ putQueryParameter("GroupName", groupName); } } public String getClusters() { return this.clusters; } public void setClusters(String clusters) { this.clusters = clusters; if(clusters != null){ putQueryParameter("Clusters", clusters); } } @Override public Class<AppendInstancesToPrometheusGlobalViewResponse> getResponseClass() { return AppendInstancesToPrometheusGlobalViewResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/AppendInstancesToPrometheusGlobalViewResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.AppendInstancesToPrometheusGlobalViewResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class AppendInstancesToPrometheusGlobalViewResponse extends AcsResponse { private String requestId; private Integer code; private String message; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Boolean success; private String msg; private String info; public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMsg() { return this.msg; } public void setMsg(String msg) { this.msg = msg; } public String getInfo() { return this.info; } public void setInfo(String info) { this.info = info; } } @Override public AppendInstancesToPrometheusGlobalViewResponse getInstance(UnmarshallerContext context) { return AppendInstancesToPrometheusGlobalViewResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ApplyScenarioRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class ApplyScenarioRequest extends RpcAcsRequest<ApplyScenarioResponse> { private Boolean snForce; private String sign; private Boolean snStat; private String scenario; private Boolean snDump; private String appId; private String name; private Boolean snTransfer; private Boolean updateOption; private String config; public ApplyScenarioRequest() { super("ARMS", "2019-08-08", "ApplyScenario", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Boolean getSnForce() { return this.snForce; } public void setSnForce(Boolean snForce) { this.snForce = snForce; if(snForce != null){ putQueryParameter("SnForce", snForce.toString()); } } public String getSign() { return this.sign; } public void setSign(String sign) { this.sign = sign; if(sign != null){ putQueryParameter("Sign", sign); } } public Boolean getSnStat() { return this.snStat; } public void setSnStat(Boolean snStat) { this.snStat = snStat; if(snStat != null){ putQueryParameter("SnStat", snStat.toString()); } } public String getScenario() { return this.scenario; } public void setScenario(String scenario) { this.scenario = scenario; if(scenario != null){ putQueryParameter("Scenario", scenario); } } public Boolean getSnDump() { return this.snDump; } public void setSnDump(Boolean snDump) { this.snDump = snDump; if(snDump != null){ putQueryParameter("SnDump", snDump.toString()); } } public String getAppId() { return this.appId; } public void setAppId(String appId) { this.appId = appId; if(appId != null){ putQueryParameter("AppId", appId); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putQueryParameter("Name", name); } } public Boolean getSnTransfer() { return this.snTransfer; } public void setSnTransfer(Boolean snTransfer) { this.snTransfer = snTransfer; if(snTransfer != null){ putQueryParameter("SnTransfer", snTransfer.toString()); } } public Boolean getUpdateOption() { return this.updateOption; } public void setUpdateOption(Boolean updateOption) { this.updateOption = updateOption; if(updateOption != null){ putQueryParameter("UpdateOption", updateOption.toString()); } } public String getConfig() { return this.config; } public void setConfig(String config) { this.config = config; if(config != null){ putQueryParameter("Config", config); } } @Override public Class<ApplyScenarioResponse> getResponseClass() { return ApplyScenarioResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ApplyScenarioResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.ApplyScenarioResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ApplyScenarioResponse extends AcsResponse { private String result; private String requestId; public String getResult() { return this.result; } public void setResult(String result) { this.result = result; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public ApplyScenarioResponse getInstance(UnmarshallerContext context) { return ApplyScenarioResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/BindPrometheusGrafanaInstanceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class BindPrometheusGrafanaInstanceRequest extends RpcAcsRequest<BindPrometheusGrafanaInstanceResponse> { private String grafanaInstanceId; private String clusterId; private String resourceGroupId; public BindPrometheusGrafanaInstanceRequest() { super("ARMS", "2019-08-08", "BindPrometheusGrafanaInstance", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getGrafanaInstanceId() { return this.grafanaInstanceId; } public void setGrafanaInstanceId(String grafanaInstanceId) { this.grafanaInstanceId = grafanaInstanceId; if(grafanaInstanceId != null){ putQueryParameter("GrafanaInstanceId", grafanaInstanceId); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } @Override public Class<BindPrometheusGrafanaInstanceResponse> getResponseClass() { return BindPrometheusGrafanaInstanceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/BindPrometheusGrafanaInstanceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.BindPrometheusGrafanaInstanceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class BindPrometheusGrafanaInstanceResponse extends AcsResponse { private String requestId; private Boolean data; private String message; private Integer code; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getData() { return this.data; } public void setData(Boolean data) { this.data = data; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } @Override public BindPrometheusGrafanaInstanceResponse getInstance(UnmarshallerContext context) { return BindPrometheusGrafanaInstanceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/BlockAlarmNotificationRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class BlockAlarmNotificationRequest extends RpcAcsRequest<BlockAlarmNotificationResponse> { private Long timeout; private Long handlerId; private Long alarmId; public BlockAlarmNotificationRequest() { super("ARMS", "2019-08-08", "BlockAlarmNotification", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getTimeout() { return this.timeout; } public void setTimeout(Long timeout) { this.timeout = timeout; if(timeout != null){ putQueryParameter("Timeout", timeout.toString()); } } public Long getHandlerId() { return this.handlerId; } public void setHandlerId(Long handlerId) { this.handlerId = handlerId; if(handlerId != null){ putQueryParameter("HandlerId", handlerId.toString()); } } public Long getAlarmId() { return this.alarmId; } public void setAlarmId(Long alarmId) { this.alarmId = alarmId; if(alarmId != null){ putQueryParameter("AlarmId", alarmId.toString()); } } @Override public Class<BlockAlarmNotificationResponse> getResponseClass() { return BlockAlarmNotificationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/BlockAlarmNotificationResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.BlockAlarmNotificationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class BlockAlarmNotificationResponse extends AcsResponse { private String requestId; private Boolean result; private Long code; private Boolean success; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } public Long getCode() { return this.code; } public void setCode(Long code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public BlockAlarmNotificationResponse getInstance(UnmarshallerContext context) { return BlockAlarmNotificationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ChangeAlarmSeverityRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class ChangeAlarmSeverityRequest extends RpcAcsRequest<ChangeAlarmSeverityResponse> { private String severity; private Long handlerId; private Long alarmId; public ChangeAlarmSeverityRequest() { super("ARMS", "2019-08-08", "ChangeAlarmSeverity", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getSeverity() { return this.severity; } public void setSeverity(String severity) { this.severity = severity; if(severity != null){ putQueryParameter("Severity", severity); } } public Long getHandlerId() { return this.handlerId; } public void setHandlerId(Long handlerId) { this.handlerId = handlerId; if(handlerId != null){ putQueryParameter("HandlerId", handlerId.toString()); } } public Long getAlarmId() { return this.alarmId; } public void setAlarmId(Long alarmId) { this.alarmId = alarmId; if(alarmId != null){ putQueryParameter("AlarmId", alarmId.toString()); } } @Override public Class<ChangeAlarmSeverityResponse> getResponseClass() { return ChangeAlarmSeverityResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ChangeAlarmSeverityResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.ChangeAlarmSeverityResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ChangeAlarmSeverityResponse extends AcsResponse { private String requestId; private Boolean result; private Long code; private Boolean success; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } public Long getCode() { return this.code; } public void setCode(Long code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public ChangeAlarmSeverityResponse getInstance(UnmarshallerContext context) { return ChangeAlarmSeverityResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ChangeResourceGroupRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class ChangeResourceGroupRequest extends RpcAcsRequest<ChangeResourceGroupResponse> { private String resourceId; private String resourceType; private String newResourceGroupId; public ChangeResourceGroupRequest() { super("ARMS", "2019-08-08", "ChangeResourceGroup", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; if(resourceId != null){ putQueryParameter("ResourceId", resourceId); } } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; if(resourceType != null){ putQueryParameter("ResourceType", resourceType); } } public String getNewResourceGroupId() { return this.newResourceGroupId; } public void setNewResourceGroupId(String newResourceGroupId) { this.newResourceGroupId = newResourceGroupId; if(newResourceGroupId != null){ putQueryParameter("NewResourceGroupId", newResourceGroupId); } } @Override public Class<ChangeResourceGroupResponse> getResponseClass() { return ChangeResourceGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ChangeResourceGroupResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.ChangeResourceGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ChangeResourceGroupResponse extends AcsResponse { private String requestId; private String code; private String message; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String resourceId; private String resourceGroupId; public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; } } @Override public ChangeResourceGroupResponse getInstance(UnmarshallerContext context) { return ChangeResourceGroupResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CheckCommercialStatusRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CheckCommercialStatusRequest extends RpcAcsRequest<CheckCommercialStatusResponse> { private String service; public CheckCommercialStatusRequest() { super("ARMS", "2019-08-08", "CheckCommercialStatus", "arms"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.GET); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getService() { return this.service; } public void setService(String service) { this.service = service; if(service != null){ putQueryParameter("Service", service); } } @Override public Class<CheckCommercialStatusResponse> getResponseClass() { return CheckCommercialStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CheckCommercialStatusResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CheckCommercialStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CheckCommercialStatusResponse extends AcsResponse { private String requestId; private String data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } @Override public CheckCommercialStatusResponse getInstance(UnmarshallerContext context) { return CheckCommercialStatusResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CheckServiceStatusRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CheckServiceStatusRequest extends RpcAcsRequest<CheckServiceStatusResponse> { private String svcCode; public CheckServiceStatusRequest() { super("ARMS", "2019-08-08", "CheckServiceStatus", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getSvcCode() { return this.svcCode; } public void setSvcCode(String svcCode) { this.svcCode = svcCode; if(svcCode != null){ putQueryParameter("SvcCode", svcCode); } } @Override public Class<CheckServiceStatusResponse> getResponseClass() { return CheckServiceStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CheckServiceStatusResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CheckServiceStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CheckServiceStatusResponse extends AcsResponse { private String data; private String requestId; public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public CheckServiceStatusResponse getInstance(UnmarshallerContext context) { return CheckServiceStatusResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ClaimAlarmRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class ClaimAlarmRequest extends RpcAcsRequest<ClaimAlarmResponse> { private Long handlerId; private Long alarmId; public ClaimAlarmRequest() { super("ARMS", "2019-08-08", "ClaimAlarm", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getHandlerId() { return this.handlerId; } public void setHandlerId(Long handlerId) { this.handlerId = handlerId; if(handlerId != null){ putQueryParameter("HandlerId", handlerId.toString()); } } public Long getAlarmId() { return this.alarmId; } public void setAlarmId(Long alarmId) { this.alarmId = alarmId; if(alarmId != null){ putQueryParameter("AlarmId", alarmId.toString()); } } @Override public Class<ClaimAlarmResponse> getResponseClass() { return ClaimAlarmResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ClaimAlarmResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.ClaimAlarmResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ClaimAlarmResponse extends AcsResponse { private String requestId; private Boolean result; private Long code; private Boolean success; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } public Long getCode() { return this.code; } public void setCode(Long code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public ClaimAlarmResponse getInstance(UnmarshallerContext context) { return ClaimAlarmResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CloseAlarmRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CloseAlarmRequest extends RpcAcsRequest<CloseAlarmResponse> { private String solution; private Long handlerId; private Long alarmId; public CloseAlarmRequest() { super("ARMS", "2019-08-08", "CloseAlarm", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getSolution() { return this.solution; } public void setSolution(String solution) { this.solution = solution; if(solution != null){ putQueryParameter("Solution", solution); } } public Long getHandlerId() { return this.handlerId; } public void setHandlerId(Long handlerId) { this.handlerId = handlerId; if(handlerId != null){ putQueryParameter("HandlerId", handlerId.toString()); } } public Long getAlarmId() { return this.alarmId; } public void setAlarmId(Long alarmId) { this.alarmId = alarmId; if(alarmId != null){ putQueryParameter("AlarmId", alarmId.toString()); } } @Override public Class<CloseAlarmResponse> getResponseClass() { return CloseAlarmResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CloseAlarmResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CloseAlarmResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CloseAlarmResponse extends AcsResponse { private String requestId; private Boolean result; private Long code; private Boolean success; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getResult() { return this.result; } public void setResult(Boolean result) { this.result = result; } public Long getCode() { return this.code; } public void setCode(Long code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public CloseAlarmResponse getInstance(UnmarshallerContext context) { return CloseAlarmResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ConfigAppRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class ConfigAppRequest extends RpcAcsRequest<ConfigAppResponse> { private String appIds; private String enable; private String type; public ConfigAppRequest() { super("ARMS", "2019-08-08", "ConfigApp", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAppIds() { return this.appIds; } public void setAppIds(String appIds) { this.appIds = appIds; if(appIds != null){ putQueryParameter("AppIds", appIds); } } public String getEnable() { return this.enable; } public void setEnable(String enable) { this.enable = enable; if(enable != null){ putQueryParameter("Enable", enable); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } @Override public Class<ConfigAppResponse> getResponseClass() { return ConfigAppResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/ConfigAppResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.ConfigAppResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ConfigAppResponse extends AcsResponse { private String data; private String requestId; public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public ConfigAppResponse getInstance(UnmarshallerContext context) { return ConfigAppResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateAlertContactGroupRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateAlertContactGroupRequest extends RpcAcsRequest<CreateAlertContactGroupResponse> { private String contactGroupName; private String contactIds; public CreateAlertContactGroupRequest() { super("ARMS", "2019-08-08", "CreateAlertContactGroup", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getContactGroupName() { return this.contactGroupName; } public void setContactGroupName(String contactGroupName) { this.contactGroupName = contactGroupName; if(contactGroupName != null){ putQueryParameter("ContactGroupName", contactGroupName); } } public String getContactIds() { return this.contactIds; } public void setContactIds(String contactIds) { this.contactIds = contactIds; if(contactIds != null){ putQueryParameter("ContactIds", contactIds); } } @Override public Class<CreateAlertContactGroupResponse> getResponseClass() { return CreateAlertContactGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateAlertContactGroupResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateAlertContactGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateAlertContactGroupResponse extends AcsResponse { private String contactGroupId; private String requestId; public String getContactGroupId() { return this.contactGroupId; } public void setContactGroupId(String contactGroupId) { this.contactGroupId = contactGroupId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public CreateAlertContactGroupResponse getInstance(UnmarshallerContext context) { return CreateAlertContactGroupResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateAlertContactRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateAlertContactRequest extends RpcAcsRequest<CreateAlertContactResponse> { private String phoneNum; private String contactName; private String resourceGroupId; private String dingRobotWebhookUrl; private String email; private Boolean systemNoc; public CreateAlertContactRequest() { super("ARMS", "2019-08-08", "CreateAlertContact", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getPhoneNum() { return this.phoneNum; } public void setPhoneNum(String phoneNum) { this.phoneNum = phoneNum; if(phoneNum != null){ putQueryParameter("PhoneNum", phoneNum); } } public String getContactName() { return this.contactName; } public void setContactName(String contactName) { this.contactName = contactName; if(contactName != null){ putQueryParameter("ContactName", contactName); } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public String getDingRobotWebhookUrl() { return this.dingRobotWebhookUrl; } public void setDingRobotWebhookUrl(String dingRobotWebhookUrl) { this.dingRobotWebhookUrl = dingRobotWebhookUrl; if(dingRobotWebhookUrl != null){ putQueryParameter("DingRobotWebhookUrl", dingRobotWebhookUrl); } } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; if(email != null){ putQueryParameter("Email", email); } } public Boolean getSystemNoc() { return this.systemNoc; } public void setSystemNoc(Boolean systemNoc) { this.systemNoc = systemNoc; if(systemNoc != null){ putQueryParameter("SystemNoc", systemNoc.toString()); } } @Override public Class<CreateAlertContactResponse> getResponseClass() { return CreateAlertContactResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateAlertContactResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateAlertContactResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateAlertContactResponse extends AcsResponse { private String contactId; private String requestId; public String getContactId() { return this.contactId; } public void setContactId(String contactId) { this.contactId = contactId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public CreateAlertContactResponse getInstance(UnmarshallerContext context) { return CreateAlertContactResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateDispatchRuleRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateDispatchRuleRequest extends RpcAcsRequest<CreateDispatchRuleResponse> { private String dispatchRule; public CreateDispatchRuleRequest() { super("ARMS", "2019-08-08", "CreateDispatchRule", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getDispatchRule() { return this.dispatchRule; } public void setDispatchRule(String dispatchRule) { this.dispatchRule = dispatchRule; if(dispatchRule != null){ putQueryParameter("DispatchRule", dispatchRule); } } @Override public Class<CreateDispatchRuleResponse> getResponseClass() { return CreateDispatchRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateDispatchRuleResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateDispatchRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateDispatchRuleResponse extends AcsResponse { private Long dispatchRuleId; private String requestId; public Long getDispatchRuleId() { return this.dispatchRuleId; } public void setDispatchRuleId(Long dispatchRuleId) { this.dispatchRuleId = dispatchRuleId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public CreateDispatchRuleResponse getInstance(UnmarshallerContext context) { return CreateDispatchRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateEnvCustomJobRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateEnvCustomJobRequest extends RpcAcsRequest<CreateEnvCustomJobResponse> { private String aliyunLang; private String configYaml; private String environmentId; private String customJobName; public CreateEnvCustomJobRequest() { super("ARMS", "2019-08-08", "CreateEnvCustomJob", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAliyunLang() { return this.aliyunLang; } public void setAliyunLang(String aliyunLang) { this.aliyunLang = aliyunLang; if(aliyunLang != null){ putQueryParameter("AliyunLang", aliyunLang); } } public String getConfigYaml() { return this.configYaml; } public void setConfigYaml(String configYaml) { this.configYaml = configYaml; if(configYaml != null){ putBodyParameter("ConfigYaml", configYaml); } } public String getEnvironmentId() { return this.environmentId; } public void setEnvironmentId(String environmentId) { this.environmentId = environmentId; if(environmentId != null){ putQueryParameter("EnvironmentId", environmentId); } } public String getCustomJobName() { return this.customJobName; } public void setCustomJobName(String customJobName) { this.customJobName = customJobName; if(customJobName != null){ putQueryParameter("CustomJobName", customJobName); } } @Override public Class<CreateEnvCustomJobResponse> getResponseClass() { return CreateEnvCustomJobResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateEnvCustomJobResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateEnvCustomJobResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateEnvCustomJobResponse extends AcsResponse { private String requestId; private Integer code; private String data; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public CreateEnvCustomJobResponse getInstance(UnmarshallerContext context) { return CreateEnvCustomJobResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateEnvPodMonitorRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateEnvPodMonitorRequest extends RpcAcsRequest<CreateEnvPodMonitorResponse> { private Boolean dryRun; private String aliyunLang; private String configYaml; private String environmentId; public CreateEnvPodMonitorRequest() { super("ARMS", "2019-08-08", "CreateEnvPodMonitor", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Boolean getDryRun() { return this.dryRun; } public void setDryRun(Boolean dryRun) { this.dryRun = dryRun; if(dryRun != null){ putQueryParameter("DryRun", dryRun.toString()); } } public String getAliyunLang() { return this.aliyunLang; } public void setAliyunLang(String aliyunLang) { this.aliyunLang = aliyunLang; if(aliyunLang != null){ putQueryParameter("AliyunLang", aliyunLang); } } public String getConfigYaml() { return this.configYaml; } public void setConfigYaml(String configYaml) { this.configYaml = configYaml; if(configYaml != null){ putBodyParameter("ConfigYaml", configYaml); } } public String getEnvironmentId() { return this.environmentId; } public void setEnvironmentId(String environmentId) { this.environmentId = environmentId; if(environmentId != null){ putQueryParameter("EnvironmentId", environmentId); } } @Override public Class<CreateEnvPodMonitorResponse> getResponseClass() { return CreateEnvPodMonitorResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateEnvPodMonitorResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateEnvPodMonitorResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateEnvPodMonitorResponse extends AcsResponse { private String requestId; private Integer code; private String message; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String matchedMsg; private String namespace; private String podMonitorName; private String matchedTargetCount; public String getMatchedMsg() { return this.matchedMsg; } public void setMatchedMsg(String matchedMsg) { this.matchedMsg = matchedMsg; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public String getPodMonitorName() { return this.podMonitorName; } public void setPodMonitorName(String podMonitorName) { this.podMonitorName = podMonitorName; } public String getMatchedTargetCount() { return this.matchedTargetCount; } public void setMatchedTargetCount(String matchedTargetCount) { this.matchedTargetCount = matchedTargetCount; } } @Override public CreateEnvPodMonitorResponse getInstance(UnmarshallerContext context) { return CreateEnvPodMonitorResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateEnvServiceMonitorRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateEnvServiceMonitorRequest extends RpcAcsRequest<CreateEnvServiceMonitorResponse> { private Boolean dryRun; private String aliyunLang; private String configYaml; private String environmentId; public CreateEnvServiceMonitorRequest() { super("ARMS", "2019-08-08", "CreateEnvServiceMonitor", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Boolean getDryRun() { return this.dryRun; } public void setDryRun(Boolean dryRun) { this.dryRun = dryRun; if(dryRun != null){ putQueryParameter("DryRun", dryRun.toString()); } } public String getAliyunLang() { return this.aliyunLang; } public void setAliyunLang(String aliyunLang) { this.aliyunLang = aliyunLang; if(aliyunLang != null){ putQueryParameter("AliyunLang", aliyunLang); } } public String getConfigYaml() { return this.configYaml; } public void setConfigYaml(String configYaml) { this.configYaml = configYaml; if(configYaml != null){ putBodyParameter("ConfigYaml", configYaml); } } public String getEnvironmentId() { return this.environmentId; } public void setEnvironmentId(String environmentId) { this.environmentId = environmentId; if(environmentId != null){ putQueryParameter("EnvironmentId", environmentId); } } @Override public Class<CreateEnvServiceMonitorResponse> getResponseClass() { return CreateEnvServiceMonitorResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateEnvServiceMonitorResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateEnvServiceMonitorResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateEnvServiceMonitorResponse extends AcsResponse { private String requestId; private Integer code; private String message; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String matchedMsg; private String namespace; private String serviceMonitorName; private Integer matchedTargetCount; public String getMatchedMsg() { return this.matchedMsg; } public void setMatchedMsg(String matchedMsg) { this.matchedMsg = matchedMsg; } public String getNamespace() { return this.namespace; } public void setNamespace(String namespace) { this.namespace = namespace; } public String getServiceMonitorName() { return this.serviceMonitorName; } public void setServiceMonitorName(String serviceMonitorName) { this.serviceMonitorName = serviceMonitorName; } public Integer getMatchedTargetCount() { return this.matchedTargetCount; } public void setMatchedTargetCount(Integer matchedTargetCount) { this.matchedTargetCount = matchedTargetCount; } } @Override public CreateEnvServiceMonitorResponse getInstance(UnmarshallerContext context) { return CreateEnvServiceMonitorResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateEnvironmentRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateEnvironmentRequest extends RpcAcsRequest<CreateEnvironmentResponse> { private String aliyunLang; private String environmentName; private Boolean initEnvironment; private String prometheusInstanceId; private String environmentSubType; private List<Tags> tagss; private String grafanaWorkspaceId; private String resourceGroupId; private String environmentType; private String managedType; private String bindResourceId; private String feePackage; public CreateEnvironmentRequest() { super("ARMS", "2019-08-08", "CreateEnvironment", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAliyunLang() { return this.aliyunLang; } public void setAliyunLang(String aliyunLang) { this.aliyunLang = aliyunLang; if(aliyunLang != null){ putQueryParameter("AliyunLang", aliyunLang); } } public String getEnvironmentName() { return this.environmentName; } public void setEnvironmentName(String environmentName) { this.environmentName = environmentName; if(environmentName != null){ putQueryParameter("EnvironmentName", environmentName); } } public Boolean getInitEnvironment() { return this.initEnvironment; } public void setInitEnvironment(Boolean initEnvironment) { this.initEnvironment = initEnvironment; if(initEnvironment != null){ putQueryParameter("InitEnvironment", initEnvironment.toString()); } } public String getPrometheusInstanceId() { return this.prometheusInstanceId; } public void setPrometheusInstanceId(String prometheusInstanceId) { this.prometheusInstanceId = prometheusInstanceId; if(prometheusInstanceId != null){ putQueryParameter("PrometheusInstanceId", prometheusInstanceId); } } public String getEnvironmentSubType() { return this.environmentSubType; } public void setEnvironmentSubType(String environmentSubType) { this.environmentSubType = environmentSubType; if(environmentSubType != null){ putQueryParameter("EnvironmentSubType", environmentSubType); } } public List<Tags> getTagss() { return this.tagss; } public void setTagss(List<Tags> tagss) { this.tagss = tagss; if (tagss != null) { for (int depth1 = 0; depth1 < tagss.size(); depth1++) { putQueryParameter("Tags." + (depth1 + 1) + ".Value" , tagss.get(depth1).getValue()); putQueryParameter("Tags." + (depth1 + 1) + ".Key" , tagss.get(depth1).getKey()); } } } public String getGrafanaWorkspaceId() { return this.grafanaWorkspaceId; } public void setGrafanaWorkspaceId(String grafanaWorkspaceId) { this.grafanaWorkspaceId = grafanaWorkspaceId; if(grafanaWorkspaceId != null){ putQueryParameter("GrafanaWorkspaceId", grafanaWorkspaceId); } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public String getEnvironmentType() { return this.environmentType; } public void setEnvironmentType(String environmentType) { this.environmentType = environmentType; if(environmentType != null){ putQueryParameter("EnvironmentType", environmentType); } } public String getManagedType() { return this.managedType; } public void setManagedType(String managedType) { this.managedType = managedType; if(managedType != null){ putQueryParameter("ManagedType", managedType); } } public String getBindResourceId() { return this.bindResourceId; } public void setBindResourceId(String bindResourceId) { this.bindResourceId = bindResourceId; if(bindResourceId != null){ putQueryParameter("BindResourceId", bindResourceId); } } public String getFeePackage() { return this.feePackage; } public void setFeePackage(String feePackage) { this.feePackage = feePackage; if(feePackage != null){ putQueryParameter("FeePackage", feePackage); } } public static class Tags { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<CreateEnvironmentResponse> getResponseClass() { return CreateEnvironmentResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateEnvironmentResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateEnvironmentResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateEnvironmentResponse extends AcsResponse { private String requestId; private Integer code; private String data; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public CreateEnvironmentResponse getInstance(UnmarshallerContext context) { return CreateEnvironmentResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateGrafanaWorkspaceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.google.gson.Gson; import com.google.gson.annotations.SerializedName; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateGrafanaWorkspaceRequest extends RpcAcsRequest<CreateGrafanaWorkspaceResponse> { private String accountNumber; private String aliyunLang; private String description; private String grafanaWorkspaceName; @SerializedName("tags") private List<Tags> tags; private String duration; private String resourceGroupId; private String grafanaVersion; private String password; private String autoRenew; private String grafanaWorkspaceEdition; private String customAccountNumber; private String pricingCycle; public CreateGrafanaWorkspaceRequest() { super("ARMS", "2019-08-08", "CreateGrafanaWorkspace", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAccountNumber() { return this.accountNumber; } public void setAccountNumber(String accountNumber) { this.accountNumber = accountNumber; if(accountNumber != null){ putQueryParameter("AccountNumber", accountNumber); } } public String getAliyunLang() { return this.aliyunLang; } public void setAliyunLang(String aliyunLang) { this.aliyunLang = aliyunLang; if(aliyunLang != null){ putQueryParameter("AliyunLang", aliyunLang); } } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putQueryParameter("Description", description); } } public String getGrafanaWorkspaceName() { return this.grafanaWorkspaceName; } public void setGrafanaWorkspaceName(String grafanaWorkspaceName) { this.grafanaWorkspaceName = grafanaWorkspaceName; if(grafanaWorkspaceName != null){ putQueryParameter("GrafanaWorkspaceName", grafanaWorkspaceName); } } public List<Tags> getTags() { return this.tags; } public void setTags(List<Tags> tags) { this.tags = tags; if (tags != null) { putQueryParameter("Tags" , new Gson().toJson(tags)); } } public String getDuration() { return this.duration; } public void setDuration(String duration) { this.duration = duration; if(duration != null){ putQueryParameter("Duration", duration); } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public String getGrafanaVersion() { return this.grafanaVersion; } public void setGrafanaVersion(String grafanaVersion) { this.grafanaVersion = grafanaVersion; if(grafanaVersion != null){ putQueryParameter("GrafanaVersion", grafanaVersion); } } public String getPassword() { return this.password; } public void setPassword(String password) { this.password = password; if(password != null){ putQueryParameter("Password", password); } } public String getAutoRenew() { return this.autoRenew; } public void setAutoRenew(String autoRenew) { this.autoRenew = autoRenew; if(autoRenew != null){ putQueryParameter("AutoRenew", autoRenew); } } public String getGrafanaWorkspaceEdition() { return this.grafanaWorkspaceEdition; } public void setGrafanaWorkspaceEdition(String grafanaWorkspaceEdition) { this.grafanaWorkspaceEdition = grafanaWorkspaceEdition; if(grafanaWorkspaceEdition != null){ putQueryParameter("GrafanaWorkspaceEdition", grafanaWorkspaceEdition); } } public String getCustomAccountNumber() { return this.customAccountNumber; } public void setCustomAccountNumber(String customAccountNumber) { this.customAccountNumber = customAccountNumber; if(customAccountNumber != null){ putQueryParameter("CustomAccountNumber", customAccountNumber); } } public String getPricingCycle() { return this.pricingCycle; } public void setPricingCycle(String pricingCycle) { this.pricingCycle = pricingCycle; if(pricingCycle != null){ putQueryParameter("PricingCycle", pricingCycle); } } public static class Tags { @SerializedName("Value") private String value; @SerializedName("Key") private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<CreateGrafanaWorkspaceResponse> getResponseClass() { return CreateGrafanaWorkspaceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateGrafanaWorkspaceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateGrafanaWorkspaceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateGrafanaWorkspaceResponse extends AcsResponse { private String requestId; private String message; private Integer code; private Boolean success; private String traceId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getTraceId() { return this.traceId; } public void setTraceId(String traceId) { this.traceId = traceId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String status; private String description; private String grafanaWorkspaceEdition; private Float endTime; private String grafanaWorkspaceId; private String grafanaWorkspaceIp; private String snatIp; private String grafanaWorkspaceDomain; private String grafanaWorkspaceDomainStatus; private Boolean commercial; private String grafanaWorkspaceName; private String grafanaVersion; private Float gmtCreate; private String userId; private String maxAccount; private String regionId; private String protocol; private Boolean shareSynced; private String ntmId; private String personalDomain; private String personalDomainPrefix; private String resourceGroupId; private String deployType; private String privateIp; private String privateDomain; private List<TagsItem> tags; private List<String> upgradeVersion; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getGrafanaWorkspaceEdition() { return this.grafanaWorkspaceEdition; } public void setGrafanaWorkspaceEdition(String grafanaWorkspaceEdition) { this.grafanaWorkspaceEdition = grafanaWorkspaceEdition; } public Float getEndTime() { return this.endTime; } public void setEndTime(Float endTime) { this.endTime = endTime; } public String getGrafanaWorkspaceId() { return this.grafanaWorkspaceId; } public void setGrafanaWorkspaceId(String grafanaWorkspaceId) { this.grafanaWorkspaceId = grafanaWorkspaceId; } public String getGrafanaWorkspaceIp() { return this.grafanaWorkspaceIp; } public void setGrafanaWorkspaceIp(String grafanaWorkspaceIp) { this.grafanaWorkspaceIp = grafanaWorkspaceIp; } public String getSnatIp() { return this.snatIp; } public void setSnatIp(String snatIp) { this.snatIp = snatIp; } public String getGrafanaWorkspaceDomain() { return this.grafanaWorkspaceDomain; } public void setGrafanaWorkspaceDomain(String grafanaWorkspaceDomain) { this.grafanaWorkspaceDomain = grafanaWorkspaceDomain; } public String getGrafanaWorkspaceDomainStatus() { return this.grafanaWorkspaceDomainStatus; } public void setGrafanaWorkspaceDomainStatus(String grafanaWorkspaceDomainStatus) { this.grafanaWorkspaceDomainStatus = grafanaWorkspaceDomainStatus; } public Boolean getCommercial() { return this.commercial; } public void setCommercial(Boolean commercial) { this.commercial = commercial; } public String getGrafanaWorkspaceName() { return this.grafanaWorkspaceName; } public void setGrafanaWorkspaceName(String grafanaWorkspaceName) { this.grafanaWorkspaceName = grafanaWorkspaceName; } public String getGrafanaVersion() { return this.grafanaVersion; } public void setGrafanaVersion(String grafanaVersion) { this.grafanaVersion = grafanaVersion; } public Float getGmtCreate() { return this.gmtCreate; } public void setGmtCreate(Float gmtCreate) { this.gmtCreate = gmtCreate; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } public String getMaxAccount() { return this.maxAccount; } public void setMaxAccount(String maxAccount) { this.maxAccount = maxAccount; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getBizProtocol() { return this.protocol; } public void setBizProtocol(String protocol) { this.protocol = protocol; } public Boolean getShareSynced() { return this.shareSynced; } public void setShareSynced(Boolean shareSynced) { this.shareSynced = shareSynced; } public String getNtmId() { return this.ntmId; } public void setNtmId(String ntmId) { this.ntmId = ntmId; } public String getPersonalDomain() { return this.personalDomain; } public void setPersonalDomain(String personalDomain) { this.personalDomain = personalDomain; } public String getPersonalDomainPrefix() { return this.personalDomainPrefix; } public void setPersonalDomainPrefix(String personalDomainPrefix) { this.personalDomainPrefix = personalDomainPrefix; } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; } public String getDeployType() { return this.deployType; } public void setDeployType(String deployType) { this.deployType = deployType; } public String getPrivateIp() { return this.privateIp; } public void setPrivateIp(String privateIp) { this.privateIp = privateIp; } public String getPrivateDomain() { return this.privateDomain; } public void setPrivateDomain(String privateDomain) { this.privateDomain = privateDomain; } public List<TagsItem> getTags() { return this.tags; } public void setTags(List<TagsItem> tags) { this.tags = tags; } public List<String> getUpgradeVersion() { return this.upgradeVersion; } public void setUpgradeVersion(List<String> upgradeVersion) { this.upgradeVersion = upgradeVersion; } public static class TagsItem { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } } @Override public CreateGrafanaWorkspaceResponse getInstance(UnmarshallerContext context) { return CreateGrafanaWorkspaceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateIntegrationRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateIntegrationRequest extends RpcAcsRequest<CreateIntegrationResponse> { private String description; private Boolean autoRecover; private Long recoverTime; private String integrationName; private String integrationProductType; public CreateIntegrationRequest() { super("ARMS", "2019-08-08", "CreateIntegration", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putBodyParameter("Description", description); } } public Boolean getAutoRecover() { return this.autoRecover; } public void setAutoRecover(Boolean autoRecover) { this.autoRecover = autoRecover; if(autoRecover != null){ putBodyParameter("AutoRecover", autoRecover.toString()); } } public Long getRecoverTime() { return this.recoverTime; } public void setRecoverTime(Long recoverTime) { this.recoverTime = recoverTime; if(recoverTime != null){ putBodyParameter("RecoverTime", recoverTime.toString()); } } public String getIntegrationName() { return this.integrationName; } public void setIntegrationName(String integrationName) { this.integrationName = integrationName; if(integrationName != null){ putBodyParameter("IntegrationName", integrationName); } } public String getIntegrationProductType() { return this.integrationProductType; } public void setIntegrationProductType(String integrationProductType) { this.integrationProductType = integrationProductType; if(integrationProductType != null){ putBodyParameter("IntegrationProductType", integrationProductType); } } @Override public Class<CreateIntegrationResponse> getResponseClass() { return CreateIntegrationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateIntegrationResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateIntegrationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateIntegrationResponse extends AcsResponse { private String requestId; private Integration integration; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integration getIntegration() { return this.integration; } public void setIntegration(Integration integration) { this.integration = integration; } public static class Integration { private Long integrationId; private String integrationName; private String integrationProductType; private String description; private Boolean autoRecover; private Long recoverTime; public Long getIntegrationId() { return this.integrationId; } public void setIntegrationId(Long integrationId) { this.integrationId = integrationId; } public String getIntegrationName() { return this.integrationName; } public void setIntegrationName(String integrationName) { this.integrationName = integrationName; } public String getIntegrationProductType() { return this.integrationProductType; } public void setIntegrationProductType(String integrationProductType) { this.integrationProductType = integrationProductType; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public Boolean getAutoRecover() { return this.autoRecover; } public void setAutoRecover(Boolean autoRecover) { this.autoRecover = autoRecover; } public Long getRecoverTime() { return this.recoverTime; } public void setRecoverTime(Long recoverTime) { this.recoverTime = recoverTime; } } @Override public CreateIntegrationResponse getInstance(UnmarshallerContext context) { return CreateIntegrationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateOrUpdateAlertRuleRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateOrUpdateAlertRuleRequest extends RpcAcsRequest<CreateOrUpdateAlertRuleResponse> { private Long alertGroup; private String alertName; private String alertStatus; private String annotations; private Long checkCycle; private String dataConfig; private Long duration; private String autoAddTargetConfig; private String metricsKey; private String alertPiplines; private List<MarkTags> markTagss; private String notice; private String alertRuleContent; private String promQL; private String product; private String level; private Boolean autoAddNewApplication; private String filters; private String clusterId; private String message; private String notifyStrategy; private String labels; private List<Tags> tagss; private String notifyMode; private String alertType; private String alertCheckType; private String metricsType; private Long alertId; private String pids; public CreateOrUpdateAlertRuleRequest() { super("ARMS", "2019-08-08", "CreateOrUpdateAlertRule", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getAlertGroup() { return this.alertGroup; } public void setAlertGroup(Long alertGroup) { this.alertGroup = alertGroup; if(alertGroup != null){ putBodyParameter("AlertGroup", alertGroup.toString()); } } public String getAlertName() { return this.alertName; } public void setAlertName(String alertName) { this.alertName = alertName; if(alertName != null){ putBodyParameter("AlertName", alertName); } } public String getAlertStatus() { return this.alertStatus; } public void setAlertStatus(String alertStatus) { this.alertStatus = alertStatus; if(alertStatus != null){ putBodyParameter("AlertStatus", alertStatus); } } public String getAnnotations() { return this.annotations; } public void setAnnotations(String annotations) { this.annotations = annotations; if(annotations != null){ putBodyParameter("Annotations", annotations); } } public Long getCheckCycle() { return this.checkCycle; } public void setCheckCycle(Long checkCycle) { this.checkCycle = checkCycle; if(checkCycle != null){ putBodyParameter("CheckCycle", checkCycle.toString()); } } public String getDataConfig() { return this.dataConfig; } public void setDataConfig(String dataConfig) { this.dataConfig = dataConfig; if(dataConfig != null){ putBodyParameter("DataConfig", dataConfig); } } public Long getDuration() { return this.duration; } public void setDuration(Long duration) { this.duration = duration; if(duration != null){ putBodyParameter("Duration", duration.toString()); } } public String getAutoAddTargetConfig() { return this.autoAddTargetConfig; } public void setAutoAddTargetConfig(String autoAddTargetConfig) { this.autoAddTargetConfig = autoAddTargetConfig; if(autoAddTargetConfig != null){ putBodyParameter("AutoAddTargetConfig", autoAddTargetConfig); } } public String getMetricsKey() { return this.metricsKey; } public void setMetricsKey(String metricsKey) { this.metricsKey = metricsKey; if(metricsKey != null){ putBodyParameter("MetricsKey", metricsKey); } } public String getAlertPiplines() { return this.alertPiplines; } public void setAlertPiplines(String alertPiplines) { this.alertPiplines = alertPiplines; if(alertPiplines != null){ putBodyParameter("AlertPiplines", alertPiplines); } } public List<MarkTags> getMarkTagss() { return this.markTagss; } public void setMarkTagss(List<MarkTags> markTagss) { this.markTagss = markTagss; if (markTagss != null) { for (int depth1 = 0; depth1 < markTagss.size(); depth1++) { putBodyParameter("MarkTags." + (depth1 + 1) + ".Value" , markTagss.get(depth1).getValue()); putBodyParameter("MarkTags." + (depth1 + 1) + ".Key" , markTagss.get(depth1).getKey()); } } } public String getNotice() { return this.notice; } public void setNotice(String notice) { this.notice = notice; if(notice != null){ putBodyParameter("Notice", notice); } } public String getAlertRuleContent() { return this.alertRuleContent; } public void setAlertRuleContent(String alertRuleContent) { this.alertRuleContent = alertRuleContent; if(alertRuleContent != null){ putBodyParameter("AlertRuleContent", alertRuleContent); } } public String getPromQL() { return this.promQL; } public void setPromQL(String promQL) { this.promQL = promQL; if(promQL != null){ putBodyParameter("PromQL", promQL); } } public String getProduct() { return this.product; } public void setProduct(String product) { this.product = product; if(product != null){ putBodyParameter("Product", product); } } public String getLevel() { return this.level; } public void setLevel(String level) { this.level = level; if(level != null){ putBodyParameter("Level", level); } } public Boolean getAutoAddNewApplication() { return this.autoAddNewApplication; } public void setAutoAddNewApplication(Boolean autoAddNewApplication) { this.autoAddNewApplication = autoAddNewApplication; if(autoAddNewApplication != null){ putBodyParameter("AutoAddNewApplication", autoAddNewApplication.toString()); } } public String getFilters() { return this.filters; } public void setFilters(String filters) { this.filters = filters; if(filters != null){ putBodyParameter("Filters", filters); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putBodyParameter("ClusterId", clusterId); } } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; if(message != null){ putBodyParameter("Message", message); } } public String getNotifyStrategy() { return this.notifyStrategy; } public void setNotifyStrategy(String notifyStrategy) { this.notifyStrategy = notifyStrategy; if(notifyStrategy != null){ putBodyParameter("NotifyStrategy", notifyStrategy); } } public String getLabels() { return this.labels; } public void setLabels(String labels) { this.labels = labels; if(labels != null){ putBodyParameter("Labels", labels); } } public List<Tags> getTagss() { return this.tagss; } public void setTagss(List<Tags> tagss) { this.tagss = tagss; if (tagss != null) { for (int depth1 = 0; depth1 < tagss.size(); depth1++) { putBodyParameter("Tags." + (depth1 + 1) + ".Value" , tagss.get(depth1).getValue()); putBodyParameter("Tags." + (depth1 + 1) + ".Key" , tagss.get(depth1).getKey()); } } } public String getNotifyMode() { return this.notifyMode; } public void setNotifyMode(String notifyMode) { this.notifyMode = notifyMode; if(notifyMode != null){ putBodyParameter("NotifyMode", notifyMode); } } public String getAlertType() { return this.alertType; } public void setAlertType(String alertType) { this.alertType = alertType; if(alertType != null){ putBodyParameter("AlertType", alertType); } } public String getAlertCheckType() { return this.alertCheckType; } public void setAlertCheckType(String alertCheckType) { this.alertCheckType = alertCheckType; if(alertCheckType != null){ putBodyParameter("AlertCheckType", alertCheckType); } } public String getMetricsType() { return this.metricsType; } public void setMetricsType(String metricsType) { this.metricsType = metricsType; if(metricsType != null){ putBodyParameter("MetricsType", metricsType); } } public Long getAlertId() { return this.alertId; } public void setAlertId(Long alertId) { this.alertId = alertId; if(alertId != null){ putBodyParameter("AlertId", alertId.toString()); } } public String getPids() { return this.pids; } public void setPids(String pids) { this.pids = pids; if(pids != null){ putBodyParameter("Pids", pids); } } public static class MarkTags { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } public static class Tags { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<CreateOrUpdateAlertRuleResponse> getResponseClass() { return CreateOrUpdateAlertRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateOrUpdateAlertRuleResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateOrUpdateAlertRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateOrUpdateAlertRuleResponse extends AcsResponse { private String requestId; private AlertRule alertRule; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public AlertRule getAlertRule() { return this.alertRule; } public void setAlertRule(AlertRule alertRule) { this.alertRule = alertRule; } public static class AlertRule { private Long alertId; private String alertName; private String userId; private String regionId; private String alertType; private String alertStatus; private Long createdTime; private Long updatedTime; private String extend; private String notifyStrategy; private Boolean autoAddNewApplication; private String metricsType; private String alertCheckType; private String clusterId; private Long alertGroup; private String promQL; private String duration; private String level; private String message; private String notifyMode; private List<LabelsItem> labels; private List<AnnotationsItem> annotations; private List<Tag> tags; private List<String> pids; private AlertRuleContent alertRuleContent; private Filters filters; public Long getAlertId() { return this.alertId; } public void setAlertId(Long alertId) { this.alertId = alertId; } public String getAlertName() { return this.alertName; } public void setAlertName(String alertName) { this.alertName = alertName; } public String getUserId() { return this.userId; } public void setUserId(String userId) { this.userId = userId; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getAlertType() { return this.alertType; } public void setAlertType(String alertType) { this.alertType = alertType; } public String getAlertStatus() { return this.alertStatus; } public void setAlertStatus(String alertStatus) { this.alertStatus = alertStatus; } public Long getCreatedTime() { return this.createdTime; } public void setCreatedTime(Long createdTime) { this.createdTime = createdTime; } public Long getUpdatedTime() { return this.updatedTime; } public void setUpdatedTime(Long updatedTime) { this.updatedTime = updatedTime; } public String getExtend() { return this.extend; } public void setExtend(String extend) { this.extend = extend; } public String getNotifyStrategy() { return this.notifyStrategy; } public void setNotifyStrategy(String notifyStrategy) { this.notifyStrategy = notifyStrategy; } public Boolean getAutoAddNewApplication() { return this.autoAddNewApplication; } public void setAutoAddNewApplication(Boolean autoAddNewApplication) { this.autoAddNewApplication = autoAddNewApplication; } public String getMetricsType() { return this.metricsType; } public void setMetricsType(String metricsType) { this.metricsType = metricsType; } public String getAlertCheckType() { return this.alertCheckType; } public void setAlertCheckType(String alertCheckType) { this.alertCheckType = alertCheckType; } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; } public Long getAlertGroup() { return this.alertGroup; } public void setAlertGroup(Long alertGroup) { this.alertGroup = alertGroup; } public String getPromQL() { return this.promQL; } public void setPromQL(String promQL) { this.promQL = promQL; } public String getDuration() { return this.duration; } public void setDuration(String duration) { this.duration = duration; } public String getLevel() { return this.level; } public void setLevel(String level) { this.level = level; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getNotifyMode() { return this.notifyMode; } public void setNotifyMode(String notifyMode) { this.notifyMode = notifyMode; } public List<LabelsItem> getLabels() { return this.labels; } public void setLabels(List<LabelsItem> labels) { this.labels = labels; } public List<AnnotationsItem> getAnnotations() { return this.annotations; } public void setAnnotations(List<AnnotationsItem> annotations) { this.annotations = annotations; } public List<Tag> getTags() { return this.tags; } public void setTags(List<Tag> tags) { this.tags = tags; } public List<String> getPids() { return this.pids; } public void setPids(List<String> pids) { this.pids = pids; } public AlertRuleContent getAlertRuleContent() { return this.alertRuleContent; } public void setAlertRuleContent(AlertRuleContent alertRuleContent) { this.alertRuleContent = alertRuleContent; } public Filters getFilters() { return this.filters; } public void setFilters(Filters filters) { this.filters = filters; } public static class LabelsItem { 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 AnnotationsItem { 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 Tag { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } public static class AlertRuleContent { private String condition; private List<AlertRuleItemsItem> alertRuleItems; public String getCondition() { return this.condition; } public void setCondition(String condition) { this.condition = condition; } public List<AlertRuleItemsItem> getAlertRuleItems() { return this.alertRuleItems; } public void setAlertRuleItems(List<AlertRuleItemsItem> alertRuleItems) { this.alertRuleItems = alertRuleItems; } public static class AlertRuleItemsItem { private Float n; private String metricKey; private String aggregate; private String operator; private String value; public Float getN() { return this.n; } public void setN(Float n) { this.n = n; } public String getMetricKey() { return this.metricKey; } public void setMetricKey(String metricKey) { this.metricKey = metricKey; } public String getAggregate() { return this.aggregate; } public void setAggregate(String aggregate) { this.aggregate = aggregate; } public String getOperator() { return this.operator; } public void setOperator(String operator) { this.operator = operator; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } } public static class Filters { private List<DimFiltersItem> dimFilters; private List<CustomSLSFiltersItem> customSLSFilters; private List<String> customSLSGroupByDimensions; private List<String> customSLSWheres; public List<DimFiltersItem> getDimFilters() { return this.dimFilters; } public void setDimFilters(List<DimFiltersItem> dimFilters) { this.dimFilters = dimFilters; } public List<CustomSLSFiltersItem> getCustomSLSFilters() { return this.customSLSFilters; } public void setCustomSLSFilters(List<CustomSLSFiltersItem> customSLSFilters) { this.customSLSFilters = customSLSFilters; } public List<String> getCustomSLSGroupByDimensions() { return this.customSLSGroupByDimensions; } public void setCustomSLSGroupByDimensions(List<String> customSLSGroupByDimensions) { this.customSLSGroupByDimensions = customSLSGroupByDimensions; } public List<String> getCustomSLSWheres() { return this.customSLSWheres; } public void setCustomSLSWheres(List<String> customSLSWheres) { this.customSLSWheres = customSLSWheres; } public static class DimFiltersItem { private String filterKey; private String filterOpt; private List<String> filterValues; public String getFilterKey() { return this.filterKey; } public void setFilterKey(String filterKey) { this.filterKey = filterKey; } public String getFilterOpt() { return this.filterOpt; } public void setFilterOpt(String filterOpt) { this.filterOpt = filterOpt; } public List<String> getFilterValues() { return this.filterValues; } public void setFilterValues(List<String> filterValues) { this.filterValues = filterValues; } } public static class CustomSLSFiltersItem { private String key; private String opt; private String value; private String t; private Boolean show; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getOpt() { return this.opt; } public void setOpt(String opt) { this.opt = opt; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getT() { return this.t; } public void setT(String t) { this.t = t; } public Boolean getShow() { return this.show; } public void setShow(Boolean show) { this.show = show; } } } } @Override public CreateOrUpdateAlertRuleResponse getInstance(UnmarshallerContext context) { return CreateOrUpdateAlertRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateOrUpdateContactGroupRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateOrUpdateContactGroupRequest extends RpcAcsRequest<CreateOrUpdateContactGroupResponse> { private Long contactGroupId; private String contactGroupName; private String contactIds; public CreateOrUpdateContactGroupRequest() { super("ARMS", "2019-08-08", "CreateOrUpdateContactGroup", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getContactGroupId() { return this.contactGroupId; } public void setContactGroupId(Long contactGroupId) { this.contactGroupId = contactGroupId; if(contactGroupId != null){ putBodyParameter("ContactGroupId", contactGroupId.toString()); } } public String getContactGroupName() { return this.contactGroupName; } public void setContactGroupName(String contactGroupName) { this.contactGroupName = contactGroupName; if(contactGroupName != null){ putBodyParameter("ContactGroupName", contactGroupName); } } public String getContactIds() { return this.contactIds; } public void setContactIds(String contactIds) { this.contactIds = contactIds; if(contactIds != null){ putBodyParameter("ContactIds", contactIds); } } @Override public Class<CreateOrUpdateContactGroupResponse> getResponseClass() { return CreateOrUpdateContactGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateOrUpdateContactGroupResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateOrUpdateContactGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateOrUpdateContactGroupResponse extends AcsResponse { private String requestId; private AlertContactGroup alertContactGroup; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public AlertContactGroup getAlertContactGroup() { return this.alertContactGroup; } public void setAlertContactGroup(AlertContactGroup alertContactGroup) { this.alertContactGroup = alertContactGroup; } public static class AlertContactGroup { private Float contactGroupId; private String contactGroupName; private String contactIds; public Float getContactGroupId() { return this.contactGroupId; } public void setContactGroupId(Float contactGroupId) { this.contactGroupId = contactGroupId; } public String getContactGroupName() { return this.contactGroupName; } public void setContactGroupName(String contactGroupName) { this.contactGroupName = contactGroupName; } public String getContactIds() { return this.contactIds; } public void setContactIds(String contactIds) { this.contactIds = contactIds; } } @Override public CreateOrUpdateContactGroupResponse getInstance(UnmarshallerContext context) { return CreateOrUpdateContactGroupResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateOrUpdateContactRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateOrUpdateContactRequest extends RpcAcsRequest<CreateOrUpdateContactResponse> { private Long contactId; private Long reissueSendNotice; private String corpUserId; private String contactName; private String resourceGroupId; private String dingRobotUrl; private String phone; private String email; private Boolean isEmailVerify; public CreateOrUpdateContactRequest() { super("ARMS", "2019-08-08", "CreateOrUpdateContact", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getContactId() { return this.contactId; } public void setContactId(Long contactId) { this.contactId = contactId; if(contactId != null){ putBodyParameter("ContactId", contactId.toString()); } } public Long getReissueSendNotice() { return this.reissueSendNotice; } public void setReissueSendNotice(Long reissueSendNotice) { this.reissueSendNotice = reissueSendNotice; if(reissueSendNotice != null){ putBodyParameter("ReissueSendNotice", reissueSendNotice.toString()); } } public String getCorpUserId() { return this.corpUserId; } public void setCorpUserId(String corpUserId) { this.corpUserId = corpUserId; if(corpUserId != null){ putBodyParameter("CorpUserId", corpUserId); } } public String getContactName() { return this.contactName; } public void setContactName(String contactName) { this.contactName = contactName; if(contactName != null){ putBodyParameter("ContactName", contactName); } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public String getDingRobotUrl() { return this.dingRobotUrl; } public void setDingRobotUrl(String dingRobotUrl) { this.dingRobotUrl = dingRobotUrl; if(dingRobotUrl != null){ putQueryParameter("DingRobotUrl", dingRobotUrl); } } public String getPhone() { return this.phone; } public void setPhone(String phone) { this.phone = phone; if(phone != null){ putBodyParameter("Phone", phone); } } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; if(email != null){ putBodyParameter("Email", email); } } public Boolean getIsEmailVerify() { return this.isEmailVerify; } public void setIsEmailVerify(Boolean isEmailVerify) { this.isEmailVerify = isEmailVerify; if(isEmailVerify != null){ putBodyParameter("IsEmailVerify", isEmailVerify.toString()); } } @Override public Class<CreateOrUpdateContactResponse> getResponseClass() { return CreateOrUpdateContactResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateOrUpdateContactResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateOrUpdateContactResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateOrUpdateContactResponse extends AcsResponse { private String requestId; private AlertContact alertContact; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public AlertContact getAlertContact() { return this.alertContact; } public void setAlertContact(AlertContact alertContact) { this.alertContact = alertContact; } public static class AlertContact { private Float contactId; private String contactName; private String phone; private String email; private Boolean isVerify; private Long reissueSendNotice; private Boolean isEmailVerify; private String dingRobotUrl; public Float getContactId() { return this.contactId; } public void setContactId(Float contactId) { this.contactId = contactId; } public String getContactName() { return this.contactName; } public void setContactName(String contactName) { this.contactName = contactName; } public String getPhone() { return this.phone; } public void setPhone(String phone) { this.phone = phone; } public String getEmail() { return this.email; } public void setEmail(String email) { this.email = email; } public Boolean getIsVerify() { return this.isVerify; } public void setIsVerify(Boolean isVerify) { this.isVerify = isVerify; } public Long getReissueSendNotice() { return this.reissueSendNotice; } public void setReissueSendNotice(Long reissueSendNotice) { this.reissueSendNotice = reissueSendNotice; } public Boolean getIsEmailVerify() { return this.isEmailVerify; } public void setIsEmailVerify(Boolean isEmailVerify) { this.isEmailVerify = isEmailVerify; } public String getDingRobotUrl() { return this.dingRobotUrl; } public void setDingRobotUrl(String dingRobotUrl) { this.dingRobotUrl = dingRobotUrl; } } @Override public CreateOrUpdateContactResponse getInstance(UnmarshallerContext context) { return CreateOrUpdateContactResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateOrUpdateEventBridgeIntegrationRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateOrUpdateEventBridgeIntegrationRequest extends RpcAcsRequest<CreateOrUpdateEventBridgeIntegrationResponse> { private String accessSecret; private String eventBusRegionId; private String description; private String source; private String eventBusName; private String endpoint; private String accessKey; private String name; private Long id; public CreateOrUpdateEventBridgeIntegrationRequest() { super("ARMS", "2019-08-08", "CreateOrUpdateEventBridgeIntegration", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAccessSecret() { return this.accessSecret; } public void setAccessSecret(String accessSecret) { this.accessSecret = accessSecret; if(accessSecret != null){ putBodyParameter("AccessSecret", accessSecret); } } public String getEventBusRegionId() { return this.eventBusRegionId; } public void setEventBusRegionId(String eventBusRegionId) { this.eventBusRegionId = eventBusRegionId; if(eventBusRegionId != null){ putBodyParameter("EventBusRegionId", eventBusRegionId); } } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putBodyParameter("Description", description); } } public String getSource() { return this.source; } public void setSource(String source) { this.source = source; if(source != null){ putBodyParameter("Source", source); } } public String getEventBusName() { return this.eventBusName; } public void setEventBusName(String eventBusName) { this.eventBusName = eventBusName; if(eventBusName != null){ putBodyParameter("EventBusName", eventBusName); } } public String getEndpoint() { return this.endpoint; } public void setEndpoint(String endpoint) { this.endpoint = endpoint; if(endpoint != null){ putBodyParameter("Endpoint", endpoint); } } public String getAccessKey() { return this.accessKey; } public void setAccessKey(String accessKey) { this.accessKey = accessKey; if(accessKey != null){ putBodyParameter("AccessKey", accessKey); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putBodyParameter("Name", name); } } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; if(id != null){ putBodyParameter("Id", id.toString()); } } @Override public Class<CreateOrUpdateEventBridgeIntegrationResponse> getResponseClass() { return CreateOrUpdateEventBridgeIntegrationResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateOrUpdateEventBridgeIntegrationResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateOrUpdateEventBridgeIntegrationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateOrUpdateEventBridgeIntegrationResponse extends AcsResponse { private String requestId; private EventBridgeIntegration eventBridgeIntegration; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public EventBridgeIntegration getEventBridgeIntegration() { return this.eventBridgeIntegration; } public void setEventBridgeIntegration(EventBridgeIntegration eventBridgeIntegration) { this.eventBridgeIntegration = eventBridgeIntegration; } public static class EventBridgeIntegration { private Long id; private String name; private String description; private String endpoint; private String accessKey; private String accessSecret; private String eventBusName; private String source; private String eventBusRegionId; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; } public String getEndpoint() { return this.endpoint; } public void setEndpoint(String endpoint) { this.endpoint = endpoint; } public String getAccessKey() { return this.accessKey; } public void setAccessKey(String accessKey) { this.accessKey = accessKey; } public String getAccessSecret() { return this.accessSecret; } public void setAccessSecret(String accessSecret) { this.accessSecret = accessSecret; } public String getEventBusName() { return this.eventBusName; } public void setEventBusName(String eventBusName) { this.eventBusName = eventBusName; } public String getSource() { return this.source; } public void setSource(String source) { this.source = source; } public String getEventBusRegionId() { return this.eventBusRegionId; } public void setEventBusRegionId(String eventBusRegionId) { this.eventBusRegionId = eventBusRegionId; } } @Override public CreateOrUpdateEventBridgeIntegrationResponse getInstance(UnmarshallerContext context) { return CreateOrUpdateEventBridgeIntegrationResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateOrUpdateIMRobotRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateOrUpdateIMRobotRequest extends RpcAcsRequest<CreateOrUpdateIMRobotResponse> { private Boolean dailyNoc; private String robotAddress; private String dingSignKey; private String robotName; private Long robotId; private String type; private String dailyNocTime; private String token; private String cardTemplate; private Boolean enableOutgoing; public CreateOrUpdateIMRobotRequest() { super("ARMS", "2019-08-08", "CreateOrUpdateIMRobot", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Boolean getDailyNoc() { return this.dailyNoc; } public void setDailyNoc(Boolean dailyNoc) { this.dailyNoc = dailyNoc; if(dailyNoc != null){ putBodyParameter("DailyNoc", dailyNoc.toString()); } } public String getRobotAddress() { return this.robotAddress; } public void setRobotAddress(String robotAddress) { this.robotAddress = robotAddress; if(robotAddress != null){ putBodyParameter("RobotAddress", robotAddress); } } public String getDingSignKey() { return this.dingSignKey; } public void setDingSignKey(String dingSignKey) { this.dingSignKey = dingSignKey; if(dingSignKey != null){ putBodyParameter("DingSignKey", dingSignKey); } } public String getRobotName() { return this.robotName; } public void setRobotName(String robotName) { this.robotName = robotName; if(robotName != null){ putBodyParameter("RobotName", robotName); } } public Long getRobotId() { return this.robotId; } public void setRobotId(Long robotId) { this.robotId = robotId; if(robotId != null){ putBodyParameter("RobotId", robotId.toString()); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putBodyParameter("Type", type); } } public String getDailyNocTime() { return this.dailyNocTime; } public void setDailyNocTime(String dailyNocTime) { this.dailyNocTime = dailyNocTime; if(dailyNocTime != null){ putBodyParameter("DailyNocTime", dailyNocTime); } } public String getToken() { return this.token; } public void setToken(String token) { this.token = token; if(token != null){ putBodyParameter("Token", token); } } public String getCardTemplate() { return this.cardTemplate; } public void setCardTemplate(String cardTemplate) { this.cardTemplate = cardTemplate; if(cardTemplate != null){ putBodyParameter("CardTemplate", cardTemplate); } } public Boolean getEnableOutgoing() { return this.enableOutgoing; } public void setEnableOutgoing(Boolean enableOutgoing) { this.enableOutgoing = enableOutgoing; if(enableOutgoing != null){ putBodyParameter("EnableOutgoing", enableOutgoing.toString()); } } @Override public Class<CreateOrUpdateIMRobotResponse> getResponseClass() { return CreateOrUpdateIMRobotResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateOrUpdateIMRobotResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateOrUpdateIMRobotResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateOrUpdateIMRobotResponse extends AcsResponse { private String requestId; private AlertRobot alertRobot; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public AlertRobot getAlertRobot() { return this.alertRobot; } public void setAlertRobot(AlertRobot alertRobot) { this.alertRobot = alertRobot; } public static class AlertRobot { private Float robotId; private String robotName; private String type; private String robotAddress; private Boolean dailyNoc; private String dailyNocTime; private String token; private Boolean enableOutgoing; private String cardTemplate; public Float getRobotId() { return this.robotId; } public void setRobotId(Float robotId) { this.robotId = robotId; } public String getRobotName() { return this.robotName; } public void setRobotName(String robotName) { this.robotName = robotName; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getRobotAddress() { return this.robotAddress; } public void setRobotAddress(String robotAddress) { this.robotAddress = robotAddress; } public Boolean getDailyNoc() { return this.dailyNoc; } public void setDailyNoc(Boolean dailyNoc) { this.dailyNoc = dailyNoc; } public String getDailyNocTime() { return this.dailyNocTime; } public void setDailyNocTime(String dailyNocTime) { this.dailyNocTime = dailyNocTime; } public String getToken() { return this.token; } public void setToken(String token) { this.token = token; } public Boolean getEnableOutgoing() { return this.enableOutgoing; } public void setEnableOutgoing(Boolean enableOutgoing) { this.enableOutgoing = enableOutgoing; } public String getCardTemplate() { return this.cardTemplate; } public void setCardTemplate(String cardTemplate) { this.cardTemplate = cardTemplate; } } @Override public CreateOrUpdateIMRobotResponse getInstance(UnmarshallerContext context) { return CreateOrUpdateIMRobotResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateOrUpdateNotificationPolicyRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateOrUpdateNotificationPolicyRequest extends RpcAcsRequest<CreateOrUpdateNotificationPolicyResponse> { private Long integrationId; private String groupRule; private Boolean repeat; private Long id; private String notifyRule; private String state; private Long repeatInterval; private Long escalationPolicyId; private Boolean sendRecoverMessage; private String matchingRules; private Boolean directedMode; private String name; private String notifyTemplate; public CreateOrUpdateNotificationPolicyRequest() { super("ARMS", "2019-08-08", "CreateOrUpdateNotificationPolicy", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getIntegrationId() { return this.integrationId; } public void setIntegrationId(Long integrationId) { this.integrationId = integrationId; if(integrationId != null){ putBodyParameter("IntegrationId", integrationId.toString()); } } public String getGroupRule() { return this.groupRule; } public void setGroupRule(String groupRule) { this.groupRule = groupRule; if(groupRule != null){ putBodyParameter("GroupRule", groupRule); } } public Boolean getRepeat() { return this.repeat; } public void setRepeat(Boolean repeat) { this.repeat = repeat; if(repeat != null){ putBodyParameter("Repeat", repeat.toString()); } } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; if(id != null){ putBodyParameter("Id", id.toString()); } } public String getNotifyRule() { return this.notifyRule; } public void setNotifyRule(String notifyRule) { this.notifyRule = notifyRule; if(notifyRule != null){ putBodyParameter("NotifyRule", notifyRule); } } public String getState() { return this.state; } public void setState(String state) { this.state = state; if(state != null){ putBodyParameter("State", state); } } public Long getRepeatInterval() { return this.repeatInterval; } public void setRepeatInterval(Long repeatInterval) { this.repeatInterval = repeatInterval; if(repeatInterval != null){ putBodyParameter("RepeatInterval", repeatInterval.toString()); } } public Long getEscalationPolicyId() { return this.escalationPolicyId; } public void setEscalationPolicyId(Long escalationPolicyId) { this.escalationPolicyId = escalationPolicyId; if(escalationPolicyId != null){ putBodyParameter("EscalationPolicyId", escalationPolicyId.toString()); } } public Boolean getSendRecoverMessage() { return this.sendRecoverMessage; } public void setSendRecoverMessage(Boolean sendRecoverMessage) { this.sendRecoverMessage = sendRecoverMessage; if(sendRecoverMessage != null){ putBodyParameter("SendRecoverMessage", sendRecoverMessage.toString()); } } public String getMatchingRules() { return this.matchingRules; } public void setMatchingRules(String matchingRules) { this.matchingRules = matchingRules; if(matchingRules != null){ putBodyParameter("MatchingRules", matchingRules); } } public Boolean getDirectedMode() { return this.directedMode; } public void setDirectedMode(Boolean directedMode) { this.directedMode = directedMode; if(directedMode != null){ putBodyParameter("DirectedMode", directedMode.toString()); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putBodyParameter("Name", name); } } public String getNotifyTemplate() { return this.notifyTemplate; } public void setNotifyTemplate(String notifyTemplate) { this.notifyTemplate = notifyTemplate; if(notifyTemplate != null){ putBodyParameter("NotifyTemplate", notifyTemplate); } } @Override public Class<CreateOrUpdateNotificationPolicyResponse> getResponseClass() { return CreateOrUpdateNotificationPolicyResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateOrUpdateNotificationPolicyResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateOrUpdateNotificationPolicyResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateOrUpdateNotificationPolicyResponse extends AcsResponse { private String requestId; private NotificationPolicy notificationPolicy; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public NotificationPolicy getNotificationPolicy() { return this.notificationPolicy; } public void setNotificationPolicy(NotificationPolicy notificationPolicy) { this.notificationPolicy = notificationPolicy; } public static class NotificationPolicy { private Long id; private String name; private Boolean sendRecoverMessage; private Long escalationPolicyId; private Boolean repeat; private Long repeatInterval; private Long integrationId; private Boolean directedMode; private String state; private List<MatchingRulesItem> matchingRules; private GroupRule groupRule; private NotifyRule notifyRule; private NotifyTemplate notifyTemplate; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Boolean getSendRecoverMessage() { return this.sendRecoverMessage; } public void setSendRecoverMessage(Boolean sendRecoverMessage) { this.sendRecoverMessage = sendRecoverMessage; } public Long getEscalationPolicyId() { return this.escalationPolicyId; } public void setEscalationPolicyId(Long escalationPolicyId) { this.escalationPolicyId = escalationPolicyId; } public Boolean getRepeat() { return this.repeat; } public void setRepeat(Boolean repeat) { this.repeat = repeat; } public Long getRepeatInterval() { return this.repeatInterval; } public void setRepeatInterval(Long repeatInterval) { this.repeatInterval = repeatInterval; } public Long getIntegrationId() { return this.integrationId; } public void setIntegrationId(Long integrationId) { this.integrationId = integrationId; } public Boolean getDirectedMode() { return this.directedMode; } public void setDirectedMode(Boolean directedMode) { this.directedMode = directedMode; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public List<MatchingRulesItem> getMatchingRules() { return this.matchingRules; } public void setMatchingRules(List<MatchingRulesItem> matchingRules) { this.matchingRules = matchingRules; } public GroupRule getGroupRule() { return this.groupRule; } public void setGroupRule(GroupRule groupRule) { this.groupRule = groupRule; } public NotifyRule getNotifyRule() { return this.notifyRule; } public void setNotifyRule(NotifyRule notifyRule) { this.notifyRule = notifyRule; } public NotifyTemplate getNotifyTemplate() { return this.notifyTemplate; } public void setNotifyTemplate(NotifyTemplate notifyTemplate) { this.notifyTemplate = notifyTemplate; } public static class MatchingRulesItem { private List<MatchingConditionsItem> matchingConditions; public List<MatchingConditionsItem> getMatchingConditions() { return this.matchingConditions; } public void setMatchingConditions(List<MatchingConditionsItem> matchingConditions) { this.matchingConditions = matchingConditions; } public static class MatchingConditionsItem { private String key; private String value; private String operator; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getOperator() { return this.operator; } public void setOperator(String operator) { this.operator = operator; } } } public static class GroupRule { private Long groupWait; private Long groupInterval; private List<String> groupingFields; public Long getGroupWait() { return this.groupWait; } public void setGroupWait(Long groupWait) { this.groupWait = groupWait; } public Long getGroupInterval() { return this.groupInterval; } public void setGroupInterval(Long groupInterval) { this.groupInterval = groupInterval; } public List<String> getGroupingFields() { return this.groupingFields; } public void setGroupingFields(List<String> groupingFields) { this.groupingFields = groupingFields; } } public static class NotifyRule { private String notifyStartTime; private String notifyEndTime; private List<NotifyObjectsItem> notifyObjects; private List<String> notifyChannels; public String getNotifyStartTime() { return this.notifyStartTime; } public void setNotifyStartTime(String notifyStartTime) { this.notifyStartTime = notifyStartTime; } public String getNotifyEndTime() { return this.notifyEndTime; } public void setNotifyEndTime(String notifyEndTime) { this.notifyEndTime = notifyEndTime; } public List<NotifyObjectsItem> getNotifyObjects() { return this.notifyObjects; } public void setNotifyObjects(List<NotifyObjectsItem> notifyObjects) { this.notifyObjects = notifyObjects; } public List<String> getNotifyChannels() { return this.notifyChannels; } public void setNotifyChannels(List<String> notifyChannels) { this.notifyChannels = notifyChannels; } public static class NotifyObjectsItem { private String notifyObjectType; private Long notifyObjectId; private String notifyObjectName; private List<String> notifyChannels1; public String getNotifyObjectType() { return this.notifyObjectType; } public void setNotifyObjectType(String notifyObjectType) { this.notifyObjectType = notifyObjectType; } public Long getNotifyObjectId() { return this.notifyObjectId; } public void setNotifyObjectId(Long notifyObjectId) { this.notifyObjectId = notifyObjectId; } public String getNotifyObjectName() { return this.notifyObjectName; } public void setNotifyObjectName(String notifyObjectName) { this.notifyObjectName = notifyObjectName; } public List<String> getNotifyChannels1() { return this.notifyChannels1; } public void setNotifyChannels1(List<String> notifyChannels1) { this.notifyChannels1 = notifyChannels1; } } } public static class NotifyTemplate { private String emailTitle; private String emailContent; private String emailRecoverTitle; private String emailRecoverContent; private String smsContent; private String smsRecoverContent; private String ttsContent; private String ttsRecoverContent; private String robotContent; public String getEmailTitle() { return this.emailTitle; } public void setEmailTitle(String emailTitle) { this.emailTitle = emailTitle; } public String getEmailContent() { return this.emailContent; } public void setEmailContent(String emailContent) { this.emailContent = emailContent; } public String getEmailRecoverTitle() { return this.emailRecoverTitle; } public void setEmailRecoverTitle(String emailRecoverTitle) { this.emailRecoverTitle = emailRecoverTitle; } public String getEmailRecoverContent() { return this.emailRecoverContent; } public void setEmailRecoverContent(String emailRecoverContent) { this.emailRecoverContent = emailRecoverContent; } public String getSmsContent() { return this.smsContent; } public void setSmsContent(String smsContent) { this.smsContent = smsContent; } public String getSmsRecoverContent() { return this.smsRecoverContent; } public void setSmsRecoverContent(String smsRecoverContent) { this.smsRecoverContent = smsRecoverContent; } public String getTtsContent() { return this.ttsContent; } public void setTtsContent(String ttsContent) { this.ttsContent = ttsContent; } public String getTtsRecoverContent() { return this.ttsRecoverContent; } public void setTtsRecoverContent(String ttsRecoverContent) { this.ttsRecoverContent = ttsRecoverContent; } public String getRobotContent() { return this.robotContent; } public void setRobotContent(String robotContent) { this.robotContent = robotContent; } } } @Override public CreateOrUpdateNotificationPolicyResponse getInstance(UnmarshallerContext context) { return CreateOrUpdateNotificationPolicyResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateOrUpdateSilencePolicyRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateOrUpdateSilencePolicyRequest extends RpcAcsRequest<CreateOrUpdateSilencePolicyResponse> { private String matchingRules; private String timeSlots; private String effectiveTimeType; private String name; private Long id; private String state; private String timePeriod; public CreateOrUpdateSilencePolicyRequest() { super("ARMS", "2019-08-08", "CreateOrUpdateSilencePolicy", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getMatchingRules() { return this.matchingRules; } public void setMatchingRules(String matchingRules) { this.matchingRules = matchingRules; if(matchingRules != null){ putBodyParameter("MatchingRules", matchingRules); } } public String getTimeSlots() { return this.timeSlots; } public void setTimeSlots(String timeSlots) { this.timeSlots = timeSlots; if(timeSlots != null){ putQueryParameter("TimeSlots", timeSlots); } } public String getEffectiveTimeType() { return this.effectiveTimeType; } public void setEffectiveTimeType(String effectiveTimeType) { this.effectiveTimeType = effectiveTimeType; if(effectiveTimeType != null){ putQueryParameter("EffectiveTimeType", effectiveTimeType); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putBodyParameter("Name", name); } } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; if(id != null){ putBodyParameter("Id", id.toString()); } } public String getState() { return this.state; } public void setState(String state) { this.state = state; if(state != null){ putBodyParameter("State", state); } } public String getTimePeriod() { return this.timePeriod; } public void setTimePeriod(String timePeriod) { this.timePeriod = timePeriod; if(timePeriod != null){ putQueryParameter("TimePeriod", timePeriod); } } @Override public Class<CreateOrUpdateSilencePolicyResponse> getResponseClass() { return CreateOrUpdateSilencePolicyResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateOrUpdateSilencePolicyResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateOrUpdateSilencePolicyResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateOrUpdateSilencePolicyResponse extends AcsResponse { private String requestId; private SilencePolicy silencePolicy; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public SilencePolicy getSilencePolicy() { return this.silencePolicy; } public void setSilencePolicy(SilencePolicy silencePolicy) { this.silencePolicy = silencePolicy; } public static class SilencePolicy { private Long id; private String name; private String state; private String effectiveTimeType; private String timePeriod; private String timeSlots; private List<MatchingRulesItem> matchingRules; public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getEffectiveTimeType() { return this.effectiveTimeType; } public void setEffectiveTimeType(String effectiveTimeType) { this.effectiveTimeType = effectiveTimeType; } public String getTimePeriod() { return this.timePeriod; } public void setTimePeriod(String timePeriod) { this.timePeriod = timePeriod; } public String getTimeSlots() { return this.timeSlots; } public void setTimeSlots(String timeSlots) { this.timeSlots = timeSlots; } public List<MatchingRulesItem> getMatchingRules() { return this.matchingRules; } public void setMatchingRules(List<MatchingRulesItem> matchingRules) { this.matchingRules = matchingRules; } public static class MatchingRulesItem { private List<MatchingConditionsItem> matchingConditions; public List<MatchingConditionsItem> getMatchingConditions() { return this.matchingConditions; } public void setMatchingConditions(List<MatchingConditionsItem> matchingConditions) { this.matchingConditions = matchingConditions; } public static class MatchingConditionsItem { private String key; private String value; private String operator; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getOperator() { return this.operator; } public void setOperator(String operator) { this.operator = operator; } } } } @Override public CreateOrUpdateSilencePolicyResponse getInstance(UnmarshallerContext context) { return CreateOrUpdateSilencePolicyResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateOrUpdateWebhookContactRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateOrUpdateWebhookContactRequest extends RpcAcsRequest<CreateOrUpdateWebhookContactResponse> { private Long webhookId; private String method; private String webhookName; private String bizParams; private String body; private String url; private String bizHeaders; private String recoverBody; public CreateOrUpdateWebhookContactRequest() { super("ARMS", "2019-08-08", "CreateOrUpdateWebhookContact", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getWebhookId() { return this.webhookId; } public void setWebhookId(Long webhookId) { this.webhookId = webhookId; if(webhookId != null){ putBodyParameter("WebhookId", webhookId.toString()); } } public String getBizMethod() { return this.method; } public void setBizMethod(String method) { this.method = method; if(method != null){ putBodyParameter("Method", method); } } public String getWebhookName() { return this.webhookName; } public void setWebhookName(String webhookName) { this.webhookName = webhookName; if(webhookName != null){ putBodyParameter("WebhookName", webhookName); } } public String getBizParams() { return this.bizParams; } public void setBizParams(String bizParams) { this.bizParams = bizParams; if(bizParams != null){ putBodyParameter("BizParams", bizParams); } } public String getBody() { return this.body; } public void setBody(String body) { this.body = body; if(body != null){ putBodyParameter("Body", body); } } public String getUrl() { return this.url; } public void setUrl(String url) { this.url = url; if(url != null){ putBodyParameter("Url", url); } } public String getBizHeaders() { return this.bizHeaders; } public void setBizHeaders(String bizHeaders) { this.bizHeaders = bizHeaders; if(bizHeaders != null){ putBodyParameter("BizHeaders", bizHeaders); } } public String getRecoverBody() { return this.recoverBody; } public void setRecoverBody(String recoverBody) { this.recoverBody = recoverBody; if(recoverBody != null){ putBodyParameter("RecoverBody", recoverBody); } } @Override public Class<CreateOrUpdateWebhookContactResponse> getResponseClass() { return CreateOrUpdateWebhookContactResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateOrUpdateWebhookContactResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateOrUpdateWebhookContactResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateOrUpdateWebhookContactResponse extends AcsResponse { private String requestId; private WebhookContact webhookContact; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public WebhookContact getWebhookContact() { return this.webhookContact; } public void setWebhookContact(WebhookContact webhookContact) { this.webhookContact = webhookContact; } public static class WebhookContact { private Float webhookId; private String webhookName; private Webhook webhook; public Float getWebhookId() { return this.webhookId; } public void setWebhookId(Float webhookId) { this.webhookId = webhookId; } public String getWebhookName() { return this.webhookName; } public void setWebhookName(String webhookName) { this.webhookName = webhookName; } public Webhook getWebhook() { return this.webhook; } public void setWebhook(Webhook webhook) { this.webhook = webhook; } public static class Webhook { private String method; private String url; private String bizHeaders; private String bizParams; private String body; private String recoverBody; public String getBizMethod() { return this.method; } public void setBizMethod(String method) { this.method = method; } public String getUrl() { return this.url; } public void setUrl(String url) { this.url = url; } public String getBizHeaders() { return this.bizHeaders; } public void setBizHeaders(String bizHeaders) { this.bizHeaders = bizHeaders; } public String getBizParams() { return this.bizParams; } public void setBizParams(String bizParams) { this.bizParams = bizParams; } public String getBody() { return this.body; } public void setBody(String body) { this.body = body; } public String getRecoverBody() { return this.recoverBody; } public void setRecoverBody(String recoverBody) { this.recoverBody = recoverBody; } } } @Override public CreateOrUpdateWebhookContactResponse getInstance(UnmarshallerContext context) { return CreateOrUpdateWebhookContactResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreatePrometheusAlertRuleRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreatePrometheusAlertRuleRequest extends RpcAcsRequest<CreatePrometheusAlertRuleResponse> { private String expression; private String alertName; private String annotations; private String clusterId; private Long dispatchRuleId; private String type; private String message; private String labels; private List<Tags> tagss; private String duration; private String notifyType; public CreatePrometheusAlertRuleRequest() { super("ARMS", "2019-08-08", "CreatePrometheusAlertRule", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getExpression() { return this.expression; } public void setExpression(String expression) { this.expression = expression; if(expression != null){ putQueryParameter("Expression", expression); } } public String getAlertName() { return this.alertName; } public void setAlertName(String alertName) { this.alertName = alertName; if(alertName != null){ putQueryParameter("AlertName", alertName); } } public String getAnnotations() { return this.annotations; } public void setAnnotations(String annotations) { this.annotations = annotations; if(annotations != null){ putQueryParameter("Annotations", annotations); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public Long getDispatchRuleId() { return this.dispatchRuleId; } public void setDispatchRuleId(Long dispatchRuleId) { this.dispatchRuleId = dispatchRuleId; if(dispatchRuleId != null){ putQueryParameter("DispatchRuleId", dispatchRuleId.toString()); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; if(message != null){ putQueryParameter("Message", message); } } public String getLabels() { return this.labels; } public void setLabels(String labels) { this.labels = labels; if(labels != null){ putQueryParameter("Labels", labels); } } public List<Tags> getTagss() { return this.tagss; } public void setTagss(List<Tags> tagss) { this.tagss = tagss; if (tagss != null) { for (int depth1 = 0; depth1 < tagss.size(); depth1++) { putQueryParameter("Tags." + (depth1 + 1) + ".Value" , tagss.get(depth1).getValue()); putQueryParameter("Tags." + (depth1 + 1) + ".Key" , tagss.get(depth1).getKey()); } } } public String getDuration() { return this.duration; } public void setDuration(String duration) { this.duration = duration; if(duration != null){ putQueryParameter("Duration", duration); } } public String getNotifyType() { return this.notifyType; } public void setNotifyType(String notifyType) { this.notifyType = notifyType; if(notifyType != null){ putQueryParameter("NotifyType", notifyType); } } public static class Tags { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<CreatePrometheusAlertRuleResponse> getResponseClass() { return CreatePrometheusAlertRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreatePrometheusAlertRuleResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreatePrometheusAlertRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreatePrometheusAlertRuleResponse extends AcsResponse { private String requestId; private Long code; private Boolean success; private String message; private PrometheusAlertRule prometheusAlertRule; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getCode() { return this.code; } public void setCode(Long code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public PrometheusAlertRule getPrometheusAlertRule() { return this.prometheusAlertRule; } public void setPrometheusAlertRule(PrometheusAlertRule prometheusAlertRule) { this.prometheusAlertRule = prometheusAlertRule; } public static class PrometheusAlertRule { private Integer status; private String type; private String notifyType; private String expression; private String message; private String duration; private Long dispatchRuleId; private String alertName; private Long alertId; private String clusterId; private List<Label> labels; private List<Annotation> annotations; public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getNotifyType() { return this.notifyType; } public void setNotifyType(String notifyType) { this.notifyType = notifyType; } public String getExpression() { return this.expression; } public void setExpression(String expression) { this.expression = expression; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getDuration() { return this.duration; } public void setDuration(String duration) { this.duration = duration; } public Long getDispatchRuleId() { return this.dispatchRuleId; } public void setDispatchRuleId(Long dispatchRuleId) { this.dispatchRuleId = dispatchRuleId; } public String getAlertName() { return this.alertName; } public void setAlertName(String alertName) { this.alertName = alertName; } public Long getAlertId() { return this.alertId; } public void setAlertId(Long alertId) { this.alertId = alertId; } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; } public List<Label> getLabels() { return this.labels; } public void setLabels(List<Label> labels) { this.labels = labels; } public List<Annotation> getAnnotations() { return this.annotations; } public void setAnnotations(List<Annotation> annotations) { this.annotations = annotations; } public static class Label { private String name; private String value; public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } public static class Annotation { private String name; private String value; public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } } @Override public CreatePrometheusAlertRuleResponse getInstance(UnmarshallerContext context) { return CreatePrometheusAlertRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreatePrometheusInstanceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreatePrometheusInstanceRequest extends RpcAcsRequest<CreatePrometheusInstanceResponse> { private String grafanaInstanceId; private String clusterName; private String securityGroupId; private Integer duration; private String resourceGroupId; private String subClustersJson; private Boolean allSubClustersSuccess; private String clusterId; private List<Tags> tagss; private String clusterType; private String vSwitchId; private String vpcId; private String paymentType; private Integer archiveDuration; public CreatePrometheusInstanceRequest() { super("ARMS", "2019-08-08", "CreatePrometheusInstance", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getGrafanaInstanceId() { return this.grafanaInstanceId; } public void setGrafanaInstanceId(String grafanaInstanceId) { this.grafanaInstanceId = grafanaInstanceId; if(grafanaInstanceId != null){ putQueryParameter("GrafanaInstanceId", grafanaInstanceId); } } public String getClusterName() { return this.clusterName; } public void setClusterName(String clusterName) { this.clusterName = clusterName; if(clusterName != null){ putQueryParameter("ClusterName", clusterName); } } public String getSecurityGroupId() { return this.securityGroupId; } public void setSecurityGroupId(String securityGroupId) { this.securityGroupId = securityGroupId; if(securityGroupId != null){ putQueryParameter("SecurityGroupId", securityGroupId); } } public Integer getDuration() { return this.duration; } public void setDuration(Integer duration) { this.duration = duration; if(duration != null){ putQueryParameter("Duration", duration.toString()); } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public String getSubClustersJson() { return this.subClustersJson; } public void setSubClustersJson(String subClustersJson) { this.subClustersJson = subClustersJson; if(subClustersJson != null){ putQueryParameter("SubClustersJson", subClustersJson); } } public Boolean getAllSubClustersSuccess() { return this.allSubClustersSuccess; } public void setAllSubClustersSuccess(Boolean allSubClustersSuccess) { this.allSubClustersSuccess = allSubClustersSuccess; if(allSubClustersSuccess != null){ putQueryParameter("AllSubClustersSuccess", allSubClustersSuccess.toString()); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public List<Tags> getTagss() { return this.tagss; } public void setTagss(List<Tags> tagss) { this.tagss = tagss; if (tagss != null) { for (int depth1 = 0; depth1 < tagss.size(); depth1++) { putQueryParameter("Tags." + (depth1 + 1) + ".Value" , tagss.get(depth1).getValue()); putQueryParameter("Tags." + (depth1 + 1) + ".Key" , tagss.get(depth1).getKey()); } } } public String getClusterType() { return this.clusterType; } public void setClusterType(String clusterType) { this.clusterType = clusterType; if(clusterType != null){ putQueryParameter("ClusterType", clusterType); } } public String getVSwitchId() { return this.vSwitchId; } public void setVSwitchId(String vSwitchId) { this.vSwitchId = vSwitchId; if(vSwitchId != null){ putQueryParameter("VSwitchId", vSwitchId); } } public String getVpcId() { return this.vpcId; } public void setVpcId(String vpcId) { this.vpcId = vpcId; if(vpcId != null){ putQueryParameter("VpcId", vpcId); } } public String getPaymentType() { return this.paymentType; } public void setPaymentType(String paymentType) { this.paymentType = paymentType; if(paymentType != null){ putQueryParameter("PaymentType", paymentType); } } public Integer getArchiveDuration() { return this.archiveDuration; } public void setArchiveDuration(Integer archiveDuration) { this.archiveDuration = archiveDuration; if(archiveDuration != null){ putQueryParameter("ArchiveDuration", archiveDuration.toString()); } } public static class Tags { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<CreatePrometheusInstanceResponse> getResponseClass() { return CreatePrometheusInstanceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreatePrometheusInstanceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreatePrometheusInstanceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreatePrometheusInstanceResponse extends AcsResponse { private String data; private String requestId; private String message; private Integer code; public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } @Override public CreatePrometheusInstanceResponse getInstance(UnmarshallerContext context) { return CreatePrometheusInstanceResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreatePrometheusMonitoringRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreatePrometheusMonitoringRequest extends RpcAcsRequest<CreatePrometheusMonitoringResponse> { private String configYaml; private String clusterId; private String type; private String status; public CreatePrometheusMonitoringRequest() { super("ARMS", "2019-08-08", "CreatePrometheusMonitoring", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getConfigYaml() { return this.configYaml; } public void setConfigYaml(String configYaml) { this.configYaml = configYaml; if(configYaml != null){ putBodyParameter("ConfigYaml", configYaml); } } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; if(status != null){ putQueryParameter("Status", status); } } @Override public Class<CreatePrometheusMonitoringResponse> getResponseClass() { return CreatePrometheusMonitoringResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreatePrometheusMonitoringResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreatePrometheusMonitoringResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreatePrometheusMonitoringResponse extends AcsResponse { private String requestId; private Integer code; private String data; private String message; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } @Override public CreatePrometheusMonitoringResponse getInstance(UnmarshallerContext context) { return CreatePrometheusMonitoringResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateRetcodeAppRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateRetcodeAppRequest extends RpcAcsRequest<CreateRetcodeAppResponse> { private String resourceGroupId; private String retcodeAppName; private String retcodeAppType; private List<Tags> tagss; public CreateRetcodeAppRequest() { super("ARMS", "2019-08-08", "CreateRetcodeApp", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public String getRetcodeAppName() { return this.retcodeAppName; } public void setRetcodeAppName(String retcodeAppName) { this.retcodeAppName = retcodeAppName; if(retcodeAppName != null){ putQueryParameter("RetcodeAppName", retcodeAppName); } } public String getRetcodeAppType() { return this.retcodeAppType; } public void setRetcodeAppType(String retcodeAppType) { this.retcodeAppType = retcodeAppType; if(retcodeAppType != null){ putQueryParameter("RetcodeAppType", retcodeAppType); } } public List<Tags> getTagss() { return this.tagss; } public void setTagss(List<Tags> tagss) { this.tagss = tagss; if (tagss != null) { for (int depth1 = 0; depth1 < tagss.size(); depth1++) { putQueryParameter("Tags." + (depth1 + 1) + ".Value" , tagss.get(depth1).getValue()); putQueryParameter("Tags." + (depth1 + 1) + ".Key" , tagss.get(depth1).getKey()); } } } public static class Tags { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<CreateRetcodeAppResponse> getResponseClass() { return CreateRetcodeAppResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateRetcodeAppResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateRetcodeAppResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateRetcodeAppResponse extends AcsResponse { private String requestId; private Integer code; private String data; private Boolean success; private String message; private RetcodeAppDataBean retcodeAppDataBean; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public RetcodeAppDataBean getRetcodeAppDataBean() { return this.retcodeAppDataBean; } public void setRetcodeAppDataBean(RetcodeAppDataBean retcodeAppDataBean) { this.retcodeAppDataBean = retcodeAppDataBean; } public static class RetcodeAppDataBean { private String pid; private Long appId; private String resourceGroupId; private List<TagsItem> tags; public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; } public Long getAppId() { return this.appId; } public void setAppId(Long appId) { this.appId = appId; } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; } public List<TagsItem> getTags() { return this.tags; } public void setTags(List<TagsItem> tags) { this.tags = tags; } public static class TagsItem { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } } @Override public CreateRetcodeAppResponse getInstance(UnmarshallerContext context) { return CreateRetcodeAppResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateRumAppRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.google.gson.Gson; import com.google.gson.annotations.SerializedName; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateRumAppRequest extends RpcAcsRequest<CreateRumAppResponse> { private String workspace; private String packageName; private String description; private String language; private String source; private String siteType; private String realRegionId; private String resourceGroupId; private String appName; private String appGroup; private String nickName; @SerializedName("tag") private List<Tag> tag; public CreateRumAppRequest() { super("ARMS", "2019-08-08", "CreateRumApp", "arms"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getWorkspace() { return this.workspace; } public void setWorkspace(String workspace) { this.workspace = workspace; if(workspace != null){ putQueryParameter("Workspace", workspace); } } public String getPackageName() { return this.packageName; } public void setPackageName(String packageName) { this.packageName = packageName; if(packageName != null){ putQueryParameter("PackageName", packageName); } } public String getDescription() { return this.description; } public void setDescription(String description) { this.description = description; if(description != null){ putQueryParameter("Description", description); } } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; if(language != null){ putQueryParameter("Language", language); } } public String getSource() { return this.source; } public void setSource(String source) { this.source = source; if(source != null){ putQueryParameter("Source", source); } } public String getSiteType() { return this.siteType; } public void setSiteType(String siteType) { this.siteType = siteType; if(siteType != null){ putQueryParameter("SiteType", siteType); } } public String getRealRegionId() { return this.realRegionId; } public void setRealRegionId(String realRegionId) { this.realRegionId = realRegionId; if(realRegionId != null){ putQueryParameter("RealRegionId", realRegionId); } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; if(appName != null){ putQueryParameter("AppName", appName); } } public String getAppGroup() { return this.appGroup; } public void setAppGroup(String appGroup) { this.appGroup = appGroup; if(appGroup != null){ putQueryParameter("AppGroup", appGroup); } } public String getNickName() { return this.nickName; } public void setNickName(String nickName) { this.nickName = nickName; if(nickName != null){ putQueryParameter("NickName", nickName); } } public List<Tag> getTag() { return this.tag; } public void setTag(List<Tag> tag) { this.tag = tag; if (tag != null) { putQueryParameter("Tag" , new Gson().toJson(tag)); } } public static class Tag { @SerializedName("Value") private String value; @SerializedName("Key") private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<CreateRumAppResponse> getResponseClass() { return CreateRumAppResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateRumAppResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateRumAppResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateRumAppResponse extends AcsResponse { private String requestId; private Integer code; private Boolean success; private String message; private Integer httpStatusCode; private String resourceGroupId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String pid; private String endpoint; private String cdnDomain; public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; } public String getEndpoint() { return this.endpoint; } public void setEndpoint(String endpoint) { this.endpoint = endpoint; } public String getCdnDomain() { return this.cdnDomain; } public void setCdnDomain(String cdnDomain) { this.cdnDomain = cdnDomain; } } @Override public CreateRumAppResponse getInstance(UnmarshallerContext context) { return CreateRumAppResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateRumUploadFileUrlRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateRumUploadFileUrlRequest extends RpcAcsRequest<CreateRumUploadFileUrlResponse> { private String sourcemapType; private String pid; private String uuid; private String contentType; private String versionId; private String fileName; private String appName; public CreateRumUploadFileUrlRequest() { super("ARMS", "2019-08-08", "CreateRumUploadFileUrl", "arms"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getSourcemapType() { return this.sourcemapType; } public void setSourcemapType(String sourcemapType) { this.sourcemapType = sourcemapType; if(sourcemapType != null){ putQueryParameter("SourcemapType", sourcemapType); } } public String getPid() { return this.pid; } public void setPid(String pid) { this.pid = pid; if(pid != null){ putQueryParameter("Pid", pid); } } public String getUuid() { return this.uuid; } public void setUuid(String uuid) { this.uuid = uuid; if(uuid != null){ putQueryParameter("Uuid", uuid); } } public String getContentType() { return this.contentType; } public void setContentType(String contentType) { this.contentType = contentType; if(contentType != null){ putQueryParameter("ContentType", contentType); } } public String getVersionId() { return this.versionId; } public void setVersionId(String versionId) { this.versionId = versionId; if(versionId != null){ putQueryParameter("VersionId", versionId); } } public String getFileName() { return this.fileName; } public void setFileName(String fileName) { this.fileName = fileName; if(fileName != null){ putQueryParameter("FileName", fileName); } } public String getAppName() { return this.appName; } public void setAppName(String appName) { this.appName = appName; if(appName != null){ putQueryParameter("AppName", appName); } } @Override public Class<CreateRumUploadFileUrlResponse> getResponseClass() { return CreateRumUploadFileUrlResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateRumUploadFileUrlResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateRumUploadFileUrlResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateRumUploadFileUrlResponse extends AcsResponse { private String requestId; private Integer code; private Boolean success; private String message; private Integer httpStatusCode; private String data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Integer getHttpStatusCode() { return this.httpStatusCode; } public void setHttpStatusCode(Integer httpStatusCode) { this.httpStatusCode = httpStatusCode; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } @Override public CreateRumUploadFileUrlResponse getInstance(UnmarshallerContext context) { return CreateRumUploadFileUrlResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateSyntheticTaskRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.google.gson.Gson; import com.google.gson.annotations.SerializedName; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateSyntheticTaskRequest extends RpcAcsRequest<CreateSyntheticTaskResponse> { private Long taskType; private String intervalType; private Boolean updateTask; private String taskName; @SerializedName("monitorList") private List<MonitorList> monitorList; private Long ipType; private String url; private String intervalTime; @SerializedName("commonParam") private CommonParam commonParam; @SerializedName("extendInterval") private ExtendInterval extendInterval; @SerializedName("navigation") private Navigation navigation; @SerializedName("download") private Download download; @SerializedName("protocol") private Protocol protocol; @SerializedName("net") private Net net; public CreateSyntheticTaskRequest() { super("ARMS", "2019-08-08", "CreateSyntheticTask", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getTaskType() { return this.taskType; } public void setTaskType(Long taskType) { this.taskType = taskType; if(taskType != null){ putQueryParameter("TaskType", taskType.toString()); } } public String getIntervalType() { return this.intervalType; } public void setIntervalType(String intervalType) { this.intervalType = intervalType; if(intervalType != null){ putQueryParameter("IntervalType", intervalType); } } public Boolean getUpdateTask() { return this.updateTask; } public void setUpdateTask(Boolean updateTask) { this.updateTask = updateTask; if(updateTask != null){ putQueryParameter("UpdateTask", updateTask.toString()); } } public String getTaskName() { return this.taskName; } public void setTaskName(String taskName) { this.taskName = taskName; if(taskName != null){ putQueryParameter("TaskName", taskName); } } public List<MonitorList> getMonitorList() { return this.monitorList; } public void setMonitorList(List<MonitorList> monitorList) { this.monitorList = monitorList; if (monitorList != null) { putQueryParameter("MonitorList" , new Gson().toJson(monitorList)); } } public Long getIpType() { return this.ipType; } public void setIpType(Long ipType) { this.ipType = ipType; if(ipType != null){ putQueryParameter("IpType", ipType.toString()); } } public String getUrl() { return this.url; } public void setUrl(String url) { this.url = url; if(url != null){ putQueryParameter("Url", url); } } public String getIntervalTime() { return this.intervalTime; } public void setIntervalTime(String intervalTime) { this.intervalTime = intervalTime; if(intervalTime != null){ putQueryParameter("IntervalTime", intervalTime); } } public CommonParam getCommonParam() { return this.commonParam; } public void setCommonParam(CommonParam commonParam) { this.commonParam = commonParam; if (commonParam != null) { putQueryParameter("CommonParam" , new Gson().toJson(commonParam)); } } public ExtendInterval getExtendInterval() { return this.extendInterval; } public void setExtendInterval(ExtendInterval extendInterval) { this.extendInterval = extendInterval; if (extendInterval != null) { putQueryParameter("ExtendInterval" , new Gson().toJson(extendInterval)); } } public Navigation getNavigation() { return this.navigation; } public void setNavigation(Navigation navigation) { this.navigation = navigation; if (navigation != null) { putQueryParameter("Navigation" , new Gson().toJson(navigation)); } } public Download getDownload() { return this.download; } public void setDownload(Download download) { this.download = download; if (download != null) { putQueryParameter("Download" , new Gson().toJson(download)); } } public Protocol getBizProtocol() { return this.protocol; } public void setBizProtocol(Protocol protocol) { this.protocol = protocol; if (protocol != null) { putQueryParameter("Protocol" , new Gson().toJson(protocol)); } } public Net getNet() { return this.net; } public void setNet(Net net) { this.net = net; if (net != null) { putQueryParameter("Net" , new Gson().toJson(net)); } } public static class MonitorList { @SerializedName("NetServiceId") private Long netServiceId; @SerializedName("MonitorType") private Long monitorType; @SerializedName("CityCode") private Long cityCode; public Long getNetServiceId() { return this.netServiceId; } public void setNetServiceId(Long netServiceId) { this.netServiceId = netServiceId; } public Long getMonitorType() { return this.monitorType; } public void setMonitorType(Long monitorType) { this.monitorType = monitorType; } public Long getCityCode() { return this.cityCode; } public void setCityCode(Long cityCode) { this.cityCode = cityCode; } } public static class CommonParam { @SerializedName("AlertNotifierId") private String alertNotifierId; @SerializedName("AlertPolicyId") private String alertPolicyId; @SerializedName("AlertList") private List<AlertListItem> alertList; @SerializedName("AlarmFlag") private String alarmFlag; @SerializedName("StartExecutionTime") private Long startExecutionTime; @SerializedName("MonitorSamples") private Long monitorSamples; public String getAlertNotifierId() { return this.alertNotifierId; } public void setAlertNotifierId(String alertNotifierId) { this.alertNotifierId = alertNotifierId; } public String getAlertPolicyId() { return this.alertPolicyId; } public void setAlertPolicyId(String alertPolicyId) { this.alertPolicyId = alertPolicyId; } public List<AlertListItem> getAlertList() { return this.alertList; } public void setAlertList(List<AlertListItem> alertList) { this.alertList = alertList; } public String getAlarmFlag() { return this.alarmFlag; } public void setAlarmFlag(String alarmFlag) { this.alarmFlag = alarmFlag; } public Long getStartExecutionTime() { return this.startExecutionTime; } public void setStartExecutionTime(Long startExecutionTime) { this.startExecutionTime = startExecutionTime; } public Long getMonitorSamples() { return this.monitorSamples; } public void setMonitorSamples(Long monitorSamples) { this.monitorSamples = monitorSamples; } public static class AlertListItem { @SerializedName("IsCritical") private Long isCritical; @SerializedName("Name") private String name; @SerializedName("SeriousAlert") private String seriousAlert; @SerializedName("GeneralAlert") private String generalAlert; @SerializedName("Symbols") private Long symbols; public Long getIsCritical() { return this.isCritical; } public void setIsCritical(Long isCritical) { this.isCritical = isCritical; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getSeriousAlert() { return this.seriousAlert; } public void setSeriousAlert(String seriousAlert) { this.seriousAlert = seriousAlert; } public String getGeneralAlert() { return this.generalAlert; } public void setGeneralAlert(String generalAlert) { this.generalAlert = generalAlert; } public Long getSymbols() { return this.symbols; } public void setSymbols(Long symbols) { this.symbols = symbols; } } } public static class ExtendInterval { @SerializedName("StartMinute") private Long startMinute; @SerializedName("EndHour") private Long endHour; @SerializedName("EndMinute") private Long endMinute; @SerializedName("StartHour") private Long startHour; @SerializedName("EndTime") private String endTime; @SerializedName("Days") private List<Long> days; @SerializedName("StartTime") private String startTime; public Long getStartMinute() { return this.startMinute; } public void setStartMinute(Long startMinute) { this.startMinute = startMinute; } public Long getEndHour() { return this.endHour; } public void setEndHour(Long endHour) { this.endHour = endHour; } public Long getEndMinute() { return this.endMinute; } public void setEndMinute(Long endMinute) { this.endMinute = endMinute; } public Long getStartHour() { return this.startHour; } public void setStartHour(Long startHour) { this.startHour = startHour; } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; } public List<Long> getDays() { return this.days; } public void setDays(List<Long> days) { this.days = days; } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } } public static class Navigation { @SerializedName("ExecuteActiveX") private Long executeActiveX; @SerializedName("NavCustomHostIp") private String navCustomHostIp; @SerializedName("NavReturnElement") private Long navReturnElement; @SerializedName("QUICVersion") private Long qUICVersion; @SerializedName("SlowElementThreshold") private Double slowElementThreshold; @SerializedName("WaitCompletionTime") private Double waitCompletionTime; @SerializedName("QUICDomain") private String qUICDomain; @SerializedName("NavCustomHeaderContent") private String navCustomHeaderContent; @SerializedName("ResponseHeader") private Long responseHeader; @SerializedName("VerifyStringWhiteList") private String verifyStringWhiteList; @SerializedName("MonitorTimeout") private String monitorTimeout; @SerializedName("FilterInvalidIP") private Long filterInvalidIP; @SerializedName("FlowHijackLogo") private String flowHijackLogo; @SerializedName("NavDisableCache") private Long navDisableCache; @SerializedName("ElementBlacklist") private String elementBlacklist; @SerializedName("FlowHijackJumpTimes") private Long flowHijackJumpTimes; @SerializedName("ExecuteScript") private Long executeScript; @SerializedName("NavDisableCompression") private String navDisableCompression; @SerializedName("DNSHijackWhiteList") private String dNSHijackWhiteList; @SerializedName("ProcessName") private String processName; @SerializedName("VerifyStringBlacklist") private String verifyStringBlacklist; @SerializedName("NavAutomaticScrolling") private String navAutomaticScrolling; @SerializedName("NavRedirection") private Long navRedirection; @SerializedName("NavCustomHeader") private String navCustomHeader; @SerializedName("ExecuteApplication") private Long executeApplication; @SerializedName("NavCustomHost") private Long navCustomHost; @SerializedName("NavIgnoreCertificateError") private Long navIgnoreCertificateError; @SerializedName("PageTamper") private String pageTamper; @SerializedName("RequestHeader") private Long requestHeader; public Long getExecuteActiveX() { return this.executeActiveX; } public void setExecuteActiveX(Long executeActiveX) { this.executeActiveX = executeActiveX; } public String getNavCustomHostIp() { return this.navCustomHostIp; } public void setNavCustomHostIp(String navCustomHostIp) { this.navCustomHostIp = navCustomHostIp; } public Long getNavReturnElement() { return this.navReturnElement; } public void setNavReturnElement(Long navReturnElement) { this.navReturnElement = navReturnElement; } public Long getQUICVersion() { return this.qUICVersion; } public void setQUICVersion(Long qUICVersion) { this.qUICVersion = qUICVersion; } public Double getSlowElementThreshold() { return this.slowElementThreshold; } public void setSlowElementThreshold(Double slowElementThreshold) { this.slowElementThreshold = slowElementThreshold; } public Double getWaitCompletionTime() { return this.waitCompletionTime; } public void setWaitCompletionTime(Double waitCompletionTime) { this.waitCompletionTime = waitCompletionTime; } public String getQUICDomain() { return this.qUICDomain; } public void setQUICDomain(String qUICDomain) { this.qUICDomain = qUICDomain; } public String getNavCustomHeaderContent() { return this.navCustomHeaderContent; } public void setNavCustomHeaderContent(String navCustomHeaderContent) { this.navCustomHeaderContent = navCustomHeaderContent; } public Long getResponseHeader() { return this.responseHeader; } public void setResponseHeader(Long responseHeader) { this.responseHeader = responseHeader; } public String getVerifyStringWhiteList() { return this.verifyStringWhiteList; } public void setVerifyStringWhiteList(String verifyStringWhiteList) { this.verifyStringWhiteList = verifyStringWhiteList; } public String getMonitorTimeout() { return this.monitorTimeout; } public void setMonitorTimeout(String monitorTimeout) { this.monitorTimeout = monitorTimeout; } public Long getFilterInvalidIP() { return this.filterInvalidIP; } public void setFilterInvalidIP(Long filterInvalidIP) { this.filterInvalidIP = filterInvalidIP; } public String getFlowHijackLogo() { return this.flowHijackLogo; } public void setFlowHijackLogo(String flowHijackLogo) { this.flowHijackLogo = flowHijackLogo; } public Long getNavDisableCache() { return this.navDisableCache; } public void setNavDisableCache(Long navDisableCache) { this.navDisableCache = navDisableCache; } public String getElementBlacklist() { return this.elementBlacklist; } public void setElementBlacklist(String elementBlacklist) { this.elementBlacklist = elementBlacklist; } public Long getFlowHijackJumpTimes() { return this.flowHijackJumpTimes; } public void setFlowHijackJumpTimes(Long flowHijackJumpTimes) { this.flowHijackJumpTimes = flowHijackJumpTimes; } public Long getExecuteScript() { return this.executeScript; } public void setExecuteScript(Long executeScript) { this.executeScript = executeScript; } public String getNavDisableCompression() { return this.navDisableCompression; } public void setNavDisableCompression(String navDisableCompression) { this.navDisableCompression = navDisableCompression; } public String getDNSHijackWhiteList() { return this.dNSHijackWhiteList; } public void setDNSHijackWhiteList(String dNSHijackWhiteList) { this.dNSHijackWhiteList = dNSHijackWhiteList; } public String getProcessName() { return this.processName; } public void setProcessName(String processName) { this.processName = processName; } public String getVerifyStringBlacklist() { return this.verifyStringBlacklist; } public void setVerifyStringBlacklist(String verifyStringBlacklist) { this.verifyStringBlacklist = verifyStringBlacklist; } public String getNavAutomaticScrolling() { return this.navAutomaticScrolling; } public void setNavAutomaticScrolling(String navAutomaticScrolling) { this.navAutomaticScrolling = navAutomaticScrolling; } public Long getNavRedirection() { return this.navRedirection; } public void setNavRedirection(Long navRedirection) { this.navRedirection = navRedirection; } public String getNavCustomHeader() { return this.navCustomHeader; } public void setNavCustomHeader(String navCustomHeader) { this.navCustomHeader = navCustomHeader; } public Long getExecuteApplication() { return this.executeApplication; } public void setExecuteApplication(Long executeApplication) { this.executeApplication = executeApplication; } public Long getNavCustomHost() { return this.navCustomHost; } public void setNavCustomHost(Long navCustomHost) { this.navCustomHost = navCustomHost; } public Long getNavIgnoreCertificateError() { return this.navIgnoreCertificateError; } public void setNavIgnoreCertificateError(Long navIgnoreCertificateError) { this.navIgnoreCertificateError = navIgnoreCertificateError; } public String getPageTamper() { return this.pageTamper; } public void setPageTamper(String pageTamper) { this.pageTamper = pageTamper; } public Long getRequestHeader() { return this.requestHeader; } public void setRequestHeader(Long requestHeader) { this.requestHeader = requestHeader; } } public static class Download { @SerializedName("DownloadIgnoreCertificateError") private String downloadIgnoreCertificateError; @SerializedName("DownloadCustomHost") private Long downloadCustomHost; @SerializedName("ConnectionTimeout") private Double connectionTimeout; @SerializedName("DownloadKernel") private Long downloadKernel; @SerializedName("WhiteList") private String whiteList; @SerializedName("DownloadRedirection") private Long downloadRedirection; @SerializedName("MonitorTimeout") private Long monitorTimeout; @SerializedName("ValidateKeywords") private String validateKeywords; @SerializedName("DownloadTransmissionSize") private Long downloadTransmissionSize; @SerializedName("QuickProtocol") private String quickProtocol; @SerializedName("DownloadCustomHeaderContent") private String downloadCustomHeaderContent; @SerializedName("VerifyWay") private Long verifyWay; @SerializedName("DownloadCustomHostIp") private String downloadCustomHostIp; public String getDownloadIgnoreCertificateError() { return this.downloadIgnoreCertificateError; } public void setDownloadIgnoreCertificateError(String downloadIgnoreCertificateError) { this.downloadIgnoreCertificateError = downloadIgnoreCertificateError; } public Long getDownloadCustomHost() { return this.downloadCustomHost; } public void setDownloadCustomHost(Long downloadCustomHost) { this.downloadCustomHost = downloadCustomHost; } public Double getConnectionTimeout() { return this.connectionTimeout; } public void setConnectionTimeout(Double connectionTimeout) { this.connectionTimeout = connectionTimeout; } public Long getDownloadKernel() { return this.downloadKernel; } public void setDownloadKernel(Long downloadKernel) { this.downloadKernel = downloadKernel; } public String getWhiteList() { return this.whiteList; } public void setWhiteList(String whiteList) { this.whiteList = whiteList; } public Long getDownloadRedirection() { return this.downloadRedirection; } public void setDownloadRedirection(Long downloadRedirection) { this.downloadRedirection = downloadRedirection; } public Long getMonitorTimeout() { return this.monitorTimeout; } public void setMonitorTimeout(Long monitorTimeout) { this.monitorTimeout = monitorTimeout; } public String getValidateKeywords() { return this.validateKeywords; } public void setValidateKeywords(String validateKeywords) { this.validateKeywords = validateKeywords; } public Long getDownloadTransmissionSize() { return this.downloadTransmissionSize; } public void setDownloadTransmissionSize(Long downloadTransmissionSize) { this.downloadTransmissionSize = downloadTransmissionSize; } public String getQuickProtocol() { return this.quickProtocol; } public void setQuickProtocol(String quickProtocol) { this.quickProtocol = quickProtocol; } public String getDownloadCustomHeaderContent() { return this.downloadCustomHeaderContent; } public void setDownloadCustomHeaderContent(String downloadCustomHeaderContent) { this.downloadCustomHeaderContent = downloadCustomHeaderContent; } public Long getVerifyWay() { return this.verifyWay; } public void setVerifyWay(Long verifyWay) { this.verifyWay = verifyWay; } public String getDownloadCustomHostIp() { return this.downloadCustomHostIp; } public void setDownloadCustomHostIp(String downloadCustomHostIp) { this.downloadCustomHostIp = downloadCustomHostIp; } } public static class Protocol { @SerializedName("ReceivedDataSize") private Long receivedDataSize; @SerializedName("ProtocolMonitorTimeout") private String protocolMonitorTimeout; @SerializedName("RequestContent") private RequestContent requestContent; @SerializedName("ProtocolConnectionTime") private Long protocolConnectionTime; @SerializedName("CharacterEncoding") private Long characterEncoding; @SerializedName("VerifyContent") private String verifyContent; @SerializedName("CustomHost") private Long customHost; @SerializedName("ProtocolConnectionTimeout") private Double protocolConnectionTimeout; @SerializedName("CustomHostIp") private String customHostIp; @SerializedName("VerifyWay") private Long verifyWay; public Long getReceivedDataSize() { return this.receivedDataSize; } public void setReceivedDataSize(Long receivedDataSize) { this.receivedDataSize = receivedDataSize; } public String getProtocolMonitorTimeout() { return this.protocolMonitorTimeout; } public void setProtocolMonitorTimeout(String protocolMonitorTimeout) { this.protocolMonitorTimeout = protocolMonitorTimeout; } public RequestContent getRequestContent() { return this.requestContent; } public void setRequestContent(RequestContent requestContent) { this.requestContent = requestContent; } public Long getProtocolConnectionTime() { return this.protocolConnectionTime; } public void setProtocolConnectionTime(Long protocolConnectionTime) { this.protocolConnectionTime = protocolConnectionTime; } public Long getCharacterEncoding() { return this.characterEncoding; } public void setCharacterEncoding(Long characterEncoding) { this.characterEncoding = characterEncoding; } public String getVerifyContent() { return this.verifyContent; } public void setVerifyContent(String verifyContent) { this.verifyContent = verifyContent; } public Long getCustomHost() { return this.customHost; } public void setCustomHost(Long customHost) { this.customHost = customHost; } public Double getProtocolConnectionTimeout() { return this.protocolConnectionTimeout; } public void setProtocolConnectionTimeout(Double protocolConnectionTimeout) { this.protocolConnectionTimeout = protocolConnectionTimeout; } public String getCustomHostIp() { return this.customHostIp; } public void setCustomHostIp(String customHostIp) { this.customHostIp = customHostIp; } public Long getVerifyWay() { return this.verifyWay; } public void setVerifyWay(Long verifyWay) { this.verifyWay = verifyWay; } public static class RequestContent { @SerializedName("Method") private String method; @SerializedName("Header") private List<HeaderItem> header; @SerializedName("Body") private Body body; public String getBizMethod() { return this.method; } public void setBizMethod(String method) { this.method = method; } public List<HeaderItem> getHeader() { return this.header; } public void setHeader(List<HeaderItem> header) { this.header = header; } public Body getBody() { return this.body; } public void setBody(Body body) { this.body = body; } public static class HeaderItem { @SerializedName("Value") private String value; @SerializedName("Key") private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } public static class Body { @SerializedName("Mode") private String mode; @SerializedName("Raw") private String raw; @SerializedName("UrlEncoding") private List<UrlEncodingItem> urlEncoding; @SerializedName("Language") private String language; @SerializedName("FormData") private List<FormDataItem> formData; public String getMode() { return this.mode; } public void setMode(String mode) { this.mode = mode; } public String getRaw() { return this.raw; } public void setRaw(String raw) { this.raw = raw; } public List<UrlEncodingItem> getUrlEncoding() { return this.urlEncoding; } public void setUrlEncoding(List<UrlEncodingItem> urlEncoding) { this.urlEncoding = urlEncoding; } public String getLanguage() { return this.language; } public void setLanguage(String language) { this.language = language; } public List<FormDataItem> getFormData() { return this.formData; } public void setFormData(List<FormDataItem> formData) { this.formData = formData; } public static class UrlEncodingItem { @SerializedName("Value") private String value; @SerializedName("Key") private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } public static class FormDataItem { @SerializedName("Value") private String value; @SerializedName("Key") private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } } } } public static class Net { @SerializedName("NetICMPTimeout") private Long netICMPTimeout; @SerializedName("NetTraceRouteTimeout") private Long netTraceRouteTimeout; @SerializedName("NetICMPActive") private Long netICMPActive; @SerializedName("NetICMPDataCut") private Long netICMPDataCut; @SerializedName("NetICMPNum") private Long netICMPNum; @SerializedName("NetDNSTimeout") private Long netDNSTimeout; @SerializedName("NetDNSQueryMethod") private Long netDNSQueryMethod; @SerializedName("WhiteList") private String whiteList; @SerializedName("NetDNSNs") private String netDNSNs; @SerializedName("NetDNSServer") private Long netDNSServer; @SerializedName("NetTraceRouteSwitch") private Long netTraceRouteSwitch; @SerializedName("NetDigSwitch") private Long netDigSwitch; @SerializedName("NetICMPInterval") private Long netICMPInterval; @SerializedName("NetDNSSwitch") private Long netDNSSwitch; @SerializedName("NetTraceRouteNum") private Long netTraceRouteNum; @SerializedName("NetICMPSwitch") private Long netICMPSwitch; @SerializedName("NetICMPSize") private Long netICMPSize; public Long getNetICMPTimeout() { return this.netICMPTimeout; } public void setNetICMPTimeout(Long netICMPTimeout) { this.netICMPTimeout = netICMPTimeout; } public Long getNetTraceRouteTimeout() { return this.netTraceRouteTimeout; } public void setNetTraceRouteTimeout(Long netTraceRouteTimeout) { this.netTraceRouteTimeout = netTraceRouteTimeout; } public Long getNetICMPActive() { return this.netICMPActive; } public void setNetICMPActive(Long netICMPActive) { this.netICMPActive = netICMPActive; } public Long getNetICMPDataCut() { return this.netICMPDataCut; } public void setNetICMPDataCut(Long netICMPDataCut) { this.netICMPDataCut = netICMPDataCut; } public Long getNetICMPNum() { return this.netICMPNum; } public void setNetICMPNum(Long netICMPNum) { this.netICMPNum = netICMPNum; } public Long getNetDNSTimeout() { return this.netDNSTimeout; } public void setNetDNSTimeout(Long netDNSTimeout) { this.netDNSTimeout = netDNSTimeout; } public Long getNetDNSQueryMethod() { return this.netDNSQueryMethod; } public void setNetDNSQueryMethod(Long netDNSQueryMethod) { this.netDNSQueryMethod = netDNSQueryMethod; } public String getWhiteList() { return this.whiteList; } public void setWhiteList(String whiteList) { this.whiteList = whiteList; } public String getNetDNSNs() { return this.netDNSNs; } public void setNetDNSNs(String netDNSNs) { this.netDNSNs = netDNSNs; } public Long getNetDNSServer() { return this.netDNSServer; } public void setNetDNSServer(Long netDNSServer) { this.netDNSServer = netDNSServer; } public Long getNetTraceRouteSwitch() { return this.netTraceRouteSwitch; } public void setNetTraceRouteSwitch(Long netTraceRouteSwitch) { this.netTraceRouteSwitch = netTraceRouteSwitch; } public Long getNetDigSwitch() { return this.netDigSwitch; } public void setNetDigSwitch(Long netDigSwitch) { this.netDigSwitch = netDigSwitch; } public Long getNetICMPInterval() { return this.netICMPInterval; } public void setNetICMPInterval(Long netICMPInterval) { this.netICMPInterval = netICMPInterval; } public Long getNetDNSSwitch() { return this.netDNSSwitch; } public void setNetDNSSwitch(Long netDNSSwitch) { this.netDNSSwitch = netDNSSwitch; } public Long getNetTraceRouteNum() { return this.netTraceRouteNum; } public void setNetTraceRouteNum(Long netTraceRouteNum) { this.netTraceRouteNum = netTraceRouteNum; } public Long getNetICMPSwitch() { return this.netICMPSwitch; } public void setNetICMPSwitch(Long netICMPSwitch) { this.netICMPSwitch = netICMPSwitch; } public Long getNetICMPSize() { return this.netICMPSize; } public void setNetICMPSize(Long netICMPSize) { this.netICMPSize = netICMPSize; } } @Override public Class<CreateSyntheticTaskResponse> getResponseClass() { return CreateSyntheticTaskResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateSyntheticTaskResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateSyntheticTaskResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateSyntheticTaskResponse extends AcsResponse { private String requestId; private String code; private String msg; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getMsg() { return this.msg; } public void setMsg(String msg) { this.msg = msg; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long taskId; public Long getTaskId() { return this.taskId; } public void setTaskId(Long taskId) { this.taskId = taskId; } } @Override public CreateSyntheticTaskResponse getInstance(UnmarshallerContext context) { return CreateSyntheticTaskResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateTimingSyntheticTaskRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import java.util.Map; import com.google.gson.Gson; import com.google.gson.annotations.SerializedName; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateTimingSyntheticTaskRequest extends RpcAcsRequest<CreateTimingSyntheticTaskResponse> { @SerializedName("availableAssertions") private List<AvailableAssertions> availableAssertions; private Integer taskType; @SerializedName("commonSetting") private CommonSetting commonSetting; private Integer monitorCategory; private String frequency; @SerializedName("tags") private List<Tags> tags; private String resourceGroupId; @SerializedName("monitorConf") private MonitorConf monitorConf; @SerializedName("customPeriod") private CustomPeriod customPeriod; private String name; @SerializedName("monitors") private List<Monitors> monitors; public CreateTimingSyntheticTaskRequest() { super("ARMS", "2019-08-08", "CreateTimingSyntheticTask", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public List<AvailableAssertions> getAvailableAssertions() { return this.availableAssertions; } public void setAvailableAssertions(List<AvailableAssertions> availableAssertions) { this.availableAssertions = availableAssertions; if (availableAssertions != null) { putQueryParameter("AvailableAssertions" , new Gson().toJson(availableAssertions)); } } public Integer getTaskType() { return this.taskType; } public void setTaskType(Integer taskType) { this.taskType = taskType; if(taskType != null){ putQueryParameter("TaskType", taskType.toString()); } } public CommonSetting getCommonSetting() { return this.commonSetting; } public void setCommonSetting(CommonSetting commonSetting) { this.commonSetting = commonSetting; if (commonSetting != null) { putQueryParameter("CommonSetting" , new Gson().toJson(commonSetting)); } } public Integer getMonitorCategory() { return this.monitorCategory; } public void setMonitorCategory(Integer monitorCategory) { this.monitorCategory = monitorCategory; if(monitorCategory != null){ putQueryParameter("MonitorCategory", monitorCategory.toString()); } } public String getFrequency() { return this.frequency; } public void setFrequency(String frequency) { this.frequency = frequency; if(frequency != null){ putQueryParameter("Frequency", frequency); } } public List<Tags> getTags() { return this.tags; } public void setTags(List<Tags> tags) { this.tags = tags; if (tags != null) { putQueryParameter("Tags" , new Gson().toJson(tags)); } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public MonitorConf getMonitorConf() { return this.monitorConf; } public void setMonitorConf(MonitorConf monitorConf) { this.monitorConf = monitorConf; if (monitorConf != null) { putQueryParameter("MonitorConf" , new Gson().toJson(monitorConf)); } } public CustomPeriod getCustomPeriod() { return this.customPeriod; } public void setCustomPeriod(CustomPeriod customPeriod) { this.customPeriod = customPeriod; if (customPeriod != null) { putQueryParameter("CustomPeriod" , new Gson().toJson(customPeriod)); } } public String getName() { return this.name; } public void setName(String name) { this.name = name; if(name != null){ putQueryParameter("Name", name); } } public List<Monitors> getMonitors() { return this.monitors; } public void setMonitors(List<Monitors> monitors) { this.monitors = monitors; if (monitors != null) { putQueryParameter("Monitors" , new Gson().toJson(monitors)); } } public static class AvailableAssertions { @SerializedName("Expect") private String expect; @SerializedName("Type") private String type; @SerializedName("Operator") private String operator; @SerializedName("Target") private String target; public String getExpect() { return this.expect; } public void setExpect(String expect) { this.expect = expect; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getOperator() { return this.operator; } public void setOperator(String operator) { this.operator = operator; } public String getTarget() { return this.target; } public void setTarget(String target) { this.target = target; } } public static class CommonSetting { @SerializedName("CustomPrometheusSetting") private CustomPrometheusSetting customPrometheusSetting; @SerializedName("CustomHost") private CustomHost customHost; @SerializedName("XtraceRegion") private String xtraceRegion; @SerializedName("IpType") private Integer ipType; @SerializedName("IsOpenTrace") private Boolean isOpenTrace; @SerializedName("TraceClientType") private Integer traceClientType; @SerializedName("CustomVPCSetting") private CustomVPCSetting customVPCSetting; @SerializedName("MonitorSamples") private Integer monitorSamples; public CustomPrometheusSetting getCustomPrometheusSetting() { return this.customPrometheusSetting; } public void setCustomPrometheusSetting(CustomPrometheusSetting customPrometheusSetting) { this.customPrometheusSetting = customPrometheusSetting; } public CustomHost getCustomHost() { return this.customHost; } public void setCustomHost(CustomHost customHost) { this.customHost = customHost; } public String getXtraceRegion() { return this.xtraceRegion; } public void setXtraceRegion(String xtraceRegion) { this.xtraceRegion = xtraceRegion; } public Integer getIpType() { return this.ipType; } public void setIpType(Integer ipType) { this.ipType = ipType; } public Boolean getIsOpenTrace() { return this.isOpenTrace; } public void setIsOpenTrace(Boolean isOpenTrace) { this.isOpenTrace = isOpenTrace; } public Integer getTraceClientType() { return this.traceClientType; } public void setTraceClientType(Integer traceClientType) { this.traceClientType = traceClientType; } public CustomVPCSetting getCustomVPCSetting() { return this.customVPCSetting; } public void setCustomVPCSetting(CustomVPCSetting customVPCSetting) { this.customVPCSetting = customVPCSetting; } public Integer getMonitorSamples() { return this.monitorSamples; } public void setMonitorSamples(Integer monitorSamples) { this.monitorSamples = monitorSamples; } public static class CustomPrometheusSetting { @SerializedName("PrometheusLabels") private Map<String,String> prometheusLabels; @SerializedName("PrometheusClusterRegion") private String prometheusClusterRegion; @SerializedName("PrometheusClusterId") private String prometheusClusterId; public Map<String,String> getPrometheusLabels() { return this.prometheusLabels; } public void setPrometheusLabels(Map<String,String> prometheusLabels) { this.prometheusLabels = prometheusLabels; } public String getPrometheusClusterRegion() { return this.prometheusClusterRegion; } public void setPrometheusClusterRegion(String prometheusClusterRegion) { this.prometheusClusterRegion = prometheusClusterRegion; } public String getPrometheusClusterId() { return this.prometheusClusterId; } public void setPrometheusClusterId(String prometheusClusterId) { this.prometheusClusterId = prometheusClusterId; } } public static class CustomHost { @SerializedName("Hosts") private List<HostsItem> hosts; @SerializedName("SelectType") private Integer selectType; public List<HostsItem> getHosts() { return this.hosts; } public void setHosts(List<HostsItem> hosts) { this.hosts = hosts; } public Integer getSelectType() { return this.selectType; } public void setSelectType(Integer selectType) { this.selectType = selectType; } public static class HostsItem { @SerializedName("Domain") private String domain; @SerializedName("IpType") private Integer ipType; @SerializedName("Ips") private List<String> ips; public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; } public Integer getIpType() { return this.ipType; } public void setIpType(Integer ipType) { this.ipType = ipType; } public List<String> getIps() { return this.ips; } public void setIps(List<String> ips) { this.ips = ips; } } } public static class CustomVPCSetting { @SerializedName("VSwitchId") private String vSwitchId; @SerializedName("SecureGroupId") private String secureGroupId; @SerializedName("RegionId") private String regionId; @SerializedName("VpcId") private String vpcId; public String getVSwitchId() { return this.vSwitchId; } public void setVSwitchId(String vSwitchId) { this.vSwitchId = vSwitchId; } public String getSecureGroupId() { return this.secureGroupId; } public void setSecureGroupId(String secureGroupId) { this.secureGroupId = secureGroupId; } public String getRegionId() { return this.regionId; } public void setRegionId(String regionId) { this.regionId = regionId; } public String getVpcId() { return this.vpcId; } public void setVpcId(String vpcId) { this.vpcId = vpcId; } } } public static class Tags { @SerializedName("Value") private String value; @SerializedName("Key") private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } public static class MonitorConf { @SerializedName("NetICMP") private NetICMP netICMP; @SerializedName("ApiHTTP") private ApiHTTP apiHTTP; @SerializedName("Website") private Website website; @SerializedName("Stream") private Stream stream; @SerializedName("NetDNS") private NetDNS netDNS; @SerializedName("NetTCP") private NetTCP netTCP; @SerializedName("FileDownload") private FileDownload fileDownload; public NetICMP getNetICMP() { return this.netICMP; } public void setNetICMP(NetICMP netICMP) { this.netICMP = netICMP; } public ApiHTTP getApiHTTP() { return this.apiHTTP; } public void setApiHTTP(ApiHTTP apiHTTP) { this.apiHTTP = apiHTTP; } public Website getWebsite() { return this.website; } public void setWebsite(Website website) { this.website = website; } public Stream getStream() { return this.stream; } public void setStream(Stream stream) { this.stream = stream; } public NetDNS getNetDNS() { return this.netDNS; } public void setNetDNS(NetDNS netDNS) { this.netDNS = netDNS; } public NetTCP getNetTCP() { return this.netTCP; } public void setNetTCP(NetTCP netTCP) { this.netTCP = netTCP; } public FileDownload getFileDownload() { return this.fileDownload; } public void setFileDownload(FileDownload fileDownload) { this.fileDownload = fileDownload; } public static class NetICMP { @SerializedName("TracertTimeout") private Long tracertTimeout; @SerializedName("Interval") private Long interval; @SerializedName("SplitPackage") private Boolean splitPackage; @SerializedName("PackageSize") private Integer packageSize; @SerializedName("TracertEnable") private Boolean tracertEnable; @SerializedName("TargetUrl") private String targetUrl; @SerializedName("Timeout") private Long timeout; @SerializedName("PackageNum") private Integer packageNum; @SerializedName("TracertNumMax") private Integer tracertNumMax; public Long getTracertTimeout() { return this.tracertTimeout; } public void setTracertTimeout(Long tracertTimeout) { this.tracertTimeout = tracertTimeout; } public Long getInterval() { return this.interval; } public void setInterval(Long interval) { this.interval = interval; } public Boolean getSplitPackage() { return this.splitPackage; } public void setSplitPackage(Boolean splitPackage) { this.splitPackage = splitPackage; } public Integer getPackageSize() { return this.packageSize; } public void setPackageSize(Integer packageSize) { this.packageSize = packageSize; } public Boolean getTracertEnable() { return this.tracertEnable; } public void setTracertEnable(Boolean tracertEnable) { this.tracertEnable = tracertEnable; } public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } public Long getTimeout() { return this.timeout; } public void setTimeout(Long timeout) { this.timeout = timeout; } public Integer getPackageNum() { return this.packageNum; } public void setPackageNum(Integer packageNum) { this.packageNum = packageNum; } public Integer getTracertNumMax() { return this.tracertNumMax; } public void setTracertNumMax(Integer tracertNumMax) { this.tracertNumMax = tracertNumMax; } } public static class ApiHTTP { @SerializedName("ConnectTimeout") private Long connectTimeout; @SerializedName("RequestBody") private RequestBody requestBody; @SerializedName("Method") private String method; @SerializedName("CheckCert") private Boolean checkCert; @SerializedName("ProtocolAlpnProtocol") private Integer protocolAlpnProtocol; @SerializedName("RequestHeaders") private Map<String,String> requestHeaders; @SerializedName("TargetUrl") private String targetUrl; @SerializedName("Timeout") private Long timeout; public Long getConnectTimeout() { return this.connectTimeout; } public void setConnectTimeout(Long connectTimeout) { this.connectTimeout = connectTimeout; } public RequestBody getRequestBody() { return this.requestBody; } public void setRequestBody(RequestBody requestBody) { this.requestBody = requestBody; } public String getBizMethod() { return this.method; } public void setBizMethod(String method) { this.method = method; } public Boolean getCheckCert() { return this.checkCert; } public void setCheckCert(Boolean checkCert) { this.checkCert = checkCert; } public Integer getProtocolAlpnProtocol() { return this.protocolAlpnProtocol; } public void setProtocolAlpnProtocol(Integer protocolAlpnProtocol) { this.protocolAlpnProtocol = protocolAlpnProtocol; } public Map<String,String> getRequestHeaders() { return this.requestHeaders; } public void setRequestHeaders(Map<String,String> requestHeaders) { this.requestHeaders = requestHeaders; } public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } public Long getTimeout() { return this.timeout; } public void setTimeout(Long timeout) { this.timeout = timeout; } public static class RequestBody { @SerializedName("Type") private String type; @SerializedName("Content") private String content; public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getContent() { return this.content; } public void setContent(String content) { this.content = content; } } } public static class Website { @SerializedName("FlowHijackJumpTimes") private Integer flowHijackJumpTimes; @SerializedName("DNSHijackWhitelist") private String dNSHijackWhitelist; @SerializedName("SlowElementThreshold") private Long slowElementThreshold; @SerializedName("VerifyStringBlacklist") private String verifyStringBlacklist; @SerializedName("CustomHeader") private Integer customHeader; @SerializedName("WaitCompletionTime") private Long waitCompletionTime; @SerializedName("DisableCompression") private Integer disableCompression; @SerializedName("MonitorTimeout") private Long monitorTimeout; @SerializedName("VerifyStringWhitelist") private String verifyStringWhitelist; @SerializedName("CustomHeaderContent") private Map<String,String> customHeaderContent; @SerializedName("FilterInvalidIP") private Integer filterInvalidIP; @SerializedName("DisableCache") private Integer disableCache; @SerializedName("PageTamper") private String pageTamper; @SerializedName("FlowHijackLogo") private String flowHijackLogo; @SerializedName("AutomaticScrolling") private Integer automaticScrolling; @SerializedName("TargetUrl") private String targetUrl; @SerializedName("Redirection") private Integer redirection; @SerializedName("IgnoreCertificateError") private Integer ignoreCertificateError; @SerializedName("ElementBlacklist") private String elementBlacklist; public Integer getFlowHijackJumpTimes() { return this.flowHijackJumpTimes; } public void setFlowHijackJumpTimes(Integer flowHijackJumpTimes) { this.flowHijackJumpTimes = flowHijackJumpTimes; } public String getDNSHijackWhitelist() { return this.dNSHijackWhitelist; } public void setDNSHijackWhitelist(String dNSHijackWhitelist) { this.dNSHijackWhitelist = dNSHijackWhitelist; } public Long getSlowElementThreshold() { return this.slowElementThreshold; } public void setSlowElementThreshold(Long slowElementThreshold) { this.slowElementThreshold = slowElementThreshold; } public String getVerifyStringBlacklist() { return this.verifyStringBlacklist; } public void setVerifyStringBlacklist(String verifyStringBlacklist) { this.verifyStringBlacklist = verifyStringBlacklist; } public Integer getCustomHeader() { return this.customHeader; } public void setCustomHeader(Integer customHeader) { this.customHeader = customHeader; } public Long getWaitCompletionTime() { return this.waitCompletionTime; } public void setWaitCompletionTime(Long waitCompletionTime) { this.waitCompletionTime = waitCompletionTime; } public Integer getDisableCompression() { return this.disableCompression; } public void setDisableCompression(Integer disableCompression) { this.disableCompression = disableCompression; } public Long getMonitorTimeout() { return this.monitorTimeout; } public void setMonitorTimeout(Long monitorTimeout) { this.monitorTimeout = monitorTimeout; } public String getVerifyStringWhitelist() { return this.verifyStringWhitelist; } public void setVerifyStringWhitelist(String verifyStringWhitelist) { this.verifyStringWhitelist = verifyStringWhitelist; } public Map<String,String> getCustomHeaderContent() { return this.customHeaderContent; } public void setCustomHeaderContent(Map<String,String> customHeaderContent) { this.customHeaderContent = customHeaderContent; } public Integer getFilterInvalidIP() { return this.filterInvalidIP; } public void setFilterInvalidIP(Integer filterInvalidIP) { this.filterInvalidIP = filterInvalidIP; } public Integer getDisableCache() { return this.disableCache; } public void setDisableCache(Integer disableCache) { this.disableCache = disableCache; } public String getPageTamper() { return this.pageTamper; } public void setPageTamper(String pageTamper) { this.pageTamper = pageTamper; } public String getFlowHijackLogo() { return this.flowHijackLogo; } public void setFlowHijackLogo(String flowHijackLogo) { this.flowHijackLogo = flowHijackLogo; } public Integer getAutomaticScrolling() { return this.automaticScrolling; } public void setAutomaticScrolling(Integer automaticScrolling) { this.automaticScrolling = automaticScrolling; } public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } public Integer getRedirection() { return this.redirection; } public void setRedirection(Integer redirection) { this.redirection = redirection; } public Integer getIgnoreCertificateError() { return this.ignoreCertificateError; } public void setIgnoreCertificateError(Integer ignoreCertificateError) { this.ignoreCertificateError = ignoreCertificateError; } public String getElementBlacklist() { return this.elementBlacklist; } public void setElementBlacklist(String elementBlacklist) { this.elementBlacklist = elementBlacklist; } } public static class Stream { @SerializedName("PlayerType") private Integer playerType; @SerializedName("StreamType") private Integer streamType; @SerializedName("StreamAddressType") private Integer streamAddressType; @SerializedName("CustomHeaderContent") private Map<String,String> customHeaderContent; @SerializedName("StreamMonitorTimeout") private Integer streamMonitorTimeout; @SerializedName("WhiteList") private String whiteList; @SerializedName("TargetUrl") private String targetUrl; public Integer getPlayerType() { return this.playerType; } public void setPlayerType(Integer playerType) { this.playerType = playerType; } public Integer getStreamType() { return this.streamType; } public void setStreamType(Integer streamType) { this.streamType = streamType; } public Integer getStreamAddressType() { return this.streamAddressType; } public void setStreamAddressType(Integer streamAddressType) { this.streamAddressType = streamAddressType; } public Map<String,String> getCustomHeaderContent() { return this.customHeaderContent; } public void setCustomHeaderContent(Map<String,String> customHeaderContent) { this.customHeaderContent = customHeaderContent; } public Integer getStreamMonitorTimeout() { return this.streamMonitorTimeout; } public void setStreamMonitorTimeout(Integer streamMonitorTimeout) { this.streamMonitorTimeout = streamMonitorTimeout; } public String getWhiteList() { return this.whiteList; } public void setWhiteList(String whiteList) { this.whiteList = whiteList; } public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } } public static class NetDNS { @SerializedName("NsServer") private String nsServer; @SerializedName("QueryMethod") private Integer queryMethod; @SerializedName("TargetUrl") private String targetUrl; @SerializedName("DnsServerIpType") private Integer dnsServerIpType; @SerializedName("Timeout") private Long timeout; public String getNsServer() { return this.nsServer; } public void setNsServer(String nsServer) { this.nsServer = nsServer; } public Integer getQueryMethod() { return this.queryMethod; } public void setQueryMethod(Integer queryMethod) { this.queryMethod = queryMethod; } public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } public Integer getDnsServerIpType() { return this.dnsServerIpType; } public void setDnsServerIpType(Integer dnsServerIpType) { this.dnsServerIpType = dnsServerIpType; } public Long getTimeout() { return this.timeout; } public void setTimeout(Long timeout) { this.timeout = timeout; } } public static class NetTCP { @SerializedName("ConnectTimes") private Integer connectTimes; @SerializedName("TracertTimeout") private Long tracertTimeout; @SerializedName("Interval") private Long interval; @SerializedName("TracertEnable") private Boolean tracertEnable; @SerializedName("TargetUrl") private String targetUrl; @SerializedName("Timeout") private Long timeout; @SerializedName("TracertNumMax") private Integer tracertNumMax; public Integer getConnectTimes() { return this.connectTimes; } public void setConnectTimes(Integer connectTimes) { this.connectTimes = connectTimes; } public Long getTracertTimeout() { return this.tracertTimeout; } public void setTracertTimeout(Long tracertTimeout) { this.tracertTimeout = tracertTimeout; } public Long getInterval() { return this.interval; } public void setInterval(Long interval) { this.interval = interval; } public Boolean getTracertEnable() { return this.tracertEnable; } public void setTracertEnable(Boolean tracertEnable) { this.tracertEnable = tracertEnable; } public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } public Long getTimeout() { return this.timeout; } public void setTimeout(Long timeout) { this.timeout = timeout; } public Integer getTracertNumMax() { return this.tracertNumMax; } public void setTracertNumMax(Integer tracertNumMax) { this.tracertNumMax = tracertNumMax; } } public static class FileDownload { @SerializedName("IgnoreCertificateUntrustworthyError") private Integer ignoreCertificateUntrustworthyError; @SerializedName("ConnectionTimeout") private Long connectionTimeout; @SerializedName("IgnoreCertificateCanceledError") private Integer ignoreCertificateCanceledError; @SerializedName("IgnoreCertificateOutOfDateError") private Integer ignoreCertificateOutOfDateError; @SerializedName("DownloadKernel") private Integer downloadKernel; @SerializedName("WhiteList") private String whiteList; @SerializedName("IgnoreCertificateAuthError") private Integer ignoreCertificateAuthError; @SerializedName("MonitorTimeout") private Long monitorTimeout; @SerializedName("ValidateKeywords") private String validateKeywords; @SerializedName("IgnoreInvalidHostError") private Integer ignoreInvalidHostError; @SerializedName("CustomHeaderContent") private Map<String,String> customHeaderContent; @SerializedName("TransmissionSize") private Long transmissionSize; @SerializedName("IgnoreCertificateUsingError") private Integer ignoreCertificateUsingError; @SerializedName("QuickProtocol") private Integer quickProtocol; @SerializedName("IgnoreCertificateStatusError") private Integer ignoreCertificateStatusError; @SerializedName("TargetUrl") private String targetUrl; @SerializedName("Redirection") private Integer redirection; @SerializedName("VerifyWay") private Integer verifyWay; public Integer getIgnoreCertificateUntrustworthyError() { return this.ignoreCertificateUntrustworthyError; } public void setIgnoreCertificateUntrustworthyError(Integer ignoreCertificateUntrustworthyError) { this.ignoreCertificateUntrustworthyError = ignoreCertificateUntrustworthyError; } public Long getConnectionTimeout() { return this.connectionTimeout; } public void setConnectionTimeout(Long connectionTimeout) { this.connectionTimeout = connectionTimeout; } public Integer getIgnoreCertificateCanceledError() { return this.ignoreCertificateCanceledError; } public void setIgnoreCertificateCanceledError(Integer ignoreCertificateCanceledError) { this.ignoreCertificateCanceledError = ignoreCertificateCanceledError; } public Integer getIgnoreCertificateOutOfDateError() { return this.ignoreCertificateOutOfDateError; } public void setIgnoreCertificateOutOfDateError(Integer ignoreCertificateOutOfDateError) { this.ignoreCertificateOutOfDateError = ignoreCertificateOutOfDateError; } public Integer getDownloadKernel() { return this.downloadKernel; } public void setDownloadKernel(Integer downloadKernel) { this.downloadKernel = downloadKernel; } public String getWhiteList() { return this.whiteList; } public void setWhiteList(String whiteList) { this.whiteList = whiteList; } public Integer getIgnoreCertificateAuthError() { return this.ignoreCertificateAuthError; } public void setIgnoreCertificateAuthError(Integer ignoreCertificateAuthError) { this.ignoreCertificateAuthError = ignoreCertificateAuthError; } public Long getMonitorTimeout() { return this.monitorTimeout; } public void setMonitorTimeout(Long monitorTimeout) { this.monitorTimeout = monitorTimeout; } public String getValidateKeywords() { return this.validateKeywords; } public void setValidateKeywords(String validateKeywords) { this.validateKeywords = validateKeywords; } public Integer getIgnoreInvalidHostError() { return this.ignoreInvalidHostError; } public void setIgnoreInvalidHostError(Integer ignoreInvalidHostError) { this.ignoreInvalidHostError = ignoreInvalidHostError; } public Map<String,String> getCustomHeaderContent() { return this.customHeaderContent; } public void setCustomHeaderContent(Map<String,String> customHeaderContent) { this.customHeaderContent = customHeaderContent; } public Long getTransmissionSize() { return this.transmissionSize; } public void setTransmissionSize(Long transmissionSize) { this.transmissionSize = transmissionSize; } public Integer getIgnoreCertificateUsingError() { return this.ignoreCertificateUsingError; } public void setIgnoreCertificateUsingError(Integer ignoreCertificateUsingError) { this.ignoreCertificateUsingError = ignoreCertificateUsingError; } public Integer getQuickProtocol() { return this.quickProtocol; } public void setQuickProtocol(Integer quickProtocol) { this.quickProtocol = quickProtocol; } public Integer getIgnoreCertificateStatusError() { return this.ignoreCertificateStatusError; } public void setIgnoreCertificateStatusError(Integer ignoreCertificateStatusError) { this.ignoreCertificateStatusError = ignoreCertificateStatusError; } public String getTargetUrl() { return this.targetUrl; } public void setTargetUrl(String targetUrl) { this.targetUrl = targetUrl; } public Integer getRedirection() { return this.redirection; } public void setRedirection(Integer redirection) { this.redirection = redirection; } public Integer getVerifyWay() { return this.verifyWay; } public void setVerifyWay(Integer verifyWay) { this.verifyWay = verifyWay; } } } public static class CustomPeriod { @SerializedName("EndHour") private Integer endHour; @SerializedName("StartHour") private Integer startHour; public Integer getEndHour() { return this.endHour; } public void setEndHour(Integer endHour) { this.endHour = endHour; } public Integer getStartHour() { return this.startHour; } public void setStartHour(Integer startHour) { this.startHour = startHour; } } public static class Monitors { @SerializedName("ClientType") private Integer clientType; @SerializedName("CityCode") private String cityCode; @SerializedName("OperatorCode") private String operatorCode; public Integer getClientType() { return this.clientType; } public void setClientType(Integer clientType) { this.clientType = clientType; } public String getCityCode() { return this.cityCode; } public void setCityCode(String cityCode) { this.cityCode = cityCode; } public String getOperatorCode() { return this.operatorCode; } public void setOperatorCode(String operatorCode) { this.operatorCode = operatorCode; } } @Override public Class<CreateTimingSyntheticTaskResponse> getResponseClass() { return CreateTimingSyntheticTaskResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateTimingSyntheticTaskResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateTimingSyntheticTaskResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateTimingSyntheticTaskResponse extends AcsResponse { private String requestId; private Boolean success; private Long code; private String message; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Long getCode() { return this.code; } public void setCode(Long code) { this.code = code; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private String taskId; private String status; public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } } @Override public CreateTimingSyntheticTaskResponse getInstance(UnmarshallerContext context) { return CreateTimingSyntheticTaskResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateWebhookRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class CreateWebhookRequest extends RpcAcsRequest<CreateWebhookResponse> { private String httpHeaders; private String method; private String httpParams; private String body; private String url; private String contactName; private String recoverBody; public CreateWebhookRequest() { super("ARMS", "2019-08-08", "CreateWebhook", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getHttpHeaders() { return this.httpHeaders; } public void setHttpHeaders(String httpHeaders) { this.httpHeaders = httpHeaders; if(httpHeaders != null){ putQueryParameter("HttpHeaders", httpHeaders); } } public String getBizMethod() { return this.method; } public void setBizMethod(String method) { this.method = method; if(method != null){ putQueryParameter("Method", method); } } public String getHttpParams() { return this.httpParams; } public void setHttpParams(String httpParams) { this.httpParams = httpParams; if(httpParams != null){ putQueryParameter("HttpParams", httpParams); } } public String getBody() { return this.body; } public void setBody(String body) { this.body = body; if(body != null){ putQueryParameter("Body", body); } } public String getUrl() { return this.url; } public void setUrl(String url) { this.url = url; if(url != null){ putQueryParameter("Url", url); } } public String getContactName() { return this.contactName; } public void setContactName(String contactName) { this.contactName = contactName; if(contactName != null){ putQueryParameter("ContactName", contactName); } } public String getRecoverBody() { return this.recoverBody; } public void setRecoverBody(String recoverBody) { this.recoverBody = recoverBody; if(recoverBody != null){ putQueryParameter("RecoverBody", recoverBody); } } @Override public Class<CreateWebhookResponse> getResponseClass() { return CreateWebhookResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/CreateWebhookResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.CreateWebhookResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class CreateWebhookResponse extends AcsResponse { private String contactId; private String requestId; public String getContactId() { return this.contactId; } public void setContactId(String contactId) { this.contactId = contactId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public CreateWebhookResponse getInstance(UnmarshallerContext context) { return CreateWebhookResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/DelAuthTokenRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class DelAuthTokenRequest extends RpcAcsRequest<DelAuthTokenResponse> { private String clusterId; public DelAuthTokenRequest() { super("ARMS", "2019-08-08", "DelAuthToken", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getClusterId() { return this.clusterId; } public void setClusterId(String clusterId) { this.clusterId = clusterId; if(clusterId != null){ putQueryParameter("ClusterId", clusterId); } } @Override public Class<DelAuthTokenResponse> getResponseClass() { return DelAuthTokenResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/DelAuthTokenResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.DelAuthTokenResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DelAuthTokenResponse extends AcsResponse { private String data; private String requestId; public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public DelAuthTokenResponse getInstance(UnmarshallerContext context) { return DelAuthTokenResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/DeleteAddonReleaseRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class DeleteAddonReleaseRequest extends RpcAcsRequest<DeleteAddonReleaseResponse> { private String releaseName; private String environmentId; private String addonName; private Boolean force; public DeleteAddonReleaseRequest() { super("ARMS", "2019-08-08", "DeleteAddonRelease", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getReleaseName() { return this.releaseName; } public void setReleaseName(String releaseName) { this.releaseName = releaseName; if(releaseName != null){ putQueryParameter("ReleaseName", releaseName); } } public String getEnvironmentId() { return this.environmentId; } public void setEnvironmentId(String environmentId) { this.environmentId = environmentId; if(environmentId != null){ putQueryParameter("EnvironmentId", environmentId); } } public String getAddonName() { return this.addonName; } public void setAddonName(String addonName) { this.addonName = addonName; if(addonName != null){ putQueryParameter("AddonName", addonName); } } public Boolean getForce() { return this.force; } public void setForce(Boolean force) { this.force = force; if(force != null){ putQueryParameter("Force", force.toString()); } } @Override public Class<DeleteAddonReleaseResponse> getResponseClass() { return DeleteAddonReleaseResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/DeleteAddonReleaseResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.DeleteAddonReleaseResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteAddonReleaseResponse extends AcsResponse { private String requestId; private Integer code; private String message; private Boolean success; private String data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getCode() { return this.code; } public void setCode(Integer code) { this.code = code; } public 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; } @Override public DeleteAddonReleaseResponse getInstance(UnmarshallerContext context) { return DeleteAddonReleaseResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/DeleteAlertContactGroupRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class DeleteAlertContactGroupRequest extends RpcAcsRequest<DeleteAlertContactGroupResponse> { private Long contactGroupId; public DeleteAlertContactGroupRequest() { super("ARMS", "2019-08-08", "DeleteAlertContactGroup", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getContactGroupId() { return this.contactGroupId; } public void setContactGroupId(Long contactGroupId) { this.contactGroupId = contactGroupId; if(contactGroupId != null){ putQueryParameter("ContactGroupId", contactGroupId.toString()); } } @Override public Class<DeleteAlertContactGroupResponse> getResponseClass() { return DeleteAlertContactGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/DeleteAlertContactGroupResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.DeleteAlertContactGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteAlertContactGroupResponse extends AcsResponse { private Boolean isSuccess; private String requestId; public Boolean getIsSuccess() { return this.isSuccess; } public void setIsSuccess(Boolean isSuccess) { this.isSuccess = isSuccess; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public DeleteAlertContactGroupResponse getInstance(UnmarshallerContext context) { return DeleteAlertContactGroupResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/DeleteAlertContactRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class DeleteAlertContactRequest extends RpcAcsRequest<DeleteAlertContactResponse> { private Long contactId; public DeleteAlertContactRequest() { super("ARMS", "2019-08-08", "DeleteAlertContact", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getContactId() { return this.contactId; } public void setContactId(Long contactId) { this.contactId = contactId; if(contactId != null){ putQueryParameter("ContactId", contactId.toString()); } } @Override public Class<DeleteAlertContactResponse> getResponseClass() { return DeleteAlertContactResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/DeleteAlertContactResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.DeleteAlertContactResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteAlertContactResponse extends AcsResponse { private Boolean isSuccess; private String requestId; public Boolean getIsSuccess() { return this.isSuccess; } public void setIsSuccess(Boolean isSuccess) { this.isSuccess = isSuccess; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public DeleteAlertContactResponse getInstance(UnmarshallerContext context) { return DeleteAlertContactResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/DeleteAlertRuleRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class DeleteAlertRuleRequest extends RpcAcsRequest<DeleteAlertRuleResponse> { private Long alertId; public DeleteAlertRuleRequest() { super("ARMS", "2019-08-08", "DeleteAlertRule", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getAlertId() { return this.alertId; } public void setAlertId(Long alertId) { this.alertId = alertId; if(alertId != null){ putQueryParameter("AlertId", alertId.toString()); } } @Override public Class<DeleteAlertRuleResponse> getResponseClass() { return DeleteAlertRuleResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/DeleteAlertRuleResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.DeleteAlertRuleResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteAlertRuleResponse extends AcsResponse { private String requestId; private Boolean isSuccess; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getIsSuccess() { return this.isSuccess; } public void setIsSuccess(Boolean isSuccess) { this.isSuccess = isSuccess; } @Override public DeleteAlertRuleResponse getInstance(UnmarshallerContext context) { return DeleteAlertRuleResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/DeleteAlertRulesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class DeleteAlertRulesRequest extends RpcAcsRequest<DeleteAlertRulesResponse> { private String alertIds; public DeleteAlertRulesRequest() { super("ARMS", "2019-08-08", "DeleteAlertRules", "arms"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAlertIds() { return this.alertIds; } public void setAlertIds(String alertIds) { this.alertIds = alertIds; if(alertIds != null){ putQueryParameter("AlertIds", alertIds); } } @Override public Class<DeleteAlertRulesResponse> getResponseClass() { return DeleteAlertRulesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/DeleteAlertRulesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.DeleteAlertRulesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteAlertRulesResponse extends AcsResponse { private Boolean isSuccess; private String requestId; public Boolean getIsSuccess() { return this.isSuccess; } public void setIsSuccess(Boolean isSuccess) { this.isSuccess = isSuccess; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public DeleteAlertRulesResponse getInstance(UnmarshallerContext context) { return DeleteAlertRulesResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/DeleteAppListRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.RpcAcsRequest; import java.util.List; import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.arms.Endpoint; /** * @author auto create * @version */ public class DeleteAppListRequest extends RpcAcsRequest<DeleteAppListResponse> { private List<String> pidss; public DeleteAppListRequest() { super("ARMS", "2019-08-08", "DeleteAppList", "arms"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public List<String> getPidss() { return this.pidss; } public void setPidss(List<String> pidss) { this.pidss = pidss; if (pidss != null) { for (int i = 0; i < pidss.size(); i++) { putQueryParameter("Pids." + (i + 1) , pidss.get(i)); } } } @Override public Class<DeleteAppListResponse> getResponseClass() { return DeleteAppListResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model
java-sources/com/aliyun/aliyun-java-sdk-arms/10.0.3/com/aliyuncs/arms/model/v20190808/DeleteAppListResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.arms.model.v20190808; import com.aliyuncs.AcsResponse; import com.aliyuncs.arms.transform.v20190808.DeleteAppListResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteAppListResponse extends AcsResponse { private String requestId; private String data; private String message; private Boolean success; private Long code; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getData() { return this.data; } public void setData(String data) { this.data = data; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public Boolean getSuccess() { return this.success; } public void setSuccess(Boolean success) { this.success = success; } public Long getCode() { return this.code; } public void setCode(Long code) { this.code = code; } @Override public DeleteAppListResponse getInstance(UnmarshallerContext context) { return DeleteAppListResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }