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/DescribeDnsGtmAccessStrategiesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmAccessStrategiesResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDnsGtmAccessStrategiesResponseBody body; public static DescribeDnsGtmAccessStrategiesResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategiesResponse self = new DescribeDnsGtmAccessStrategiesResponse(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategiesResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDnsGtmAccessStrategiesResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDnsGtmAccessStrategiesResponse setBody(DescribeDnsGtmAccessStrategiesResponseBody body) { this.body = body; return this; } public DescribeDnsGtmAccessStrategiesResponseBody 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/DescribeDnsGtmAccessStrategiesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmAccessStrategiesResponseBody extends TeaModel { /** * <p>The page number of the returned page.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of entries returned per page.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>The ID of the request.</p> * * <strong>example:</strong> * <p>0CCC9971-CEC9-4132-824B-4AE611C07623</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The access policies.</p> */ @NameInMap("Strategies") public DescribeDnsGtmAccessStrategiesResponseBodyStrategies strategies; /** * <p>The total number of entries returned on all pages.</p> * * <strong>example:</strong> * <p>11</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <p>The total number of pages returned.</p> * * <strong>example:</strong> * <p>11</p> */ @NameInMap("TotalPages") public Integer totalPages; public static DescribeDnsGtmAccessStrategiesResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategiesResponseBody self = new DescribeDnsGtmAccessStrategiesResponseBody(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategiesResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public DescribeDnsGtmAccessStrategiesResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public DescribeDnsGtmAccessStrategiesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDnsGtmAccessStrategiesResponseBody setStrategies(DescribeDnsGtmAccessStrategiesResponseBodyStrategies strategies) { this.strategies = strategies; return this; } public DescribeDnsGtmAccessStrategiesResponseBodyStrategies getStrategies() { return this.strategies; } public DescribeDnsGtmAccessStrategiesResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public DescribeDnsGtmAccessStrategiesResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyEffectiveAddrPoolsEffectiveAddrPool extends TeaModel { /** * <p>The number of addresses in the address pool.</p> * * <strong>example:</strong> * <p>3</p> */ @NameInMap("AddrCount") public Integer addrCount; /** * <p>The ID of the address pool.</p> * * <strong>example:</strong> * <p>pool1</p> */ @NameInMap("Id") public String id; /** * <p>The weight of the address pool.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("LbaWeight") public Integer lbaWeight; /** * <p>The name of the address pool.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Name") public String name; public static DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyEffectiveAddrPoolsEffectiveAddrPool build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyEffectiveAddrPoolsEffectiveAddrPool self = new DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyEffectiveAddrPoolsEffectiveAddrPool(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyEffectiveAddrPoolsEffectiveAddrPool setAddrCount(Integer addrCount) { this.addrCount = addrCount; return this; } public Integer getAddrCount() { return this.addrCount; } public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyEffectiveAddrPoolsEffectiveAddrPool setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyEffectiveAddrPoolsEffectiveAddrPool setLbaWeight(Integer lbaWeight) { this.lbaWeight = lbaWeight; return this; } public Integer getLbaWeight() { return this.lbaWeight; } public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyEffectiveAddrPoolsEffectiveAddrPool setName(String name) { this.name = name; return this; } public String getName() { return this.name; } } public static class DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyEffectiveAddrPools extends TeaModel { @NameInMap("EffectiveAddrPool") public java.util.List<DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyEffectiveAddrPoolsEffectiveAddrPool> effectiveAddrPool; public static DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyEffectiveAddrPools build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyEffectiveAddrPools self = new DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyEffectiveAddrPools(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyEffectiveAddrPools setEffectiveAddrPool(java.util.List<DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyEffectiveAddrPoolsEffectiveAddrPool> effectiveAddrPool) { this.effectiveAddrPool = effectiveAddrPool; return this; } public java.util.List<DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyEffectiveAddrPoolsEffectiveAddrPool> getEffectiveAddrPool() { return this.effectiveAddrPool; } } public static class DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyLinesLine extends TeaModel { /** * <p>The code of the source region group.</p> * * <strong>example:</strong> * <p>default</p> */ @NameInMap("GroupCode") public String groupCode; /** * <p>The name of the source region group.</p> * * <strong>example:</strong> * <p>global</p> */ @NameInMap("GroupName") public String groupName; /** * <p>The line code of the source region.</p> * * <strong>example:</strong> * <p>default</p> */ @NameInMap("LineCode") public String lineCode; /** * <p>The line name of the source region.</p> * * <strong>example:</strong> * <p>global</p> */ @NameInMap("LineName") public String lineName; public static DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyLinesLine build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyLinesLine self = new DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyLinesLine(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyLinesLine setGroupCode(String groupCode) { this.groupCode = groupCode; return this; } public String getGroupCode() { return this.groupCode; } public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyLinesLine setGroupName(String groupName) { this.groupName = groupName; return this; } public String getGroupName() { return this.groupName; } public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyLinesLine setLineCode(String lineCode) { this.lineCode = lineCode; return this; } public String getLineCode() { return this.lineCode; } public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyLinesLine setLineName(String lineName) { this.lineName = lineName; return this; } public String getLineName() { return this.lineName; } } public static class DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyLines extends TeaModel { @NameInMap("Line") public java.util.List<DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyLinesLine> line; public static DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyLines build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyLines self = new DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyLines(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyLines setLine(java.util.List<DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyLinesLine> line) { this.line = line; return this; } public java.util.List<DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyLinesLine> getLine() { return this.line; } } public static class DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategy extends TeaModel { /** * <p>The time when the access policy was created.</p> * * <strong>example:</strong> * <p>2018-08-09T00:10Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>The timestamp that indicates when the access policy was created.</p> * * <strong>example:</strong> * <p>1533773400000</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>The type of the active address pool group. Valid values:</p> * <ul> * <li>DEFAULT: the primary address pool group</li> * <li>FAILOVER: the secondary address pool group</li> * </ul> * * <strong>example:</strong> * <p>default</p> */ @NameInMap("EffectiveAddrPoolGroupType") public String effectiveAddrPoolGroupType; /** * <p>The type of the active address pools. Valid values:</p> * <ul> * <li>IPV4</li> * <li>IPV6</li> * <li>DOMAIN</li> * </ul> * * <strong>example:</strong> * <p>ipv4</p> */ @NameInMap("EffectiveAddrPoolType") public String effectiveAddrPoolType; /** * <p>The active address pool groups.</p> */ @NameInMap("EffectiveAddrPools") public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyEffectiveAddrPools effectiveAddrPools; /** * <p>The load balancing policy of the active address pool group. Data is returned when StrategyMode is set to GEO. Valid values: </p> * <ul> * <li>ALL_RR: returns all addresses.</li> * <li>RATIO: returns addresses by weight.</li> * </ul> * * <strong>example:</strong> * <p>all_rr</p> */ @NameInMap("EffectiveLbaStrategy") public String effectiveLbaStrategy; /** * <p>The source regions. Data is returned when StrategyMode is set to GEO. Valid values:</p> */ @NameInMap("Lines") public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyLines lines; /** * <p>The ID of the access policy.</p> * * <strong>example:</strong> * <p>strategyid1</p> */ @NameInMap("StrategyId") public String strategyId; /** * <p>The name of the access policy.</p> * * <strong>example:</strong> * <p>strategname1</p> */ @NameInMap("StrategyName") public String strategyName; public static DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategy build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategy self = new DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategy(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategy setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategy setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategy setEffectiveAddrPoolGroupType(String effectiveAddrPoolGroupType) { this.effectiveAddrPoolGroupType = effectiveAddrPoolGroupType; return this; } public String getEffectiveAddrPoolGroupType() { return this.effectiveAddrPoolGroupType; } public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategy setEffectiveAddrPoolType(String effectiveAddrPoolType) { this.effectiveAddrPoolType = effectiveAddrPoolType; return this; } public String getEffectiveAddrPoolType() { return this.effectiveAddrPoolType; } public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategy setEffectiveAddrPools(DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyEffectiveAddrPools effectiveAddrPools) { this.effectiveAddrPools = effectiveAddrPools; return this; } public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyEffectiveAddrPools getEffectiveAddrPools() { return this.effectiveAddrPools; } public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategy setEffectiveLbaStrategy(String effectiveLbaStrategy) { this.effectiveLbaStrategy = effectiveLbaStrategy; return this; } public String getEffectiveLbaStrategy() { return this.effectiveLbaStrategy; } public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategy setLines(DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyLines lines) { this.lines = lines; return this; } public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategyLines getLines() { return this.lines; } public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategy setStrategyId(String strategyId) { this.strategyId = strategyId; return this; } public String getStrategyId() { return this.strategyId; } public DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategy setStrategyName(String strategyName) { this.strategyName = strategyName; return this; } public String getStrategyName() { return this.strategyName; } } public static class DescribeDnsGtmAccessStrategiesResponseBodyStrategies extends TeaModel { @NameInMap("Strategy") public java.util.List<DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategy> strategy; public static DescribeDnsGtmAccessStrategiesResponseBodyStrategies build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategiesResponseBodyStrategies self = new DescribeDnsGtmAccessStrategiesResponseBodyStrategies(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategiesResponseBodyStrategies setStrategy(java.util.List<DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategy> strategy) { this.strategy = strategy; return this; } public java.util.List<DescribeDnsGtmAccessStrategiesResponseBodyStrategiesStrategy> getStrategy() { return this.strategy; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDnsGtmAccessStrategyAvailableConfigRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmAccessStrategyAvailableConfigRequest extends TeaModel { /** * <p>The ID of the instance.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>instance1</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>The language to return some 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 type of the access policy. 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 DescribeDnsGtmAccessStrategyAvailableConfigRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyAvailableConfigRequest self = new DescribeDnsGtmAccessStrategyAvailableConfigRequest(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyAvailableConfigRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public DescribeDnsGtmAccessStrategyAvailableConfigRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDnsGtmAccessStrategyAvailableConfigRequest 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/DescribeDnsGtmAccessStrategyAvailableConfigResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmAccessStrategyAvailableConfigResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDnsGtmAccessStrategyAvailableConfigResponseBody body; public static DescribeDnsGtmAccessStrategyAvailableConfigResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyAvailableConfigResponse self = new DescribeDnsGtmAccessStrategyAvailableConfigResponse(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyAvailableConfigResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDnsGtmAccessStrategyAvailableConfigResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDnsGtmAccessStrategyAvailableConfigResponse setBody(DescribeDnsGtmAccessStrategyAvailableConfigResponseBody body) { this.body = body; return this; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBody 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/DescribeDnsGtmAccessStrategyAvailableConfigResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmAccessStrategyAvailableConfigResponseBody extends TeaModel { /** * <p>The available address pools of the domain name type.</p> */ @NameInMap("DomainAddrPools") public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyDomainAddrPools domainAddrPools; /** * <p>The available address pools of the IPv4 type.</p> */ @NameInMap("Ipv4AddrPools") public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv4AddrPools ipv4AddrPools; /** * <p>The available address pools of the IPv6 type.</p> */ @NameInMap("Ipv6AddrPools") public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv6AddrPools ipv6AddrPools; /** * <p>The source regions.</p> */ @NameInMap("Lines") public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyLines lines; /** * <p>The ID of the request.</p> * * <strong>example:</strong> * <p>C2851BA9-CE56-49AF-8D12-4FC6A49EE688</p> */ @NameInMap("RequestId") public String requestId; @NameInMap("SelectedDomainLines") public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedDomainLines selectedDomainLines; @NameInMap("SelectedIpv4Lines") public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedIpv4Lines selectedIpv4Lines; @NameInMap("SelectedIpv6Lines") public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedIpv6Lines selectedIpv6Lines; /** * <p>Indicates whether we recommend that you set the source region to global.</p> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("SuggestSetDefaultLine") public Boolean suggestSetDefaultLine; public static DescribeDnsGtmAccessStrategyAvailableConfigResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyAvailableConfigResponseBody self = new DescribeDnsGtmAccessStrategyAvailableConfigResponseBody(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBody setDomainAddrPools(DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyDomainAddrPools domainAddrPools) { this.domainAddrPools = domainAddrPools; return this; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyDomainAddrPools getDomainAddrPools() { return this.domainAddrPools; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBody setIpv4AddrPools(DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv4AddrPools ipv4AddrPools) { this.ipv4AddrPools = ipv4AddrPools; return this; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv4AddrPools getIpv4AddrPools() { return this.ipv4AddrPools; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBody setIpv6AddrPools(DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv6AddrPools ipv6AddrPools) { this.ipv6AddrPools = ipv6AddrPools; return this; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv6AddrPools getIpv6AddrPools() { return this.ipv6AddrPools; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBody setLines(DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyLines lines) { this.lines = lines; return this; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyLines getLines() { return this.lines; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBody setSelectedDomainLines(DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedDomainLines selectedDomainLines) { this.selectedDomainLines = selectedDomainLines; return this; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedDomainLines getSelectedDomainLines() { return this.selectedDomainLines; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBody setSelectedIpv4Lines(DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedIpv4Lines selectedIpv4Lines) { this.selectedIpv4Lines = selectedIpv4Lines; return this; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedIpv4Lines getSelectedIpv4Lines() { return this.selectedIpv4Lines; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBody setSelectedIpv6Lines(DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedIpv6Lines selectedIpv6Lines) { this.selectedIpv6Lines = selectedIpv6Lines; return this; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedIpv6Lines getSelectedIpv6Lines() { return this.selectedIpv6Lines; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBody setSuggestSetDefaultLine(Boolean suggestSetDefaultLine) { this.suggestSetDefaultLine = suggestSetDefaultLine; return this; } public Boolean getSuggestSetDefaultLine() { return this.suggestSetDefaultLine; } public static class DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyDomainAddrPoolsDomainAddrPool extends TeaModel { /** * <p>The number of addresses in the address pool.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("AddrCount") public Integer addrCount; /** * <p>The ID of the address pool.</p> * * <strong>example:</strong> * <p>pool1</p> */ @NameInMap("Id") public String id; /** * <p>The name of the address pool.</p> * * <strong>example:</strong> * <p>testpool</p> */ @NameInMap("Name") public String name; public static DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyDomainAddrPoolsDomainAddrPool build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyDomainAddrPoolsDomainAddrPool self = new DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyDomainAddrPoolsDomainAddrPool(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyDomainAddrPoolsDomainAddrPool setAddrCount(Integer addrCount) { this.addrCount = addrCount; return this; } public Integer getAddrCount() { return this.addrCount; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyDomainAddrPoolsDomainAddrPool setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyDomainAddrPoolsDomainAddrPool setName(String name) { this.name = name; return this; } public String getName() { return this.name; } } public static class DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyDomainAddrPools extends TeaModel { @NameInMap("DomainAddrPool") public java.util.List<DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyDomainAddrPoolsDomainAddrPool> domainAddrPool; public static DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyDomainAddrPools build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyDomainAddrPools self = new DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyDomainAddrPools(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyDomainAddrPools setDomainAddrPool(java.util.List<DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyDomainAddrPoolsDomainAddrPool> domainAddrPool) { this.domainAddrPool = domainAddrPool; return this; } public java.util.List<DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyDomainAddrPoolsDomainAddrPool> getDomainAddrPool() { return this.domainAddrPool; } } public static class DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv4AddrPoolsIpv4AddrPool extends TeaModel { /** * <p>The number of addresses in the address pool.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("AddrCount") public Integer addrCount; /** * <p>The ID of the address pool.</p> * * <strong>example:</strong> * <p>pool1</p> */ @NameInMap("Id") public String id; /** * <p>The name of the address pool.</p> * * <strong>example:</strong> * <p>testpool</p> */ @NameInMap("Name") public String name; public static DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv4AddrPoolsIpv4AddrPool build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv4AddrPoolsIpv4AddrPool self = new DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv4AddrPoolsIpv4AddrPool(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv4AddrPoolsIpv4AddrPool setAddrCount(Integer addrCount) { this.addrCount = addrCount; return this; } public Integer getAddrCount() { return this.addrCount; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv4AddrPoolsIpv4AddrPool setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv4AddrPoolsIpv4AddrPool setName(String name) { this.name = name; return this; } public String getName() { return this.name; } } public static class DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv4AddrPools extends TeaModel { @NameInMap("Ipv4AddrPool") public java.util.List<DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv4AddrPoolsIpv4AddrPool> ipv4AddrPool; public static DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv4AddrPools build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv4AddrPools self = new DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv4AddrPools(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv4AddrPools setIpv4AddrPool(java.util.List<DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv4AddrPoolsIpv4AddrPool> ipv4AddrPool) { this.ipv4AddrPool = ipv4AddrPool; return this; } public java.util.List<DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv4AddrPoolsIpv4AddrPool> getIpv4AddrPool() { return this.ipv4AddrPool; } } public static class DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv6AddrPoolsIpv6AddrPool extends TeaModel { /** * <p>The number of addresses in the address pool.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("AddrCount") public Integer addrCount; /** * <p>The ID of the address pool.</p> * * <strong>example:</strong> * <p>pool1</p> */ @NameInMap("Id") public String id; /** * <p>The name of the address pool.</p> * * <strong>example:</strong> * <p>testpool</p> */ @NameInMap("Name") public String name; public static DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv6AddrPoolsIpv6AddrPool build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv6AddrPoolsIpv6AddrPool self = new DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv6AddrPoolsIpv6AddrPool(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv6AddrPoolsIpv6AddrPool setAddrCount(Integer addrCount) { this.addrCount = addrCount; return this; } public Integer getAddrCount() { return this.addrCount; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv6AddrPoolsIpv6AddrPool setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv6AddrPoolsIpv6AddrPool setName(String name) { this.name = name; return this; } public String getName() { return this.name; } } public static class DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv6AddrPools extends TeaModel { @NameInMap("Ipv6AddrPool") public java.util.List<DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv6AddrPoolsIpv6AddrPool> ipv6AddrPool; public static DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv6AddrPools build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv6AddrPools self = new DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv6AddrPools(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv6AddrPools setIpv6AddrPool(java.util.List<DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv6AddrPoolsIpv6AddrPool> ipv6AddrPool) { this.ipv6AddrPool = ipv6AddrPool; return this; } public java.util.List<DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyIpv6AddrPoolsIpv6AddrPool> getIpv6AddrPool() { return this.ipv6AddrPool; } } public static class DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyLinesLine extends TeaModel { /** * <p>The parent line code of the source region. Leave it blank if no parent line exists.</p> * * <strong>example:</strong> * <p>telecom</p> */ @NameInMap("FatherCode") public String fatherCode; /** * <p>The line name of the source region.</p> * * <strong>example:</strong> * <p>default</p> */ @NameInMap("GroupCode") public String groupCode; /** * <p>The name of the source region group.</p> * * <strong>example:</strong> * <p>global</p> */ @NameInMap("GroupName") public String groupName; /** * <p>The line code of the source region.</p> * * <strong>example:</strong> * <p>default</p> */ @NameInMap("LineCode") public String lineCode; /** * <p>The code of the source region group.</p> * * <strong>example:</strong> * <p>global</p> */ @NameInMap("LineName") public String lineName; public static DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyLinesLine build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyLinesLine self = new DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyLinesLine(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyLinesLine setFatherCode(String fatherCode) { this.fatherCode = fatherCode; return this; } public String getFatherCode() { return this.fatherCode; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyLinesLine setGroupCode(String groupCode) { this.groupCode = groupCode; return this; } public String getGroupCode() { return this.groupCode; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyLinesLine setGroupName(String groupName) { this.groupName = groupName; return this; } public String getGroupName() { return this.groupName; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyLinesLine setLineCode(String lineCode) { this.lineCode = lineCode; return this; } public String getLineCode() { return this.lineCode; } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyLinesLine setLineName(String lineName) { this.lineName = lineName; return this; } public String getLineName() { return this.lineName; } } public static class DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyLines extends TeaModel { @NameInMap("Line") public java.util.List<DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyLinesLine> line; public static DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyLines build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyLines self = new DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyLines(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyLines setLine(java.util.List<DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyLinesLine> line) { this.line = line; return this; } public java.util.List<DescribeDnsGtmAccessStrategyAvailableConfigResponseBodyLinesLine> getLine() { return this.line; } } public static class DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedDomainLines extends TeaModel { @NameInMap("SelectedDomainLine") public java.util.List<String> selectedDomainLine; public static DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedDomainLines build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedDomainLines self = new DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedDomainLines(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedDomainLines setSelectedDomainLine(java.util.List<String> selectedDomainLine) { this.selectedDomainLine = selectedDomainLine; return this; } public java.util.List<String> getSelectedDomainLine() { return this.selectedDomainLine; } } public static class DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedIpv4Lines extends TeaModel { @NameInMap("SelectedIpv4Line") public java.util.List<String> selectedIpv4Line; public static DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedIpv4Lines build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedIpv4Lines self = new DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedIpv4Lines(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedIpv4Lines setSelectedIpv4Line(java.util.List<String> selectedIpv4Line) { this.selectedIpv4Line = selectedIpv4Line; return this; } public java.util.List<String> getSelectedIpv4Line() { return this.selectedIpv4Line; } } public static class DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedIpv6Lines extends TeaModel { @NameInMap("SelectedIpv6Line") public java.util.List<String> selectedIpv6Line; public static DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedIpv6Lines build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedIpv6Lines self = new DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedIpv6Lines(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyAvailableConfigResponseBodySelectedIpv6Lines setSelectedIpv6Line(java.util.List<String> selectedIpv6Line) { this.selectedIpv6Line = selectedIpv6Line; return this; } public java.util.List<String> getSelectedIpv6Line() { return this.selectedIpv6Line; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDnsGtmAccessStrategyRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmAccessStrategyRequest extends TeaModel { /** * <p>The language to return some 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 access policy.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>strategyId1</p> */ @NameInMap("StrategyId") public String strategyId; public static DescribeDnsGtmAccessStrategyRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyRequest self = new DescribeDnsGtmAccessStrategyRequest(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDnsGtmAccessStrategyRequest 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/DescribeDnsGtmAccessStrategyResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmAccessStrategyResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDnsGtmAccessStrategyResponseBody body; public static DescribeDnsGtmAccessStrategyResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyResponse self = new DescribeDnsGtmAccessStrategyResponse(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDnsGtmAccessStrategyResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDnsGtmAccessStrategyResponse setBody(DescribeDnsGtmAccessStrategyResponseBody body) { this.body = body; return this; } public DescribeDnsGtmAccessStrategyResponseBody 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/DescribeDnsGtmAccessStrategyResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmAccessStrategyResponseBody extends TeaModel { /** * <p>The primary/secondary switchover policy for address pool groups. Valid values:</p> * <ul> * <li>AUTO: performs automatic switchover between the primary and secondary address pool groups upon failures.</li> * <li>DEFAULT: uses the primary address pool group.</li> * <li>FAILOVER: uses the secondary address pool group.</li> * </ul> * * <strong>example:</strong> * <p>auto</p> */ @NameInMap("AccessMode") public String accessMode; /** * <p>The time when the access policy was created.</p> * * <strong>example:</strong> * <p>2018-08-09T00:10Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>The timestamp that indicates when the access policy was created.</p> * * <strong>example:</strong> * <p>1533773400000</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>The status of the primary address pool group. Valid values:</p> * <ul> * <li>AVAILABLE: available</li> * <li>NOT_AVAILABLE: unavailable</li> * </ul> * * <strong>example:</strong> * <p>AVAILABLE</p> */ @NameInMap("DefaultAddrPoolGroupStatus") public String defaultAddrPoolGroupStatus; /** * <p>The type of the primary address pool. Valid values:</p> * <ul> * <li>IPV4</li> * <li>IPV6</li> * <li>DOMAIN</li> * </ul> * * <strong>example:</strong> * <p>ipv4</p> */ @NameInMap("DefaultAddrPoolType") public String defaultAddrPoolType; /** * <p>The address pools in the primary address pool group.</p> */ @NameInMap("DefaultAddrPools") public DescribeDnsGtmAccessStrategyResponseBodyDefaultAddrPools defaultAddrPools; /** * <p>The number of available addresses in the primary address pool.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("DefaultAvailableAddrNum") public Integer defaultAvailableAddrNum; /** * <p>Indicates whether scheduling optimization for latency resolution was enabled for the primary address pool group. Valid values:</p> * <ul> * <li>OPEN: enabled</li> * <li>CLOSE: disabled</li> * </ul> * * <strong>example:</strong> * <p>open</p> */ @NameInMap("DefaultLatencyOptimization") public String defaultLatencyOptimization; /** * <p>The load balancing policy of the primary address pool group. Valid values:</p> * <ul> * <li>ALL_RR: returns all addresses.</li> * <li>RATIO: returns addresses by weight.</li> * </ul> * * <strong>example:</strong> * <p>all_rr</p> */ @NameInMap("DefaultLbaStrategy") public String defaultLbaStrategy; /** * <p>The maximum number of addresses returned from the primary address pool group.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("DefaultMaxReturnAddrNum") public Integer defaultMaxReturnAddrNum; /** * <p>The minimum number of available addresses in the primary address pool group.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("DefaultMinAvailableAddrNum") public Integer defaultMinAvailableAddrNum; /** * <p>The type of the active address pool group. Valid values:</p> * <ul> * <li>DEFAULT: the primary address pool group</li> * <li>FAILOVER: the secondary address pool group</li> * </ul> * * <strong>example:</strong> * <p>DEFAULT</p> */ @NameInMap("EffectiveAddrPoolGroupType") public String effectiveAddrPoolGroupType; /** * <p>The status of the secondary address pool group. Valid values:</p> * <ul> * <li>AVAILABLE: available</li> * <li>NOT_AVAILABLE: unavailable</li> * </ul> * * <strong>example:</strong> * <p>AVAILABLE</p> */ @NameInMap("FailoverAddrPoolGroupStatus") public String failoverAddrPoolGroupStatus; /** * <p>The type of the secondary address pool. Valid values:</p> * <ul> * <li>IPV4</li> * <li>IPV6</li> * <li>DOMAIN</li> * </ul> * * <strong>example:</strong> * <p>ipv4</p> */ @NameInMap("FailoverAddrPoolType") public String failoverAddrPoolType; /** * <p>The address pools in the secondary address pool group.</p> */ @NameInMap("FailoverAddrPools") public DescribeDnsGtmAccessStrategyResponseBodyFailoverAddrPools failoverAddrPools; /** * <p>The number of available addresses in the secondary address pool.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("FailoverAvailableAddrNum") public Integer failoverAvailableAddrNum; /** * <p>Indicates whether scheduling optimization for latency resolution was enabled for the secondary address pool group. Valid values:</p> * <ul> * <li>OPEN: enabled</li> * <li>CLOSE: disabled</li> * </ul> * * <strong>example:</strong> * <p>open</p> */ @NameInMap("FailoverLatencyOptimization") public String failoverLatencyOptimization; /** * <p>The load balancing policy of the secondary address pool group. Valid values:</p> * <ul> * <li>ALL_RR: returns all addresses.</li> * <li>RATIO: returns addresses by weight.</li> * </ul> * * <strong>example:</strong> * <p>all_rr</p> */ @NameInMap("FailoverLbaStrategy") public String failoverLbaStrategy; /** * <p>The maximum number of addresses returned from the secondary address pool group.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("FailoverMaxReturnAddrNum") public Integer failoverMaxReturnAddrNum; /** * <p>The minimum number of available addresses in the secondary address pool group.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("FailoverMinAvailableAddrNum") public Integer failoverMinAvailableAddrNum; /** * <p>The ID of the associated instance.</p> * * <strong>example:</strong> * <p>instance1</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>The source regions.</p> */ @NameInMap("Lines") public DescribeDnsGtmAccessStrategyResponseBodyLines lines; /** * <p>The ID of the request.</p> * * <strong>example:</strong> * <p>BA1608CA-834C-4E63-8682-8AF0B11ED72D</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The ID of the access policy.</p> * * <strong>example:</strong> * <p>strategyId1</p> */ @NameInMap("StrategyId") public String strategyId; /** * <p>The type of the access policy. Valid values:</p> * <ul> * <li>GEO: geographical location-based</li> * <li>LATENCY: latency-based</li> * </ul> * * <strong>example:</strong> * <p>geo</p> */ @NameInMap("StrategyMode") public String strategyMode; /** * <p>The name of the access policy.</p> * * <strong>example:</strong> * <p>strategyName1</p> */ @NameInMap("StrategyName") public String strategyName; public static DescribeDnsGtmAccessStrategyResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyResponseBody self = new DescribeDnsGtmAccessStrategyResponseBody(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyResponseBody setAccessMode(String accessMode) { this.accessMode = accessMode; return this; } public String getAccessMode() { return this.accessMode; } public DescribeDnsGtmAccessStrategyResponseBody setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public DescribeDnsGtmAccessStrategyResponseBody setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public DescribeDnsGtmAccessStrategyResponseBody setDefaultAddrPoolGroupStatus(String defaultAddrPoolGroupStatus) { this.defaultAddrPoolGroupStatus = defaultAddrPoolGroupStatus; return this; } public String getDefaultAddrPoolGroupStatus() { return this.defaultAddrPoolGroupStatus; } public DescribeDnsGtmAccessStrategyResponseBody setDefaultAddrPoolType(String defaultAddrPoolType) { this.defaultAddrPoolType = defaultAddrPoolType; return this; } public String getDefaultAddrPoolType() { return this.defaultAddrPoolType; } public DescribeDnsGtmAccessStrategyResponseBody setDefaultAddrPools(DescribeDnsGtmAccessStrategyResponseBodyDefaultAddrPools defaultAddrPools) { this.defaultAddrPools = defaultAddrPools; return this; } public DescribeDnsGtmAccessStrategyResponseBodyDefaultAddrPools getDefaultAddrPools() { return this.defaultAddrPools; } public DescribeDnsGtmAccessStrategyResponseBody setDefaultAvailableAddrNum(Integer defaultAvailableAddrNum) { this.defaultAvailableAddrNum = defaultAvailableAddrNum; return this; } public Integer getDefaultAvailableAddrNum() { return this.defaultAvailableAddrNum; } public DescribeDnsGtmAccessStrategyResponseBody setDefaultLatencyOptimization(String defaultLatencyOptimization) { this.defaultLatencyOptimization = defaultLatencyOptimization; return this; } public String getDefaultLatencyOptimization() { return this.defaultLatencyOptimization; } public DescribeDnsGtmAccessStrategyResponseBody setDefaultLbaStrategy(String defaultLbaStrategy) { this.defaultLbaStrategy = defaultLbaStrategy; return this; } public String getDefaultLbaStrategy() { return this.defaultLbaStrategy; } public DescribeDnsGtmAccessStrategyResponseBody setDefaultMaxReturnAddrNum(Integer defaultMaxReturnAddrNum) { this.defaultMaxReturnAddrNum = defaultMaxReturnAddrNum; return this; } public Integer getDefaultMaxReturnAddrNum() { return this.defaultMaxReturnAddrNum; } public DescribeDnsGtmAccessStrategyResponseBody setDefaultMinAvailableAddrNum(Integer defaultMinAvailableAddrNum) { this.defaultMinAvailableAddrNum = defaultMinAvailableAddrNum; return this; } public Integer getDefaultMinAvailableAddrNum() { return this.defaultMinAvailableAddrNum; } public DescribeDnsGtmAccessStrategyResponseBody setEffectiveAddrPoolGroupType(String effectiveAddrPoolGroupType) { this.effectiveAddrPoolGroupType = effectiveAddrPoolGroupType; return this; } public String getEffectiveAddrPoolGroupType() { return this.effectiveAddrPoolGroupType; } public DescribeDnsGtmAccessStrategyResponseBody setFailoverAddrPoolGroupStatus(String failoverAddrPoolGroupStatus) { this.failoverAddrPoolGroupStatus = failoverAddrPoolGroupStatus; return this; } public String getFailoverAddrPoolGroupStatus() { return this.failoverAddrPoolGroupStatus; } public DescribeDnsGtmAccessStrategyResponseBody setFailoverAddrPoolType(String failoverAddrPoolType) { this.failoverAddrPoolType = failoverAddrPoolType; return this; } public String getFailoverAddrPoolType() { return this.failoverAddrPoolType; } public DescribeDnsGtmAccessStrategyResponseBody setFailoverAddrPools(DescribeDnsGtmAccessStrategyResponseBodyFailoverAddrPools failoverAddrPools) { this.failoverAddrPools = failoverAddrPools; return this; } public DescribeDnsGtmAccessStrategyResponseBodyFailoverAddrPools getFailoverAddrPools() { return this.failoverAddrPools; } public DescribeDnsGtmAccessStrategyResponseBody setFailoverAvailableAddrNum(Integer failoverAvailableAddrNum) { this.failoverAvailableAddrNum = failoverAvailableAddrNum; return this; } public Integer getFailoverAvailableAddrNum() { return this.failoverAvailableAddrNum; } public DescribeDnsGtmAccessStrategyResponseBody setFailoverLatencyOptimization(String failoverLatencyOptimization) { this.failoverLatencyOptimization = failoverLatencyOptimization; return this; } public String getFailoverLatencyOptimization() { return this.failoverLatencyOptimization; } public DescribeDnsGtmAccessStrategyResponseBody setFailoverLbaStrategy(String failoverLbaStrategy) { this.failoverLbaStrategy = failoverLbaStrategy; return this; } public String getFailoverLbaStrategy() { return this.failoverLbaStrategy; } public DescribeDnsGtmAccessStrategyResponseBody setFailoverMaxReturnAddrNum(Integer failoverMaxReturnAddrNum) { this.failoverMaxReturnAddrNum = failoverMaxReturnAddrNum; return this; } public Integer getFailoverMaxReturnAddrNum() { return this.failoverMaxReturnAddrNum; } public DescribeDnsGtmAccessStrategyResponseBody setFailoverMinAvailableAddrNum(Integer failoverMinAvailableAddrNum) { this.failoverMinAvailableAddrNum = failoverMinAvailableAddrNum; return this; } public Integer getFailoverMinAvailableAddrNum() { return this.failoverMinAvailableAddrNum; } public DescribeDnsGtmAccessStrategyResponseBody setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public DescribeDnsGtmAccessStrategyResponseBody setLines(DescribeDnsGtmAccessStrategyResponseBodyLines lines) { this.lines = lines; return this; } public DescribeDnsGtmAccessStrategyResponseBodyLines getLines() { return this.lines; } public DescribeDnsGtmAccessStrategyResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDnsGtmAccessStrategyResponseBody setStrategyId(String strategyId) { this.strategyId = strategyId; return this; } public String getStrategyId() { return this.strategyId; } public DescribeDnsGtmAccessStrategyResponseBody setStrategyMode(String strategyMode) { this.strategyMode = strategyMode; return this; } public String getStrategyMode() { return this.strategyMode; } public DescribeDnsGtmAccessStrategyResponseBody setStrategyName(String strategyName) { this.strategyName = strategyName; return this; } public String getStrategyName() { return this.strategyName; } public static class DescribeDnsGtmAccessStrategyResponseBodyDefaultAddrPoolsDefaultAddrPool extends TeaModel { /** * <p>The number of addresses in the address pool.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("AddrCount") public Integer addrCount; /** * <p>The ID of the address pool.</p> * * <strong>example:</strong> * <p>pool1</p> */ @NameInMap("Id") public String id; /** * <p>The weight of the address pool.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("LbaWeight") public Integer lbaWeight; /** * <p>The name of the address pool.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Name") public String name; public static DescribeDnsGtmAccessStrategyResponseBodyDefaultAddrPoolsDefaultAddrPool build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyResponseBodyDefaultAddrPoolsDefaultAddrPool self = new DescribeDnsGtmAccessStrategyResponseBodyDefaultAddrPoolsDefaultAddrPool(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyResponseBodyDefaultAddrPoolsDefaultAddrPool setAddrCount(Integer addrCount) { this.addrCount = addrCount; return this; } public Integer getAddrCount() { return this.addrCount; } public DescribeDnsGtmAccessStrategyResponseBodyDefaultAddrPoolsDefaultAddrPool setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public DescribeDnsGtmAccessStrategyResponseBodyDefaultAddrPoolsDefaultAddrPool setLbaWeight(Integer lbaWeight) { this.lbaWeight = lbaWeight; return this; } public Integer getLbaWeight() { return this.lbaWeight; } public DescribeDnsGtmAccessStrategyResponseBodyDefaultAddrPoolsDefaultAddrPool setName(String name) { this.name = name; return this; } public String getName() { return this.name; } } public static class DescribeDnsGtmAccessStrategyResponseBodyDefaultAddrPools extends TeaModel { @NameInMap("DefaultAddrPool") public java.util.List<DescribeDnsGtmAccessStrategyResponseBodyDefaultAddrPoolsDefaultAddrPool> defaultAddrPool; public static DescribeDnsGtmAccessStrategyResponseBodyDefaultAddrPools build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyResponseBodyDefaultAddrPools self = new DescribeDnsGtmAccessStrategyResponseBodyDefaultAddrPools(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyResponseBodyDefaultAddrPools setDefaultAddrPool(java.util.List<DescribeDnsGtmAccessStrategyResponseBodyDefaultAddrPoolsDefaultAddrPool> defaultAddrPool) { this.defaultAddrPool = defaultAddrPool; return this; } public java.util.List<DescribeDnsGtmAccessStrategyResponseBodyDefaultAddrPoolsDefaultAddrPool> getDefaultAddrPool() { return this.defaultAddrPool; } } public static class DescribeDnsGtmAccessStrategyResponseBodyFailoverAddrPoolsFailoverAddrPool extends TeaModel { /** * <p>The number of addresses in the address pool.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("AddrCount") public Integer addrCount; /** * <p>The ID of the address pool.</p> * * <strong>example:</strong> * <p>pool1</p> */ @NameInMap("Id") public String id; /** * <p>The weight of the address pool.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("LbaWeight") public Integer lbaWeight; /** * <p>The name of the address pool.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Name") public String name; public static DescribeDnsGtmAccessStrategyResponseBodyFailoverAddrPoolsFailoverAddrPool build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyResponseBodyFailoverAddrPoolsFailoverAddrPool self = new DescribeDnsGtmAccessStrategyResponseBodyFailoverAddrPoolsFailoverAddrPool(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyResponseBodyFailoverAddrPoolsFailoverAddrPool setAddrCount(Integer addrCount) { this.addrCount = addrCount; return this; } public Integer getAddrCount() { return this.addrCount; } public DescribeDnsGtmAccessStrategyResponseBodyFailoverAddrPoolsFailoverAddrPool setId(String id) { this.id = id; return this; } public String getId() { return this.id; } public DescribeDnsGtmAccessStrategyResponseBodyFailoverAddrPoolsFailoverAddrPool setLbaWeight(Integer lbaWeight) { this.lbaWeight = lbaWeight; return this; } public Integer getLbaWeight() { return this.lbaWeight; } public DescribeDnsGtmAccessStrategyResponseBodyFailoverAddrPoolsFailoverAddrPool setName(String name) { this.name = name; return this; } public String getName() { return this.name; } } public static class DescribeDnsGtmAccessStrategyResponseBodyFailoverAddrPools extends TeaModel { @NameInMap("FailoverAddrPool") public java.util.List<DescribeDnsGtmAccessStrategyResponseBodyFailoverAddrPoolsFailoverAddrPool> failoverAddrPool; public static DescribeDnsGtmAccessStrategyResponseBodyFailoverAddrPools build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyResponseBodyFailoverAddrPools self = new DescribeDnsGtmAccessStrategyResponseBodyFailoverAddrPools(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyResponseBodyFailoverAddrPools setFailoverAddrPool(java.util.List<DescribeDnsGtmAccessStrategyResponseBodyFailoverAddrPoolsFailoverAddrPool> failoverAddrPool) { this.failoverAddrPool = failoverAddrPool; return this; } public java.util.List<DescribeDnsGtmAccessStrategyResponseBodyFailoverAddrPoolsFailoverAddrPool> getFailoverAddrPool() { return this.failoverAddrPool; } } public static class DescribeDnsGtmAccessStrategyResponseBodyLinesLine extends TeaModel { /** * <p>The code of the source region group.</p> * * <strong>example:</strong> * <p>default</p> */ @NameInMap("GroupCode") public String groupCode; /** * <p>The name of the source region group.</p> * * <strong>example:</strong> * <p>global</p> */ @NameInMap("GroupName") public String groupName; /** * <p>The line code of the source region.</p> * * <strong>example:</strong> * <p>default</p> */ @NameInMap("LineCode") public String lineCode; /** * <p>The line name of the source region.</p> * * <strong>example:</strong> * <p>global</p> */ @NameInMap("LineName") public String lineName; public static DescribeDnsGtmAccessStrategyResponseBodyLinesLine build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyResponseBodyLinesLine self = new DescribeDnsGtmAccessStrategyResponseBodyLinesLine(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyResponseBodyLinesLine setGroupCode(String groupCode) { this.groupCode = groupCode; return this; } public String getGroupCode() { return this.groupCode; } public DescribeDnsGtmAccessStrategyResponseBodyLinesLine setGroupName(String groupName) { this.groupName = groupName; return this; } public String getGroupName() { return this.groupName; } public DescribeDnsGtmAccessStrategyResponseBodyLinesLine setLineCode(String lineCode) { this.lineCode = lineCode; return this; } public String getLineCode() { return this.lineCode; } public DescribeDnsGtmAccessStrategyResponseBodyLinesLine setLineName(String lineName) { this.lineName = lineName; return this; } public String getLineName() { return this.lineName; } } public static class DescribeDnsGtmAccessStrategyResponseBodyLines extends TeaModel { @NameInMap("Line") public java.util.List<DescribeDnsGtmAccessStrategyResponseBodyLinesLine> line; public static DescribeDnsGtmAccessStrategyResponseBodyLines build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAccessStrategyResponseBodyLines self = new DescribeDnsGtmAccessStrategyResponseBodyLines(); return TeaModel.build(map, self); } public DescribeDnsGtmAccessStrategyResponseBodyLines setLine(java.util.List<DescribeDnsGtmAccessStrategyResponseBodyLinesLine> line) { this.line = line; return this; } public java.util.List<DescribeDnsGtmAccessStrategyResponseBodyLinesLine> getLine() { return this.line; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDnsGtmAddrAttributeInfoRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmAddrAttributeInfoRequest extends TeaModel { /** * <p>The addresses.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>[&quot;1.1.1.1&quot;]</p> */ @NameInMap("Addrs") public String addrs; /** * <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 type of addresses. Valid values:</p> * <ul> * <li>IPV4: IPv4 address</li> * <li>IPv6: IPv6 address</li> * <li>DOMAIN: domain name</li> * </ul> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>ipv4</p> */ @NameInMap("Type") public String type; public static DescribeDnsGtmAddrAttributeInfoRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAddrAttributeInfoRequest self = new DescribeDnsGtmAddrAttributeInfoRequest(); return TeaModel.build(map, self); } public DescribeDnsGtmAddrAttributeInfoRequest setAddrs(String addrs) { this.addrs = addrs; return this; } public String getAddrs() { return this.addrs; } public DescribeDnsGtmAddrAttributeInfoRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDnsGtmAddrAttributeInfoRequest 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/DescribeDnsGtmAddrAttributeInfoResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmAddrAttributeInfoResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDnsGtmAddrAttributeInfoResponseBody body; public static DescribeDnsGtmAddrAttributeInfoResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAddrAttributeInfoResponse self = new DescribeDnsGtmAddrAttributeInfoResponse(); return TeaModel.build(map, self); } public DescribeDnsGtmAddrAttributeInfoResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDnsGtmAddrAttributeInfoResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDnsGtmAddrAttributeInfoResponse setBody(DescribeDnsGtmAddrAttributeInfoResponseBody body) { this.body = body; return this; } public DescribeDnsGtmAddrAttributeInfoResponseBody 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/DescribeDnsGtmAddrAttributeInfoResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmAddrAttributeInfoResponseBody extends TeaModel { /** * <p>The address in the address pool.</p> */ @NameInMap("Addr") public DescribeDnsGtmAddrAttributeInfoResponseBodyAddr addr; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>6856BCF6-11D6-4D7E-AC53-FD579933522B</p> */ @NameInMap("RequestId") public String requestId; public static DescribeDnsGtmAddrAttributeInfoResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAddrAttributeInfoResponseBody self = new DescribeDnsGtmAddrAttributeInfoResponseBody(); return TeaModel.build(map, self); } public DescribeDnsGtmAddrAttributeInfoResponseBody setAddr(DescribeDnsGtmAddrAttributeInfoResponseBodyAddr addr) { this.addr = addr; return this; } public DescribeDnsGtmAddrAttributeInfoResponseBodyAddr getAddr() { return this.addr; } public DescribeDnsGtmAddrAttributeInfoResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public static class DescribeDnsGtmAddrAttributeInfoResponseBodyAddrAddrAttributeInfo extends TeaModel { /** * <p>The parent line code of the source region.</p> * * <strong>example:</strong> * <p>telecom</p> */ @NameInMap("FatherCode") public String fatherCode; /** * <p>The code of the source region group.</p> * * <strong>example:</strong> * <p>DEFAULT</p> */ @NameInMap("GroupCode") public String groupCode; /** * <p>The name of the source region group.</p> * * <strong>example:</strong> * <p>Global</p> */ @NameInMap("GroupName") public String groupName; /** * <p>The line code of the source region.</p> * * <strong>example:</strong> * <p>default</p> */ @NameInMap("LineCode") public String lineCode; /** * <p>The line name of the source region.</p> * * <strong>example:</strong> * <p>Global</p> */ @NameInMap("LineName") public String lineName; public static DescribeDnsGtmAddrAttributeInfoResponseBodyAddrAddrAttributeInfo build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAddrAttributeInfoResponseBodyAddrAddrAttributeInfo self = new DescribeDnsGtmAddrAttributeInfoResponseBodyAddrAddrAttributeInfo(); return TeaModel.build(map, self); } public DescribeDnsGtmAddrAttributeInfoResponseBodyAddrAddrAttributeInfo setFatherCode(String fatherCode) { this.fatherCode = fatherCode; return this; } public String getFatherCode() { return this.fatherCode; } public DescribeDnsGtmAddrAttributeInfoResponseBodyAddrAddrAttributeInfo setGroupCode(String groupCode) { this.groupCode = groupCode; return this; } public String getGroupCode() { return this.groupCode; } public DescribeDnsGtmAddrAttributeInfoResponseBodyAddrAddrAttributeInfo setGroupName(String groupName) { this.groupName = groupName; return this; } public String getGroupName() { return this.groupName; } public DescribeDnsGtmAddrAttributeInfoResponseBodyAddrAddrAttributeInfo setLineCode(String lineCode) { this.lineCode = lineCode; return this; } public String getLineCode() { return this.lineCode; } public DescribeDnsGtmAddrAttributeInfoResponseBodyAddrAddrAttributeInfo setLineName(String lineName) { this.lineName = lineName; return this; } public String getLineName() { return this.lineName; } } public static class DescribeDnsGtmAddrAttributeInfoResponseBodyAddrAddr extends TeaModel { /** * <p>The address in the address pool.</p> * * <strong>example:</strong> * <p>1.1.1.1</p> */ @NameInMap("Addr") public String addr; /** * <p>The information about the source region of the address.</p> */ @NameInMap("AttributeInfo") public DescribeDnsGtmAddrAttributeInfoResponseBodyAddrAddrAttributeInfo attributeInfo; public static DescribeDnsGtmAddrAttributeInfoResponseBodyAddrAddr build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAddrAttributeInfoResponseBodyAddrAddr self = new DescribeDnsGtmAddrAttributeInfoResponseBodyAddrAddr(); return TeaModel.build(map, self); } public DescribeDnsGtmAddrAttributeInfoResponseBodyAddrAddr setAddr(String addr) { this.addr = addr; return this; } public String getAddr() { return this.addr; } public DescribeDnsGtmAddrAttributeInfoResponseBodyAddrAddr setAttributeInfo(DescribeDnsGtmAddrAttributeInfoResponseBodyAddrAddrAttributeInfo attributeInfo) { this.attributeInfo = attributeInfo; return this; } public DescribeDnsGtmAddrAttributeInfoResponseBodyAddrAddrAttributeInfo getAttributeInfo() { return this.attributeInfo; } } public static class DescribeDnsGtmAddrAttributeInfoResponseBodyAddr extends TeaModel { @NameInMap("Addr") public java.util.List<DescribeDnsGtmAddrAttributeInfoResponseBodyAddrAddr> addr; public static DescribeDnsGtmAddrAttributeInfoResponseBodyAddr build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAddrAttributeInfoResponseBodyAddr self = new DescribeDnsGtmAddrAttributeInfoResponseBodyAddr(); return TeaModel.build(map, self); } public DescribeDnsGtmAddrAttributeInfoResponseBodyAddr setAddr(java.util.List<DescribeDnsGtmAddrAttributeInfoResponseBodyAddrAddr> addr) { this.addr = addr; return this; } public java.util.List<DescribeDnsGtmAddrAttributeInfoResponseBodyAddrAddr> getAddr() { return this.addr; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDnsGtmAddressPoolAvailableConfigRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmAddressPoolAvailableConfigRequest extends TeaModel { /** * <p>The ID of the instance.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>instance1</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>The language to return some response parameters. Default value: en. Valid values: en, zh, and ja.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; public static DescribeDnsGtmAddressPoolAvailableConfigRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAddressPoolAvailableConfigRequest self = new DescribeDnsGtmAddressPoolAvailableConfigRequest(); return TeaModel.build(map, self); } public DescribeDnsGtmAddressPoolAvailableConfigRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public DescribeDnsGtmAddressPoolAvailableConfigRequest 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/DescribeDnsGtmAddressPoolAvailableConfigResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmAddressPoolAvailableConfigResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDnsGtmAddressPoolAvailableConfigResponseBody body; public static DescribeDnsGtmAddressPoolAvailableConfigResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAddressPoolAvailableConfigResponse self = new DescribeDnsGtmAddressPoolAvailableConfigResponse(); return TeaModel.build(map, self); } public DescribeDnsGtmAddressPoolAvailableConfigResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDnsGtmAddressPoolAvailableConfigResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDnsGtmAddressPoolAvailableConfigResponse setBody(DescribeDnsGtmAddressPoolAvailableConfigResponseBody body) { this.body = body; return this; } public DescribeDnsGtmAddressPoolAvailableConfigResponseBody 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/DescribeDnsGtmAddressPoolAvailableConfigResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmAddressPoolAvailableConfigResponseBody extends TeaModel { /** * <p>The supported source regions.</p> */ @NameInMap("AttributeInfos") public DescribeDnsGtmAddressPoolAvailableConfigResponseBodyAttributeInfos attributeInfos; /** * <p>The ID of the request.</p> * * <strong>example:</strong> * <p>199C3699-9A7B-41A1-BB5A-F1E862D3CB38</p> */ @NameInMap("RequestId") public String requestId; public static DescribeDnsGtmAddressPoolAvailableConfigResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAddressPoolAvailableConfigResponseBody self = new DescribeDnsGtmAddressPoolAvailableConfigResponseBody(); return TeaModel.build(map, self); } public DescribeDnsGtmAddressPoolAvailableConfigResponseBody setAttributeInfos(DescribeDnsGtmAddressPoolAvailableConfigResponseBodyAttributeInfos attributeInfos) { this.attributeInfos = attributeInfos; return this; } public DescribeDnsGtmAddressPoolAvailableConfigResponseBodyAttributeInfos getAttributeInfos() { return this.attributeInfos; } public DescribeDnsGtmAddressPoolAvailableConfigResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public static class DescribeDnsGtmAddressPoolAvailableConfigResponseBodyAttributeInfosAttributeInfo extends TeaModel { /** * <p>The parent line code of the source region.</p> * * <strong>example:</strong> * <p>telecom</p> */ @NameInMap("FatherCode") public String fatherCode; /** * <p>The code of the source region group.</p> * * <strong>example:</strong> * <p>default</p> */ @NameInMap("GroupCode") public String groupCode; /** * <p>The name of the request source group.</p> * * <strong>example:</strong> * <p>global</p> */ @NameInMap("GroupName") public String groupName; /** * <p>The line code of the source region.</p> * * <strong>example:</strong> * <p>default</p> */ @NameInMap("LineCode") public String lineCode; /** * <p>The line name of the source region.</p> * * <strong>example:</strong> * <p>global</p> */ @NameInMap("LineName") public String lineName; public static DescribeDnsGtmAddressPoolAvailableConfigResponseBodyAttributeInfosAttributeInfo build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAddressPoolAvailableConfigResponseBodyAttributeInfosAttributeInfo self = new DescribeDnsGtmAddressPoolAvailableConfigResponseBodyAttributeInfosAttributeInfo(); return TeaModel.build(map, self); } public DescribeDnsGtmAddressPoolAvailableConfigResponseBodyAttributeInfosAttributeInfo setFatherCode(String fatherCode) { this.fatherCode = fatherCode; return this; } public String getFatherCode() { return this.fatherCode; } public DescribeDnsGtmAddressPoolAvailableConfigResponseBodyAttributeInfosAttributeInfo setGroupCode(String groupCode) { this.groupCode = groupCode; return this; } public String getGroupCode() { return this.groupCode; } public DescribeDnsGtmAddressPoolAvailableConfigResponseBodyAttributeInfosAttributeInfo setGroupName(String groupName) { this.groupName = groupName; return this; } public String getGroupName() { return this.groupName; } public DescribeDnsGtmAddressPoolAvailableConfigResponseBodyAttributeInfosAttributeInfo setLineCode(String lineCode) { this.lineCode = lineCode; return this; } public String getLineCode() { return this.lineCode; } public DescribeDnsGtmAddressPoolAvailableConfigResponseBodyAttributeInfosAttributeInfo setLineName(String lineName) { this.lineName = lineName; return this; } public String getLineName() { return this.lineName; } } public static class DescribeDnsGtmAddressPoolAvailableConfigResponseBodyAttributeInfos extends TeaModel { @NameInMap("AttributeInfo") public java.util.List<DescribeDnsGtmAddressPoolAvailableConfigResponseBodyAttributeInfosAttributeInfo> attributeInfo; public static DescribeDnsGtmAddressPoolAvailableConfigResponseBodyAttributeInfos build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAddressPoolAvailableConfigResponseBodyAttributeInfos self = new DescribeDnsGtmAddressPoolAvailableConfigResponseBodyAttributeInfos(); return TeaModel.build(map, self); } public DescribeDnsGtmAddressPoolAvailableConfigResponseBodyAttributeInfos setAttributeInfo(java.util.List<DescribeDnsGtmAddressPoolAvailableConfigResponseBodyAttributeInfosAttributeInfo> attributeInfo) { this.attributeInfo = attributeInfo; return this; } public java.util.List<DescribeDnsGtmAddressPoolAvailableConfigResponseBodyAttributeInfosAttributeInfo> getAttributeInfo() { return this.attributeInfo; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDnsGtmAvailableAlertGroupRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmAvailableAlertGroupRequest extends TeaModel { /** * <p>The language to return some response parameters. Default value: en. Valid values: en, zh, and ja.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; public static DescribeDnsGtmAvailableAlertGroupRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAvailableAlertGroupRequest self = new DescribeDnsGtmAvailableAlertGroupRequest(); return TeaModel.build(map, self); } public DescribeDnsGtmAvailableAlertGroupRequest 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/DescribeDnsGtmAvailableAlertGroupResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmAvailableAlertGroupResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDnsGtmAvailableAlertGroupResponseBody body; public static DescribeDnsGtmAvailableAlertGroupResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAvailableAlertGroupResponse self = new DescribeDnsGtmAvailableAlertGroupResponse(); return TeaModel.build(map, self); } public DescribeDnsGtmAvailableAlertGroupResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDnsGtmAvailableAlertGroupResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDnsGtmAvailableAlertGroupResponse setBody(DescribeDnsGtmAvailableAlertGroupResponseBody body) { this.body = body; return this; } public DescribeDnsGtmAvailableAlertGroupResponseBody 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/DescribeDnsGtmAvailableAlertGroupResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmAvailableAlertGroupResponseBody extends TeaModel { /** * <p>The returned available alert groups.</p> */ @NameInMap("AvailableAlertGroup") public String availableAlertGroup; /** * <p>The ID of the request.</p> * * <strong>example:</strong> * <p>6856BCF6-11D6-4D7E-AC53-FD579933522B</p> */ @NameInMap("RequestId") public String requestId; public static DescribeDnsGtmAvailableAlertGroupResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmAvailableAlertGroupResponseBody self = new DescribeDnsGtmAvailableAlertGroupResponseBody(); return TeaModel.build(map, self); } public DescribeDnsGtmAvailableAlertGroupResponseBody setAvailableAlertGroup(String availableAlertGroup) { this.availableAlertGroup = availableAlertGroup; return this; } public String getAvailableAlertGroup() { return this.availableAlertGroup; } public DescribeDnsGtmAvailableAlertGroupResponseBody 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/DescribeDnsGtmInstanceAddressPoolRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmInstanceAddressPoolRequest extends TeaModel { /** * <p>The ID of the address pool.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>testpool1</p> */ @NameInMap("AddrPoolId") public String addrPoolId; /** * <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; public static DescribeDnsGtmInstanceAddressPoolRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceAddressPoolRequest self = new DescribeDnsGtmInstanceAddressPoolRequest(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceAddressPoolRequest setAddrPoolId(String addrPoolId) { this.addrPoolId = addrPoolId; return this; } public String getAddrPoolId() { return this.addrPoolId; } public DescribeDnsGtmInstanceAddressPoolRequest 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/DescribeDnsGtmInstanceAddressPoolResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmInstanceAddressPoolResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDnsGtmInstanceAddressPoolResponseBody body; public static DescribeDnsGtmInstanceAddressPoolResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceAddressPoolResponse self = new DescribeDnsGtmInstanceAddressPoolResponse(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceAddressPoolResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDnsGtmInstanceAddressPoolResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDnsGtmInstanceAddressPoolResponse setBody(DescribeDnsGtmInstanceAddressPoolResponseBody body) { this.body = body; return this; } public DescribeDnsGtmInstanceAddressPoolResponseBody 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/DescribeDnsGtmInstanceAddressPoolResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmInstanceAddressPoolResponseBody extends TeaModel { /** * <p>The number of addresses in the address pool.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("AddrCount") public Integer addrCount; /** * <p>The ID of the address pool.</p> * * <strong>example:</strong> * <p>testpool1</p> */ @NameInMap("AddrPoolId") public String addrPoolId; /** * <p>The addresses in the address pool.</p> */ @NameInMap("Addrs") public DescribeDnsGtmInstanceAddressPoolResponseBodyAddrs addrs; /** * <p>The time when the address pool was created.</p> * * <strong>example:</strong> * <p>2017-12-28T13:08Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>The timestamp that indicates the time when the address pool was created.</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>The load balancing policy for the address pool. Valid values:</p> * <ul> * <li>ALL_RR: returns all addresses.</li> * <li>RATIO: returns addresses by weight.</li> * </ul> * * <strong>example:</strong> * <p>all_rr</p> */ @NameInMap("LbaStrategy") public String lbaStrategy; /** * <p>The ID of the health check configuration.</p> * * <strong>example:</strong> * <p>test1</p> */ @NameInMap("MonitorConfigId") public String monitorConfigId; /** * <p>Indicates the status of the health check. Valid values:</p> * <ul> * <li>OPEN: The health check is enabled.</li> * <li>CLOSE: The health check is disabled.</li> * <li>UNCONFIGURED: The health check is not configured.</li> * </ul> * * <strong>example:</strong> * <p>open</p> */ @NameInMap("MonitorStatus") public String monitorStatus; /** * <p>The name of the address pool.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Name") public String name; /** * <p>The ID of the request.</p> * * <strong>example:</strong> * <p>6856BCF6-11D6-4D7E-AC53-FD579933522B</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The type of the address pool. Valid values:</p> * <ul> * <li>IPV4: IPv4 address</li> * <li>IPV6: IPv6 address</li> * <li>DOMAIN: domain name</li> * </ul> * * <strong>example:</strong> * <p>ipv4</p> */ @NameInMap("Type") public String type; /** * <p>The time when the address pool was last updated.</p> * * <strong>example:</strong> * <p>2017-12-28T13:08Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <p>The timestamp that indicates the time when the address pool was last updated.</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; public static DescribeDnsGtmInstanceAddressPoolResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceAddressPoolResponseBody self = new DescribeDnsGtmInstanceAddressPoolResponseBody(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceAddressPoolResponseBody setAddrCount(Integer addrCount) { this.addrCount = addrCount; return this; } public Integer getAddrCount() { return this.addrCount; } public DescribeDnsGtmInstanceAddressPoolResponseBody setAddrPoolId(String addrPoolId) { this.addrPoolId = addrPoolId; return this; } public String getAddrPoolId() { return this.addrPoolId; } public DescribeDnsGtmInstanceAddressPoolResponseBody setAddrs(DescribeDnsGtmInstanceAddressPoolResponseBodyAddrs addrs) { this.addrs = addrs; return this; } public DescribeDnsGtmInstanceAddressPoolResponseBodyAddrs getAddrs() { return this.addrs; } public DescribeDnsGtmInstanceAddressPoolResponseBody setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public DescribeDnsGtmInstanceAddressPoolResponseBody setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public DescribeDnsGtmInstanceAddressPoolResponseBody setLbaStrategy(String lbaStrategy) { this.lbaStrategy = lbaStrategy; return this; } public String getLbaStrategy() { return this.lbaStrategy; } public DescribeDnsGtmInstanceAddressPoolResponseBody setMonitorConfigId(String monitorConfigId) { this.monitorConfigId = monitorConfigId; return this; } public String getMonitorConfigId() { return this.monitorConfigId; } public DescribeDnsGtmInstanceAddressPoolResponseBody setMonitorStatus(String monitorStatus) { this.monitorStatus = monitorStatus; return this; } public String getMonitorStatus() { return this.monitorStatus; } public DescribeDnsGtmInstanceAddressPoolResponseBody setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public DescribeDnsGtmInstanceAddressPoolResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDnsGtmInstanceAddressPoolResponseBody setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public DescribeDnsGtmInstanceAddressPoolResponseBody setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public DescribeDnsGtmInstanceAddressPoolResponseBody setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public static class DescribeDnsGtmInstanceAddressPoolResponseBodyAddrsAddr extends TeaModel { /** * <p>The address.</p> * * <strong>example:</strong> * <p>1.1.1.1</p> */ @NameInMap("Addr") public String addr; /** * <p>The status of the last health check on the address. Valid values:</p> * <ul> * <li>OK: No active alerts are triggered.</li> * <li>ALERT: Alerts are triggered based on the alert rules.</li> * </ul> * * <strong>example:</strong> * <p>ok</p> */ @NameInMap("AlertStatus") public String alertStatus; /** * <p>The source region of the address.</p> * <ul> * <li>lineCode: the line code of the source region of the address. This parameter is deprecated, and lineCodes prevails.</li> * <li>lineName: the line name of the source region of the address. This parameter is deprecated.</li> * <li>lineCodes: the line codes of the source regions of the address.</li> * </ul> * * <strong>example:</strong> * <p>&quot;lineCode&quot;:&quot;aliyun_r_cn-zhangjiakou&quot;, &quot;lineName&quot;: &quot;Alibaba Cloud_China (Zhangjiakou)&quot;, &quot;lineCodes&quot;: [&quot;aliyun_r_cn-zhangjiakou&quot;]</p> */ @NameInMap("AttributeInfo") public String attributeInfo; /** * <p>The time when the address was added into the address pool.</p> * * <strong>example:</strong> * <p>2017-12-28T13:08Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>The timestamp that indicates the time when the address was added into the address pool.</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>The weight of the address.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("LbaWeight") public Integer lbaWeight; /** * <p>The mode of the address. Valid values:</p> * <ul> * <li>SMART: smart return</li> * <li>ONLINE: always online</li> * <li>OFFLINE: always offline</li> * </ul> * * <strong>example:</strong> * <p>online</p> */ @NameInMap("Mode") public String mode; /** * <p>The description of the address.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; /** * <p>The time when the address was last updated.</p> * * <strong>example:</strong> * <p>2017-12-28T13:08Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <p>The timestamp that indicates the time when the address was last updated.</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; public static DescribeDnsGtmInstanceAddressPoolResponseBodyAddrsAddr build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceAddressPoolResponseBodyAddrsAddr self = new DescribeDnsGtmInstanceAddressPoolResponseBodyAddrsAddr(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceAddressPoolResponseBodyAddrsAddr setAddr(String addr) { this.addr = addr; return this; } public String getAddr() { return this.addr; } public DescribeDnsGtmInstanceAddressPoolResponseBodyAddrsAddr setAlertStatus(String alertStatus) { this.alertStatus = alertStatus; return this; } public String getAlertStatus() { return this.alertStatus; } public DescribeDnsGtmInstanceAddressPoolResponseBodyAddrsAddr setAttributeInfo(String attributeInfo) { this.attributeInfo = attributeInfo; return this; } public String getAttributeInfo() { return this.attributeInfo; } public DescribeDnsGtmInstanceAddressPoolResponseBodyAddrsAddr setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public DescribeDnsGtmInstanceAddressPoolResponseBodyAddrsAddr setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public DescribeDnsGtmInstanceAddressPoolResponseBodyAddrsAddr setLbaWeight(Integer lbaWeight) { this.lbaWeight = lbaWeight; return this; } public Integer getLbaWeight() { return this.lbaWeight; } public DescribeDnsGtmInstanceAddressPoolResponseBodyAddrsAddr setMode(String mode) { this.mode = mode; return this; } public String getMode() { return this.mode; } public DescribeDnsGtmInstanceAddressPoolResponseBodyAddrsAddr setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public DescribeDnsGtmInstanceAddressPoolResponseBodyAddrsAddr setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public DescribeDnsGtmInstanceAddressPoolResponseBodyAddrsAddr setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } } public static class DescribeDnsGtmInstanceAddressPoolResponseBodyAddrs extends TeaModel { @NameInMap("Addr") public java.util.List<DescribeDnsGtmInstanceAddressPoolResponseBodyAddrsAddr> addr; public static DescribeDnsGtmInstanceAddressPoolResponseBodyAddrs build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceAddressPoolResponseBodyAddrs self = new DescribeDnsGtmInstanceAddressPoolResponseBodyAddrs(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceAddressPoolResponseBodyAddrs setAddr(java.util.List<DescribeDnsGtmInstanceAddressPoolResponseBodyAddrsAddr> addr) { this.addr = addr; return this; } public java.util.List<DescribeDnsGtmInstanceAddressPoolResponseBodyAddrsAddr> getAddr() { return this.addr; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDnsGtmInstanceAddressPoolsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmInstanceAddressPoolsRequest extends TeaModel { /** * <p>The ID of the instance.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>instance1</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>The language to return some 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 number of the page to return. Pages start from page 1. Default value: 1.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of entries to return on each page. Maximum value: 100. Default value: 20.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageSize") public Integer pageSize; public static DescribeDnsGtmInstanceAddressPoolsRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceAddressPoolsRequest self = new DescribeDnsGtmInstanceAddressPoolsRequest(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceAddressPoolsRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public DescribeDnsGtmInstanceAddressPoolsRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDnsGtmInstanceAddressPoolsRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public DescribeDnsGtmInstanceAddressPoolsRequest 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/DescribeDnsGtmInstanceAddressPoolsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmInstanceAddressPoolsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDnsGtmInstanceAddressPoolsResponseBody body; public static DescribeDnsGtmInstanceAddressPoolsResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceAddressPoolsResponse self = new DescribeDnsGtmInstanceAddressPoolsResponse(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceAddressPoolsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDnsGtmInstanceAddressPoolsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDnsGtmInstanceAddressPoolsResponse setBody(DescribeDnsGtmInstanceAddressPoolsResponseBody body) { this.body = body; return this; } public DescribeDnsGtmInstanceAddressPoolsResponseBody 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/DescribeDnsGtmInstanceAddressPoolsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmInstanceAddressPoolsResponseBody extends TeaModel { /** * <p>The returned address pools.</p> */ @NameInMap("AddrPools") public DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPools addrPools; /** * <p>The page number of the returned page.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of entries returned per page.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>The ID of the request.</p> * * <strong>example:</strong> * <p>6856BCF6-11D6-4D7E-AC53-FD579933522B</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The total number of entries returned on all pages.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <p>The total number of pages returned.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("TotalPages") public Integer totalPages; public static DescribeDnsGtmInstanceAddressPoolsResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceAddressPoolsResponseBody self = new DescribeDnsGtmInstanceAddressPoolsResponseBody(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceAddressPoolsResponseBody setAddrPools(DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPools addrPools) { this.addrPools = addrPools; return this; } public DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPools getAddrPools() { return this.addrPools; } public DescribeDnsGtmInstanceAddressPoolsResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public DescribeDnsGtmInstanceAddressPoolsResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public DescribeDnsGtmInstanceAddressPoolsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDnsGtmInstanceAddressPoolsResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public DescribeDnsGtmInstanceAddressPoolsResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPoolsAddrPool extends TeaModel { /** * <p>The number of addresses in the address pool.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("AddrCount") public Integer addrCount; /** * <p>The ID of the address pool.</p> * * <strong>example:</strong> * <p>pool-1</p> */ @NameInMap("AddrPoolId") public String addrPoolId; /** * <p>The time when the address pool was created.</p> * * <strong>example:</strong> * <p>2017-12-28T13:08Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>The timestamp that indicates when the address pool was created.</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>The load balancing policy of the address pool. Valid values:</p> * <ul> * <li>ALL_RR: returns all addresses.</li> * <li>RATIO: returns addresses by weight.</li> * </ul> * * <strong>example:</strong> * <p>all_rr</p> */ @NameInMap("LbaStrategy") public String lbaStrategy; /** * <p>The ID of the health check task.</p> * * <strong>example:</strong> * <p>abc123</p> */ @NameInMap("MonitorConfigId") public String monitorConfigId; /** * <p>Indicates whether health checks are configured. Valid values:</p> * <ul> * <li>OPEN: enabled</li> * <li>CLOSE: disabled</li> * <li>UNCONFIGURED: not configured</li> * </ul> * * <strong>example:</strong> * <p>open</p> */ @NameInMap("MonitorStatus") public String monitorStatus; /** * <p>The name of the address pool.</p> * * <strong>example:</strong> * <p>testpool</p> */ @NameInMap("Name") public String name; /** * <p>The type of the address pool. Valid values:</p> * <ul> * <li>IPV4: IPv4 address</li> * <li>IPV6: IPv6 address</li> * <li>DOMAIN: domain name</li> * </ul> * * <strong>example:</strong> * <p>ipv4</p> */ @NameInMap("Type") public String type; /** * <p>The time when the address pool was updated.</p> * * <strong>example:</strong> * <p>2017-12-28T13:08Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <p>The timestamp that indicates when the address pool was updated.</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; public static DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPoolsAddrPool build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPoolsAddrPool self = new DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPoolsAddrPool(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPoolsAddrPool setAddrCount(Integer addrCount) { this.addrCount = addrCount; return this; } public Integer getAddrCount() { return this.addrCount; } public DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPoolsAddrPool setAddrPoolId(String addrPoolId) { this.addrPoolId = addrPoolId; return this; } public String getAddrPoolId() { return this.addrPoolId; } public DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPoolsAddrPool setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPoolsAddrPool setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPoolsAddrPool setLbaStrategy(String lbaStrategy) { this.lbaStrategy = lbaStrategy; return this; } public String getLbaStrategy() { return this.lbaStrategy; } public DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPoolsAddrPool setMonitorConfigId(String monitorConfigId) { this.monitorConfigId = monitorConfigId; return this; } public String getMonitorConfigId() { return this.monitorConfigId; } public DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPoolsAddrPool setMonitorStatus(String monitorStatus) { this.monitorStatus = monitorStatus; return this; } public String getMonitorStatus() { return this.monitorStatus; } public DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPoolsAddrPool setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPoolsAddrPool setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPoolsAddrPool setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPoolsAddrPool setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } } public static class DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPools extends TeaModel { @NameInMap("AddrPool") public java.util.List<DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPoolsAddrPool> addrPool; public static DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPools build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPools self = new DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPools(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPools setAddrPool(java.util.List<DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPoolsAddrPool> addrPool) { this.addrPool = addrPool; return this; } public java.util.List<DescribeDnsGtmInstanceAddressPoolsResponseBodyAddrPoolsAddrPool> getAddrPool() { return this.addrPool; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDnsGtmInstanceRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmInstanceRequest extends TeaModel { /** * <p>The ID of the instance about which you want to query the information.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>instance1</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>The language in which you want the values of some response parameters to be returned. These response parameters support multiple languages. Default value: en. Valid values: en, zh, and ja.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; public static DescribeDnsGtmInstanceRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceRequest self = new DescribeDnsGtmInstanceRequest(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public DescribeDnsGtmInstanceRequest 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/DescribeDnsGtmInstanceResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmInstanceResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDnsGtmInstanceResponseBody body; public static DescribeDnsGtmInstanceResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceResponse self = new DescribeDnsGtmInstanceResponse(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDnsGtmInstanceResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDnsGtmInstanceResponse setBody(DescribeDnsGtmInstanceResponseBody body) { this.body = body; return this; } public DescribeDnsGtmInstanceResponseBody 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/DescribeDnsGtmInstanceResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmInstanceResponseBody extends TeaModel { /** * <p>The configurations of the instance.</p> */ @NameInMap("Config") public DescribeDnsGtmInstanceResponseBodyConfig config; /** * <p>The time when the instance was created.</p> * * <strong>example:</strong> * <p>2020-10-14T06:58Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>The UNIX timestamp that indicates when the instance was created.</p> * * <strong>example:</strong> * <p>1602656937000</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>The time when the instance expires.</p> * * <strong>example:</strong> * <p>2020-10-14T06:58Z</p> */ @NameInMap("ExpireTime") public String expireTime; /** * <p>The UNIX timestamp that indicates when the instance expires.</p> * * <strong>example:</strong> * <p>1602656937000</p> */ @NameInMap("ExpireTimestamp") public Long expireTimestamp; /** * <p>The ID of the instance.</p> * * <strong>example:</strong> * <p>instanceid1</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>The billing method. Valid value:</p> * <ul> * <li>Subscription: You can pay in advance for the use of resources.</li> * </ul> * * <strong>example:</strong> * <p>Subscription</p> */ @NameInMap("PaymentType") public String paymentType; /** * <p>The ID of the request.</p> * * <strong>example:</strong> * <p>84314904-D047-4176-A0EC-256D7F68C7F5</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The ID of the resource group to which the instance belongs.</p> * * <strong>example:</strong> * <p>resourcegroupid1</p> */ @NameInMap("ResourceGroupId") public String resourceGroupId; /** * <p>The total number of SMS notifications.</p> * * <strong>example:</strong> * <p>100</p> */ @NameInMap("SmsQuota") public Integer smsQuota; /** * <p>The total number of detection tasks.</p> * * <strong>example:</strong> * <p>100</p> */ @NameInMap("TaskQuota") public Integer taskQuota; /** * <p>The used quota.</p> */ @NameInMap("UsedQuota") public DescribeDnsGtmInstanceResponseBodyUsedQuota usedQuota; /** * <p>The version of the instance.</p> * * <strong>example:</strong> * <p>versioncode1</p> */ @NameInMap("VersionCode") public String versionCode; public static DescribeDnsGtmInstanceResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceResponseBody self = new DescribeDnsGtmInstanceResponseBody(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceResponseBody setConfig(DescribeDnsGtmInstanceResponseBodyConfig config) { this.config = config; return this; } public DescribeDnsGtmInstanceResponseBodyConfig getConfig() { return this.config; } public DescribeDnsGtmInstanceResponseBody setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public DescribeDnsGtmInstanceResponseBody setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public DescribeDnsGtmInstanceResponseBody setExpireTime(String expireTime) { this.expireTime = expireTime; return this; } public String getExpireTime() { return this.expireTime; } public DescribeDnsGtmInstanceResponseBody setExpireTimestamp(Long expireTimestamp) { this.expireTimestamp = expireTimestamp; return this; } public Long getExpireTimestamp() { return this.expireTimestamp; } public DescribeDnsGtmInstanceResponseBody setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public DescribeDnsGtmInstanceResponseBody setPaymentType(String paymentType) { this.paymentType = paymentType; return this; } public String getPaymentType() { return this.paymentType; } public DescribeDnsGtmInstanceResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDnsGtmInstanceResponseBody setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; return this; } public String getResourceGroupId() { return this.resourceGroupId; } public DescribeDnsGtmInstanceResponseBody setSmsQuota(Integer smsQuota) { this.smsQuota = smsQuota; return this; } public Integer getSmsQuota() { return this.smsQuota; } public DescribeDnsGtmInstanceResponseBody setTaskQuota(Integer taskQuota) { this.taskQuota = taskQuota; return this; } public Integer getTaskQuota() { return this.taskQuota; } public DescribeDnsGtmInstanceResponseBody setUsedQuota(DescribeDnsGtmInstanceResponseBodyUsedQuota usedQuota) { this.usedQuota = usedQuota; return this; } public DescribeDnsGtmInstanceResponseBodyUsedQuota getUsedQuota() { return this.usedQuota; } public DescribeDnsGtmInstanceResponseBody setVersionCode(String versionCode) { this.versionCode = versionCode; return this; } public String getVersionCode() { return this.versionCode; } public static class DescribeDnsGtmInstanceResponseBodyConfigAlertConfigAlertConfig extends TeaModel { @NameInMap("DingtalkNotice") public Boolean dingtalkNotice; /** * <p>Indicates whether email notification is configured. Valid values:</p> * <ul> * <li>true: Email notification is configured.</li> * <li>false: Email notification is not configured. null: Email notification is not configured.</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("EmailNotice") public Boolean emailNotice; /** * <p>The type of the alert event. Valid values:</p> * <ul> * <li>ADDR_ALERT: The address is unavailable.</li> * <li>ADDR_RESUME: The address is restored and becomes available.</li> * <li>ADDR_POOL_GROUP_UNAVAILABLE: The address pool group is unavailable.</li> * <li>ADDR_POOL_GROUP_AVAILABLE: The address pool group is restored and becomes available.</li> * <li>ACCESS_STRATEGY_POOL_GROUP_SWITCH: Switchover is triggered between the primary and secondary address pools.</li> * <li>MONITOR_NODE_IP_CHANGE: The IP address of the monitoring node has changed.</li> * </ul> * * <strong>example:</strong> * <p>ADDR_ALERT</p> */ @NameInMap("NoticeType") public String noticeType; /** * <p>Indicates whether SMS notification is configured. Valid values:</p> * <ul> * <li>true: SMS notification is configured.</li> * <li>false: SMS notification is not configured. null: SMS notification is not configured.</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("SmsNotice") public Boolean smsNotice; public static DescribeDnsGtmInstanceResponseBodyConfigAlertConfigAlertConfig build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceResponseBodyConfigAlertConfigAlertConfig self = new DescribeDnsGtmInstanceResponseBodyConfigAlertConfigAlertConfig(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceResponseBodyConfigAlertConfigAlertConfig setDingtalkNotice(Boolean dingtalkNotice) { this.dingtalkNotice = dingtalkNotice; return this; } public Boolean getDingtalkNotice() { return this.dingtalkNotice; } public DescribeDnsGtmInstanceResponseBodyConfigAlertConfigAlertConfig setEmailNotice(Boolean emailNotice) { this.emailNotice = emailNotice; return this; } public Boolean getEmailNotice() { return this.emailNotice; } public DescribeDnsGtmInstanceResponseBodyConfigAlertConfigAlertConfig setNoticeType(String noticeType) { this.noticeType = noticeType; return this; } public String getNoticeType() { return this.noticeType; } public DescribeDnsGtmInstanceResponseBodyConfigAlertConfigAlertConfig setSmsNotice(Boolean smsNotice) { this.smsNotice = smsNotice; return this; } public Boolean getSmsNotice() { return this.smsNotice; } } public static class DescribeDnsGtmInstanceResponseBodyConfigAlertConfig extends TeaModel { @NameInMap("AlertConfig") public java.util.List<DescribeDnsGtmInstanceResponseBodyConfigAlertConfigAlertConfig> alertConfig; public static DescribeDnsGtmInstanceResponseBodyConfigAlertConfig build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceResponseBodyConfigAlertConfig self = new DescribeDnsGtmInstanceResponseBodyConfigAlertConfig(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceResponseBodyConfigAlertConfig setAlertConfig(java.util.List<DescribeDnsGtmInstanceResponseBodyConfigAlertConfigAlertConfig> alertConfig) { this.alertConfig = alertConfig; return this; } public java.util.List<DescribeDnsGtmInstanceResponseBodyConfigAlertConfigAlertConfig> getAlertConfig() { return this.alertConfig; } } public static class DescribeDnsGtmInstanceResponseBodyConfig extends TeaModel { /** * <p>The alert notification method.</p> */ @NameInMap("AlertConfig") public DescribeDnsGtmInstanceResponseBodyConfigAlertConfig alertConfig; /** * <p>The name of the alert group.</p> * * <strong>example:</strong> * <p>alertgroup1</p> */ @NameInMap("AlertGroup") public String alertGroup; /** * <p>The type of the CNAME domain name that is used to access the instance. Valid value:</p> * <ul> * <li>PUBLIC: The CNAME domain name is used to access the instance over the Internet.</li> * </ul> * * <strong>example:</strong> * <p>public</p> */ @NameInMap("CnameType") public String cnameType; /** * <p>The name of the instance.</p> * * <strong>example:</strong> * <p>instancetest1</p> */ @NameInMap("InstanceName") public String instanceName; /** * <p>The domain name that is used to access the instance over the Internet.</p> * * <strong>example:</strong> * <p>test.rr.gtm-003.com</p> */ @NameInMap("PubicZoneName") public String pubicZoneName; /** * <p>Indicates whether a custom CNAME domain name or a CNAME domain name assigned by the system is used to access the instance over the Internet. Valid values:</p> * <ul> * <li>CUSTOM: A custom CNAME domain name is used.</li> * <li>SYSTEM_ASSIGN: A CNAME domain name assigned by the system is used.</li> * </ul> * * <strong>example:</strong> * <p>custom</p> */ @NameInMap("PublicCnameMode") public String publicCnameMode; /** * <p>The hostname corresponding to the CNAME domain name that is used to access the instance over the Internet.</p> * * <strong>example:</strong> * <p>test.rr</p> */ @NameInMap("PublicRr") public String publicRr; /** * <p>The service domain name that is used over the Internet.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("PublicUserDomainName") public String publicUserDomainName; /** * <p>The type of the access policy. Valid values:</p> * <ul> * <li>LATENCY: Latency-based</li> * <li>GEO: Geographical location-based</li> * </ul> * * <strong>example:</strong> * <p>GEO</p> */ @NameInMap("StrategyMode") public String strategyMode; /** * <p>The global time to live (TTL).</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("Ttl") public Integer ttl; public static DescribeDnsGtmInstanceResponseBodyConfig build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceResponseBodyConfig self = new DescribeDnsGtmInstanceResponseBodyConfig(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceResponseBodyConfig setAlertConfig(DescribeDnsGtmInstanceResponseBodyConfigAlertConfig alertConfig) { this.alertConfig = alertConfig; return this; } public DescribeDnsGtmInstanceResponseBodyConfigAlertConfig getAlertConfig() { return this.alertConfig; } public DescribeDnsGtmInstanceResponseBodyConfig setAlertGroup(String alertGroup) { this.alertGroup = alertGroup; return this; } public String getAlertGroup() { return this.alertGroup; } public DescribeDnsGtmInstanceResponseBodyConfig setCnameType(String cnameType) { this.cnameType = cnameType; return this; } public String getCnameType() { return this.cnameType; } public DescribeDnsGtmInstanceResponseBodyConfig setInstanceName(String instanceName) { this.instanceName = instanceName; return this; } public String getInstanceName() { return this.instanceName; } public DescribeDnsGtmInstanceResponseBodyConfig setPubicZoneName(String pubicZoneName) { this.pubicZoneName = pubicZoneName; return this; } public String getPubicZoneName() { return this.pubicZoneName; } public DescribeDnsGtmInstanceResponseBodyConfig setPublicCnameMode(String publicCnameMode) { this.publicCnameMode = publicCnameMode; return this; } public String getPublicCnameMode() { return this.publicCnameMode; } public DescribeDnsGtmInstanceResponseBodyConfig setPublicRr(String publicRr) { this.publicRr = publicRr; return this; } public String getPublicRr() { return this.publicRr; } public DescribeDnsGtmInstanceResponseBodyConfig setPublicUserDomainName(String publicUserDomainName) { this.publicUserDomainName = publicUserDomainName; return this; } public String getPublicUserDomainName() { return this.publicUserDomainName; } public DescribeDnsGtmInstanceResponseBodyConfig setStrategyMode(String strategyMode) { this.strategyMode = strategyMode; return this; } public String getStrategyMode() { return this.strategyMode; } public DescribeDnsGtmInstanceResponseBodyConfig setTtl(Integer ttl) { this.ttl = ttl; return this; } public Integer getTtl() { return this.ttl; } } public static class DescribeDnsGtmInstanceResponseBodyUsedQuota extends TeaModel { @NameInMap("DingtalkUsedCount") public Integer dingtalkUsedCount; /** * <p>The total number of emails that were sent.</p> * * <strong>example:</strong> * <p>123</p> */ @NameInMap("EmailUsedCount") public Integer emailUsedCount; /** * <p>The total number of short messages that were sent.</p> * * <strong>example:</strong> * <p>123</p> */ @NameInMap("SmsUsedCount") public Integer smsUsedCount; /** * <p>The number of detection tasks that were created.</p> * * <strong>example:</strong> * <p>123</p> */ @NameInMap("TaskUsedCount") public Integer taskUsedCount; public static DescribeDnsGtmInstanceResponseBodyUsedQuota build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceResponseBodyUsedQuota self = new DescribeDnsGtmInstanceResponseBodyUsedQuota(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceResponseBodyUsedQuota setDingtalkUsedCount(Integer dingtalkUsedCount) { this.dingtalkUsedCount = dingtalkUsedCount; return this; } public Integer getDingtalkUsedCount() { return this.dingtalkUsedCount; } public DescribeDnsGtmInstanceResponseBodyUsedQuota setEmailUsedCount(Integer emailUsedCount) { this.emailUsedCount = emailUsedCount; return this; } public Integer getEmailUsedCount() { return this.emailUsedCount; } public DescribeDnsGtmInstanceResponseBodyUsedQuota setSmsUsedCount(Integer smsUsedCount) { this.smsUsedCount = smsUsedCount; return this; } public Integer getSmsUsedCount() { return this.smsUsedCount; } public DescribeDnsGtmInstanceResponseBodyUsedQuota setTaskUsedCount(Integer taskUsedCount) { this.taskUsedCount = taskUsedCount; return this; } public Integer getTaskUsedCount() { return this.taskUsedCount; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDnsGtmInstanceStatusRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmInstanceStatusRequest extends TeaModel { /** * <p>The ID of the instance.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>instance1</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>The language to return some response parameters. Default value: en. Valid values: en, zh, and ja.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; public static DescribeDnsGtmInstanceStatusRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceStatusRequest self = new DescribeDnsGtmInstanceStatusRequest(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceStatusRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public DescribeDnsGtmInstanceStatusRequest 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/DescribeDnsGtmInstanceStatusResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmInstanceStatusResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDnsGtmInstanceStatusResponseBody body; public static DescribeDnsGtmInstanceStatusResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceStatusResponse self = new DescribeDnsGtmInstanceStatusResponse(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceStatusResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDnsGtmInstanceStatusResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDnsGtmInstanceStatusResponse setBody(DescribeDnsGtmInstanceStatusResponseBody body) { this.body = body; return this; } public DescribeDnsGtmInstanceStatusResponseBody 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/DescribeDnsGtmInstanceStatusResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmInstanceStatusResponseBody extends TeaModel { /** * <p>The number of available addresses.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("AddrAvailableNum") public Integer addrAvailableNum; /** * <p>The number of unavailable addresses.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("AddrNotAvailableNum") public Integer addrNotAvailableNum; /** * <p>The number of unavailable address pool groups.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("AddrPoolGroupNotAvailableNum") public Integer addrPoolGroupNotAvailableNum; /** * <p>The ID of the request.</p> * * <strong>example:</strong> * <p>389DFFA3-77A5-4A9E-BF3D-147C6F98A5BA</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The number of access policies that are unavailable in the current active address pool group.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("StrategyNotAvailableNum") public Integer strategyNotAvailableNum; /** * <p>The number of access policies switched to the secondary address pool group.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("SwitchToFailoverStrategyNum") public Integer switchToFailoverStrategyNum; public static DescribeDnsGtmInstanceStatusResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceStatusResponseBody self = new DescribeDnsGtmInstanceStatusResponseBody(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceStatusResponseBody setAddrAvailableNum(Integer addrAvailableNum) { this.addrAvailableNum = addrAvailableNum; return this; } public Integer getAddrAvailableNum() { return this.addrAvailableNum; } public DescribeDnsGtmInstanceStatusResponseBody setAddrNotAvailableNum(Integer addrNotAvailableNum) { this.addrNotAvailableNum = addrNotAvailableNum; return this; } public Integer getAddrNotAvailableNum() { return this.addrNotAvailableNum; } public DescribeDnsGtmInstanceStatusResponseBody setAddrPoolGroupNotAvailableNum(Integer addrPoolGroupNotAvailableNum) { this.addrPoolGroupNotAvailableNum = addrPoolGroupNotAvailableNum; return this; } public Integer getAddrPoolGroupNotAvailableNum() { return this.addrPoolGroupNotAvailableNum; } public DescribeDnsGtmInstanceStatusResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDnsGtmInstanceStatusResponseBody setStrategyNotAvailableNum(Integer strategyNotAvailableNum) { this.strategyNotAvailableNum = strategyNotAvailableNum; return this; } public Integer getStrategyNotAvailableNum() { return this.strategyNotAvailableNum; } public DescribeDnsGtmInstanceStatusResponseBody setSwitchToFailoverStrategyNum(Integer switchToFailoverStrategyNum) { this.switchToFailoverStrategyNum = switchToFailoverStrategyNum; return this; } public Integer getSwitchToFailoverStrategyNum() { return this.switchToFailoverStrategyNum; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDnsGtmInstanceSystemCnameRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmInstanceSystemCnameRequest extends TeaModel { /** * <p>The ID of the instance.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>instance1</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>The language to return some response parameters. Default value: en. Valid values: en, zh, and ja.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; public static DescribeDnsGtmInstanceSystemCnameRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceSystemCnameRequest self = new DescribeDnsGtmInstanceSystemCnameRequest(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceSystemCnameRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public DescribeDnsGtmInstanceSystemCnameRequest 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/DescribeDnsGtmInstanceSystemCnameResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmInstanceSystemCnameResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDnsGtmInstanceSystemCnameResponseBody body; public static DescribeDnsGtmInstanceSystemCnameResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceSystemCnameResponse self = new DescribeDnsGtmInstanceSystemCnameResponse(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceSystemCnameResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDnsGtmInstanceSystemCnameResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDnsGtmInstanceSystemCnameResponse setBody(DescribeDnsGtmInstanceSystemCnameResponseBody body) { this.body = body; return this; } public DescribeDnsGtmInstanceSystemCnameResponseBody 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/DescribeDnsGtmInstanceSystemCnameResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmInstanceSystemCnameResponseBody extends TeaModel { /** * <p>The ID of the request.</p> * * <strong>example:</strong> * <p>6856BCF6-11D6-4D7E-AC53-FD579933522B</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The CNAME domain name assigned by the system.</p> * * <strong>example:</strong> * <p>gtminstance.com</p> */ @NameInMap("SystemCname") public String systemCname; public static DescribeDnsGtmInstanceSystemCnameResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstanceSystemCnameResponseBody self = new DescribeDnsGtmInstanceSystemCnameResponseBody(); return TeaModel.build(map, self); } public DescribeDnsGtmInstanceSystemCnameResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDnsGtmInstanceSystemCnameResponseBody setSystemCname(String systemCname) { this.systemCname = systemCname; return this; } public String getSystemCname() { return this.systemCname; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDnsGtmInstancesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmInstancesRequest extends TeaModel { /** * <p>The keyword that you use for the query. Fuzzy search by instance ID or instance name is supported.</p> * * <strong>example:</strong> * <p>instance1</p> */ @NameInMap("Keyword") public String keyword; /** * <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 page number. Pages start from page <strong>1</strong>. Default value: <strong>1</strong>.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of entries per page. Maximum value: <strong>100</strong>. Default value: <strong>20</strong>.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>The resource group ID.</p> * * <strong>example:</strong> * <p>rg-testgroupid</p> */ @NameInMap("ResourceGroupId") public String resourceGroupId; public static DescribeDnsGtmInstancesRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstancesRequest self = new DescribeDnsGtmInstancesRequest(); return TeaModel.build(map, self); } public DescribeDnsGtmInstancesRequest setKeyword(String keyword) { this.keyword = keyword; return this; } public String getKeyword() { return this.keyword; } public DescribeDnsGtmInstancesRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDnsGtmInstancesRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public DescribeDnsGtmInstancesRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public DescribeDnsGtmInstancesRequest setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; return this; } public String getResourceGroupId() { return this.resourceGroupId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDnsGtmInstancesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmInstancesResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDnsGtmInstancesResponseBody body; public static DescribeDnsGtmInstancesResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstancesResponse self = new DescribeDnsGtmInstancesResponse(); return TeaModel.build(map, self); } public DescribeDnsGtmInstancesResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDnsGtmInstancesResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDnsGtmInstancesResponse setBody(DescribeDnsGtmInstancesResponseBody body) { this.body = body; return this; } public DescribeDnsGtmInstancesResponseBody 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/DescribeDnsGtmInstancesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmInstancesResponseBody extends TeaModel { /** * <p>The Global Traffic Manager (GTM) instances.</p> */ @NameInMap("GtmInstances") public java.util.List<DescribeDnsGtmInstancesResponseBodyGtmInstances> gtmInstances; /** * <p>The page number. Pages start from page <strong>1</strong>. Default value: <strong>1</strong>.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of entries per page. Maximum value: 100. Default value: 20.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>84314904-D047-4176-A0EC-256D7F68C7F5</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The total number of entries returned.</p> * * <strong>example:</strong> * <p>100</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <p>The total number of pages returned.</p> * * <strong>example:</strong> * <p>123</p> */ @NameInMap("TotalPages") public Integer totalPages; public static DescribeDnsGtmInstancesResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstancesResponseBody self = new DescribeDnsGtmInstancesResponseBody(); return TeaModel.build(map, self); } public DescribeDnsGtmInstancesResponseBody setGtmInstances(java.util.List<DescribeDnsGtmInstancesResponseBodyGtmInstances> gtmInstances) { this.gtmInstances = gtmInstances; return this; } public java.util.List<DescribeDnsGtmInstancesResponseBodyGtmInstances> getGtmInstances() { return this.gtmInstances; } public DescribeDnsGtmInstancesResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public DescribeDnsGtmInstancesResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public DescribeDnsGtmInstancesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDnsGtmInstancesResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public DescribeDnsGtmInstancesResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class DescribeDnsGtmInstancesResponseBodyGtmInstancesConfigAlertConfig extends TeaModel { /** * <p>Indicates whether DingTalk alert notifications are configured. Valid values:</p> * <ul> * <li>true</li> * <li>false | null</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("DingtalkNotice") public String dingtalkNotice; /** * <p>Indicates whether email notifications are configured. Valid values:</p> * <ul> * <li>true</li> * <li>false | null</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("EmailNotice") public String emailNotice; /** * <p>The type of the alert event. Valid values:</p> * <ul> * <li>ADDR_ALERT: The address is unavailable.</li> * <li>ADDR_RESUME: The address becomes available.</li> * <li>ADDR_POOL_GROUP_UNAVAILABLE: The address pool set is unavailable.</li> * <li>ADDR_POOL_GROUP_AVAILABLE: The address pool set becomes available.</li> * <li>ACCESS_STRATEGY_POOL_GROUP_SWITCH: Switchover is triggered between the primary and secondary address pools.</li> * </ul> * * <strong>example:</strong> * <p>ADDR_ALERT</p> */ @NameInMap("NoticeType") public String noticeType; /** * <p>Indicates whether SMS notifications are configured. Valid values:</p> * <ul> * <li>true</li> * <li>false | null</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("SmsNotice") public String smsNotice; public static DescribeDnsGtmInstancesResponseBodyGtmInstancesConfigAlertConfig build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstancesResponseBodyGtmInstancesConfigAlertConfig self = new DescribeDnsGtmInstancesResponseBodyGtmInstancesConfigAlertConfig(); return TeaModel.build(map, self); } public DescribeDnsGtmInstancesResponseBodyGtmInstancesConfigAlertConfig setDingtalkNotice(String dingtalkNotice) { this.dingtalkNotice = dingtalkNotice; return this; } public String getDingtalkNotice() { return this.dingtalkNotice; } public DescribeDnsGtmInstancesResponseBodyGtmInstancesConfigAlertConfig setEmailNotice(String emailNotice) { this.emailNotice = emailNotice; return this; } public String getEmailNotice() { return this.emailNotice; } public DescribeDnsGtmInstancesResponseBodyGtmInstancesConfigAlertConfig setNoticeType(String noticeType) { this.noticeType = noticeType; return this; } public String getNoticeType() { return this.noticeType; } public DescribeDnsGtmInstancesResponseBodyGtmInstancesConfigAlertConfig setSmsNotice(String smsNotice) { this.smsNotice = smsNotice; return this; } public String getSmsNotice() { return this.smsNotice; } } public static class DescribeDnsGtmInstancesResponseBodyGtmInstancesConfig extends TeaModel { /** * <p>The alert notification method.</p> */ @NameInMap("AlertConfig") public java.util.List<DescribeDnsGtmInstancesResponseBodyGtmInstancesConfigAlertConfig> alertConfig; /** * <p>The alert contact groups. The value is in the JSON format.</p> * * <strong>example:</strong> * <p>testgroup</p> */ @NameInMap("AlertGroup") public String alertGroup; /** * <p>The type of the CNAME. Valid value:</p> * <ul> * <li>PUBLIC</li> * </ul> * * <strong>example:</strong> * <p>public</p> */ @NameInMap("CnameType") public String cnameType; /** * <p>The name of the instance.</p> * * <strong>example:</strong> * <p>instanceTest</p> */ @NameInMap("InstanceName") public String instanceName; /** * <p>Specifies whether to use a custom CNAME or a system-assigned CNAME to access GTM over the Internet. Valid values:</p> * <ul> * <li>CUSTOM: a custom CNAME</li> * <li>SYSTEM_ASSIGN: a system-assigned CNAME. You cannot set PublicCnameMode to this value.</li> * </ul> * * <strong>example:</strong> * <p>custom</p> */ @NameInMap("PublicCnameMode") public String publicCnameMode; /** * <p>The hostname of the domain name that is used to access GTM over the Internet.</p> * * <strong>example:</strong> * <p>test.rr</p> */ @NameInMap("PublicRr") public String publicRr; /** * <p>The domain name that is used to access GTM over the Internet.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("PublicUserDomainName") public String publicUserDomainName; /** * <p>The canonical name (CNAME) that is used to access GTM over the Internet.</p> * * <strong>example:</strong> * <p>test.rr.gtm-003.com</p> */ @NameInMap("PublicZoneName") public String publicZoneName; /** * <p>The type of the access policy. Valid values:</p> * <ul> * <li>LATENCY: latency-based access policy</li> * <li>GEO: geographical location-based access policy</li> * </ul> * * <strong>example:</strong> * <p>geo</p> */ @NameInMap("StrategyMode") public String strategyMode; /** * <p>The global time to live (TTL).</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("Ttl") public Integer ttl; public static DescribeDnsGtmInstancesResponseBodyGtmInstancesConfig build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstancesResponseBodyGtmInstancesConfig self = new DescribeDnsGtmInstancesResponseBodyGtmInstancesConfig(); return TeaModel.build(map, self); } public DescribeDnsGtmInstancesResponseBodyGtmInstancesConfig setAlertConfig(java.util.List<DescribeDnsGtmInstancesResponseBodyGtmInstancesConfigAlertConfig> alertConfig) { this.alertConfig = alertConfig; return this; } public java.util.List<DescribeDnsGtmInstancesResponseBodyGtmInstancesConfigAlertConfig> getAlertConfig() { return this.alertConfig; } public DescribeDnsGtmInstancesResponseBodyGtmInstancesConfig setAlertGroup(String alertGroup) { this.alertGroup = alertGroup; return this; } public String getAlertGroup() { return this.alertGroup; } public DescribeDnsGtmInstancesResponseBodyGtmInstancesConfig setCnameType(String cnameType) { this.cnameType = cnameType; return this; } public String getCnameType() { return this.cnameType; } public DescribeDnsGtmInstancesResponseBodyGtmInstancesConfig setInstanceName(String instanceName) { this.instanceName = instanceName; return this; } public String getInstanceName() { return this.instanceName; } public DescribeDnsGtmInstancesResponseBodyGtmInstancesConfig setPublicCnameMode(String publicCnameMode) { this.publicCnameMode = publicCnameMode; return this; } public String getPublicCnameMode() { return this.publicCnameMode; } public DescribeDnsGtmInstancesResponseBodyGtmInstancesConfig setPublicRr(String publicRr) { this.publicRr = publicRr; return this; } public String getPublicRr() { return this.publicRr; } public DescribeDnsGtmInstancesResponseBodyGtmInstancesConfig setPublicUserDomainName(String publicUserDomainName) { this.publicUserDomainName = publicUserDomainName; return this; } public String getPublicUserDomainName() { return this.publicUserDomainName; } public DescribeDnsGtmInstancesResponseBodyGtmInstancesConfig setPublicZoneName(String publicZoneName) { this.publicZoneName = publicZoneName; return this; } public String getPublicZoneName() { return this.publicZoneName; } public DescribeDnsGtmInstancesResponseBodyGtmInstancesConfig setStrategyMode(String strategyMode) { this.strategyMode = strategyMode; return this; } public String getStrategyMode() { return this.strategyMode; } public DescribeDnsGtmInstancesResponseBodyGtmInstancesConfig setTtl(Integer ttl) { this.ttl = ttl; return this; } public Integer getTtl() { return this.ttl; } } public static class DescribeDnsGtmInstancesResponseBodyGtmInstancesUsedQuota extends TeaModel { /** * <p>The total number of sent DingTalk notifications.</p> * * <strong>example:</strong> * <p>100</p> */ @NameInMap("DingtalkUsedCount") public Integer dingtalkUsedCount; /** * <p>The total number of sent email notifications.</p> * * <strong>example:</strong> * <p>100</p> */ @NameInMap("EmailUsedCount") public Integer emailUsedCount; /** * <p>The total number of sent SMS notifications.</p> * * <strong>example:</strong> * <p>100</p> */ @NameInMap("SmsUsedCount") public Integer smsUsedCount; /** * <p>The number of created detection tasks.</p> * * <strong>example:</strong> * <p>100</p> */ @NameInMap("TaskUsedCount") public Integer taskUsedCount; public static DescribeDnsGtmInstancesResponseBodyGtmInstancesUsedQuota build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstancesResponseBodyGtmInstancesUsedQuota self = new DescribeDnsGtmInstancesResponseBodyGtmInstancesUsedQuota(); return TeaModel.build(map, self); } public DescribeDnsGtmInstancesResponseBodyGtmInstancesUsedQuota setDingtalkUsedCount(Integer dingtalkUsedCount) { this.dingtalkUsedCount = dingtalkUsedCount; return this; } public Integer getDingtalkUsedCount() { return this.dingtalkUsedCount; } public DescribeDnsGtmInstancesResponseBodyGtmInstancesUsedQuota setEmailUsedCount(Integer emailUsedCount) { this.emailUsedCount = emailUsedCount; return this; } public Integer getEmailUsedCount() { return this.emailUsedCount; } public DescribeDnsGtmInstancesResponseBodyGtmInstancesUsedQuota setSmsUsedCount(Integer smsUsedCount) { this.smsUsedCount = smsUsedCount; return this; } public Integer getSmsUsedCount() { return this.smsUsedCount; } public DescribeDnsGtmInstancesResponseBodyGtmInstancesUsedQuota setTaskUsedCount(Integer taskUsedCount) { this.taskUsedCount = taskUsedCount; return this; } public Integer getTaskUsedCount() { return this.taskUsedCount; } } public static class DescribeDnsGtmInstancesResponseBodyGtmInstances extends TeaModel { /** * <p>The configurations of the instance.</p> */ @NameInMap("Config") public DescribeDnsGtmInstancesResponseBodyGtmInstancesConfig config; /** * <p>The time when the instance was created. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.</p> * * <strong>example:</strong> * <p>2020-10-14T06:58Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>The time when the instance was created. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.</p> * * <strong>example:</strong> * <p>1602658709000</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>The time when the instance expires. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.</p> * * <strong>example:</strong> * <p>2020-10-14T06:58Z</p> */ @NameInMap("ExpireTime") public String expireTime; /** * <p>The time when the instance expires. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.</p> * * <strong>example:</strong> * <p>1602658709000</p> */ @NameInMap("ExpireTimestamp") public Long expireTimestamp; /** * <p>The instance ID.</p> * * <strong>example:</strong> * <p>instance1</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>The billing method of the GTM instance. Valid value:</p> * <ul> * <li>Subscription.</li> * </ul> * * <strong>example:</strong> * <p>Subscription</p> */ @NameInMap("PaymentType") public String paymentType; /** * <p>The ID of the resource group.</p> * * <strong>example:</strong> * <p>resourceGroupid123</p> */ @NameInMap("ResourceGroupId") public String resourceGroupId; /** * <p>The total number of Short Message Service (SMS) notifications.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("SmsQuota") public Integer smsQuota; /** * <p>The total number of detection tasks.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("TaskQuota") public Integer taskQuota; /** * <p>The used quota.</p> */ @NameInMap("UsedQuota") public DescribeDnsGtmInstancesResponseBodyGtmInstancesUsedQuota usedQuota; /** * <p>The version of the instance.</p> * * <strong>example:</strong> * <p>testVersion1</p> */ @NameInMap("VersionCode") public String versionCode; public static DescribeDnsGtmInstancesResponseBodyGtmInstances build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmInstancesResponseBodyGtmInstances self = new DescribeDnsGtmInstancesResponseBodyGtmInstances(); return TeaModel.build(map, self); } public DescribeDnsGtmInstancesResponseBodyGtmInstances setConfig(DescribeDnsGtmInstancesResponseBodyGtmInstancesConfig config) { this.config = config; return this; } public DescribeDnsGtmInstancesResponseBodyGtmInstancesConfig getConfig() { return this.config; } public DescribeDnsGtmInstancesResponseBodyGtmInstances setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public DescribeDnsGtmInstancesResponseBodyGtmInstances setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public DescribeDnsGtmInstancesResponseBodyGtmInstances setExpireTime(String expireTime) { this.expireTime = expireTime; return this; } public String getExpireTime() { return this.expireTime; } public DescribeDnsGtmInstancesResponseBodyGtmInstances setExpireTimestamp(Long expireTimestamp) { this.expireTimestamp = expireTimestamp; return this; } public Long getExpireTimestamp() { return this.expireTimestamp; } public DescribeDnsGtmInstancesResponseBodyGtmInstances setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public DescribeDnsGtmInstancesResponseBodyGtmInstances setPaymentType(String paymentType) { this.paymentType = paymentType; return this; } public String getPaymentType() { return this.paymentType; } public DescribeDnsGtmInstancesResponseBodyGtmInstances setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; return this; } public String getResourceGroupId() { return this.resourceGroupId; } public DescribeDnsGtmInstancesResponseBodyGtmInstances setSmsQuota(Integer smsQuota) { this.smsQuota = smsQuota; return this; } public Integer getSmsQuota() { return this.smsQuota; } public DescribeDnsGtmInstancesResponseBodyGtmInstances setTaskQuota(Integer taskQuota) { this.taskQuota = taskQuota; return this; } public Integer getTaskQuota() { return this.taskQuota; } public DescribeDnsGtmInstancesResponseBodyGtmInstances setUsedQuota(DescribeDnsGtmInstancesResponseBodyGtmInstancesUsedQuota usedQuota) { this.usedQuota = usedQuota; return this; } public DescribeDnsGtmInstancesResponseBodyGtmInstancesUsedQuota getUsedQuota() { return this.usedQuota; } public DescribeDnsGtmInstancesResponseBodyGtmInstances setVersionCode(String versionCode) { this.versionCode = versionCode; return this; } public String getVersionCode() { return this.versionCode; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDnsGtmLogsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmLogsRequest extends TeaModel { /** * <p>The timestamp that specifies the end of the time range to query.</p> * * <strong>example:</strong> * <p>1516779348000</p> */ @NameInMap("EndTimestamp") public Long endTimestamp; /** * <p>The ID of the instance.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>instance1</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>The keyword for searches in &quot;%KeyWord%&quot; mode. The value is not case-sensitive.</p> * * <strong>example:</strong> * <p>demo</p> */ @NameInMap("Keyword") public String keyword; /** * <p>The language to return some 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 number of the page to return. Pages start from page 1. Default value: 1.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of entries to return on each page. Maximum value: 100. Default value: 20.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>The timestamp that specifies the beginning of the time range to query.</p> * * <strong>example:</strong> * <p>1516779348000</p> */ @NameInMap("StartTimestamp") public Long startTimestamp; public static DescribeDnsGtmLogsRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmLogsRequest self = new DescribeDnsGtmLogsRequest(); return TeaModel.build(map, self); } public DescribeDnsGtmLogsRequest setEndTimestamp(Long endTimestamp) { this.endTimestamp = endTimestamp; return this; } public Long getEndTimestamp() { return this.endTimestamp; } public DescribeDnsGtmLogsRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public DescribeDnsGtmLogsRequest setKeyword(String keyword) { this.keyword = keyword; return this; } public String getKeyword() { return this.keyword; } public DescribeDnsGtmLogsRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDnsGtmLogsRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public DescribeDnsGtmLogsRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public DescribeDnsGtmLogsRequest setStartTimestamp(Long startTimestamp) { this.startTimestamp = startTimestamp; return this; } public Long getStartTimestamp() { return this.startTimestamp; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDnsGtmLogsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmLogsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDnsGtmLogsResponseBody body; public static DescribeDnsGtmLogsResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmLogsResponse self = new DescribeDnsGtmLogsResponse(); return TeaModel.build(map, self); } public DescribeDnsGtmLogsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDnsGtmLogsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDnsGtmLogsResponse setBody(DescribeDnsGtmLogsResponseBody body) { this.body = body; return this; } public DescribeDnsGtmLogsResponseBody 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/DescribeDnsGtmLogsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmLogsResponseBody extends TeaModel { /** * <p>The returned logs.</p> */ @NameInMap("Logs") public DescribeDnsGtmLogsResponseBodyLogs logs; /** * <p>The number of the returned page.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of entries returned per page.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>The ID of the request.</p> * * <strong>example:</strong> * <p>50C60A29-2E93-425A-ABA8-068686E28873</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The total number of entries returned on all pages.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <p>The total number of pages returned.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("TotalPages") public Integer totalPages; public static DescribeDnsGtmLogsResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmLogsResponseBody self = new DescribeDnsGtmLogsResponseBody(); return TeaModel.build(map, self); } public DescribeDnsGtmLogsResponseBody setLogs(DescribeDnsGtmLogsResponseBodyLogs logs) { this.logs = logs; return this; } public DescribeDnsGtmLogsResponseBodyLogs getLogs() { return this.logs; } public DescribeDnsGtmLogsResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public DescribeDnsGtmLogsResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public DescribeDnsGtmLogsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDnsGtmLogsResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public DescribeDnsGtmLogsResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class DescribeDnsGtmLogsResponseBodyLogsLog extends TeaModel { /** * <p>The formatted message content.</p> * * <strong>example:</strong> * <p>addtest-pool-1</p> */ @NameInMap("Content") public String content; /** * <p>The ID of the object on which the operation was performed.</p> * * <strong>example:</strong> * <p>121212</p> */ @NameInMap("EntityId") public String entityId; /** * <p>The name of the object on which the operation was performed.</p> * * <strong>example:</strong> * <p>test-pool-1</p> */ @NameInMap("EntityName") public String entityName; /** * <p>The type of the object on which the operation was performed.</p> */ @NameInMap("EntityType") public String entityType; /** * <p>The ID of the record.</p> * * <strong>example:</strong> * <p>6726</p> */ @NameInMap("Id") public Long id; /** * <p>The operation performed.</p> */ @NameInMap("OperAction") public String operAction; /** * <p>The time when the operation was performed.</p> * * <strong>example:</strong> * <p>2018-01-24T07:35Z</p> */ @NameInMap("OperTime") public String operTime; /** * <p>The timestamp of the operation.</p> * * <strong>example:</strong> * <p>1516779348000</p> */ @NameInMap("OperTimestamp") public Long operTimestamp; public static DescribeDnsGtmLogsResponseBodyLogsLog build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmLogsResponseBodyLogsLog self = new DescribeDnsGtmLogsResponseBodyLogsLog(); return TeaModel.build(map, self); } public DescribeDnsGtmLogsResponseBodyLogsLog setContent(String content) { this.content = content; return this; } public String getContent() { return this.content; } public DescribeDnsGtmLogsResponseBodyLogsLog setEntityId(String entityId) { this.entityId = entityId; return this; } public String getEntityId() { return this.entityId; } public DescribeDnsGtmLogsResponseBodyLogsLog setEntityName(String entityName) { this.entityName = entityName; return this; } public String getEntityName() { return this.entityName; } public DescribeDnsGtmLogsResponseBodyLogsLog setEntityType(String entityType) { this.entityType = entityType; return this; } public String getEntityType() { return this.entityType; } public DescribeDnsGtmLogsResponseBodyLogsLog setId(Long id) { this.id = id; return this; } public Long getId() { return this.id; } public DescribeDnsGtmLogsResponseBodyLogsLog setOperAction(String operAction) { this.operAction = operAction; return this; } public String getOperAction() { return this.operAction; } public DescribeDnsGtmLogsResponseBodyLogsLog setOperTime(String operTime) { this.operTime = operTime; return this; } public String getOperTime() { return this.operTime; } public DescribeDnsGtmLogsResponseBodyLogsLog setOperTimestamp(Long operTimestamp) { this.operTimestamp = operTimestamp; return this; } public Long getOperTimestamp() { return this.operTimestamp; } } public static class DescribeDnsGtmLogsResponseBodyLogs extends TeaModel { @NameInMap("Log") public java.util.List<DescribeDnsGtmLogsResponseBodyLogsLog> log; public static DescribeDnsGtmLogsResponseBodyLogs build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmLogsResponseBodyLogs self = new DescribeDnsGtmLogsResponseBodyLogs(); return TeaModel.build(map, self); } public DescribeDnsGtmLogsResponseBodyLogs setLog(java.util.List<DescribeDnsGtmLogsResponseBodyLogsLog> log) { this.log = log; return this; } public java.util.List<DescribeDnsGtmLogsResponseBodyLogsLog> getLog() { return this.log; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDnsGtmMonitorAvailableConfigRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmMonitorAvailableConfigRequest extends TeaModel { /** * <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; public static DescribeDnsGtmMonitorAvailableConfigRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmMonitorAvailableConfigRequest self = new DescribeDnsGtmMonitorAvailableConfigRequest(); return TeaModel.build(map, self); } public DescribeDnsGtmMonitorAvailableConfigRequest 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/DescribeDnsGtmMonitorAvailableConfigResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmMonitorAvailableConfigResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDnsGtmMonitorAvailableConfigResponseBody body; public static DescribeDnsGtmMonitorAvailableConfigResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmMonitorAvailableConfigResponse self = new DescribeDnsGtmMonitorAvailableConfigResponse(); return TeaModel.build(map, self); } public DescribeDnsGtmMonitorAvailableConfigResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDnsGtmMonitorAvailableConfigResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDnsGtmMonitorAvailableConfigResponse setBody(DescribeDnsGtmMonitorAvailableConfigResponseBody body) { this.body = body; return this; } public DescribeDnsGtmMonitorAvailableConfigResponseBody 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/DescribeDnsGtmMonitorAvailableConfigResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmMonitorAvailableConfigResponseBody extends TeaModel { /** * <p>The nodes that perform health checks on domain names that use public IPv4 addresses.</p> */ @NameInMap("DomainIpv4IspCityNodes") public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodes domainIpv4IspCityNodes; /** * <p>The nodes that perform health checks on domain names that use public IPv6 addresses.</p> */ @NameInMap("DomainIpv6IspCityNodes") public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodes domainIpv6IspCityNodes; /** * <p>The nodes that perform health checks on public IPv4 addresses.</p> */ @NameInMap("Ipv4IspCityNodes") public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodes ipv4IspCityNodes; /** * <p>The nodes that perform health checks on public IPv6 addresses.</p> */ @NameInMap("Ipv6IspCityNodes") public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodes ipv6IspCityNodes; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>6856BCF6-11D6-4D7E-AC53-FD579933522B</p> */ @NameInMap("RequestId") public String requestId; public static DescribeDnsGtmMonitorAvailableConfigResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmMonitorAvailableConfigResponseBody self = new DescribeDnsGtmMonitorAvailableConfigResponseBody(); return TeaModel.build(map, self); } public DescribeDnsGtmMonitorAvailableConfigResponseBody setDomainIpv4IspCityNodes(DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodes domainIpv4IspCityNodes) { this.domainIpv4IspCityNodes = domainIpv4IspCityNodes; return this; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodes getDomainIpv4IspCityNodes() { return this.domainIpv4IspCityNodes; } public DescribeDnsGtmMonitorAvailableConfigResponseBody setDomainIpv6IspCityNodes(DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodes domainIpv6IspCityNodes) { this.domainIpv6IspCityNodes = domainIpv6IspCityNodes; return this; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodes getDomainIpv6IspCityNodes() { return this.domainIpv6IspCityNodes; } public DescribeDnsGtmMonitorAvailableConfigResponseBody setIpv4IspCityNodes(DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodes ipv4IspCityNodes) { this.ipv4IspCityNodes = ipv4IspCityNodes; return this; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodes getIpv4IspCityNodes() { return this.ipv4IspCityNodes; } public DescribeDnsGtmMonitorAvailableConfigResponseBody setIpv6IspCityNodes(DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodes ipv6IspCityNodes) { this.ipv6IspCityNodes = ipv6IspCityNodes; return this; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodes getIpv6IspCityNodes() { return this.ipv6IspCityNodes; } public DescribeDnsGtmMonitorAvailableConfigResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public static class DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNodeIps extends TeaModel { @NameInMap("Ip") public java.util.List<String> ip; public static DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNodeIps build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNodeIps self = new DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNodeIps(); return TeaModel.build(map, self); } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNodeIps setIp(java.util.List<String> ip) { this.ip = ip; return this; } public java.util.List<String> getIp() { return this.ip; } } public static class DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNode extends TeaModel { /** * <p>The city code.</p> * * <strong>example:</strong> * <p>503</p> */ @NameInMap("CityCode") public String cityCode; /** * <p>The display name of the city.</p> * * <strong>example:</strong> * <p>Zhangjiakou</p> */ @NameInMap("CityName") public String cityName; /** * <p>Indicates whether the health check node is selected by default.</p> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("DefaultSelected") public Boolean defaultSelected; /** * <p>The name of the node group.</p> * * <strong>example:</strong> * <p>BGP Nodes</p> */ @NameInMap("GroupName") public String groupName; /** * <p>The type of the node group. Valid values:</p> * <ul> * <li>BGP: BGP node</li> * <li>OVERSEAS: node outside the Chinese mainland</li> * <li>ISP: ISP node</li> * </ul> * * <strong>example:</strong> * <p>BGP</p> */ @NameInMap("GroupType") public String groupType; /** * <p>The IP addresses of the health check nodes.</p> */ @NameInMap("Ips") public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNodeIps ips; /** * <p>The ISP code.</p> * * <strong>example:</strong> * <p>465</p> */ @NameInMap("IspCode") public String ispCode; /** * <p>The display name of the ISP.</p> * * <strong>example:</strong> * <p>Alibaba</p> */ @NameInMap("IspName") public String ispName; public static DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNode build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNode self = new DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNode(); return TeaModel.build(map, self); } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNode setCityCode(String cityCode) { this.cityCode = cityCode; return this; } public String getCityCode() { return this.cityCode; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNode setCityName(String cityName) { this.cityName = cityName; return this; } public String getCityName() { return this.cityName; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNode setDefaultSelected(Boolean defaultSelected) { this.defaultSelected = defaultSelected; return this; } public Boolean getDefaultSelected() { return this.defaultSelected; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNode setGroupName(String groupName) { this.groupName = groupName; return this; } public String getGroupName() { return this.groupName; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNode setGroupType(String groupType) { this.groupType = groupType; return this; } public String getGroupType() { return this.groupType; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNode setIps(DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNodeIps ips) { this.ips = ips; return this; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNodeIps getIps() { return this.ips; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNode setIspCode(String ispCode) { this.ispCode = ispCode; return this; } public String getIspCode() { return this.ispCode; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNode setIspName(String ispName) { this.ispName = ispName; return this; } public String getIspName() { return this.ispName; } } public static class DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodes extends TeaModel { @NameInMap("DomainIpv4IspCityNode") public java.util.List<DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNode> domainIpv4IspCityNode; public static DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodes build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodes self = new DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodes(); return TeaModel.build(map, self); } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodes setDomainIpv4IspCityNode(java.util.List<DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNode> domainIpv4IspCityNode) { this.domainIpv4IspCityNode = domainIpv4IspCityNode; return this; } public java.util.List<DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv4IspCityNodesDomainIpv4IspCityNode> getDomainIpv4IspCityNode() { return this.domainIpv4IspCityNode; } } public static class DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNodeIps extends TeaModel { @NameInMap("ip") public java.util.List<String> ip; public static DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNodeIps build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNodeIps self = new DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNodeIps(); return TeaModel.build(map, self); } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNodeIps setIp(java.util.List<String> ip) { this.ip = ip; return this; } public java.util.List<String> getIp() { return this.ip; } } public static class DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNode extends TeaModel { /** * <p>The city code.</p> * * <strong>example:</strong> * <p>503</p> */ @NameInMap("CityCode") public String cityCode; /** * <p>The display name of the city.</p> * * <strong>example:</strong> * <p>Zhangjiakou</p> */ @NameInMap("CityName") public String cityName; /** * <p>Indicates whether the health check node is selected by default.</p> * * <strong>example:</strong> * <p>false</p> */ @NameInMap("DefaultSelected") public Boolean defaultSelected; /** * <p>The name of the node group.</p> * * <strong>example:</strong> * <p>BGP Nodes</p> */ @NameInMap("GroupName") public String groupName; /** * <p>The type of the node group. Valid values:</p> * <ul> * <li>BGP: BGP node</li> * <li>OVERSEAS: node outside the Chinese mainland</li> * <li>ISP: ISP node</li> * </ul> * * <strong>example:</strong> * <p>BGP</p> */ @NameInMap("GroupType") public String groupType; /** * <p>This parameter is not returned.</p> */ @NameInMap("Ips") public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNodeIps ips; /** * <p>The ISP code.</p> * * <strong>example:</strong> * <p>465</p> */ @NameInMap("IspCode") public String ispCode; /** * <p>The display name of the ISP.</p> * * <strong>example:</strong> * <p>Alibaba</p> */ @NameInMap("IspName") public String ispName; public static DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNode build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNode self = new DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNode(); return TeaModel.build(map, self); } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNode setCityCode(String cityCode) { this.cityCode = cityCode; return this; } public String getCityCode() { return this.cityCode; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNode setCityName(String cityName) { this.cityName = cityName; return this; } public String getCityName() { return this.cityName; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNode setDefaultSelected(Boolean defaultSelected) { this.defaultSelected = defaultSelected; return this; } public Boolean getDefaultSelected() { return this.defaultSelected; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNode setGroupName(String groupName) { this.groupName = groupName; return this; } public String getGroupName() { return this.groupName; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNode setGroupType(String groupType) { this.groupType = groupType; return this; } public String getGroupType() { return this.groupType; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNode setIps(DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNodeIps ips) { this.ips = ips; return this; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNodeIps getIps() { return this.ips; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNode setIspCode(String ispCode) { this.ispCode = ispCode; return this; } public String getIspCode() { return this.ispCode; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNode setIspName(String ispName) { this.ispName = ispName; return this; } public String getIspName() { return this.ispName; } } public static class DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodes extends TeaModel { @NameInMap("DomainIpv6IspCityNode") public java.util.List<DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNode> domainIpv6IspCityNode; public static DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodes build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodes self = new DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodes(); return TeaModel.build(map, self); } public DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodes setDomainIpv6IspCityNode(java.util.List<DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNode> domainIpv6IspCityNode) { this.domainIpv6IspCityNode = domainIpv6IspCityNode; return this; } public java.util.List<DescribeDnsGtmMonitorAvailableConfigResponseBodyDomainIpv6IspCityNodesDomainIpv6IspCityNode> getDomainIpv6IspCityNode() { return this.domainIpv6IspCityNode; } } public static class DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNodeIps extends TeaModel { @NameInMap("Ip") public java.util.List<String> ip; public static DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNodeIps build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNodeIps self = new DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNodeIps(); return TeaModel.build(map, self); } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNodeIps setIp(java.util.List<String> ip) { this.ip = ip; return this; } public java.util.List<String> getIp() { return this.ip; } } public static class DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNode extends TeaModel { /** * <p>The city code.</p> * * <strong>example:</strong> * <p>503</p> */ @NameInMap("CityCode") public String cityCode; /** * <p>The display name of the city.</p> * * <strong>example:</strong> * <p>Zhangjiakou</p> */ @NameInMap("CityName") public String cityName; /** * <p>Indicates whether the health check node is selected by default.</p> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("DefaultSelected") public Boolean defaultSelected; /** * <p>The name of the node group.</p> * * <strong>example:</strong> * <p>BGP Nodes</p> */ @NameInMap("GroupName") public String groupName; /** * <p>The type of the node group. Valid values:</p> * <ul> * <li>BGP: Border Gateway Protocol (BGP) node</li> * <li>OVERSEAS: node outside the Chinese mainland</li> * <li>ISP: ISP node</li> * </ul> * * <strong>example:</strong> * <p>BGP</p> */ @NameInMap("GroupType") public String groupType; /** * <p>The IP addresses of the health check nodes.</p> */ @NameInMap("Ips") public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNodeIps ips; /** * <p>The Internet service provider (ISP) code.</p> * * <strong>example:</strong> * <p>465</p> */ @NameInMap("IspCode") public String ispCode; /** * <p>The display name of the ISP.</p> * * <strong>example:</strong> * <p>Alibaba</p> */ @NameInMap("IspName") public String ispName; public static DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNode build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNode self = new DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNode(); return TeaModel.build(map, self); } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNode setCityCode(String cityCode) { this.cityCode = cityCode; return this; } public String getCityCode() { return this.cityCode; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNode setCityName(String cityName) { this.cityName = cityName; return this; } public String getCityName() { return this.cityName; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNode setDefaultSelected(Boolean defaultSelected) { this.defaultSelected = defaultSelected; return this; } public Boolean getDefaultSelected() { return this.defaultSelected; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNode setGroupName(String groupName) { this.groupName = groupName; return this; } public String getGroupName() { return this.groupName; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNode setGroupType(String groupType) { this.groupType = groupType; return this; } public String getGroupType() { return this.groupType; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNode setIps(DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNodeIps ips) { this.ips = ips; return this; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNodeIps getIps() { return this.ips; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNode setIspCode(String ispCode) { this.ispCode = ispCode; return this; } public String getIspCode() { return this.ispCode; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNode setIspName(String ispName) { this.ispName = ispName; return this; } public String getIspName() { return this.ispName; } } public static class DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodes extends TeaModel { @NameInMap("Ipv4IspCityNode") public java.util.List<DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNode> ipv4IspCityNode; public static DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodes build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodes self = new DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodes(); return TeaModel.build(map, self); } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodes setIpv4IspCityNode(java.util.List<DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNode> ipv4IspCityNode) { this.ipv4IspCityNode = ipv4IspCityNode; return this; } public java.util.List<DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv4IspCityNodesIpv4IspCityNode> getIpv4IspCityNode() { return this.ipv4IspCityNode; } } public static class DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNodeIps extends TeaModel { @NameInMap("Ip") public java.util.List<String> ip; public static DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNodeIps build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNodeIps self = new DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNodeIps(); return TeaModel.build(map, self); } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNodeIps setIp(java.util.List<String> ip) { this.ip = ip; return this; } public java.util.List<String> getIp() { return this.ip; } } public static class DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNode extends TeaModel { /** * <p>The city code.</p> * * <strong>example:</strong> * <p>503</p> */ @NameInMap("CityCode") public String cityCode; /** * <p>The display name of the city.</p> * * <strong>example:</strong> * <p>Zhangjiakou</p> */ @NameInMap("CityName") public String cityName; /** * <p>Indicates whether the health check node is selected by default.</p> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("DefaultSelected") public Boolean defaultSelected; /** * <p>The name of the node group.</p> * * <strong>example:</strong> * <p>BGP Nodes</p> */ @NameInMap("GroupName") public String groupName; /** * <p>The type of the node group. Valid values:</p> * <ul> * <li>BGP: BGP node</li> * <li>OVERSEAS: node outside the Chinese mainland</li> * <li>ISP: ISP node</li> * </ul> * * <strong>example:</strong> * <p>BGP</p> */ @NameInMap("GroupType") public String groupType; /** * <p>This parameter is not returned.</p> */ @NameInMap("Ips") public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNodeIps ips; /** * <p>The ISP code.</p> * * <strong>example:</strong> * <p>465</p> */ @NameInMap("IspCode") public String ispCode; /** * <p>The display name of the ISP.</p> * * <strong>example:</strong> * <p>Alibaba</p> */ @NameInMap("IspName") public String ispName; public static DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNode build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNode self = new DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNode(); return TeaModel.build(map, self); } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNode setCityCode(String cityCode) { this.cityCode = cityCode; return this; } public String getCityCode() { return this.cityCode; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNode setCityName(String cityName) { this.cityName = cityName; return this; } public String getCityName() { return this.cityName; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNode setDefaultSelected(Boolean defaultSelected) { this.defaultSelected = defaultSelected; return this; } public Boolean getDefaultSelected() { return this.defaultSelected; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNode setGroupName(String groupName) { this.groupName = groupName; return this; } public String getGroupName() { return this.groupName; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNode setGroupType(String groupType) { this.groupType = groupType; return this; } public String getGroupType() { return this.groupType; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNode setIps(DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNodeIps ips) { this.ips = ips; return this; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNodeIps getIps() { return this.ips; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNode setIspCode(String ispCode) { this.ispCode = ispCode; return this; } public String getIspCode() { return this.ispCode; } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNode setIspName(String ispName) { this.ispName = ispName; return this; } public String getIspName() { return this.ispName; } } public static class DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodes extends TeaModel { @NameInMap("Ipv6IspCityNode") public java.util.List<DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNode> ipv6IspCityNode; public static DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodes build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodes self = new DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodes(); return TeaModel.build(map, self); } public DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodes setIpv6IspCityNode(java.util.List<DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNode> ipv6IspCityNode) { this.ipv6IspCityNode = ipv6IspCityNode; return this; } public java.util.List<DescribeDnsGtmMonitorAvailableConfigResponseBodyIpv6IspCityNodesIpv6IspCityNode> getIpv6IspCityNode() { return this.ipv6IspCityNode; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDnsGtmMonitorConfigRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmMonitorConfigRequest extends TeaModel { /** * <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 ID of the health check task.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>MonitorConfigId1</p> */ @NameInMap("MonitorConfigId") public String monitorConfigId; public static DescribeDnsGtmMonitorConfigRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmMonitorConfigRequest self = new DescribeDnsGtmMonitorConfigRequest(); return TeaModel.build(map, self); } public DescribeDnsGtmMonitorConfigRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDnsGtmMonitorConfigRequest setMonitorConfigId(String monitorConfigId) { this.monitorConfigId = monitorConfigId; return this; } public String getMonitorConfigId() { return this.monitorConfigId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDnsGtmMonitorConfigResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmMonitorConfigResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDnsGtmMonitorConfigResponseBody body; public static DescribeDnsGtmMonitorConfigResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmMonitorConfigResponse self = new DescribeDnsGtmMonitorConfigResponse(); return TeaModel.build(map, self); } public DescribeDnsGtmMonitorConfigResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDnsGtmMonitorConfigResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDnsGtmMonitorConfigResponse setBody(DescribeDnsGtmMonitorConfigResponseBody body) { this.body = body; return this; } public DescribeDnsGtmMonitorConfigResponseBody 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/DescribeDnsGtmMonitorConfigResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsGtmMonitorConfigResponseBody extends TeaModel { /** * <p>The time when the health check configuration was created. The time follows the ISO 8601 standard in the YYYY-MM-DDThh:mm:ss format. The time is displayed in UTC.</p> * * <strong>example:</strong> * <p>2017-12-28T13:08Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>The time when the health check configuration was created. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>The number of consecutive failures.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("EvaluationCount") public Integer evaluationCount; /** * <p>The health check interval. Unit: seconds.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("Interval") public Integer interval; /** * <p>The health check nodes.</p> */ @NameInMap("IspCityNodes") public DescribeDnsGtmMonitorConfigResponseBodyIspCityNodes ispCityNodes; /** * <p>The ID of the health check configuration.</p> * * <strong>example:</strong> * <p>MonitorConfigId1</p> */ @NameInMap("MonitorConfigId") public String monitorConfigId; /** * <p>The extended information. The required parameters vary based on the value of ProtocolType.</p> * <ul> * <li><p>HTTP or HTTPS</p> * <ul> * <li><p>port: the port that you want to check</p> * </li> * <li><p>host: the host settings</p> * </li> * <li><p>path: the URL path</p> * </li> * <li><p>code: the response code. The health check result is deemed abnormal if the returned value is greater than the specified value.</p> * </li> * <li><p>failureRate: the failure rate</p> * </li> * <li><p>sni: specifies whether to enable server name indication (SNI). This parameter is available only when ProtocolType is set to HTTPS. Valid values:</p> * <ul> * <li>true: enables SNI.</li> * <li>false: disables SNI.</li> * </ul> * </li> * <li><p>nodeType: the type of the node for monitoring when the address pool type is domain name. Valid values:</p> * <ul> * <li>IPV4</li> * <li>IPV6</li> * </ul> * </li> * </ul> * </li> * <li><p>PING:</p> * <ul> * <li><p>failureRate: the failure rate</p> * </li> * <li><p>packetNum: the number of ping packets</p> * </li> * <li><p>packetLossRate: the loss rate of ping packets</p> * </li> * <li><p>nodeType: the type of the node for monitoring when the address pool type is domain name. Valid values:</p> * <ul> * <li>IPV4</li> * <li>IPV6</li> * </ul> * </li> * </ul> * </li> * <li><p>TCP</p> * <ul> * <li><p>port: the port that you want to check</p> * </li> * <li><p>failureRate: the failure rate</p> * </li> * <li><p>nodeType: the type of the node for monitoring when the address pool type is domain name. Valid values:</p> * <ul> * <li>IPV4</li> * <li>IPV6</li> * </ul> * </li> * </ul> * </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("MonitorExtendInfo") public String monitorExtendInfo; /** * <p>The health check protocol. Valid values:</p> * <ul> * <li>HTTP</li> * <li>HTTPS</li> * <li>PING</li> * <li>TCP</li> * </ul> * * <strong>example:</strong> * <p>http</p> */ @NameInMap("ProtocolType") public String protocolType; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>6856BCF6-11D6-4D7E-AC53-FD579933522B</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The timeout period. Unit: milliseconds.</p> * * <strong>example:</strong> * <p>3000</p> */ @NameInMap("Timeout") public Integer timeout; /** * <p>The time when the health check configuration was updated. The time follows the ISO 8601 standard in the YYYY-MM-DDThh:mm:ss format. The time is displayed in UTC.</p> * * <strong>example:</strong> * <p>2018-01-03T08:57Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <p>The time when the health check configuration was updated. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; public static DescribeDnsGtmMonitorConfigResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmMonitorConfigResponseBody self = new DescribeDnsGtmMonitorConfigResponseBody(); return TeaModel.build(map, self); } public DescribeDnsGtmMonitorConfigResponseBody setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public DescribeDnsGtmMonitorConfigResponseBody setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public DescribeDnsGtmMonitorConfigResponseBody setEvaluationCount(Integer evaluationCount) { this.evaluationCount = evaluationCount; return this; } public Integer getEvaluationCount() { return this.evaluationCount; } public DescribeDnsGtmMonitorConfigResponseBody setInterval(Integer interval) { this.interval = interval; return this; } public Integer getInterval() { return this.interval; } public DescribeDnsGtmMonitorConfigResponseBody setIspCityNodes(DescribeDnsGtmMonitorConfigResponseBodyIspCityNodes ispCityNodes) { this.ispCityNodes = ispCityNodes; return this; } public DescribeDnsGtmMonitorConfigResponseBodyIspCityNodes getIspCityNodes() { return this.ispCityNodes; } public DescribeDnsGtmMonitorConfigResponseBody setMonitorConfigId(String monitorConfigId) { this.monitorConfigId = monitorConfigId; return this; } public String getMonitorConfigId() { return this.monitorConfigId; } public DescribeDnsGtmMonitorConfigResponseBody setMonitorExtendInfo(String monitorExtendInfo) { this.monitorExtendInfo = monitorExtendInfo; return this; } public String getMonitorExtendInfo() { return this.monitorExtendInfo; } public DescribeDnsGtmMonitorConfigResponseBody setProtocolType(String protocolType) { this.protocolType = protocolType; return this; } public String getProtocolType() { return this.protocolType; } public DescribeDnsGtmMonitorConfigResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDnsGtmMonitorConfigResponseBody setTimeout(Integer timeout) { this.timeout = timeout; return this; } public Integer getTimeout() { return this.timeout; } public DescribeDnsGtmMonitorConfigResponseBody setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public DescribeDnsGtmMonitorConfigResponseBody setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public static class DescribeDnsGtmMonitorConfigResponseBodyIspCityNodesIspCityNode extends TeaModel { /** * <p>The city code.</p> * * <strong>example:</strong> * <p>572</p> */ @NameInMap("CityCode") public String cityCode; /** * <p>The display name of the city.</p> * * <strong>example:</strong> * <p>Qingdao</p> */ @NameInMap("CityName") public String cityName; /** * <p>The code of the country or region.</p> * * <strong>example:</strong> * <p>001</p> */ @NameInMap("CountryCode") public String countryCode; /** * <p>The display name of the country or region.</p> * * <strong>example:</strong> * <p>China</p> */ @NameInMap("CountryName") public String countryName; /** * <p>The Internet service provider (ISP) code.</p> * * <strong>example:</strong> * <p>123</p> */ @NameInMap("IspCode") public String ispCode; /** * <p>The display name of the ISP.</p> * * <strong>example:</strong> * <p>Alibaba</p> */ @NameInMap("IspName") public String ispName; public static DescribeDnsGtmMonitorConfigResponseBodyIspCityNodesIspCityNode build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmMonitorConfigResponseBodyIspCityNodesIspCityNode self = new DescribeDnsGtmMonitorConfigResponseBodyIspCityNodesIspCityNode(); return TeaModel.build(map, self); } public DescribeDnsGtmMonitorConfigResponseBodyIspCityNodesIspCityNode setCityCode(String cityCode) { this.cityCode = cityCode; return this; } public String getCityCode() { return this.cityCode; } public DescribeDnsGtmMonitorConfigResponseBodyIspCityNodesIspCityNode setCityName(String cityName) { this.cityName = cityName; return this; } public String getCityName() { return this.cityName; } public DescribeDnsGtmMonitorConfigResponseBodyIspCityNodesIspCityNode setCountryCode(String countryCode) { this.countryCode = countryCode; return this; } public String getCountryCode() { return this.countryCode; } public DescribeDnsGtmMonitorConfigResponseBodyIspCityNodesIspCityNode setCountryName(String countryName) { this.countryName = countryName; return this; } public String getCountryName() { return this.countryName; } public DescribeDnsGtmMonitorConfigResponseBodyIspCityNodesIspCityNode setIspCode(String ispCode) { this.ispCode = ispCode; return this; } public String getIspCode() { return this.ispCode; } public DescribeDnsGtmMonitorConfigResponseBodyIspCityNodesIspCityNode setIspName(String ispName) { this.ispName = ispName; return this; } public String getIspName() { return this.ispName; } } public static class DescribeDnsGtmMonitorConfigResponseBodyIspCityNodes extends TeaModel { @NameInMap("IspCityNode") public java.util.List<DescribeDnsGtmMonitorConfigResponseBodyIspCityNodesIspCityNode> ispCityNode; public static DescribeDnsGtmMonitorConfigResponseBodyIspCityNodes build(java.util.Map<String, ?> map) throws Exception { DescribeDnsGtmMonitorConfigResponseBodyIspCityNodes self = new DescribeDnsGtmMonitorConfigResponseBodyIspCityNodes(); return TeaModel.build(map, self); } public DescribeDnsGtmMonitorConfigResponseBodyIspCityNodes setIspCityNode(java.util.List<DescribeDnsGtmMonitorConfigResponseBodyIspCityNodesIspCityNode> ispCityNode) { this.ispCityNode = ispCityNode; return this; } public java.util.List<DescribeDnsGtmMonitorConfigResponseBodyIspCityNodesIspCityNode> getIspCityNode() { return this.ispCityNode; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDnsProductInstanceRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsProductInstanceRequest extends TeaModel { /** * <p>The ID of the DNS instance. . You can call the <a href="https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomaininfo?spm=a2c63.p38356.help-menu-search-29697.d_0">DescribeDomainInfo</a> operation to obtain the ID.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>i-8fxxxx</p> */ @NameInMap("InstanceId") public String instanceId; /** * <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 IP address of the client.</p> * * <strong>example:</strong> * <p>192.0.2.0</p> */ @NameInMap("UserClientIp") public String userClientIp; public static DescribeDnsProductInstanceRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDnsProductInstanceRequest self = new DescribeDnsProductInstanceRequest(); return TeaModel.build(map, self); } public DescribeDnsProductInstanceRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public DescribeDnsProductInstanceRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDnsProductInstanceRequest 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/DescribeDnsProductInstanceResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsProductInstanceResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDnsProductInstanceResponseBody body; public static DescribeDnsProductInstanceResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDnsProductInstanceResponse self = new DescribeDnsProductInstanceResponse(); return TeaModel.build(map, self); } public DescribeDnsProductInstanceResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDnsProductInstanceResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDnsProductInstanceResponse setBody(DescribeDnsProductInstanceResponseBody body) { this.body = body; return this; } public DescribeDnsProductInstanceResponseBody 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/DescribeDnsProductInstanceResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsProductInstanceResponseBody extends TeaModel { /** * <p>Indicates whether auto-renewal was enabled. Valid values:</p> * <ul> * <li>true: Auto-renewal was enabled.</li> * <li>false: Auto-renewal was not enabled.</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("AutoRenewal") public Boolean autoRenewal; /** * <p>The number of times that you can change the domain names that are bound to the paid Alibaba Cloud DNS instance. This parameter applies to Alibaba Cloud DNS instances of the custom edition.</p> * * <strong>example:</strong> * <p>3</p> */ @NameInMap("BindCount") public Long bindCount; /** * <p>The number of domain names that can be bound to the paid Alibaba Cloud DNS instance. This parameter applies to Alibaba Cloud DNS instances of Personal Edition, Enterprise Standard Edition, and Enterprise Ultimate Edition.</p> * * <strong>example:</strong> * <p>5</p> */ @NameInMap("BindDomainCount") public Long bindDomainCount; /** * <p>The number of domain names that are bound to the paid Alibaba Cloud DNS instance. This parameter applies to Alibaba Cloud DNS instances of Personal Edition, Enterprise Standard Edition, and Enterprise Ultimate Edition.</p> * * <strong>example:</strong> * <p>3</p> */ @NameInMap("BindDomainUsedCount") public Long bindDomainUsedCount; /** * <p>The number of times that you have changed the domain names that are bound to the paid Alibaba Cloud DNS instance. This parameter applies to Alibaba Cloud DNS instances of the custom edition.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("BindUsedCount") public Long bindUsedCount; /** * <p>The DDoS protection traffic. Unit: GB.</p> * * <strong>example:</strong> * <p>50</p> */ @NameInMap("DDosDefendFlow") public Long DDosDefendFlow; /** * <p>The DDoS protection frequency. Unit: 10,000 QPS. This parameter applies to Alibaba Cloud DNS instances of the custom edition.</p> * * <strong>example:</strong> * <p>50</p> */ @NameInMap("DDosDefendQuery") public Long DDosDefendQuery; /** * <p>The maximum number of IP addresses that are used for load balancing in a single line of a domain name.</p> * * <strong>example:</strong> * <p>15</p> */ @NameInMap("DnsSLBCount") public Long dnsSLBCount; /** * <p>The level of DNS protection. Valid values:</p> * <ul> * <li>no: No DNS protection is provided.</li> * <li>basic: Basic DNS protection is provided.</li> * <li>advanced: Advanced DNS protection is provided.</li> * </ul> * * <strong>example:</strong> * <p>advanced</p> */ @NameInMap("DnsSecurity") public String dnsSecurity; /** * <p>The DNS servers configured for the domain names.</p> */ @NameInMap("DnsServers") public DescribeDnsProductInstanceResponseBodyDnsServers dnsServers; /** * <p>The domain name that is bound to the paid instance.</p> * <p>If no value is returned for this parameter, no domain name is bound to the paid instance.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("Domain") public String domain; /** * <p>The type of the instance. Valid values:</p> * <ul> * <li>PUBLIC: authoritative domain name</li> * <li>CACHE: cache-accelerated domain name</li> * </ul> * * <strong>example:</strong> * <p>PUBLIC</p> */ @NameInMap("DomainType") public String domainType; /** * <p>The time when the instance expired. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.</p> * * <strong>example:</strong> * <p>2015-12-12T09:23Z</p> */ @NameInMap("EndTime") public String endTime; /** * <p>The time when the instance expired. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.</p> * * <strong>example:</strong> * <p>1474335170000</p> */ @NameInMap("EndTimestamp") public Long endTimestamp; /** * <p>Indicates whether global server load balancing (GSLB) is supported. Valid values:</p> * <ul> * <li>true: GSLB is supported.</li> * <li>false: GSLB is not supported.</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("Gslb") public Boolean gslb; /** * <p>The ISP resolution lines. Valid values:</p> * <ul> * <li>China Telecom</li> * <li>China Mobile</li> * <li>China Unicom</li> * <li>China Education and Research Network (CERNET)</li> * <li>China Broadcasting Network (CBN)</li> * <li>Dr Peng Telecom &amp; Media Group</li> * </ul> */ @NameInMap("ISPLines") public String ISPLines; /** * <p>The regional ISP resolution lines. Valid values:</p> * <ul> * <li>China Telecom (province)</li> * <li>China Mobile (province)</li> * <li>China Unicom (province)</li> * <li>CERNET (province)</li> * </ul> */ @NameInMap("ISPRegionLines") public String ISPRegionLines; /** * <p>Indicates whether the Domain Name System (DNS) servers stopped responding to all DNS requests. Valid values:</p> * <ul> * <li>true: The DNS servers stopped responding to all DNS requests.</li> * <li>false: The DNS servers did not stop responding to all DNS requests.</li> * </ul> * * <strong>example:</strong> * <p>false</p> */ @NameInMap("InBlackHole") public Boolean inBlackHole; /** * <p>Indicates whether the DNS servers stopped responding to abnormal requests sent to the domain names.</p> * <ul> * <li>true: The DNS servers stopped responding to abnormal requests sent to the domain names.</li> * <li>false: The DNS servers did not stop responding to abnormal requests sent to the domain names.</li> * </ul> * * <strong>example:</strong> * <p>false</p> */ @NameInMap("InClean") public Boolean inClean; /** * <p>The ID of the Alibaba Cloud DNS instance.</p> * * <strong>example:</strong> * <p>i-8fxxx</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>The interval at which the instance is monitored. Unit: minutes.</p> * * <strong>example:</strong> * <p>50</p> */ @NameInMap("MonitorFrequency") public Long monitorFrequency; /** * <p>The number of monitoring nodes.</p> * * <strong>example:</strong> * <p>5</p> */ @NameInMap("MonitorNodeCount") public Long monitorNodeCount; /** * <p>The number of monitoring tasks.</p> * * <strong>example:</strong> * <p>2</p> */ @NameInMap("MonitorTaskCount") public Long monitorTaskCount; /** * <p>The DDoS protection traffic outside the Chinese mainland. Unit: GB.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("OverseaDDosDefendFlow") public Long overseaDDosDefendFlow; /** * <p>The line outside the Chinese mainland.</p> */ @NameInMap("OverseaLine") public String overseaLine; /** * <p>The billing method.</p> * * <strong>example:</strong> * <p>Subscription</p> */ @NameInMap("PaymentType") public String paymentType; /** * <p>Indicates whether the DNS request lines are regional lines. Valid values:</p> * <ul> * <li>true: The DNS request lines are regional lines.</li> * <li>false: The DNS request lines are not regional lines.</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("RegionLines") public Boolean regionLines; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The search engine resolution lines. Valid values:</p> * <ul> * <li>Google</li> * <li>Baidu</li> * <li>Bing</li> * <li>Youdao</li> * </ul> */ @NameInMap("SearchEngineLines") public String searchEngineLines; /** * <p>The time when the instance was purchased. The time follows the ISO 8601 standard in the yyyy-MM-ddTHH:mm:ssZ format. The time is displayed in UTC.</p> * * <strong>example:</strong> * <p>2015-12-12T09:23Z</p> */ @NameInMap("StartTime") public String startTime; /** * <p>The time when the instance was purchased. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.</p> * * <strong>example:</strong> * <p>1474335170000</p> */ @NameInMap("StartTimestamp") public Long startTimestamp; /** * <p>The number of subdomain name levels.</p> * * <strong>example:</strong> * <p>6</p> */ @NameInMap("SubDomainLevel") public Long subDomainLevel; /** * <p>The minimum time-to-live (TTL) period. Unit: seconds.</p> * * <strong>example:</strong> * <p>10</p> */ @NameInMap("TTLMinValue") public Long TTLMinValue; /** * <p>The number of the forwarded URLs.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("URLForwardCount") public Long URLForwardCount; /** * <p>The version code of Alibaba Cloud DNS.</p> * * <strong>example:</strong> * <p>version1</p> */ @NameInMap("VersionCode") public String versionCode; /** * <p>The edition of Alibaba Cloud DNS.</p> */ @NameInMap("VersionName") public String versionName; public static DescribeDnsProductInstanceResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDnsProductInstanceResponseBody self = new DescribeDnsProductInstanceResponseBody(); return TeaModel.build(map, self); } public DescribeDnsProductInstanceResponseBody setAutoRenewal(Boolean autoRenewal) { this.autoRenewal = autoRenewal; return this; } public Boolean getAutoRenewal() { return this.autoRenewal; } public DescribeDnsProductInstanceResponseBody setBindCount(Long bindCount) { this.bindCount = bindCount; return this; } public Long getBindCount() { return this.bindCount; } public DescribeDnsProductInstanceResponseBody setBindDomainCount(Long bindDomainCount) { this.bindDomainCount = bindDomainCount; return this; } public Long getBindDomainCount() { return this.bindDomainCount; } public DescribeDnsProductInstanceResponseBody setBindDomainUsedCount(Long bindDomainUsedCount) { this.bindDomainUsedCount = bindDomainUsedCount; return this; } public Long getBindDomainUsedCount() { return this.bindDomainUsedCount; } public DescribeDnsProductInstanceResponseBody setBindUsedCount(Long bindUsedCount) { this.bindUsedCount = bindUsedCount; return this; } public Long getBindUsedCount() { return this.bindUsedCount; } public DescribeDnsProductInstanceResponseBody setDDosDefendFlow(Long DDosDefendFlow) { this.DDosDefendFlow = DDosDefendFlow; return this; } public Long getDDosDefendFlow() { return this.DDosDefendFlow; } public DescribeDnsProductInstanceResponseBody setDDosDefendQuery(Long DDosDefendQuery) { this.DDosDefendQuery = DDosDefendQuery; return this; } public Long getDDosDefendQuery() { return this.DDosDefendQuery; } public DescribeDnsProductInstanceResponseBody setDnsSLBCount(Long dnsSLBCount) { this.dnsSLBCount = dnsSLBCount; return this; } public Long getDnsSLBCount() { return this.dnsSLBCount; } public DescribeDnsProductInstanceResponseBody setDnsSecurity(String dnsSecurity) { this.dnsSecurity = dnsSecurity; return this; } public String getDnsSecurity() { return this.dnsSecurity; } public DescribeDnsProductInstanceResponseBody setDnsServers(DescribeDnsProductInstanceResponseBodyDnsServers dnsServers) { this.dnsServers = dnsServers; return this; } public DescribeDnsProductInstanceResponseBodyDnsServers getDnsServers() { return this.dnsServers; } public DescribeDnsProductInstanceResponseBody setDomain(String domain) { this.domain = domain; return this; } public String getDomain() { return this.domain; } public DescribeDnsProductInstanceResponseBody setDomainType(String domainType) { this.domainType = domainType; return this; } public String getDomainType() { return this.domainType; } public DescribeDnsProductInstanceResponseBody setEndTime(String endTime) { this.endTime = endTime; return this; } public String getEndTime() { return this.endTime; } public DescribeDnsProductInstanceResponseBody setEndTimestamp(Long endTimestamp) { this.endTimestamp = endTimestamp; return this; } public Long getEndTimestamp() { return this.endTimestamp; } public DescribeDnsProductInstanceResponseBody setGslb(Boolean gslb) { this.gslb = gslb; return this; } public Boolean getGslb() { return this.gslb; } public DescribeDnsProductInstanceResponseBody setISPLines(String ISPLines) { this.ISPLines = ISPLines; return this; } public String getISPLines() { return this.ISPLines; } public DescribeDnsProductInstanceResponseBody setISPRegionLines(String ISPRegionLines) { this.ISPRegionLines = ISPRegionLines; return this; } public String getISPRegionLines() { return this.ISPRegionLines; } public DescribeDnsProductInstanceResponseBody setInBlackHole(Boolean inBlackHole) { this.inBlackHole = inBlackHole; return this; } public Boolean getInBlackHole() { return this.inBlackHole; } public DescribeDnsProductInstanceResponseBody setInClean(Boolean inClean) { this.inClean = inClean; return this; } public Boolean getInClean() { return this.inClean; } public DescribeDnsProductInstanceResponseBody setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public DescribeDnsProductInstanceResponseBody setMonitorFrequency(Long monitorFrequency) { this.monitorFrequency = monitorFrequency; return this; } public Long getMonitorFrequency() { return this.monitorFrequency; } public DescribeDnsProductInstanceResponseBody setMonitorNodeCount(Long monitorNodeCount) { this.monitorNodeCount = monitorNodeCount; return this; } public Long getMonitorNodeCount() { return this.monitorNodeCount; } public DescribeDnsProductInstanceResponseBody setMonitorTaskCount(Long monitorTaskCount) { this.monitorTaskCount = monitorTaskCount; return this; } public Long getMonitorTaskCount() { return this.monitorTaskCount; } public DescribeDnsProductInstanceResponseBody setOverseaDDosDefendFlow(Long overseaDDosDefendFlow) { this.overseaDDosDefendFlow = overseaDDosDefendFlow; return this; } public Long getOverseaDDosDefendFlow() { return this.overseaDDosDefendFlow; } public DescribeDnsProductInstanceResponseBody setOverseaLine(String overseaLine) { this.overseaLine = overseaLine; return this; } public String getOverseaLine() { return this.overseaLine; } public DescribeDnsProductInstanceResponseBody setPaymentType(String paymentType) { this.paymentType = paymentType; return this; } public String getPaymentType() { return this.paymentType; } public DescribeDnsProductInstanceResponseBody setRegionLines(Boolean regionLines) { this.regionLines = regionLines; return this; } public Boolean getRegionLines() { return this.regionLines; } public DescribeDnsProductInstanceResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDnsProductInstanceResponseBody setSearchEngineLines(String searchEngineLines) { this.searchEngineLines = searchEngineLines; return this; } public String getSearchEngineLines() { return this.searchEngineLines; } public DescribeDnsProductInstanceResponseBody setStartTime(String startTime) { this.startTime = startTime; return this; } public String getStartTime() { return this.startTime; } public DescribeDnsProductInstanceResponseBody setStartTimestamp(Long startTimestamp) { this.startTimestamp = startTimestamp; return this; } public Long getStartTimestamp() { return this.startTimestamp; } public DescribeDnsProductInstanceResponseBody setSubDomainLevel(Long subDomainLevel) { this.subDomainLevel = subDomainLevel; return this; } public Long getSubDomainLevel() { return this.subDomainLevel; } public DescribeDnsProductInstanceResponseBody setTTLMinValue(Long TTLMinValue) { this.TTLMinValue = TTLMinValue; return this; } public Long getTTLMinValue() { return this.TTLMinValue; } public DescribeDnsProductInstanceResponseBody setURLForwardCount(Long URLForwardCount) { this.URLForwardCount = URLForwardCount; return this; } public Long getURLForwardCount() { return this.URLForwardCount; } public DescribeDnsProductInstanceResponseBody setVersionCode(String versionCode) { this.versionCode = versionCode; return this; } public String getVersionCode() { return this.versionCode; } public DescribeDnsProductInstanceResponseBody setVersionName(String versionName) { this.versionName = versionName; return this; } public String getVersionName() { return this.versionName; } public static class DescribeDnsProductInstanceResponseBodyDnsServers extends TeaModel { @NameInMap("DnsServer") public java.util.List<String> dnsServer; public static DescribeDnsProductInstanceResponseBodyDnsServers build(java.util.Map<String, ?> map) throws Exception { DescribeDnsProductInstanceResponseBodyDnsServers self = new DescribeDnsProductInstanceResponseBodyDnsServers(); return TeaModel.build(map, self); } public DescribeDnsProductInstanceResponseBodyDnsServers setDnsServer(java.util.List<String> dnsServer) { this.dnsServer = dnsServer; return this; } public java.util.List<String> getDnsServer() { return this.dnsServer; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDnsProductInstancesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsProductInstancesRequest extends TeaModel { /** * <p>The order in which you want to sort returned entries. Valid values:</p> * <ul> * <li>DESC: Returned entries are sorted in descending order. If this parameter is left empty, returned entries are sorted in descending order by default.</li> * <li>ASC: Returned entries are sorted in ascending order.</li> * </ul> * * <strong>example:</strong> * <p>DESC</p> */ @NameInMap("Direction") public String direction; /** * <p>The type of the domain name. Valid values:</p> * <ul> * <li>PUBLIC (default): hosted public domain name</li> * <li>CACHE: cached public domain name</li> * </ul> * * <strong>example:</strong> * <p>PUBLIC</p> */ @NameInMap("DomainType") public String domainType; /** * <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 method that is used to sort returned entries. Valid values:</p> * <ul> * <li>createDate: sorts returned entries by creation time. If this parameter is left empty, returned entries are sorted by creation time by default.</li> * <li>expireDate: sorts returned entries by expiration time.</li> * </ul> * * <strong>example:</strong> * <p>createDate</p> */ @NameInMap("OrderBy") public String orderBy; /** * <p>The number of the page to return. Pages start from page <strong>1</strong>. Default value: <strong>1</strong>.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Long pageNumber; /** * <p>The number of entries to return on each page. Maximum value: <strong>100</strong>. Default value: <strong>20</strong>.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Long pageSize; /** * <p>The IP address of the client.</p> * * <strong>example:</strong> * <p>192.0.2.0</p> */ @NameInMap("UserClientIp") public String userClientIp; /** * <p>The version code of the Alibaba Cloud DNS instance.</p> * * <strong>example:</strong> * <p>version1</p> */ @NameInMap("VersionCode") public String versionCode; public static DescribeDnsProductInstancesRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDnsProductInstancesRequest self = new DescribeDnsProductInstancesRequest(); return TeaModel.build(map, self); } public DescribeDnsProductInstancesRequest setDirection(String direction) { this.direction = direction; return this; } public String getDirection() { return this.direction; } public DescribeDnsProductInstancesRequest setDomainType(String domainType) { this.domainType = domainType; return this; } public String getDomainType() { return this.domainType; } public DescribeDnsProductInstancesRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDnsProductInstancesRequest setOrderBy(String orderBy) { this.orderBy = orderBy; return this; } public String getOrderBy() { return this.orderBy; } public DescribeDnsProductInstancesRequest setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public DescribeDnsProductInstancesRequest setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public DescribeDnsProductInstancesRequest setUserClientIp(String userClientIp) { this.userClientIp = userClientIp; return this; } public String getUserClientIp() { return this.userClientIp; } public DescribeDnsProductInstancesRequest setVersionCode(String versionCode) { this.versionCode = versionCode; return this; } public String getVersionCode() { return this.versionCode; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDnsProductInstancesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsProductInstancesResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDnsProductInstancesResponseBody body; public static DescribeDnsProductInstancesResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDnsProductInstancesResponse self = new DescribeDnsProductInstancesResponse(); return TeaModel.build(map, self); } public DescribeDnsProductInstancesResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDnsProductInstancesResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDnsProductInstancesResponse setBody(DescribeDnsProductInstancesResponseBody body) { this.body = body; return this; } public DescribeDnsProductInstancesResponseBody 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/DescribeDnsProductInstancesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDnsProductInstancesResponseBody extends TeaModel { /** * <p>The paid Alibaba Cloud DNS instances.</p> */ @NameInMap("DnsProducts") public DescribeDnsProductInstancesResponseBodyDnsProducts dnsProducts; /** * <p>The type of the domain name. Valid values:</p> * <ul> * <li>PUBLIC (default): hosted public domain name</li> * <li>CACHE: cached public domain name</li> * </ul> * * <strong>example:</strong> * <p>PUBLIC</p> */ @NameInMap("DomainType") public String domainType; /** * <p>The page number of the returned page.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Long pageNumber; /** * <p>The number of entries returned per page.</p> * * <strong>example:</strong> * <p>2</p> */ @NameInMap("PageSize") public Long pageSize; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The total number of domain names.</p> * * <strong>example:</strong> * <p>2</p> */ @NameInMap("TotalCount") public Long totalCount; public static DescribeDnsProductInstancesResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDnsProductInstancesResponseBody self = new DescribeDnsProductInstancesResponseBody(); return TeaModel.build(map, self); } public DescribeDnsProductInstancesResponseBody setDnsProducts(DescribeDnsProductInstancesResponseBodyDnsProducts dnsProducts) { this.dnsProducts = dnsProducts; return this; } public DescribeDnsProductInstancesResponseBodyDnsProducts getDnsProducts() { return this.dnsProducts; } public DescribeDnsProductInstancesResponseBody setDomainType(String domainType) { this.domainType = domainType; return this; } public String getDomainType() { return this.domainType; } public DescribeDnsProductInstancesResponseBody setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public DescribeDnsProductInstancesResponseBody setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public DescribeDnsProductInstancesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDnsProductInstancesResponseBody setTotalCount(Long totalCount) { this.totalCount = totalCount; return this; } public Long getTotalCount() { return this.totalCount; } public static class DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct extends TeaModel { /** * <p>Indicates whether auto-renewal was enabled. Valid values:</p> * <ul> * <li>true: Auto-renewal was enabled.</li> * <li>false: Auto-renewal was not enabled.</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("AutoRenewal") public Boolean autoRenewal; /** * <p>The number of times you can change domain names that are bound to the DNS instance. It can be specified by the user who uses Alibaba Cloud DNS of the custom version.</p> * * <strong>example:</strong> * <p>3</p> */ @NameInMap("BindCount") public Long bindCount; /** * <p>The number of domain names that can be bound to the DNS instance.</p> * * <strong>example:</strong> * <p>5</p> */ @NameInMap("BindDomainCount") public Long bindDomainCount; /** * <p>The number of domain names that have been bound to the DNS instance.</p> * * <strong>example:</strong> * <p>3</p> */ @NameInMap("BindDomainUsedCount") public Long bindDomainUsedCount; /** * <p>The number of times you have changed domain names that are bound to the DNS instance. It can be specified by the user who uses Alibaba Cloud DNS of the custom version.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("BindUsedCount") public Long bindUsedCount; /** * <p>The DDoS protection traffic. Unit: GB.</p> * * <strong>example:</strong> * <p>50</p> */ @NameInMap("DDosDefendFlow") public Long DDosDefendFlow; /** * <p>The DDoS protection frequency. Unit: 10,000 QPS.</p> * * <strong>example:</strong> * <p>50</p> */ @NameInMap("DDosDefendQuery") public Long DDosDefendQuery; /** * <p>The number of IP addresses supported by a domain name or line.</p> * * <strong>example:</strong> * <p>15</p> */ @NameInMap("DnsSLBCount") public Long dnsSLBCount; /** * <p>The level of DNS protection. Valid values:</p> * <ul> * <li>no: No DNS protection is provided.</li> * <li>basic: Basic DNS protection is provided.</li> * <li>advanced: Advanced DNS protection is provided.</li> * </ul> * * <strong>example:</strong> * <p>no</p> */ @NameInMap("DnsSecurity") public String dnsSecurity; /** * <p>The bound domain name.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("Domain") public String domain; /** * <p>The time at which the instance expired.</p> * * <strong>example:</strong> * <p>2015-12-12T00:00Z</p> */ @NameInMap("EndTime") public String endTime; /** * <p>The UNIX timestamp representing the expiration time of the instance.</p> * * <strong>example:</strong> * <p>1474335170000</p> */ @NameInMap("EndTimestamp") public Long endTimestamp; /** * <p>Indicates whether global server load balancing (GSLB) is supported.</p> * <ul> * <li>true: GSLB is supported.</li> * <li>false: GSLB is not supported.</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("Gslb") public Boolean gslb; /** * <p>The ISP resolution lines.</p> * <ul> * <li>China Telecom</li> * <li>China Mobile</li> * <li>China Unicom</li> * <li>CERNET</li> * <li>China Broadcasting Network (CBN)</li> * <li>Dr Peng Telecom &amp; Media Group</li> * </ul> * * <strong>example:</strong> * <p>China Mobile,China Unicom,China Telecom,China Edu</p> */ @NameInMap("ISPLines") public String ISPLines; /** * <p>The regional ISP resolution lines. Valid values:</p> * <ul> * <li>China Telecom (province)</li> * <li>China Mobile (province)</li> * <li>China Unicom (province)</li> * <li>China Education and Research Network (CERNET) (province)</li> * </ul> * * <strong>example:</strong> * <p>Telecom (Province), Mobile (Province), Unicom (Province), Education Network (Province)</p> */ @NameInMap("ISPRegionLines") public String ISPRegionLines; /** * <p>Indicates whether the Domain Name System (DNS) servers stopped responding to all requests. Valid values:</p> * <ul> * <li>true: The DNS servers stopped responding to all requests.</li> * <li>false: The DNS servers did not stop responding to all requests.</li> * </ul> * * <strong>example:</strong> * <p>false</p> */ @NameInMap("InBlackHole") public Boolean inBlackHole; /** * <p>Indicates whether the request for domain name resolution was being cleared.</p> * * <strong>example:</strong> * <p>false</p> */ @NameInMap("InClean") public Boolean inClean; /** * <p>The ID of the Alibaba Cloud DNS instance.</p> * * <strong>example:</strong> * <p>i-8fj</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>The monitoring frequency. Unit: minutes.</p> * * <strong>example:</strong> * <p>50</p> */ @NameInMap("MonitorFrequency") public Long monitorFrequency; /** * <p>The number of monitored nodes.</p> * * <strong>example:</strong> * <p>5</p> */ @NameInMap("MonitorNodeCount") public Long monitorNodeCount; /** * <p>The number of monitoring tasks.</p> * * <strong>example:</strong> * <p>2</p> */ @NameInMap("MonitorTaskCount") public Long monitorTaskCount; /** * <p>DDoS protection traffic outside China. Unit: GB.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("OverseaDDosDefendFlow") public Long overseaDDosDefendFlow; /** * <p>The type of the overseas line.</p> * * <strong>example:</strong> * <p>Countries</p> */ @NameInMap("OverseaLine") public String overseaLine; /** * <p>The billing method.</p> * * <strong>example:</strong> * <p>Subscription</p> */ @NameInMap("PaymentType") public String paymentType; /** * <p>Indicates whether the DNS request lines are regional lines.</p> * <ul> * <li>true: The DNS request lines are regional lines.</li> * <li>false: The DNS request lines are not regional lines.</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("RegionLines") public Boolean regionLines; /** * <p>The search engine resolution lines. Valid values:</p> * <ul> * <li>Google</li> * <li>Baidu</li> * <li>Bing</li> * <li>Youdao</li> * </ul> * * <strong>example:</strong> * <p>Search Engine Robots,Google Robots,Baidu Robots,Bing Robots</p> */ @NameInMap("SearchEngineLines") public String searchEngineLines; /** * <p>The time when the DNS instance was purchased.</p> * * <strong>example:</strong> * <p>2015-11-12T09:23Z</p> */ @NameInMap("StartTime") public String startTime; /** * <p>The UNIX timestamp representing when the DNS instance was purchased.</p> * * <strong>example:</strong> * <p>1474335170000</p> */ @NameInMap("StartTimestamp") public Long startTimestamp; /** * <p>The number of subdomain name levels.</p> * * <strong>example:</strong> * <p>6</p> */ @NameInMap("SubDomainLevel") public Long subDomainLevel; /** * <p>The minimum TTL. Unit: seconds.</p> * * <strong>example:</strong> * <p>10</p> */ @NameInMap("TTLMinValue") public Long TTLMinValue; /** * <p>The URL forwarding quantity.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("URLForwardCount") public Long URLForwardCount; /** * <p>The version code of the Alibaba Cloud DNS instance.</p> * * <strong>example:</strong> * <p>version1</p> */ @NameInMap("VersionCode") public String versionCode; /** * <p>The version name of the Alibaba Cloud DNS instance.</p> * * <strong>example:</strong> * <p>Alibaba Cloud DNS</p> */ @NameInMap("VersionName") public String versionName; public static DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct build(java.util.Map<String, ?> map) throws Exception { DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct self = new DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct(); return TeaModel.build(map, self); } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setAutoRenewal(Boolean autoRenewal) { this.autoRenewal = autoRenewal; return this; } public Boolean getAutoRenewal() { return this.autoRenewal; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setBindCount(Long bindCount) { this.bindCount = bindCount; return this; } public Long getBindCount() { return this.bindCount; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setBindDomainCount(Long bindDomainCount) { this.bindDomainCount = bindDomainCount; return this; } public Long getBindDomainCount() { return this.bindDomainCount; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setBindDomainUsedCount(Long bindDomainUsedCount) { this.bindDomainUsedCount = bindDomainUsedCount; return this; } public Long getBindDomainUsedCount() { return this.bindDomainUsedCount; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setBindUsedCount(Long bindUsedCount) { this.bindUsedCount = bindUsedCount; return this; } public Long getBindUsedCount() { return this.bindUsedCount; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setDDosDefendFlow(Long DDosDefendFlow) { this.DDosDefendFlow = DDosDefendFlow; return this; } public Long getDDosDefendFlow() { return this.DDosDefendFlow; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setDDosDefendQuery(Long DDosDefendQuery) { this.DDosDefendQuery = DDosDefendQuery; return this; } public Long getDDosDefendQuery() { return this.DDosDefendQuery; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setDnsSLBCount(Long dnsSLBCount) { this.dnsSLBCount = dnsSLBCount; return this; } public Long getDnsSLBCount() { return this.dnsSLBCount; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setDnsSecurity(String dnsSecurity) { this.dnsSecurity = dnsSecurity; return this; } public String getDnsSecurity() { return this.dnsSecurity; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setDomain(String domain) { this.domain = domain; return this; } public String getDomain() { return this.domain; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setEndTime(String endTime) { this.endTime = endTime; return this; } public String getEndTime() { return this.endTime; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setEndTimestamp(Long endTimestamp) { this.endTimestamp = endTimestamp; return this; } public Long getEndTimestamp() { return this.endTimestamp; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setGslb(Boolean gslb) { this.gslb = gslb; return this; } public Boolean getGslb() { return this.gslb; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setISPLines(String ISPLines) { this.ISPLines = ISPLines; return this; } public String getISPLines() { return this.ISPLines; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setISPRegionLines(String ISPRegionLines) { this.ISPRegionLines = ISPRegionLines; return this; } public String getISPRegionLines() { return this.ISPRegionLines; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setInBlackHole(Boolean inBlackHole) { this.inBlackHole = inBlackHole; return this; } public Boolean getInBlackHole() { return this.inBlackHole; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setInClean(Boolean inClean) { this.inClean = inClean; return this; } public Boolean getInClean() { return this.inClean; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setMonitorFrequency(Long monitorFrequency) { this.monitorFrequency = monitorFrequency; return this; } public Long getMonitorFrequency() { return this.monitorFrequency; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setMonitorNodeCount(Long monitorNodeCount) { this.monitorNodeCount = monitorNodeCount; return this; } public Long getMonitorNodeCount() { return this.monitorNodeCount; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setMonitorTaskCount(Long monitorTaskCount) { this.monitorTaskCount = monitorTaskCount; return this; } public Long getMonitorTaskCount() { return this.monitorTaskCount; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setOverseaDDosDefendFlow(Long overseaDDosDefendFlow) { this.overseaDDosDefendFlow = overseaDDosDefendFlow; return this; } public Long getOverseaDDosDefendFlow() { return this.overseaDDosDefendFlow; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setOverseaLine(String overseaLine) { this.overseaLine = overseaLine; return this; } public String getOverseaLine() { return this.overseaLine; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setPaymentType(String paymentType) { this.paymentType = paymentType; return this; } public String getPaymentType() { return this.paymentType; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setRegionLines(Boolean regionLines) { this.regionLines = regionLines; return this; } public Boolean getRegionLines() { return this.regionLines; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setSearchEngineLines(String searchEngineLines) { this.searchEngineLines = searchEngineLines; return this; } public String getSearchEngineLines() { return this.searchEngineLines; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setStartTime(String startTime) { this.startTime = startTime; return this; } public String getStartTime() { return this.startTime; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setStartTimestamp(Long startTimestamp) { this.startTimestamp = startTimestamp; return this; } public Long getStartTimestamp() { return this.startTimestamp; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setSubDomainLevel(Long subDomainLevel) { this.subDomainLevel = subDomainLevel; return this; } public Long getSubDomainLevel() { return this.subDomainLevel; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setTTLMinValue(Long TTLMinValue) { this.TTLMinValue = TTLMinValue; return this; } public Long getTTLMinValue() { return this.TTLMinValue; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setURLForwardCount(Long URLForwardCount) { this.URLForwardCount = URLForwardCount; return this; } public Long getURLForwardCount() { return this.URLForwardCount; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setVersionCode(String versionCode) { this.versionCode = versionCode; return this; } public String getVersionCode() { return this.versionCode; } public DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct setVersionName(String versionName) { this.versionName = versionName; return this; } public String getVersionName() { return this.versionName; } } public static class DescribeDnsProductInstancesResponseBodyDnsProducts extends TeaModel { @NameInMap("DnsProduct") public java.util.List<DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct> dnsProduct; public static DescribeDnsProductInstancesResponseBodyDnsProducts build(java.util.Map<String, ?> map) throws Exception { DescribeDnsProductInstancesResponseBodyDnsProducts self = new DescribeDnsProductInstancesResponseBodyDnsProducts(); return TeaModel.build(map, self); } public DescribeDnsProductInstancesResponseBodyDnsProducts setDnsProduct(java.util.List<DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct> dnsProduct) { this.dnsProduct = dnsProduct; return this; } public java.util.List<DescribeDnsProductInstancesResponseBodyDnsProductsDnsProduct> getDnsProduct() { return this.dnsProduct; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDohAccountStatisticsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDohAccountStatisticsRequest extends TeaModel { /** * <p>The end of the time range to query. Specify the time in the YYYY-MM-DD format.</p> * <p>The default value is the day when you perform the operation.</p> * * <strong>example:</strong> * <p>2019-07-04</p> */ @NameInMap("EndDate") public String endDate; /** * <p>The language type.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The beginning of the time range to query. Specify the time in the YYYY-MM-DD format.</p> * <p>You can query only the DNS records of the latest 90 days.<code>The value of StartDate must be greater than or equal to the difference between the current date and 90</code>.</p> * * <strong>example:</strong> * <p>2019-07-04</p> */ @NameInMap("StartDate") public String startDate; public static DescribeDohAccountStatisticsRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDohAccountStatisticsRequest self = new DescribeDohAccountStatisticsRequest(); return TeaModel.build(map, self); } public DescribeDohAccountStatisticsRequest setEndDate(String endDate) { this.endDate = endDate; return this; } public String getEndDate() { return this.endDate; } public DescribeDohAccountStatisticsRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDohAccountStatisticsRequest setStartDate(String startDate) { this.startDate = startDate; return this; } public String getStartDate() { return this.startDate; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDohAccountStatisticsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDohAccountStatisticsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDohAccountStatisticsResponseBody body; public static DescribeDohAccountStatisticsResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDohAccountStatisticsResponse self = new DescribeDohAccountStatisticsResponse(); return TeaModel.build(map, self); } public DescribeDohAccountStatisticsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDohAccountStatisticsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDohAccountStatisticsResponse setBody(DescribeDohAccountStatisticsResponseBody body) { this.body = body; return this; } public DescribeDohAccountStatisticsResponseBody 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/DescribeDohAccountStatisticsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDohAccountStatisticsResponseBody extends TeaModel { /** * <p>The ID of the request.</p> * * <strong>example:</strong> * <p>0F32959D-417B-4D66-8463-68606605E3E2</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The statistics list.</p> */ @NameInMap("Statistics") public java.util.List<DescribeDohAccountStatisticsResponseBodyStatistics> statistics; public static DescribeDohAccountStatisticsResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDohAccountStatisticsResponseBody self = new DescribeDohAccountStatisticsResponseBody(); return TeaModel.build(map, self); } public DescribeDohAccountStatisticsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDohAccountStatisticsResponseBody setStatistics(java.util.List<DescribeDohAccountStatisticsResponseBodyStatistics> statistics) { this.statistics = statistics; return this; } public java.util.List<DescribeDohAccountStatisticsResponseBodyStatistics> getStatistics() { return this.statistics; } public static class DescribeDohAccountStatisticsResponseBodyStatistics extends TeaModel { /** * <p>The timestamp.</p> * * <strong>example:</strong> * <p>1544976000000</p> */ @NameInMap("Timestamp") public Long timestamp; /** * <p>The total number of requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("TotalCount") public Long totalCount; /** * <p>The number of IPv4-based HTTP requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("V4HttpCount") public Long v4HttpCount; /** * <p>The number of IPv4-based HTTPS requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("V4HttpsCount") public Long v4HttpsCount; /** * <p>The number of IPv6-based HTTP requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("V6HttpCount") public Long v6HttpCount; /** * <p>The number of IPv6-based HTTPS requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("V6HttpsCount") public Long v6HttpsCount; public static DescribeDohAccountStatisticsResponseBodyStatistics build(java.util.Map<String, ?> map) throws Exception { DescribeDohAccountStatisticsResponseBodyStatistics self = new DescribeDohAccountStatisticsResponseBodyStatistics(); return TeaModel.build(map, self); } public DescribeDohAccountStatisticsResponseBodyStatistics setTimestamp(Long timestamp) { this.timestamp = timestamp; return this; } public Long getTimestamp() { return this.timestamp; } public DescribeDohAccountStatisticsResponseBodyStatistics setTotalCount(Long totalCount) { this.totalCount = totalCount; return this; } public Long getTotalCount() { return this.totalCount; } public DescribeDohAccountStatisticsResponseBodyStatistics setV4HttpCount(Long v4HttpCount) { this.v4HttpCount = v4HttpCount; return this; } public Long getV4HttpCount() { return this.v4HttpCount; } public DescribeDohAccountStatisticsResponseBodyStatistics setV4HttpsCount(Long v4HttpsCount) { this.v4HttpsCount = v4HttpsCount; return this; } public Long getV4HttpsCount() { return this.v4HttpsCount; } public DescribeDohAccountStatisticsResponseBodyStatistics setV6HttpCount(Long v6HttpCount) { this.v6HttpCount = v6HttpCount; return this; } public Long getV6HttpCount() { return this.v6HttpCount; } public DescribeDohAccountStatisticsResponseBodyStatistics setV6HttpsCount(Long v6HttpsCount) { this.v6HttpsCount = v6HttpsCount; return this; } public Long getV6HttpsCount() { return this.v6HttpsCount; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDohDomainStatisticsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDohDomainStatisticsRequest 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 end of the time range to query. Specify the time in the YYYY-MM-DD format.</p> * <p>The default value is the day when you perform the operation.</p> * * <strong>example:</strong> * <p>2019-07-04</p> */ @NameInMap("EndDate") public String endDate; /** * <p>The language type.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The beginning of the time range to query. Specify the time in the YYYY-MM-DD format.</p> * <p>You can query only the DNS records of the latest 90 days. <code>The value of StartDate must be greater than or equal to the difference between the current date and 90</code>.</p> * * <strong>example:</strong> * <p>2019-07-04</p> */ @NameInMap("StartDate") public String startDate; public static DescribeDohDomainStatisticsRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDohDomainStatisticsRequest self = new DescribeDohDomainStatisticsRequest(); return TeaModel.build(map, self); } public DescribeDohDomainStatisticsRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeDohDomainStatisticsRequest setEndDate(String endDate) { this.endDate = endDate; return this; } public String getEndDate() { return this.endDate; } public DescribeDohDomainStatisticsRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDohDomainStatisticsRequest setStartDate(String startDate) { this.startDate = startDate; return this; } public String getStartDate() { return this.startDate; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDohDomainStatisticsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDohDomainStatisticsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDohDomainStatisticsResponseBody body; public static DescribeDohDomainStatisticsResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDohDomainStatisticsResponse self = new DescribeDohDomainStatisticsResponse(); return TeaModel.build(map, self); } public DescribeDohDomainStatisticsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDohDomainStatisticsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDohDomainStatisticsResponse setBody(DescribeDohDomainStatisticsResponseBody body) { this.body = body; return this; } public DescribeDohDomainStatisticsResponseBody 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/DescribeDohDomainStatisticsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDohDomainStatisticsResponseBody extends TeaModel { /** * <p>The ID of the request.</p> * * <strong>example:</strong> * <p>0F32959D-417B-4D66-8463-68606605E3E2</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The statistics list.</p> */ @NameInMap("Statistics") public java.util.List<DescribeDohDomainStatisticsResponseBodyStatistics> statistics; public static DescribeDohDomainStatisticsResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDohDomainStatisticsResponseBody self = new DescribeDohDomainStatisticsResponseBody(); return TeaModel.build(map, self); } public DescribeDohDomainStatisticsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDohDomainStatisticsResponseBody setStatistics(java.util.List<DescribeDohDomainStatisticsResponseBodyStatistics> statistics) { this.statistics = statistics; return this; } public java.util.List<DescribeDohDomainStatisticsResponseBodyStatistics> getStatistics() { return this.statistics; } public static class DescribeDohDomainStatisticsResponseBodyStatistics extends TeaModel { /** * <p>The timestamp.</p> * * <strong>example:</strong> * <p>1544976000000</p> */ @NameInMap("Timestamp") public Long timestamp; /** * <p>The total number of requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("TotalCount") public Long totalCount; /** * <p>The number of IPv4-based HTTP requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("V4HttpCount") public Long v4HttpCount; /** * <p>The number of IPv4-based HTTPS requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("V4HttpsCount") public Long v4HttpsCount; /** * <p>The number of IPv6-based HTTP requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("V6HttpCount") public Long v6HttpCount; /** * <p>The number of IPv6-based HTTPS requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("V6HttpsCount") public Long v6HttpsCount; public static DescribeDohDomainStatisticsResponseBodyStatistics build(java.util.Map<String, ?> map) throws Exception { DescribeDohDomainStatisticsResponseBodyStatistics self = new DescribeDohDomainStatisticsResponseBodyStatistics(); return TeaModel.build(map, self); } public DescribeDohDomainStatisticsResponseBodyStatistics setTimestamp(Long timestamp) { this.timestamp = timestamp; return this; } public Long getTimestamp() { return this.timestamp; } public DescribeDohDomainStatisticsResponseBodyStatistics setTotalCount(Long totalCount) { this.totalCount = totalCount; return this; } public Long getTotalCount() { return this.totalCount; } public DescribeDohDomainStatisticsResponseBodyStatistics setV4HttpCount(Long v4HttpCount) { this.v4HttpCount = v4HttpCount; return this; } public Long getV4HttpCount() { return this.v4HttpCount; } public DescribeDohDomainStatisticsResponseBodyStatistics setV4HttpsCount(Long v4HttpsCount) { this.v4HttpsCount = v4HttpsCount; return this; } public Long getV4HttpsCount() { return this.v4HttpsCount; } public DescribeDohDomainStatisticsResponseBodyStatistics setV6HttpCount(Long v6HttpCount) { this.v6HttpCount = v6HttpCount; return this; } public Long getV6HttpCount() { return this.v6HttpCount; } public DescribeDohDomainStatisticsResponseBodyStatistics setV6HttpsCount(Long v6HttpsCount) { this.v6HttpsCount = v6HttpsCount; return this; } public Long getV6HttpsCount() { return this.v6HttpsCount; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDohDomainStatisticsSummaryRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDohDomainStatisticsSummaryRequest extends TeaModel { /** * <p>The domain name.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The end of the time range to query. Specify the time in the YYYY-MM-DD format.</p> * <p>The default value is the day when you perform the operation.</p> * * <strong>example:</strong> * <p>2019-07-04</p> */ @NameInMap("EndDate") public String endDate; /** * <p>The language type.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The number of the page to return. Pages start from page 1. Default value: 1.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of entries to return on each page. Maximum value: 100. Default value: 20.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>The beginning of the time range to query. Specify the time in the YYYY-MM-DD format.</p> * <p>You can query only the DNS records of the last 90 days. <code>The value of StartDate must be greater than or equal to the difference between the current date and 90</code>.</p> * * <strong>example:</strong> * <p>2019-07-04</p> */ @NameInMap("StartDate") public String startDate; public static DescribeDohDomainStatisticsSummaryRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDohDomainStatisticsSummaryRequest self = new DescribeDohDomainStatisticsSummaryRequest(); return TeaModel.build(map, self); } public DescribeDohDomainStatisticsSummaryRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeDohDomainStatisticsSummaryRequest setEndDate(String endDate) { this.endDate = endDate; return this; } public String getEndDate() { return this.endDate; } public DescribeDohDomainStatisticsSummaryRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDohDomainStatisticsSummaryRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public DescribeDohDomainStatisticsSummaryRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public DescribeDohDomainStatisticsSummaryRequest setStartDate(String startDate) { this.startDate = startDate; return this; } public String getStartDate() { return this.startDate; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDohDomainStatisticsSummaryResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDohDomainStatisticsSummaryResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDohDomainStatisticsSummaryResponseBody body; public static DescribeDohDomainStatisticsSummaryResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDohDomainStatisticsSummaryResponse self = new DescribeDohDomainStatisticsSummaryResponse(); return TeaModel.build(map, self); } public DescribeDohDomainStatisticsSummaryResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDohDomainStatisticsSummaryResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDohDomainStatisticsSummaryResponse setBody(DescribeDohDomainStatisticsSummaryResponseBody body) { this.body = body; return this; } public DescribeDohDomainStatisticsSummaryResponseBody 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/DescribeDohDomainStatisticsSummaryResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDohDomainStatisticsSummaryResponseBody extends TeaModel { /** * <p>The page number of the returned page.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of entries returned per page.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>The ID of the request.</p> * * <strong>example:</strong> * <p>0F32959D-417B-4D66-8463-68606605E3E2</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The statistics list.</p> */ @NameInMap("Statistics") public java.util.List<DescribeDohDomainStatisticsSummaryResponseBodyStatistics> statistics; /** * <p>The total number of entries returned.</p> * * <strong>example:</strong> * <p>300</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <p>The total number of pages returned.</p> * * <strong>example:</strong> * <p>50</p> */ @NameInMap("TotalPages") public Integer totalPages; public static DescribeDohDomainStatisticsSummaryResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDohDomainStatisticsSummaryResponseBody self = new DescribeDohDomainStatisticsSummaryResponseBody(); return TeaModel.build(map, self); } public DescribeDohDomainStatisticsSummaryResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public DescribeDohDomainStatisticsSummaryResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public DescribeDohDomainStatisticsSummaryResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDohDomainStatisticsSummaryResponseBody setStatistics(java.util.List<DescribeDohDomainStatisticsSummaryResponseBodyStatistics> statistics) { this.statistics = statistics; return this; } public java.util.List<DescribeDohDomainStatisticsSummaryResponseBodyStatistics> getStatistics() { return this.statistics; } public DescribeDohDomainStatisticsSummaryResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public DescribeDohDomainStatisticsSummaryResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class DescribeDohDomainStatisticsSummaryResponseBodyStatistics extends TeaModel { /** * <p>The domain name.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The number of HTTP requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("HttpCount") public Long httpCount; /** * <p>The number of HTTPS requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("HttpsCount") public Long httpsCount; /** * <p>The number of IP addresses.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("IpCount") public Long ipCount; /** * <p>The total number of requests.</p> * * <strong>example:</strong> * <p>14141592653</p> */ @NameInMap("TotalCount") public Long totalCount; /** * <p>The number of IPv4-based HTTP requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("V4HttpCount") public Long v4HttpCount; /** * <p>The number of IPv4-based HTTPS requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("V4HttpsCount") public Long v4HttpsCount; /** * <p>The number of IPv6-based HTTP requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("V6HttpCount") public Long v6HttpCount; /** * <p>The number of IPv6-based HTTPS requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("V6HttpsCount") public Long v6HttpsCount; public static DescribeDohDomainStatisticsSummaryResponseBodyStatistics build(java.util.Map<String, ?> map) throws Exception { DescribeDohDomainStatisticsSummaryResponseBodyStatistics self = new DescribeDohDomainStatisticsSummaryResponseBodyStatistics(); return TeaModel.build(map, self); } public DescribeDohDomainStatisticsSummaryResponseBodyStatistics setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeDohDomainStatisticsSummaryResponseBodyStatistics setHttpCount(Long httpCount) { this.httpCount = httpCount; return this; } public Long getHttpCount() { return this.httpCount; } public DescribeDohDomainStatisticsSummaryResponseBodyStatistics setHttpsCount(Long httpsCount) { this.httpsCount = httpsCount; return this; } public Long getHttpsCount() { return this.httpsCount; } public DescribeDohDomainStatisticsSummaryResponseBodyStatistics setIpCount(Long ipCount) { this.ipCount = ipCount; return this; } public Long getIpCount() { return this.ipCount; } public DescribeDohDomainStatisticsSummaryResponseBodyStatistics setTotalCount(Long totalCount) { this.totalCount = totalCount; return this; } public Long getTotalCount() { return this.totalCount; } public DescribeDohDomainStatisticsSummaryResponseBodyStatistics setV4HttpCount(Long v4HttpCount) { this.v4HttpCount = v4HttpCount; return this; } public Long getV4HttpCount() { return this.v4HttpCount; } public DescribeDohDomainStatisticsSummaryResponseBodyStatistics setV4HttpsCount(Long v4HttpsCount) { this.v4HttpsCount = v4HttpsCount; return this; } public Long getV4HttpsCount() { return this.v4HttpsCount; } public DescribeDohDomainStatisticsSummaryResponseBodyStatistics setV6HttpCount(Long v6HttpCount) { this.v6HttpCount = v6HttpCount; return this; } public Long getV6HttpCount() { return this.v6HttpCount; } public DescribeDohDomainStatisticsSummaryResponseBodyStatistics setV6HttpsCount(Long v6HttpsCount) { this.v6HttpsCount = v6HttpsCount; return this; } public Long getV6HttpsCount() { return this.v6HttpsCount; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDohSubDomainStatisticsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDohSubDomainStatisticsRequest extends TeaModel { /** * <p>The end of the time range to query. Specify the time in the YYYY-MM-DD format.</p> * <p>The default value is the day when you perform the operation.</p> * * <strong>example:</strong> * <p>2019-07-04</p> */ @NameInMap("EndDate") public String endDate; /** * <p>The language type.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The beginning of the time range to query. Specify the time in the YYYY-MM-DD format.</p> * <p>You can query only the DNS records of the latest 90 days. <code>The value of StartDate must be greater than or equal to the difference between the current date and 90</code>.</p> * * <strong>example:</strong> * <p>2019-07-04</p> */ @NameInMap("StartDate") public String startDate; /** * <p>The subdomain whose statistics you want to query.</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; public static DescribeDohSubDomainStatisticsRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDohSubDomainStatisticsRequest self = new DescribeDohSubDomainStatisticsRequest(); return TeaModel.build(map, self); } public DescribeDohSubDomainStatisticsRequest setEndDate(String endDate) { this.endDate = endDate; return this; } public String getEndDate() { return this.endDate; } public DescribeDohSubDomainStatisticsRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDohSubDomainStatisticsRequest setStartDate(String startDate) { this.startDate = startDate; return this; } public String getStartDate() { return this.startDate; } public DescribeDohSubDomainStatisticsRequest setSubDomain(String subDomain) { this.subDomain = subDomain; return this; } public String getSubDomain() { return this.subDomain; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDohSubDomainStatisticsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDohSubDomainStatisticsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDohSubDomainStatisticsResponseBody body; public static DescribeDohSubDomainStatisticsResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDohSubDomainStatisticsResponse self = new DescribeDohSubDomainStatisticsResponse(); return TeaModel.build(map, self); } public DescribeDohSubDomainStatisticsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDohSubDomainStatisticsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDohSubDomainStatisticsResponse setBody(DescribeDohSubDomainStatisticsResponseBody body) { this.body = body; return this; } public DescribeDohSubDomainStatisticsResponseBody 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/DescribeDohSubDomainStatisticsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDohSubDomainStatisticsResponseBody extends TeaModel { /** * <p>The ID of the request.</p> * * <strong>example:</strong> * <p>0F32959D-417B-4D66-8463-68606605E3E2</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The statistics list.</p> */ @NameInMap("Statistics") public java.util.List<DescribeDohSubDomainStatisticsResponseBodyStatistics> statistics; public static DescribeDohSubDomainStatisticsResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDohSubDomainStatisticsResponseBody self = new DescribeDohSubDomainStatisticsResponseBody(); return TeaModel.build(map, self); } public DescribeDohSubDomainStatisticsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDohSubDomainStatisticsResponseBody setStatistics(java.util.List<DescribeDohSubDomainStatisticsResponseBodyStatistics> statistics) { this.statistics = statistics; return this; } public java.util.List<DescribeDohSubDomainStatisticsResponseBodyStatistics> getStatistics() { return this.statistics; } public static class DescribeDohSubDomainStatisticsResponseBodyStatistics extends TeaModel { /** * <p>The timestamp.</p> * * <strong>example:</strong> * <p>1544976000000</p> */ @NameInMap("Timestamp") public Long timestamp; /** * <p>The total number of requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("TotalCount") public Long totalCount; /** * <p>The number of IPv4-based HTTP requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("V4HttpCount") public Long v4HttpCount; /** * <p>The number of IPv4-based HTTPS requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("V4HttpsCount") public Long v4HttpsCount; /** * <p>The number of IPv6-based HTTP requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("V6HttpCount") public Long v6HttpCount; /** * <p>The number of IPv6-based HTTPS requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("V6HttpsCount") public Long v6HttpsCount; public static DescribeDohSubDomainStatisticsResponseBodyStatistics build(java.util.Map<String, ?> map) throws Exception { DescribeDohSubDomainStatisticsResponseBodyStatistics self = new DescribeDohSubDomainStatisticsResponseBodyStatistics(); return TeaModel.build(map, self); } public DescribeDohSubDomainStatisticsResponseBodyStatistics setTimestamp(Long timestamp) { this.timestamp = timestamp; return this; } public Long getTimestamp() { return this.timestamp; } public DescribeDohSubDomainStatisticsResponseBodyStatistics setTotalCount(Long totalCount) { this.totalCount = totalCount; return this; } public Long getTotalCount() { return this.totalCount; } public DescribeDohSubDomainStatisticsResponseBodyStatistics setV4HttpCount(Long v4HttpCount) { this.v4HttpCount = v4HttpCount; return this; } public Long getV4HttpCount() { return this.v4HttpCount; } public DescribeDohSubDomainStatisticsResponseBodyStatistics setV4HttpsCount(Long v4HttpsCount) { this.v4HttpsCount = v4HttpsCount; return this; } public Long getV4HttpsCount() { return this.v4HttpsCount; } public DescribeDohSubDomainStatisticsResponseBodyStatistics setV6HttpCount(Long v6HttpCount) { this.v6HttpCount = v6HttpCount; return this; } public Long getV6HttpCount() { return this.v6HttpCount; } public DescribeDohSubDomainStatisticsResponseBodyStatistics setV6HttpsCount(Long v6HttpsCount) { this.v6HttpsCount = v6HttpsCount; return this; } public Long getV6HttpsCount() { return this.v6HttpsCount; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDohSubDomainStatisticsSummaryRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDohSubDomainStatisticsSummaryRequest extends TeaModel { /** * <p>The domain name.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The end of the time range to query. Specify the time in the YYYY-MM-DD format.</p> * <p>The default value is the day when you query the required data.</p> * * <strong>example:</strong> * <p>2019-07-04</p> */ @NameInMap("EndDate") public String endDate; /** * <p>The language type.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The number of the page to return. Pages start from page 1. Default value: 1.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of entries to return on each page. Maximum value: 100. Default value: 20.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>The beginning of the time range to query. Specify the time in the YYYY-MM-DD format.</p> * <p>You can query only the DNS records of the last 90 days. <code>The value of StartDate must be greater than or equal to the difference between the current date and 90</code>.</p> * * <strong>example:</strong> * <p>2019-07-04</p> */ @NameInMap("StartDate") public String startDate; /** * <p>The subdomain.</p> * * <strong>example:</strong> * <p><a href="http://www.example.com">www.example.com</a></p> */ @NameInMap("SubDomain") public String subDomain; public static DescribeDohSubDomainStatisticsSummaryRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDohSubDomainStatisticsSummaryRequest self = new DescribeDohSubDomainStatisticsSummaryRequest(); return TeaModel.build(map, self); } public DescribeDohSubDomainStatisticsSummaryRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeDohSubDomainStatisticsSummaryRequest setEndDate(String endDate) { this.endDate = endDate; return this; } public String getEndDate() { return this.endDate; } public DescribeDohSubDomainStatisticsSummaryRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDohSubDomainStatisticsSummaryRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public DescribeDohSubDomainStatisticsSummaryRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public DescribeDohSubDomainStatisticsSummaryRequest setStartDate(String startDate) { this.startDate = startDate; return this; } public String getStartDate() { return this.startDate; } public DescribeDohSubDomainStatisticsSummaryRequest setSubDomain(String subDomain) { this.subDomain = subDomain; return this; } public String getSubDomain() { return this.subDomain; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDohSubDomainStatisticsSummaryResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDohSubDomainStatisticsSummaryResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDohSubDomainStatisticsSummaryResponseBody body; public static DescribeDohSubDomainStatisticsSummaryResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDohSubDomainStatisticsSummaryResponse self = new DescribeDohSubDomainStatisticsSummaryResponse(); return TeaModel.build(map, self); } public DescribeDohSubDomainStatisticsSummaryResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDohSubDomainStatisticsSummaryResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDohSubDomainStatisticsSummaryResponse setBody(DescribeDohSubDomainStatisticsSummaryResponseBody body) { this.body = body; return this; } public DescribeDohSubDomainStatisticsSummaryResponseBody 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/DescribeDohSubDomainStatisticsSummaryResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDohSubDomainStatisticsSummaryResponseBody extends TeaModel { /** * <p>The page number of the returned page.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of entries returned per page.</p> * * <strong>example:</strong> * <p>10</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>The ID of the request.</p> * * <strong>example:</strong> * <p>0F32959D-417B-4D66-8463-68606605E3E2</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The statistics list.</p> */ @NameInMap("Statistics") public java.util.List<DescribeDohSubDomainStatisticsSummaryResponseBodyStatistics> statistics; /** * <p>Total number of entries returned.</p> * * <strong>example:</strong> * <p>100</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <p>Total number of pages returned.</p> * * <strong>example:</strong> * <p>50</p> */ @NameInMap("TotalPages") public Integer totalPages; public static DescribeDohSubDomainStatisticsSummaryResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDohSubDomainStatisticsSummaryResponseBody self = new DescribeDohSubDomainStatisticsSummaryResponseBody(); return TeaModel.build(map, self); } public DescribeDohSubDomainStatisticsSummaryResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public DescribeDohSubDomainStatisticsSummaryResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public DescribeDohSubDomainStatisticsSummaryResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDohSubDomainStatisticsSummaryResponseBody setStatistics(java.util.List<DescribeDohSubDomainStatisticsSummaryResponseBodyStatistics> statistics) { this.statistics = statistics; return this; } public java.util.List<DescribeDohSubDomainStatisticsSummaryResponseBodyStatistics> getStatistics() { return this.statistics; } public DescribeDohSubDomainStatisticsSummaryResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public DescribeDohSubDomainStatisticsSummaryResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class DescribeDohSubDomainStatisticsSummaryResponseBodyStatistics extends TeaModel { /** * <p>The number of HTTP requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("HttpCount") public Long httpCount; /** * <p>The number of HTTPS requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("HttpsCount") public Long httpsCount; /** * <p>The number of IP addresses.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("IpCount") public Long ipCount; /** * <p>The subdomain.</p> * * <strong>example:</strong> * <p><a href="http://www.example.com">www.example.com</a></p> */ @NameInMap("SubDomain") public String subDomain; /** * <p>Total number of requests.</p> * * <strong>example:</strong> * <p>14141592653</p> */ @NameInMap("TotalCount") public Long totalCount; /** * <p>The number of IPv4-based HTTP requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("V4HttpCount") public Long v4HttpCount; /** * <p>The number of IPv4-based HTTPS requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("V4HttpsCount") public Long v4HttpsCount; /** * <p>The number of IPv6-based HTTP requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("V6HttpCount") public Long v6HttpCount; /** * <p>The number of IPv6-based HTTPS requests.</p> * * <strong>example:</strong> * <p>3141592653</p> */ @NameInMap("V6HttpsCount") public Long v6HttpsCount; public static DescribeDohSubDomainStatisticsSummaryResponseBodyStatistics build(java.util.Map<String, ?> map) throws Exception { DescribeDohSubDomainStatisticsSummaryResponseBodyStatistics self = new DescribeDohSubDomainStatisticsSummaryResponseBodyStatistics(); return TeaModel.build(map, self); } public DescribeDohSubDomainStatisticsSummaryResponseBodyStatistics setHttpCount(Long httpCount) { this.httpCount = httpCount; return this; } public Long getHttpCount() { return this.httpCount; } public DescribeDohSubDomainStatisticsSummaryResponseBodyStatistics setHttpsCount(Long httpsCount) { this.httpsCount = httpsCount; return this; } public Long getHttpsCount() { return this.httpsCount; } public DescribeDohSubDomainStatisticsSummaryResponseBodyStatistics setIpCount(Long ipCount) { this.ipCount = ipCount; return this; } public Long getIpCount() { return this.ipCount; } public DescribeDohSubDomainStatisticsSummaryResponseBodyStatistics setSubDomain(String subDomain) { this.subDomain = subDomain; return this; } public String getSubDomain() { return this.subDomain; } public DescribeDohSubDomainStatisticsSummaryResponseBodyStatistics setTotalCount(Long totalCount) { this.totalCount = totalCount; return this; } public Long getTotalCount() { return this.totalCount; } public DescribeDohSubDomainStatisticsSummaryResponseBodyStatistics setV4HttpCount(Long v4HttpCount) { this.v4HttpCount = v4HttpCount; return this; } public Long getV4HttpCount() { return this.v4HttpCount; } public DescribeDohSubDomainStatisticsSummaryResponseBodyStatistics setV4HttpsCount(Long v4HttpsCount) { this.v4HttpsCount = v4HttpsCount; return this; } public Long getV4HttpsCount() { return this.v4HttpsCount; } public DescribeDohSubDomainStatisticsSummaryResponseBodyStatistics setV6HttpCount(Long v6HttpCount) { this.v6HttpCount = v6HttpCount; return this; } public Long getV6HttpCount() { return this.v6HttpCount; } public DescribeDohSubDomainStatisticsSummaryResponseBodyStatistics setV6HttpsCount(Long v6HttpsCount) { this.v6HttpsCount = v6HttpsCount; return this; } public Long getV6HttpsCount() { return this.v6HttpsCount; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDohUserInfoRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDohUserInfoRequest extends TeaModel { /** * <p>The end time for the query. Format: YYYY-MM-DD</p> * <p>If you do not specify this parameter, the default value is the time when you perform the query.</p> * * <strong>example:</strong> * <p>2019-07-04</p> */ @NameInMap("EndDate") public String endDate; /** * <p>The language in which you want the values of some response parameters to be returned. These response parameters support multiple languages.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The start time for the query. Format: YYYY-MM-DD</p> * <p>You can query the user information of the last 90 days only. <code>Set the parameter to a value no earlier than 90 days from the current time</code>.</p> * * <strong>example:</strong> * <p>2019-07-04</p> */ @NameInMap("StartDate") public String startDate; public static DescribeDohUserInfoRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDohUserInfoRequest self = new DescribeDohUserInfoRequest(); return TeaModel.build(map, self); } public DescribeDohUserInfoRequest setEndDate(String endDate) { this.endDate = endDate; return this; } public String getEndDate() { return this.endDate; } public DescribeDohUserInfoRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDohUserInfoRequest setStartDate(String startDate) { this.startDate = startDate; return this; } public String getStartDate() { return this.startDate; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDohUserInfoResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDohUserInfoResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDohUserInfoResponseBody body; public static DescribeDohUserInfoResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDohUserInfoResponse self = new DescribeDohUserInfoResponse(); return TeaModel.build(map, self); } public DescribeDohUserInfoResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDohUserInfoResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDohUserInfoResponse setBody(DescribeDohUserInfoResponseBody body) { this.body = body; return this; } public DescribeDohUserInfoResponseBody 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/DescribeDohUserInfoResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDohUserInfoResponseBody extends TeaModel { /** * <p>The number of accessed domains.</p> * * <strong>example:</strong> * <p>123</p> */ @NameInMap("DomainCount") public Integer domainCount; /** * <p>The ID of the Alibaba Cloud public DNS user.</p> * * <strong>example:</strong> * <p>12345678</p> */ @NameInMap("PdnsId") public Long pdnsId; /** * <p>The ID of the request.</p> * * <strong>example:</strong> * <p>0F32959D-417B-4D66-8463-68606605E3E2</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The number of accessed subdomains.</p> * * <strong>example:</strong> * <p>123</p> */ @NameInMap("SubDomainCount") public Integer subDomainCount; public static DescribeDohUserInfoResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDohUserInfoResponseBody self = new DescribeDohUserInfoResponseBody(); return TeaModel.build(map, self); } public DescribeDohUserInfoResponseBody setDomainCount(Integer domainCount) { this.domainCount = domainCount; return this; } public Integer getDomainCount() { return this.domainCount; } public DescribeDohUserInfoResponseBody setPdnsId(Long pdnsId) { this.pdnsId = pdnsId; return this; } public Long getPdnsId() { return this.pdnsId; } public DescribeDohUserInfoResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDohUserInfoResponseBody setSubDomainCount(Integer subDomainCount) { this.subDomainCount = subDomainCount; return this; } public Integer getSubDomainCount() { return this.subDomainCount; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDomainDnssecInfoRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainDnssecInfoRequest extends TeaModel { /** * <p>The domain name. You can call the <a href="https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomains?spm=a2c63.p38356.help-menu-search-29697.d_0">DescribeDomains</a> operation to obtain 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 of the content within the request and response. Valid values:</p> * <ul> * <li><strong>zh</strong>: Chinese</li> * <li><strong>en</strong>: English</li> * </ul> * <p>Default value: <strong>zh</strong></p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; public static DescribeDomainDnssecInfoRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDomainDnssecInfoRequest self = new DescribeDomainDnssecInfoRequest(); return TeaModel.build(map, self); } public DescribeDomainDnssecInfoRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeDomainDnssecInfoRequest 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/DescribeDomainDnssecInfoResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainDnssecInfoResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDomainDnssecInfoResponseBody body; public static DescribeDomainDnssecInfoResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDomainDnssecInfoResponse self = new DescribeDomainDnssecInfoResponse(); return TeaModel.build(map, self); } public DescribeDomainDnssecInfoResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDomainDnssecInfoResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDomainDnssecInfoResponse setBody(DescribeDomainDnssecInfoResponseBody body) { this.body = body; return this; } public DescribeDomainDnssecInfoResponseBody 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/DescribeDomainDnssecInfoResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainDnssecInfoResponseBody extends TeaModel { /** * <p>The algorithm type. This parameter is returned if DNSSEC is enabled.</p> * * <strong>example:</strong> * <p>13</p> */ @NameInMap("Algorithm") public String algorithm; /** * <p>The digest. This parameter is returned if DNSSEC is enabled.</p> * * <strong>example:</strong> * <p>C1A0424B97A049F1F9B2EA139CC298533219668164E343BD21203ABC4608C02A</p> */ @NameInMap("Digest") public String digest; /** * <p>The digest type. This parameter is returned if DNSSEC is enabled.</p> * * <strong>example:</strong> * <p>SHA256</p> */ @NameInMap("DigestType") public String digestType; /** * <p>The domain name.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The delegation signer (DS) record. This parameter is returned if DNSSEC is enabled.</p> * * <strong>example:</strong> * <p>example.com. 3600 IN DS 2371 13 2 C1A0424B97A049F1F9B2EA139CC298533219668164E343BD21203ABC4608C02A</p> */ @NameInMap("DsRecord") public String dsRecord; /** * <p>The flag. This parameter is returned if DNSSEC is enabled.</p> * * <strong>example:</strong> * <p>257 (KSK)</p> */ @NameInMap("Flags") public String flags; /** * <p>The key tag. This parameter is returned if DNSSEC is enabled.</p> * * <strong>example:</strong> * <p>54931</p> */ @NameInMap("KeyTag") public String keyTag; /** * <p>The public key. This parameter is returned if DNSSEC is enabled.</p> * * <strong>example:</strong> * <p>mdsswUyr3DPW132mOi8V9xESWE8jTo0dxCjjnopKl+GqJxpVXckHAeF+KkxLbxILfDLUT0rAK9iUzy1L53eKGQ==</p> */ @NameInMap("PublicKey") public String publicKey; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The state of the DNSSEC. Valid values:</p> * <ul> * <li>ON</li> * <li>OFF</li> * </ul> * * <strong>example:</strong> * <p>ON</p> */ @NameInMap("Status") public String status; public static DescribeDomainDnssecInfoResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDomainDnssecInfoResponseBody self = new DescribeDomainDnssecInfoResponseBody(); return TeaModel.build(map, self); } public DescribeDomainDnssecInfoResponseBody setAlgorithm(String algorithm) { this.algorithm = algorithm; return this; } public String getAlgorithm() { return this.algorithm; } public DescribeDomainDnssecInfoResponseBody setDigest(String digest) { this.digest = digest; return this; } public String getDigest() { return this.digest; } public DescribeDomainDnssecInfoResponseBody setDigestType(String digestType) { this.digestType = digestType; return this; } public String getDigestType() { return this.digestType; } public DescribeDomainDnssecInfoResponseBody setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeDomainDnssecInfoResponseBody setDsRecord(String dsRecord) { this.dsRecord = dsRecord; return this; } public String getDsRecord() { return this.dsRecord; } public DescribeDomainDnssecInfoResponseBody setFlags(String flags) { this.flags = flags; return this; } public String getFlags() { return this.flags; } public DescribeDomainDnssecInfoResponseBody setKeyTag(String keyTag) { this.keyTag = keyTag; return this; } public String getKeyTag() { return this.keyTag; } public DescribeDomainDnssecInfoResponseBody setPublicKey(String publicKey) { this.publicKey = publicKey; return this; } public String getPublicKey() { return this.publicKey; } public DescribeDomainDnssecInfoResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDomainDnssecInfoResponseBody 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/DescribeDomainGroupsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainGroupsRequest extends TeaModel { /** * <p>The keyword of the domain name group for searches in %KeyWord% mode. The value is not case-sensitive.</p> * * <strong>example:</strong> * <p>Group</p> */ @NameInMap("KeyWord") public String keyWord; /** * <p>The language.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The page number. Pages start from page <strong>1</strong>. Default value: <strong>1</strong>.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Long pageNumber; /** * <p>The number of entries per page. Valid values: <strong>1 to 100</strong>. Default value: <strong>20</strong>.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Long pageSize; public static DescribeDomainGroupsRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDomainGroupsRequest self = new DescribeDomainGroupsRequest(); return TeaModel.build(map, self); } public DescribeDomainGroupsRequest setKeyWord(String keyWord) { this.keyWord = keyWord; return this; } public String getKeyWord() { return this.keyWord; } public DescribeDomainGroupsRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDomainGroupsRequest setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public DescribeDomainGroupsRequest setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long 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/DescribeDomainGroupsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainGroupsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDomainGroupsResponseBody body; public static DescribeDomainGroupsResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDomainGroupsResponse self = new DescribeDomainGroupsResponse(); return TeaModel.build(map, self); } public DescribeDomainGroupsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDomainGroupsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDomainGroupsResponse setBody(DescribeDomainGroupsResponseBody body) { this.body = body; return this; } public DescribeDomainGroupsResponseBody 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/DescribeDomainGroupsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainGroupsResponseBody extends TeaModel { /** * <p>The domain name groups.</p> */ @NameInMap("DomainGroups") public DescribeDomainGroupsResponseBodyDomainGroups domainGroups; /** * <p>The page number. Pages start from page <strong>1</strong>. Default value: <strong>1</strong>.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Long pageNumber; /** * <p>The number of entries per page. Valid values: <strong>1 to 100</strong>. Default value: <strong>20</strong>.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Long pageSize; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The total number of entries returned.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("TotalCount") public Long totalCount; public static DescribeDomainGroupsResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDomainGroupsResponseBody self = new DescribeDomainGroupsResponseBody(); return TeaModel.build(map, self); } public DescribeDomainGroupsResponseBody setDomainGroups(DescribeDomainGroupsResponseBodyDomainGroups domainGroups) { this.domainGroups = domainGroups; return this; } public DescribeDomainGroupsResponseBodyDomainGroups getDomainGroups() { return this.domainGroups; } public DescribeDomainGroupsResponseBody setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public DescribeDomainGroupsResponseBody setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public DescribeDomainGroupsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDomainGroupsResponseBody setTotalCount(Long totalCount) { this.totalCount = totalCount; return this; } public Long getTotalCount() { return this.totalCount; } public static class DescribeDomainGroupsResponseBodyDomainGroupsDomainGroup extends TeaModel { /** * <p>The number of domain name groups.</p> * * <strong>example:</strong> * <p>2</p> */ @NameInMap("DomainCount") public Long domainCount; /** * <p>The ID of the domain name group. Valid values:</p> * <ul> * <li>defaultGroup: the default group</li> * <li>If an empty string is returned, it indicates the group that contains all domain names.</li> * </ul> * * <strong>example:</strong> * <p>2223</p> */ @NameInMap("GroupId") public String groupId; /** * <p>The name of the domain name group.</p> * * <strong>example:</strong> * <p>MyGroup</p> */ @NameInMap("GroupName") public String groupName; public static DescribeDomainGroupsResponseBodyDomainGroupsDomainGroup build(java.util.Map<String, ?> map) throws Exception { DescribeDomainGroupsResponseBodyDomainGroupsDomainGroup self = new DescribeDomainGroupsResponseBodyDomainGroupsDomainGroup(); return TeaModel.build(map, self); } public DescribeDomainGroupsResponseBodyDomainGroupsDomainGroup setDomainCount(Long domainCount) { this.domainCount = domainCount; return this; } public Long getDomainCount() { return this.domainCount; } public DescribeDomainGroupsResponseBodyDomainGroupsDomainGroup setGroupId(String groupId) { this.groupId = groupId; return this; } public String getGroupId() { return this.groupId; } public DescribeDomainGroupsResponseBodyDomainGroupsDomainGroup setGroupName(String groupName) { this.groupName = groupName; return this; } public String getGroupName() { return this.groupName; } } public static class DescribeDomainGroupsResponseBodyDomainGroups extends TeaModel { @NameInMap("DomainGroup") public java.util.List<DescribeDomainGroupsResponseBodyDomainGroupsDomainGroup> domainGroup; public static DescribeDomainGroupsResponseBodyDomainGroups build(java.util.Map<String, ?> map) throws Exception { DescribeDomainGroupsResponseBodyDomainGroups self = new DescribeDomainGroupsResponseBodyDomainGroups(); return TeaModel.build(map, self); } public DescribeDomainGroupsResponseBodyDomainGroups setDomainGroup(java.util.List<DescribeDomainGroupsResponseBodyDomainGroupsDomainGroup> domainGroup) { this.domainGroup = domainGroup; return this; } public java.util.List<DescribeDomainGroupsResponseBodyDomainGroupsDomainGroup> getDomainGroup() { return this.domainGroup; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDomainInfoRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainInfoRequest extends TeaModel { /** * <p>The domain name.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>dns-example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The language type.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>Specifies whether detailed attributes are required. Default value: <strong>false</strong>, which indicates that detailed attributes are not returned.</p> * <p>If you set this parameter to <strong>true</strong>, the values of the following parameters are returned: LineType, MinTtl, RecordLineTreeJson, RecordLines, LineCode, LineDisplayName, LineName, RegionLines, and SlaveDns.</p> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("NeedDetailAttributes") public Boolean needDetailAttributes; public static DescribeDomainInfoRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDomainInfoRequest self = new DescribeDomainInfoRequest(); return TeaModel.build(map, self); } public DescribeDomainInfoRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeDomainInfoRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDomainInfoRequest setNeedDetailAttributes(Boolean needDetailAttributes) { this.needDetailAttributes = needDetailAttributes; return this; } public Boolean getNeedDetailAttributes() { return this.needDetailAttributes; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDomainInfoResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainInfoResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDomainInfoResponseBody body; public static DescribeDomainInfoResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDomainInfoResponse self = new DescribeDomainInfoResponse(); return TeaModel.build(map, self); } public DescribeDomainInfoResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDomainInfoResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDomainInfoResponse setBody(DescribeDomainInfoResponseBody body) { this.body = body; return this; } public DescribeDomainInfoResponseBody 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/DescribeDomainInfoResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainInfoResponseBody extends TeaModel { /** * <p>Indicates whether the domain name was registered in Alibaba Cloud.</p> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("AliDomain") public Boolean aliDomain; /** * <p>The available time to live (TTL) values that can be configured for the domain name. Available TTL values are not returned by default. If you want to query such information, set NeedDetailAttributes to true.</p> */ @NameInMap("AvailableTtls") public DescribeDomainInfoResponseBodyAvailableTtls availableTtls; /** * <p>The time when the domain name was created.</p> * * <strong>example:</strong> * <p>2015-12-12T09:23Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>The DNS servers that are used to resolve the domain name.</p> */ @NameInMap("DnsServers") public DescribeDomainInfoResponseBodyDnsServers dnsServers; /** * <p>The ID of the domain name.</p> * * <strong>example:</strong> * <p>00efd71a-770e-4255-b54e-6fe5659baffe</p> */ @NameInMap("DomainId") public String domainId; /** * <p>Indicates whether the DNS traffic analysis feature is enabled. Valid values:</p> */ @NameInMap("DomainLoggingSwitchStatus") public String domainLoggingSwitchStatus; /** * <p>The domain name.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The ID of the domain name group.</p> * * <strong>example:</strong> * <p>2223</p> */ @NameInMap("GroupId") public String groupId; /** * <p>The name of the domain name group.</p> * * <strong>example:</strong> * <p>mygroup</p> */ @NameInMap("GroupName") public String groupName; /** * <p>Indicates whether blackhole filtering was triggered.</p> * * <strong>example:</strong> * <p>false</p> */ @NameInMap("InBlackHole") public Boolean inBlackHole; /** * <p>Indicates whether traffic scrubbing was in progress.</p> * * <strong>example:</strong> * <p>false</p> */ @NameInMap("InClean") public Boolean inClean; /** * <p>The ID of the Alibaba Cloud DNS instance.</p> * * <strong>example:</strong> * <p>i-7bg</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>The type of the DNS request line.</p> * * <strong>example:</strong> * <p>region_province</p> */ @NameInMap("LineType") public String lineType; /** * <p>The minimum TTL value.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("MinTtl") public Long minTtl; /** * <p>The Punycode for the domain name. This parameter is returned only for Chinese domain names.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("PunyCode") public String punyCode; /** * <p>The tree-structure DNS request lines.</p> * * <strong>example:</strong> * <p>{&quot;default&quot;:{},&quot;unicom&quot;:{},&quot;telecom&quot;:{},&quot;mobile&quot;:{},&quot;edu&quot;:{},&quot;oversea&quot;:{},&quot;baidu&quot;:{},&quot;biying&quot;:{},&quot;google&quot;:{}}</p> */ @NameInMap("RecordLineTreeJson") public String recordLineTreeJson; /** * <p>The DNS request lines.</p> */ @NameInMap("RecordLines") public DescribeDomainInfoResponseBodyRecordLines recordLines; /** * <p>Indicates whether the DNS request lines are regional lines.</p> * * <strong>example:</strong> * <p>false</p> */ @NameInMap("RegionLines") public Boolean regionLines; /** * <p>The description.</p> * * <strong>example:</strong> * <p>remark</p> */ @NameInMap("Remark") public String remark; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The ID of the resource group.</p> * * <strong>example:</strong> * <p>rg-aek3dj3wvclgcxo</p> */ @NameInMap("ResourceGroupId") public String resourceGroupId; /** * <p>Indicates whether secondary DNS is supported.</p> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("SlaveDns") public Boolean slaveDns; /** * <p>Indicates whether the queried domain name is a hosted subdomain name. Valid values:</p> * <ul> * <li>true</li> * <li>false</li> * </ul> * * <strong>example:</strong> * <p>false</p> */ @NameInMap("SubDomain") public Boolean subDomain; /** * <p>The version ID of Alibaba Cloud DNS.</p> * * <strong>example:</strong> * <p>version1</p> */ @NameInMap("VersionCode") public String versionCode; /** * <p>The edition of Alibaba Cloud DNS.</p> */ @NameInMap("VersionName") public String versionName; public static DescribeDomainInfoResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDomainInfoResponseBody self = new DescribeDomainInfoResponseBody(); return TeaModel.build(map, self); } public DescribeDomainInfoResponseBody setAliDomain(Boolean aliDomain) { this.aliDomain = aliDomain; return this; } public Boolean getAliDomain() { return this.aliDomain; } public DescribeDomainInfoResponseBody setAvailableTtls(DescribeDomainInfoResponseBodyAvailableTtls availableTtls) { this.availableTtls = availableTtls; return this; } public DescribeDomainInfoResponseBodyAvailableTtls getAvailableTtls() { return this.availableTtls; } public DescribeDomainInfoResponseBody setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public DescribeDomainInfoResponseBody setDnsServers(DescribeDomainInfoResponseBodyDnsServers dnsServers) { this.dnsServers = dnsServers; return this; } public DescribeDomainInfoResponseBodyDnsServers getDnsServers() { return this.dnsServers; } public DescribeDomainInfoResponseBody setDomainId(String domainId) { this.domainId = domainId; return this; } public String getDomainId() { return this.domainId; } public DescribeDomainInfoResponseBody setDomainLoggingSwitchStatus(String domainLoggingSwitchStatus) { this.domainLoggingSwitchStatus = domainLoggingSwitchStatus; return this; } public String getDomainLoggingSwitchStatus() { return this.domainLoggingSwitchStatus; } public DescribeDomainInfoResponseBody setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeDomainInfoResponseBody setGroupId(String groupId) { this.groupId = groupId; return this; } public String getGroupId() { return this.groupId; } public DescribeDomainInfoResponseBody setGroupName(String groupName) { this.groupName = groupName; return this; } public String getGroupName() { return this.groupName; } public DescribeDomainInfoResponseBody setInBlackHole(Boolean inBlackHole) { this.inBlackHole = inBlackHole; return this; } public Boolean getInBlackHole() { return this.inBlackHole; } public DescribeDomainInfoResponseBody setInClean(Boolean inClean) { this.inClean = inClean; return this; } public Boolean getInClean() { return this.inClean; } public DescribeDomainInfoResponseBody setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public DescribeDomainInfoResponseBody setLineType(String lineType) { this.lineType = lineType; return this; } public String getLineType() { return this.lineType; } public DescribeDomainInfoResponseBody setMinTtl(Long minTtl) { this.minTtl = minTtl; return this; } public Long getMinTtl() { return this.minTtl; } public DescribeDomainInfoResponseBody setPunyCode(String punyCode) { this.punyCode = punyCode; return this; } public String getPunyCode() { return this.punyCode; } public DescribeDomainInfoResponseBody setRecordLineTreeJson(String recordLineTreeJson) { this.recordLineTreeJson = recordLineTreeJson; return this; } public String getRecordLineTreeJson() { return this.recordLineTreeJson; } public DescribeDomainInfoResponseBody setRecordLines(DescribeDomainInfoResponseBodyRecordLines recordLines) { this.recordLines = recordLines; return this; } public DescribeDomainInfoResponseBodyRecordLines getRecordLines() { return this.recordLines; } public DescribeDomainInfoResponseBody setRegionLines(Boolean regionLines) { this.regionLines = regionLines; return this; } public Boolean getRegionLines() { return this.regionLines; } public DescribeDomainInfoResponseBody setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public DescribeDomainInfoResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDomainInfoResponseBody setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; return this; } public String getResourceGroupId() { return this.resourceGroupId; } public DescribeDomainInfoResponseBody setSlaveDns(Boolean slaveDns) { this.slaveDns = slaveDns; return this; } public Boolean getSlaveDns() { return this.slaveDns; } public DescribeDomainInfoResponseBody setSubDomain(Boolean subDomain) { this.subDomain = subDomain; return this; } public Boolean getSubDomain() { return this.subDomain; } public DescribeDomainInfoResponseBody setVersionCode(String versionCode) { this.versionCode = versionCode; return this; } public String getVersionCode() { return this.versionCode; } public DescribeDomainInfoResponseBody setVersionName(String versionName) { this.versionName = versionName; return this; } public String getVersionName() { return this.versionName; } public static class DescribeDomainInfoResponseBodyAvailableTtls extends TeaModel { @NameInMap("AvailableTtl") public java.util.List<String> availableTtl; public static DescribeDomainInfoResponseBodyAvailableTtls build(java.util.Map<String, ?> map) throws Exception { DescribeDomainInfoResponseBodyAvailableTtls self = new DescribeDomainInfoResponseBodyAvailableTtls(); return TeaModel.build(map, self); } public DescribeDomainInfoResponseBodyAvailableTtls setAvailableTtl(java.util.List<String> availableTtl) { this.availableTtl = availableTtl; return this; } public java.util.List<String> getAvailableTtl() { return this.availableTtl; } } public static class DescribeDomainInfoResponseBodyDnsServers extends TeaModel { @NameInMap("DnsServer") public java.util.List<String> dnsServer; public static DescribeDomainInfoResponseBodyDnsServers build(java.util.Map<String, ?> map) throws Exception { DescribeDomainInfoResponseBodyDnsServers self = new DescribeDomainInfoResponseBodyDnsServers(); return TeaModel.build(map, self); } public DescribeDomainInfoResponseBodyDnsServers setDnsServer(java.util.List<String> dnsServer) { this.dnsServer = dnsServer; return this; } public java.util.List<String> getDnsServer() { return this.dnsServer; } } public static class DescribeDomainInfoResponseBodyRecordLinesRecordLine extends TeaModel { /** * <p>The code of the parent line. This parameter is not returned if the line has no parent line.</p> * * <strong>example:</strong> * <p>internal</p> */ @NameInMap("FatherCode") public String fatherCode; /** * <p>The code of the line.</p> * * <strong>example:</strong> * <p>cn_region_xibei</p> */ @NameInMap("LineCode") public String lineCode; /** * <p>The name of the parent line.</p> */ @NameInMap("LineDisplayName") public String lineDisplayName; /** * <p>The name of the line.</p> */ @NameInMap("LineName") public String lineName; public static DescribeDomainInfoResponseBodyRecordLinesRecordLine build(java.util.Map<String, ?> map) throws Exception { DescribeDomainInfoResponseBodyRecordLinesRecordLine self = new DescribeDomainInfoResponseBodyRecordLinesRecordLine(); return TeaModel.build(map, self); } public DescribeDomainInfoResponseBodyRecordLinesRecordLine setFatherCode(String fatherCode) { this.fatherCode = fatherCode; return this; } public String getFatherCode() { return this.fatherCode; } public DescribeDomainInfoResponseBodyRecordLinesRecordLine setLineCode(String lineCode) { this.lineCode = lineCode; return this; } public String getLineCode() { return this.lineCode; } public DescribeDomainInfoResponseBodyRecordLinesRecordLine setLineDisplayName(String lineDisplayName) { this.lineDisplayName = lineDisplayName; return this; } public String getLineDisplayName() { return this.lineDisplayName; } public DescribeDomainInfoResponseBodyRecordLinesRecordLine setLineName(String lineName) { this.lineName = lineName; return this; } public String getLineName() { return this.lineName; } } public static class DescribeDomainInfoResponseBodyRecordLines extends TeaModel { @NameInMap("RecordLine") public java.util.List<DescribeDomainInfoResponseBodyRecordLinesRecordLine> recordLine; public static DescribeDomainInfoResponseBodyRecordLines build(java.util.Map<String, ?> map) throws Exception { DescribeDomainInfoResponseBodyRecordLines self = new DescribeDomainInfoResponseBodyRecordLines(); return TeaModel.build(map, self); } public DescribeDomainInfoResponseBodyRecordLines setRecordLine(java.util.List<DescribeDomainInfoResponseBodyRecordLinesRecordLine> recordLine) { this.recordLine = recordLine; return this; } public java.util.List<DescribeDomainInfoResponseBodyRecordLinesRecordLine> getRecordLine() { return this.recordLine; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDomainLogsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainLogsRequest extends TeaModel { /** * <p>The ID of the domain name group.</p> * * <strong>example:</strong> * <p>2223</p> */ @NameInMap("GroupId") public String groupId; /** * <p>The keyword for the query in &quot;%KeyWord%&quot; mode. The keyword is not case-sensitive.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("KeyWord") public String keyWord; /** * <p>The language in which you want the values of some response parameters to be returned. These response parameters support multiple languages.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The page number to return. The page number starts from <strong>1</strong>. Default value: <strong>1</strong>.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Long pageNumber; /** * <p>The number of entries to return per page. Maximum value: <strong>100</strong>. Default value: <strong>20</strong>.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Long pageSize; /** * <p>The start time for the query. Format: <strong>YYYY-MM-DD</strong></p> * * <strong>example:</strong> * <p>2019-07-04</p> */ @NameInMap("StartDate") public String startDate; /** * <p>The type of object of which you want to query operation logs. Valid values:</p> * <ul> * <li>domain: domain name</li> * <li>slavedns: secondary Domain Name System (DNS)</li> * </ul> * * <strong>example:</strong> * <p>domain</p> */ @NameInMap("Type") public String type; /** * <p>The end time for the query. Format: <strong>YYYY-MM-DD</strong></p> * * <strong>example:</strong> * <p>2019-07-04</p> */ @NameInMap("endDate") public String endDate; public static DescribeDomainLogsRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDomainLogsRequest self = new DescribeDomainLogsRequest(); return TeaModel.build(map, self); } public DescribeDomainLogsRequest setGroupId(String groupId) { this.groupId = groupId; return this; } public String getGroupId() { return this.groupId; } public DescribeDomainLogsRequest setKeyWord(String keyWord) { this.keyWord = keyWord; return this; } public String getKeyWord() { return this.keyWord; } public DescribeDomainLogsRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDomainLogsRequest setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public DescribeDomainLogsRequest setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public DescribeDomainLogsRequest setStartDate(String startDate) { this.startDate = startDate; return this; } public String getStartDate() { return this.startDate; } public DescribeDomainLogsRequest setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public DescribeDomainLogsRequest setEndDate(String endDate) { this.endDate = endDate; return this; } public String getEndDate() { return this.endDate; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDomainLogsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainLogsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDomainLogsResponseBody body; public static DescribeDomainLogsResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDomainLogsResponse self = new DescribeDomainLogsResponse(); return TeaModel.build(map, self); } public DescribeDomainLogsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDomainLogsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDomainLogsResponse setBody(DescribeDomainLogsResponseBody body) { this.body = body; return this; } public DescribeDomainLogsResponseBody 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/DescribeDomainLogsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainLogsResponseBody extends TeaModel { /** * <p>The operation logs.</p> */ @NameInMap("DomainLogs") public DescribeDomainLogsResponseBodyDomainLogs domainLogs; /** * <p>The page number.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Long pageNumber; /** * <p>The number of entries per page.</p> * * <strong>example:</strong> * <p>2</p> */ @NameInMap("PageSize") public Long pageSize; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The total number of entries returned.</p> * * <strong>example:</strong> * <p>2</p> */ @NameInMap("TotalCount") public Long totalCount; public static DescribeDomainLogsResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDomainLogsResponseBody self = new DescribeDomainLogsResponseBody(); return TeaModel.build(map, self); } public DescribeDomainLogsResponseBody setDomainLogs(DescribeDomainLogsResponseBodyDomainLogs domainLogs) { this.domainLogs = domainLogs; return this; } public DescribeDomainLogsResponseBodyDomainLogs getDomainLogs() { return this.domainLogs; } public DescribeDomainLogsResponseBody setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public DescribeDomainLogsResponseBody setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public DescribeDomainLogsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDomainLogsResponseBody setTotalCount(Long totalCount) { this.totalCount = totalCount; return this; } public Long getTotalCount() { return this.totalCount; } public static class DescribeDomainLogsResponseBodyDomainLogsDomainLog extends TeaModel { /** * <p>The operation.</p> * * <strong>example:</strong> * <p>Add</p> */ @NameInMap("Action") public String action; /** * <p>The time when the operation is performed. The time follows the ISO 8601 standard in the YYYY-MM-DDThh:mm:ss format. The time is displayed in UTC.</p> * * <strong>example:</strong> * <p>2015-12-12T09:23Z</p> */ @NameInMap("ActionTime") public String actionTime; /** * <p>The time when the operation was performed. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.</p> * * <strong>example:</strong> * <p>143562300000</p> */ @NameInMap("ActionTimestamp") public Long actionTimestamp; /** * <p>The IP address of the operator.</p> * * <strong>example:</strong> * <p>182.92.253.20</p> */ @NameInMap("ClientIp") public String clientIp; /** * <p>The domain name.</p> * * <strong>example:</strong> * <p>abc.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The message for the operation.</p> * * <strong>example:</strong> * <p>To the DNS record list</p> */ @NameInMap("Message") public String message; /** * <p>The ID of the private zone.</p> * * <strong>example:</strong> * <p>cxfd345sd234</p> */ @NameInMap("ZoneId") public String zoneId; public static DescribeDomainLogsResponseBodyDomainLogsDomainLog build(java.util.Map<String, ?> map) throws Exception { DescribeDomainLogsResponseBodyDomainLogsDomainLog self = new DescribeDomainLogsResponseBodyDomainLogsDomainLog(); return TeaModel.build(map, self); } public DescribeDomainLogsResponseBodyDomainLogsDomainLog setAction(String action) { this.action = action; return this; } public String getAction() { return this.action; } public DescribeDomainLogsResponseBodyDomainLogsDomainLog setActionTime(String actionTime) { this.actionTime = actionTime; return this; } public String getActionTime() { return this.actionTime; } public DescribeDomainLogsResponseBodyDomainLogsDomainLog setActionTimestamp(Long actionTimestamp) { this.actionTimestamp = actionTimestamp; return this; } public Long getActionTimestamp() { return this.actionTimestamp; } public DescribeDomainLogsResponseBodyDomainLogsDomainLog setClientIp(String clientIp) { this.clientIp = clientIp; return this; } public String getClientIp() { return this.clientIp; } public DescribeDomainLogsResponseBodyDomainLogsDomainLog setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeDomainLogsResponseBodyDomainLogsDomainLog setMessage(String message) { this.message = message; return this; } public String getMessage() { return this.message; } public DescribeDomainLogsResponseBodyDomainLogsDomainLog setZoneId(String zoneId) { this.zoneId = zoneId; return this; } public String getZoneId() { return this.zoneId; } } public static class DescribeDomainLogsResponseBodyDomainLogs extends TeaModel { @NameInMap("DomainLog") public java.util.List<DescribeDomainLogsResponseBodyDomainLogsDomainLog> domainLog; public static DescribeDomainLogsResponseBodyDomainLogs build(java.util.Map<String, ?> map) throws Exception { DescribeDomainLogsResponseBodyDomainLogs self = new DescribeDomainLogsResponseBodyDomainLogs(); return TeaModel.build(map, self); } public DescribeDomainLogsResponseBodyDomainLogs setDomainLog(java.util.List<DescribeDomainLogsResponseBodyDomainLogsDomainLog> domainLog) { this.domainLog = domainLog; return this; } public java.util.List<DescribeDomainLogsResponseBodyDomainLogsDomainLog> getDomainLog() { return this.domainLog; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDomainNsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainNsRequest extends TeaModel { /** * <p>The domain name. You can call the <a href="https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomains?spm=a2c63.p38356.help-menu-search-29697.d_0">DescribeDomains</a> operation to obtain 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 of the content in the request and response.</p> * <p>Valid values:</p> * <p>zh: Chinese\ * en: English</p> * <p>Default value: <strong>zh</strong></p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; public static DescribeDomainNsRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDomainNsRequest self = new DescribeDomainNsRequest(); return TeaModel.build(map, self); } public DescribeDomainNsRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeDomainNsRequest 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/DescribeDomainNsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainNsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDomainNsResponseBody body; public static DescribeDomainNsResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDomainNsResponse self = new DescribeDomainNsResponse(); return TeaModel.build(map, self); } public DescribeDomainNsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDomainNsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDomainNsResponse setBody(DescribeDomainNsResponseBody body) { this.body = body; return this; } public DescribeDomainNsResponseBody 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/DescribeDomainNsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainNsResponseBody extends TeaModel { /** * <p>Indicates whether all the name servers are Alibaba Cloud DNS servers.</p> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("AllAliDns") public Boolean allAliDns; /** * <p>The cause code of the detection failure.</p> * * <strong>example:</strong> * <p>DnsCheck.Failed</p> */ @NameInMap("DetectFailedReasonCode") public String detectFailedReasonCode; /** * <p>The DNS server names configured for the domain name.</p> */ @NameInMap("DnsServers") public DescribeDomainNsResponseBodyDnsServers dnsServers; /** * <p>The Domain Name System (DNS) server names assigned by Alibaba Cloud DNS.</p> */ @NameInMap("ExpectDnsServers") public DescribeDomainNsResponseBodyExpectDnsServers expectDnsServers; /** * <p>Indicates whether the name servers include Alibaba Cloud DNS servers.</p> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("IncludeAliDns") public Boolean includeAliDns; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>16C7DC7A-2FA7-4D14-8B12-88A2BB6373DB</p> */ @NameInMap("RequestId") public String requestId; public static DescribeDomainNsResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDomainNsResponseBody self = new DescribeDomainNsResponseBody(); return TeaModel.build(map, self); } public DescribeDomainNsResponseBody setAllAliDns(Boolean allAliDns) { this.allAliDns = allAliDns; return this; } public Boolean getAllAliDns() { return this.allAliDns; } public DescribeDomainNsResponseBody setDetectFailedReasonCode(String detectFailedReasonCode) { this.detectFailedReasonCode = detectFailedReasonCode; return this; } public String getDetectFailedReasonCode() { return this.detectFailedReasonCode; } public DescribeDomainNsResponseBody setDnsServers(DescribeDomainNsResponseBodyDnsServers dnsServers) { this.dnsServers = dnsServers; return this; } public DescribeDomainNsResponseBodyDnsServers getDnsServers() { return this.dnsServers; } public DescribeDomainNsResponseBody setExpectDnsServers(DescribeDomainNsResponseBodyExpectDnsServers expectDnsServers) { this.expectDnsServers = expectDnsServers; return this; } public DescribeDomainNsResponseBodyExpectDnsServers getExpectDnsServers() { return this.expectDnsServers; } public DescribeDomainNsResponseBody setIncludeAliDns(Boolean includeAliDns) { this.includeAliDns = includeAliDns; return this; } public Boolean getIncludeAliDns() { return this.includeAliDns; } public DescribeDomainNsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public static class DescribeDomainNsResponseBodyDnsServers extends TeaModel { @NameInMap("DnsServer") public java.util.List<String> dnsServer; public static DescribeDomainNsResponseBodyDnsServers build(java.util.Map<String, ?> map) throws Exception { DescribeDomainNsResponseBodyDnsServers self = new DescribeDomainNsResponseBodyDnsServers(); return TeaModel.build(map, self); } public DescribeDomainNsResponseBodyDnsServers setDnsServer(java.util.List<String> dnsServer) { this.dnsServer = dnsServer; return this; } public java.util.List<String> getDnsServer() { return this.dnsServer; } } public static class DescribeDomainNsResponseBodyExpectDnsServers extends TeaModel { @NameInMap("ExpectDnsServer") public java.util.List<String> expectDnsServer; public static DescribeDomainNsResponseBodyExpectDnsServers build(java.util.Map<String, ?> map) throws Exception { DescribeDomainNsResponseBodyExpectDnsServers self = new DescribeDomainNsResponseBodyExpectDnsServers(); return TeaModel.build(map, self); } public DescribeDomainNsResponseBodyExpectDnsServers setExpectDnsServer(java.util.List<String> expectDnsServer) { this.expectDnsServer = expectDnsServer; return this; } public java.util.List<String> getExpectDnsServer() { return this.expectDnsServer; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDomainRecordInfoRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainRecordInfoRequest 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> to obtain the ID.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>9999985</p> */ @NameInMap("RecordId") public String recordId; /** * <p>The IP address of the client.</p> * * <strong>example:</strong> * <p>192.0.2.0</p> */ @NameInMap("UserClientIp") public String userClientIp; public static DescribeDomainRecordInfoRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDomainRecordInfoRequest self = new DescribeDomainRecordInfoRequest(); return TeaModel.build(map, self); } public DescribeDomainRecordInfoRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDomainRecordInfoRequest setRecordId(String recordId) { this.recordId = recordId; return this; } public String getRecordId() { return this.recordId; } public DescribeDomainRecordInfoRequest 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/DescribeDomainRecordInfoResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainRecordInfoResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDomainRecordInfoResponseBody body; public static DescribeDomainRecordInfoResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDomainRecordInfoResponse self = new DescribeDomainRecordInfoResponse(); return TeaModel.build(map, self); } public DescribeDomainRecordInfoResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDomainRecordInfoResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDomainRecordInfoResponse setBody(DescribeDomainRecordInfoResponseBody body) { this.body = body; return this; } public DescribeDomainRecordInfoResponseBody 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/DescribeDomainRecordInfoResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainRecordInfoResponseBody extends TeaModel { /** * <p>The ID of the domain name.</p> * * <strong>example:</strong> * <p>00efd71a-770e-4255-b54e-6fe5659baffe</p> */ @NameInMap("DomainId") public String domainId; /** * <p>The domain name.</p> * * <strong>example:</strong> * <p>dns-example.top</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The ID of the domain name group.</p> * * <strong>example:</strong> * <p>2223</p> */ @NameInMap("GroupId") public String groupId; /** * <p>The name of the domain name group.</p> * * <strong>example:</strong> * <p>MyGroup</p> */ @NameInMap("GroupName") public String groupName; /** * <p>The DNS resolution line.</p> * * <strong>example:</strong> * <p>default</p> */ @NameInMap("Line") public String line; /** * <p>The lock state of the DNS record. Valid values: <strong>true and false</strong>.</p> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("Locked") public Boolean locked; /** * <p>The priority of the mail exchanger (MX) record.</p> * * <strong>example:</strong> * <p>5</p> */ @NameInMap("Priority") public Long priority; /** * <p>The Punycode for the domain name. This parameter is returned only for Chinese domain names.</p> * * <strong>example:</strong> * <p>xn--fsq270a.com</p> */ @NameInMap("PunyCode") public String punyCode; /** * <p>The hostname.</p> * * <strong>example:</strong> * <p>@</p> */ @NameInMap("RR") public String RR; /** * <p>The ID of the DNS record.</p> * * <strong>example:</strong> * <p>9999985</p> */ @NameInMap("RecordId") public String recordId; /** * <p>The description of your DNS record.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; /** * <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. Valid values:</p> * <p>Enable: enabled</p> * <p>Disable: disabled</p> * * <strong>example:</strong> * <p>Enable</p> */ @NameInMap("Status") public String status; /** * <p>The time for which the DNS record is cached in a local DNS system.</p> * * <strong>example:</strong> * <p>600</p> */ @NameInMap("TTL") public Long TTL; /** * <p>The type of the DNS record.</p> * * <strong>example:</strong> * <p>MX</p> */ @NameInMap("Type") public String type; /** * <p>The record value.</p> * * <strong>example:</strong> * <p>1.1.XX.XX</p> */ @NameInMap("Value") public String value; public static DescribeDomainRecordInfoResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDomainRecordInfoResponseBody self = new DescribeDomainRecordInfoResponseBody(); return TeaModel.build(map, self); } public DescribeDomainRecordInfoResponseBody setDomainId(String domainId) { this.domainId = domainId; return this; } public String getDomainId() { return this.domainId; } public DescribeDomainRecordInfoResponseBody setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeDomainRecordInfoResponseBody setGroupId(String groupId) { this.groupId = groupId; return this; } public String getGroupId() { return this.groupId; } public DescribeDomainRecordInfoResponseBody setGroupName(String groupName) { this.groupName = groupName; return this; } public String getGroupName() { return this.groupName; } public DescribeDomainRecordInfoResponseBody setLine(String line) { this.line = line; return this; } public String getLine() { return this.line; } public DescribeDomainRecordInfoResponseBody setLocked(Boolean locked) { this.locked = locked; return this; } public Boolean getLocked() { return this.locked; } public DescribeDomainRecordInfoResponseBody setPriority(Long priority) { this.priority = priority; return this; } public Long getPriority() { return this.priority; } public DescribeDomainRecordInfoResponseBody setPunyCode(String punyCode) { this.punyCode = punyCode; return this; } public String getPunyCode() { return this.punyCode; } public DescribeDomainRecordInfoResponseBody setRR(String RR) { this.RR = RR; return this; } public String getRR() { return this.RR; } public DescribeDomainRecordInfoResponseBody setRecordId(String recordId) { this.recordId = recordId; return this; } public String getRecordId() { return this.recordId; } public DescribeDomainRecordInfoResponseBody setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public DescribeDomainRecordInfoResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDomainRecordInfoResponseBody setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } public DescribeDomainRecordInfoResponseBody setTTL(Long TTL) { this.TTL = TTL; return this; } public Long getTTL() { return this.TTL; } public DescribeDomainRecordInfoResponseBody setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public DescribeDomainRecordInfoResponseBody 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/DescribeDomainRecordsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainRecordsRequest extends TeaModel { /** * <p>The order in which you want to sort the returned DNS records. Valid values: DESC and ASC. Default value: DESC.</p> * * <strong>example:</strong> * <p>DESC</p> */ @NameInMap("Direction") public String direction; /** * <p>The domain name. You can call the <a href="https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomains?spm=a2c63.p38356.help-menu-search-29697.d_0">DescribeDomains</a> operation to obtain the domain name.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The ID of the domain name group.</p> * <ul> * <li>If you do not specify GroupId, all domain names are queried.</li> * <li>If you set GroupId to 0, no value is returned.</li> * <li>If you set GroupId to 1, the domain names in the default group are queried.</li> * <li>If you set GroupId to -2, all domain names are queried.</li> * <li>You can also specify GroupId based on the actual group ID.</li> * </ul> * <p>You can call the <a href="https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomaingroups?spm=a2c63.p38356.help-menu-search-29697.d_0">DescribeDomainGroups </a>operation to obtain the ID of the domain name group.</p> * * <strong>example:</strong> * <p>2223</p> */ @NameInMap("GroupId") public Long groupId; /** * <p>The keyword.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("KeyWord") public String keyWord; /** * <p>The language.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The resolution line. Default value: <strong>default</strong>.</p> * <p>For more information, see</p> * <p><a href="https://www.alibabacloud.com/help/zh/doc-detail/29807.htm">DNS lines</a>.</p> * * <strong>example:</strong> * <p>cn_mobile_anhui</p> */ @NameInMap("Line") public String line; /** * <p>The method that is used to sort the returned DNS records. By default, the DNS records are sorted in reverse chronological order based on the time when they were added.</p> * * <strong>example:</strong> * <p>default</p> */ @NameInMap("OrderBy") public String orderBy; /** * <p>The page number. Pages start from page <strong>1</strong>. Default value: <strong>1</strong>.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Long pageNumber; /** * <p>The number of entries per page. Valid values: <strong>1 to 500</strong>. Default value: <strong>20</strong>.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Long pageSize; /** * <p>The hostname keyword based on which the system queries DNS records. The system queries DNS records based on the value of this parameter in fuzzy match mode. The value is not case-sensitive.</p> * * <strong>example:</strong> * <p>www</p> */ @NameInMap("RRKeyWord") public String RRKeyWord; /** * <p>The search mode. Valid values: <strong>LIKE, EXACT, and ADVANCED</strong>.</p> * <ul> * <li><p>If you set SearchMode to LIKE or EXACT, specify KeyWord. In this case, RRKeyWord, TypeKeyWord, ValueKeyWord, Type, Line, and Status are invalid.</p> * </li> * <li><p>If you set SearchMode to ADVANCED, specify RRKeyWord, TypeKeyWord, ValueKeyWord, Type, Line, and Status.</p> * </li> * <li><p>If you do not specify SearchMode, the system determines the search mode based on the following rules:</p> * <ul> * <li>If KeyWord is specified, the system uses the LIKE mode.</li> * <li>If KeyWord is not specified, the system queries DNS records based on values of RRKeyWord and ValueKeyWord in fuzzy match mode, and based on the values of TypeKeyWord, Type, Line, and Status in exact match mode.</li> * </ul> * </li> * </ul> * * <strong>example:</strong> * <p>LIKE</p> */ @NameInMap("SearchMode") public String searchMode; /** * <p>The status of the DNS records to query. Valid values: <strong>Enable and Disable</strong>.</p> * * <strong>example:</strong> * <p>Enable</p> */ @NameInMap("Status") public String status; /** * <p>The type of the DNS records to query. For more information, see</p> * <p><a href="https://www.alibabacloud.com/help/zh/doc-detail/29805.htm">DNS record types</a>.</p> * * <strong>example:</strong> * <p>A</p> */ @NameInMap("Type") public String type; /** * <p>The type keyword based on which the system queries DNS records. The system queries DNS records based on the value of this parameter in exact match mode. The value is not case-sensitive.</p> * * <strong>example:</strong> * <p>MX</p> */ @NameInMap("TypeKeyWord") public String typeKeyWord; /** * <p>The record value keyword based on which the system queries DNS records. The system queries DNS records based on the value of this parameter in fuzzy match mode. The value is not case-sensitive.</p> * * <strong>example:</strong> * <p>com</p> */ @NameInMap("ValueKeyWord") public String valueKeyWord; public static DescribeDomainRecordsRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDomainRecordsRequest self = new DescribeDomainRecordsRequest(); return TeaModel.build(map, self); } public DescribeDomainRecordsRequest setDirection(String direction) { this.direction = direction; return this; } public String getDirection() { return this.direction; } public DescribeDomainRecordsRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeDomainRecordsRequest setGroupId(Long groupId) { this.groupId = groupId; return this; } public Long getGroupId() { return this.groupId; } public DescribeDomainRecordsRequest setKeyWord(String keyWord) { this.keyWord = keyWord; return this; } public String getKeyWord() { return this.keyWord; } public DescribeDomainRecordsRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDomainRecordsRequest setLine(String line) { this.line = line; return this; } public String getLine() { return this.line; } public DescribeDomainRecordsRequest setOrderBy(String orderBy) { this.orderBy = orderBy; return this; } public String getOrderBy() { return this.orderBy; } public DescribeDomainRecordsRequest setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public DescribeDomainRecordsRequest setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public DescribeDomainRecordsRequest setRRKeyWord(String RRKeyWord) { this.RRKeyWord = RRKeyWord; return this; } public String getRRKeyWord() { return this.RRKeyWord; } public DescribeDomainRecordsRequest setSearchMode(String searchMode) { this.searchMode = searchMode; return this; } public String getSearchMode() { return this.searchMode; } public DescribeDomainRecordsRequest setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } public DescribeDomainRecordsRequest setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public DescribeDomainRecordsRequest setTypeKeyWord(String typeKeyWord) { this.typeKeyWord = typeKeyWord; return this; } public String getTypeKeyWord() { return this.typeKeyWord; } public DescribeDomainRecordsRequest setValueKeyWord(String valueKeyWord) { this.valueKeyWord = valueKeyWord; return this; } public String getValueKeyWord() { return this.valueKeyWord; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDomainRecordsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainRecordsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDomainRecordsResponseBody body; public static DescribeDomainRecordsResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDomainRecordsResponse self = new DescribeDomainRecordsResponse(); return TeaModel.build(map, self); } public DescribeDomainRecordsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDomainRecordsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDomainRecordsResponse setBody(DescribeDomainRecordsResponseBody body) { this.body = body; return this; } public DescribeDomainRecordsResponseBody 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/DescribeDomainRecordsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainRecordsResponseBody extends TeaModel { /** * <p>The returned Domain Name System (DNS) records.</p> */ @NameInMap("DomainRecords") public DescribeDomainRecordsResponseBodyDomainRecords domainRecords; /** * <p>The page number.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Long pageNumber; /** * <p>The number of entries per page.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Long pageSize; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The total number of entries returned.</p> * * <strong>example:</strong> * <p>2</p> */ @NameInMap("TotalCount") public Long totalCount; public static DescribeDomainRecordsResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDomainRecordsResponseBody self = new DescribeDomainRecordsResponseBody(); return TeaModel.build(map, self); } public DescribeDomainRecordsResponseBody setDomainRecords(DescribeDomainRecordsResponseBodyDomainRecords domainRecords) { this.domainRecords = domainRecords; return this; } public DescribeDomainRecordsResponseBodyDomainRecords getDomainRecords() { return this.domainRecords; } public DescribeDomainRecordsResponseBody setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public DescribeDomainRecordsResponseBody setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public DescribeDomainRecordsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDomainRecordsResponseBody setTotalCount(Long totalCount) { this.totalCount = totalCount; return this; } public Long getTotalCount() { return this.totalCount; } public static class DescribeDomainRecordsResponseBodyDomainRecordsRecord extends TeaModel { /** * <p>The time when the DNS record was created. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since 00:00:00 UTC on January 1, 1970.</p> * * <strong>example:</strong> * <p>1666501957000</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>The domain name.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("DomainName") public String domainName; @NameInMap("LbaStatus") public Boolean lbaStatus; /** * <p>The resolution line.</p> * * <strong>example:</strong> * <p>default</p> */ @NameInMap("Line") public String line; /** * <p>Indicates whether the DNS record is locked.</p> * * <strong>example:</strong> * <p>false</p> */ @NameInMap("Locked") public Boolean locked; /** * <p>The priority of the mail exchanger (MX) record.</p> * * <strong>example:</strong> * <p>5</p> */ @NameInMap("Priority") public Long priority; /** * <p>The hostname.</p> * * <strong>example:</strong> * <p>www</p> */ @NameInMap("RR") public String RR; /** * <p>The ID of the DNS record.</p> * * <strong>example:</strong> * <p>9999985</p> */ @NameInMap("RecordId") public String recordId; /** * <p>The description of the DNS record.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; /** * <p>The status of the DNS record.</p> * * <strong>example:</strong> * <p>Enable</p> */ @NameInMap("Status") public String status; /** * <p>The time-to-live (TTL) of the cached DNS record. Unit: seconds.</p> * * <strong>example:</strong> * <p>600</p> */ @NameInMap("TTL") public Long TTL; /** * <p>The type of the DNS record.</p> * * <strong>example:</strong> * <p>MX</p> */ @NameInMap("Type") public String type; /** * <p>The time when the DNS record was updated. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since 00:00:00 UTC on January 1, 1970.</p> * * <strong>example:</strong> * <p>1676872961000</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; /** * <p>The record value.</p> * * <strong>example:</strong> * <p>mail1.hichina.com</p> */ @NameInMap("Value") public String value; /** * <p>The weight of the DNS record.</p> * * <strong>example:</strong> * <p>2</p> */ @NameInMap("Weight") public Integer weight; public static DescribeDomainRecordsResponseBodyDomainRecordsRecord build(java.util.Map<String, ?> map) throws Exception { DescribeDomainRecordsResponseBodyDomainRecordsRecord self = new DescribeDomainRecordsResponseBodyDomainRecordsRecord(); return TeaModel.build(map, self); } public DescribeDomainRecordsResponseBodyDomainRecordsRecord setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public DescribeDomainRecordsResponseBodyDomainRecordsRecord setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeDomainRecordsResponseBodyDomainRecordsRecord setLbaStatus(Boolean lbaStatus) { this.lbaStatus = lbaStatus; return this; } public Boolean getLbaStatus() { return this.lbaStatus; } public DescribeDomainRecordsResponseBodyDomainRecordsRecord setLine(String line) { this.line = line; return this; } public String getLine() { return this.line; } public DescribeDomainRecordsResponseBodyDomainRecordsRecord setLocked(Boolean locked) { this.locked = locked; return this; } public Boolean getLocked() { return this.locked; } public DescribeDomainRecordsResponseBodyDomainRecordsRecord setPriority(Long priority) { this.priority = priority; return this; } public Long getPriority() { return this.priority; } public DescribeDomainRecordsResponseBodyDomainRecordsRecord setRR(String RR) { this.RR = RR; return this; } public String getRR() { return this.RR; } public DescribeDomainRecordsResponseBodyDomainRecordsRecord setRecordId(String recordId) { this.recordId = recordId; return this; } public String getRecordId() { return this.recordId; } public DescribeDomainRecordsResponseBodyDomainRecordsRecord setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public DescribeDomainRecordsResponseBodyDomainRecordsRecord setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } public DescribeDomainRecordsResponseBodyDomainRecordsRecord setTTL(Long TTL) { this.TTL = TTL; return this; } public Long getTTL() { return this.TTL; } public DescribeDomainRecordsResponseBodyDomainRecordsRecord setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public DescribeDomainRecordsResponseBodyDomainRecordsRecord setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public DescribeDomainRecordsResponseBodyDomainRecordsRecord setValue(String value) { this.value = value; return this; } public String getValue() { return this.value; } public DescribeDomainRecordsResponseBodyDomainRecordsRecord setWeight(Integer weight) { this.weight = weight; return this; } public Integer getWeight() { return this.weight; } } public static class DescribeDomainRecordsResponseBodyDomainRecords extends TeaModel { @NameInMap("Record") public java.util.List<DescribeDomainRecordsResponseBodyDomainRecordsRecord> record; public static DescribeDomainRecordsResponseBodyDomainRecords build(java.util.Map<String, ?> map) throws Exception { DescribeDomainRecordsResponseBodyDomainRecords self = new DescribeDomainRecordsResponseBodyDomainRecords(); return TeaModel.build(map, self); } public DescribeDomainRecordsResponseBodyDomainRecords setRecord(java.util.List<DescribeDomainRecordsResponseBodyDomainRecordsRecord> record) { this.record = record; return this; } public java.util.List<DescribeDomainRecordsResponseBodyDomainRecordsRecord> 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/DescribeDomainResolveStatisticsSummaryRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainResolveStatisticsSummaryRequest extends TeaModel { /** * <p>The order in which you want to sort the returned entries. Valid values:</p> * <ul> * <li>DESC: the descending order</li> * <li>ASC: the ascending order</li> * </ul> * * <strong>example:</strong> * <p>DESC</p> */ @NameInMap("Direction") public String direction; /** * <p>The end time in the yyyy-MM-dd format, for example, 2023-03-13.</p> * * <strong>example:</strong> * <p>2023-03-01</p> */ @NameInMap("EndDate") public String endDate; /** * <p>The keyword. The Keyword parameter is used together with the SearchMode parameter.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Keyword") public String keyword; /** * <p>The language. Valid values: zh, en, and ja.</p> * * <strong>example:</strong> * <p>zh</p> */ @NameInMap("Lang") public String lang; /** * <p>The number of the page to return. Pages start from page 1. Default value: 1.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of entries to return on each page. Valid values: 1 to 1000.</p> * * <strong>example:</strong> * <p>10</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>The search mode of the keyword. Valid values:</p> * <ul> * <li>LIKE (default): fuzzy search</li> * <li>EXACT: exact search</li> * </ul> * * <strong>example:</strong> * <p>EXACT</p> */ @NameInMap("SearchMode") public String searchMode; /** * <p>The start time in the yyyy-MM-dd format, for example, 2023-03-01.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>2023-03-01</p> */ @NameInMap("StartDate") public String startDate; /** * <p>The threshold for the number of Domain Name System (DNS) requests. You can query the domain names at the specified quantity level of DNS requests and query the number of DNS requests for each domain name.</p> * <p>If you do not specify this parameter, the data about the domain names that have DNS requests is obtained.</p> * <p>If you set this parameter to a value less than 0, the data about all domain names is obtained.</p> * <p>If you set this parameter to 0, the data about the domain names that do not have DNS requests is obtained.</p> * <p>If you set this parameter to a value greater than 0, the data about the domain names whose number of DNS requests is less than or equal to the value of this parameter is obtained.</p> * * <strong>example:</strong> * <p>-1</p> */ @NameInMap("Threshold") public Long threshold; public static DescribeDomainResolveStatisticsSummaryRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDomainResolveStatisticsSummaryRequest self = new DescribeDomainResolveStatisticsSummaryRequest(); return TeaModel.build(map, self); } public DescribeDomainResolveStatisticsSummaryRequest setDirection(String direction) { this.direction = direction; return this; } public String getDirection() { return this.direction; } public DescribeDomainResolveStatisticsSummaryRequest setEndDate(String endDate) { this.endDate = endDate; return this; } public String getEndDate() { return this.endDate; } public DescribeDomainResolveStatisticsSummaryRequest setKeyword(String keyword) { this.keyword = keyword; return this; } public String getKeyword() { return this.keyword; } public DescribeDomainResolveStatisticsSummaryRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDomainResolveStatisticsSummaryRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public DescribeDomainResolveStatisticsSummaryRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public DescribeDomainResolveStatisticsSummaryRequest setSearchMode(String searchMode) { this.searchMode = searchMode; return this; } public String getSearchMode() { return this.searchMode; } public DescribeDomainResolveStatisticsSummaryRequest setStartDate(String startDate) { this.startDate = startDate; return this; } public String getStartDate() { return this.startDate; } public DescribeDomainResolveStatisticsSummaryRequest setThreshold(Long threshold) { this.threshold = threshold; return this; } public Long getThreshold() { return this.threshold; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDomainResolveStatisticsSummaryResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainResolveStatisticsSummaryResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDomainResolveStatisticsSummaryResponseBody body; public static DescribeDomainResolveStatisticsSummaryResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDomainResolveStatisticsSummaryResponse self = new DescribeDomainResolveStatisticsSummaryResponse(); return TeaModel.build(map, self); } public DescribeDomainResolveStatisticsSummaryResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDomainResolveStatisticsSummaryResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDomainResolveStatisticsSummaryResponse setBody(DescribeDomainResolveStatisticsSummaryResponseBody body) { this.body = body; return this; } public DescribeDomainResolveStatisticsSummaryResponseBody 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/DescribeDomainResolveStatisticsSummaryResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainResolveStatisticsSummaryResponseBody extends TeaModel { /** * <p>The page number. Pages start from page <strong>1</strong>. Default value: <strong>1</strong>.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of entries per page. Maximum value: <strong>100</strong>. Default value: <strong>20</strong>.</p> * * <strong>example:</strong> * <p>10</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>6856BCF6-11D6-4D7E-AC53-FD579933522B</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The statistics.</p> */ @NameInMap("Statistics") public java.util.List<DescribeDomainResolveStatisticsSummaryResponseBodyStatistics> statistics; /** * <p>The total number of entries returned.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <p>The total number of pages returned.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("TotalPages") public Integer totalPages; public static DescribeDomainResolveStatisticsSummaryResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDomainResolveStatisticsSummaryResponseBody self = new DescribeDomainResolveStatisticsSummaryResponseBody(); return TeaModel.build(map, self); } public DescribeDomainResolveStatisticsSummaryResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public DescribeDomainResolveStatisticsSummaryResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public DescribeDomainResolveStatisticsSummaryResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDomainResolveStatisticsSummaryResponseBody setStatistics(java.util.List<DescribeDomainResolveStatisticsSummaryResponseBodyStatistics> statistics) { this.statistics = statistics; return this; } public java.util.List<DescribeDomainResolveStatisticsSummaryResponseBodyStatistics> getStatistics() { return this.statistics; } public DescribeDomainResolveStatisticsSummaryResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public DescribeDomainResolveStatisticsSummaryResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class DescribeDomainResolveStatisticsSummaryResponseBodyStatistics extends TeaModel { /** * <p>The number of DNS requests.</p> * * <strong>example:</strong> * <p>35509014</p> */ @NameInMap("Count") public String count; /** * <p>The domain name.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The type of the domain name. Valid values:</p> * <ul> * <li>PUBLIC: hosted public domain name</li> * <li>CACHE: cache-accelerated domain name</li> * </ul> * * <strong>example:</strong> * <p>CACHE</p> */ @NameInMap("DomainType") public String domainType; public static DescribeDomainResolveStatisticsSummaryResponseBodyStatistics build(java.util.Map<String, ?> map) throws Exception { DescribeDomainResolveStatisticsSummaryResponseBodyStatistics self = new DescribeDomainResolveStatisticsSummaryResponseBodyStatistics(); return TeaModel.build(map, self); } public DescribeDomainResolveStatisticsSummaryResponseBodyStatistics setCount(String count) { this.count = count; return this; } public String getCount() { return this.count; } public DescribeDomainResolveStatisticsSummaryResponseBodyStatistics setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeDomainResolveStatisticsSummaryResponseBodyStatistics setDomainType(String domainType) { this.domainType = domainType; return this; } public String getDomainType() { return this.domainType; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDomainStatisticsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainStatisticsRequest extends TeaModel { /** * <p>The domain name. You can call the <a href="https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomains?spm=a2c63.p38356.help-menu-search-29697.d_0">DescribeDomains</a> operation to obtain the domain name.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The type of the domain name. Valid values:</p> * <ul> * <li>PUBLIC (default): hosted public domain name</li> * <li>CACHE: cached public domain name</li> * </ul> * * <strong>example:</strong> * <p>PUBLIC CACHE</p> */ @NameInMap("DomainType") public String domainType; /** * <p>The end date of the query. Specify the end date in the <strong>YYYY-MM-DD</strong> format.</p> * <p>The default value is the day when you query the data.</p> * * <strong>example:</strong> * <p>2019-07-04</p> */ @NameInMap("EndDate") public String endDate; /** * <p>The language of the content within the request and response.</p> * <ul> * <li><strong>zh</strong>: Chinese (default)</li> * <li><strong>en</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The start date of the query. Specify the start date in the <strong>YYYY-MM-DD</strong> format.</p> * <p>You can only query the DNS records within the last 90 days.``</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>2019-07-04</p> */ @NameInMap("StartDate") public String startDate; public static DescribeDomainStatisticsRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDomainStatisticsRequest self = new DescribeDomainStatisticsRequest(); return TeaModel.build(map, self); } public DescribeDomainStatisticsRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeDomainStatisticsRequest setDomainType(String domainType) { this.domainType = domainType; return this; } public String getDomainType() { return this.domainType; } public DescribeDomainStatisticsRequest setEndDate(String endDate) { this.endDate = endDate; return this; } public String getEndDate() { return this.endDate; } public DescribeDomainStatisticsRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDomainStatisticsRequest setStartDate(String startDate) { this.startDate = startDate; return this; } public String getStartDate() { return this.startDate; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDomainStatisticsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainStatisticsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDomainStatisticsResponseBody body; public static DescribeDomainStatisticsResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDomainStatisticsResponse self = new DescribeDomainStatisticsResponse(); return TeaModel.build(map, self); } public DescribeDomainStatisticsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDomainStatisticsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDomainStatisticsResponse setBody(DescribeDomainStatisticsResponseBody body) { this.body = body; return this; } public DescribeDomainStatisticsResponseBody 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/DescribeDomainStatisticsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainStatisticsResponseBody extends TeaModel { /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>6AEC7A64-3CB1-4C49-8B35-0B901F1E26BF</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The statistics on the Domain Name System (DNS) requests.</p> */ @NameInMap("Statistics") public DescribeDomainStatisticsResponseBodyStatistics statistics; public static DescribeDomainStatisticsResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDomainStatisticsResponseBody self = new DescribeDomainStatisticsResponseBody(); return TeaModel.build(map, self); } public DescribeDomainStatisticsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDomainStatisticsResponseBody setStatistics(DescribeDomainStatisticsResponseBodyStatistics statistics) { this.statistics = statistics; return this; } public DescribeDomainStatisticsResponseBodyStatistics getStatistics() { return this.statistics; } public static class DescribeDomainStatisticsResponseBodyStatisticsStatistic extends TeaModel { /** * <p>The number of DNS requests.</p> * * <strong>example:</strong> * <p>15292887</p> */ @NameInMap("Count") public Long count; /** * <p>The domain name.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The statistical timestamp. Unit: milliseconds. This value is a UNIX timestamp representing the number of milliseconds that have elapsed since January 1, 1970, 00:00:00 UTC.</p> * * <strong>example:</strong> * <p>1556640000000</p> */ @NameInMap("Timestamp") public Long timestamp; public static DescribeDomainStatisticsResponseBodyStatisticsStatistic build(java.util.Map<String, ?> map) throws Exception { DescribeDomainStatisticsResponseBodyStatisticsStatistic self = new DescribeDomainStatisticsResponseBodyStatisticsStatistic(); return TeaModel.build(map, self); } public DescribeDomainStatisticsResponseBodyStatisticsStatistic setCount(Long count) { this.count = count; return this; } public Long getCount() { return this.count; } public DescribeDomainStatisticsResponseBodyStatisticsStatistic setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeDomainStatisticsResponseBodyStatisticsStatistic setTimestamp(Long timestamp) { this.timestamp = timestamp; return this; } public Long getTimestamp() { return this.timestamp; } } public static class DescribeDomainStatisticsResponseBodyStatistics extends TeaModel { @NameInMap("Statistic") public java.util.List<DescribeDomainStatisticsResponseBodyStatisticsStatistic> statistic; public static DescribeDomainStatisticsResponseBodyStatistics build(java.util.Map<String, ?> map) throws Exception { DescribeDomainStatisticsResponseBodyStatistics self = new DescribeDomainStatisticsResponseBodyStatistics(); return TeaModel.build(map, self); } public DescribeDomainStatisticsResponseBodyStatistics setStatistic(java.util.List<DescribeDomainStatisticsResponseBodyStatisticsStatistic> statistic) { this.statistic = statistic; return this; } public java.util.List<DescribeDomainStatisticsResponseBodyStatisticsStatistic> getStatistic() { return this.statistic; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDomainStatisticsSummaryRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainStatisticsSummaryRequest extends TeaModel { /** * <p>The end of the time range to query. Specify the time in the <strong>YYYY-MM-DD</strong> format.</p> * <p>The default value is the day when you perform the operation.</p> * * <strong>example:</strong> * <p>2019-07-04</p> */ @NameInMap("EndDate") public String endDate; /** * <p>The keyword for searches in %KeyWord% mode. The value is not case-sensitive.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Keyword") public String keyword; /** * <p>The language type.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The number of the page to return. Pages start from page <strong>1</strong>. Default value: <strong>1</strong>.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Long pageNumber; /** * <p>The number of entries per page. Valid values: <strong>1 to 100</strong>. Default value: <strong>20</strong>.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Long pageSize; /** * <p>The search mode of the keyword. Valid values:</p> * <ul> * <li><strong>LIKE</strong>: fuzzy match (default).</li> * <li><strong>EXACT</strong>: exact match.</li> * </ul> * * <strong>example:</strong> * <p>LIKE</p> */ @NameInMap("SearchMode") public String searchMode; /** * <p>The beginning of the time range to query. Specify the time in the <strong>YYYY-MM-DD</strong> format.</p> * <p>You can only query DNS records of the last 90 days.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>2019-07-04</p> */ @NameInMap("StartDate") public String startDate; /** * <p>The threshold of query volume that can be obtained. You can also obtain data about a domain name with the query volume less than or equal to the threshold. For example, if you set this parameter to 100, you can query domain names with less than 100 queries.</p> * * <strong>example:</strong> * <p>12</p> */ @NameInMap("Threshold") public Long threshold; public static DescribeDomainStatisticsSummaryRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDomainStatisticsSummaryRequest self = new DescribeDomainStatisticsSummaryRequest(); return TeaModel.build(map, self); } public DescribeDomainStatisticsSummaryRequest setEndDate(String endDate) { this.endDate = endDate; return this; } public String getEndDate() { return this.endDate; } public DescribeDomainStatisticsSummaryRequest setKeyword(String keyword) { this.keyword = keyword; return this; } public String getKeyword() { return this.keyword; } public DescribeDomainStatisticsSummaryRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDomainStatisticsSummaryRequest setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public DescribeDomainStatisticsSummaryRequest setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public DescribeDomainStatisticsSummaryRequest setSearchMode(String searchMode) { this.searchMode = searchMode; return this; } public String getSearchMode() { return this.searchMode; } public DescribeDomainStatisticsSummaryRequest setStartDate(String startDate) { this.startDate = startDate; return this; } public String getStartDate() { return this.startDate; } public DescribeDomainStatisticsSummaryRequest setThreshold(Long threshold) { this.threshold = threshold; return this; } public Long getThreshold() { return this.threshold; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDomainStatisticsSummaryResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainStatisticsSummaryResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDomainStatisticsSummaryResponseBody body; public static DescribeDomainStatisticsSummaryResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDomainStatisticsSummaryResponse self = new DescribeDomainStatisticsSummaryResponse(); return TeaModel.build(map, self); } public DescribeDomainStatisticsSummaryResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDomainStatisticsSummaryResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDomainStatisticsSummaryResponse setBody(DescribeDomainStatisticsSummaryResponseBody body) { this.body = body; return this; } public DescribeDomainStatisticsSummaryResponseBody 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/DescribeDomainStatisticsSummaryResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainStatisticsSummaryResponseBody extends TeaModel { /** * <p>The page number of the returned page.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of entries returned per page.</p> * * <strong>example:</strong> * <p>5</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>The ID of the request.</p> * * <strong>example:</strong> * <p>CC625C21-8832-4683-BF10-C3CFB1A4FA13</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The statistics on the Domain Name System (DNS) requests.</p> */ @NameInMap("Statistics") public DescribeDomainStatisticsSummaryResponseBodyStatistics statistics; /** * <p>The total number of data records.</p> * * <strong>example:</strong> * <p>68</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <p>The total number of returned pages.</p> * * <strong>example:</strong> * <p>14</p> */ @NameInMap("TotalPages") public Integer totalPages; public static DescribeDomainStatisticsSummaryResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeDomainStatisticsSummaryResponseBody self = new DescribeDomainStatisticsSummaryResponseBody(); return TeaModel.build(map, self); } public DescribeDomainStatisticsSummaryResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public DescribeDomainStatisticsSummaryResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public DescribeDomainStatisticsSummaryResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeDomainStatisticsSummaryResponseBody setStatistics(DescribeDomainStatisticsSummaryResponseBodyStatistics statistics) { this.statistics = statistics; return this; } public DescribeDomainStatisticsSummaryResponseBodyStatistics getStatistics() { return this.statistics; } public DescribeDomainStatisticsSummaryResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public DescribeDomainStatisticsSummaryResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class DescribeDomainStatisticsSummaryResponseBodyStatisticsStatistic extends TeaModel { /** * <p>The number of DNS requests.</p> * * <strong>example:</strong> * <p>35509014</p> */ @NameInMap("Count") public Long count; /** * <p>The domain name.</p> * * <strong>example:</strong> * <p>ali-gslb.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The type of the domain name. The parameter value is not case-sensitive. Valid values:</p> * <p>PUBLIC (default): hosted public domain name</p> * <p>CACHE: cache-accelerated domain name</p> * * <strong>example:</strong> * <p>PUBLIC</p> */ @NameInMap("DomainType") public String domainType; /** * <p>Indicates whether the DNS traffic analysis feature is enabled for the domain name. Valid values:</p> * <ul> * <li>OPEN</li> * <li>CLOSE</li> * </ul> * * <strong>example:</strong> * <p>OPEN</p> */ @NameInMap("resolveAnalysisStatus") public String resolveAnalysisStatus; public static DescribeDomainStatisticsSummaryResponseBodyStatisticsStatistic build(java.util.Map<String, ?> map) throws Exception { DescribeDomainStatisticsSummaryResponseBodyStatisticsStatistic self = new DescribeDomainStatisticsSummaryResponseBodyStatisticsStatistic(); return TeaModel.build(map, self); } public DescribeDomainStatisticsSummaryResponseBodyStatisticsStatistic setCount(Long count) { this.count = count; return this; } public Long getCount() { return this.count; } public DescribeDomainStatisticsSummaryResponseBodyStatisticsStatistic setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeDomainStatisticsSummaryResponseBodyStatisticsStatistic setDomainType(String domainType) { this.domainType = domainType; return this; } public String getDomainType() { return this.domainType; } public DescribeDomainStatisticsSummaryResponseBodyStatisticsStatistic setResolveAnalysisStatus(String resolveAnalysisStatus) { this.resolveAnalysisStatus = resolveAnalysisStatus; return this; } public String getResolveAnalysisStatus() { return this.resolveAnalysisStatus; } } public static class DescribeDomainStatisticsSummaryResponseBodyStatistics extends TeaModel { @NameInMap("Statistic") public java.util.List<DescribeDomainStatisticsSummaryResponseBodyStatisticsStatistic> statistic; public static DescribeDomainStatisticsSummaryResponseBodyStatistics build(java.util.Map<String, ?> map) throws Exception { DescribeDomainStatisticsSummaryResponseBodyStatistics self = new DescribeDomainStatisticsSummaryResponseBodyStatistics(); return TeaModel.build(map, self); } public DescribeDomainStatisticsSummaryResponseBodyStatistics setStatistic(java.util.List<DescribeDomainStatisticsSummaryResponseBodyStatisticsStatistic> statistic) { this.statistic = statistic; return this; } public java.util.List<DescribeDomainStatisticsSummaryResponseBodyStatisticsStatistic> getStatistic() { return this.statistic; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDomainsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainsRequest extends TeaModel { /** * <p>The ID of the domain name group. If you do not specify this parameter, all domain names are queried by default.</p> * * <strong>example:</strong> * <p>2223</p> */ @NameInMap("GroupId") public String groupId; /** * <p>The keyword for searches in &quot;%KeyWord%&quot; mode. The value is not case-sensitive.</p> * * <strong>example:</strong> * <p>com</p> */ @NameInMap("KeyWord") public String keyWord; /** * <p>The language type.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The number of the page to return. Pages start from page <strong>1</strong>. Default value: <strong>1</strong>.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Long pageNumber; /** * <p>The number of entries to return on each page. Maximum value: <strong>100</strong>. Default value: <strong>20</strong>.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Long pageSize; /** * <p>The ID of the resource group.</p> * * <strong>example:</strong> * <p>rg-resourcegroupid01</p> */ @NameInMap("ResourceGroupId") public String resourceGroupId; /** * <p>The search mode. Valid values:</p> * <ul> * <li><strong>LIKE</strong>: fuzzy match.</li> * <li><strong>EXACT</strong>: exact match.</li> * </ul> * * <strong>example:</strong> * <p>LIKE</p> */ @NameInMap("SearchMode") public String searchMode; /** * <p>Specifies whether to query the starmark of the domain name.</p> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("Starmark") public Boolean starmark; public static DescribeDomainsRequest build(java.util.Map<String, ?> map) throws Exception { DescribeDomainsRequest self = new DescribeDomainsRequest(); return TeaModel.build(map, self); } public DescribeDomainsRequest setGroupId(String groupId) { this.groupId = groupId; return this; } public String getGroupId() { return this.groupId; } public DescribeDomainsRequest setKeyWord(String keyWord) { this.keyWord = keyWord; return this; } public String getKeyWord() { return this.keyWord; } public DescribeDomainsRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeDomainsRequest setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public DescribeDomainsRequest setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public DescribeDomainsRequest setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; return this; } public String getResourceGroupId() { return this.resourceGroupId; } public DescribeDomainsRequest setSearchMode(String searchMode) { this.searchMode = searchMode; return this; } public String getSearchMode() { return this.searchMode; } public DescribeDomainsRequest setStarmark(Boolean starmark) { this.starmark = starmark; return this; } public Boolean getStarmark() { return this.starmark; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeDomainsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeDomainsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeDomainsResponseBody body; public static DescribeDomainsResponse build(java.util.Map<String, ?> map) throws Exception { DescribeDomainsResponse self = new DescribeDomainsResponse(); return TeaModel.build(map, self); } public DescribeDomainsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeDomainsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeDomainsResponse setBody(DescribeDomainsResponseBody body) { this.body = body; return this; } public DescribeDomainsResponseBody getBody() { return this.body; } }