index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ReplaceCloudGtmInstanceConfigAddressPoolRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ReplaceCloudGtmInstanceConfigAddressPoolRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li>zh-CN: Chinese</li> * <li>en-US (default): English</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>The address pools.</p> */ @NameInMap("AddressPools") public java.util.List<ReplaceCloudGtmInstanceConfigAddressPoolRequestAddressPools> addressPools; /** * <p>The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.</p> * * <strong>example:</strong> * <p>1ae05db4-10e7-11ef-b126-00163e24**22</p> */ @NameInMap("ClientToken") public String clientToken; /** * <p>The configuration ID of the access domain name. Two configuration IDs exist when the access domain name is bound to the same GTM instance but an A record and an AAAA record are configured for the access domain name. The configuration ID uniquely identifies a configuration.</p> * <p>You can call the <a href="~~ListCloudGtmInstanceConfigs~~">ListCloudGtmInstanceConfigs</a> operation to query the configuration ID of the access domain name.</p> * * <strong>example:</strong> * <p>Config-000**11</p> */ @NameInMap("ConfigId") public String configId; /** * <p>The ID of the GTM 3.0 instance for which you want to change address pools.</p> * * <strong>example:</strong> * <p>gtm-cn-wwo3a3hbz**</p> */ @NameInMap("InstanceId") public String instanceId; public static ReplaceCloudGtmInstanceConfigAddressPoolRequest build(java.util.Map<String, ?> map) throws Exception { ReplaceCloudGtmInstanceConfigAddressPoolRequest self = new ReplaceCloudGtmInstanceConfigAddressPoolRequest(); return TeaModel.build(map, self); } public ReplaceCloudGtmInstanceConfigAddressPoolRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public ReplaceCloudGtmInstanceConfigAddressPoolRequest setAddressPools(java.util.List<ReplaceCloudGtmInstanceConfigAddressPoolRequestAddressPools> addressPools) { this.addressPools = addressPools; return this; } public java.util.List<ReplaceCloudGtmInstanceConfigAddressPoolRequestAddressPools> getAddressPools() { return this.addressPools; } public ReplaceCloudGtmInstanceConfigAddressPoolRequest setClientToken(String clientToken) { this.clientToken = clientToken; return this; } public String getClientToken() { return this.clientToken; } public ReplaceCloudGtmInstanceConfigAddressPoolRequest setConfigId(String configId) { this.configId = configId; return this; } public String getConfigId() { return this.configId; } public ReplaceCloudGtmInstanceConfigAddressPoolRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public static class ReplaceCloudGtmInstanceConfigAddressPoolRequestAddressPools extends TeaModel { /** * <p>The ID of the address pool. This ID uniquely identifies the address pool.</p> * <ul> * <li>If you specify this parameter, the address pools that are associated with the desired instance are removed and the instance is associated with new address pools.</li> * <li>If this parameter is left empty, the address pools that are associated with the desired instance are removed and no address pool is associated with the instance.</li> * </ul> * * <strong>example:</strong> * <p>pool-89564542105737**12</p> */ @NameInMap("AddressPoolId") public String addressPoolId; /** * <p>The DNS request sources.</p> */ @NameInMap("RequestSource") public java.util.List<String> requestSource; /** * <p>The sequence number of the new address pool. The address pool with the smallest sequence number is preferentially returned for DNS requests from any source. The sequence number specifies the priority for returning the address pool. A smaller sequence number specifies a higher priority.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("SerialNumber") public Integer serialNumber; /** * <p>The weight value of the new address pool. You can set a different weight value for each address pool. This way, address pools are returned based on the weight values for Domain Name System (DNS) requests. A weight value must be an integer that ranges from 1 to 100.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("WeightValue") public Integer weightValue; public static ReplaceCloudGtmInstanceConfigAddressPoolRequestAddressPools build(java.util.Map<String, ?> map) throws Exception { ReplaceCloudGtmInstanceConfigAddressPoolRequestAddressPools self = new ReplaceCloudGtmInstanceConfigAddressPoolRequestAddressPools(); return TeaModel.build(map, self); } public ReplaceCloudGtmInstanceConfigAddressPoolRequestAddressPools setAddressPoolId(String addressPoolId) { this.addressPoolId = addressPoolId; return this; } public String getAddressPoolId() { return this.addressPoolId; } public ReplaceCloudGtmInstanceConfigAddressPoolRequestAddressPools setRequestSource(java.util.List<String> requestSource) { this.requestSource = requestSource; return this; } public java.util.List<String> getRequestSource() { return this.requestSource; } public ReplaceCloudGtmInstanceConfigAddressPoolRequestAddressPools setSerialNumber(Integer serialNumber) { this.serialNumber = serialNumber; return this; } public Integer getSerialNumber() { return this.serialNumber; } public ReplaceCloudGtmInstanceConfigAddressPoolRequestAddressPools setWeightValue(Integer weightValue) { this.weightValue = weightValue; return this; } public Integer getWeightValue() { return this.weightValue; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ReplaceCloudGtmInstanceConfigAddressPoolResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ReplaceCloudGtmInstanceConfigAddressPoolResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public ReplaceCloudGtmInstanceConfigAddressPoolResponseBody body; public static ReplaceCloudGtmInstanceConfigAddressPoolResponse build(java.util.Map<String, ?> map) throws Exception { ReplaceCloudGtmInstanceConfigAddressPoolResponse self = new ReplaceCloudGtmInstanceConfigAddressPoolResponse(); return TeaModel.build(map, self); } public ReplaceCloudGtmInstanceConfigAddressPoolResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public ReplaceCloudGtmInstanceConfigAddressPoolResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public ReplaceCloudGtmInstanceConfigAddressPoolResponse setBody(ReplaceCloudGtmInstanceConfigAddressPoolResponseBody body) { this.body = body; return this; } public ReplaceCloudGtmInstanceConfigAddressPoolResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ReplaceCloudGtmInstanceConfigAddressPoolResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ReplaceCloudGtmInstanceConfigAddressPoolResponseBody extends TeaModel { /** * <p>Unique request identification code.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <p>Indicates whether the operation was successful, with values: </p> * <ul> * <li>true: Success. </li> * <li>false: Failure.</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("Success") public Boolean success; public static ReplaceCloudGtmInstanceConfigAddressPoolResponseBody build(java.util.Map<String, ?> map) throws Exception { ReplaceCloudGtmInstanceConfigAddressPoolResponseBody self = new ReplaceCloudGtmInstanceConfigAddressPoolResponseBody(); return TeaModel.build(map, self); } public ReplaceCloudGtmInstanceConfigAddressPoolResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public ReplaceCloudGtmInstanceConfigAddressPoolResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ReplaceCloudGtmInstanceConfigAddressPoolShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ReplaceCloudGtmInstanceConfigAddressPoolShrinkRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li>zh-CN: Chinese</li> * <li>en-US (default): English</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>The address pools.</p> */ @NameInMap("AddressPools") public String addressPoolsShrink; /** * <p>The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.</p> * * <strong>example:</strong> * <p>1ae05db4-10e7-11ef-b126-00163e24**22</p> */ @NameInMap("ClientToken") public String clientToken; /** * <p>The configuration ID of the access domain name. Two configuration IDs exist when the access domain name is bound to the same GTM instance but an A record and an AAAA record are configured for the access domain name. The configuration ID uniquely identifies a configuration.</p> * <p>You can call the <a href="~~ListCloudGtmInstanceConfigs~~">ListCloudGtmInstanceConfigs</a> operation to query the configuration ID of the access domain name.</p> * * <strong>example:</strong> * <p>Config-000**11</p> */ @NameInMap("ConfigId") public String configId; /** * <p>The ID of the GTM 3.0 instance for which you want to change address pools.</p> * * <strong>example:</strong> * <p>gtm-cn-wwo3a3hbz**</p> */ @NameInMap("InstanceId") public String instanceId; public static ReplaceCloudGtmInstanceConfigAddressPoolShrinkRequest build(java.util.Map<String, ?> map) throws Exception { ReplaceCloudGtmInstanceConfigAddressPoolShrinkRequest self = new ReplaceCloudGtmInstanceConfigAddressPoolShrinkRequest(); return TeaModel.build(map, self); } public ReplaceCloudGtmInstanceConfigAddressPoolShrinkRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public ReplaceCloudGtmInstanceConfigAddressPoolShrinkRequest setAddressPoolsShrink(String addressPoolsShrink) { this.addressPoolsShrink = addressPoolsShrink; return this; } public String getAddressPoolsShrink() { return this.addressPoolsShrink; } public ReplaceCloudGtmInstanceConfigAddressPoolShrinkRequest setClientToken(String clientToken) { this.clientToken = clientToken; return this; } public String getClientToken() { return this.clientToken; } public ReplaceCloudGtmInstanceConfigAddressPoolShrinkRequest setConfigId(String configId) { this.configId = configId; return this; } public String getConfigId() { return this.configId; } public ReplaceCloudGtmInstanceConfigAddressPoolShrinkRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ResumePdnsServiceRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ResumePdnsServiceRequest extends TeaModel { @NameInMap("Lang") public String lang; @NameInMap("ServiceType") public String serviceType; public static ResumePdnsServiceRequest build(java.util.Map<String, ?> map) throws Exception { ResumePdnsServiceRequest self = new ResumePdnsServiceRequest(); return TeaModel.build(map, self); } public ResumePdnsServiceRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public ResumePdnsServiceRequest setServiceType(String serviceType) { this.serviceType = serviceType; return this; } public String getServiceType() { return this.serviceType; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ResumePdnsServiceResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ResumePdnsServiceResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public ResumePdnsServiceResponseBody body; public static ResumePdnsServiceResponse build(java.util.Map<String, ?> map) throws Exception { ResumePdnsServiceResponse self = new ResumePdnsServiceResponse(); return TeaModel.build(map, self); } public ResumePdnsServiceResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public ResumePdnsServiceResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public ResumePdnsServiceResponse setBody(ResumePdnsServiceResponseBody body) { this.body = body; return this; } public ResumePdnsServiceResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ResumePdnsServiceResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ResumePdnsServiceResponseBody extends TeaModel { @NameInMap("RequestId") public String requestId; public static ResumePdnsServiceResponseBody build(java.util.Map<String, ?> map) throws Exception { ResumePdnsServiceResponseBody self = new ResumePdnsServiceResponseBody(); return TeaModel.build(map, self); } public ResumePdnsServiceResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/RetrieveDomainRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class RetrieveDomainRequest extends TeaModel { /** * <p>The domain name.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The language.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; public static RetrieveDomainRequest build(java.util.Map<String, ?> map) throws Exception { RetrieveDomainRequest self = new RetrieveDomainRequest(); return TeaModel.build(map, self); } public RetrieveDomainRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public RetrieveDomainRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/RetrieveDomainResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class RetrieveDomainResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public RetrieveDomainResponseBody body; public static RetrieveDomainResponse build(java.util.Map<String, ?> map) throws Exception { RetrieveDomainResponse self = new RetrieveDomainResponse(); return TeaModel.build(map, self); } public RetrieveDomainResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public RetrieveDomainResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public RetrieveDomainResponse setBody(RetrieveDomainResponseBody body) { this.body = body; return this; } public RetrieveDomainResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/RetrieveDomainResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class RetrieveDomainResponseBody extends TeaModel { /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>9CC0D642-49D4-48DE-A1A5-9F218652E4A7</p> */ @NameInMap("RequestId") public String requestId; public static RetrieveDomainResponseBody build(java.util.Map<String, ?> map) throws Exception { RetrieveDomainResponseBody self = new RetrieveDomainResponseBody(); return TeaModel.build(map, self); } public RetrieveDomainResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/RollbackGtmRecoveryPlanRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class RollbackGtmRecoveryPlanRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li>zh: Chinese</li> * <li>en: English</li> * </ul> * <p>Default value: en.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The ID of the disaster recovery plan.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>100</p> */ @NameInMap("RecoveryPlanId") public Long recoveryPlanId; public static RollbackGtmRecoveryPlanRequest build(java.util.Map<String, ?> map) throws Exception { RollbackGtmRecoveryPlanRequest self = new RollbackGtmRecoveryPlanRequest(); return TeaModel.build(map, self); } public RollbackGtmRecoveryPlanRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public RollbackGtmRecoveryPlanRequest setRecoveryPlanId(Long recoveryPlanId) { this.recoveryPlanId = recoveryPlanId; return this; } public Long getRecoveryPlanId() { return this.recoveryPlanId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/RollbackGtmRecoveryPlanResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class RollbackGtmRecoveryPlanResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public RollbackGtmRecoveryPlanResponseBody body; public static RollbackGtmRecoveryPlanResponse build(java.util.Map<String, ?> map) throws Exception { RollbackGtmRecoveryPlanResponse self = new RollbackGtmRecoveryPlanResponse(); return TeaModel.build(map, self); } public RollbackGtmRecoveryPlanResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public RollbackGtmRecoveryPlanResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public RollbackGtmRecoveryPlanResponse setBody(RollbackGtmRecoveryPlanResponseBody body) { this.body = body; return this; } public RollbackGtmRecoveryPlanResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/RollbackGtmRecoveryPlanResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class RollbackGtmRecoveryPlanResponseBody extends TeaModel { /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>853805EA-3D47-47D5-9A1A-A45C24313ABD</p> */ @NameInMap("RequestId") public String requestId; public static RollbackGtmRecoveryPlanResponseBody build(java.util.Map<String, ?> map) throws Exception { RollbackGtmRecoveryPlanResponseBody self = new RollbackGtmRecoveryPlanResponseBody(); return TeaModel.build(map, self); } public RollbackGtmRecoveryPlanResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchCloudGtmAddressPoolsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchCloudGtmAddressPoolsRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li>zh-CN: Chinese</li> * <li>en-US (default): English</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>Address pool name, supports fuzzy search for the entered address pool name.</p> * * <strong>example:</strong> * <p>AddressPool-1</p> */ @NameInMap("AddressPoolName") public String addressPoolName; /** * <p>Address pool type, supports precise query for address pool types:</p> * <ul> * <li>IPv4</li> * <li>IPv6</li> * <li>domain</li> * </ul> * * <strong>example:</strong> * <p>IPv4</p> */ @NameInMap("AddressPoolType") public String addressPoolType; /** * <p>Address pool availability status, supporting precise queries for address pool availability:</p> * <ul> * <li>available: Available</li> * <li>unavailable: Unavailable</li> * </ul> * * <strong>example:</strong> * <p>available</p> */ @NameInMap("AvailableStatus") public String availableStatus; /** * <p>The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.</p> * * <strong>example:</strong> * <p>1ae05db4-10e7-11ef-b126-00163e24**22</p> */ @NameInMap("ClientToken") public String clientToken; /** * <p>Address pool enable status, supports precise query of address pool enable status:</p> * <ul> * <li>enable: Enabled status</li> * <li>disable: Disabled status</li> * </ul> * * <strong>example:</strong> * <p>enable</p> */ @NameInMap("EnableStatus") public String enableStatus; /** * <p>The health state of the address pool. You can enter a health state for exact search. Valid values:</p> * <p>ok: The health state of the address pool is normal and all addresses that are referenced by the address pool are available.</p> * <p>ok_alert: The health state of the address pool is warning and some of the addresses that are referenced by the address pool are unavailable. However, the address pool is deemed normal. In this case, only the available addresses are returned for Domain Name System (DNS) requests.</p> * <p>exceptional: The health state of the address pool is abnormal and some or all of the addresses that are referenced by the address pool are unavailable. In this case, the address pool is deemed abnormal.</p> * * <strong>example:</strong> * <p>ok</p> */ @NameInMap("HealthStatus") public String healthStatus; /** * <p>Current page number, starting from 1, default is 1.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of rows per page when paginating queries, with a maximum value of 100 and a default of 20.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>Address pool remarks, supporting fuzzy search for the input remarks.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; public static SearchCloudGtmAddressPoolsRequest build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmAddressPoolsRequest self = new SearchCloudGtmAddressPoolsRequest(); return TeaModel.build(map, self); } public SearchCloudGtmAddressPoolsRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public SearchCloudGtmAddressPoolsRequest setAddressPoolName(String addressPoolName) { this.addressPoolName = addressPoolName; return this; } public String getAddressPoolName() { return this.addressPoolName; } public SearchCloudGtmAddressPoolsRequest setAddressPoolType(String addressPoolType) { this.addressPoolType = addressPoolType; return this; } public String getAddressPoolType() { return this.addressPoolType; } public SearchCloudGtmAddressPoolsRequest setAvailableStatus(String availableStatus) { this.availableStatus = availableStatus; return this; } public String getAvailableStatus() { return this.availableStatus; } public SearchCloudGtmAddressPoolsRequest setClientToken(String clientToken) { this.clientToken = clientToken; return this; } public String getClientToken() { return this.clientToken; } public SearchCloudGtmAddressPoolsRequest setEnableStatus(String enableStatus) { this.enableStatus = enableStatus; return this; } public String getEnableStatus() { return this.enableStatus; } public SearchCloudGtmAddressPoolsRequest setHealthStatus(String healthStatus) { this.healthStatus = healthStatus; return this; } public String getHealthStatus() { return this.healthStatus; } public SearchCloudGtmAddressPoolsRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public SearchCloudGtmAddressPoolsRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public SearchCloudGtmAddressPoolsRequest setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchCloudGtmAddressPoolsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchCloudGtmAddressPoolsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public SearchCloudGtmAddressPoolsResponseBody body; public static SearchCloudGtmAddressPoolsResponse build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmAddressPoolsResponse self = new SearchCloudGtmAddressPoolsResponse(); return TeaModel.build(map, self); } public SearchCloudGtmAddressPoolsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public SearchCloudGtmAddressPoolsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public SearchCloudGtmAddressPoolsResponse setBody(SearchCloudGtmAddressPoolsResponseBody body) { this.body = body; return this; } public SearchCloudGtmAddressPoolsResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchCloudGtmAddressPoolsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchCloudGtmAddressPoolsResponseBody extends TeaModel { /** * <p>The address pools.</p> */ @NameInMap("AddressPools") public SearchCloudGtmAddressPoolsResponseBodyAddressPools addressPools; /** * <p>Current page number, starting from 1, default is 1.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of rows per page when paginating queries, with a maximum value of 100 and a default of 20.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>Unique request identification code.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <p>Total number of address pools matching the query conditions.</p> * * <strong>example:</strong> * <p>11</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <p>Total number of pages.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("TotalPages") public Integer totalPages; public static SearchCloudGtmAddressPoolsResponseBody build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmAddressPoolsResponseBody self = new SearchCloudGtmAddressPoolsResponseBody(); return TeaModel.build(map, self); } public SearchCloudGtmAddressPoolsResponseBody setAddressPools(SearchCloudGtmAddressPoolsResponseBodyAddressPools addressPools) { this.addressPools = addressPools; return this; } public SearchCloudGtmAddressPoolsResponseBodyAddressPools getAddressPools() { return this.addressPools; } public SearchCloudGtmAddressPoolsResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public SearchCloudGtmAddressPoolsResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public SearchCloudGtmAddressPoolsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public SearchCloudGtmAddressPoolsResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public SearchCloudGtmAddressPoolsResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasksHealthTask extends TeaModel { /** * <p>The target service port for health checks. When the Ping protocol is selected for health checks, configuration of the service port is not supported.</p> * * <strong>example:</strong> * <p>80</p> */ @NameInMap("Port") public Integer port; /** * <p>The ID of the health check template associated with the address.</p> * * <strong>example:</strong> * <p>mtp-89518052425100**80</p> */ @NameInMap("TemplateId") public String templateId; /** * <p>Health check template name.</p> * * <strong>example:</strong> * <p>IPv4-Ping</p> */ @NameInMap("TemplateName") public String templateName; public static SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasksHealthTask build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasksHealthTask self = new SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasksHealthTask(); return TeaModel.build(map, self); } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasksHealthTask setPort(Integer port) { this.port = port; return this; } public Integer getPort() { return this.port; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasksHealthTask setTemplateId(String templateId) { this.templateId = templateId; return this; } public String getTemplateId() { return this.templateId; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasksHealthTask setTemplateName(String templateName) { this.templateName = templateName; return this; } public String getTemplateName() { return this.templateName; } } public static class SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasks extends TeaModel { @NameInMap("HealthTask") public java.util.List<SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasksHealthTask> healthTask; public static SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasks build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasks self = new SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasks(); return TeaModel.build(map, self); } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasks setHealthTask(java.util.List<SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasksHealthTask> healthTask) { this.healthTask = healthTask; return this; } public java.util.List<SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasksHealthTask> getHealthTask() { return this.healthTask; } } public static class SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress extends TeaModel { /** * <p>IP address or domain name.</p> * * <strong>example:</strong> * <p>223.5.XX.XX</p> */ @NameInMap("Address") public String address; /** * <p>The address ID. This ID uniquely identifies the address.</p> * * <strong>example:</strong> * <p>addr-895182181143688192</p> */ @NameInMap("AddressId") public String addressId; /** * <p>Address ownership information, not supported in the current version.</p> * * <strong>example:</strong> * <p>Not supported in the current version.</p> */ @NameInMap("AttributeInfo") public String attributeInfo; /** * <p>The failover method that is used if the address fails health checks. Valid values:</p> * <ul> * <li>auto: the automatic mode. The system determines whether to return an address based on the health check results. If the address fails health checks, the system does not return the address. If the address passes health checks, the system returns the address.</li> * <li>manual: the manual mode. If an address is in the unavailable state, the address is not returned for DNS requests even if the address passes health checks. If an address is in the available state, the address is returned for DNS requests even if an alert is triggered when the address fails health checks.</li> * </ul> * * <strong>example:</strong> * <p>auto</p> */ @NameInMap("AvailableMode") public String availableMode; /** * <p>Address availability status:</p> * <ul> * <li>available: Address is available</li> * <li>unavailable: Address is unavailable</li> * </ul> * * <strong>example:</strong> * <p>available</p> */ @NameInMap("AvailableStatus") public String availableStatus; /** * <p>Address creation time.</p> * * <strong>example:</strong> * <p>2024-03-15T01:46Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>Address creation time (timestamp).</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>Address enable status, indicating whether the address is currently available:</p> * <ul> * <li>enable: Enabled status </li> * <li>disable: Disabled status</li> * </ul> * * <strong>example:</strong> * <p>enable</p> */ @NameInMap("EnableStatus") public String enableStatus; /** * <p>The condition for determining the health status of the address. Valid values:</p> * <ul> * <li>any_ok: The health check results of at least one health check template are normal.</li> * <li>p30_ok: The health check results of at least 30% of health check templates are normal.</li> * <li>p50_ok: The health check results of at least 50% of health check templates are normal.</li> * <li>p70_ok: The health check results of at least 70% of health check templates are normal.</li> * <li>all_ok: The health check results of all health check templates are normal.</li> * </ul> * * <strong>example:</strong> * <p>any_ok</p> */ @NameInMap("HealthJudgement") public String healthJudgement; /** * <p>The health check state of the address. Valid values:</p> * <ul> * <li>ok: The address passes all health checks of the referenced health check templates.</li> * <li>ok_alert: The address fails some health checks of the referenced health check templates but the address is deemed normal.</li> * <li>ok_no_monitor: The address does not reference a health check template and is normal.</li> * <li>exceptional: The address fails some or all health checks of the referenced health check templates and the address is deemed abnormal.</li> * </ul> * * <strong>example:</strong> * <p>ok</p> */ @NameInMap("HealthStatus") public String healthStatus; /** * <p>The health check tasks.</p> */ @NameInMap("HealthTasks") public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasks healthTasks; /** * <p>The availability state of the address when AvailableMode is set to manual. Valid values:</p> * <ul> * <li>available: The address is normal. In this state, the address is returned for DNS requests even if an alert is triggered when the address fails health checks.</li> * <li>unavailable: The address is abnormal. In this state, the address is not returned for DNS requests even if the address passes health checks.</li> * </ul> * * <strong>example:</strong> * <p>available</p> */ @NameInMap("ManualAvailableStatus") public String manualAvailableStatus; /** * <p>Address name.</p> * * <strong>example:</strong> * <p>Address-1</p> */ @NameInMap("Name") public String name; /** * <p>Remarks.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; /** * <p>Request source, referring to the source of the request. GTM schedules based on the exit IP of the LocalDNS used by the terminal. If the LocalDNS supports ECS (edns-client-subnet), intelligent scheduling can also be performed based on the IP of the visiting terminal.</p> * * <strong>example:</strong> * <p>default</p> */ @NameInMap("RequestSource") public String requestSource; /** * <p>Sequence number, indicating the priority of address return, where smaller numbers have higher priority.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("SerialNumber") public Integer serialNumber; /** * <p>Address type:</p> * <ul> * <li>IPv4: ipv4 address - IPv6: ipv6 address - domain: domain name</li> * </ul> * * <strong>example:</strong> * <p>IPv4</p> */ @NameInMap("Type") public String type; /** * <p>The last time the address was modified.</p> * * <strong>example:</strong> * <p>2024-03-15T01:46Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <p>The last modification time of the address (timestamp).</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; /** * <p>Weight value (an integer between 1 and 100), allowing different weight values to be set for each address, enabling resolution queries to return addresses according to the weighted ratio.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("WeightValue") public Integer weightValue; public static SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress self = new SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress(); return TeaModel.build(map, self); } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setAddress(String address) { this.address = address; return this; } public String getAddress() { return this.address; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setAddressId(String addressId) { this.addressId = addressId; return this; } public String getAddressId() { return this.addressId; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setAttributeInfo(String attributeInfo) { this.attributeInfo = attributeInfo; return this; } public String getAttributeInfo() { return this.attributeInfo; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setAvailableMode(String availableMode) { this.availableMode = availableMode; return this; } public String getAvailableMode() { return this.availableMode; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setAvailableStatus(String availableStatus) { this.availableStatus = availableStatus; return this; } public String getAvailableStatus() { return this.availableStatus; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setEnableStatus(String enableStatus) { this.enableStatus = enableStatus; return this; } public String getEnableStatus() { return this.enableStatus; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setHealthJudgement(String healthJudgement) { this.healthJudgement = healthJudgement; return this; } public String getHealthJudgement() { return this.healthJudgement; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setHealthStatus(String healthStatus) { this.healthStatus = healthStatus; return this; } public String getHealthStatus() { return this.healthStatus; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setHealthTasks(SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasks healthTasks) { this.healthTasks = healthTasks; return this; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasks getHealthTasks() { return this.healthTasks; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setManualAvailableStatus(String manualAvailableStatus) { this.manualAvailableStatus = manualAvailableStatus; return this; } public String getManualAvailableStatus() { return this.manualAvailableStatus; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setRequestSource(String requestSource) { this.requestSource = requestSource; return this; } public String getRequestSource() { return this.requestSource; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setSerialNumber(Integer serialNumber) { this.serialNumber = serialNumber; return this; } public Integer getSerialNumber() { return this.serialNumber; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setWeightValue(Integer weightValue) { this.weightValue = weightValue; return this; } public Integer getWeightValue() { return this.weightValue; } } public static class SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddresses extends TeaModel { @NameInMap("Address") public java.util.List<SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress> address; public static SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddresses build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddresses self = new SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddresses(); return TeaModel.build(map, self); } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddresses setAddress(java.util.List<SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress> address) { this.address = address; return this; } public java.util.List<SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress> getAddress() { return this.address; } } public static class SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool extends TeaModel { /** * <p>Load balancing policy among addresses in the address pool:</p> * <ul> * <li>round_robin: Round-robin, for any source of DNS resolution requests, returns all addresses and rotates the order of all addresses each time.</li> * <li>sequence: Sequential, for any source of DNS resolution requests, returns the address with the smaller sequence number (the sequence number indicates the priority of the address return, the smaller the higher the priority). If the address with the smaller sequence number is unavailable, return the next address with a smaller sequence number.</li> * <li>weight: Weighted, supports setting different weight values for each address to realize returning addresses according to the weight ratio for resolution queries.</li> * <li>source_nearest: Source-nearest, i.e., intelligent resolution function, where GTM can return different addresses based on the source of different DNS resolution requests, achieving the effect of users accessing nearby.</li> * </ul> * * <strong>example:</strong> * <p>round_robin</p> */ @NameInMap("AddressLbStrategy") public String addressLbStrategy; /** * <p>The ID of the address pool. This ID uniquely identifies the address pool.</p> * * <strong>example:</strong> * <p>pool-895280232254422016</p> */ @NameInMap("AddressPoolId") public String addressPoolId; /** * <p>Address pool name.</p> * * <strong>example:</strong> * <p>AddressPool-1</p> */ @NameInMap("AddressPoolName") public String addressPoolName; /** * <p>Address pool type:</p> * <ul> * <li>IPv4</li> * <li>IPv6</li> * <li>domain</li> * </ul> * * <strong>example:</strong> * <p>IPv4</p> */ @NameInMap("AddressPoolType") public String addressPoolType; /** * <p>The IP addresses or domain names.</p> */ @NameInMap("Addresses") public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddresses addresses; /** * <p>Address pool availability status:</p> * <ul> * <li>available: Available</li> * <li>unavailable: Unavailable</li> * </ul> * * <strong>example:</strong> * <p>available</p> */ @NameInMap("AvailableStatus") public String availableStatus; /** * <p>Address pool creation time.</p> * * <strong>example:</strong> * <p>2024-03-15T01:46Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>Address pool creation time (timestamp).</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>Address pool status:</p> * <ul> * <li>enable: Enabled status</li> * <li>disable: Disabled status</li> * </ul> * * <strong>example:</strong> * <p>enable</p> */ @NameInMap("EnableStatus") public String enableStatus; /** * <p>The condition for determining the health status of the address pool. Valid values:</p> * <ul> * <li>any_ok: At least one address in the address pool is available.</li> * <li>p30_ok: At least 30% of the addresses in the address pool are available.</li> * <li>p50_ok: At least 50% of the addresses in the address pool are available.</li> * <li>p70_ok: At least 70% of the addresses in the address pool are available.</li> * <li>all_ok: All addresses in the address pool are available.</li> * </ul> * * <strong>example:</strong> * <p>any_ok</p> */ @NameInMap("HealthJudgement") public String healthJudgement; /** * <p>The health state of the address pool. Valid values:</p> * <ul> * <li>ok: The health state of the address pool is normal and all addresses that are referenced by the address pool are available.</li> * <li>ok_alert: The health state of the address pool is warning and some of the addresses that are referenced by the address pool are unavailable. However, the address pool is deemed normal. In this case, only the available addresses are returned for DNS requests.</li> * <li>exceptional: The health state of the address pool is abnormal and some or all of the addresses that are referenced by the address pool are unavailable. In this case, the address pool is deemed abnormal.</li> * </ul> * * <strong>example:</strong> * <p>ok</p> */ @NameInMap("HealthStatus") public String healthStatus; /** * <p>Address remarks.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; /** * <p>The mode used if the address with the smallest sequence number is recovered. This parameter is returned only when the policy for load balancing between addresses is sequence. Valid values:</p> * <ul> * <li>preemptive: The address with the smallest sequence number is preferentially used if this address is recovered.</li> * <li>non_preemptive: The current address is still used even if the address with the smallest sequence number is recovered.</li> * </ul> * * <strong>example:</strong> * <p>preemptive</p> */ @NameInMap("SequenceLbStrategyMode") public String sequenceLbStrategyMode; /** * <p>Last modification time of the address pool.</p> * * <strong>example:</strong> * <p>024-03-15T01:46Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <p>Last modification time of the address pool (timestamp).</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; public static SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool self = new SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool(); return TeaModel.build(map, self); } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setAddressLbStrategy(String addressLbStrategy) { this.addressLbStrategy = addressLbStrategy; return this; } public String getAddressLbStrategy() { return this.addressLbStrategy; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setAddressPoolId(String addressPoolId) { this.addressPoolId = addressPoolId; return this; } public String getAddressPoolId() { return this.addressPoolId; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setAddressPoolName(String addressPoolName) { this.addressPoolName = addressPoolName; return this; } public String getAddressPoolName() { return this.addressPoolName; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setAddressPoolType(String addressPoolType) { this.addressPoolType = addressPoolType; return this; } public String getAddressPoolType() { return this.addressPoolType; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setAddresses(SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddresses addresses) { this.addresses = addresses; return this; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddresses getAddresses() { return this.addresses; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setAvailableStatus(String availableStatus) { this.availableStatus = availableStatus; return this; } public String getAvailableStatus() { return this.availableStatus; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setEnableStatus(String enableStatus) { this.enableStatus = enableStatus; return this; } public String getEnableStatus() { return this.enableStatus; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setHealthJudgement(String healthJudgement) { this.healthJudgement = healthJudgement; return this; } public String getHealthJudgement() { return this.healthJudgement; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setHealthStatus(String healthStatus) { this.healthStatus = healthStatus; return this; } public String getHealthStatus() { return this.healthStatus; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setSequenceLbStrategyMode(String sequenceLbStrategyMode) { this.sequenceLbStrategyMode = sequenceLbStrategyMode; return this; } public String getSequenceLbStrategyMode() { return this.sequenceLbStrategyMode; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } } public static class SearchCloudGtmAddressPoolsResponseBodyAddressPools extends TeaModel { @NameInMap("AddressPool") public java.util.List<SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool> addressPool; public static SearchCloudGtmAddressPoolsResponseBodyAddressPools build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmAddressPoolsResponseBodyAddressPools self = new SearchCloudGtmAddressPoolsResponseBodyAddressPools(); return TeaModel.build(map, self); } public SearchCloudGtmAddressPoolsResponseBodyAddressPools setAddressPool(java.util.List<SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool> addressPool) { this.addressPool = addressPool; return this; } public java.util.List<SearchCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool> getAddressPool() { return this.addressPool; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchCloudGtmAddressesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchCloudGtmAddressesRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li>zh-CN: Chinese</li> * <li>en-US (default): English</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>Query by service address with precise conditions, supporting IP addresses or domain names.</p> * * <strong>example:</strong> * <p>223.5.XX.XX</p> */ @NameInMap("Address") public String address; /** * <p>The address ID. This ID uniquely identifies the address.</p> * * <strong>example:</strong> * <p>addr-89518218114368**92</p> */ @NameInMap("AddressId") public String addressId; /** * <p>Search by address availability status with precise conditions:</p> * <ul> * <li>available</li> * <li>unavailable</li> * </ul> * * <strong>example:</strong> * <p>available</p> */ @NameInMap("AvailableStatus") public String availableStatus; /** * <p>Query by exact address enable status:</p> * <ul> * <li>enable: enabled status</li> * <li>disable: disabled status</li> * </ul> * * <strong>example:</strong> * <p>enable</p> */ @NameInMap("EnableStatus") public String enableStatus; /** * <p>The health state of the addresses that you want to query. Valid values:</p> * <ul> * <li>ok: The addresses pass all health checks of the referenced health check templates.</li> * <li>ok_alert: The addresses fail some health checks of the referenced health check templates, but the addresses are deemed available.</li> * <li>ok_no_monitor: The addresses do not reference any health check template.</li> * <li>exceptional: The addresses fail some or all health checks of the referenced health check templates, and the addresses are deemed unavailable.</li> * </ul> * * <strong>example:</strong> * <p>ok</p> */ @NameInMap("HealthStatus") public String healthStatus; /** * <p>Health check template name.</p> * * <strong>example:</strong> * <p>Ping-IPv4</p> */ @NameInMap("MonitorTemplateName") public String monitorTemplateName; /** * <p>The logical condition for querying addresses by name. This parameter is required if you want to query addresses by name. Valid values:</p> * <ul> * <li>and: displays the results that match all search conditions.</li> * <li>or: displays the results that match some or all search conditions.</li> * </ul> * * <strong>example:</strong> * <p>or</p> */ @NameInMap("NameSearchCondition") public String nameSearchCondition; /** * <p>Address name, usually for users to distinguish between different addresses.</p> */ @NameInMap("Names") public java.util.List<String> names; /** * <p>Current page number, starting from 1, default is 1.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of rows per page when paginating queries, with a maximum value of 100 and a default of 20.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>The logical condition for querying addresses by additional description. This parameter is required if you want to query addresses by additional description. Valid values:</p> * <p>and: displays the results that match all search conditions.</p> * <p>or: displays the results that match some or all search conditions.</p> * * <strong>example:</strong> * <p>or</p> */ @NameInMap("RemarkSearchCondition") public String remarkSearchCondition; /** * <p>Remarks for the address.</p> */ @NameInMap("Remarks") public java.util.List<String> remarks; /** * <p>Search precisely by address type conditions:</p> * <ul> * <li>IPv4</li> * <li>IPv6</li> * <li>domain</li> * </ul> * * <strong>example:</strong> * <p>IPv4</p> */ @NameInMap("Type") public String type; public static SearchCloudGtmAddressesRequest build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmAddressesRequest self = new SearchCloudGtmAddressesRequest(); return TeaModel.build(map, self); } public SearchCloudGtmAddressesRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public SearchCloudGtmAddressesRequest setAddress(String address) { this.address = address; return this; } public String getAddress() { return this.address; } public SearchCloudGtmAddressesRequest setAddressId(String addressId) { this.addressId = addressId; return this; } public String getAddressId() { return this.addressId; } public SearchCloudGtmAddressesRequest setAvailableStatus(String availableStatus) { this.availableStatus = availableStatus; return this; } public String getAvailableStatus() { return this.availableStatus; } public SearchCloudGtmAddressesRequest setEnableStatus(String enableStatus) { this.enableStatus = enableStatus; return this; } public String getEnableStatus() { return this.enableStatus; } public SearchCloudGtmAddressesRequest setHealthStatus(String healthStatus) { this.healthStatus = healthStatus; return this; } public String getHealthStatus() { return this.healthStatus; } public SearchCloudGtmAddressesRequest setMonitorTemplateName(String monitorTemplateName) { this.monitorTemplateName = monitorTemplateName; return this; } public String getMonitorTemplateName() { return this.monitorTemplateName; } public SearchCloudGtmAddressesRequest setNameSearchCondition(String nameSearchCondition) { this.nameSearchCondition = nameSearchCondition; return this; } public String getNameSearchCondition() { return this.nameSearchCondition; } public SearchCloudGtmAddressesRequest setNames(java.util.List<String> names) { this.names = names; return this; } public java.util.List<String> getNames() { return this.names; } public SearchCloudGtmAddressesRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public SearchCloudGtmAddressesRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public SearchCloudGtmAddressesRequest setRemarkSearchCondition(String remarkSearchCondition) { this.remarkSearchCondition = remarkSearchCondition; return this; } public String getRemarkSearchCondition() { return this.remarkSearchCondition; } public SearchCloudGtmAddressesRequest setRemarks(java.util.List<String> remarks) { this.remarks = remarks; return this; } public java.util.List<String> getRemarks() { return this.remarks; } public SearchCloudGtmAddressesRequest setType(String type) { this.type = type; return this; } public String getType() { return this.type; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchCloudGtmAddressesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchCloudGtmAddressesResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public SearchCloudGtmAddressesResponseBody body; public static SearchCloudGtmAddressesResponse build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmAddressesResponse self = new SearchCloudGtmAddressesResponse(); return TeaModel.build(map, self); } public SearchCloudGtmAddressesResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public SearchCloudGtmAddressesResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public SearchCloudGtmAddressesResponse setBody(SearchCloudGtmAddressesResponseBody body) { this.body = body; return this; } public SearchCloudGtmAddressesResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchCloudGtmAddressesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchCloudGtmAddressesResponseBody extends TeaModel { /** * <p>The addresses.</p> */ @NameInMap("Addresses") public SearchCloudGtmAddressesResponseBodyAddresses addresses; /** * <p>Current page number, starting from <strong>1</strong>, default is <strong>1</strong>.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of rows per page when paginating queries, with a maximum value of <strong>100</strong> and a default of <strong>20</strong>.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>Unique request identification code.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <p>Total number of address entries that meet the query conditions.</p> * * <strong>example:</strong> * <p>15</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <p>Total number of pages.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("TotalPages") public Integer totalPages; public static SearchCloudGtmAddressesResponseBody build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmAddressesResponseBody self = new SearchCloudGtmAddressesResponseBody(); return TeaModel.build(map, self); } public SearchCloudGtmAddressesResponseBody setAddresses(SearchCloudGtmAddressesResponseBodyAddresses addresses) { this.addresses = addresses; return this; } public SearchCloudGtmAddressesResponseBodyAddresses getAddresses() { return this.addresses; } public SearchCloudGtmAddressesResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public SearchCloudGtmAddressesResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public SearchCloudGtmAddressesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public SearchCloudGtmAddressesResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public SearchCloudGtmAddressesResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class SearchCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask extends TeaModel { /** * <p>The state of the health check task. Valid values:</p> * <ul> * <li>ok: The task is normal.</li> * <li>alert: The task has an alert.</li> * <li>no_data: No data is available. In most cases, the health check task is newly created and no data is collected.</li> * </ul> * * <strong>example:</strong> * <p>ok</p> */ @NameInMap("MonitorStatus") public String monitorStatus; /** * <p>The target service port for health check probes. When the health check protocol is set to Ping, configuration of the service port is not supported.</p> * * <strong>example:</strong> * <p>80</p> */ @NameInMap("Port") public Integer port; /** * <p>The ID of the health check template associated with the address.</p> * * <strong>example:</strong> * <p>mtp-895180524251002880</p> */ @NameInMap("TemplateId") public String templateId; /** * <p>Health check template name.</p> * * <strong>example:</strong> * <p>IPv4-Ping</p> */ @NameInMap("TemplateName") public String templateName; public static SearchCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask self = new SearchCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask(); return TeaModel.build(map, self); } public SearchCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask setMonitorStatus(String monitorStatus) { this.monitorStatus = monitorStatus; return this; } public String getMonitorStatus() { return this.monitorStatus; } public SearchCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask setPort(Integer port) { this.port = port; return this; } public Integer getPort() { return this.port; } public SearchCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask setTemplateId(String templateId) { this.templateId = templateId; return this; } public String getTemplateId() { return this.templateId; } public SearchCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask setTemplateName(String templateName) { this.templateName = templateName; return this; } public String getTemplateName() { return this.templateName; } } public static class SearchCloudGtmAddressesResponseBodyAddressesAddressHealthTasks extends TeaModel { @NameInMap("HealthTask") public java.util.List<SearchCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask> healthTask; public static SearchCloudGtmAddressesResponseBodyAddressesAddressHealthTasks build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmAddressesResponseBodyAddressesAddressHealthTasks self = new SearchCloudGtmAddressesResponseBodyAddressesAddressHealthTasks(); return TeaModel.build(map, self); } public SearchCloudGtmAddressesResponseBodyAddressesAddressHealthTasks setHealthTask(java.util.List<SearchCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask> healthTask) { this.healthTask = healthTask; return this; } public java.util.List<SearchCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask> getHealthTask() { return this.healthTask; } } public static class SearchCloudGtmAddressesResponseBodyAddressesAddress extends TeaModel { /** * <p>IP address or domain name.</p> * * <strong>example:</strong> * <p>223.5.XX.XX</p> */ @NameInMap("Address") public String address; /** * <p>ID of the address, unique identifier for the address.</p> * * <strong>example:</strong> * <p>addr-89518218114368**92</p> */ @NameInMap("AddressId") public String addressId; /** * <p>Address ownership information, not supported in the current version.</p> * * <strong>example:</strong> * <p>The parameter should be none.</p> */ @NameInMap("AttributeInfo") public String attributeInfo; /** * <p>The failover method that is used if the address fails health checks. Valid values:</p> * <ul> * <li>auto: the automatic mode. The system determines whether to return an address based on the health check results. If the address fails health checks, the system does not return the address. If the address passes health checks, the system returns the address.</li> * <li>manual: the manual mode. If an address is in the unavailable state, the address is not returned for Domain Name System (DNS) requests even if the address passes health checks. If an address is in the available state, the address is returned for DNS requests even if an alert is triggered when the address fails health checks.</li> * </ul> * * <strong>example:</strong> * <p>auto</p> */ @NameInMap("AvailableMode") public String availableMode; /** * <p>The availability state of the address when AvailableMode is set to manual. Valid values:</p> * <ul> * <li>available: The address is normal. In this state, the address is returned for DNS requests even if an alert is triggered when the address fails health checks.</li> * <li>unavailable: The address is abnormal. In this state, the address is not returned for DNS requests even if the address passes health checks.</li> * </ul> * * <strong>example:</strong> * <p>available</p> */ @NameInMap("AvailableStatus") public String availableStatus; /** * <p>Creation time of the address.</p> * * <strong>example:</strong> * <p>2024-03-23T13:09Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>Creation time of the address (timestamp).</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>Current activation status of the address:</p> * <ul> * <li>enable: Enabled status</li> * <li>disable: Disabled status</li> * </ul> * * <strong>example:</strong> * <p>enable</p> */ @NameInMap("EnableStatus") public String enableStatus; /** * <p>The condition for determining the health status of the address. Valid values:</p> * <ul> * <li>any_ok: The health check results of at least one health check template are normal.</li> * <li>p30_ok: The health check results of at least 30% of health check templates are normal.</li> * <li>p50_ok: The health check results of at least 50% of health check templates are normal.</li> * <li>p70_ok: The health check results of at least 70% of health check templates are normal.</li> * <li>all_ok: The health check results of all health check templates are normal.</li> * </ul> * * <strong>example:</strong> * <p>p50_ok</p> */ @NameInMap("HealthJudgement") public String healthJudgement; /** * <p>The health check state of the address. Valid values:</p> * <ul> * <li>ok: The address passes all health checks of the referenced health check templates.</li> * <li>ok_alert: The address fails some health checks of the referenced health check templates, but the address is deemed available.</li> * <li>ok_no_monitor: The address does not reference any health check template.</li> * <li>exceptional: The address fails some or all health checks of the referenced health check templates, and the address is deemed unavailable.</li> * </ul> * * <strong>example:</strong> * <p>ok</p> */ @NameInMap("HealthStatus") public String healthStatus; /** * <p>The health check tasks.</p> */ @NameInMap("HealthTasks") public SearchCloudGtmAddressesResponseBodyAddressesAddressHealthTasks healthTasks; /** * <p>The availability state of the address when AvailableMode is set to manual. Valid values:</p> * <ul> * <li>available: The address is normal. In this state, the address is returned for DNS requests even if an alert is triggered when the address fails health checks.</li> * <li>unavailable: The address is abnormal. In this state, the address is not returned for DNS requests even if the address passes health checks.</li> * </ul> * * <strong>example:</strong> * <p>available</p> */ @NameInMap("ManualAvailableStatus") public String manualAvailableStatus; /** * <p>Address name.</p> * * <strong>example:</strong> * <p>Address-1</p> */ @NameInMap("Name") public String name; /** * <p>Remarks.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; /** * <p>Address type:</p> * <ul> * <li>IPv4: ipv4 address - IPv6: ipv6 address - domain: domain name</li> * </ul> * * <strong>example:</strong> * <p>IPv4</p> */ @NameInMap("Type") public String type; /** * <p>The last modification time of the address.</p> * * <strong>example:</strong> * <p>2024-03-29T13:20Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <p>The last modification time of the address (timestamp).</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; public static SearchCloudGtmAddressesResponseBodyAddressesAddress build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmAddressesResponseBodyAddressesAddress self = new SearchCloudGtmAddressesResponseBodyAddressesAddress(); return TeaModel.build(map, self); } public SearchCloudGtmAddressesResponseBodyAddressesAddress setAddress(String address) { this.address = address; return this; } public String getAddress() { return this.address; } public SearchCloudGtmAddressesResponseBodyAddressesAddress setAddressId(String addressId) { this.addressId = addressId; return this; } public String getAddressId() { return this.addressId; } public SearchCloudGtmAddressesResponseBodyAddressesAddress setAttributeInfo(String attributeInfo) { this.attributeInfo = attributeInfo; return this; } public String getAttributeInfo() { return this.attributeInfo; } public SearchCloudGtmAddressesResponseBodyAddressesAddress setAvailableMode(String availableMode) { this.availableMode = availableMode; return this; } public String getAvailableMode() { return this.availableMode; } public SearchCloudGtmAddressesResponseBodyAddressesAddress setAvailableStatus(String availableStatus) { this.availableStatus = availableStatus; return this; } public String getAvailableStatus() { return this.availableStatus; } public SearchCloudGtmAddressesResponseBodyAddressesAddress setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public SearchCloudGtmAddressesResponseBodyAddressesAddress setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public SearchCloudGtmAddressesResponseBodyAddressesAddress setEnableStatus(String enableStatus) { this.enableStatus = enableStatus; return this; } public String getEnableStatus() { return this.enableStatus; } public SearchCloudGtmAddressesResponseBodyAddressesAddress setHealthJudgement(String healthJudgement) { this.healthJudgement = healthJudgement; return this; } public String getHealthJudgement() { return this.healthJudgement; } public SearchCloudGtmAddressesResponseBodyAddressesAddress setHealthStatus(String healthStatus) { this.healthStatus = healthStatus; return this; } public String getHealthStatus() { return this.healthStatus; } public SearchCloudGtmAddressesResponseBodyAddressesAddress setHealthTasks(SearchCloudGtmAddressesResponseBodyAddressesAddressHealthTasks healthTasks) { this.healthTasks = healthTasks; return this; } public SearchCloudGtmAddressesResponseBodyAddressesAddressHealthTasks getHealthTasks() { return this.healthTasks; } public SearchCloudGtmAddressesResponseBodyAddressesAddress setManualAvailableStatus(String manualAvailableStatus) { this.manualAvailableStatus = manualAvailableStatus; return this; } public String getManualAvailableStatus() { return this.manualAvailableStatus; } public SearchCloudGtmAddressesResponseBodyAddressesAddress setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public SearchCloudGtmAddressesResponseBodyAddressesAddress setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public SearchCloudGtmAddressesResponseBodyAddressesAddress setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public SearchCloudGtmAddressesResponseBodyAddressesAddress setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public SearchCloudGtmAddressesResponseBodyAddressesAddress setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } } public static class SearchCloudGtmAddressesResponseBodyAddresses extends TeaModel { @NameInMap("Address") public java.util.List<SearchCloudGtmAddressesResponseBodyAddressesAddress> address; public static SearchCloudGtmAddressesResponseBodyAddresses build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmAddressesResponseBodyAddresses self = new SearchCloudGtmAddressesResponseBodyAddresses(); return TeaModel.build(map, self); } public SearchCloudGtmAddressesResponseBodyAddresses setAddress(java.util.List<SearchCloudGtmAddressesResponseBodyAddressesAddress> address) { this.address = address; return this; } public java.util.List<SearchCloudGtmAddressesResponseBodyAddressesAddress> getAddress() { return this.address; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchCloudGtmInstanceConfigsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchCloudGtmInstanceConfigsRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li>zh-CN: Chinese</li> * <li>en-US (default): English</li> * </ul> * * <strong>example:</strong> * <p>zh-CN</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>The availability state of the access domain name. Valid values:</p> * <ul> * <li>available: If the access domain name is <strong>enabled</strong> and the health state is <strong>normal</strong>, the access domain name is deemed <strong>available</strong>.</li> * <li>unavailable: If the access domain name is <strong>disabled</strong> or the health state is <strong>abnormal</strong>, the access domain name is deemed <strong>unavailable</strong>.</li> * </ul> * * <strong>example:</strong> * <p>available</p> */ @NameInMap("AvailableStatus") public String availableStatus; /** * <p>The client token that is used to ensure the idempotence of the request. You can specify a custom value for this parameter, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.</p> * * <strong>example:</strong> * <p>1ae05db4-10e7-11ef-b126-00163e24**22</p> */ @NameInMap("ClientToken") public String clientToken; /** * <p>The enabling state of the access domain name. Valid values:</p> * <ul> * <li>enable: The access domain name is enabled and the intelligent scheduling policy of the corresponding GTM instance takes effect.</li> * <li>disable: The access domain name is disabled and the intelligent scheduling policy of the corresponding GTM instance does not take effect.</li> * </ul> * * <strong>example:</strong> * <p>enable</p> */ @NameInMap("EnableStatus") public String enableStatus; /** * <p>The health state of the access domain name. Valid values:</p> * <ul> * <li>ok: The health state of the access domain name is normal and all address pools that are referenced by the access domain name are available.</li> * <li>ok_alert: The health state of the access domain name is warning and some of the address pools that are referenced by the access domain name are unavailable. In this case, only the available address pools are returned for Domain Name System (DNS) requests.</li> * <li>exceptional: The health state of the access domain name is abnormal and all address pools that are referenced by the access domain name are unavailable. In this case, addresses in the non-empty address pool with the smallest sequence number are preferentially used for fallback resolution. This returns DNS results for clients as much as possible.</li> * </ul> * * <strong>example:</strong> * <p>ok</p> */ @NameInMap("HealthStatus") public String healthStatus; /** * <p>The ID of the Global Traffic Manager (GTM) 3.0 instance.</p> * * <strong>example:</strong> * <p>gtm-cn-wwo3a3hbz**</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>Current page number, starting from 1, default is 1.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of rows per page when paginating queries, with a maximum value of <strong>100</strong>, and a default of <strong>20</strong>.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>Remarks for the domain instance.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; /** * <p>The access domain name. The value of this parameter is composed of the value of ScheduleHostname and the value of ScheduleZoneName.</p> * * <strong>example:</strong> * <p><a href="http://www.example.com">www.example.com</a></p> */ @NameInMap("ScheduleDomainName") public String scheduleDomainName; /** * <p>The zone such as example.com or subzone such as a.example.com of the access domain name. In most cases, the zone or subzone is hosted by the Public Authoritative DNS module of Alibaba Cloud DNS. This zone belongs to the account to which the GTM instance belongs.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("ScheduleZoneName") public String scheduleZoneName; public static SearchCloudGtmInstanceConfigsRequest build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmInstanceConfigsRequest self = new SearchCloudGtmInstanceConfigsRequest(); return TeaModel.build(map, self); } public SearchCloudGtmInstanceConfigsRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public SearchCloudGtmInstanceConfigsRequest setAvailableStatus(String availableStatus) { this.availableStatus = availableStatus; return this; } public String getAvailableStatus() { return this.availableStatus; } public SearchCloudGtmInstanceConfigsRequest setClientToken(String clientToken) { this.clientToken = clientToken; return this; } public String getClientToken() { return this.clientToken; } public SearchCloudGtmInstanceConfigsRequest setEnableStatus(String enableStatus) { this.enableStatus = enableStatus; return this; } public String getEnableStatus() { return this.enableStatus; } public SearchCloudGtmInstanceConfigsRequest setHealthStatus(String healthStatus) { this.healthStatus = healthStatus; return this; } public String getHealthStatus() { return this.healthStatus; } public SearchCloudGtmInstanceConfigsRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public SearchCloudGtmInstanceConfigsRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public SearchCloudGtmInstanceConfigsRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public SearchCloudGtmInstanceConfigsRequest setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public SearchCloudGtmInstanceConfigsRequest setScheduleDomainName(String scheduleDomainName) { this.scheduleDomainName = scheduleDomainName; return this; } public String getScheduleDomainName() { return this.scheduleDomainName; } public SearchCloudGtmInstanceConfigsRequest setScheduleZoneName(String scheduleZoneName) { this.scheduleZoneName = scheduleZoneName; return this; } public String getScheduleZoneName() { return this.scheduleZoneName; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchCloudGtmInstanceConfigsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchCloudGtmInstanceConfigsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public SearchCloudGtmInstanceConfigsResponseBody body; public static SearchCloudGtmInstanceConfigsResponse build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmInstanceConfigsResponse self = new SearchCloudGtmInstanceConfigsResponse(); return TeaModel.build(map, self); } public SearchCloudGtmInstanceConfigsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public SearchCloudGtmInstanceConfigsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public SearchCloudGtmInstanceConfigsResponse setBody(SearchCloudGtmInstanceConfigsResponseBody body) { this.body = body; return this; } public SearchCloudGtmInstanceConfigsResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchCloudGtmInstanceConfigsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchCloudGtmInstanceConfigsResponseBody extends TeaModel { /** * <p>The instances list.</p> */ @NameInMap("InstanceConfigs") public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigs instanceConfigs; /** * <p>Current page number, starting from 1, default is 1.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of rows per page when paginating queries, with a maximum value of <strong>100</strong>, and a default of <strong>20</strong>.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>Unique request identification code.</p> * * <strong>example:</strong> * <p>6AEC7A64-3CB1-4C49-8B35-0B901F1E26BF</p> */ @NameInMap("RequestId") public String requestId; /** * <p>Total number of instance configuration entries.</p> * * <strong>example:</strong> * <p>15</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <p>Total number of pages.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("TotalPages") public Integer totalPages; public static SearchCloudGtmInstanceConfigsResponseBody build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmInstanceConfigsResponseBody self = new SearchCloudGtmInstanceConfigsResponseBody(); return TeaModel.build(map, self); } public SearchCloudGtmInstanceConfigsResponseBody setInstanceConfigs(SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigs instanceConfigs) { this.instanceConfigs = instanceConfigs; return this; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigs getInstanceConfigs() { return this.instanceConfigs; } public SearchCloudGtmInstanceConfigsResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public SearchCloudGtmInstanceConfigsResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public SearchCloudGtmInstanceConfigsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public SearchCloudGtmInstanceConfigsResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public SearchCloudGtmInstanceConfigsResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPoolRequestSource extends TeaModel { @NameInMap("RequestSource") public java.util.List<String> requestSource; public static SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPoolRequestSource build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPoolRequestSource self = new SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPoolRequestSource(); return TeaModel.build(map, self); } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPoolRequestSource setRequestSource(java.util.List<String> requestSource) { this.requestSource = requestSource; return this; } public java.util.List<String> getRequestSource() { return this.requestSource; } } public static class SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool extends TeaModel { /** * <p>Load balancing policy among addresses in the address pool:</p> * <ul> * <li>round_robin: Round-robin, where for any source of DNS resolution requests, all addresses are returned, with a rotation of the order for every request.</li> * <li>sequence: Sequential, where for any source of DNS resolution requests, the address with the lower sequence number (indicating a higher priority, the smaller the number, the higher the priority) is returned. If the address with the lower sequence number is unavailable, the next address with a lower sequence number is returned.</li> * <li>weight: Weighted, supporting the setting of different weight values for each address to realize returning addresses according to the ratio of weights in DNS query resolutions.</li> * <li>source_nearest: Source-nearest, referring to the intelligent resolution feature, where GTM can return different addresses based on the source of different DNS resolution requests, achieving the effect of users accessing the nearest server.</li> * </ul> * * <strong>example:</strong> * <p>round_robin</p> */ @NameInMap("AddressLbStrategy") public String addressLbStrategy; /** * <p>Address pool ID, uniquely identifying the address pool.</p> * * <strong>example:</strong> * <p>pool-89564504435014**60</p> */ @NameInMap("AddressPoolId") public String addressPoolId; /** * <p>Address pool name.</p> * * <strong>example:</strong> * <p>AddressPool-1</p> */ @NameInMap("AddressPoolName") public String addressPoolName; /** * <p>Address pool type:</p> * <ul> * <li>IPv4</li> * <li>IPv6</li> * <li>domain</li> * </ul> * * <strong>example:</strong> * <p>IPv4</p> */ @NameInMap("AddressPoolType") public String addressPoolType; /** * <p>Address pool availability status:</p> * <ul> * <li>available: Available</li> * <li>unavailable: Unavailable</li> * </ul> * * <strong>example:</strong> * <p>available</p> */ @NameInMap("AvailableStatus") public String availableStatus; /** * <p>Address pool creation time.</p> * * <strong>example:</strong> * <p>2024-03-15T01:46Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>Address pool creation time (timestamp).</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>Address pool status:</p> * <ul> * <li>enable: Enabled status</li> * <li>disable: Disabled status</li> * </ul> * * <strong>example:</strong> * <p>enable</p> */ @NameInMap("EnableStatus") public String enableStatus; /** * <p>The condition for determining the health status of the address pool. Valid values:</p> * <ul> * <li>any_ok: At least one address in the address pool is available.</li> * <li>p30_ok: At least 30% of the addresses in the address pool are available.</li> * <li>p50_ok: At least 50% of the addresses in the address pool are available.</li> * <li>p70_ok: At least 70% of the addresses in the address pool are available.</li> * <li>all_ok: All addresses in the address pool are available.</li> * </ul> * * <strong>example:</strong> * <p>any_ok</p> */ @NameInMap("HealthJudgement") public String healthJudgement; /** * <p>The health state of the address pool. Valid values:</p> * <ul> * <li>ok: The health state of the address pool is normal and all addresses that are referenced by the address pool are available.</li> * <li>ok_alert: The health state of the address pool is warning and some of the addresses that are referenced by the address pool are unavailable. However, the address pool is deemed normal. In this case, only the available addresses are returned for DNS requests.</li> * <li>exceptional: The health state of the address pool is abnormal and some or all of the addresses that are referenced by the address pool are unavailable. In this case, the address pool is deemed abnormal.</li> * </ul> * * <strong>example:</strong> * <p>ok</p> */ @NameInMap("HealthStatus") public String healthStatus; /** * <p>Parse the request source list.</p> */ @NameInMap("RequestSource") public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPoolRequestSource requestSource; /** * <p>Indicates whether it is a sequential (non-preemptive) scheduling object for hybrid cloud management scenarios: </p> * <ul> * <li>true: yes </li> * <li>false: no</li> * </ul> * * <strong>example:</strong> * <p>false</p> */ @NameInMap("SeqNonPreemptiveSchedule") public Boolean seqNonPreemptiveSchedule; /** * <p>The mode used if the address with the smallest sequence number is recovered. This parameter is required only when the policy for load balancing between addresses is sequence. Valid values:</p> * <ul> * <li>preemptive: The address with the smallest sequence number is preferentially used if this address is recovered.</li> * <li>non_preemptive: The current address is still used even if the address with the smallest sequence number is recovered.</li> * </ul> * * <strong>example:</strong> * <p>preemptive</p> */ @NameInMap("SequenceLbStrategyMode") public String sequenceLbStrategyMode; /** * <p>Sequence number. For any parsing request, the address pool with the smaller sequence number (indicating the priority of the address pool returned, with smaller numbers having higher priority) will be returned.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("SerialNumber") public Integer serialNumber; /** * <p>Last modification time of the address pool.</p> * * <strong>example:</strong> * <p>2024-03-15T01:46Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <p>Update time (timestamp).</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; /** * <p>Weight value (an integer between 1 and 100, inclusive), allowing different weight values to be set for each address pool, implementing the return of address pools according to weight ratios in resolution queries.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("WeightValue") public Integer weightValue; public static SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool self = new SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool(); return TeaModel.build(map, self); } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setAddressLbStrategy(String addressLbStrategy) { this.addressLbStrategy = addressLbStrategy; return this; } public String getAddressLbStrategy() { return this.addressLbStrategy; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setAddressPoolId(String addressPoolId) { this.addressPoolId = addressPoolId; return this; } public String getAddressPoolId() { return this.addressPoolId; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setAddressPoolName(String addressPoolName) { this.addressPoolName = addressPoolName; return this; } public String getAddressPoolName() { return this.addressPoolName; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setAddressPoolType(String addressPoolType) { this.addressPoolType = addressPoolType; return this; } public String getAddressPoolType() { return this.addressPoolType; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setAvailableStatus(String availableStatus) { this.availableStatus = availableStatus; return this; } public String getAvailableStatus() { return this.availableStatus; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setEnableStatus(String enableStatus) { this.enableStatus = enableStatus; return this; } public String getEnableStatus() { return this.enableStatus; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setHealthJudgement(String healthJudgement) { this.healthJudgement = healthJudgement; return this; } public String getHealthJudgement() { return this.healthJudgement; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setHealthStatus(String healthStatus) { this.healthStatus = healthStatus; return this; } public String getHealthStatus() { return this.healthStatus; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setRequestSource(SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPoolRequestSource requestSource) { this.requestSource = requestSource; return this; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPoolRequestSource getRequestSource() { return this.requestSource; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setSeqNonPreemptiveSchedule(Boolean seqNonPreemptiveSchedule) { this.seqNonPreemptiveSchedule = seqNonPreemptiveSchedule; return this; } public Boolean getSeqNonPreemptiveSchedule() { return this.seqNonPreemptiveSchedule; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setSequenceLbStrategyMode(String sequenceLbStrategyMode) { this.sequenceLbStrategyMode = sequenceLbStrategyMode; return this; } public String getSequenceLbStrategyMode() { return this.sequenceLbStrategyMode; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setSerialNumber(Integer serialNumber) { this.serialNumber = serialNumber; return this; } public Integer getSerialNumber() { return this.serialNumber; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setWeightValue(Integer weightValue) { this.weightValue = weightValue; return this; } public Integer getWeightValue() { return this.weightValue; } } public static class SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPools extends TeaModel { @NameInMap("AddressPool") public java.util.List<SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool> addressPool; public static SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPools build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPools self = new SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPools(); return TeaModel.build(map, self); } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPools setAddressPool(java.util.List<SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool> addressPool) { this.addressPool = addressPool; return this; } public java.util.List<SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool> getAddressPool() { return this.addressPool; } } public static class SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig extends TeaModel { /** * <p>The policy for load balancing between address pools. Valid values:</p> * <ul> * <li>round_robin: All address pools are returned for DNS requests from any source. All address pools are sorted in round-robin mode each time they are returned.</li> * <li>sequence: The address pool with the smallest sequence number is preferentially returned for DNS requests from any source. The sequence number indicates the priority for returning the address pool. A smaller sequence number indicates a higher priority. If the address pool with the smallest sequence number is unavailable, the address pool with the second smallest sequence number is returned.</li> * <li>weight: You can set a different weight value for each address pool. This way, address pools are returned based on the weight values.</li> * <li>source_nearest: Different address pools are returned based on the sources of DNS requests. This way, users can access nearby address pools.</li> * </ul> * * <strong>example:</strong> * <p>round_robin</p> */ @NameInMap("AddressPoolLbStrategy") public String addressPoolLbStrategy; /** * <p>The address pools.</p> */ @NameInMap("AddressPools") public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPools addressPools; /** * <p>The availability state of the access domain name. Valid values:</p> * <ul> * <li>available: If the access domain name is <strong>enabled</strong> and the health state is <strong>normal</strong>, the access domain name is deemed <strong>available</strong>.</li> * <li>unavailable: If the access domain name is <strong>disabled</strong> or the health state is <strong>abnormal</strong>, the access domain name is deemed <strong>unavailable</strong>.</li> * </ul> * * <strong>example:</strong> * <p>available</p> */ @NameInMap("AvailableStatus") public String availableStatus; /** * <p>The commodity code. Valid values:</p> * <ul> * <li>dns_gtm_public_cn: the commodity code on the China site (aliyun.com)</li> * <li>dns_gtm_public_intl: the commodity code on the international site (alibabacloud.com)</li> * </ul> * * <strong>example:</strong> * <p>dns_gtm_public_cn</p> */ @NameInMap("CommodityCode") public String commodityCode; /** * <p>The configuration ID of the access domain name. Two configuration IDs exist when the access domain name is bound to the same GTM instance but an A record and an AAAA record are configured for the access domain name. The configuration ID uniquely identifies a configuration.</p> * * <strong>example:</strong> * <p>Config-000**11</p> */ @NameInMap("ConfigId") public String configId; /** * <p>Domain instance creation time.</p> * * <strong>example:</strong> * <p>2024-03-15T01:46Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>Domain instance creation time (timestamp).</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>The enabling state of the access domain name. Valid values:</p> * <ul> * <li>enable: The access domain name is enabled and the intelligent scheduling policy of the corresponding GTM instance takes effect.</li> * <li>disable: The access domain name is disabled and the intelligent scheduling policy of the corresponding GTM instance does not take effect.</li> * </ul> * * <strong>example:</strong> * <p>enable</p> */ @NameInMap("EnableStatus") public String enableStatus; /** * <p>The health state of the access domain name. Valid values:</p> * <ul> * <li>ok: The health state of the access domain name is normal and all address pools that are referenced by the access domain name are available.</li> * <li>ok_alert: The health state of the access domain name is warning and some of the address pools that are referenced by the access domain name are unavailable. In this case, only the available address pools are returned for DNS requests.</li> * <li>exceptional: The health state of the access domain name is abnormal and all address pools that are referenced by the access domain name are unavailable. In this case, addresses in the non-empty address pool with the smallest sequence number are preferentially used for fallback resolution. This returns DNS results for clients as much as possible.</li> * </ul> * * <strong>example:</strong> * <p>ok</p> */ @NameInMap("HealthStatus") public String healthStatus; /** * <p>The ID of the GTM 3.0 instance.</p> * * <strong>example:</strong> * <p>gtm-cn-x0r38e0**03</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>Remarks for the domain instance.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; /** * <p>The access domain name. The value of this parameter is composed of the value of ScheduleHostname and the value of ScheduleZoneName.</p> * * <strong>example:</strong> * <p><a href="http://www.example.com">www.example.com</a></p> */ @NameInMap("ScheduleDomainName") public String scheduleDomainName; /** * <p>Host record of the domain accessed by GTM.</p> * * <strong>example:</strong> * <p>www</p> */ @NameInMap("ScheduleHostname") public String scheduleHostname; /** * <p>DNS record types for the scheduling domain:</p> * <ul> * <li>A: IPv4 address</li> * <li>AAAA: IPv6 address</li> * <li>CNAME: Domain name</li> * </ul> * * <strong>example:</strong> * <p>A</p> */ @NameInMap("ScheduleRrType") public String scheduleRrType; /** * <p>The allocation mode of the access domain name. Valid values:</p> * <ul> * <li>custom: custom allocation. You must specify a custom hostname and associate the hostname with a zone that is hosted by the Public Authoritative DNS module within the account to which the GTM instance belongs to generate an access domain name.</li> * <li>sys_assign: system allocation. This mode is not supported. Do not set ScheduleZoneMode to sys_assign.</li> * </ul> * * <strong>example:</strong> * <p>custom</p> */ @NameInMap("ScheduleZoneMode") public String scheduleZoneMode; /** * <p>The zone such as example.com or subzone such as a.example.com of the access domain name. In most cases, the zone or subzone is hosted by the Public Authoritative DNS module of Alibaba Cloud DNS. This zone belongs to the account to which the GTM instance belongs.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("ScheduleZoneName") public String scheduleZoneName; /** * <p>The mode used if the address pool with the smallest sequence number is recovered. This parameter is returned when AddressPoolLbStrategy is set to sequence. Valid values:</p> * <ul> * <li>preemptive: The address pool with the smallest sequence number is preferentially used if this address pool is recovered.</li> * <li>non_preemptive: The current address pool is still used even if the address pool with the smallest sequence number is recovered.</li> * </ul> * * <strong>example:</strong> * <p>preemptive</p> */ @NameInMap("SequenceLbStrategyMode") public String sequenceLbStrategyMode; /** * <p>Global TTL (in seconds), the TTL value for resolving the access domain name to the address pool, which affects the caching time of DNS records in the operator\&quot;s LocalDNS. Supports custom TTL values.</p> * * <strong>example:</strong> * <p>60</p> */ @NameInMap("Ttl") public Integer ttl; /** * <p>The last modification time of the domain instance.</p> * * <strong>example:</strong> * <p>2024-03-15T01:46Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <p>The last modification time of the domain instance (timestamp).</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; /** * <p>Global Traffic Management version 3.0 instance types:</p> * <ul> * <li>standard: Standard Edition</li> * <li>ultimate: Ultimate Edition</li> * </ul> * * <strong>example:</strong> * <p>ultimate</p> */ @NameInMap("VersionCode") public String versionCode; public static SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig self = new SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig(); return TeaModel.build(map, self); } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setAddressPoolLbStrategy(String addressPoolLbStrategy) { this.addressPoolLbStrategy = addressPoolLbStrategy; return this; } public String getAddressPoolLbStrategy() { return this.addressPoolLbStrategy; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setAddressPools(SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPools addressPools) { this.addressPools = addressPools; return this; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPools getAddressPools() { return this.addressPools; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setAvailableStatus(String availableStatus) { this.availableStatus = availableStatus; return this; } public String getAvailableStatus() { return this.availableStatus; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setCommodityCode(String commodityCode) { this.commodityCode = commodityCode; return this; } public String getCommodityCode() { return this.commodityCode; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setConfigId(String configId) { this.configId = configId; return this; } public String getConfigId() { return this.configId; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setEnableStatus(String enableStatus) { this.enableStatus = enableStatus; return this; } public String getEnableStatus() { return this.enableStatus; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setHealthStatus(String healthStatus) { this.healthStatus = healthStatus; return this; } public String getHealthStatus() { return this.healthStatus; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setScheduleDomainName(String scheduleDomainName) { this.scheduleDomainName = scheduleDomainName; return this; } public String getScheduleDomainName() { return this.scheduleDomainName; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setScheduleHostname(String scheduleHostname) { this.scheduleHostname = scheduleHostname; return this; } public String getScheduleHostname() { return this.scheduleHostname; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setScheduleRrType(String scheduleRrType) { this.scheduleRrType = scheduleRrType; return this; } public String getScheduleRrType() { return this.scheduleRrType; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setScheduleZoneMode(String scheduleZoneMode) { this.scheduleZoneMode = scheduleZoneMode; return this; } public String getScheduleZoneMode() { return this.scheduleZoneMode; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setScheduleZoneName(String scheduleZoneName) { this.scheduleZoneName = scheduleZoneName; return this; } public String getScheduleZoneName() { return this.scheduleZoneName; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setSequenceLbStrategyMode(String sequenceLbStrategyMode) { this.sequenceLbStrategyMode = sequenceLbStrategyMode; return this; } public String getSequenceLbStrategyMode() { return this.sequenceLbStrategyMode; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setTtl(Integer ttl) { this.ttl = ttl; return this; } public Integer getTtl() { return this.ttl; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setVersionCode(String versionCode) { this.versionCode = versionCode; return this; } public String getVersionCode() { return this.versionCode; } } public static class SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigs extends TeaModel { @NameInMap("InstanceConfig") public java.util.List<SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig> instanceConfig; public static SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigs build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigs self = new SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigs(); return TeaModel.build(map, self); } public SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigs setInstanceConfig(java.util.List<SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig> instanceConfig) { this.instanceConfig = instanceConfig; return this; } public java.util.List<SearchCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig> getInstanceConfig() { return this.instanceConfig; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchCloudGtmInstancesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchCloudGtmInstancesRequest extends TeaModel { /** * <p>The language of the return value. Options are:</p> * <ul> * <li><strong>zh-CN</strong>: Chinese. </li> * <li><strong>en-US</strong>: English.</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length. For more information, see How to ensure idempotence.</p> * * <strong>example:</strong> * <p>1ae05db4-10e7-11ef-b126-00163e24**22</p> */ @NameInMap("ClientToken") public String clientToken; /** * <p>The ID of the Global Traffic Manager (GTM) 3.0 instance.</p> * * <strong>example:</strong> * <p>gtm-cn-wwo3a3hbz**</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>Schedule instance name, supports fuzzy search.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("InstanceName") public String instanceName; /** * <p>Current page number, starting from 1, default is 1.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of rows per page when paginating queries, with a maximum value of <strong>100</strong>, and a default of <strong>20</strong>.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; public static SearchCloudGtmInstancesRequest build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmInstancesRequest self = new SearchCloudGtmInstancesRequest(); return TeaModel.build(map, self); } public SearchCloudGtmInstancesRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public SearchCloudGtmInstancesRequest setClientToken(String clientToken) { this.clientToken = clientToken; return this; } public String getClientToken() { return this.clientToken; } public SearchCloudGtmInstancesRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public SearchCloudGtmInstancesRequest setInstanceName(String instanceName) { this.instanceName = instanceName; return this; } public String getInstanceName() { return this.instanceName; } public SearchCloudGtmInstancesRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public SearchCloudGtmInstancesRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchCloudGtmInstancesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchCloudGtmInstancesResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public SearchCloudGtmInstancesResponseBody body; public static SearchCloudGtmInstancesResponse build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmInstancesResponse self = new SearchCloudGtmInstancesResponse(); return TeaModel.build(map, self); } public SearchCloudGtmInstancesResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public SearchCloudGtmInstancesResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public SearchCloudGtmInstancesResponse setBody(SearchCloudGtmInstancesResponseBody body) { this.body = body; return this; } public SearchCloudGtmInstancesResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchCloudGtmInstancesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchCloudGtmInstancesResponseBody extends TeaModel { /** * <p>The instances.</p> */ @NameInMap("Instances") public SearchCloudGtmInstancesResponseBodyInstances instances; /** * <p>Current page number, starting at <strong>1</strong>, default is <strong>1</strong>.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of rows per page when paginating queries, with a maximum value of 100 and a default of 20.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>Unique request identification code.</p> * * <strong>example:</strong> * <p>6856BCF6-11D6-4D7E-AC53-FD579933522B</p> */ @NameInMap("RequestId") public String requestId; /** * <p>Total number of instances found from the search.</p> * * <strong>example:</strong> * <p>10</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <p>Total number of pages.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("TotalPages") public Integer totalPages; public static SearchCloudGtmInstancesResponseBody build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmInstancesResponseBody self = new SearchCloudGtmInstancesResponseBody(); return TeaModel.build(map, self); } public SearchCloudGtmInstancesResponseBody setInstances(SearchCloudGtmInstancesResponseBodyInstances instances) { this.instances = instances; return this; } public SearchCloudGtmInstancesResponseBodyInstances getInstances() { return this.instances; } public SearchCloudGtmInstancesResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public SearchCloudGtmInstancesResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public SearchCloudGtmInstancesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public SearchCloudGtmInstancesResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public SearchCloudGtmInstancesResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class SearchCloudGtmInstancesResponseBodyInstancesInstance extends TeaModel { /** * <p>The commodity code. Valid values:</p> * <ul> * <li>dns_gtm_public_cn: commodity code on the China site (aliyun.com)</li> * <li>dns_gtm_public_intl: commodity code on the international site (alibabacloud.com)</li> * </ul> * * <strong>example:</strong> * <p>dns_gtm_public_cn</p> */ @NameInMap("CommodityCode") public String commodityCode; /** * <p>Instance creation time.</p> * * <strong>example:</strong> * <p>2024-03-15T01:46Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>Instance creation time (timestamp).</p> * * <strong>example:</strong> * <p>1710467214858</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>Instance expiration time.</p> * * <strong>example:</strong> * <p>2024-09-05T16:00Z</p> */ @NameInMap("ExpireTime") public Long expireTime; /** * <p>Instance expiration time (timestamp).</p> * * <strong>example:</strong> * <p>1725552000000</p> */ @NameInMap("ExpireTimestamp") public String expireTimestamp; /** * <p>The ID of the GTM 3.0 instance.</p> * * <strong>example:</strong> * <p>gtm-cn-wwo3a3hbz**</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>Schedule instance name.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("InstanceName") public String instanceName; /** * <p>Monitor probe task quota.</p> * * <strong>example:</strong> * <p>100</p> */ @NameInMap("MonitorTaskQuota") public Integer monitorTaskQuota; /** * <p>Monthly email sending volume.</p> * * <strong>example:</strong> * <p>200</p> */ @NameInMap("MonthlyEmailUsed") public Integer monthlyEmailUsed; /** * <p>SMS quota, only supported on the China site. International site does not support SMS.</p> * * <strong>example:</strong> * <p>2000</p> */ @NameInMap("MonthlySmsQuota") public Integer monthlySmsQuota; /** * <p>Monthly SMS sending volume, only supported by the China site as international sites do not support SMS.</p> * * <strong>example:</strong> * <p>200</p> */ @NameInMap("MonthlySmsUsed") public Integer monthlySmsUsed; /** * <p>Monthly webhook dispatch volume.</p> * * <strong>example:</strong> * <p>100</p> */ @NameInMap("MonthlyWebhookUsed") public Integer monthlyWebhookUsed; /** * <p>The access domain name, which consists of a hostname and a zone or a subzone.</p> * * <strong>example:</strong> * <p><a href="http://www.example.com">www.example.com</a></p> */ @NameInMap("ScheduleDomainName") public String scheduleDomainName; /** * <p>The last modified time of the instance.</p> * * <strong>example:</strong> * <p>2024-03-15T01:46Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <p>The last modified time of the instance (timestamp).</p> * * <strong>example:</strong> * <p>1710467214858</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; /** * <p>Global Traffic Management version 3.0 instance types:</p> * <ul> * <li>standard: Standard Edition</li> * <li>ultimate: Ultimate Edition</li> * </ul> * * <strong>example:</strong> * <p>ultimate</p> */ @NameInMap("VersionCode") public String versionCode; public static SearchCloudGtmInstancesResponseBodyInstancesInstance build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmInstancesResponseBodyInstancesInstance self = new SearchCloudGtmInstancesResponseBodyInstancesInstance(); return TeaModel.build(map, self); } public SearchCloudGtmInstancesResponseBodyInstancesInstance setCommodityCode(String commodityCode) { this.commodityCode = commodityCode; return this; } public String getCommodityCode() { return this.commodityCode; } public SearchCloudGtmInstancesResponseBodyInstancesInstance setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public SearchCloudGtmInstancesResponseBodyInstancesInstance setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public SearchCloudGtmInstancesResponseBodyInstancesInstance setExpireTime(Long expireTime) { this.expireTime = expireTime; return this; } public Long getExpireTime() { return this.expireTime; } public SearchCloudGtmInstancesResponseBodyInstancesInstance setExpireTimestamp(String expireTimestamp) { this.expireTimestamp = expireTimestamp; return this; } public String getExpireTimestamp() { return this.expireTimestamp; } public SearchCloudGtmInstancesResponseBodyInstancesInstance setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public SearchCloudGtmInstancesResponseBodyInstancesInstance setInstanceName(String instanceName) { this.instanceName = instanceName; return this; } public String getInstanceName() { return this.instanceName; } public SearchCloudGtmInstancesResponseBodyInstancesInstance setMonitorTaskQuota(Integer monitorTaskQuota) { this.monitorTaskQuota = monitorTaskQuota; return this; } public Integer getMonitorTaskQuota() { return this.monitorTaskQuota; } public SearchCloudGtmInstancesResponseBodyInstancesInstance setMonthlyEmailUsed(Integer monthlyEmailUsed) { this.monthlyEmailUsed = monthlyEmailUsed; return this; } public Integer getMonthlyEmailUsed() { return this.monthlyEmailUsed; } public SearchCloudGtmInstancesResponseBodyInstancesInstance setMonthlySmsQuota(Integer monthlySmsQuota) { this.monthlySmsQuota = monthlySmsQuota; return this; } public Integer getMonthlySmsQuota() { return this.monthlySmsQuota; } public SearchCloudGtmInstancesResponseBodyInstancesInstance setMonthlySmsUsed(Integer monthlySmsUsed) { this.monthlySmsUsed = monthlySmsUsed; return this; } public Integer getMonthlySmsUsed() { return this.monthlySmsUsed; } public SearchCloudGtmInstancesResponseBodyInstancesInstance setMonthlyWebhookUsed(Integer monthlyWebhookUsed) { this.monthlyWebhookUsed = monthlyWebhookUsed; return this; } public Integer getMonthlyWebhookUsed() { return this.monthlyWebhookUsed; } public SearchCloudGtmInstancesResponseBodyInstancesInstance setScheduleDomainName(String scheduleDomainName) { this.scheduleDomainName = scheduleDomainName; return this; } public String getScheduleDomainName() { return this.scheduleDomainName; } public SearchCloudGtmInstancesResponseBodyInstancesInstance setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public SearchCloudGtmInstancesResponseBodyInstancesInstance setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public SearchCloudGtmInstancesResponseBodyInstancesInstance setVersionCode(String versionCode) { this.versionCode = versionCode; return this; } public String getVersionCode() { return this.versionCode; } } public static class SearchCloudGtmInstancesResponseBodyInstances extends TeaModel { @NameInMap("Instance") public java.util.List<SearchCloudGtmInstancesResponseBodyInstancesInstance> instance; public static SearchCloudGtmInstancesResponseBodyInstances build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmInstancesResponseBodyInstances self = new SearchCloudGtmInstancesResponseBodyInstances(); return TeaModel.build(map, self); } public SearchCloudGtmInstancesResponseBodyInstances setInstance(java.util.List<SearchCloudGtmInstancesResponseBodyInstancesInstance> instance) { this.instance = instance; return this; } public java.util.List<SearchCloudGtmInstancesResponseBodyInstancesInstance> getInstance() { return this.instance; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchCloudGtmMonitorTemplatesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchCloudGtmMonitorTemplatesRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li>zh-CN: Chinese</li> * <li>en-US (default): English</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>The IP address type of health check nodes. An exact search is performed based on the IP address type. Valid values:</p> * <ul> * <li>IPv4: applicable when the destination address of health checks is an IPv4 address</li> * <li>IPv6: applicable when the destination address of health checks is an IPv6 address</li> * </ul> * * <strong>example:</strong> * <p>IPv4</p> */ @NameInMap("IpVersion") public String ipVersion; /** * <strong>example:</strong> * <p>IPv4-Ping</p> */ @NameInMap("Name") public String name; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <strong>example:</strong> * <p>ping</p> */ @NameInMap("Protocol") public String protocol; public static SearchCloudGtmMonitorTemplatesRequest build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmMonitorTemplatesRequest self = new SearchCloudGtmMonitorTemplatesRequest(); return TeaModel.build(map, self); } public SearchCloudGtmMonitorTemplatesRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public SearchCloudGtmMonitorTemplatesRequest setIpVersion(String ipVersion) { this.ipVersion = ipVersion; return this; } public String getIpVersion() { return this.ipVersion; } public SearchCloudGtmMonitorTemplatesRequest setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public SearchCloudGtmMonitorTemplatesRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public SearchCloudGtmMonitorTemplatesRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public SearchCloudGtmMonitorTemplatesRequest setProtocol(String protocol) { this.protocol = protocol; return this; } public String getProtocol() { return this.protocol; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchCloudGtmMonitorTemplatesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchCloudGtmMonitorTemplatesResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public SearchCloudGtmMonitorTemplatesResponseBody body; public static SearchCloudGtmMonitorTemplatesResponse build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmMonitorTemplatesResponse self = new SearchCloudGtmMonitorTemplatesResponse(); return TeaModel.build(map, self); } public SearchCloudGtmMonitorTemplatesResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public SearchCloudGtmMonitorTemplatesResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public SearchCloudGtmMonitorTemplatesResponse setBody(SearchCloudGtmMonitorTemplatesResponseBody body) { this.body = body; return this; } public SearchCloudGtmMonitorTemplatesResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchCloudGtmMonitorTemplatesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchCloudGtmMonitorTemplatesResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The health check templates.</p> */ @NameInMap("Templates") public SearchCloudGtmMonitorTemplatesResponseBodyTemplates templates; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("TotalPages") public Integer totalPages; public static SearchCloudGtmMonitorTemplatesResponseBody build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmMonitorTemplatesResponseBody self = new SearchCloudGtmMonitorTemplatesResponseBody(); return TeaModel.build(map, self); } public SearchCloudGtmMonitorTemplatesResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public SearchCloudGtmMonitorTemplatesResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public SearchCloudGtmMonitorTemplatesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public SearchCloudGtmMonitorTemplatesResponseBody setTemplates(SearchCloudGtmMonitorTemplatesResponseBodyTemplates templates) { this.templates = templates; return this; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplates getTemplates() { return this.templates; } public SearchCloudGtmMonitorTemplatesResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public SearchCloudGtmMonitorTemplatesResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode extends TeaModel { /** * <strong>example:</strong> * <p>503</p> */ @NameInMap("CityCode") public String cityCode; @NameInMap("CityName") public String cityName; /** * <strong>example:</strong> * <p>001</p> */ @NameInMap("CountryCode") public String countryCode; @NameInMap("CountryName") public String countryName; /** * <strong>example:</strong> * <p>BGP</p> */ @NameInMap("GroupName") public String groupName; /** * <p>The group type of health check nodes. Valid values:</p> * <ul> * <li>BGP: BGP node</li> * <li>OVERSEAS: node outside the Chinese mainland</li> * <li>ISP: Internet service provider (ISP) node</li> * </ul> * * <strong>example:</strong> * <p>BGP</p> */ @NameInMap("GroupType") public String groupType; /** * <strong>example:</strong> * <p>465</p> */ @NameInMap("IspCode") public String ispCode; @NameInMap("IspName") public String ispName; public static SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode self = new SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode(); return TeaModel.build(map, self); } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode setCityCode(String cityCode) { this.cityCode = cityCode; return this; } public String getCityCode() { return this.cityCode; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode setCityName(String cityName) { this.cityName = cityName; return this; } public String getCityName() { return this.cityName; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode setCountryCode(String countryCode) { this.countryCode = countryCode; return this; } public String getCountryCode() { return this.countryCode; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode setCountryName(String countryName) { this.countryName = countryName; return this; } public String getCountryName() { return this.countryName; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode setGroupName(String groupName) { this.groupName = groupName; return this; } public String getGroupName() { return this.groupName; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode setGroupType(String groupType) { this.groupType = groupType; return this; } public String getGroupType() { return this.groupType; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode setIspCode(String ispCode) { this.ispCode = ispCode; return this; } public String getIspCode() { return this.ispCode; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode setIspName(String ispName) { this.ispName = ispName; return this; } public String getIspName() { return this.ispName; } } public static class SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodes extends TeaModel { @NameInMap("IspCityNode") public java.util.List<SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode> ispCityNode; public static SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodes build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodes self = new SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodes(); return TeaModel.build(map, self); } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodes setIspCityNode(java.util.List<SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode> ispCityNode) { this.ispCityNode = ispCityNode; return this; } public java.util.List<SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode> getIspCityNode() { return this.ispCityNode; } } public static class SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate extends TeaModel { /** * <strong>example:</strong> * <p>2024-03-23T13:09Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <strong>example:</strong> * <p>2</p> */ @NameInMap("EvaluationCount") public Integer evaluationCount; /** * <p>The extended information. The value of this parameter is a JSON string. The required parameters vary based on the health check protocol. Valid values:</p> * <ul> * <li><p><strong>http(s)</strong>:</p> * <p><strong>host</strong>: indicates the Host field of an HTTP or HTTPS request header during an HTTP or HTTPS health check. The parameter value indicates the HTTP website that you want to visit. By default, the value is the primary domain name. You can change the value based on your business requirements.</p> * <p><strong>path</strong>: the URL for HTTP or HTTPS health checks. Default value: /.</p> * <p><strong>code</strong>: indicates the alert threshold. During an HTTP or HTTPS health check, the system checks whether a web server functions as expected based on the status code that is returned from the web server. If the returned status code is greater than the specified threshold, the corresponding application service address is deemed abnormal. Valid values:</p> * <ul> * <li>400: indicates an invalid request. If an HTTP or HTTPS request contains invalid request parameters, a web server returns a status code that is greater than 400. If Verification Content is set to &quot;The error code is greater than 400&quot;, you must specify an exact URL for the path parameter.</li> * <li>500: indicates a server error. If some exceptions occur on a web server, the web server returns a status code that is greater than 500. The error code that is greater than 500 is used as the alert threshold by default.</li> * </ul> * <p><strong>sni</strong>: indicates whether Server Name Indication (SNI) is enabled for HTTPS. SNI is an extension to the Transport Layer Security (TLS) protocol, which allows a client to specify the host to be connected when the client sends a TLS handshake request. TLS handshakes occur before any data of HTTP requests is sent. Therefore, SNI enables servers to identify the services that clients are attempting to access before certificates are sent. This allows the servers to present correct certificates to the clients. Valid values:</p> * <ul> * <li>true: SNI is enabled.</li> * <li>false: SNI is disabled.</li> * </ul> * <p><strong>followRedirect</strong>: indicates whether 3XX redirection is followed. Valid values:</p> * <ul> * <li>true: You are redirected to the destination address if a status code 3XX, such as 301, 302, 303, 307, or 308, is returned.</li> * <li>false: You are not redirected to the destination address.</li> * </ul> * </li> * <li><p><strong>ping</strong>:</p> * <p><strong>packetNum</strong>: The total number of Internet Control Message Protocol (ICMP) packets that are sent to the address for each ping-based health check. Valid values: 20, 50, and 100.</p> * <p><strong>packetLossRate</strong>: The packet loss rate for each ping-based health check. The packet loss rate in a check can be calculated by using the following formula: Packet loss rate = (Number of lost packets/Total number of sent ICMP packets) × 100%. If the packet loss rate reaches the threshold, an alert is triggered. Valid values: 10, 30, 40, 80, 90, and 100.</p> * </li> * </ul> * * <strong>example:</strong> * <p>{\&quot;code\&quot;:200,\&quot;path\&quot;:\&quot;\\index.htm\&quot;,\&quot;host\&quot;:\&quot;aliyun.com\&quot;}</p> */ @NameInMap("ExtendInfo") public String extendInfo; /** * <strong>example:</strong> * <p>50</p> */ @NameInMap("FailureRate") public Integer failureRate; /** * <strong>example:</strong> * <p>60</p> */ @NameInMap("Interval") public Integer interval; /** * <p>The IP address type of health check nodes. Valid values:</p> * <ul> * <li>IPv4: applicable when the destination address of health checks is an IPv4 address</li> * <li>IPv6: applicable when the destination address of health checks is an IPv6 address</li> * </ul> * * <strong>example:</strong> * <p>IPv4</p> */ @NameInMap("IpVersion") public String ipVersion; /** * <p>The health check nodes.</p> */ @NameInMap("IspCityNodes") public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodes ispCityNodes; /** * <strong>example:</strong> * <p>IPv4-Ping</p> */ @NameInMap("Name") public String name; /** * <strong>example:</strong> * <p>ping</p> */ @NameInMap("Protocol") public String protocol; /** * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; /** * <strong>example:</strong> * <p>mtp-89518052425100**80</p> */ @NameInMap("TemplateId") public String templateId; /** * <strong>example:</strong> * <p>5000</p> */ @NameInMap("Timeout") public Integer timeout; /** * <strong>example:</strong> * <p>2024-03-29T13:20Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; public static SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate self = new SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate(); return TeaModel.build(map, self); } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setEvaluationCount(Integer evaluationCount) { this.evaluationCount = evaluationCount; return this; } public Integer getEvaluationCount() { return this.evaluationCount; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setExtendInfo(String extendInfo) { this.extendInfo = extendInfo; return this; } public String getExtendInfo() { return this.extendInfo; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setFailureRate(Integer failureRate) { this.failureRate = failureRate; return this; } public Integer getFailureRate() { return this.failureRate; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setInterval(Integer interval) { this.interval = interval; return this; } public Integer getInterval() { return this.interval; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setIpVersion(String ipVersion) { this.ipVersion = ipVersion; return this; } public String getIpVersion() { return this.ipVersion; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setIspCityNodes(SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodes ispCityNodes) { this.ispCityNodes = ispCityNodes; return this; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodes getIspCityNodes() { return this.ispCityNodes; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setProtocol(String protocol) { this.protocol = protocol; return this; } public String getProtocol() { return this.protocol; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setTemplateId(String templateId) { this.templateId = templateId; return this; } public String getTemplateId() { return this.templateId; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setTimeout(Integer timeout) { this.timeout = timeout; return this; } public Integer getTimeout() { return this.timeout; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } } public static class SearchCloudGtmMonitorTemplatesResponseBodyTemplates extends TeaModel { @NameInMap("Template") public java.util.List<SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate> template; public static SearchCloudGtmMonitorTemplatesResponseBodyTemplates build(java.util.Map<String, ?> map) throws Exception { SearchCloudGtmMonitorTemplatesResponseBodyTemplates self = new SearchCloudGtmMonitorTemplatesResponseBodyTemplates(); return TeaModel.build(map, self); } public SearchCloudGtmMonitorTemplatesResponseBodyTemplates setTemplate(java.util.List<SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate> template) { this.template = template; return this; } public java.util.List<SearchCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate> getTemplate() { return this.template; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchRecursionRecordsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchRecursionRecordsRequest extends TeaModel { /** * <strong>example:</strong> * <p>asc</p> */ @NameInMap("Direction") public String direction; /** * <strong>example:</strong> * <p>enable</p> */ @NameInMap("EnableStatus") public String enableStatus; /** * <strong>example:</strong> * <p>100</p> */ @NameInMap("MaxResults") public Integer maxResults; /** * <strong>example:</strong> * <p>4698691</p> */ @NameInMap("NextToken") public String nextToken; /** * <strong>example:</strong> * <p>rr</p> */ @NameInMap("OrderBy") public String orderBy; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; /** * <strong>example:</strong> * <p>default</p> */ @NameInMap("RequestSource") public String requestSource; /** * <strong>example:</strong> * <p>www</p> */ @NameInMap("Rr") public String rr; /** * <strong>example:</strong> * <p>60</p> */ @NameInMap("Ttl") public Integer ttl; /** * <strong>example:</strong> * <p>A</p> */ @NameInMap("Type") public String type; /** * <strong>example:</strong> * <p>1.1.XX.XX</p> */ @NameInMap("Value") public String value; /** * <strong>example:</strong> * <p>2</p> */ @NameInMap("Weight") public Integer weight; /** * <strong>example:</strong> * <p>169438909000011</p> */ @NameInMap("ZoneId") public String zoneId; public static SearchRecursionRecordsRequest build(java.util.Map<String, ?> map) throws Exception { SearchRecursionRecordsRequest self = new SearchRecursionRecordsRequest(); return TeaModel.build(map, self); } public SearchRecursionRecordsRequest setDirection(String direction) { this.direction = direction; return this; } public String getDirection() { return this.direction; } public SearchRecursionRecordsRequest setEnableStatus(String enableStatus) { this.enableStatus = enableStatus; return this; } public String getEnableStatus() { return this.enableStatus; } public SearchRecursionRecordsRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public SearchRecursionRecordsRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public SearchRecursionRecordsRequest setOrderBy(String orderBy) { this.orderBy = orderBy; return this; } public String getOrderBy() { return this.orderBy; } public SearchRecursionRecordsRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public SearchRecursionRecordsRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public SearchRecursionRecordsRequest setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public SearchRecursionRecordsRequest setRequestSource(String requestSource) { this.requestSource = requestSource; return this; } public String getRequestSource() { return this.requestSource; } public SearchRecursionRecordsRequest setRr(String rr) { this.rr = rr; return this; } public String getRr() { return this.rr; } public SearchRecursionRecordsRequest setTtl(Integer ttl) { this.ttl = ttl; return this; } public Integer getTtl() { return this.ttl; } public SearchRecursionRecordsRequest setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public SearchRecursionRecordsRequest setValue(String value) { this.value = value; return this; } public String getValue() { return this.value; } public SearchRecursionRecordsRequest setWeight(Integer weight) { this.weight = weight; return this; } public Integer getWeight() { return this.weight; } public SearchRecursionRecordsRequest setZoneId(String zoneId) { this.zoneId = zoneId; return this; } public String getZoneId() { return this.zoneId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchRecursionRecordsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchRecursionRecordsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public SearchRecursionRecordsResponseBody body; public static SearchRecursionRecordsResponse build(java.util.Map<String, ?> map) throws Exception { SearchRecursionRecordsResponse self = new SearchRecursionRecordsResponse(); return TeaModel.build(map, self); } public SearchRecursionRecordsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public SearchRecursionRecordsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public SearchRecursionRecordsResponse setBody(SearchRecursionRecordsResponseBody body) { this.body = body; return this; } public SearchRecursionRecordsResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchRecursionRecordsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchRecursionRecordsResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>500</p> */ @NameInMap("MaxResults") public Integer maxResults; /** * <strong>example:</strong> * <p>4698691</p> */ @NameInMap("NextToken") public String nextToken; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageSize") public Integer pageSize; @NameInMap("Records") public SearchRecursionRecordsResponseBodyRecords records; /** * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <strong>example:</strong> * <p>100</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("TotalPages") public Integer totalPages; public static SearchRecursionRecordsResponseBody build(java.util.Map<String, ?> map) throws Exception { SearchRecursionRecordsResponseBody self = new SearchRecursionRecordsResponseBody(); return TeaModel.build(map, self); } public SearchRecursionRecordsResponseBody setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public SearchRecursionRecordsResponseBody setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public SearchRecursionRecordsResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public SearchRecursionRecordsResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public SearchRecursionRecordsResponseBody setRecords(SearchRecursionRecordsResponseBodyRecords records) { this.records = records; return this; } public SearchRecursionRecordsResponseBodyRecords getRecords() { return this.records; } public SearchRecursionRecordsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public SearchRecursionRecordsResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public SearchRecursionRecordsResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class SearchRecursionRecordsResponseBodyRecordsRecord extends TeaModel { /** * <strong>example:</strong> * <p>2025-06-16T02:18Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <strong>example:</strong> * <p>1615182315000</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <strong>example:</strong> * <p>1521021611066866</p> */ @NameInMap("Creator") public Long creator; /** * <strong>example:</strong> * <p>custom</p> */ @NameInMap("CreatorSubType") public String creatorSubType; /** * <strong>example:</strong> * <p>user</p> */ @NameInMap("CreatorType") public String creatorType; /** * <strong>example:</strong> * <p>enable</p> */ @NameInMap("EnableStatus") public String enableStatus; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("Priority") public Integer priority; /** * <p>record ID</p> * * <strong>example:</strong> * <p>1927184083990351872</p> */ @NameInMap("RecordId") public String recordId; /** * <strong>example:</strong> * <p>vxwk</p> */ @NameInMap("Remark") public String remark; /** * <strong>example:</strong> * <p>default</p> */ @NameInMap("RequestSource") public String requestSource; /** * <strong>example:</strong> * <p>wap</p> */ @NameInMap("Rr") public String rr; /** * <strong>example:</strong> * <p>60</p> */ @NameInMap("Ttl") public Integer ttl; /** * <strong>example:</strong> * <p>A</p> */ @NameInMap("Type") public String type; /** * <strong>example:</strong> * <p>2022-10-28T13:07Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <strong>example:</strong> * <p>1722107570000</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; /** * <strong>example:</strong> * <p>14.19.85.71</p> */ @NameInMap("Value") public String value; /** * <strong>example:</strong> * <p>4</p> */ @NameInMap("Weight") public String weight; /** * <p>zone ID</p> * * <strong>example:</strong> * <p>169783221000012</p> */ @NameInMap("ZoneId") public String zoneId; public static SearchRecursionRecordsResponseBodyRecordsRecord build(java.util.Map<String, ?> map) throws Exception { SearchRecursionRecordsResponseBodyRecordsRecord self = new SearchRecursionRecordsResponseBodyRecordsRecord(); return TeaModel.build(map, self); } public SearchRecursionRecordsResponseBodyRecordsRecord setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public SearchRecursionRecordsResponseBodyRecordsRecord setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public SearchRecursionRecordsResponseBodyRecordsRecord setCreator(Long creator) { this.creator = creator; return this; } public Long getCreator() { return this.creator; } public SearchRecursionRecordsResponseBodyRecordsRecord setCreatorSubType(String creatorSubType) { this.creatorSubType = creatorSubType; return this; } public String getCreatorSubType() { return this.creatorSubType; } public SearchRecursionRecordsResponseBodyRecordsRecord setCreatorType(String creatorType) { this.creatorType = creatorType; return this; } public String getCreatorType() { return this.creatorType; } public SearchRecursionRecordsResponseBodyRecordsRecord setEnableStatus(String enableStatus) { this.enableStatus = enableStatus; return this; } public String getEnableStatus() { return this.enableStatus; } public SearchRecursionRecordsResponseBodyRecordsRecord setPriority(Integer priority) { this.priority = priority; return this; } public Integer getPriority() { return this.priority; } public SearchRecursionRecordsResponseBodyRecordsRecord setRecordId(String recordId) { this.recordId = recordId; return this; } public String getRecordId() { return this.recordId; } public SearchRecursionRecordsResponseBodyRecordsRecord setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public SearchRecursionRecordsResponseBodyRecordsRecord setRequestSource(String requestSource) { this.requestSource = requestSource; return this; } public String getRequestSource() { return this.requestSource; } public SearchRecursionRecordsResponseBodyRecordsRecord setRr(String rr) { this.rr = rr; return this; } public String getRr() { return this.rr; } public SearchRecursionRecordsResponseBodyRecordsRecord setTtl(Integer ttl) { this.ttl = ttl; return this; } public Integer getTtl() { return this.ttl; } public SearchRecursionRecordsResponseBodyRecordsRecord setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public SearchRecursionRecordsResponseBodyRecordsRecord setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public SearchRecursionRecordsResponseBodyRecordsRecord setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public SearchRecursionRecordsResponseBodyRecordsRecord setValue(String value) { this.value = value; return this; } public String getValue() { return this.value; } public SearchRecursionRecordsResponseBodyRecordsRecord setWeight(String weight) { this.weight = weight; return this; } public String getWeight() { return this.weight; } public SearchRecursionRecordsResponseBodyRecordsRecord setZoneId(String zoneId) { this.zoneId = zoneId; return this; } public String getZoneId() { return this.zoneId; } } public static class SearchRecursionRecordsResponseBodyRecords extends TeaModel { @NameInMap("Record") public java.util.List<SearchRecursionRecordsResponseBodyRecordsRecord> record; public static SearchRecursionRecordsResponseBodyRecords build(java.util.Map<String, ?> map) throws Exception { SearchRecursionRecordsResponseBodyRecords self = new SearchRecursionRecordsResponseBodyRecords(); return TeaModel.build(map, self); } public SearchRecursionRecordsResponseBodyRecords setRecord(java.util.List<SearchRecursionRecordsResponseBodyRecordsRecord> record) { this.record = record; return this; } public java.util.List<SearchRecursionRecordsResponseBodyRecordsRecord> getRecord() { return this.record; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchRecursionZonesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchRecursionZonesRequest extends TeaModel { /** * <strong>example:</strong> * <p>asc</p> */ @NameInMap("Direction") public String direction; @NameInMap("EffectiveScopes") public java.util.List<SearchRecursionZonesRequestEffectiveScopes> effectiveScopes; /** * <strong>example:</strong> * <p>50</p> */ @NameInMap("MaxResults") public Integer maxResults; /** * <strong>example:</strong> * <p>4698691</p> */ @NameInMap("NextToken") public String nextToken; /** * <strong>example:</strong> * <p>default</p> */ @NameInMap("OrderBy") public String orderBy; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>5</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; /** * <strong>example:</strong> * <p>cheng.suow.cc</p> */ @NameInMap("ZoneName") public String zoneName; public static SearchRecursionZonesRequest build(java.util.Map<String, ?> map) throws Exception { SearchRecursionZonesRequest self = new SearchRecursionZonesRequest(); return TeaModel.build(map, self); } public SearchRecursionZonesRequest setDirection(String direction) { this.direction = direction; return this; } public String getDirection() { return this.direction; } public SearchRecursionZonesRequest setEffectiveScopes(java.util.List<SearchRecursionZonesRequestEffectiveScopes> effectiveScopes) { this.effectiveScopes = effectiveScopes; return this; } public java.util.List<SearchRecursionZonesRequestEffectiveScopes> getEffectiveScopes() { return this.effectiveScopes; } public SearchRecursionZonesRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public SearchRecursionZonesRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public SearchRecursionZonesRequest setOrderBy(String orderBy) { this.orderBy = orderBy; return this; } public String getOrderBy() { return this.orderBy; } public SearchRecursionZonesRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public SearchRecursionZonesRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public SearchRecursionZonesRequest setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public SearchRecursionZonesRequest setZoneName(String zoneName) { this.zoneName = zoneName; return this; } public String getZoneName() { return this.zoneName; } public static class SearchRecursionZonesRequestEffectiveScopes extends TeaModel { /** * <strong>example:</strong> * <p>account</p> */ @NameInMap("EffectiveType") public String effectiveType; /** * <strong>example:</strong> * <p>[20003]</p> */ @NameInMap("Scope") public java.util.List<String> scope; public static SearchRecursionZonesRequestEffectiveScopes build(java.util.Map<String, ?> map) throws Exception { SearchRecursionZonesRequestEffectiveScopes self = new SearchRecursionZonesRequestEffectiveScopes(); return TeaModel.build(map, self); } public SearchRecursionZonesRequestEffectiveScopes setEffectiveType(String effectiveType) { this.effectiveType = effectiveType; return this; } public String getEffectiveType() { return this.effectiveType; } public SearchRecursionZonesRequestEffectiveScopes setScope(java.util.List<String> scope) { this.scope = scope; return this; } public java.util.List<String> getScope() { return this.scope; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchRecursionZonesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchRecursionZonesResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public SearchRecursionZonesResponseBody body; public static SearchRecursionZonesResponse build(java.util.Map<String, ?> map) throws Exception { SearchRecursionZonesResponse self = new SearchRecursionZonesResponse(); return TeaModel.build(map, self); } public SearchRecursionZonesResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public SearchRecursionZonesResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public SearchRecursionZonesResponse setBody(SearchRecursionZonesResponseBody body) { this.body = body; return this; } public SearchRecursionZonesResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchRecursionZonesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchRecursionZonesResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>20</p> */ @NameInMap("MaxResults") public Integer maxResults; /** * <strong>example:</strong> * <p>4698691</p> */ @NameInMap("NextToken") public String nextToken; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <strong>example:</strong> * <p>11</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <strong>example:</strong> * <p>123</p> */ @NameInMap("TotalPages") public Integer totalPages; @NameInMap("Zones") public SearchRecursionZonesResponseBodyZones zones; public static SearchRecursionZonesResponseBody build(java.util.Map<String, ?> map) throws Exception { SearchRecursionZonesResponseBody self = new SearchRecursionZonesResponseBody(); return TeaModel.build(map, self); } public SearchRecursionZonesResponseBody setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public SearchRecursionZonesResponseBody setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public SearchRecursionZonesResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public SearchRecursionZonesResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public SearchRecursionZonesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public SearchRecursionZonesResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public SearchRecursionZonesResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public SearchRecursionZonesResponseBody setZones(SearchRecursionZonesResponseBodyZones zones) { this.zones = zones; return this; } public SearchRecursionZonesResponseBodyZones getZones() { return this.zones; } public static class SearchRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScopeScopes extends TeaModel { @NameInMap("Scope") public java.util.List<String> scope; public static SearchRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScopeScopes build(java.util.Map<String, ?> map) throws Exception { SearchRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScopeScopes self = new SearchRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScopeScopes(); return TeaModel.build(map, self); } public SearchRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScopeScopes setScope(java.util.List<String> scope) { this.scope = scope; return this; } public java.util.List<String> getScope() { return this.scope; } } public static class SearchRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScope extends TeaModel { /** * <strong>example:</strong> * <p>account</p> */ @NameInMap("EffectiveType") public String effectiveType; /** * <strong>example:</strong> * <p>[20003]</p> */ @NameInMap("Scopes") public SearchRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScopeScopes scopes; public static SearchRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScope build(java.util.Map<String, ?> map) throws Exception { SearchRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScope self = new SearchRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScope(); return TeaModel.build(map, self); } public SearchRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScope setEffectiveType(String effectiveType) { this.effectiveType = effectiveType; return this; } public String getEffectiveType() { return this.effectiveType; } public SearchRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScope setScopes(SearchRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScopeScopes scopes) { this.scopes = scopes; return this; } public SearchRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScopeScopes getScopes() { return this.scopes; } } public static class SearchRecursionZonesResponseBodyZonesZoneEffectiveScopes extends TeaModel { @NameInMap("EffectiveScope") public java.util.List<SearchRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScope> effectiveScope; public static SearchRecursionZonesResponseBodyZonesZoneEffectiveScopes build(java.util.Map<String, ?> map) throws Exception { SearchRecursionZonesResponseBodyZonesZoneEffectiveScopes self = new SearchRecursionZonesResponseBodyZonesZoneEffectiveScopes(); return TeaModel.build(map, self); } public SearchRecursionZonesResponseBodyZonesZoneEffectiveScopes setEffectiveScope(java.util.List<SearchRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScope> effectiveScope) { this.effectiveScope = effectiveScope; return this; } public java.util.List<SearchRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScope> getEffectiveScope() { return this.effectiveScope; } } public static class SearchRecursionZonesResponseBodyZonesZone extends TeaModel { /** * <strong>example:</strong> * <p>2022-10-17T06:13Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <strong>example:</strong> * <p>1749694625000</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <strong>example:</strong> * <hr> */ @NameInMap("Creator") public String creator; /** * <strong>example:</strong> * <p>SUB</p> */ @NameInMap("CreatorSubType") public String creatorSubType; /** * <strong>example:</strong> * <p>USER</p> */ @NameInMap("CreatorType") public String creatorType; @NameInMap("EffectiveScopes") public SearchRecursionZonesResponseBodyZonesZoneEffectiveScopes effectiveScopes; /** * <strong>example:</strong> * <p>record</p> */ @NameInMap("ProxyPattern") public String proxyPattern; /** * <strong>example:</strong> * <p>20</p> */ @NameInMap("RecordCount") public Integer recordCount; /** * <strong>example:</strong> * <p>107</p> */ @NameInMap("Remark") public String remark; /** * <strong>example:</strong> * <p>2024-08-13T01:44Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <strong>example:</strong> * <p>1639621006000</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; /** * <strong>example:</strong> * <p>169439170000011</p> */ @NameInMap("ZoneId") public String zoneId; /** * <strong>example:</strong> * <p>ixiqiu.cn</p> */ @NameInMap("ZoneName") public String zoneName; public static SearchRecursionZonesResponseBodyZonesZone build(java.util.Map<String, ?> map) throws Exception { SearchRecursionZonesResponseBodyZonesZone self = new SearchRecursionZonesResponseBodyZonesZone(); return TeaModel.build(map, self); } public SearchRecursionZonesResponseBodyZonesZone setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public SearchRecursionZonesResponseBodyZonesZone setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public SearchRecursionZonesResponseBodyZonesZone setCreator(String creator) { this.creator = creator; return this; } public String getCreator() { return this.creator; } public SearchRecursionZonesResponseBodyZonesZone setCreatorSubType(String creatorSubType) { this.creatorSubType = creatorSubType; return this; } public String getCreatorSubType() { return this.creatorSubType; } public SearchRecursionZonesResponseBodyZonesZone setCreatorType(String creatorType) { this.creatorType = creatorType; return this; } public String getCreatorType() { return this.creatorType; } public SearchRecursionZonesResponseBodyZonesZone setEffectiveScopes(SearchRecursionZonesResponseBodyZonesZoneEffectiveScopes effectiveScopes) { this.effectiveScopes = effectiveScopes; return this; } public SearchRecursionZonesResponseBodyZonesZoneEffectiveScopes getEffectiveScopes() { return this.effectiveScopes; } public SearchRecursionZonesResponseBodyZonesZone setProxyPattern(String proxyPattern) { this.proxyPattern = proxyPattern; return this; } public String getProxyPattern() { return this.proxyPattern; } public SearchRecursionZonesResponseBodyZonesZone setRecordCount(Integer recordCount) { this.recordCount = recordCount; return this; } public Integer getRecordCount() { return this.recordCount; } public SearchRecursionZonesResponseBodyZonesZone setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public SearchRecursionZonesResponseBodyZonesZone setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public SearchRecursionZonesResponseBodyZonesZone setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public SearchRecursionZonesResponseBodyZonesZone setZoneId(String zoneId) { this.zoneId = zoneId; return this; } public String getZoneId() { return this.zoneId; } public SearchRecursionZonesResponseBodyZonesZone setZoneName(String zoneName) { this.zoneName = zoneName; return this; } public String getZoneName() { return this.zoneName; } } public static class SearchRecursionZonesResponseBodyZones extends TeaModel { @NameInMap("Zone") public java.util.List<SearchRecursionZonesResponseBodyZonesZone> zone; public static SearchRecursionZonesResponseBodyZones build(java.util.Map<String, ?> map) throws Exception { SearchRecursionZonesResponseBodyZones self = new SearchRecursionZonesResponseBodyZones(); return TeaModel.build(map, self); } public SearchRecursionZonesResponseBodyZones setZone(java.util.List<SearchRecursionZonesResponseBodyZonesZone> zone) { this.zone = zone; return this; } public java.util.List<SearchRecursionZonesResponseBodyZonesZone> getZone() { return this.zone; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SearchRecursionZonesShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SearchRecursionZonesShrinkRequest extends TeaModel { /** * <strong>example:</strong> * <p>asc</p> */ @NameInMap("Direction") public String direction; @NameInMap("EffectiveScopes") public String effectiveScopesShrink; /** * <strong>example:</strong> * <p>50</p> */ @NameInMap("MaxResults") public Integer maxResults; /** * <strong>example:</strong> * <p>4698691</p> */ @NameInMap("NextToken") public String nextToken; /** * <strong>example:</strong> * <p>default</p> */ @NameInMap("OrderBy") public String orderBy; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>5</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; /** * <strong>example:</strong> * <p>cheng.suow.cc</p> */ @NameInMap("ZoneName") public String zoneName; public static SearchRecursionZonesShrinkRequest build(java.util.Map<String, ?> map) throws Exception { SearchRecursionZonesShrinkRequest self = new SearchRecursionZonesShrinkRequest(); return TeaModel.build(map, self); } public SearchRecursionZonesShrinkRequest setDirection(String direction) { this.direction = direction; return this; } public String getDirection() { return this.direction; } public SearchRecursionZonesShrinkRequest setEffectiveScopesShrink(String effectiveScopesShrink) { this.effectiveScopesShrink = effectiveScopesShrink; return this; } public String getEffectiveScopesShrink() { return this.effectiveScopesShrink; } public SearchRecursionZonesShrinkRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public SearchRecursionZonesShrinkRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public SearchRecursionZonesShrinkRequest setOrderBy(String orderBy) { this.orderBy = orderBy; return this; } public String getOrderBy() { return this.orderBy; } public SearchRecursionZonesShrinkRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public SearchRecursionZonesShrinkRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public SearchRecursionZonesShrinkRequest setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public SearchRecursionZonesShrinkRequest setZoneName(String zoneName) { this.zoneName = zoneName; return this; } public String getZoneName() { return this.zoneName; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SetDNSSLBStatusRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SetDNSSLBStatusRequest extends TeaModel { /** * <p>The domain name.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The language of the content within the request and response. Default: <strong>zh</strong>. Valid values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The DNS resolution line. The line can be the default line, China Telecom, and China Mobile.</p> * * <strong>example:</strong> * <p>China Mobile.</p> */ @NameInMap("Line") public String line; /** * <p>Specifies whether to enable or disable weighted round-robin. Valid values:</p> * <ul> * <li><strong>true</strong> (default): enables weighted round-robin.</li> * <li><strong>false</strong>: disables weighted round-robin.</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("Open") public Boolean open; /** * <p>The subdomain name for which you want to enable weighted round-robin. Set the parameter to @.example.com instead of example.com.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p><a href="http://www.example.com">www.example.com</a></p> */ @NameInMap("SubDomain") public String subDomain; /** * <p>The type of the Domain Name System (DNS) record. Valid values: A and AAAA. Default value: A.</p> * * <strong>example:</strong> * <p>A</p> */ @NameInMap("Type") public String type; /** * <p>The IP address of the client.</p> * * <strong>example:</strong> * <p>192.0.2.0</p> */ @NameInMap("UserClientIp") public String userClientIp; public static SetDNSSLBStatusRequest build(java.util.Map<String, ?> map) throws Exception { SetDNSSLBStatusRequest self = new SetDNSSLBStatusRequest(); return TeaModel.build(map, self); } public SetDNSSLBStatusRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public SetDNSSLBStatusRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public SetDNSSLBStatusRequest setLine(String line) { this.line = line; return this; } public String getLine() { return this.line; } public SetDNSSLBStatusRequest setOpen(Boolean open) { this.open = open; return this; } public Boolean getOpen() { return this.open; } public SetDNSSLBStatusRequest setSubDomain(String subDomain) { this.subDomain = subDomain; return this; } public String getSubDomain() { return this.subDomain; } public SetDNSSLBStatusRequest setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public SetDNSSLBStatusRequest setUserClientIp(String userClientIp) { this.userClientIp = userClientIp; return this; } public String getUserClientIp() { return this.userClientIp; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SetDNSSLBStatusResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SetDNSSLBStatusResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public SetDNSSLBStatusResponseBody body; public static SetDNSSLBStatusResponse build(java.util.Map<String, ?> map) throws Exception { SetDNSSLBStatusResponse self = new SetDNSSLBStatusResponse(); return TeaModel.build(map, self); } public SetDNSSLBStatusResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public SetDNSSLBStatusResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public SetDNSSLBStatusResponse setBody(SetDNSSLBStatusResponseBody body) { this.body = body; return this; } public SetDNSSLBStatusResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SetDNSSLBStatusResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SetDNSSLBStatusResponseBody extends TeaModel { /** * <p>Indicates whether weighted round-robin is enabled for the subdomain name.</p> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("Open") public Boolean open; /** * <p>The number of A records that are matched.</p> * * <strong>example:</strong> * <p>8</p> */ @NameInMap("RecordCount") public Long recordCount; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; public static SetDNSSLBStatusResponseBody build(java.util.Map<String, ?> map) throws Exception { SetDNSSLBStatusResponseBody self = new SetDNSSLBStatusResponseBody(); return TeaModel.build(map, self); } public SetDNSSLBStatusResponseBody setOpen(Boolean open) { this.open = open; return this; } public Boolean getOpen() { return this.open; } public SetDNSSLBStatusResponseBody setRecordCount(Long recordCount) { this.recordCount = recordCount; return this; } public Long getRecordCount() { return this.recordCount; } public SetDNSSLBStatusResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SetDnsGtmAccessModeRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SetDnsGtmAccessModeRequest extends TeaModel { /** * <p>The switchover policy for primary and secondary address pool sets. Valid values:</p> * <ul> * <li>AUTO: performs automatic switchover between the primary and secondary address pool sets upon failures.</li> * <li>DEFAULT: the primary address pool set</li> * <li>FAILOVER: the secondary address pool set</li> * </ul> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>auto</p> */ @NameInMap("AccessMode") public String accessMode; /** * <p>The language of the values for specific response parameters. Default value: en. Valid values: en, zh, and ja.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The policy ID.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>strategyId</p> */ @NameInMap("StrategyId") public String strategyId; public static SetDnsGtmAccessModeRequest build(java.util.Map<String, ?> map) throws Exception { SetDnsGtmAccessModeRequest self = new SetDnsGtmAccessModeRequest(); return TeaModel.build(map, self); } public SetDnsGtmAccessModeRequest setAccessMode(String accessMode) { this.accessMode = accessMode; return this; } public String getAccessMode() { return this.accessMode; } public SetDnsGtmAccessModeRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public SetDnsGtmAccessModeRequest setStrategyId(String strategyId) { this.strategyId = strategyId; return this; } public String getStrategyId() { return this.strategyId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SetDnsGtmAccessModeResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SetDnsGtmAccessModeResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public SetDnsGtmAccessModeResponseBody body; public static SetDnsGtmAccessModeResponse build(java.util.Map<String, ?> map) throws Exception { SetDnsGtmAccessModeResponse self = new SetDnsGtmAccessModeResponse(); return TeaModel.build(map, self); } public SetDnsGtmAccessModeResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public SetDnsGtmAccessModeResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public SetDnsGtmAccessModeResponse setBody(SetDnsGtmAccessModeResponseBody body) { this.body = body; return this; } public SetDnsGtmAccessModeResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SetDnsGtmAccessModeResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SetDnsGtmAccessModeResponseBody extends TeaModel { /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>29D0F8F8-5499-4F6C-9FDC-1EE13BF55925</p> */ @NameInMap("RequestId") public String requestId; public static SetDnsGtmAccessModeResponseBody build(java.util.Map<String, ?> map) throws Exception { SetDnsGtmAccessModeResponseBody self = new SetDnsGtmAccessModeResponseBody(); return TeaModel.build(map, self); } public SetDnsGtmAccessModeResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SetDnsGtmMonitorStatusRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SetDnsGtmMonitorStatusRequest extends TeaModel { /** * <p>The language of the values for specific response parameters. Default value: en. Valid values: en, zh, and ja.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The ID of the health check task.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>MonitorConfigId1</p> */ @NameInMap("MonitorConfigId") public String monitorConfigId; /** * <p>Specifies whether to enable the health check feature. Valid values:</p> * <ul> * <li>OPEN: enables the health check feature.</li> * <li>CLOSE: disables the health check feature.</li> * </ul> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>open</p> */ @NameInMap("Status") public String status; public static SetDnsGtmMonitorStatusRequest build(java.util.Map<String, ?> map) throws Exception { SetDnsGtmMonitorStatusRequest self = new SetDnsGtmMonitorStatusRequest(); return TeaModel.build(map, self); } public SetDnsGtmMonitorStatusRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public SetDnsGtmMonitorStatusRequest setMonitorConfigId(String monitorConfigId) { this.monitorConfigId = monitorConfigId; return this; } public String getMonitorConfigId() { return this.monitorConfigId; } public SetDnsGtmMonitorStatusRequest setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SetDnsGtmMonitorStatusResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SetDnsGtmMonitorStatusResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public SetDnsGtmMonitorStatusResponseBody body; public static SetDnsGtmMonitorStatusResponse build(java.util.Map<String, ?> map) throws Exception { SetDnsGtmMonitorStatusResponse self = new SetDnsGtmMonitorStatusResponse(); return TeaModel.build(map, self); } public SetDnsGtmMonitorStatusResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public SetDnsGtmMonitorStatusResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public SetDnsGtmMonitorStatusResponse setBody(SetDnsGtmMonitorStatusResponseBody body) { this.body = body; return this; } public SetDnsGtmMonitorStatusResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SetDnsGtmMonitorStatusResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SetDnsGtmMonitorStatusResponseBody extends TeaModel { /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>6856BCF6-11D6-4D7E-AC53-FD579933522B</p> */ @NameInMap("RequestId") public String requestId; public static SetDnsGtmMonitorStatusResponseBody build(java.util.Map<String, ?> map) throws Exception { SetDnsGtmMonitorStatusResponseBody self = new SetDnsGtmMonitorStatusResponseBody(); return TeaModel.build(map, self); } public SetDnsGtmMonitorStatusResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SetDomainDnssecStatusRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SetDomainDnssecStatusRequest extends TeaModel { /** * <p>The domain name for which you want to enable the DNSSEC. Only the users of the paid editions of Alibaba Cloud DNS can enable this feature.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The language of the response. Valid values:</p> * <ul> * <li>zh: Chinese</li> * <li>en: English</li> * </ul> * <p>Default value: en.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The DNSSEC status. Valid values:</p> * <ul> * <li>ON: enables DNSSEC for the domain name.</li> * <li>OFF: disables DNSSEC for the domain name.</li> * </ul> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>ON</p> */ @NameInMap("Status") public String status; public static SetDomainDnssecStatusRequest build(java.util.Map<String, ?> map) throws Exception { SetDomainDnssecStatusRequest self = new SetDomainDnssecStatusRequest(); return TeaModel.build(map, self); } public SetDomainDnssecStatusRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public SetDomainDnssecStatusRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public SetDomainDnssecStatusRequest setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SetDomainDnssecStatusResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SetDomainDnssecStatusResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public SetDomainDnssecStatusResponseBody body; public static SetDomainDnssecStatusResponse build(java.util.Map<String, ?> map) throws Exception { SetDomainDnssecStatusResponse self = new SetDomainDnssecStatusResponse(); return TeaModel.build(map, self); } public SetDomainDnssecStatusResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public SetDomainDnssecStatusResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public SetDomainDnssecStatusResponse setBody(SetDomainDnssecStatusResponseBody body) { this.body = body; return this; } public SetDomainDnssecStatusResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SetDomainDnssecStatusResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SetDomainDnssecStatusResponseBody extends TeaModel { /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; public static SetDomainDnssecStatusResponseBody build(java.util.Map<String, ?> map) throws Exception { SetDomainDnssecStatusResponseBody self = new SetDomainDnssecStatusResponseBody(); return TeaModel.build(map, self); } public SetDomainDnssecStatusResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SetDomainRecordStatusRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SetDomainRecordStatusRequest extends TeaModel { /** * <p>The language of the content within the request and response. Default value: <strong>zh</strong>. Valid values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The ID of the DNS record. You can call the <a href="https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomainrecords?spm=a2c63.p38356.help-menu-search-29697.d_0">DescribeDomainRecords</a> operation to obtain the ID.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>9999985</p> */ @NameInMap("RecordId") public String recordId; /** * <p>The state of the DNS record. Valid values:</p> * <ul> * <li><strong>Enable</strong>: enables the DNS record.</li> * <li><strong>Disable</strong>: disables the DNS record.</li> * </ul> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>Disable</p> */ @NameInMap("Status") public String status; /** * <p>The IP address of the client.</p> * * <strong>example:</strong> * <p>192.0.2.0</p> */ @NameInMap("UserClientIp") public String userClientIp; public static SetDomainRecordStatusRequest build(java.util.Map<String, ?> map) throws Exception { SetDomainRecordStatusRequest self = new SetDomainRecordStatusRequest(); return TeaModel.build(map, self); } public SetDomainRecordStatusRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public SetDomainRecordStatusRequest setRecordId(String recordId) { this.recordId = recordId; return this; } public String getRecordId() { return this.recordId; } public SetDomainRecordStatusRequest setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } public SetDomainRecordStatusRequest setUserClientIp(String userClientIp) { this.userClientIp = userClientIp; return this; } public String getUserClientIp() { return this.userClientIp; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SetDomainRecordStatusResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SetDomainRecordStatusResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public SetDomainRecordStatusResponseBody body; public static SetDomainRecordStatusResponse build(java.util.Map<String, ?> map) throws Exception { SetDomainRecordStatusResponse self = new SetDomainRecordStatusResponse(); return TeaModel.build(map, self); } public SetDomainRecordStatusResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public SetDomainRecordStatusResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public SetDomainRecordStatusResponse setBody(SetDomainRecordStatusResponseBody body) { this.body = body; return this; } public SetDomainRecordStatusResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SetDomainRecordStatusResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SetDomainRecordStatusResponseBody extends TeaModel { /** * <p>The ID of the DNS record.</p> * * <strong>example:</strong> * <p>9999985</p> */ @NameInMap("RecordId") public String recordId; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The status of the DNS record.</p> * * <strong>example:</strong> * <p>Disable</p> */ @NameInMap("Status") public String status; public static SetDomainRecordStatusResponseBody build(java.util.Map<String, ?> map) throws Exception { SetDomainRecordStatusResponseBody self = new SetDomainRecordStatusResponseBody(); return TeaModel.build(map, self); } public SetDomainRecordStatusResponseBody setRecordId(String recordId) { this.recordId = recordId; return this; } public String getRecordId() { return this.recordId; } public SetDomainRecordStatusResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public SetDomainRecordStatusResponseBody setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SetGtmAccessModeRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SetGtmAccessModeRequest extends TeaModel { /** * <p>The desired access policy. Valid values:</p> * <ul> * <li><strong>AUTO: performs automatic switchover between the primary and secondary address pool sets upon failures.</strong></li> * <li><strong>DEFAULT: specifies the primary address pool set.</strong></li> * <li>**FAILOVER: specifies the secondary address pool set.</li> * </ul> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>AUTO</p> */ @NameInMap("AccessMode") public String accessMode; /** * <p>The language.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The ID of the access policy.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>hra0hx</p> */ @NameInMap("StrategyId") public String strategyId; public static SetGtmAccessModeRequest build(java.util.Map<String, ?> map) throws Exception { SetGtmAccessModeRequest self = new SetGtmAccessModeRequest(); return TeaModel.build(map, self); } public SetGtmAccessModeRequest setAccessMode(String accessMode) { this.accessMode = accessMode; return this; } public String getAccessMode() { return this.accessMode; } public SetGtmAccessModeRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public SetGtmAccessModeRequest setStrategyId(String strategyId) { this.strategyId = strategyId; return this; } public String getStrategyId() { return this.strategyId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SetGtmAccessModeResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SetGtmAccessModeResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public SetGtmAccessModeResponseBody body; public static SetGtmAccessModeResponse build(java.util.Map<String, ?> map) throws Exception { SetGtmAccessModeResponse self = new SetGtmAccessModeResponse(); return TeaModel.build(map, self); } public SetGtmAccessModeResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public SetGtmAccessModeResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public SetGtmAccessModeResponse setBody(SetGtmAccessModeResponseBody body) { this.body = body; return this; } public SetGtmAccessModeResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SetGtmAccessModeResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SetGtmAccessModeResponseBody extends TeaModel { /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>29D0F8F8-5499-4F6C-9FDC-1EE13BF55925</p> */ @NameInMap("RequestId") public String requestId; public static SetGtmAccessModeResponseBody build(java.util.Map<String, ?> map) throws Exception { SetGtmAccessModeResponseBody self = new SetGtmAccessModeResponseBody(); return TeaModel.build(map, self); } public SetGtmAccessModeResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SetGtmMonitorStatusRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SetGtmMonitorStatusRequest extends TeaModel { /** * <p>The language used by the user.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The health check ID.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>abc1234</p> */ @NameInMap("MonitorConfigId") public String monitorConfigId; /** * <p>Specifies whether health check is enabled for the address pool. Valid values:</p> * <ul> * <li><strong>OPEN</strong>: Enabled</li> * <li><strong>CLOSE</strong>: Disabled</li> * </ul> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>OPEN</p> */ @NameInMap("Status") public String status; public static SetGtmMonitorStatusRequest build(java.util.Map<String, ?> map) throws Exception { SetGtmMonitorStatusRequest self = new SetGtmMonitorStatusRequest(); return TeaModel.build(map, self); } public SetGtmMonitorStatusRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public SetGtmMonitorStatusRequest setMonitorConfigId(String monitorConfigId) { this.monitorConfigId = monitorConfigId; return this; } public String getMonitorConfigId() { return this.monitorConfigId; } public SetGtmMonitorStatusRequest setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SetGtmMonitorStatusResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SetGtmMonitorStatusResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public SetGtmMonitorStatusResponseBody body; public static SetGtmMonitorStatusResponse build(java.util.Map<String, ?> map) throws Exception { SetGtmMonitorStatusResponse self = new SetGtmMonitorStatusResponse(); return TeaModel.build(map, self); } public SetGtmMonitorStatusResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public SetGtmMonitorStatusResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public SetGtmMonitorStatusResponse setBody(SetGtmMonitorStatusResponseBody body) { this.body = body; return this; } public SetGtmMonitorStatusResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SetGtmMonitorStatusResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SetGtmMonitorStatusResponseBody extends TeaModel { /** * <p>The ID of the request.</p> * * <strong>example:</strong> * <p>6856BCF6-11D6-4D7E-AC53-FD579933522B</p> */ @NameInMap("RequestId") public String requestId; public static SetGtmMonitorStatusResponseBody build(java.util.Map<String, ?> map) throws Exception { SetGtmMonitorStatusResponseBody self = new SetGtmMonitorStatusResponseBody(); return TeaModel.build(map, self); } public SetGtmMonitorStatusResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SubmitIspFlushCacheTaskRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SubmitIspFlushCacheTaskRequest extends TeaModel { /** * <p>This parameter is required.</p> */ @NameInMap("ClientToken") public String clientToken; /** * <p>This parameter is required.</p> */ @NameInMap("DomainName") public String domainName; /** * <p>This parameter is required.</p> */ @NameInMap("Isp") public java.util.List<String> isp; @NameInMap("Lang") public String lang; public static SubmitIspFlushCacheTaskRequest build(java.util.Map<String, ?> map) throws Exception { SubmitIspFlushCacheTaskRequest self = new SubmitIspFlushCacheTaskRequest(); return TeaModel.build(map, self); } public SubmitIspFlushCacheTaskRequest setClientToken(String clientToken) { this.clientToken = clientToken; return this; } public String getClientToken() { return this.clientToken; } public SubmitIspFlushCacheTaskRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public SubmitIspFlushCacheTaskRequest setIsp(java.util.List<String> isp) { this.isp = isp; return this; } public java.util.List<String> getIsp() { return this.isp; } public SubmitIspFlushCacheTaskRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SubmitIspFlushCacheTaskResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SubmitIspFlushCacheTaskResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public SubmitIspFlushCacheTaskResponseBody body; public static SubmitIspFlushCacheTaskResponse build(java.util.Map<String, ?> map) throws Exception { SubmitIspFlushCacheTaskResponse self = new SubmitIspFlushCacheTaskResponse(); return TeaModel.build(map, self); } public SubmitIspFlushCacheTaskResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public SubmitIspFlushCacheTaskResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public SubmitIspFlushCacheTaskResponse setBody(SubmitIspFlushCacheTaskResponseBody body) { this.body = body; return this; } public SubmitIspFlushCacheTaskResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SubmitIspFlushCacheTaskResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SubmitIspFlushCacheTaskResponseBody extends TeaModel { @NameInMap("RequestId") public String requestId; public static SubmitIspFlushCacheTaskResponseBody build(java.util.Map<String, ?> map) throws Exception { SubmitIspFlushCacheTaskResponseBody self = new SubmitIspFlushCacheTaskResponseBody(); return TeaModel.build(map, self); } public SubmitIspFlushCacheTaskResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SwitchDnsGtmInstanceStrategyModeRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SwitchDnsGtmInstanceStrategyModeRequest extends TeaModel { /** * <p>The ID of the GTM instance.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>instance1</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>The language of the values of specific response parameters. Default value: en. Valid values: en, zh, and ja.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The access policy type. Valid values:</p> * <ul> * <li>GEO: geographical location-based</li> * <li>LATENCY: latency-based</li> * </ul> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>GEO</p> */ @NameInMap("StrategyMode") public String strategyMode; public static SwitchDnsGtmInstanceStrategyModeRequest build(java.util.Map<String, ?> map) throws Exception { SwitchDnsGtmInstanceStrategyModeRequest self = new SwitchDnsGtmInstanceStrategyModeRequest(); return TeaModel.build(map, self); } public SwitchDnsGtmInstanceStrategyModeRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public SwitchDnsGtmInstanceStrategyModeRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public SwitchDnsGtmInstanceStrategyModeRequest setStrategyMode(String strategyMode) { this.strategyMode = strategyMode; return this; } public String getStrategyMode() { return this.strategyMode; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SwitchDnsGtmInstanceStrategyModeResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SwitchDnsGtmInstanceStrategyModeResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public SwitchDnsGtmInstanceStrategyModeResponseBody body; public static SwitchDnsGtmInstanceStrategyModeResponse build(java.util.Map<String, ?> map) throws Exception { SwitchDnsGtmInstanceStrategyModeResponse self = new SwitchDnsGtmInstanceStrategyModeResponse(); return TeaModel.build(map, self); } public SwitchDnsGtmInstanceStrategyModeResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public SwitchDnsGtmInstanceStrategyModeResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public SwitchDnsGtmInstanceStrategyModeResponse setBody(SwitchDnsGtmInstanceStrategyModeResponseBody body) { this.body = body; return this; } public SwitchDnsGtmInstanceStrategyModeResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/SwitchDnsGtmInstanceStrategyModeResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class SwitchDnsGtmInstanceStrategyModeResponseBody extends TeaModel { /** * <p>The ID of the request.</p> * * <strong>example:</strong> * <p>6856BCF6-11D6-4D7E-AC53-FD579933522B</p> */ @NameInMap("RequestId") public String requestId; public static SwitchDnsGtmInstanceStrategyModeResponseBody build(java.util.Map<String, ?> map) throws Exception { SwitchDnsGtmInstanceStrategyModeResponseBody self = new SwitchDnsGtmInstanceStrategyModeResponseBody(); return TeaModel.build(map, self); } public SwitchDnsGtmInstanceStrategyModeResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/TagResourcesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class TagResourcesRequest extends TeaModel { /** * <p>The language of the content within the request and response. Default value: <strong>zh</strong>. Valid values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The ID of the resource.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>dns-example.com</p> */ @NameInMap("ResourceId") public java.util.List<String> resourceId; /** * <p>The type of the resource. Valid values:</p> * <ul> * <li><strong>DOMAIN</strong>: domain name</li> * </ul> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>DOMAIN</p> */ @NameInMap("ResourceType") public String resourceType; /** * <p>The tags.</p> * <p>This parameter is required.</p> */ @NameInMap("Tag") public java.util.List<TagResourcesRequestTag> tag; public static TagResourcesRequest build(java.util.Map<String, ?> map) throws Exception { TagResourcesRequest self = new TagResourcesRequest(); return TeaModel.build(map, self); } public TagResourcesRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public TagResourcesRequest setResourceId(java.util.List<String> resourceId) { this.resourceId = resourceId; return this; } public java.util.List<String> getResourceId() { return this.resourceId; } public TagResourcesRequest setResourceType(String resourceType) { this.resourceType = resourceType; return this; } public String getResourceType() { return this.resourceType; } public TagResourcesRequest setTag(java.util.List<TagResourcesRequestTag> tag) { this.tag = tag; return this; } public java.util.List<TagResourcesRequestTag> getTag() { return this.tag; } public static class TagResourcesRequestTag extends TeaModel { /** * <p>The tag key. The tag key can be up to 20 characters in length and cannot start with <code>acs:</code> or<code>aliyun</code>.</p> * * <strong>example:</strong> * <p>abcd</p> */ @NameInMap("Key") public String key; /** * <p>The tag value. The tag value can be up to 20 bytes in length.</p> * * <strong>example:</strong> * <p>abcd</p> */ @NameInMap("Value") public String value; public static TagResourcesRequestTag build(java.util.Map<String, ?> map) throws Exception { TagResourcesRequestTag self = new TagResourcesRequestTag(); return TeaModel.build(map, self); } public TagResourcesRequestTag setKey(String key) { this.key = key; return this; } public String getKey() { return this.key; } public TagResourcesRequestTag setValue(String value) { this.value = value; return this; } public String getValue() { return this.value; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/TagResourcesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class TagResourcesResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public TagResourcesResponseBody body; public static TagResourcesResponse build(java.util.Map<String, ?> map) throws Exception { TagResourcesResponse self = new TagResourcesResponse(); return TeaModel.build(map, self); } public TagResourcesResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public TagResourcesResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public TagResourcesResponse setBody(TagResourcesResponseBody body) { this.body = body; return this; } public TagResourcesResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/TagResourcesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class TagResourcesResponseBody extends TeaModel { /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>635B0CCD-15A7-48C9-B4D6-628FF57FF4B8</p> */ @NameInMap("RequestId") public String requestId; public static TagResourcesResponseBody build(java.util.Map<String, ?> map) throws Exception { TagResourcesResponseBody self = new TagResourcesResponseBody(); return TeaModel.build(map, self); } public TagResourcesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/TransferDomainRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class TransferDomainRequest extends TeaModel { /** * <p>The domain names. Separate multiple domain names with commas (,). Only domain names registered with Alibaba Cloud are supported.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>test1.com,test2.com</p> */ @NameInMap("DomainNames") public String domainNames; /** * <p>The language of the content within the request and response. Default value: <strong>zh</strong>. Valid values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The description of the domain name.</p> * * <strong>example:</strong> * <p>test domain transfer</p> */ @NameInMap("Remark") public String remark; /** * <p>The destination user ID. The domain names and their Domain Name System (DNS) records are transferred to the destination user ID.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>12345678</p> */ @NameInMap("TargetUserId") public Long targetUserId; public static TransferDomainRequest build(java.util.Map<String, ?> map) throws Exception { TransferDomainRequest self = new TransferDomainRequest(); return TeaModel.build(map, self); } public TransferDomainRequest setDomainNames(String domainNames) { this.domainNames = domainNames; return this; } public String getDomainNames() { return this.domainNames; } public TransferDomainRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public TransferDomainRequest setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public TransferDomainRequest setTargetUserId(Long targetUserId) { this.targetUserId = targetUserId; return this; } public Long getTargetUserId() { return this.targetUserId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/TransferDomainResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class TransferDomainResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public TransferDomainResponseBody body; public static TransferDomainResponse build(java.util.Map<String, ?> map) throws Exception { TransferDomainResponse self = new TransferDomainResponse(); return TeaModel.build(map, self); } public TransferDomainResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public TransferDomainResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public TransferDomainResponse setBody(TransferDomainResponseBody body) { this.body = body; return this; } public TransferDomainResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/TransferDomainResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class TransferDomainResponseBody extends TeaModel { /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The task ID.</p> * * <strong>example:</strong> * <p>112233</p> */ @NameInMap("TaskId") public Long taskId; public static TransferDomainResponseBody build(java.util.Map<String, ?> map) throws Exception { TransferDomainResponseBody self = new TransferDomainResponseBody(); return TeaModel.build(map, self); } public TransferDomainResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public TransferDomainResponseBody setTaskId(Long taskId) { this.taskId = taskId; return this; } public Long getTaskId() { return this.taskId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UnbindInstanceDomainsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UnbindInstanceDomainsRequest extends TeaModel { /** * <p>The domain names.</p> * <p>Separate multiple domain names with commas (,). Up to 100 domain names can be entered.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>example.com,example.net</p> */ @NameInMap("DomainNames") public String domainNames; /** * <p>The instance ID.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>123</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>The language.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; public static UnbindInstanceDomainsRequest build(java.util.Map<String, ?> map) throws Exception { UnbindInstanceDomainsRequest self = new UnbindInstanceDomainsRequest(); return TeaModel.build(map, self); } public UnbindInstanceDomainsRequest setDomainNames(String domainNames) { this.domainNames = domainNames; return this; } public String getDomainNames() { return this.domainNames; } public UnbindInstanceDomainsRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public UnbindInstanceDomainsRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UnbindInstanceDomainsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UnbindInstanceDomainsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public UnbindInstanceDomainsResponseBody body; public static UnbindInstanceDomainsResponse build(java.util.Map<String, ?> map) throws Exception { UnbindInstanceDomainsResponse self = new UnbindInstanceDomainsResponse(); return TeaModel.build(map, self); } public UnbindInstanceDomainsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public UnbindInstanceDomainsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public UnbindInstanceDomainsResponse setBody(UnbindInstanceDomainsResponseBody body) { this.body = body; return this; } public UnbindInstanceDomainsResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UnbindInstanceDomainsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UnbindInstanceDomainsResponseBody extends TeaModel { /** * <p>The number of domain names that failed to be unbound from the instance.</p> * * <strong>example:</strong> * <p>0</p> */ @NameInMap("FailedCount") public Integer failedCount; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>123</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The number of domain names that are unbound from the instance.</p> * * <strong>example:</strong> * <p>2</p> */ @NameInMap("SuccessCount") public Integer successCount; public static UnbindInstanceDomainsResponseBody build(java.util.Map<String, ?> map) throws Exception { UnbindInstanceDomainsResponseBody self = new UnbindInstanceDomainsResponseBody(); return TeaModel.build(map, self); } public UnbindInstanceDomainsResponseBody setFailedCount(Integer failedCount) { this.failedCount = failedCount; return this; } public Integer getFailedCount() { return this.failedCount; } public UnbindInstanceDomainsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public UnbindInstanceDomainsResponseBody setSuccessCount(Integer successCount) { this.successCount = successCount; return this; } public Integer getSuccessCount() { return this.successCount; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UntagResourcesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UntagResourcesRequest extends TeaModel { /** * <p>Specifies whether to remove all tags. Default value: false. This parameter is valid only when TagKey is left empty. Valid values: true and false.</p> * * <strong>example:</strong> * <p>false</p> */ @NameInMap("All") public Boolean all; /** * <p>The language of the content within the request and response. Default value: <strong>zh</strong>. Valid values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The ID of the resource.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>The type of the resource.</p> */ @NameInMap("ResourceId") public java.util.List<String> resourceId; /** * <p>The type of the resource. Valid value: Valid values:</p> * <ul> * <li><strong>DOMAIN</strong>: domain name</li> * </ul> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>DOMAIN</p> */ @NameInMap("ResourceType") public String resourceType; /** * <p>The tags added to the resource.</p> * * <strong>example:</strong> * <p>The domain name.</p> */ @NameInMap("TagKey") public java.util.List<String> tagKey; public static UntagResourcesRequest build(java.util.Map<String, ?> map) throws Exception { UntagResourcesRequest self = new UntagResourcesRequest(); return TeaModel.build(map, self); } public UntagResourcesRequest setAll(Boolean all) { this.all = all; return this; } public Boolean getAll() { return this.all; } public UntagResourcesRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public UntagResourcesRequest setResourceId(java.util.List<String> resourceId) { this.resourceId = resourceId; return this; } public java.util.List<String> getResourceId() { return this.resourceId; } public UntagResourcesRequest setResourceType(String resourceType) { this.resourceType = resourceType; return this; } public String getResourceType() { return this.resourceType; } public UntagResourcesRequest setTagKey(java.util.List<String> tagKey) { this.tagKey = tagKey; return this; } public java.util.List<String> getTagKey() { return this.tagKey; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UntagResourcesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UntagResourcesResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public UntagResourcesResponseBody body; public static UntagResourcesResponse build(java.util.Map<String, ?> map) throws Exception { UntagResourcesResponse self = new UntagResourcesResponse(); return TeaModel.build(map, self); } public UntagResourcesResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public UntagResourcesResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public UntagResourcesResponse setBody(UntagResourcesResponseBody body) { this.body = body; return this; } public UntagResourcesResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UntagResourcesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UntagResourcesResponseBody extends TeaModel { /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>F152A869-DF77-4DF1-9A00-4E06978FE6A1</p> */ @NameInMap("RequestId") public String requestId; public static UntagResourcesResponseBody build(java.util.Map<String, ?> map) throws Exception { UntagResourcesResponseBody self = new UntagResourcesResponseBody(); return TeaModel.build(map, self); } public UntagResourcesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateAppKeyStateRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateAppKeyStateRequest extends TeaModel { @NameInMap("AppKeyId") public String appKeyId; @NameInMap("Lang") public String lang; @NameInMap("State") public String state; public static UpdateAppKeyStateRequest build(java.util.Map<String, ?> map) throws Exception { UpdateAppKeyStateRequest self = new UpdateAppKeyStateRequest(); return TeaModel.build(map, self); } public UpdateAppKeyStateRequest setAppKeyId(String appKeyId) { this.appKeyId = appKeyId; return this; } public String getAppKeyId() { return this.appKeyId; } public UpdateAppKeyStateRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public UpdateAppKeyStateRequest setState(String state) { this.state = state; return this; } public String getState() { return this.state; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateAppKeyStateResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateAppKeyStateResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public UpdateAppKeyStateResponseBody body; public static UpdateAppKeyStateResponse build(java.util.Map<String, ?> map) throws Exception { UpdateAppKeyStateResponse self = new UpdateAppKeyStateResponse(); return TeaModel.build(map, self); } public UpdateAppKeyStateResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public UpdateAppKeyStateResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public UpdateAppKeyStateResponse setBody(UpdateAppKeyStateResponseBody body) { this.body = body; return this; } public UpdateAppKeyStateResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateAppKeyStateResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateAppKeyStateResponseBody extends TeaModel { @NameInMap("RequestId") public String requestId; public static UpdateAppKeyStateResponseBody build(java.util.Map<String, ?> map) throws Exception { UpdateAppKeyStateResponseBody self = new UpdateAppKeyStateResponseBody(); return TeaModel.build(map, self); } public UpdateAppKeyStateResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressEnableStatusRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressEnableStatusRequest extends TeaModel { /** * <p>The language of the returned results. Valid values:</p> * <ul> * <li><p>zh-CN: Chinese</p> * </li> * <li><p>en-US: English</p> * </li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>The ID of the address. This ID uniquely identifies the address.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>addr-89518218114368**92</p> */ @NameInMap("AddressId") public String addressId; /** * <p>The client token that is used to ensure the idempotence of the request. You can specify a custom value for this parameter, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.</p> * * <strong>example:</strong> * <p>1ae05db4-10e7-11ef-b126-00163e24**22</p> */ @NameInMap("ClientToken") public String clientToken; /** * <p>The enabling state of the address. Valid values:</p> * <ul> * <li>enable: The address is enabled and the address can be used for Domain Name System (DNS) resolution if the address passes health checks.</li> * <li>disable: The address is disabled and the address cannot be used for DNS resolution regardless of whether the address passes health checks or not.</li> * </ul> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>enable</p> */ @NameInMap("EnableStatus") public String enableStatus; public static UpdateCloudGtmAddressEnableStatusRequest build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressEnableStatusRequest self = new UpdateCloudGtmAddressEnableStatusRequest(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressEnableStatusRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public UpdateCloudGtmAddressEnableStatusRequest setAddressId(String addressId) { this.addressId = addressId; return this; } public String getAddressId() { return this.addressId; } public UpdateCloudGtmAddressEnableStatusRequest setClientToken(String clientToken) { this.clientToken = clientToken; return this; } public String getClientToken() { return this.clientToken; } public UpdateCloudGtmAddressEnableStatusRequest setEnableStatus(String enableStatus) { this.enableStatus = enableStatus; return this; } public String getEnableStatus() { return this.enableStatus; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressEnableStatusResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressEnableStatusResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public UpdateCloudGtmAddressEnableStatusResponseBody body; public static UpdateCloudGtmAddressEnableStatusResponse build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressEnableStatusResponse self = new UpdateCloudGtmAddressEnableStatusResponse(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressEnableStatusResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public UpdateCloudGtmAddressEnableStatusResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public UpdateCloudGtmAddressEnableStatusResponse setBody(UpdateCloudGtmAddressEnableStatusResponseBody body) { this.body = body; return this; } public UpdateCloudGtmAddressEnableStatusResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressEnableStatusResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressEnableStatusResponseBody extends TeaModel { /** * <p>Unique request identification code.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <p>Indicates whether the operation was successful. Valid values:</p> * <ul> * <li>true: The operation was successful.</li> * <li>false: The operation was failed.</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("Success") public Boolean success; public static UpdateCloudGtmAddressEnableStatusResponseBody build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressEnableStatusResponseBody self = new UpdateCloudGtmAddressEnableStatusResponseBody(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressEnableStatusResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public UpdateCloudGtmAddressEnableStatusResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressManualAvailableStatusRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressManualAvailableStatusRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li>zh-CN: Chinese</li> * <li>en-US (default): English</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>The ID of the address. This ID uniquely identifies the address.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>addr-89518218114368**92</p> */ @NameInMap("AddressId") public String addressId; /** * <p>The failover mode that is used when address exceptions are identified. Valid values:</p> * <ul> * <li>auto: the automatic mode. The system determines whether to return an address based on health check results. If the address fails health checks, the system does not return the address. If the address passes health checks, the system returns the address.</li> * <li>manual: the manual mode. If an address is in the unavailable state, the address is not returned for DNS requests even if the address passes health checks. If an address is in the available state, the address is returned for DNS requests even if an alert is triggered when the address fails health checks.</li> * </ul> * * <strong>example:</strong> * <p>manual</p> */ @NameInMap("AvailableMode") public String availableMode; /** * <p>The client token that is used to ensure the idempotence of the request. You can specify a custom value for this parameter, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.</p> * * <strong>example:</strong> * <p>1ae05db4-10e7-11ef-b126-00163e24**22</p> */ @NameInMap("ClientToken") public String clientToken; /** * <p>The availability state of the address when AvailableMode is set to manual. Valid values:</p> * <ul> * <li>available: The address is normal. In this state, the address is returned for DNS requests even if an alert is triggered when the address fails health checks.</li> * <li>unavailable: The address is abnormal. In this state, the address is not returned for DNS requests even if the address passes health checks.</li> * </ul> * * <strong>example:</strong> * <p>available</p> */ @NameInMap("ManualAvailableStatus") public String manualAvailableStatus; public static UpdateCloudGtmAddressManualAvailableStatusRequest build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressManualAvailableStatusRequest self = new UpdateCloudGtmAddressManualAvailableStatusRequest(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressManualAvailableStatusRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public UpdateCloudGtmAddressManualAvailableStatusRequest setAddressId(String addressId) { this.addressId = addressId; return this; } public String getAddressId() { return this.addressId; } public UpdateCloudGtmAddressManualAvailableStatusRequest setAvailableMode(String availableMode) { this.availableMode = availableMode; return this; } public String getAvailableMode() { return this.availableMode; } public UpdateCloudGtmAddressManualAvailableStatusRequest setClientToken(String clientToken) { this.clientToken = clientToken; return this; } public String getClientToken() { return this.clientToken; } public UpdateCloudGtmAddressManualAvailableStatusRequest setManualAvailableStatus(String manualAvailableStatus) { this.manualAvailableStatus = manualAvailableStatus; return this; } public String getManualAvailableStatus() { return this.manualAvailableStatus; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressManualAvailableStatusResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressManualAvailableStatusResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public UpdateCloudGtmAddressManualAvailableStatusResponseBody body; public static UpdateCloudGtmAddressManualAvailableStatusResponse build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressManualAvailableStatusResponse self = new UpdateCloudGtmAddressManualAvailableStatusResponse(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressManualAvailableStatusResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public UpdateCloudGtmAddressManualAvailableStatusResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public UpdateCloudGtmAddressManualAvailableStatusResponse setBody(UpdateCloudGtmAddressManualAvailableStatusResponseBody body) { this.body = body; return this; } public UpdateCloudGtmAddressManualAvailableStatusResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressManualAvailableStatusResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressManualAvailableStatusResponseBody extends TeaModel { /** * <p>Unique request identification code.</p> * * <strong>example:</strong> * <p>0F32959D-417B-4D66-8463-68606605E3E2</p> */ @NameInMap("RequestId") public String requestId; /** * <p>Indicates whether the request was successful. Valid values:</p> * <ul> * <li>true: The request was successful.</li> * <li>false: The request failed.</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("Success") public Boolean success; public static UpdateCloudGtmAddressManualAvailableStatusResponseBody build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressManualAvailableStatusResponseBody self = new UpdateCloudGtmAddressManualAvailableStatusResponseBody(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressManualAvailableStatusResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public UpdateCloudGtmAddressManualAvailableStatusResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressPoolBasicConfigRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressPoolBasicConfigRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li>zh-CN: Chinese</li> * <li>en-US (default): English</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>The ID of the address pool. This ID uniquely identifies the address pool.</p> * * <strong>example:</strong> * <p>pool-89528023225442**16</p> */ @NameInMap("AddressPoolId") public String addressPoolId; /** * <p>Address pool name, helping users distinguish the purpose of address pools.</p> * * <strong>example:</strong> * <p>app</p> */ @NameInMap("AddressPoolName") public String addressPoolName; /** * <p>The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.</p> * * <strong>example:</strong> * <p>1ae05db4-10e7-11ef-b126-00163e24**22</p> */ @NameInMap("ClientToken") public String clientToken; /** * <p>The condition for determining the health status of the address pool. Valid values:</p> * <ul> * <li>any_ok: At least one address in the address pool is available.</li> * <li>p30_ok: At least 30% of the addresses in the address pool are available.</li> * <li>p50_ok: At least 50% of the addresses in the address pool are available.</li> * <li>p70_ok: At least 70% of the addresses in the address pool are available.</li> * <li>all_ok: All addresses in the address pool are available.</li> * </ul> * * <strong>example:</strong> * <p>any_ok</p> */ @NameInMap("HealthJudgement") public String healthJudgement; public static UpdateCloudGtmAddressPoolBasicConfigRequest build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressPoolBasicConfigRequest self = new UpdateCloudGtmAddressPoolBasicConfigRequest(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressPoolBasicConfigRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public UpdateCloudGtmAddressPoolBasicConfigRequest setAddressPoolId(String addressPoolId) { this.addressPoolId = addressPoolId; return this; } public String getAddressPoolId() { return this.addressPoolId; } public UpdateCloudGtmAddressPoolBasicConfigRequest setAddressPoolName(String addressPoolName) { this.addressPoolName = addressPoolName; return this; } public String getAddressPoolName() { return this.addressPoolName; } public UpdateCloudGtmAddressPoolBasicConfigRequest setClientToken(String clientToken) { this.clientToken = clientToken; return this; } public String getClientToken() { return this.clientToken; } public UpdateCloudGtmAddressPoolBasicConfigRequest setHealthJudgement(String healthJudgement) { this.healthJudgement = healthJudgement; return this; } public String getHealthJudgement() { return this.healthJudgement; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressPoolBasicConfigResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressPoolBasicConfigResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public UpdateCloudGtmAddressPoolBasicConfigResponseBody body; public static UpdateCloudGtmAddressPoolBasicConfigResponse build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressPoolBasicConfigResponse self = new UpdateCloudGtmAddressPoolBasicConfigResponse(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressPoolBasicConfigResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public UpdateCloudGtmAddressPoolBasicConfigResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public UpdateCloudGtmAddressPoolBasicConfigResponse setBody(UpdateCloudGtmAddressPoolBasicConfigResponseBody body) { this.body = body; return this; } public UpdateCloudGtmAddressPoolBasicConfigResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressPoolBasicConfigResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressPoolBasicConfigResponseBody extends TeaModel { /** * <p>The ID of the address pool. This ID uniquely identifies the address pool.</p> * * <strong>example:</strong> * <p>pool-89528023225442**16</p> */ @NameInMap("AddressPoolId") public String addressPoolId; /** * <p>Unique request identification code.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <p>Modify the basic configuration of the address pool operation success:</p> * <ul> * <li>true: Operation successful</li> * <li>false: Operation failed</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("Success") public Boolean success; public static UpdateCloudGtmAddressPoolBasicConfigResponseBody build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressPoolBasicConfigResponseBody self = new UpdateCloudGtmAddressPoolBasicConfigResponseBody(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressPoolBasicConfigResponseBody setAddressPoolId(String addressPoolId) { this.addressPoolId = addressPoolId; return this; } public String getAddressPoolId() { return this.addressPoolId; } public UpdateCloudGtmAddressPoolBasicConfigResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public UpdateCloudGtmAddressPoolBasicConfigResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressPoolEnableStatusRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressPoolEnableStatusRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li>zh-CN: Chinese</li> * <li>en-US (default): English</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>The ID of the address pool. This ID uniquely identifies the address pool.</p> * * <strong>example:</strong> * <p>pool-89528023225442**16</p> */ @NameInMap("AddressPoolId") public String addressPoolId; /** * <p>The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.</p> * * <strong>example:</strong> * <p>1ae05db4-10e7-11ef-b126-00163e24**22</p> */ @NameInMap("ClientToken") public String clientToken; /** * <p>The enabling state of the address pool. Valid values:</p> * <ul> * <li>enable: The address pool is enabled, and the addresses in the address pool are returned for DNS resolution when the health check results are normal.</li> * <li>disable: The address pool is disabled, and the addresses in the address pool are not returned for DNS resolution regardless of whether the health check results are normal or not.</li> * </ul> * * <strong>example:</strong> * <p>enable</p> */ @NameInMap("EnableStatus") public String enableStatus; public static UpdateCloudGtmAddressPoolEnableStatusRequest build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressPoolEnableStatusRequest self = new UpdateCloudGtmAddressPoolEnableStatusRequest(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressPoolEnableStatusRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public UpdateCloudGtmAddressPoolEnableStatusRequest setAddressPoolId(String addressPoolId) { this.addressPoolId = addressPoolId; return this; } public String getAddressPoolId() { return this.addressPoolId; } public UpdateCloudGtmAddressPoolEnableStatusRequest setClientToken(String clientToken) { this.clientToken = clientToken; return this; } public String getClientToken() { return this.clientToken; } public UpdateCloudGtmAddressPoolEnableStatusRequest setEnableStatus(String enableStatus) { this.enableStatus = enableStatus; return this; } public String getEnableStatus() { return this.enableStatus; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressPoolEnableStatusResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressPoolEnableStatusResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public UpdateCloudGtmAddressPoolEnableStatusResponseBody body; public static UpdateCloudGtmAddressPoolEnableStatusResponse build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressPoolEnableStatusResponse self = new UpdateCloudGtmAddressPoolEnableStatusResponse(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressPoolEnableStatusResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public UpdateCloudGtmAddressPoolEnableStatusResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public UpdateCloudGtmAddressPoolEnableStatusResponse setBody(UpdateCloudGtmAddressPoolEnableStatusResponseBody body) { this.body = body; return this; } public UpdateCloudGtmAddressPoolEnableStatusResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressPoolEnableStatusResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressPoolEnableStatusResponseBody extends TeaModel { /** * <p>The ID of the address pool. This ID uniquely identifies the address pool.</p> * * <strong>example:</strong> * <p>pool-89528023225442**16</p> */ @NameInMap("AddressPoolId") public String addressPoolId; /** * <p>Unique request identification code.</p> * * <strong>example:</strong> * <p>89184F33-48A1-4401-9C0F-40E45DB091AB</p> */ @NameInMap("RequestId") public String requestId; /** * <p>Indicates whether the modification operation was successful:</p> * <ul> * <li>true: Operation was successful</li> * <li>false: Operation failed</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("Success") public Boolean success; public static UpdateCloudGtmAddressPoolEnableStatusResponseBody build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressPoolEnableStatusResponseBody self = new UpdateCloudGtmAddressPoolEnableStatusResponseBody(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressPoolEnableStatusResponseBody setAddressPoolId(String addressPoolId) { this.addressPoolId = addressPoolId; return this; } public String getAddressPoolId() { return this.addressPoolId; } public UpdateCloudGtmAddressPoolEnableStatusResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public UpdateCloudGtmAddressPoolEnableStatusResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressPoolLbStrategyRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressPoolLbStrategyRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li>zh-CN: Chinese</li> * <li>en-US (default): English</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>Load balancing policy among addresses in the address pool:</p> * <ul> * <li>round_robin: Round-robin, for any source of DNS resolution requests, all addresses are returned. The order of all addresses is rotated each time.</li> * <li>sequence: Sequential, for any source of DNS resolution requests, the address with the smaller sequence number (the sequence number indicates the priority of address returns, with smaller numbers having higher priority) is returned. If the address with the smaller sequence number is unavailable, the next address with a smaller sequence number is returned.</li> * <li>weight: Weighted, supports setting different weight values for each address, realizing the return of addresses according to the weight ratio for resolution queries.</li> * <li>source_nearest: Source-nearest, i.e., intelligent resolution function, where GTM can return different addresses based on the source of different DNS resolution requests, achieving the effect of users accessing nearby.</li> * </ul> * * <strong>example:</strong> * <p>sequence</p> */ @NameInMap("AddressLbStrategy") public String addressLbStrategy; /** * <p>The ID of the address pool. This ID uniquely identifies the address pool.</p> * * <strong>example:</strong> * <p>pool-89528023225442**16</p> */ @NameInMap("AddressPoolId") public String addressPoolId; /** * <p>The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.</p> * * <strong>example:</strong> * <p>1ae05db4-10e7-11ef-b126-00163e24**22</p> */ @NameInMap("ClientToken") public String clientToken; /** * <p>The mode used if the address with the smallest sequence number is recovered. This parameter is required only when AddressLbStrategy is set to sequence. Valid values:</p> * <ul> * <li>preemptive: The address with the smallest sequence number is preferentially used if this address is recovered.</li> * <li>non_preemptive: The current address is still used even if the address with the smallest sequence number is recovered.</li> * </ul> * * <strong>example:</strong> * <p>preemptive</p> */ @NameInMap("SequenceLbStrategyMode") public String sequenceLbStrategyMode; public static UpdateCloudGtmAddressPoolLbStrategyRequest build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressPoolLbStrategyRequest self = new UpdateCloudGtmAddressPoolLbStrategyRequest(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressPoolLbStrategyRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public UpdateCloudGtmAddressPoolLbStrategyRequest setAddressLbStrategy(String addressLbStrategy) { this.addressLbStrategy = addressLbStrategy; return this; } public String getAddressLbStrategy() { return this.addressLbStrategy; } public UpdateCloudGtmAddressPoolLbStrategyRequest setAddressPoolId(String addressPoolId) { this.addressPoolId = addressPoolId; return this; } public String getAddressPoolId() { return this.addressPoolId; } public UpdateCloudGtmAddressPoolLbStrategyRequest setClientToken(String clientToken) { this.clientToken = clientToken; return this; } public String getClientToken() { return this.clientToken; } public UpdateCloudGtmAddressPoolLbStrategyRequest setSequenceLbStrategyMode(String sequenceLbStrategyMode) { this.sequenceLbStrategyMode = sequenceLbStrategyMode; return this; } public String getSequenceLbStrategyMode() { return this.sequenceLbStrategyMode; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressPoolLbStrategyResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressPoolLbStrategyResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public UpdateCloudGtmAddressPoolLbStrategyResponseBody body; public static UpdateCloudGtmAddressPoolLbStrategyResponse build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressPoolLbStrategyResponse self = new UpdateCloudGtmAddressPoolLbStrategyResponse(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressPoolLbStrategyResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public UpdateCloudGtmAddressPoolLbStrategyResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public UpdateCloudGtmAddressPoolLbStrategyResponse setBody(UpdateCloudGtmAddressPoolLbStrategyResponseBody body) { this.body = body; return this; } public UpdateCloudGtmAddressPoolLbStrategyResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressPoolLbStrategyResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressPoolLbStrategyResponseBody extends TeaModel { /** * <p>The ID of the address pool. This ID uniquely identifies the address pool.</p> * * <strong>example:</strong> * <p>pool-89528023225442**16</p> */ @NameInMap("AddressPoolId") public String addressPoolId; /** * <p>Unique request identification code.</p> * * <strong>example:</strong> * <p>B57C121B-A45F-44D8-A9B2-13E5A5044195</p> */ @NameInMap("RequestId") public String requestId; /** * <p>Indicates whether the modification operation was successful:</p> * <ul> * <li>true: Operation successful</li> * <li>false: Operation failed</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("Success") public Boolean success; public static UpdateCloudGtmAddressPoolLbStrategyResponseBody build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressPoolLbStrategyResponseBody self = new UpdateCloudGtmAddressPoolLbStrategyResponseBody(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressPoolLbStrategyResponseBody setAddressPoolId(String addressPoolId) { this.addressPoolId = addressPoolId; return this; } public String getAddressPoolId() { return this.addressPoolId; } public UpdateCloudGtmAddressPoolLbStrategyResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public UpdateCloudGtmAddressPoolLbStrategyResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressPoolRemarkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressPoolRemarkRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li>zh-CN: Chinese</li> * <li>en-US (default): English</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>The ID of the address pool. This ID uniquely identifies the address pool.</p> * * <strong>example:</strong> * <p>pool-89528023225442**16</p> */ @NameInMap("AddressPoolId") public String addressPoolId; /** * <p>The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.</p> * * <strong>example:</strong> * <p>1ae05db4-10e7-11ef-b126-00163e24**22</p> */ @NameInMap("ClientToken") public String clientToken; /** * <p>The input parameter serves as the updated note; if an empty value is passed, the note will be deleted.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; public static UpdateCloudGtmAddressPoolRemarkRequest build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressPoolRemarkRequest self = new UpdateCloudGtmAddressPoolRemarkRequest(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressPoolRemarkRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public UpdateCloudGtmAddressPoolRemarkRequest setAddressPoolId(String addressPoolId) { this.addressPoolId = addressPoolId; return this; } public String getAddressPoolId() { return this.addressPoolId; } public UpdateCloudGtmAddressPoolRemarkRequest setClientToken(String clientToken) { this.clientToken = clientToken; return this; } public String getClientToken() { return this.clientToken; } public UpdateCloudGtmAddressPoolRemarkRequest setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressPoolRemarkResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressPoolRemarkResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public UpdateCloudGtmAddressPoolRemarkResponseBody body; public static UpdateCloudGtmAddressPoolRemarkResponse build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressPoolRemarkResponse self = new UpdateCloudGtmAddressPoolRemarkResponse(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressPoolRemarkResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public UpdateCloudGtmAddressPoolRemarkResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public UpdateCloudGtmAddressPoolRemarkResponse setBody(UpdateCloudGtmAddressPoolRemarkResponseBody body) { this.body = body; return this; } public UpdateCloudGtmAddressPoolRemarkResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressPoolRemarkResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressPoolRemarkResponseBody extends TeaModel { /** * <p>The ID of the address pool. This ID uniquely identifies the address pool.</p> * * <strong>example:</strong> * <p>pool-89528023225442**16</p> */ @NameInMap("AddressPoolId") public String addressPoolId; /** * <p>Unique request identification code.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <p>Indicates whether the modification operation was successful:</p> * <ul> * <li>true: Operation successful</li> * <li>false: Operation failed</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("Success") public Boolean success; public static UpdateCloudGtmAddressPoolRemarkResponseBody build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressPoolRemarkResponseBody self = new UpdateCloudGtmAddressPoolRemarkResponseBody(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressPoolRemarkResponseBody setAddressPoolId(String addressPoolId) { this.addressPoolId = addressPoolId; return this; } public String getAddressPoolId() { return this.addressPoolId; } public UpdateCloudGtmAddressPoolRemarkResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public UpdateCloudGtmAddressPoolRemarkResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressRemarkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressRemarkRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li>zh-CN: Chinese</li> * <li>en-US (default): English</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>The ID of the address. This ID uniquely identifies the address.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>addr-89518218114368**92</p> */ @NameInMap("AddressId") public String addressId; /** * <p>The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.</p> * * <strong>example:</strong> * <p>1ae05db4-10e7-11ef-b126-00163e24**22</p> */ @NameInMap("ClientToken") public String clientToken; /** * <p>The input parameter serves as the updated note; if an empty value is passed, the note will be deleted.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; public static UpdateCloudGtmAddressRemarkRequest build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressRemarkRequest self = new UpdateCloudGtmAddressRemarkRequest(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressRemarkRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public UpdateCloudGtmAddressRemarkRequest setAddressId(String addressId) { this.addressId = addressId; return this; } public String getAddressId() { return this.addressId; } public UpdateCloudGtmAddressRemarkRequest setClientToken(String clientToken) { this.clientToken = clientToken; return this; } public String getClientToken() { return this.clientToken; } public UpdateCloudGtmAddressRemarkRequest setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressRemarkResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressRemarkResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public UpdateCloudGtmAddressRemarkResponseBody body; public static UpdateCloudGtmAddressRemarkResponse build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressRemarkResponse self = new UpdateCloudGtmAddressRemarkResponse(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressRemarkResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public UpdateCloudGtmAddressRemarkResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public UpdateCloudGtmAddressRemarkResponse setBody(UpdateCloudGtmAddressRemarkResponseBody body) { this.body = body; return this; } public UpdateCloudGtmAddressRemarkResponseBody getBody() { return this.body; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressRemarkResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressRemarkResponseBody extends TeaModel { /** * <p>Unique request identification code.</p> * * <strong>example:</strong> * <p>B57C121B-A45F-44D8-A9B2-13E5A5044195</p> */ @NameInMap("RequestId") public String requestId; /** * <p>Indicates whether the modification operation was successful:</p> * <ul> * <li>true: Operation was successful</li> * <li>false: Operation was failed</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("Success") public Boolean success; public static UpdateCloudGtmAddressRemarkResponseBody build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressRemarkResponseBody self = new UpdateCloudGtmAddressRemarkResponseBody(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressRemarkResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public UpdateCloudGtmAddressRemarkResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li>zh-CN: Chinese</li> * <li>en-US (default): English</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>The IP address or domain name.</p> * * <strong>example:</strong> * <p>223.5.XX.XX</p> */ @NameInMap("Address") public String address; /** * <p>The ID of the address. This ID uniquely identifies the address.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>addr-89518218114368**92</p> */ @NameInMap("AddressId") public String addressId; /** * <p>Address Attribution information.</p> * * <strong>example:</strong> * <p>This parameter is not supported in the current version and does not need to be input.</p> */ @NameInMap("AttributeInfo") public String attributeInfo; /** * <p>The client token that is used to ensure the idempotence of the request. You can specify a custom value for this parameter, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.</p> * * <strong>example:</strong> * <p>1ae05db4-10e7-11ef-b126-00163e24**22</p> */ @NameInMap("ClientToken") public String clientToken; /** * <p>The new condition for determining the health state of the address. Valid values:</p> * <ul> * <li>any_ok: The health check results of at least one health check template are normal.</li> * <li>p30_ok: The health check results of at least 30% of health check templates are normal.</li> * <li>p50_ok: The health check results of at least 50% of health check templates are normal.</li> * <li>p70_ok: The health check results of at least 70% of health check templates are normal.</li> * <li>all_ok: The health check results of all health check templates are normal.</li> * </ul> * * <strong>example:</strong> * <p>p50_ok</p> */ @NameInMap("HealthJudgement") public String healthJudgement; /** * <p>The health check tasks.</p> */ @NameInMap("HealthTasks") public java.util.List<UpdateCloudGtmAddressRequestHealthTasks> healthTasks; /** * <p>The name of the address.</p> * * <strong>example:</strong> * <p>Address-1</p> */ @NameInMap("Name") public String name; public static UpdateCloudGtmAddressRequest build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressRequest self = new UpdateCloudGtmAddressRequest(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public UpdateCloudGtmAddressRequest setAddress(String address) { this.address = address; return this; } public String getAddress() { return this.address; } public UpdateCloudGtmAddressRequest setAddressId(String addressId) { this.addressId = addressId; return this; } public String getAddressId() { return this.addressId; } public UpdateCloudGtmAddressRequest setAttributeInfo(String attributeInfo) { this.attributeInfo = attributeInfo; return this; } public String getAttributeInfo() { return this.attributeInfo; } public UpdateCloudGtmAddressRequest setClientToken(String clientToken) { this.clientToken = clientToken; return this; } public String getClientToken() { return this.clientToken; } public UpdateCloudGtmAddressRequest setHealthJudgement(String healthJudgement) { this.healthJudgement = healthJudgement; return this; } public String getHealthJudgement() { return this.healthJudgement; } public UpdateCloudGtmAddressRequest setHealthTasks(java.util.List<UpdateCloudGtmAddressRequestHealthTasks> healthTasks) { this.healthTasks = healthTasks; return this; } public java.util.List<UpdateCloudGtmAddressRequestHealthTasks> getHealthTasks() { return this.healthTasks; } public UpdateCloudGtmAddressRequest setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public static class UpdateCloudGtmAddressRequestHealthTasks extends TeaModel { /** * <p>The service port of the address on which health check tasks are performed. If the ping protocol is used for health checks, the configuration of the service port is not supported.</p> * <ul> * <li>If you leave this parameter empty, the existing service port is deleted.</li> * <li>If you specify this parameter, the existing service port is updated based on the value of this parameter.</li> * </ul> * * <strong>example:</strong> * <p>80</p> */ @NameInMap("Port") public Integer port; /** * <p>The ID of the health check template that is associated with the address. This parameter is required if you specify a service port of the address for health check tasks.</p> * <ul> * <li>If you leave this parameter empty, the associated health check template is disassociated from the address.</li> * <li>If you specify this parameter, the associated health check template is updated based on the value of this parameter.</li> * </ul> * * <strong>example:</strong> * <p>mtp-89518052425100**80</p> */ @NameInMap("TemplateId") public String templateId; public static UpdateCloudGtmAddressRequestHealthTasks build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressRequestHealthTasks self = new UpdateCloudGtmAddressRequestHealthTasks(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressRequestHealthTasks setPort(Integer port) { this.port = port; return this; } public Integer getPort() { return this.port; } public UpdateCloudGtmAddressRequestHealthTasks setTemplateId(String templateId) { this.templateId = templateId; return this; } public String getTemplateId() { return this.templateId; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/UpdateCloudGtmAddressResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class UpdateCloudGtmAddressResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public UpdateCloudGtmAddressResponseBody body; public static UpdateCloudGtmAddressResponse build(java.util.Map<String, ?> map) throws Exception { UpdateCloudGtmAddressResponse self = new UpdateCloudGtmAddressResponse(); return TeaModel.build(map, self); } public UpdateCloudGtmAddressResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public UpdateCloudGtmAddressResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public UpdateCloudGtmAddressResponse setBody(UpdateCloudGtmAddressResponseBody body) { this.body = body; return this; } public UpdateCloudGtmAddressResponseBody getBody() { return this.body; } }