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/DescribeRecordLogsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeRecordLogsRequest 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 keyword for searches in &quot;%KeyWord%&quot; mode. The value is not case-sensitive.</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 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 start date of the query. Specify the start date in the <strong>YYYY-MM-DD</strong> format.</p> * * <strong>example:</strong> * <p>2015-12-12</p> */ @NameInMap("StartDate") public String startDate; /** * <p>The IP address of the client.</p> * * <strong>example:</strong> * <p>1.1.1.1</p> */ @NameInMap("UserClientIp") public String userClientIp; /** * <p>The end date of the query. Specify the end date in the <strong>YYYY-MM-DD</strong> format.</p> * * <strong>example:</strong> * <p>2015-12-12</p> */ @NameInMap("endDate") public String endDate; public static DescribeRecordLogsRequest build(java.util.Map<String, ?> map) throws Exception { DescribeRecordLogsRequest self = new DescribeRecordLogsRequest(); return TeaModel.build(map, self); } public DescribeRecordLogsRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeRecordLogsRequest setKeyWord(String keyWord) { this.keyWord = keyWord; return this; } public String getKeyWord() { return this.keyWord; } public DescribeRecordLogsRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeRecordLogsRequest setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public DescribeRecordLogsRequest setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public DescribeRecordLogsRequest setStartDate(String startDate) { this.startDate = startDate; return this; } public String getStartDate() { return this.startDate; } public DescribeRecordLogsRequest setUserClientIp(String userClientIp) { this.userClientIp = userClientIp; return this; } public String getUserClientIp() { return this.userClientIp; } public DescribeRecordLogsRequest 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/DescribeRecordLogsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeRecordLogsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeRecordLogsResponseBody body; public static DescribeRecordLogsResponse build(java.util.Map<String, ?> map) throws Exception { DescribeRecordLogsResponse self = new DescribeRecordLogsResponse(); return TeaModel.build(map, self); } public DescribeRecordLogsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeRecordLogsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeRecordLogsResponse setBody(DescribeRecordLogsResponseBody body) { this.body = body; return this; } public DescribeRecordLogsResponseBody 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/DescribeRecordLogsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeRecordLogsResponseBody extends TeaModel { /** * <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 operation logs.</p> */ @NameInMap("RecordLogs") public DescribeRecordLogsResponseBodyRecordLogs recordLogs; /** * <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 DescribeRecordLogsResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeRecordLogsResponseBody self = new DescribeRecordLogsResponseBody(); return TeaModel.build(map, self); } public DescribeRecordLogsResponseBody setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public DescribeRecordLogsResponseBody setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public DescribeRecordLogsResponseBody setRecordLogs(DescribeRecordLogsResponseBodyRecordLogs recordLogs) { this.recordLogs = recordLogs; return this; } public DescribeRecordLogsResponseBodyRecordLogs getRecordLogs() { return this.recordLogs; } public DescribeRecordLogsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeRecordLogsResponseBody setTotalCount(Long totalCount) { this.totalCount = totalCount; return this; } public Long getTotalCount() { return this.totalCount; } public static class DescribeRecordLogsResponseBodyRecordLogsRecordLog extends TeaModel { /** * <p>The operation that you performed.</p> */ @NameInMap("Action") public String action; /** * <p>The time when you performed the operation.</p> * * <strong>example:</strong> * <p>2015-12-12T09:23Z</p> */ @NameInMap("ActionTime") public String actionTime; /** * <p>The time when you performed the operation. 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>134514540000</p> */ @NameInMap("ActionTimestamp") public Long actionTimestamp; /** * <p>The IP address of the operator.</p> * * <strong>example:</strong> * <p>182.92.253.XX</p> */ @NameInMap("ClientIp") public String clientIp; /** * <p>The operation message.</p> */ @NameInMap("Message") public String message; public static DescribeRecordLogsResponseBodyRecordLogsRecordLog build(java.util.Map<String, ?> map) throws Exception { DescribeRecordLogsResponseBodyRecordLogsRecordLog self = new DescribeRecordLogsResponseBodyRecordLogsRecordLog(); return TeaModel.build(map, self); } public DescribeRecordLogsResponseBodyRecordLogsRecordLog setAction(String action) { this.action = action; return this; } public String getAction() { return this.action; } public DescribeRecordLogsResponseBodyRecordLogsRecordLog setActionTime(String actionTime) { this.actionTime = actionTime; return this; } public String getActionTime() { return this.actionTime; } public DescribeRecordLogsResponseBodyRecordLogsRecordLog setActionTimestamp(Long actionTimestamp) { this.actionTimestamp = actionTimestamp; return this; } public Long getActionTimestamp() { return this.actionTimestamp; } public DescribeRecordLogsResponseBodyRecordLogsRecordLog setClientIp(String clientIp) { this.clientIp = clientIp; return this; } public String getClientIp() { return this.clientIp; } public DescribeRecordLogsResponseBodyRecordLogsRecordLog setMessage(String message) { this.message = message; return this; } public String getMessage() { return this.message; } } public static class DescribeRecordLogsResponseBodyRecordLogs extends TeaModel { @NameInMap("RecordLog") public java.util.List<DescribeRecordLogsResponseBodyRecordLogsRecordLog> recordLog; public static DescribeRecordLogsResponseBodyRecordLogs build(java.util.Map<String, ?> map) throws Exception { DescribeRecordLogsResponseBodyRecordLogs self = new DescribeRecordLogsResponseBodyRecordLogs(); return TeaModel.build(map, self); } public DescribeRecordLogsResponseBodyRecordLogs setRecordLog(java.util.List<DescribeRecordLogsResponseBodyRecordLogsRecordLog> recordLog) { this.recordLog = recordLog; return this; } public java.util.List<DescribeRecordLogsResponseBodyRecordLogsRecordLog> getRecordLog() { return this.recordLog; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeRecordResolveStatisticsSummaryRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeRecordResolveStatisticsSummaryRequest extends TeaModel { /** * <p>The order in which the returned entries are sorted. Valid values:</p> * <ul> * <li>DESC (default): descending order</li> * <li>ASC: ascending order</li> * </ul> * * <strong>example:</strong> * <p>DESC</p> */ @NameInMap("Direction") public String direction; /** * <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 type of the domain name. The parameter value is not case-sensitive. Valid values:</p> * <ul> * <li>PUBLIC (default): hosted public domain name</li> * <li>CACHE: cache-accelerated domain name</li> * </ul> * * <strong>example:</strong> * <p>PUBLIC</p> */ @NameInMap("DomainType") public String domainType; /** * <p>The end date of the time range to be queried. Specify the time in the yyyy-MM-dd format, such as 2023-03-13.</p> * * <strong>example:</strong> * <p>2023-03-29</p> */ @NameInMap("EndDate") public String endDate; /** * <p>The keyword. Keyword is used together with SearchMode.</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>LIKE</p> */ @NameInMap("SearchMode") public String searchMode; /** * <p>The start date of the time range to be queried. Specify the time in the yyyy-MM-dd format, such as 2023-03-01.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>2023-03-29</p> */ @NameInMap("StartDate") public String startDate; /** * <p>The threshold for the number of Domain Name System (DNS) requests. You can query the subdomain names at the specified quantity level of DNS requests and query the number of DNS requests for each subdomain name.</p> * <p>If you do not specify this parameter, the data about the subdomain names that have DNS requests is obtained.</p> * <p>If you set this parameter to a value less than 0, the data about all subdomain names is obtained.</p> * <p>If you set this parameter to 0, the data about the subdomain 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 subdomain 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 DescribeRecordResolveStatisticsSummaryRequest build(java.util.Map<String, ?> map) throws Exception { DescribeRecordResolveStatisticsSummaryRequest self = new DescribeRecordResolveStatisticsSummaryRequest(); return TeaModel.build(map, self); } public DescribeRecordResolveStatisticsSummaryRequest setDirection(String direction) { this.direction = direction; return this; } public String getDirection() { return this.direction; } public DescribeRecordResolveStatisticsSummaryRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeRecordResolveStatisticsSummaryRequest setDomainType(String domainType) { this.domainType = domainType; return this; } public String getDomainType() { return this.domainType; } public DescribeRecordResolveStatisticsSummaryRequest setEndDate(String endDate) { this.endDate = endDate; return this; } public String getEndDate() { return this.endDate; } public DescribeRecordResolveStatisticsSummaryRequest setKeyword(String keyword) { this.keyword = keyword; return this; } public String getKeyword() { return this.keyword; } public DescribeRecordResolveStatisticsSummaryRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeRecordResolveStatisticsSummaryRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public DescribeRecordResolveStatisticsSummaryRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public DescribeRecordResolveStatisticsSummaryRequest setSearchMode(String searchMode) { this.searchMode = searchMode; return this; } public String getSearchMode() { return this.searchMode; } public DescribeRecordResolveStatisticsSummaryRequest setStartDate(String startDate) { this.startDate = startDate; return this; } public String getStartDate() { return this.startDate; } public DescribeRecordResolveStatisticsSummaryRequest 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/DescribeRecordResolveStatisticsSummaryResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeRecordResolveStatisticsSummaryResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeRecordResolveStatisticsSummaryResponseBody body; public static DescribeRecordResolveStatisticsSummaryResponse build(java.util.Map<String, ?> map) throws Exception { DescribeRecordResolveStatisticsSummaryResponse self = new DescribeRecordResolveStatisticsSummaryResponse(); return TeaModel.build(map, self); } public DescribeRecordResolveStatisticsSummaryResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeRecordResolveStatisticsSummaryResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeRecordResolveStatisticsSummaryResponse setBody(DescribeRecordResolveStatisticsSummaryResponseBody body) { this.body = body; return this; } public DescribeRecordResolveStatisticsSummaryResponseBody 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/DescribeRecordResolveStatisticsSummaryResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeRecordResolveStatisticsSummaryResponseBody extends TeaModel { /** * <p>The page number. 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 per page. Valid values: <strong>1 to 500</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>389DFFA3-77A5-4A9E-BF3D-147C6F98A5BA</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The statistics.</p> */ @NameInMap("Statistics") public java.util.List<DescribeRecordResolveStatisticsSummaryResponseBodyStatistics> 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 DescribeRecordResolveStatisticsSummaryResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeRecordResolveStatisticsSummaryResponseBody self = new DescribeRecordResolveStatisticsSummaryResponseBody(); return TeaModel.build(map, self); } public DescribeRecordResolveStatisticsSummaryResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public DescribeRecordResolveStatisticsSummaryResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public DescribeRecordResolveStatisticsSummaryResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeRecordResolveStatisticsSummaryResponseBody setStatistics(java.util.List<DescribeRecordResolveStatisticsSummaryResponseBodyStatistics> statistics) { this.statistics = statistics; return this; } public java.util.List<DescribeRecordResolveStatisticsSummaryResponseBodyStatistics> getStatistics() { return this.statistics; } public DescribeRecordResolveStatisticsSummaryResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public DescribeRecordResolveStatisticsSummaryResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class DescribeRecordResolveStatisticsSummaryResponseBodyStatistics extends TeaModel { /** * <p>The number of DNS requests.</p> * * <strong>example:</strong> * <p>330</p> */ @NameInMap("Count") public String count; /** * <p>The subdomain name.</p> * * <strong>example:</strong> * <p>tes.example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The type of the domain name. The parameter value is not case-sensitive. Valid values:</p> * <ul> * <li>PUBLIC (default): hosted public domain name</li> * <li>CACHE: cache-accelerated domain name</li> * </ul> * * <strong>example:</strong> * <p>PUBLIC</p> */ @NameInMap("DomainType") public String domainType; /** * <p>The subdomain.</p> * * <strong>example:</strong> * <p>test.example.com</p> */ @NameInMap("SubDomain") public String subDomain; public static DescribeRecordResolveStatisticsSummaryResponseBodyStatistics build(java.util.Map<String, ?> map) throws Exception { DescribeRecordResolveStatisticsSummaryResponseBodyStatistics self = new DescribeRecordResolveStatisticsSummaryResponseBodyStatistics(); return TeaModel.build(map, self); } public DescribeRecordResolveStatisticsSummaryResponseBodyStatistics setCount(String count) { this.count = count; return this; } public String getCount() { return this.count; } public DescribeRecordResolveStatisticsSummaryResponseBodyStatistics setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeRecordResolveStatisticsSummaryResponseBodyStatistics setDomainType(String domainType) { this.domainType = domainType; return this; } public String getDomainType() { return this.domainType; } public DescribeRecordResolveStatisticsSummaryResponseBodyStatistics 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/DescribeRecordStatisticsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeRecordStatisticsRequest extends TeaModel { /** * <p>The primary domain name.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>dns-example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The type of the domain name. The parameter value is not case-sensitive. Valid values:</p> * <ul> * <li>PUBLIC (default): hosted public domain name</li> * <li>CACHE: cache-accelerated domain name</li> * </ul> * * <strong>example:</strong> * <p>PUBLIC</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.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The hostname. If you want to resolve <a href="http://www.dns-exmaple.top">www.dns-exmaple.top</a>, set Rr to www.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>www</p> */ @NameInMap("Rr") public String rr; /** * <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>If the time range is less than or equal to seven days, data is returned on an hourly basis.````</p> * <p>If the time range is greater than seven days, data is returned on a daily basis.````</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>2019-07-04</p> */ @NameInMap("StartDate") public String startDate; public static DescribeRecordStatisticsRequest build(java.util.Map<String, ?> map) throws Exception { DescribeRecordStatisticsRequest self = new DescribeRecordStatisticsRequest(); return TeaModel.build(map, self); } public DescribeRecordStatisticsRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeRecordStatisticsRequest setDomainType(String domainType) { this.domainType = domainType; return this; } public String getDomainType() { return this.domainType; } public DescribeRecordStatisticsRequest setEndDate(String endDate) { this.endDate = endDate; return this; } public String getEndDate() { return this.endDate; } public DescribeRecordStatisticsRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeRecordStatisticsRequest setRr(String rr) { this.rr = rr; return this; } public String getRr() { return this.rr; } public DescribeRecordStatisticsRequest 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/DescribeRecordStatisticsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeRecordStatisticsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeRecordStatisticsResponseBody body; public static DescribeRecordStatisticsResponse build(java.util.Map<String, ?> map) throws Exception { DescribeRecordStatisticsResponse self = new DescribeRecordStatisticsResponse(); return TeaModel.build(map, self); } public DescribeRecordStatisticsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeRecordStatisticsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeRecordStatisticsResponse setBody(DescribeRecordStatisticsResponseBody body) { this.body = body; return this; } public DescribeRecordStatisticsResponseBody 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/DescribeRecordStatisticsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeRecordStatisticsResponseBody 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 DNS requests.</p> */ @NameInMap("Statistics") public DescribeRecordStatisticsResponseBodyStatistics statistics; public static DescribeRecordStatisticsResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeRecordStatisticsResponseBody self = new DescribeRecordStatisticsResponseBody(); return TeaModel.build(map, self); } public DescribeRecordStatisticsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeRecordStatisticsResponseBody setStatistics(DescribeRecordStatisticsResponseBodyStatistics statistics) { this.statistics = statistics; return this; } public DescribeRecordStatisticsResponseBodyStatistics getStatistics() { return this.statistics; } public static class DescribeRecordStatisticsResponseBodyStatisticsStatistic extends TeaModel { /** * <p>The number of DNS requests.</p> * * <strong>example:</strong> * <p>15292887</p> */ @NameInMap("Count") public Long count; /** * <p>The statistical timestamp. 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 DescribeRecordStatisticsResponseBodyStatisticsStatistic build(java.util.Map<String, ?> map) throws Exception { DescribeRecordStatisticsResponseBodyStatisticsStatistic self = new DescribeRecordStatisticsResponseBodyStatisticsStatistic(); return TeaModel.build(map, self); } public DescribeRecordStatisticsResponseBodyStatisticsStatistic setCount(Long count) { this.count = count; return this; } public Long getCount() { return this.count; } public DescribeRecordStatisticsResponseBodyStatisticsStatistic setTimestamp(Long timestamp) { this.timestamp = timestamp; return this; } public Long getTimestamp() { return this.timestamp; } } public static class DescribeRecordStatisticsResponseBodyStatistics extends TeaModel { @NameInMap("Statistic") public java.util.List<DescribeRecordStatisticsResponseBodyStatisticsStatistic> statistic; public static DescribeRecordStatisticsResponseBodyStatistics build(java.util.Map<String, ?> map) throws Exception { DescribeRecordStatisticsResponseBodyStatistics self = new DescribeRecordStatisticsResponseBodyStatistics(); return TeaModel.build(map, self); } public DescribeRecordStatisticsResponseBodyStatistics setStatistic(java.util.List<DescribeRecordStatisticsResponseBodyStatisticsStatistic> statistic) { this.statistic = statistic; return this; } public java.util.List<DescribeRecordStatisticsResponseBodyStatisticsStatistic> 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/DescribeRecordStatisticsSummaryRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeRecordStatisticsSummaryRequest 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 type of the domain name. The parameter value is not case-sensitive. Valid values:</p> * <ul> * <li>PUBLIC (default): hosted public domain name</li> * <li>CACHE: cache-accelerated domain name</li> * </ul> * * <strong>example:</strong> * <p>PUBLIC</p> */ @NameInMap("DomainType") public String domainType; /** * <p>The end date of the query. Specify the start 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 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.</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; /** * <p>The search mode of the keyword. Valid values:</p> * <ul> * <li><strong>LIKE</strong> (default): fuzzy search</li> * <li><strong>EXACT</strong>: exact search</li> * </ul> * * <strong>example:</strong> * <p>EXACT</p> */ @NameInMap("SearchMode") public String searchMode; /** * <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; /** * <p>The maximum number of DNS requests that you can obtain. You can obtain data about a domain name with DNS request volume less than or equal to the maximum number. For example, if you set this parameter to 100, you can query domain names with less than 100 DNS requests.</p> * * <strong>example:</strong> * <p>12</p> */ @NameInMap("Threshold") public Long threshold; public static DescribeRecordStatisticsSummaryRequest build(java.util.Map<String, ?> map) throws Exception { DescribeRecordStatisticsSummaryRequest self = new DescribeRecordStatisticsSummaryRequest(); return TeaModel.build(map, self); } public DescribeRecordStatisticsSummaryRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeRecordStatisticsSummaryRequest setDomainType(String domainType) { this.domainType = domainType; return this; } public String getDomainType() { return this.domainType; } public DescribeRecordStatisticsSummaryRequest setEndDate(String endDate) { this.endDate = endDate; return this; } public String getEndDate() { return this.endDate; } public DescribeRecordStatisticsSummaryRequest setKeyword(String keyword) { this.keyword = keyword; return this; } public String getKeyword() { return this.keyword; } public DescribeRecordStatisticsSummaryRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeRecordStatisticsSummaryRequest setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public DescribeRecordStatisticsSummaryRequest setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public DescribeRecordStatisticsSummaryRequest setSearchMode(String searchMode) { this.searchMode = searchMode; return this; } public String getSearchMode() { return this.searchMode; } public DescribeRecordStatisticsSummaryRequest setStartDate(String startDate) { this.startDate = startDate; return this; } public String getStartDate() { return this.startDate; } public DescribeRecordStatisticsSummaryRequest 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/DescribeRecordStatisticsSummaryResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeRecordStatisticsSummaryResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeRecordStatisticsSummaryResponseBody body; public static DescribeRecordStatisticsSummaryResponse build(java.util.Map<String, ?> map) throws Exception { DescribeRecordStatisticsSummaryResponse self = new DescribeRecordStatisticsSummaryResponse(); return TeaModel.build(map, self); } public DescribeRecordStatisticsSummaryResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeRecordStatisticsSummaryResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeRecordStatisticsSummaryResponse setBody(DescribeRecordStatisticsSummaryResponseBody body) { this.body = body; return this; } public DescribeRecordStatisticsSummaryResponseBody 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/DescribeRecordStatisticsSummaryResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeRecordStatisticsSummaryResponseBody 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. Valid values: <strong>1 to 100</strong>. Default value: <strong>20</strong>.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>E49F0023-4A98-486F-8BA3-6003D5664105</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The DNS requests.</p> */ @NameInMap("Statistics") public DescribeRecordStatisticsSummaryResponseBodyStatistics statistics; /** * <p>The total number of entries returned.</p> * * <strong>example:</strong> * <p>3</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 DescribeRecordStatisticsSummaryResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeRecordStatisticsSummaryResponseBody self = new DescribeRecordStatisticsSummaryResponseBody(); return TeaModel.build(map, self); } public DescribeRecordStatisticsSummaryResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public DescribeRecordStatisticsSummaryResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public DescribeRecordStatisticsSummaryResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeRecordStatisticsSummaryResponseBody setStatistics(DescribeRecordStatisticsSummaryResponseBodyStatistics statistics) { this.statistics = statistics; return this; } public DescribeRecordStatisticsSummaryResponseBodyStatistics getStatistics() { return this.statistics; } public DescribeRecordStatisticsSummaryResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public DescribeRecordStatisticsSummaryResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class DescribeRecordStatisticsSummaryResponseBodyStatisticsStatistic extends TeaModel { /** * <p>The number of DNS requests.</p> * * <strong>example:</strong> * <p>838711553</p> */ @NameInMap("Count") public Long count; /** * <p>The subdomain.</p> * * <strong>example:</strong> * <p>t1.alitest2.com</p> */ @NameInMap("SubDomain") public String subDomain; public static DescribeRecordStatisticsSummaryResponseBodyStatisticsStatistic build(java.util.Map<String, ?> map) throws Exception { DescribeRecordStatisticsSummaryResponseBodyStatisticsStatistic self = new DescribeRecordStatisticsSummaryResponseBodyStatisticsStatistic(); return TeaModel.build(map, self); } public DescribeRecordStatisticsSummaryResponseBodyStatisticsStatistic setCount(Long count) { this.count = count; return this; } public Long getCount() { return this.count; } public DescribeRecordStatisticsSummaryResponseBodyStatisticsStatistic setSubDomain(String subDomain) { this.subDomain = subDomain; return this; } public String getSubDomain() { return this.subDomain; } } public static class DescribeRecordStatisticsSummaryResponseBodyStatistics extends TeaModel { @NameInMap("Statistic") public java.util.List<DescribeRecordStatisticsSummaryResponseBodyStatisticsStatistic> statistic; public static DescribeRecordStatisticsSummaryResponseBodyStatistics build(java.util.Map<String, ?> map) throws Exception { DescribeRecordStatisticsSummaryResponseBodyStatistics self = new DescribeRecordStatisticsSummaryResponseBodyStatistics(); return TeaModel.build(map, self); } public DescribeRecordStatisticsSummaryResponseBodyStatistics setStatistic(java.util.List<DescribeRecordStatisticsSummaryResponseBodyStatisticsStatistic> statistic) { this.statistic = statistic; return this; } public java.util.List<DescribeRecordStatisticsSummaryResponseBodyStatisticsStatistic> 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/DescribeRecursionRecordRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeRecursionRecordRequest extends TeaModel { /** * <strong>example:</strong> * <p>1917628665627259904</p> */ @NameInMap("RecordId") public String recordId; public static DescribeRecursionRecordRequest build(java.util.Map<String, ?> map) throws Exception { DescribeRecursionRecordRequest self = new DescribeRecursionRecordRequest(); return TeaModel.build(map, self); } public DescribeRecursionRecordRequest setRecordId(String recordId) { this.recordId = recordId; return this; } public String getRecordId() { return this.recordId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeRecursionRecordResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeRecursionRecordResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeRecursionRecordResponseBody body; public static DescribeRecursionRecordResponse build(java.util.Map<String, ?> map) throws Exception { DescribeRecursionRecordResponse self = new DescribeRecursionRecordResponse(); return TeaModel.build(map, self); } public DescribeRecursionRecordResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeRecursionRecordResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeRecursionRecordResponse setBody(DescribeRecursionRecordResponseBody body) { this.body = body; return this; } public DescribeRecursionRecordResponseBody 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/DescribeRecursionRecordResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeRecursionRecordResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>2024-03-23T13:09Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("Priority") public Integer priority; /** * <p>record ID</p> * * <strong>example:</strong> * <p>1903634198947606528</p> */ @NameInMap("RecordId") public String recordId; /** * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; /** * <strong>example:</strong> * <p>6856BCF6-11D6-4D7E-AC53-FD579933522B</p> */ @NameInMap("RequestId") public String requestId; /** * <strong>example:</strong> * <p>test</p> */ @NameInMap("Rr") public String rr; /** * <p>ttl</p> * * <strong>example:</strong> * <p>60</p> */ @NameInMap("Ttl") public Integer ttl; /** * <strong>example:</strong> * <p>A</p> */ @NameInMap("Type") public String type; /** * <strong>example:</strong> * <p>2024-03-29T13:20Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; /** * <strong>example:</strong> * <p>1.1.XX.XX</p> */ @NameInMap("Value") public String value; /** * <strong>example:</strong> * <p>2</p> */ @NameInMap("Weight") public Integer weight; /** * <p>zone ID</p> * * <strong>example:</strong> * <p>172635074000011</p> */ @NameInMap("ZoneId") public String zoneId; public static DescribeRecursionRecordResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeRecursionRecordResponseBody self = new DescribeRecursionRecordResponseBody(); return TeaModel.build(map, self); } public DescribeRecursionRecordResponseBody setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public DescribeRecursionRecordResponseBody setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public DescribeRecursionRecordResponseBody setPriority(Integer priority) { this.priority = priority; return this; } public Integer getPriority() { return this.priority; } public DescribeRecursionRecordResponseBody setRecordId(String recordId) { this.recordId = recordId; return this; } public String getRecordId() { return this.recordId; } public DescribeRecursionRecordResponseBody setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public DescribeRecursionRecordResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeRecursionRecordResponseBody setRr(String rr) { this.rr = rr; return this; } public String getRr() { return this.rr; } public DescribeRecursionRecordResponseBody setTtl(Integer ttl) { this.ttl = ttl; return this; } public Integer getTtl() { return this.ttl; } public DescribeRecursionRecordResponseBody setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public DescribeRecursionRecordResponseBody setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public DescribeRecursionRecordResponseBody setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public DescribeRecursionRecordResponseBody setValue(String value) { this.value = value; return this; } public String getValue() { return this.value; } public DescribeRecursionRecordResponseBody setWeight(Integer weight) { this.weight = weight; return this; } public Integer getWeight() { return this.weight; } public DescribeRecursionRecordResponseBody setZoneId(String zoneId) { this.zoneId = zoneId; return this; } public String getZoneId() { return this.zoneId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeRecursionZoneRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeRecursionZoneRequest extends TeaModel { /** * <strong>example:</strong> * <p>169783221000012</p> */ @NameInMap("ZoneId") public String zoneId; public static DescribeRecursionZoneRequest build(java.util.Map<String, ?> map) throws Exception { DescribeRecursionZoneRequest self = new DescribeRecursionZoneRequest(); return TeaModel.build(map, self); } public DescribeRecursionZoneRequest setZoneId(String zoneId) { this.zoneId = zoneId; return this; } public String getZoneId() { return this.zoneId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeRecursionZoneResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeRecursionZoneResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeRecursionZoneResponseBody body; public static DescribeRecursionZoneResponse build(java.util.Map<String, ?> map) throws Exception { DescribeRecursionZoneResponse self = new DescribeRecursionZoneResponse(); return TeaModel.build(map, self); } public DescribeRecursionZoneResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeRecursionZoneResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeRecursionZoneResponse setBody(DescribeRecursionZoneResponseBody body) { this.body = body; return this; } public DescribeRecursionZoneResponseBody 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/DescribeRecursionZoneResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeRecursionZoneResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>2018-06-06T11:34Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <strong>example:</strong> * <p>1533773400000</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <strong>example:</strong> * <p>SOAR</p> */ @NameInMap("Creator") public String creator; /** * <strong>example:</strong> * <p>SUB</p> */ @NameInMap("CreatorSubType") public String creatorSubType; /** * <strong>example:</strong> * <p>USER</p> */ @NameInMap("CreatorType") public String creatorType; @NameInMap("EffectiveScopes") public DescribeRecursionZoneResponseBodyEffectiveScopes effectiveScopes; /** * <strong>example:</strong> * <p>record</p> */ @NameInMap("ProxyPattern") public String proxyPattern; /** * <strong>example:</strong> * <p>8</p> */ @NameInMap("RecordCount") public Integer recordCount; /** * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; /** * <strong>example:</strong> * <p>6856BCF6-11D6-4D7E-AC53-FD579933522B</p> */ @NameInMap("RequestId") public String requestId; /** * <strong>example:</strong> * <p>2018-01-03T08:57Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; /** * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("UserId") public String userId; /** * <strong>example:</strong> * <p>169438909000011</p> */ @NameInMap("ZoneId") public String zoneId; /** * <strong>example:</strong> * <p>cheng.suow.cc</p> */ @NameInMap("ZoneName") public String zoneName; public static DescribeRecursionZoneResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeRecursionZoneResponseBody self = new DescribeRecursionZoneResponseBody(); return TeaModel.build(map, self); } public DescribeRecursionZoneResponseBody setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public DescribeRecursionZoneResponseBody setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public DescribeRecursionZoneResponseBody setCreator(String creator) { this.creator = creator; return this; } public String getCreator() { return this.creator; } public DescribeRecursionZoneResponseBody setCreatorSubType(String creatorSubType) { this.creatorSubType = creatorSubType; return this; } public String getCreatorSubType() { return this.creatorSubType; } public DescribeRecursionZoneResponseBody setCreatorType(String creatorType) { this.creatorType = creatorType; return this; } public String getCreatorType() { return this.creatorType; } public DescribeRecursionZoneResponseBody setEffectiveScopes(DescribeRecursionZoneResponseBodyEffectiveScopes effectiveScopes) { this.effectiveScopes = effectiveScopes; return this; } public DescribeRecursionZoneResponseBodyEffectiveScopes getEffectiveScopes() { return this.effectiveScopes; } public DescribeRecursionZoneResponseBody setProxyPattern(String proxyPattern) { this.proxyPattern = proxyPattern; return this; } public String getProxyPattern() { return this.proxyPattern; } public DescribeRecursionZoneResponseBody setRecordCount(Integer recordCount) { this.recordCount = recordCount; return this; } public Integer getRecordCount() { return this.recordCount; } public DescribeRecursionZoneResponseBody setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public DescribeRecursionZoneResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeRecursionZoneResponseBody setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public DescribeRecursionZoneResponseBody setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public DescribeRecursionZoneResponseBody setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } public DescribeRecursionZoneResponseBody setZoneId(String zoneId) { this.zoneId = zoneId; return this; } public String getZoneId() { return this.zoneId; } public DescribeRecursionZoneResponseBody setZoneName(String zoneName) { this.zoneName = zoneName; return this; } public String getZoneName() { return this.zoneName; } public static class DescribeRecursionZoneResponseBodyEffectiveScopesEffectiveScopeScopes extends TeaModel { @NameInMap("Scope") public java.util.List<String> scope; public static DescribeRecursionZoneResponseBodyEffectiveScopesEffectiveScopeScopes build(java.util.Map<String, ?> map) throws Exception { DescribeRecursionZoneResponseBodyEffectiveScopesEffectiveScopeScopes self = new DescribeRecursionZoneResponseBodyEffectiveScopesEffectiveScopeScopes(); return TeaModel.build(map, self); } public DescribeRecursionZoneResponseBodyEffectiveScopesEffectiveScopeScopes setScope(java.util.List<String> scope) { this.scope = scope; return this; } public java.util.List<String> getScope() { return this.scope; } } public static class DescribeRecursionZoneResponseBodyEffectiveScopesEffectiveScope extends TeaModel { /** * <strong>example:</strong> * <p>account</p> */ @NameInMap("EffectiveType") public String effectiveType; /** * <strong>example:</strong> * <p>[20003]</p> */ @NameInMap("Scopes") public DescribeRecursionZoneResponseBodyEffectiveScopesEffectiveScopeScopes scopes; public static DescribeRecursionZoneResponseBodyEffectiveScopesEffectiveScope build(java.util.Map<String, ?> map) throws Exception { DescribeRecursionZoneResponseBodyEffectiveScopesEffectiveScope self = new DescribeRecursionZoneResponseBodyEffectiveScopesEffectiveScope(); return TeaModel.build(map, self); } public DescribeRecursionZoneResponseBodyEffectiveScopesEffectiveScope setEffectiveType(String effectiveType) { this.effectiveType = effectiveType; return this; } public String getEffectiveType() { return this.effectiveType; } public DescribeRecursionZoneResponseBodyEffectiveScopesEffectiveScope setScopes(DescribeRecursionZoneResponseBodyEffectiveScopesEffectiveScopeScopes scopes) { this.scopes = scopes; return this; } public DescribeRecursionZoneResponseBodyEffectiveScopesEffectiveScopeScopes getScopes() { return this.scopes; } } public static class DescribeRecursionZoneResponseBodyEffectiveScopes extends TeaModel { @NameInMap("EffectiveScope") public java.util.List<DescribeRecursionZoneResponseBodyEffectiveScopesEffectiveScope> effectiveScope; public static DescribeRecursionZoneResponseBodyEffectiveScopes build(java.util.Map<String, ?> map) throws Exception { DescribeRecursionZoneResponseBodyEffectiveScopes self = new DescribeRecursionZoneResponseBodyEffectiveScopes(); return TeaModel.build(map, self); } public DescribeRecursionZoneResponseBodyEffectiveScopes setEffectiveScope(java.util.List<DescribeRecursionZoneResponseBodyEffectiveScopesEffectiveScope> effectiveScope) { this.effectiveScope = effectiveScope; return this; } public java.util.List<DescribeRecursionZoneResponseBodyEffectiveScopesEffectiveScope> getEffectiveScope() { return this.effectiveScope; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeSubDomainRecordsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeSubDomainRecordsRequest extends TeaModel { /** * <p>The domain name.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The language of the content within the request and response. Default 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 DNS resolution line.</p> * * <strong>example:</strong> * <p>default</p> */ @NameInMap("Line") public String line; /** * <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>If you set SubDomain to <code>a.www.example.com</code> and leave</p> * <p>DomainName empty, the system returns the DNS records that contain the hostname <code>a.www</code> for the domain name example.com. If you set SubDomain to a.<a href="http://www.example.com">www.example.com</a> and set DomainName to <a href="http://www.example.com">www.example.com</a>, the system returns the DNS records that contain the hostname <code>a</code> for the domain name <a href="http://www.example.com">www.example.com</a>. If you set SubDomain to a.<a href="http://www.example.com">www.example.com</a> and set DomainName to a.<a href="http://www.example.com">www.example.com</a>, the system returns the DNS records that contain the hostname <code>@</code> for the domain name a.<a href="http://www.example.com">www.example.com</a>.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>a.<a href="http://www.example.com">www.example.com</a></p> */ @NameInMap("SubDomain") public String subDomain; /** * <p>The type of DNS records. If you do not specify this parameter, all types of DNS records for the subdomain name are returned.</p> * <p>Valid values: <strong>A, MX, CNAME, TXT, REDIRECT_URL, FORWORD_URL, NS, AAAA, and SRV</strong>.</p> * * <strong>example:</strong> * <p>MX</p> */ @NameInMap("Type") public String type; /** * <p>The IP address of the client.</p> * * <strong>example:</strong> * <p>192.0.2.0</p> */ @NameInMap("UserClientIp") public String userClientIp; public static DescribeSubDomainRecordsRequest build(java.util.Map<String, ?> map) throws Exception { DescribeSubDomainRecordsRequest self = new DescribeSubDomainRecordsRequest(); return TeaModel.build(map, self); } public DescribeSubDomainRecordsRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeSubDomainRecordsRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeSubDomainRecordsRequest setLine(String line) { this.line = line; return this; } public String getLine() { return this.line; } public DescribeSubDomainRecordsRequest setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public DescribeSubDomainRecordsRequest setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public DescribeSubDomainRecordsRequest setSubDomain(String subDomain) { this.subDomain = subDomain; return this; } public String getSubDomain() { return this.subDomain; } public DescribeSubDomainRecordsRequest setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public DescribeSubDomainRecordsRequest 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/DescribeSubDomainRecordsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeSubDomainRecordsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeSubDomainRecordsResponseBody body; public static DescribeSubDomainRecordsResponse build(java.util.Map<String, ?> map) throws Exception { DescribeSubDomainRecordsResponse self = new DescribeSubDomainRecordsResponse(); return TeaModel.build(map, self); } public DescribeSubDomainRecordsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeSubDomainRecordsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeSubDomainRecordsResponse setBody(DescribeSubDomainRecordsResponseBody body) { this.body = body; return this; } public DescribeSubDomainRecordsResponseBody 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/DescribeSubDomainRecordsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeSubDomainRecordsResponseBody extends TeaModel { /** * <p>The returned Domain Name System (DNS) records.</p> */ @NameInMap("DomainRecords") public DescribeSubDomainRecordsResponseBodyDomainRecords domainRecords; /** * <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.</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 DescribeSubDomainRecordsResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeSubDomainRecordsResponseBody self = new DescribeSubDomainRecordsResponseBody(); return TeaModel.build(map, self); } public DescribeSubDomainRecordsResponseBody setDomainRecords(DescribeSubDomainRecordsResponseBodyDomainRecords domainRecords) { this.domainRecords = domainRecords; return this; } public DescribeSubDomainRecordsResponseBodyDomainRecords getDomainRecords() { return this.domainRecords; } public DescribeSubDomainRecordsResponseBody setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public DescribeSubDomainRecordsResponseBody setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public DescribeSubDomainRecordsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeSubDomainRecordsResponseBody setTotalCount(Long totalCount) { this.totalCount = totalCount; return this; } public Long getTotalCount() { return this.totalCount; } public static class DescribeSubDomainRecordsResponseBodyDomainRecordsRecord extends TeaModel { /** * <p>The domain name.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The DNS resolution line.</p> * * <strong>example:</strong> * <p>default</p> */ @NameInMap("Line") public String line; /** * <p>The lock status of the DNS record.</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>2</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 DNS record.</p> * * <strong>example:</strong> * <p>600</p> */ @NameInMap("TTL") public Long TTL; /** * <p>The type of the DNS record.</p> * * <strong>example:</strong> * <p>CNAME</p> */ @NameInMap("Type") public String type; /** * <p>The record value.</p> * * <strong>example:</strong> * <p>example.net</p> */ @NameInMap("Value") public String value; /** * <p>The weight of the DNS record.</p> * * <strong>example:</strong> * <p>10</p> */ @NameInMap("Weight") public Integer weight; public static DescribeSubDomainRecordsResponseBodyDomainRecordsRecord build(java.util.Map<String, ?> map) throws Exception { DescribeSubDomainRecordsResponseBodyDomainRecordsRecord self = new DescribeSubDomainRecordsResponseBodyDomainRecordsRecord(); return TeaModel.build(map, self); } public DescribeSubDomainRecordsResponseBodyDomainRecordsRecord setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeSubDomainRecordsResponseBodyDomainRecordsRecord setLine(String line) { this.line = line; return this; } public String getLine() { return this.line; } public DescribeSubDomainRecordsResponseBodyDomainRecordsRecord setLocked(Boolean locked) { this.locked = locked; return this; } public Boolean getLocked() { return this.locked; } public DescribeSubDomainRecordsResponseBodyDomainRecordsRecord setPriority(Long priority) { this.priority = priority; return this; } public Long getPriority() { return this.priority; } public DescribeSubDomainRecordsResponseBodyDomainRecordsRecord setRR(String RR) { this.RR = RR; return this; } public String getRR() { return this.RR; } public DescribeSubDomainRecordsResponseBodyDomainRecordsRecord setRecordId(String recordId) { this.recordId = recordId; return this; } public String getRecordId() { return this.recordId; } public DescribeSubDomainRecordsResponseBodyDomainRecordsRecord setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public DescribeSubDomainRecordsResponseBodyDomainRecordsRecord setStatus(String status) { this.status = status; return this; } public String getStatus() { return this.status; } public DescribeSubDomainRecordsResponseBodyDomainRecordsRecord setTTL(Long TTL) { this.TTL = TTL; return this; } public Long getTTL() { return this.TTL; } public DescribeSubDomainRecordsResponseBodyDomainRecordsRecord setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public DescribeSubDomainRecordsResponseBodyDomainRecordsRecord setValue(String value) { this.value = value; return this; } public String getValue() { return this.value; } public DescribeSubDomainRecordsResponseBodyDomainRecordsRecord setWeight(Integer weight) { this.weight = weight; return this; } public Integer getWeight() { return this.weight; } } public static class DescribeSubDomainRecordsResponseBodyDomainRecords extends TeaModel { @NameInMap("Record") public java.util.List<DescribeSubDomainRecordsResponseBodyDomainRecordsRecord> record; public static DescribeSubDomainRecordsResponseBodyDomainRecords build(java.util.Map<String, ?> map) throws Exception { DescribeSubDomainRecordsResponseBodyDomainRecords self = new DescribeSubDomainRecordsResponseBodyDomainRecords(); return TeaModel.build(map, self); } public DescribeSubDomainRecordsResponseBodyDomainRecords setRecord(java.util.List<DescribeSubDomainRecordsResponseBodyDomainRecordsRecord> record) { this.record = record; return this; } public java.util.List<DescribeSubDomainRecordsResponseBodyDomainRecordsRecord> 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/DescribeSupportLinesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeSupportLinesRequest extends TeaModel { /** * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <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; /** * <strong>example:</strong> * <p>1.1.<em>.</em></p> */ @NameInMap("UserClientIp") public String userClientIp; public static DescribeSupportLinesRequest build(java.util.Map<String, ?> map) throws Exception { DescribeSupportLinesRequest self = new DescribeSupportLinesRequest(); return TeaModel.build(map, self); } public DescribeSupportLinesRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeSupportLinesRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeSupportLinesRequest 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/DescribeSupportLinesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeSupportLinesResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeSupportLinesResponseBody body; public static DescribeSupportLinesResponse build(java.util.Map<String, ?> map) throws Exception { DescribeSupportLinesResponse self = new DescribeSupportLinesResponse(); return TeaModel.build(map, self); } public DescribeSupportLinesResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeSupportLinesResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeSupportLinesResponse setBody(DescribeSupportLinesResponseBody body) { this.body = body; return this; } public DescribeSupportLinesResponseBody 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/DescribeSupportLinesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeSupportLinesResponseBody extends TeaModel { /** * <p>The Alibaba Cloud DNS lines.</p> */ @NameInMap("RecordLines") public DescribeSupportLinesResponseBodyRecordLines recordLines; /** * <strong>example:</strong> * <p>CFDA0830-7D6E-4C13-8632-B57C7EDCF079</p> */ @NameInMap("RequestId") public String requestId; public static DescribeSupportLinesResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeSupportLinesResponseBody self = new DescribeSupportLinesResponseBody(); return TeaModel.build(map, self); } public DescribeSupportLinesResponseBody setRecordLines(DescribeSupportLinesResponseBodyRecordLines recordLines) { this.recordLines = recordLines; return this; } public DescribeSupportLinesResponseBodyRecordLines getRecordLines() { return this.recordLines; } public DescribeSupportLinesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public static class DescribeSupportLinesResponseBodyRecordLinesRecordLine extends TeaModel { /** * <p>The code of the parent line. Currently, no data is returned.</p> * * <strong>example:</strong> * <p>unicom</p> */ @NameInMap("FatherCode") public String fatherCode; /** * <p>The code of the child line.</p> * * <strong>example:</strong> * <p>cn_unicom_shanxi</p> */ @NameInMap("LineCode") public String lineCode; /** * <p>The display name of the line.</p> * * <strong>example:</strong> * <p>China Unicom</p> */ @NameInMap("LineDisplayName") public String lineDisplayName; /** * <p>The name of the child line.</p> * * <strong>example:</strong> * <p>China Unicom_Shanxi</p> */ @NameInMap("LineName") public String lineName; public static DescribeSupportLinesResponseBodyRecordLinesRecordLine build(java.util.Map<String, ?> map) throws Exception { DescribeSupportLinesResponseBodyRecordLinesRecordLine self = new DescribeSupportLinesResponseBodyRecordLinesRecordLine(); return TeaModel.build(map, self); } public DescribeSupportLinesResponseBodyRecordLinesRecordLine setFatherCode(String fatherCode) { this.fatherCode = fatherCode; return this; } public String getFatherCode() { return this.fatherCode; } public DescribeSupportLinesResponseBodyRecordLinesRecordLine setLineCode(String lineCode) { this.lineCode = lineCode; return this; } public String getLineCode() { return this.lineCode; } public DescribeSupportLinesResponseBodyRecordLinesRecordLine setLineDisplayName(String lineDisplayName) { this.lineDisplayName = lineDisplayName; return this; } public String getLineDisplayName() { return this.lineDisplayName; } public DescribeSupportLinesResponseBodyRecordLinesRecordLine setLineName(String lineName) { this.lineName = lineName; return this; } public String getLineName() { return this.lineName; } } public static class DescribeSupportLinesResponseBodyRecordLines extends TeaModel { @NameInMap("RecordLine") public java.util.List<DescribeSupportLinesResponseBodyRecordLinesRecordLine> recordLine; public static DescribeSupportLinesResponseBodyRecordLines build(java.util.Map<String, ?> map) throws Exception { DescribeSupportLinesResponseBodyRecordLines self = new DescribeSupportLinesResponseBodyRecordLines(); return TeaModel.build(map, self); } public DescribeSupportLinesResponseBodyRecordLines setRecordLine(java.util.List<DescribeSupportLinesResponseBodyRecordLinesRecordLine> recordLine) { this.recordLine = recordLine; return this; } public java.util.List<DescribeSupportLinesResponseBodyRecordLinesRecordLine> 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/DescribeTagsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeTagsRequest extends TeaModel { /** * <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; /** * <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 to return per page. Default value: 200.</p> * * <strong>example:</strong> * <p>200</p> */ @NameInMap("PageSize") public Long pageSize; /** * <p>The type of the resource. Valid values:</p> * <ul> * <li><strong>DOMAIN</strong>: domain name</li> * </ul> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>DOMAIN</p> */ @NameInMap("ResourceType") public String resourceType; public static DescribeTagsRequest build(java.util.Map<String, ?> map) throws Exception { DescribeTagsRequest self = new DescribeTagsRequest(); return TeaModel.build(map, self); } public DescribeTagsRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeTagsRequest setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public DescribeTagsRequest setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public DescribeTagsRequest setResourceType(String resourceType) { this.resourceType = resourceType; return this; } public String getResourceType() { return this.resourceType; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeTagsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeTagsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeTagsResponseBody body; public static DescribeTagsResponse build(java.util.Map<String, ?> map) throws Exception { DescribeTagsResponse self = new DescribeTagsResponse(); return TeaModel.build(map, self); } public DescribeTagsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeTagsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeTagsResponse setBody(DescribeTagsResponseBody body) { this.body = body; return this; } public DescribeTagsResponseBody 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/DescribeTagsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeTagsResponseBody 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 Long pageNumber; /** * <p>The number of entries per page. Default value: 200.</p> * * <strong>example:</strong> * <p>200</p> */ @NameInMap("PageSize") public Long pageSize; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>89184F33-48A1-4401-9C0F-40E45DB091AB</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The tags added to the resource.</p> */ @NameInMap("Tags") public java.util.List<DescribeTagsResponseBodyTags> tags; /** * <p>The total number of entries returned.</p> * * <strong>example:</strong> * <p>5</p> */ @NameInMap("TotalCount") public Long totalCount; public static DescribeTagsResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeTagsResponseBody self = new DescribeTagsResponseBody(); return TeaModel.build(map, self); } public DescribeTagsResponseBody setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public DescribeTagsResponseBody setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public DescribeTagsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeTagsResponseBody setTags(java.util.List<DescribeTagsResponseBodyTags> tags) { this.tags = tags; return this; } public java.util.List<DescribeTagsResponseBodyTags> getTags() { return this.tags; } public DescribeTagsResponseBody setTotalCount(Long totalCount) { this.totalCount = totalCount; return this; } public Long getTotalCount() { return this.totalCount; } public static class DescribeTagsResponseBodyTags extends TeaModel { /** * <p>The key of tag N added to the resource.</p> * * <strong>example:</strong> * <p>abc</p> */ @NameInMap("Key") public String key; /** * <p>The values of tags added to the resource.</p> */ @NameInMap("Values") public java.util.List<String> values; public static DescribeTagsResponseBodyTags build(java.util.Map<String, ?> map) throws Exception { DescribeTagsResponseBodyTags self = new DescribeTagsResponseBodyTags(); return TeaModel.build(map, self); } public DescribeTagsResponseBodyTags setKey(String key) { this.key = key; return this; } public String getKey() { return this.key; } public DescribeTagsResponseBodyTags setValues(java.util.List<String> values) { this.values = values; return this; } public java.util.List<String> getValues() { return this.values; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeTransferDomainsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeTransferDomainsRequest extends TeaModel { /** * <p>Specifies the domain name for which you want to view the transfer record.</p> * * <strong>example:</strong> * <p>alidns.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The user ID from which the domain name was transferred to the current account.</p> * * <strong>example:</strong> * <p>123456</p> */ @NameInMap("FromUserId") public Long fromUserId; /** * <p>The language.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The page number. Pages start from page 1. Default value: 1.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Long pageNumber; /** * <p>The number of entries per page. Valid values: 1 to 100. Default value: 20.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Long pageSize; /** * <p>The user ID to which the domain name was transferred from the current account.</p> * * <strong>example:</strong> * <p>123456</p> */ @NameInMap("TargetUserId") public Long targetUserId; /** * <p>The transfer type. Valid values:</p> * <ul> * <li>IN: The domain name was transferred to the current account.</li> * <li>OUT: The domain name was transferred from the current account.</li> * </ul> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>IN</p> */ @NameInMap("TransferType") public String transferType; public static DescribeTransferDomainsRequest build(java.util.Map<String, ?> map) throws Exception { DescribeTransferDomainsRequest self = new DescribeTransferDomainsRequest(); return TeaModel.build(map, self); } public DescribeTransferDomainsRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeTransferDomainsRequest setFromUserId(Long fromUserId) { this.fromUserId = fromUserId; return this; } public Long getFromUserId() { return this.fromUserId; } public DescribeTransferDomainsRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public DescribeTransferDomainsRequest setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public DescribeTransferDomainsRequest setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public DescribeTransferDomainsRequest setTargetUserId(Long targetUserId) { this.targetUserId = targetUserId; return this; } public Long getTargetUserId() { return this.targetUserId; } public DescribeTransferDomainsRequest setTransferType(String transferType) { this.transferType = transferType; return this; } public String getTransferType() { return this.transferType; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/DescribeTransferDomainsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeTransferDomainsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public DescribeTransferDomainsResponseBody body; public static DescribeTransferDomainsResponse build(java.util.Map<String, ?> map) throws Exception { DescribeTransferDomainsResponse self = new DescribeTransferDomainsResponse(); return TeaModel.build(map, self); } public DescribeTransferDomainsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public DescribeTransferDomainsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public DescribeTransferDomainsResponse setBody(DescribeTransferDomainsResponseBody body) { this.body = body; return this; } public DescribeTransferDomainsResponseBody 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/DescribeTransferDomainsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class DescribeTransferDomainsResponseBody extends TeaModel { /** * <p>The domain names that were transferred between accounts.</p> */ @NameInMap("DomainTransfers") public DescribeTransferDomainsResponseBodyDomainTransfers domainTransfers; /** * <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: 1 to 100. Default value: 20.</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 DescribeTransferDomainsResponseBody build(java.util.Map<String, ?> map) throws Exception { DescribeTransferDomainsResponseBody self = new DescribeTransferDomainsResponseBody(); return TeaModel.build(map, self); } public DescribeTransferDomainsResponseBody setDomainTransfers(DescribeTransferDomainsResponseBodyDomainTransfers domainTransfers) { this.domainTransfers = domainTransfers; return this; } public DescribeTransferDomainsResponseBodyDomainTransfers getDomainTransfers() { return this.domainTransfers; } public DescribeTransferDomainsResponseBody setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; return this; } public Long getPageNumber() { return this.pageNumber; } public DescribeTransferDomainsResponseBody setPageSize(Long pageSize) { this.pageSize = pageSize; return this; } public Long getPageSize() { return this.pageSize; } public DescribeTransferDomainsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public DescribeTransferDomainsResponseBody setTotalCount(Long totalCount) { this.totalCount = totalCount; return this; } public Long getTotalCount() { return this.totalCount; } public static class DescribeTransferDomainsResponseBodyDomainTransfersDomainTransfer extends TeaModel { /** * <p>The time when the domain name 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>2019-10-30T07:16Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>The time when the domain name 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>1572419764000</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>The domain name.</p> * * <strong>example:</strong> * <p>test.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The user ID from which the domain name was transferred.</p> * * <strong>example:</strong> * <p>2222</p> */ @NameInMap("FromUserId") public Long fromUserId; /** * <p>The ID of the domain name that was transferred.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("Id") public Long id; /** * <p>The user ID to which the domain name was transferred.</p> * * <strong>example:</strong> * <p>111111</p> */ @NameInMap("TargetUserId") public Long targetUserId; public static DescribeTransferDomainsResponseBodyDomainTransfersDomainTransfer build(java.util.Map<String, ?> map) throws Exception { DescribeTransferDomainsResponseBodyDomainTransfersDomainTransfer self = new DescribeTransferDomainsResponseBodyDomainTransfersDomainTransfer(); return TeaModel.build(map, self); } public DescribeTransferDomainsResponseBodyDomainTransfersDomainTransfer setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public DescribeTransferDomainsResponseBodyDomainTransfersDomainTransfer setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public DescribeTransferDomainsResponseBodyDomainTransfersDomainTransfer setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public DescribeTransferDomainsResponseBodyDomainTransfersDomainTransfer setFromUserId(Long fromUserId) { this.fromUserId = fromUserId; return this; } public Long getFromUserId() { return this.fromUserId; } public DescribeTransferDomainsResponseBodyDomainTransfersDomainTransfer setId(Long id) { this.id = id; return this; } public Long getId() { return this.id; } public DescribeTransferDomainsResponseBodyDomainTransfersDomainTransfer setTargetUserId(Long targetUserId) { this.targetUserId = targetUserId; return this; } public Long getTargetUserId() { return this.targetUserId; } } public static class DescribeTransferDomainsResponseBodyDomainTransfers extends TeaModel { @NameInMap("DomainTransfer") public java.util.List<DescribeTransferDomainsResponseBodyDomainTransfersDomainTransfer> domainTransfer; public static DescribeTransferDomainsResponseBodyDomainTransfers build(java.util.Map<String, ?> map) throws Exception { DescribeTransferDomainsResponseBodyDomainTransfers self = new DescribeTransferDomainsResponseBodyDomainTransfers(); return TeaModel.build(map, self); } public DescribeTransferDomainsResponseBodyDomainTransfers setDomainTransfer(java.util.List<DescribeTransferDomainsResponseBodyDomainTransfersDomainTransfer> domainTransfer) { this.domainTransfer = domainTransfer; return this; } public java.util.List<DescribeTransferDomainsResponseBodyDomainTransfersDomainTransfer> getDomainTransfer() { return this.domainTransfer; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ExecuteGtmRecoveryPlanRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ExecuteGtmRecoveryPlanRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li>zh: Chinese</li> * <li>en: English</li> * </ul> * <p>Default value: English.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The ID of the disaster recovery plan.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>100</p> */ @NameInMap("RecoveryPlanId") public Long recoveryPlanId; public static ExecuteGtmRecoveryPlanRequest build(java.util.Map<String, ?> map) throws Exception { ExecuteGtmRecoveryPlanRequest self = new ExecuteGtmRecoveryPlanRequest(); return TeaModel.build(map, self); } public ExecuteGtmRecoveryPlanRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public ExecuteGtmRecoveryPlanRequest setRecoveryPlanId(Long recoveryPlanId) { this.recoveryPlanId = recoveryPlanId; return this; } public Long getRecoveryPlanId() { return this.recoveryPlanId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ExecuteGtmRecoveryPlanResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ExecuteGtmRecoveryPlanResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public ExecuteGtmRecoveryPlanResponseBody body; public static ExecuteGtmRecoveryPlanResponse build(java.util.Map<String, ?> map) throws Exception { ExecuteGtmRecoveryPlanResponse self = new ExecuteGtmRecoveryPlanResponse(); return TeaModel.build(map, self); } public ExecuteGtmRecoveryPlanResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public ExecuteGtmRecoveryPlanResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public ExecuteGtmRecoveryPlanResponse setBody(ExecuteGtmRecoveryPlanResponseBody body) { this.body = body; return this; } public ExecuteGtmRecoveryPlanResponseBody 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/ExecuteGtmRecoveryPlanResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ExecuteGtmRecoveryPlanResponseBody extends TeaModel { /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>6856BCF6-11D6-4D7E-AC53-FD579933522B</p> */ @NameInMap("RequestId") public String requestId; public static ExecuteGtmRecoveryPlanResponseBody build(java.util.Map<String, ?> map) throws Exception { ExecuteGtmRecoveryPlanResponseBody self = new ExecuteGtmRecoveryPlanResponseBody(); return TeaModel.build(map, self); } public ExecuteGtmRecoveryPlanResponseBody 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/GetMainDomainNameRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class GetMainDomainNameRequest extends TeaModel { /** * <p>The string. The string can be up to 128 characters in length.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p><a href="http://www.example.com">www.example.com</a></p> */ @NameInMap("InputString") public String inputString; /** * <p>The language.</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; public static GetMainDomainNameRequest build(java.util.Map<String, ?> map) throws Exception { GetMainDomainNameRequest self = new GetMainDomainNameRequest(); return TeaModel.build(map, self); } public GetMainDomainNameRequest setInputString(String inputString) { this.inputString = inputString; return this; } public String getInputString() { return this.inputString; } public GetMainDomainNameRequest 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/GetMainDomainNameResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class GetMainDomainNameResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public GetMainDomainNameResponseBody body; public static GetMainDomainNameResponse build(java.util.Map<String, ?> map) throws Exception { GetMainDomainNameResponse self = new GetMainDomainNameResponse(); return TeaModel.build(map, self); } public GetMainDomainNameResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public GetMainDomainNameResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public GetMainDomainNameResponse setBody(GetMainDomainNameResponseBody body) { this.body = body; return this; } public GetMainDomainNameResponseBody 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/GetMainDomainNameResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class GetMainDomainNameResponseBody extends TeaModel { /** * <p>The level of the entered domain name.</p> * * <strong>example:</strong> * <p>2</p> */ @NameInMap("DomainLevel") public Long domainLevel; /** * <p>The domain name.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The hostname.</p> * * <strong>example:</strong> * <p>www</p> */ @NameInMap("RR") public String RR; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; public static GetMainDomainNameResponseBody build(java.util.Map<String, ?> map) throws Exception { GetMainDomainNameResponseBody self = new GetMainDomainNameResponseBody(); return TeaModel.build(map, self); } public GetMainDomainNameResponseBody setDomainLevel(Long domainLevel) { this.domainLevel = domainLevel; return this; } public Long getDomainLevel() { return this.domainLevel; } public GetMainDomainNameResponseBody setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public GetMainDomainNameResponseBody setRR(String RR) { this.RR = RR; return this; } public String getRR() { return this.RR; } public GetMainDomainNameResponseBody 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/GetTxtRecordForVerifyRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class GetTxtRecordForVerifyRequest extends TeaModel { /** * <p>The ID of the Domain Name System (DNS) record. You can call the <a href="https://www.alibabacloud.com/help/zh/dns/api-alidns-2015-01-09-describedomainrecords?spm=a2c63.p38356.help-menu-search-29697.d_0">DescribeDomainRecords</a> operation to obtain the ID.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <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 feature verified by using the TXT record. Valid values:</p> * <ul> * <li>ADD_SUB_DOMAIN: add a subdomain for verification.</li> * <li>RETRIEVAL: add other subdomains for verification</li> * </ul> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>ADD_SUB_DOMAIN</p> */ @NameInMap("Type") public String type; public static GetTxtRecordForVerifyRequest build(java.util.Map<String, ?> map) throws Exception { GetTxtRecordForVerifyRequest self = new GetTxtRecordForVerifyRequest(); return TeaModel.build(map, self); } public GetTxtRecordForVerifyRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public GetTxtRecordForVerifyRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public GetTxtRecordForVerifyRequest 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/GetTxtRecordForVerifyResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class GetTxtRecordForVerifyResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public GetTxtRecordForVerifyResponseBody body; public static GetTxtRecordForVerifyResponse build(java.util.Map<String, ?> map) throws Exception { GetTxtRecordForVerifyResponse self = new GetTxtRecordForVerifyResponse(); return TeaModel.build(map, self); } public GetTxtRecordForVerifyResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public GetTxtRecordForVerifyResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public GetTxtRecordForVerifyResponse setBody(GetTxtRecordForVerifyResponseBody body) { this.body = body; return this; } public GetTxtRecordForVerifyResponseBody 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/GetTxtRecordForVerifyResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class GetTxtRecordForVerifyResponseBody extends TeaModel { /** * <p>The domain name.</p> * <blockquote> * <p> If you do not specify this parameter, it is not returned.</p> * </blockquote> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The top-level domain name.</p> * * <strong>example:</strong> * <p>com</p> */ @NameInMap("ParentDomainName") public String parentDomainName; /** * <p>The hostname.</p> * * <strong>example:</strong> * <p>aliyunRetrieval</p> */ @NameInMap("RR") public String RR; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>9CC0D642-49D4-48DE-A1A5-9F218652E4A7</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The record value.</p> * <blockquote> * <p> The validity period is three days.</p> * </blockquote> * * <strong>example:</strong> * <p>c99419e6997f41daaa3e*****</p> */ @NameInMap("Value") public String value; public static GetTxtRecordForVerifyResponseBody build(java.util.Map<String, ?> map) throws Exception { GetTxtRecordForVerifyResponseBody self = new GetTxtRecordForVerifyResponseBody(); return TeaModel.build(map, self); } public GetTxtRecordForVerifyResponseBody setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public GetTxtRecordForVerifyResponseBody setParentDomainName(String parentDomainName) { this.parentDomainName = parentDomainName; return this; } public String getParentDomainName() { return this.parentDomainName; } public GetTxtRecordForVerifyResponseBody setRR(String RR) { this.RR = RR; return this; } public String getRR() { return this.RR; } public GetTxtRecordForVerifyResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public GetTxtRecordForVerifyResponseBody 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/ListCloudGtmAddressPoolsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmAddressPoolsRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li>zh-CN: Chinese</li> * <li>en-US (default): English</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>Address pool name.</p> * * <strong>example:</strong> * <p>AddressPool-1</p> */ @NameInMap("AddressPoolName") public String addressPoolName; /** * <p>The type of the address pool. Valid values:</p> * <ul> * <li>IPv4: indicates that the service address to be resolved is an IPv4 address.</li> * <li>IPv6: indicates that the service address to be resolved is an IPv6 address.</li> * <li>domain: indicates that the service address to be resolved is a domain name.</li> * </ul> * * <strong>example:</strong> * <p>IPv4</p> */ @NameInMap("AddressPoolType") public String addressPoolType; /** * <p>The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.</p> * * <strong>example:</strong> * <p>1ae05db4-10e7-11ef-b126-00163e24**22</p> */ @NameInMap("ClientToken") public String clientToken; /** * <p>The enabling state of the address pool. Valid values:</p> * <ul> * <li>enable: The address pool is enabled.</li> * <li>disable: The address pool is disabled.</li> * </ul> * * <strong>example:</strong> * <p>enable</p> */ @NameInMap("EnableStatus") public String enableStatus; /** * <p>Current page number, starting at <strong>1</strong>, default is <strong>1</strong>.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of rows per page when paginating queries, with a maximum value of <strong>100</strong>, and a default of <strong>20</strong>.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>The additional description of the address pool.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; public static ListCloudGtmAddressPoolsRequest build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAddressPoolsRequest self = new ListCloudGtmAddressPoolsRequest(); return TeaModel.build(map, self); } public ListCloudGtmAddressPoolsRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public ListCloudGtmAddressPoolsRequest setAddressPoolName(String addressPoolName) { this.addressPoolName = addressPoolName; return this; } public String getAddressPoolName() { return this.addressPoolName; } public ListCloudGtmAddressPoolsRequest setAddressPoolType(String addressPoolType) { this.addressPoolType = addressPoolType; return this; } public String getAddressPoolType() { return this.addressPoolType; } public ListCloudGtmAddressPoolsRequest setClientToken(String clientToken) { this.clientToken = clientToken; return this; } public String getClientToken() { return this.clientToken; } public ListCloudGtmAddressPoolsRequest setEnableStatus(String enableStatus) { this.enableStatus = enableStatus; return this; } public String getEnableStatus() { return this.enableStatus; } public ListCloudGtmAddressPoolsRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public ListCloudGtmAddressPoolsRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public ListCloudGtmAddressPoolsRequest setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ListCloudGtmAddressPoolsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmAddressPoolsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public ListCloudGtmAddressPoolsResponseBody body; public static ListCloudGtmAddressPoolsResponse build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAddressPoolsResponse self = new ListCloudGtmAddressPoolsResponse(); return TeaModel.build(map, self); } public ListCloudGtmAddressPoolsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public ListCloudGtmAddressPoolsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public ListCloudGtmAddressPoolsResponse setBody(ListCloudGtmAddressPoolsResponseBody body) { this.body = body; return this; } public ListCloudGtmAddressPoolsResponseBody 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/ListCloudGtmAddressPoolsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmAddressPoolsResponseBody extends TeaModel { /** * <p>The address pools.</p> */ @NameInMap("AddressPools") public ListCloudGtmAddressPoolsResponseBodyAddressPools addressPools; /** * <p>Current page number, starting at <strong>1</strong>, default is <strong>1</strong>.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of rows per page when paginating queries, with a maximum value of 100 and a default of 20.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>Unique request identification code.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <p>Total number of entries in the address pool.</p> * * <strong>example:</strong> * <p>11</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <p>Total number of pages.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("TotalPages") public Integer totalPages; public static ListCloudGtmAddressPoolsResponseBody build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAddressPoolsResponseBody self = new ListCloudGtmAddressPoolsResponseBody(); return TeaModel.build(map, self); } public ListCloudGtmAddressPoolsResponseBody setAddressPools(ListCloudGtmAddressPoolsResponseBodyAddressPools addressPools) { this.addressPools = addressPools; return this; } public ListCloudGtmAddressPoolsResponseBodyAddressPools getAddressPools() { return this.addressPools; } public ListCloudGtmAddressPoolsResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public ListCloudGtmAddressPoolsResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public ListCloudGtmAddressPoolsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public ListCloudGtmAddressPoolsResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public ListCloudGtmAddressPoolsResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasksHealthTask extends TeaModel { /** * <p>The target service port for health checks. When the Ping protocol is selected for health checks, configuration of the service port is not supported.</p> * * <strong>example:</strong> * <p>80</p> */ @NameInMap("Port") public Integer port; /** * <p>The ID of the health check template.</p> * * <strong>example:</strong> * <p>mtp-895180524251002880</p> */ @NameInMap("TemplateId") public String templateId; /** * <p>Health check template name.</p> * * <strong>example:</strong> * <p>IPv4-Ping</p> */ @NameInMap("TemplateName") public String templateName; public static ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasksHealthTask build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasksHealthTask self = new ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasksHealthTask(); return TeaModel.build(map, self); } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasksHealthTask setPort(Integer port) { this.port = port; return this; } public Integer getPort() { return this.port; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasksHealthTask setTemplateId(String templateId) { this.templateId = templateId; return this; } public String getTemplateId() { return this.templateId; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasksHealthTask setTemplateName(String templateName) { this.templateName = templateName; return this; } public String getTemplateName() { return this.templateName; } } public static class ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasks extends TeaModel { @NameInMap("HealthTask") public java.util.List<ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasksHealthTask> healthTask; public static ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasks build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasks self = new ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasks(); return TeaModel.build(map, self); } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasks setHealthTask(java.util.List<ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasksHealthTask> healthTask) { this.healthTask = healthTask; return this; } public java.util.List<ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasksHealthTask> getHealthTask() { return this.healthTask; } } public static class ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressRequestSource extends TeaModel { @NameInMap("RequestSource") public java.util.List<String> requestSource; public static ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressRequestSource build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressRequestSource self = new ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressRequestSource(); return TeaModel.build(map, self); } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressRequestSource setRequestSource(java.util.List<String> requestSource) { this.requestSource = requestSource; return this; } public java.util.List<String> getRequestSource() { return this.requestSource; } } public static class ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress extends TeaModel { /** * <p>IP address or domain name.</p> * * <strong>example:</strong> * <p>223.5.XX.XX</p> */ @NameInMap("Address") public String address; /** * <p>The address ID. This ID uniquely identifies the address.</p> * * <strong>example:</strong> * <p>addr-895182181143688192</p> */ @NameInMap("AddressId") public String addressId; /** * <p>Address ownership information, not supported in the current version.</p> * * <strong>example:</strong> * <p>The current version does not support returning this parameter.</p> */ @NameInMap("AttributeInfo") public String attributeInfo; /** * <p>The failover mode that is used when address exceptions are identified. Valid values:</p> * <ul> * <li>auto: the automatic mode. The system determines whether to return an address based on the health check results. If the address fails health checks, the system does not return the address. If the address passes health checks, the system returns the address.</li> * <li>manual: the manual mode. If an address is in the unavailable state, the address is not returned for DNS requests even if the address passes health checks. If an address is in the available state, the address is returned for DNS requests even if an alert is triggered when the address fails health checks.</li> * </ul> * * <strong>example:</strong> * <p>auto</p> */ @NameInMap("AvailableMode") public String availableMode; /** * <p>The availability state of the address. Valid values:</p> * <ul> * <li>available: The address is available.</li> * <li>unavailable: The address is unavailable.</li> * </ul> * * <strong>example:</strong> * <p>available</p> */ @NameInMap("AvailableStatus") public String availableStatus; /** * <p>Address creation time.</p> * * <strong>example:</strong> * <p>2024-03-15T01:46Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>Address creation time (timestamp).</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>Address enable status:</p> * <ul> * <li>enable: Enabled status</li> * <li>disable: Disabled status</li> * </ul> * * <strong>example:</strong> * <p>enable</p> */ @NameInMap("EnableStatus") public String enableStatus; /** * <p>The condition for determining the health status of the address. Valid values:</p> * <ul> * <li>any_ok: The health check results of at least one health check template are normal.</li> * <li>p30_ok: The health check results of at least 30% of health check templates are normal.</li> * <li>p50_ok: The health check results of at least 50% of health check templates are normal.</li> * <li>p70_ok: The health check results of at least 70% of health check templates are normal.</li> * <li>all_ok: The health check results of all health check templates are normal.</li> * </ul> * * <strong>example:</strong> * <p>any_ok</p> */ @NameInMap("HealthJudgement") public String healthJudgement; /** * <p>The health check state of the address. Valid values:</p> * <ul> * <li>ok: The address passes all health checks of the referenced health check templates.</li> * <li>ok_alert: The address fails some health checks of the referenced health check templates but the address is deemed normal.</li> * <li>ok_no_monitor: The address does not reference any health check template and is normal.</li> * <li>exceptional: The address fails some or all health checks of the referenced health check templates and the address is deemed abnormal.</li> * </ul> * * <strong>example:</strong> * <p>ok</p> */ @NameInMap("HealthStatus") public String healthStatus; /** * <p>The health check tasks.</p> */ @NameInMap("HealthTasks") public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasks healthTasks; /** * <p>The availability state of the address when AvailableMode is set to manual for the address. Valid values:</p> * <ul> * <li>available: The address is available. In this state, the address is returned for DNS requests even if an alert is triggered when the address fails health checks.</li> * <li>unavailable: The address is unavailable. In this state, the address is not returned for DNS requests even if the address passes health checks.</li> * </ul> * * <strong>example:</strong> * <p>available</p> */ @NameInMap("ManualAvailableStatus") public String manualAvailableStatus; /** * <p>Address name.</p> * * <strong>example:</strong> * <p>Address-1</p> */ @NameInMap("Name") public String name; /** * <p>Address remarks.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; /** * <p>List of request sources.</p> */ @NameInMap("RequestSource") public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressRequestSource requestSource; /** * <p>Indicates whether the mode of the sequence policy for load balancing between address pools is non-preemptive. This parameter is available only for the multicloud integration scenario. Valid values:</p> * <ul> * <li>true</li> * <li>false</li> * </ul> * * <strong>example:</strong> * <p>false</p> */ @NameInMap("SeqNonPreemptiveSchedule") public Boolean seqNonPreemptiveSchedule; /** * <p>Sequence number, indicating the priority of address return, where smaller numbers have higher priority.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("SerialNumber") public Integer serialNumber; /** * <p>Address type:</p> * <ul> * <li>IPv4: IPv4 address</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 last time the address was modified.</p> * * <strong>example:</strong> * <p>2024-03-15T01:46Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <p>The last modification time of the address (timestamp).</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; /** * <p>Weight value (integer between 1 and 100), supports setting different weight values for each address, enabling resolution queries to return addresses according to the weight ratio.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("WeightValue") public Integer weightValue; public static ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress self = new ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress(); return TeaModel.build(map, self); } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setAddress(String address) { this.address = address; return this; } public String getAddress() { return this.address; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setAddressId(String addressId) { this.addressId = addressId; return this; } public String getAddressId() { return this.addressId; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setAttributeInfo(String attributeInfo) { this.attributeInfo = attributeInfo; return this; } public String getAttributeInfo() { return this.attributeInfo; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setAvailableMode(String availableMode) { this.availableMode = availableMode; return this; } public String getAvailableMode() { return this.availableMode; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setAvailableStatus(String availableStatus) { this.availableStatus = availableStatus; return this; } public String getAvailableStatus() { return this.availableStatus; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setEnableStatus(String enableStatus) { this.enableStatus = enableStatus; return this; } public String getEnableStatus() { return this.enableStatus; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setHealthJudgement(String healthJudgement) { this.healthJudgement = healthJudgement; return this; } public String getHealthJudgement() { return this.healthJudgement; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setHealthStatus(String healthStatus) { this.healthStatus = healthStatus; return this; } public String getHealthStatus() { return this.healthStatus; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setHealthTasks(ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasks healthTasks) { this.healthTasks = healthTasks; return this; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressHealthTasks getHealthTasks() { return this.healthTasks; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setManualAvailableStatus(String manualAvailableStatus) { this.manualAvailableStatus = manualAvailableStatus; return this; } public String getManualAvailableStatus() { return this.manualAvailableStatus; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setRequestSource(ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressRequestSource requestSource) { this.requestSource = requestSource; return this; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddressRequestSource getRequestSource() { return this.requestSource; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setSeqNonPreemptiveSchedule(Boolean seqNonPreemptiveSchedule) { this.seqNonPreemptiveSchedule = seqNonPreemptiveSchedule; return this; } public Boolean getSeqNonPreemptiveSchedule() { return this.seqNonPreemptiveSchedule; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setSerialNumber(Integer serialNumber) { this.serialNumber = serialNumber; return this; } public Integer getSerialNumber() { return this.serialNumber; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress setWeightValue(Integer weightValue) { this.weightValue = weightValue; return this; } public Integer getWeightValue() { return this.weightValue; } } public static class ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddresses extends TeaModel { @NameInMap("Address") public java.util.List<ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress> address; public static ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddresses build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddresses self = new ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddresses(); return TeaModel.build(map, self); } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddresses setAddress(java.util.List<ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress> address) { this.address = address; return this; } public java.util.List<ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddressesAddress> getAddress() { return this.address; } } public static class ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool extends TeaModel { /** * <p>Load balancing policy among addresses in the address pool:</p> * <ul> * <li>round_robin: Round-robin, for any source of DNS resolution requests, all addresses are returned. The order of all addresses is rotated each time.</li> * <li>sequence: Sequential, for any source of DNS resolution requests, the address with the smaller sequence number (the sequence number indicates the priority of address returns, with smaller numbers having higher priority) is returned. If the address with the smaller sequence number is unavailable, the next address with a smaller sequence number is returned.</li> * <li>weight: Weighted, supports setting different weight values for each address, realizing the return of addresses according to the ratio of weights in resolution queries.</li> * <li>source_nearest: Source-nearest, i.e., intelligent resolution function, where GTM can return different addresses based on the source of different DNS resolution requests, achieving the effect of users accessing nearby.</li> * </ul> * * <strong>example:</strong> * <p>round_robin</p> */ @NameInMap("AddressLbStrategy") public String addressLbStrategy; /** * <p>The ID of the address pool. This ID uniquely identifies the address pool.</p> * * <strong>example:</strong> * <p>pool-89528023225442**16</p> */ @NameInMap("AddressPoolId") public String addressPoolId; /** * <p>Address pool name.</p> * * <strong>example:</strong> * <p>AddressPool-1</p> */ @NameInMap("AddressPoolName") public String addressPoolName; /** * <p>Address pool type:</p> * <ul> * <li>IPv4</li> * <li>IPv6</li> * <li>domain</li> * </ul> * * <strong>example:</strong> * <p>IPv4</p> */ @NameInMap("AddressPoolType") public String addressPoolType; /** * <p>The addresses.</p> */ @NameInMap("Addresses") public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddresses addresses; /** * <p>The availability state of the address pool. Valid values:</p> * <ul> * <li>Available: The address pool is available.</li> * <li>unavailable: The address pool is unavailable.</li> * </ul> * * <strong>example:</strong> * <p>available</p> */ @NameInMap("AvailableStatus") public String availableStatus; /** * <p>Address pool creation time.</p> * * <strong>example:</strong> * <p>2024-03-15T01:46Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>Address pool creation time (timestamp).</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>The enabling state of the address pool. Valid values:</p> * <ul> * <li>enable: The address pool is enabled.</li> * <li>disable: The address pool is disabled.</li> * </ul> * * <strong>example:</strong> * <p>enable</p> */ @NameInMap("EnableStatus") public String enableStatus; /** * <p>The condition for determining the health state of the address. Valid values:</p> * <ul> * <li>any_ok: The health check results of at least one health check template are normal.</li> * <li>p30_ok: The health check results of at least 30% of health check templates are normal.</li> * <li>p50_ok: The health check results of at least 50% of health check templates are normal.</li> * <li>p70_ok: The health check results of at least 70% of health check templates are normal.</li> * <li>all_ok: The health check results of all health check templates are normal.</li> * </ul> * * <strong>example:</strong> * <p>any_ok</p> */ @NameInMap("HealthJudgement") public String healthJudgement; /** * <p>The health state of the address pool. Valid values:</p> * <ul> * <li>ok: The health state of the address pool is Normal and all addresses that are referenced by the address pool are available.</li> * <li>ok_alert: The health state of the address pool is Warning and some of the addresses that are referenced by the address pool are unavailable. However, the address pool is deemed normal. In this state, available address pools are normally used for DNS resolution, but unavailable address pools cannot be used for DNS resolution.</li> * <li>exceptional: The health state of the address pool is Abnormal and some or all of the addresses that are referenced by the address pool are unavailable. In this case, the address pool is deemed abnormal.</li> * </ul> * * <strong>example:</strong> * <p>ok</p> */ @NameInMap("HealthStatus") public String healthStatus; /** * <p>Remark</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; /** * <p>The mode used if the address with the smallest sequence number is recovered. This parameter is required only when AddressLbStrategy is set to sequence. Valid values:</p> * <ul> * <li>preemptive: The address with the smallest sequence number is preferentially used if this address is recovered.</li> * <li>non_preemptive: The current address is still used even if the address with the smallest sequence number is recovered.</li> * </ul> * * <strong>example:</strong> * <p>preemptive</p> */ @NameInMap("SequenceLbStrategyMode") public String sequenceLbStrategyMode; /** * <p>Last modification time of the address pool.</p> * * <strong>example:</strong> * <p>2024-03-15T01:46Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <p>Last modification time of the address pool (timestamp).</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; public static ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool self = new ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool(); return TeaModel.build(map, self); } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setAddressLbStrategy(String addressLbStrategy) { this.addressLbStrategy = addressLbStrategy; return this; } public String getAddressLbStrategy() { return this.addressLbStrategy; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setAddressPoolId(String addressPoolId) { this.addressPoolId = addressPoolId; return this; } public String getAddressPoolId() { return this.addressPoolId; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setAddressPoolName(String addressPoolName) { this.addressPoolName = addressPoolName; return this; } public String getAddressPoolName() { return this.addressPoolName; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setAddressPoolType(String addressPoolType) { this.addressPoolType = addressPoolType; return this; } public String getAddressPoolType() { return this.addressPoolType; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setAddresses(ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddresses addresses) { this.addresses = addresses; return this; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPoolAddresses getAddresses() { return this.addresses; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setAvailableStatus(String availableStatus) { this.availableStatus = availableStatus; return this; } public String getAvailableStatus() { return this.availableStatus; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setEnableStatus(String enableStatus) { this.enableStatus = enableStatus; return this; } public String getEnableStatus() { return this.enableStatus; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setHealthJudgement(String healthJudgement) { this.healthJudgement = healthJudgement; return this; } public String getHealthJudgement() { return this.healthJudgement; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setHealthStatus(String healthStatus) { this.healthStatus = healthStatus; return this; } public String getHealthStatus() { return this.healthStatus; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setSequenceLbStrategyMode(String sequenceLbStrategyMode) { this.sequenceLbStrategyMode = sequenceLbStrategyMode; return this; } public String getSequenceLbStrategyMode() { return this.sequenceLbStrategyMode; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } } public static class ListCloudGtmAddressPoolsResponseBodyAddressPools extends TeaModel { @NameInMap("AddressPool") public java.util.List<ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool> addressPool; public static ListCloudGtmAddressPoolsResponseBodyAddressPools build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAddressPoolsResponseBodyAddressPools self = new ListCloudGtmAddressPoolsResponseBodyAddressPools(); return TeaModel.build(map, self); } public ListCloudGtmAddressPoolsResponseBodyAddressPools setAddressPool(java.util.List<ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool> addressPool) { this.addressPool = addressPool; return this; } public java.util.List<ListCloudGtmAddressPoolsResponseBodyAddressPoolsAddressPool> getAddressPool() { return this.addressPool; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ListCloudGtmAddressesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmAddressesRequest extends TeaModel { /** * <p>Return language value, options:</p> * <ul> * <li>zh-CN: Chinese.</li> * <li>en-US: English.</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>IP address or domain name.</p> * * <strong>example:</strong> * <p>223.5.XX.XX</p> */ @NameInMap("Address") public String address; /** * <p>The address ID. This ID uniquely identifies the address.</p> * * <strong>example:</strong> * <p>addr-89518218114368**92</p> */ @NameInMap("AddressId") public String addressId; /** * <p>The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.</p> * * <strong>example:</strong> * <p>1ae05db4-10e7-11ef-b126-00163e24**22</p> */ @NameInMap("ClientToken") public String clientToken; /** * <p>Indicates the current availability of the address:</p> * <ul> * <li>enable: Enabled status</li> * <li>disable: Disabled status</li> * </ul> * * <strong>example:</strong> * <p>enable</p> */ @NameInMap("EnableStatus") public String enableStatus; /** * <p>The health check state of the address. Valid values:</p> * <ul> * <li>ok: The address passes all health checks of the referenced health check templates.</li> * <li>ok_alert: The address fails some health checks of the referenced health check templates but the address is deemed normal.</li> * <li>ok_no_monitor: The address does not reference a health check template.</li> * <li>exceptional: The address fails some or all health checks of the referenced health check templates and the address is deemed abnormal.</li> * </ul> * * <strong>example:</strong> * <p>ok</p> */ @NameInMap("HealthStatus") public String healthStatus; /** * <p>The ID of the health check template. This ID uniquely identifies the health check template.</p> * * <strong>example:</strong> * <p>mtp-89518052425100**80</p> */ @NameInMap("MonitorTemplateId") public String monitorTemplateId; /** * <p>Address name.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Name") public String name; /** * <p>Current page number, starting from <strong>1</strong>, default is <strong>1</strong>.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of rows per page when paginating queries, with a maximum value of 100 and a default of 20.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>Address type:</p> * <ul> * <li>IPv4</li> * <li>IPv6</li> * <li>domain</li> * </ul> * * <strong>example:</strong> * <p>IPv4</p> */ @NameInMap("Type") public String type; public static ListCloudGtmAddressesRequest build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAddressesRequest self = new ListCloudGtmAddressesRequest(); return TeaModel.build(map, self); } public ListCloudGtmAddressesRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public ListCloudGtmAddressesRequest setAddress(String address) { this.address = address; return this; } public String getAddress() { return this.address; } public ListCloudGtmAddressesRequest setAddressId(String addressId) { this.addressId = addressId; return this; } public String getAddressId() { return this.addressId; } public ListCloudGtmAddressesRequest setClientToken(String clientToken) { this.clientToken = clientToken; return this; } public String getClientToken() { return this.clientToken; } public ListCloudGtmAddressesRequest setEnableStatus(String enableStatus) { this.enableStatus = enableStatus; return this; } public String getEnableStatus() { return this.enableStatus; } public ListCloudGtmAddressesRequest setHealthStatus(String healthStatus) { this.healthStatus = healthStatus; return this; } public String getHealthStatus() { return this.healthStatus; } public ListCloudGtmAddressesRequest setMonitorTemplateId(String monitorTemplateId) { this.monitorTemplateId = monitorTemplateId; return this; } public String getMonitorTemplateId() { return this.monitorTemplateId; } public ListCloudGtmAddressesRequest setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public ListCloudGtmAddressesRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public ListCloudGtmAddressesRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public ListCloudGtmAddressesRequest 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/ListCloudGtmAddressesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmAddressesResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public ListCloudGtmAddressesResponseBody body; public static ListCloudGtmAddressesResponse build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAddressesResponse self = new ListCloudGtmAddressesResponse(); return TeaModel.build(map, self); } public ListCloudGtmAddressesResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public ListCloudGtmAddressesResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public ListCloudGtmAddressesResponse setBody(ListCloudGtmAddressesResponseBody body) { this.body = body; return this; } public ListCloudGtmAddressesResponseBody 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/ListCloudGtmAddressesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmAddressesResponseBody extends TeaModel { /** * <p>The addresses.</p> */ @NameInMap("Addresses") public ListCloudGtmAddressesResponseBodyAddresses addresses; /** * <p>Current page number, starting from <strong>1</strong>, default is <strong>1</strong>.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of rows per page when paginating queries, with a maximum value of 100 and a default of 20.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>Unique request identification code.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <p>Get the total number of addresses in the address list.</p> * * <strong>example:</strong> * <p>30</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <p>Total number of pages.</p> * * <strong>example:</strong> * <p>2</p> */ @NameInMap("TotalPages") public Integer totalPages; public static ListCloudGtmAddressesResponseBody build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAddressesResponseBody self = new ListCloudGtmAddressesResponseBody(); return TeaModel.build(map, self); } public ListCloudGtmAddressesResponseBody setAddresses(ListCloudGtmAddressesResponseBodyAddresses addresses) { this.addresses = addresses; return this; } public ListCloudGtmAddressesResponseBodyAddresses getAddresses() { return this.addresses; } public ListCloudGtmAddressesResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public ListCloudGtmAddressesResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public ListCloudGtmAddressesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public ListCloudGtmAddressesResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public ListCloudGtmAddressesResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class ListCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask extends TeaModel { /** * <p>The state of the health check task. Valid values:</p> * <ul> * <li>ok: The task is normal.</li> * <li>alert: An alert is triggered.</li> * <li>no_data: No data is available. In most cases, the health check task is newly created and no data is collected.</li> * </ul> * * <strong>example:</strong> * <p>ok</p> */ @NameInMap("MonitorStatus") public String monitorStatus; /** * <p>The target service port for health check probes. When the health check protocol is set to Ping, configuration of the service port is not supported.</p> * * <strong>example:</strong> * <p>80</p> */ @NameInMap("Port") public Integer port; /** * <p>The ID of the health check template associated with the address.</p> * * <strong>example:</strong> * <p>mtp-89518052425100**80</p> */ @NameInMap("TemplateId") public String templateId; /** * <p>Health check template name.</p> * * <strong>example:</strong> * <p>Ping-IPv4</p> */ @NameInMap("TemplateName") public String templateName; public static ListCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask self = new ListCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask(); return TeaModel.build(map, self); } public ListCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask setMonitorStatus(String monitorStatus) { this.monitorStatus = monitorStatus; return this; } public String getMonitorStatus() { return this.monitorStatus; } public ListCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask setPort(Integer port) { this.port = port; return this; } public Integer getPort() { return this.port; } public ListCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask setTemplateId(String templateId) { this.templateId = templateId; return this; } public String getTemplateId() { return this.templateId; } public ListCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask setTemplateName(String templateName) { this.templateName = templateName; return this; } public String getTemplateName() { return this.templateName; } } public static class ListCloudGtmAddressesResponseBodyAddressesAddressHealthTasks extends TeaModel { @NameInMap("HealthTask") public java.util.List<ListCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask> healthTask; public static ListCloudGtmAddressesResponseBodyAddressesAddressHealthTasks build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAddressesResponseBodyAddressesAddressHealthTasks self = new ListCloudGtmAddressesResponseBodyAddressesAddressHealthTasks(); return TeaModel.build(map, self); } public ListCloudGtmAddressesResponseBodyAddressesAddressHealthTasks setHealthTask(java.util.List<ListCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask> healthTask) { this.healthTask = healthTask; return this; } public java.util.List<ListCloudGtmAddressesResponseBodyAddressesAddressHealthTasksHealthTask> getHealthTask() { return this.healthTask; } } public static class ListCloudGtmAddressesResponseBodyAddressesAddress extends TeaModel { /** * <p>IP address or domain name.</p> * * <strong>example:</strong> * <p>223.5.XX.XX</p> */ @NameInMap("Address") public String address; /** * <p>The address ID. This ID uniquely identifies the address.</p> * * <strong>example:</strong> * <p>addr-89518218114368**92</p> */ @NameInMap("AddressId") public String addressId; /** * <p>Address ownership information.</p> * * <strong>example:</strong> * <p>Not supported in current version, this parameter should be none.</p> */ @NameInMap("AttributeInfo") public String attributeInfo; /** * <p>The failover method that is used if the address fails health checks. Valid values:</p> * <p>auto: the automatic mode. The system determines whether to return an address based on the health check results. If the address fails health checks, the system does not return the address. If the address passes health checks, the system returns the address.</p> * <p>manual: the manual mode. If an address is in the unavailable state, the address is not returned for Domain Name System (DNS) requests even if the address passes health checks. If an address is in the available state, the address is returned for DNS requests even if an alert is triggered when the address fails health checks.</p> * * <strong>example:</strong> * <p>auto</p> */ @NameInMap("AvailableMode") public String availableMode; /** * <p>The availability state of the address. Valid values:</p> * <ul> * <li>available: The address is available.</li> * <li>unavailable: The address is unavailable.</li> * </ul> * * <strong>example:</strong> * <p>available</p> */ @NameInMap("AvailableStatus") public String availableStatus; /** * <p>Address creation time.</p> * * <strong>example:</strong> * <p>2024-03-23T13:09Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>Creation time (timestamp).</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>Indicates the current availability of the address:</p> * <ul> * <li>enable: Enabled status </li> * <li>disable: Disabled status</li> * </ul> * * <strong>example:</strong> * <p>enable</p> */ @NameInMap("EnableStatus") public String enableStatus; /** * <p>The condition for determining the health status of the address. Valid values:</p> * <ul> * <li>any_ok: The health check results of at least one health check template are normal.</li> * <li>p30_ok: The health check results of at least 30% of health check templates are normal.</li> * <li>p50_ok: The health check results of at least 50% of health check templates are normal.</li> * <li>p70_ok: The health check results of at least 70% of health check templates are normal.</li> * <li>all_ok: The health check results of all health check templates are normal.</li> * </ul> * * <strong>example:</strong> * <p>p50_ok</p> */ @NameInMap("HealthJudgement") public String healthJudgement; /** * <p>The health check state of the address. Valid values:</p> * <ul> * <li>ok: The address passes all health checks of the referenced health check templates.</li> * <li>ok_alert: The address fails some health checks of the referenced health check templates but the address is deemed normal.</li> * <li>ok_no_monitor: The address does not reference a health check template.</li> * <li>exceptional: The address fails some or all health checks of the referenced health check templates and the address is deemed abnormal.</li> * </ul> * * <strong>example:</strong> * <p>ok</p> */ @NameInMap("HealthStatus") public String healthStatus; /** * <p>The health check tasks referenced by the address.</p> */ @NameInMap("HealthTasks") public ListCloudGtmAddressesResponseBodyAddressesAddressHealthTasks healthTasks; /** * <p>The availability state of the address when AvailableMode is set to manual. Valid values:</p> * <p>available: The address is normal. In this state, the address is returned for DNS requests even if an alert is triggered when the address fails health checks.</p> * <p>unavailable: The address is abnormal. In this state, the address is not returned for DNS requests even if the address passes health checks.</p> * * <strong>example:</strong> * <p>available</p> */ @NameInMap("ManualAvailableStatus") public String manualAvailableStatus; /** * <p>Address name.</p> * * <strong>example:</strong> * <p>Address-1</p> */ @NameInMap("Name") public String name; /** * <p>Remarks.</p> * * <strong>example:</strong> * <p>app</p> */ @NameInMap("Remark") public String remark; /** * <p>Address type:</p> * <ul> * <li>IPv4</li> * <li>IPv6</li> * <li>domain</li> * </ul> * * <strong>example:</strong> * <p>IPv4</p> */ @NameInMap("Type") public String type; /** * <p>Address modification time.</p> * * <strong>example:</strong> * <p>2024-03-29T13:20Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <p>Update time (timestamp).</p> * * <strong>example:</strong> * <p>1527690824357</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; public static ListCloudGtmAddressesResponseBodyAddressesAddress build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAddressesResponseBodyAddressesAddress self = new ListCloudGtmAddressesResponseBodyAddressesAddress(); return TeaModel.build(map, self); } public ListCloudGtmAddressesResponseBodyAddressesAddress setAddress(String address) { this.address = address; return this; } public String getAddress() { return this.address; } public ListCloudGtmAddressesResponseBodyAddressesAddress setAddressId(String addressId) { this.addressId = addressId; return this; } public String getAddressId() { return this.addressId; } public ListCloudGtmAddressesResponseBodyAddressesAddress setAttributeInfo(String attributeInfo) { this.attributeInfo = attributeInfo; return this; } public String getAttributeInfo() { return this.attributeInfo; } public ListCloudGtmAddressesResponseBodyAddressesAddress setAvailableMode(String availableMode) { this.availableMode = availableMode; return this; } public String getAvailableMode() { return this.availableMode; } public ListCloudGtmAddressesResponseBodyAddressesAddress setAvailableStatus(String availableStatus) { this.availableStatus = availableStatus; return this; } public String getAvailableStatus() { return this.availableStatus; } public ListCloudGtmAddressesResponseBodyAddressesAddress setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public ListCloudGtmAddressesResponseBodyAddressesAddress setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public ListCloudGtmAddressesResponseBodyAddressesAddress setEnableStatus(String enableStatus) { this.enableStatus = enableStatus; return this; } public String getEnableStatus() { return this.enableStatus; } public ListCloudGtmAddressesResponseBodyAddressesAddress setHealthJudgement(String healthJudgement) { this.healthJudgement = healthJudgement; return this; } public String getHealthJudgement() { return this.healthJudgement; } public ListCloudGtmAddressesResponseBodyAddressesAddress setHealthStatus(String healthStatus) { this.healthStatus = healthStatus; return this; } public String getHealthStatus() { return this.healthStatus; } public ListCloudGtmAddressesResponseBodyAddressesAddress setHealthTasks(ListCloudGtmAddressesResponseBodyAddressesAddressHealthTasks healthTasks) { this.healthTasks = healthTasks; return this; } public ListCloudGtmAddressesResponseBodyAddressesAddressHealthTasks getHealthTasks() { return this.healthTasks; } public ListCloudGtmAddressesResponseBodyAddressesAddress setManualAvailableStatus(String manualAvailableStatus) { this.manualAvailableStatus = manualAvailableStatus; return this; } public String getManualAvailableStatus() { return this.manualAvailableStatus; } public ListCloudGtmAddressesResponseBodyAddressesAddress setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public ListCloudGtmAddressesResponseBodyAddressesAddress setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public ListCloudGtmAddressesResponseBodyAddressesAddress setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public ListCloudGtmAddressesResponseBodyAddressesAddress setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public ListCloudGtmAddressesResponseBodyAddressesAddress setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } } public static class ListCloudGtmAddressesResponseBodyAddresses extends TeaModel { @NameInMap("Address") public java.util.List<ListCloudGtmAddressesResponseBodyAddressesAddress> address; public static ListCloudGtmAddressesResponseBodyAddresses build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAddressesResponseBodyAddresses self = new ListCloudGtmAddressesResponseBodyAddresses(); return TeaModel.build(map, self); } public ListCloudGtmAddressesResponseBodyAddresses setAddress(java.util.List<ListCloudGtmAddressesResponseBodyAddressesAddress> address) { this.address = address; return this; } public java.util.List<ListCloudGtmAddressesResponseBodyAddressesAddress> getAddress() { return this.address; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ListCloudGtmAlertLogsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmAlertLogsRequest extends TeaModel { /** * <p>Alert type:</p> * <ul> * <li>ALERT</li> * <li>RESUME</li> * </ul> * * <strong>example:</strong> * <p>ALERT</p> */ @NameInMap("ActionType") public String actionType; /** * <p>The end time of the query (timestamp).</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1711328826977</p> */ @NameInMap("EndTimestamp") public Long endTimestamp; /** * <p>Alarm object types:</p> * <ul> * <li>GTM_ADDRESS: Address</li> * <li>GTM_ADDRESS_POOL: Address Pool</li> * <li>GTM_INSTANCE: Instance</li> * <li>GTM_MONITOR_TEMPLATE: Health Check Template</li> * </ul> * * <strong>example:</strong> * <p>GTM_ADDRESS</p> */ @NameInMap("EntityType") public String entityType; /** * <p>Search keyword, usually an address ID, address pool ID, domain information, etc.</p> * * <strong>example:</strong> * <p>pool-895280232254422016</p> */ @NameInMap("Keyword") public String keyword; /** * <p>Language type of the returned information:</p> * <ul> * <li>zh-CN: Chinese</li> * <li>en-US: English</li> * </ul> * * <strong>example:</strong> * <p>zh-CN</p> */ @NameInMap("Lang") public String lang; /** * <p>Current page number, starting from <strong>1</strong>, default is <strong>1</strong>.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of rows per page when paginating queries, with a maximum value of 100 and a default of 20.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>The start time of the query (timestamp).</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1611328826977</p> */ @NameInMap("StartTimestamp") public Long startTimestamp; public static ListCloudGtmAlertLogsRequest build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAlertLogsRequest self = new ListCloudGtmAlertLogsRequest(); return TeaModel.build(map, self); } public ListCloudGtmAlertLogsRequest setActionType(String actionType) { this.actionType = actionType; return this; } public String getActionType() { return this.actionType; } public ListCloudGtmAlertLogsRequest setEndTimestamp(Long endTimestamp) { this.endTimestamp = endTimestamp; return this; } public Long getEndTimestamp() { return this.endTimestamp; } public ListCloudGtmAlertLogsRequest setEntityType(String entityType) { this.entityType = entityType; return this; } public String getEntityType() { return this.entityType; } public ListCloudGtmAlertLogsRequest setKeyword(String keyword) { this.keyword = keyword; return this; } public String getKeyword() { return this.keyword; } public ListCloudGtmAlertLogsRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public ListCloudGtmAlertLogsRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public ListCloudGtmAlertLogsRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public ListCloudGtmAlertLogsRequest 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/ListCloudGtmAlertLogsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmAlertLogsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public ListCloudGtmAlertLogsResponseBody body; public static ListCloudGtmAlertLogsResponse build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAlertLogsResponse self = new ListCloudGtmAlertLogsResponse(); return TeaModel.build(map, self); } public ListCloudGtmAlertLogsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public ListCloudGtmAlertLogsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public ListCloudGtmAlertLogsResponse setBody(ListCloudGtmAlertLogsResponseBody body) { this.body = body; return this; } public ListCloudGtmAlertLogsResponseBody 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/ListCloudGtmAlertLogsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmAlertLogsResponseBody extends TeaModel { /** * <p>The alert logs.</p> */ @NameInMap("Logs") public ListCloudGtmAlertLogsResponseBodyLogs logs; /** * <p>Current page number, starting from 1, default is 1.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of rows per page when paginating queries, with a maximum value of 100 and a default of 20.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>Unique request identification code.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <p>Total number of alarm log entries.</p> * * <strong>example:</strong> * <p>15</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <p>Total number of pages.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("TotalPages") public Integer totalPages; public static ListCloudGtmAlertLogsResponseBody build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAlertLogsResponseBody self = new ListCloudGtmAlertLogsResponseBody(); return TeaModel.build(map, self); } public ListCloudGtmAlertLogsResponseBody setLogs(ListCloudGtmAlertLogsResponseBodyLogs logs) { this.logs = logs; return this; } public ListCloudGtmAlertLogsResponseBodyLogs getLogs() { return this.logs; } public ListCloudGtmAlertLogsResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public ListCloudGtmAlertLogsResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public ListCloudGtmAlertLogsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public ListCloudGtmAlertLogsResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public ListCloudGtmAlertLogsResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class ListCloudGtmAlertLogsResponseBodyLogsLog extends TeaModel { /** * <p>Alert type:</p> * <ul> * <li>ALERT</li> * <li>RESUME</li> * </ul> * * <strong>example:</strong> * <p>ALERT</p> */ @NameInMap("ActionType") public String actionType; /** * <p>The alert content.</p> * * <strong>example:</strong> * <p>The alert content.</p> */ @NameInMap("Content") public String content; /** * <p>Alarm object types:</p> * <ul> * <li>GTM_ADDRESS: Address</li> * <li>GTM_ADDRESS_POOL: Address Pool</li> * <li>GTM_INSTANCE: Instance</li> * <li>GTM_MONITOR_TEMPLATE: Health Check Template</li> * </ul> * * <strong>example:</strong> * <p>GTM_ADDRESS</p> */ @NameInMap("EntityType") public String entityType; /** * <p>Alert log time (timestamp).</p> * * <strong>example:</strong> * <p>1711328826977</p> */ @NameInMap("Timestamp") public Long timestamp; public static ListCloudGtmAlertLogsResponseBodyLogsLog build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAlertLogsResponseBodyLogsLog self = new ListCloudGtmAlertLogsResponseBodyLogsLog(); return TeaModel.build(map, self); } public ListCloudGtmAlertLogsResponseBodyLogsLog setActionType(String actionType) { this.actionType = actionType; return this; } public String getActionType() { return this.actionType; } public ListCloudGtmAlertLogsResponseBodyLogsLog setContent(String content) { this.content = content; return this; } public String getContent() { return this.content; } public ListCloudGtmAlertLogsResponseBodyLogsLog setEntityType(String entityType) { this.entityType = entityType; return this; } public String getEntityType() { return this.entityType; } public ListCloudGtmAlertLogsResponseBodyLogsLog setTimestamp(Long timestamp) { this.timestamp = timestamp; return this; } public Long getTimestamp() { return this.timestamp; } } public static class ListCloudGtmAlertLogsResponseBodyLogs extends TeaModel { @NameInMap("Log") public java.util.List<ListCloudGtmAlertLogsResponseBodyLogsLog> log; public static ListCloudGtmAlertLogsResponseBodyLogs build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAlertLogsResponseBodyLogs self = new ListCloudGtmAlertLogsResponseBodyLogs(); return TeaModel.build(map, self); } public ListCloudGtmAlertLogsResponseBodyLogs setLog(java.util.List<ListCloudGtmAlertLogsResponseBodyLogsLog> log) { this.log = log; return this; } public java.util.List<ListCloudGtmAlertLogsResponseBodyLogsLog> 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/ListCloudGtmAvailableAlertGroupsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmAvailableAlertGroupsRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li><strong>zh-CN</strong>: Chinese</li> * <li><strong>en-US</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; public static ListCloudGtmAvailableAlertGroupsRequest build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAvailableAlertGroupsRequest self = new ListCloudGtmAvailableAlertGroupsRequest(); return TeaModel.build(map, self); } public ListCloudGtmAvailableAlertGroupsRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ListCloudGtmAvailableAlertGroupsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmAvailableAlertGroupsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public ListCloudGtmAvailableAlertGroupsResponseBody body; public static ListCloudGtmAvailableAlertGroupsResponse build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAvailableAlertGroupsResponse self = new ListCloudGtmAvailableAlertGroupsResponse(); return TeaModel.build(map, self); } public ListCloudGtmAvailableAlertGroupsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public ListCloudGtmAvailableAlertGroupsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public ListCloudGtmAvailableAlertGroupsResponse setBody(ListCloudGtmAvailableAlertGroupsResponseBody body) { this.body = body; return this; } public ListCloudGtmAvailableAlertGroupsResponseBody 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/ListCloudGtmAvailableAlertGroupsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmAvailableAlertGroupsResponseBody extends TeaModel { /** * <p>The alert contact groups.</p> */ @NameInMap("AlertGroups") public ListCloudGtmAvailableAlertGroupsResponseBodyAlertGroups alertGroups; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; public static ListCloudGtmAvailableAlertGroupsResponseBody build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAvailableAlertGroupsResponseBody self = new ListCloudGtmAvailableAlertGroupsResponseBody(); return TeaModel.build(map, self); } public ListCloudGtmAvailableAlertGroupsResponseBody setAlertGroups(ListCloudGtmAvailableAlertGroupsResponseBodyAlertGroups alertGroups) { this.alertGroups = alertGroups; return this; } public ListCloudGtmAvailableAlertGroupsResponseBodyAlertGroups getAlertGroups() { return this.alertGroups; } public ListCloudGtmAvailableAlertGroupsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public static class ListCloudGtmAvailableAlertGroupsResponseBodyAlertGroupsAlertGroup extends TeaModel { /** * <p>The name of the alert contact group.</p> * * <strong>example:</strong> * <p>[\&quot;Default\&quot;]</p> */ @NameInMap("GroupName") public String groupName; public static ListCloudGtmAvailableAlertGroupsResponseBodyAlertGroupsAlertGroup build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAvailableAlertGroupsResponseBodyAlertGroupsAlertGroup self = new ListCloudGtmAvailableAlertGroupsResponseBodyAlertGroupsAlertGroup(); return TeaModel.build(map, self); } public ListCloudGtmAvailableAlertGroupsResponseBodyAlertGroupsAlertGroup setGroupName(String groupName) { this.groupName = groupName; return this; } public String getGroupName() { return this.groupName; } } public static class ListCloudGtmAvailableAlertGroupsResponseBodyAlertGroups extends TeaModel { @NameInMap("AlertGroup") public java.util.List<ListCloudGtmAvailableAlertGroupsResponseBodyAlertGroupsAlertGroup> alertGroup; public static ListCloudGtmAvailableAlertGroupsResponseBodyAlertGroups build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmAvailableAlertGroupsResponseBodyAlertGroups self = new ListCloudGtmAvailableAlertGroupsResponseBodyAlertGroups(); return TeaModel.build(map, self); } public ListCloudGtmAvailableAlertGroupsResponseBodyAlertGroups setAlertGroup(java.util.List<ListCloudGtmAvailableAlertGroupsResponseBodyAlertGroupsAlertGroup> alertGroup) { this.alertGroup = alertGroup; return this; } public java.util.List<ListCloudGtmAvailableAlertGroupsResponseBodyAlertGroupsAlertGroup> getAlertGroup() { return this.alertGroup; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ListCloudGtmInstanceConfigsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmInstanceConfigsRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li>zh-CN: Chinese</li> * <li>en-US (default): English</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.</p> * * <strong>example:</strong> * <p>1ae05db4-10e7-11ef-b126-00163e24**22</p> */ @NameInMap("ClientToken") public String clientToken; /** * <p>The enabling state of the access domain name. Valid values:</p> * <ul> * <li>enable: The access domain name is enabled and the intelligent scheduling policy of the GTM instance takes effect.</li> * <li>disable: The access domain name is disabled and the intelligent scheduling policy of the GTM instance does not take effect.</li> * </ul> * * <strong>example:</strong> * <p>enable</p> */ @NameInMap("EnableStatus") public String enableStatus; /** * <p>The ID of the GTM 3.0 instance.</p> * * <strong>example:</strong> * <p>gtm-cn-wwo3a3hbz**</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>Current page number, starting at <strong>1</strong>, default is <strong>1</strong>.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of rows per page when paginating queries, with a maximum value of <strong>100</strong>, and a default of <strong>20</strong>.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>Remarks.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; /** * <p>The GTM access domain name. The value of this parameter is composed of the value of ScheduleHostname and the value of ScheduleZoneName.</p> * * <strong>example:</strong> * <p><a href="http://www.example.com">www.example.com</a></p> */ @NameInMap("ScheduleDomainName") public String scheduleDomainName; /** * <p>The zone (such as example.com) or subzone (such as a.example.com) of the GTM access domain name. In most cases, the zone or subzone is hosted in Authoritative DNS Resolution of the Alibaba Cloud DNS console within the account to which the GTM instance belongs.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("ScheduleZoneName") public String scheduleZoneName; public static ListCloudGtmInstanceConfigsRequest build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmInstanceConfigsRequest self = new ListCloudGtmInstanceConfigsRequest(); return TeaModel.build(map, self); } public ListCloudGtmInstanceConfigsRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public ListCloudGtmInstanceConfigsRequest setClientToken(String clientToken) { this.clientToken = clientToken; return this; } public String getClientToken() { return this.clientToken; } public ListCloudGtmInstanceConfigsRequest setEnableStatus(String enableStatus) { this.enableStatus = enableStatus; return this; } public String getEnableStatus() { return this.enableStatus; } public ListCloudGtmInstanceConfigsRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public ListCloudGtmInstanceConfigsRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public ListCloudGtmInstanceConfigsRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public ListCloudGtmInstanceConfigsRequest setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public ListCloudGtmInstanceConfigsRequest setScheduleDomainName(String scheduleDomainName) { this.scheduleDomainName = scheduleDomainName; return this; } public String getScheduleDomainName() { return this.scheduleDomainName; } public ListCloudGtmInstanceConfigsRequest setScheduleZoneName(String scheduleZoneName) { this.scheduleZoneName = scheduleZoneName; return this; } public String getScheduleZoneName() { return this.scheduleZoneName; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ListCloudGtmInstanceConfigsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmInstanceConfigsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public ListCloudGtmInstanceConfigsResponseBody body; public static ListCloudGtmInstanceConfigsResponse build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmInstanceConfigsResponse self = new ListCloudGtmInstanceConfigsResponse(); return TeaModel.build(map, self); } public ListCloudGtmInstanceConfigsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public ListCloudGtmInstanceConfigsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public ListCloudGtmInstanceConfigsResponse setBody(ListCloudGtmInstanceConfigsResponseBody body) { this.body = body; return this; } public ListCloudGtmInstanceConfigsResponseBody 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/ListCloudGtmInstanceConfigsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmInstanceConfigsResponseBody extends TeaModel { /** * <p>The configurations of the instance.</p> */ @NameInMap("InstanceConfigs") public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigs instanceConfigs; /** * <p>Current page number, starting from <strong>1</strong>, default is <strong>1</strong>.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of rows per page when paginating queries, with a maximum value of 100 and a default of 20.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>Unique request identification code.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <p>Total number of entries for domain instance configurations.</p> * * <strong>example:</strong> * <p>10</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <p>Total number of pages.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("TotalPages") public Integer totalPages; public static ListCloudGtmInstanceConfigsResponseBody build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmInstanceConfigsResponseBody self = new ListCloudGtmInstanceConfigsResponseBody(); return TeaModel.build(map, self); } public ListCloudGtmInstanceConfigsResponseBody setInstanceConfigs(ListCloudGtmInstanceConfigsResponseBodyInstanceConfigs instanceConfigs) { this.instanceConfigs = instanceConfigs; return this; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigs getInstanceConfigs() { return this.instanceConfigs; } public ListCloudGtmInstanceConfigsResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public ListCloudGtmInstanceConfigsResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public ListCloudGtmInstanceConfigsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public ListCloudGtmInstanceConfigsResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public ListCloudGtmInstanceConfigsResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPoolRequestSource extends TeaModel { @NameInMap("RequestSource") public java.util.List<String> requestSource; public static ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPoolRequestSource build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPoolRequestSource self = new ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPoolRequestSource(); return TeaModel.build(map, self); } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPoolRequestSource setRequestSource(java.util.List<String> requestSource) { this.requestSource = requestSource; return this; } public java.util.List<String> getRequestSource() { return this.requestSource; } } public static class ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool extends TeaModel { /** * <p>Load balancing policy among addresses in the address pool:</p> * <ul> * <li>round_robin: Round-robin, for any source of DNS resolution requests, returns all addresses and rotates the order of all addresses each time.</li> * <li>sequence: Sequential, for any source of DNS resolution requests, returns the address with the smaller sequence number (the sequence number indicates the priority of the address return, the smaller the higher the priority). If the address with the smaller sequence number is unavailable, return the next address with a smaller sequence number.</li> * <li>weight: Weighted, supports setting different weight values for each address to realize returning addresses according to the weight ratio for resolution queries.</li> * <li>source_nearest: Source-nearest, i.e., intelligent resolution function, where GTM can return different addresses based on the source of different DNS resolution requests, achieving the effect of users accessing nearby.</li> * </ul> * * <strong>example:</strong> * <p>round_robin</p> */ @NameInMap("AddressLbStrategy") public String addressLbStrategy; /** * <p>The ID of the address pool. This ID uniquely identifies the address pool.</p> * * <strong>example:</strong> * <p>pool-89528023225442**16</p> */ @NameInMap("AddressPoolId") public String addressPoolId; /** * <p>Address pool name.</p> * * <strong>example:</strong> * <p>AddressPool-1</p> */ @NameInMap("AddressPoolName") public String addressPoolName; /** * <p>Address pool type:</p> * <ul> * <li>IPv4</li> * <li>IPv6</li> * <li>domain</li> * </ul> * * <strong>example:</strong> * <p>IPv4</p> */ @NameInMap("AddressPoolType") public String addressPoolType; /** * <p>Address pool availability status:</p> * <ul> * <li>available: Available</li> * <li>unavailable: Unavailable</li> * </ul> * * <strong>example:</strong> * <p>available</p> */ @NameInMap("AvailableStatus") public String availableStatus; /** * <p>Address pool creation time.</p> * * <strong>example:</strong> * <p>2024-03-15T01:46Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>Address pool creation time (timestamp).</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>Address pool status:</p> * <ul> * <li>enable: Enabled status</li> * <li>disable: Disabled status</li> * </ul> * * <strong>example:</strong> * <p>enable</p> */ @NameInMap("EnableStatus") public String enableStatus; /** * <p>The health state of the address pool. Valid values:</p> * <ul> * <li>ok: The health state of the address pool is Normal and all addresses that are referenced by the address pool are available.</li> * <li>ok_alert: The health state of the address pool is Warning and some of the addresses that are referenced by the address pool are unavailable. However, the address pool is deemed normal. In this case, available address pools are normally used for DNS resolution, but unavailable address pools cannot be used for DNS resolution.</li> * <li>exceptional: The health state of the address pool is Abnormal and some or all of the addresses that are referenced by the address pool are unavailable. In this case, the address pool is deemed abnormal.</li> * </ul> * * <strong>example:</strong> * <p>ok</p> */ @NameInMap("HealthJudgement") public String healthJudgement; /** * <p>The health state of the address pool. Valid values:</p> * <ul> * <li>ok: The health state of the address pool is Normal and all addresses that are referenced by the address pool are available.</li> * <li>ok_alert: The health state of the address pool is Warning and some of the addresses that are referenced by the address pool are unavailable. However, the address pool is deemed normal. In this case, available address pools are normally used for DNS resolution, but unavailable address pools cannot be used for DNS resolution.</li> * <li>exceptional: The health state of the address pool is Abnormal and some or all of the addresses that are referenced by the address pool are unavailable. In this case, the address pool is deemed abnormal.</li> * </ul> * * <strong>example:</strong> * <p>ok</p> */ @NameInMap("HealthStatus") public String healthStatus; /** * <p>Parse the request source list.</p> */ @NameInMap("RequestSource") public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPoolRequestSource requestSource; /** * <p>Indicates whether the mode of the sequence policy for load balancing between address pools is non-preemptive. This parameter is available only for the multicloud integration scenario. Valid values:</p> * <ul> * <li>true</li> * <li>false</li> * </ul> * * <strong>example:</strong> * <p>false</p> */ @NameInMap("SeqNonPreemptiveSchedule") public Boolean seqNonPreemptiveSchedule; /** * <p>The mode used if the address with the smallest sequence number is recovered. This parameter is required only when AddressLbStrategy is set to sequence. Valid values:</p> * <ul> * <li>preemptive: The address with the smallest sequence number is preferentially used if this address is recovered.</li> * <li>non_preemptive: The current address is still used even if the address with the smallest sequence number is recovered.</li> * </ul> * * <strong>example:</strong> * <p>preemptive</p> */ @NameInMap("SequenceLbStrategyMode") public String sequenceLbStrategyMode; /** * <p>Sequence number. For any parsing request, the address pool with the smaller sequence number (indicating the priority of the address pool returned, with smaller numbers having higher priority) is returned.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("SerialNumber") public Integer serialNumber; /** * <p>Last modification time of the address pool.</p> * * <strong>example:</strong> * <p>2024-03-15T01:46Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <p>Last modification time of the address pool (timestamp).</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; /** * <p>Weight value (an integer between 1 and 100, including both 1 and 100), which supports setting different weight values for each address pool, enabling the resolution query to return address pools according to the weighted ratio.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("WeightValue") public Integer weightValue; public static ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool self = new ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool(); return TeaModel.build(map, self); } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setAddressLbStrategy(String addressLbStrategy) { this.addressLbStrategy = addressLbStrategy; return this; } public String getAddressLbStrategy() { return this.addressLbStrategy; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setAddressPoolId(String addressPoolId) { this.addressPoolId = addressPoolId; return this; } public String getAddressPoolId() { return this.addressPoolId; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setAddressPoolName(String addressPoolName) { this.addressPoolName = addressPoolName; return this; } public String getAddressPoolName() { return this.addressPoolName; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setAddressPoolType(String addressPoolType) { this.addressPoolType = addressPoolType; return this; } public String getAddressPoolType() { return this.addressPoolType; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setAvailableStatus(String availableStatus) { this.availableStatus = availableStatus; return this; } public String getAvailableStatus() { return this.availableStatus; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setEnableStatus(String enableStatus) { this.enableStatus = enableStatus; return this; } public String getEnableStatus() { return this.enableStatus; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setHealthJudgement(String healthJudgement) { this.healthJudgement = healthJudgement; return this; } public String getHealthJudgement() { return this.healthJudgement; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setHealthStatus(String healthStatus) { this.healthStatus = healthStatus; return this; } public String getHealthStatus() { return this.healthStatus; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setRequestSource(ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPoolRequestSource requestSource) { this.requestSource = requestSource; return this; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPoolRequestSource getRequestSource() { return this.requestSource; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setSeqNonPreemptiveSchedule(Boolean seqNonPreemptiveSchedule) { this.seqNonPreemptiveSchedule = seqNonPreemptiveSchedule; return this; } public Boolean getSeqNonPreemptiveSchedule() { return this.seqNonPreemptiveSchedule; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setSequenceLbStrategyMode(String sequenceLbStrategyMode) { this.sequenceLbStrategyMode = sequenceLbStrategyMode; return this; } public String getSequenceLbStrategyMode() { return this.sequenceLbStrategyMode; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setSerialNumber(Integer serialNumber) { this.serialNumber = serialNumber; return this; } public Integer getSerialNumber() { return this.serialNumber; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool setWeightValue(Integer weightValue) { this.weightValue = weightValue; return this; } public Integer getWeightValue() { return this.weightValue; } } public static class ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPools extends TeaModel { @NameInMap("AddressPool") public java.util.List<ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool> addressPool; public static ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPools build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPools self = new ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPools(); return TeaModel.build(map, self); } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPools setAddressPool(java.util.List<ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool> addressPool) { this.addressPool = addressPool; return this; } public java.util.List<ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPoolsAddressPool> getAddressPool() { return this.addressPool; } } public static class ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig extends TeaModel { /** * <p>The policy for load balancing between address pools. Valid values:</p> * <ul> * <li>round_robin: All address pools are returned for DNS requests from any source. All address pools are sorted in round-robin mode each time they are returned.</li> * <li>sequence: The address pool with the smallest sequence number is preferentially returned for DNS requests from any source. The sequence number indicates the priority for returning the address pool. A smaller sequence number indicates a higher priority. If the address pool with the smallest sequence number is unavailable, the address pool with the second smallest sequence number is returned.</li> * <li>weight: You can set a different weight value for each address pool. This way, address pools are returned based on the weight values.</li> * <li>source_nearest: GTM returns different address pools based on the sources of DNS requests. This way, users can access nearby addresses.</li> * </ul> * * <strong>example:</strong> * <p>round_robin</p> */ @NameInMap("AddressPoolLbStrategy") public String addressPoolLbStrategy; /** * <p>The address pools.</p> */ @NameInMap("AddressPools") public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPools addressPools; /** * <p>The availability state of the access domain name. Valid values:</p> * <ul> * <li>available: If the access domain name is <strong>enabled</strong> and the health state of the access domain name is <strong>Normal</strong>, the access domain name is deemed <strong>Available</strong>.</li> * <li>unavailable: If the access domain name is <strong>disabled</strong> or the health state of the access domain name is <strong>Abnormal</strong>, the access domain name is deemed <strong>Unavailable</strong>.</li> * </ul> * * <strong>example:</strong> * <p>available</p> */ @NameInMap("AvailableStatus") public String availableStatus; /** * <p>The commodity code. Valid values:</p> * <ul> * <li>dns_gtm_public_cn: the commodity code on the China site (aliyun.com)</li> * <li>dns_gtm_public_intl: the commodity code on the international site (alibabacloud.com)</li> * </ul> * * <strong>example:</strong> * <p>dns_gtm_public_cn</p> */ @NameInMap("CommodityCode") public String commodityCode; /** * <p>The configuration ID of the access domain name. Two configuration IDs exist when the access domain name is bound to the same GTM instance but an A record and an AAAA record are configured for the access domain name. The configuration ID uniquely identifies a configuration.</p> * * <strong>example:</strong> * <p>Config-000**11</p> */ @NameInMap("ConfigId") public String configId; /** * <p>Instance configuration creation time.</p> * * <strong>example:</strong> * <p>2024-03-15T01:46Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>Instance creation time (timestamp).</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>The enabling state of the access domain name. Valid values:</p> * <ul> * <li>enable: The access domain name is enabled and the intelligent scheduling policy of the GTM instance takes effect.</li> * <li>disable: The access domain name is disabled and the intelligent scheduling policy of the GTM instance does not take effect.</li> * </ul> * * <strong>example:</strong> * <p>enable</p> */ @NameInMap("EnableStatus") public String enableStatus; /** * <p>The health state of the access domain name. Valid values:</p> * <ul> * <li>ok: The health state of the access domain name is Normal and all address pools that are referenced by the access domain name are available.</li> * <li>ok_alert: The health state of the access domain name is Warning and some of the address pools that are referenced by the access domain name are unavailable. In this case, available address pools are normally used for DNS resolution, but unavailable address pools cannot be used for DNS resolution.</li> * <li>exceptional: The health state of the access domain name is Abnormal and all address pools that are referenced by the access domain name are unavailable. In this case, addresses in the non-empty address pool with the smallest sequence number are preferentially used for fallback resolution. This returns DNS results for clients as much as possible.</li> * </ul> * * <strong>example:</strong> * <p>ok</p> */ @NameInMap("HealthStatus") public String healthStatus; /** * <p>The ID of the GTM 3.0 instance.</p> * * <strong>example:</strong> * <p>gtm-cn-wwo3a3hbz**</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>Remarks on the configuration of domain instance.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; /** * <p>The GTM access domain name. The value of this parameter is composed of the value of ScheduleHostname and the value of ScheduleZoneName.</p> * * <strong>example:</strong> * <p><a href="http://www.example.com">www.example.com</a></p> */ @NameInMap("ScheduleDomainName") public String scheduleDomainName; /** * <p>Host record of the domain accessed by GTM.</p> * * <strong>example:</strong> * <p>www</p> */ @NameInMap("ScheduleHostname") public String scheduleHostname; /** * <p>DNS record types for the scheduling domain:</p> * <ul> * <li>A: IPv4 address</li> * <li>AAAA: IPv6 address</li> * <li>CNAME: Domain name</li> * </ul> * * <strong>example:</strong> * <p>A</p> */ @NameInMap("ScheduleRrType") public String scheduleRrType; /** * <p>The allocation mode of the access domain name. Valid values:</p> * <ul> * <li>custom: custom allocation. You must specify a custom hostname and associate the hostname with a zone within the account to which the GTM instance belongs to generate an access domain name.</li> * <li>sys_assign: system allocation. This mode is not supported. Do not set ScheduleZoneMode to sys_assign.</li> * </ul> * * <strong>example:</strong> * <p>custom</p> */ @NameInMap("ScheduleZoneMode") public String scheduleZoneMode; /** * <p>The zone (such as example.com) or subzone (such as a.example.com) of the GTM access domain name. In most cases, the zone or subzone is hosted in Authoritative DNS Resolution of the Alibaba Cloud DNS console within the account to which the GTM instance belongs.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("ScheduleZoneName") public String scheduleZoneName; /** * <p>The mode used if the address pool with the smallest sequence number is recovered. This parameter is required when AddressPoolLbStrategy is set to sequence. Valid values:</p> * <ul> * <li>preemptive: The address pool with the smallest sequence number is preferentially used if this address pool is recovered.</li> * <li>non_preemptive: The current address pool is still used even if the address pool with the smallest sequence number is recovered.</li> * </ul> * * <strong>example:</strong> * <p>preemptive</p> */ @NameInMap("SequenceLbStrategyMode") public String sequenceLbStrategyMode; /** * <p>Global TTL (in seconds), the TTL value for domain resolution to addresses in the address pool, affecting the caching time of DNS records in the ISP\&quot;s LocalDNS. Supports custom TTL values.</p> * * <strong>example:</strong> * <p>60</p> */ @NameInMap("Ttl") public Integer ttl; /** * <p>The last modified time of the instance configuration.</p> * * <strong>example:</strong> * <p>2024-03-15T01:46Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <p>The last modification time of the instance configuration (timestamp).</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; /** * <p>The edition of the GTM 3.0 instance. Valid values:</p> * <ul> * <li>standard: Standard Edition</li> * <li>ultimate: Ultimate Edition</li> * </ul> * * <strong>example:</strong> * <p>ultimate</p> */ @NameInMap("VersionCode") public String versionCode; public static ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig self = new ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig(); return TeaModel.build(map, self); } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setAddressPoolLbStrategy(String addressPoolLbStrategy) { this.addressPoolLbStrategy = addressPoolLbStrategy; return this; } public String getAddressPoolLbStrategy() { return this.addressPoolLbStrategy; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setAddressPools(ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPools addressPools) { this.addressPools = addressPools; return this; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfigAddressPools getAddressPools() { return this.addressPools; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setAvailableStatus(String availableStatus) { this.availableStatus = availableStatus; return this; } public String getAvailableStatus() { return this.availableStatus; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setCommodityCode(String commodityCode) { this.commodityCode = commodityCode; return this; } public String getCommodityCode() { return this.commodityCode; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setConfigId(String configId) { this.configId = configId; return this; } public String getConfigId() { return this.configId; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setEnableStatus(String enableStatus) { this.enableStatus = enableStatus; return this; } public String getEnableStatus() { return this.enableStatus; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setHealthStatus(String healthStatus) { this.healthStatus = healthStatus; return this; } public String getHealthStatus() { return this.healthStatus; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setScheduleDomainName(String scheduleDomainName) { this.scheduleDomainName = scheduleDomainName; return this; } public String getScheduleDomainName() { return this.scheduleDomainName; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setScheduleHostname(String scheduleHostname) { this.scheduleHostname = scheduleHostname; return this; } public String getScheduleHostname() { return this.scheduleHostname; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setScheduleRrType(String scheduleRrType) { this.scheduleRrType = scheduleRrType; return this; } public String getScheduleRrType() { return this.scheduleRrType; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setScheduleZoneMode(String scheduleZoneMode) { this.scheduleZoneMode = scheduleZoneMode; return this; } public String getScheduleZoneMode() { return this.scheduleZoneMode; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setScheduleZoneName(String scheduleZoneName) { this.scheduleZoneName = scheduleZoneName; return this; } public String getScheduleZoneName() { return this.scheduleZoneName; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setSequenceLbStrategyMode(String sequenceLbStrategyMode) { this.sequenceLbStrategyMode = sequenceLbStrategyMode; return this; } public String getSequenceLbStrategyMode() { return this.sequenceLbStrategyMode; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setTtl(Integer ttl) { this.ttl = ttl; return this; } public Integer getTtl() { return this.ttl; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig setVersionCode(String versionCode) { this.versionCode = versionCode; return this; } public String getVersionCode() { return this.versionCode; } } public static class ListCloudGtmInstanceConfigsResponseBodyInstanceConfigs extends TeaModel { @NameInMap("InstanceConfig") public java.util.List<ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig> instanceConfig; public static ListCloudGtmInstanceConfigsResponseBodyInstanceConfigs build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmInstanceConfigsResponseBodyInstanceConfigs self = new ListCloudGtmInstanceConfigsResponseBodyInstanceConfigs(); return TeaModel.build(map, self); } public ListCloudGtmInstanceConfigsResponseBodyInstanceConfigs setInstanceConfig(java.util.List<ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig> instanceConfig) { this.instanceConfig = instanceConfig; return this; } public java.util.List<ListCloudGtmInstanceConfigsResponseBodyInstanceConfigsInstanceConfig> getInstanceConfig() { return this.instanceConfig; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ListCloudGtmInstancesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmInstancesRequest extends TeaModel { /** * <p>Return language value. Options:</p> * <ul> * <li>zh-CN: Chinese.</li> * <li>en-US: English.</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.</p> * * <strong>example:</strong> * <p>1ae05db4-10e7-11ef-b126-00163e24**22</p> */ @NameInMap("ClientToken") public String clientToken; /** * <p>The ID of the GTM instance.</p> * * <strong>example:</strong> * <p>gtm-cn-jmp3qnw**03</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>Instance name, used to distinguish the business purpose of the instance.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("InstanceName") public String instanceName; /** * <p>Current page number, starting from <strong>1</strong>, default is <strong>1</strong>.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of rows per page when paginating queries, with a maximum value of <strong>100</strong>, and a default of <strong>20</strong>.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; public static ListCloudGtmInstancesRequest build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmInstancesRequest self = new ListCloudGtmInstancesRequest(); return TeaModel.build(map, self); } public ListCloudGtmInstancesRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public ListCloudGtmInstancesRequest setClientToken(String clientToken) { this.clientToken = clientToken; return this; } public String getClientToken() { return this.clientToken; } public ListCloudGtmInstancesRequest setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public ListCloudGtmInstancesRequest setInstanceName(String instanceName) { this.instanceName = instanceName; return this; } public String getInstanceName() { return this.instanceName; } public ListCloudGtmInstancesRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public ListCloudGtmInstancesRequest 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/ListCloudGtmInstancesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmInstancesResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public ListCloudGtmInstancesResponseBody body; public static ListCloudGtmInstancesResponse build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmInstancesResponse self = new ListCloudGtmInstancesResponse(); return TeaModel.build(map, self); } public ListCloudGtmInstancesResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public ListCloudGtmInstancesResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public ListCloudGtmInstancesResponse setBody(ListCloudGtmInstancesResponseBody body) { this.body = body; return this; } public ListCloudGtmInstancesResponseBody 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/ListCloudGtmInstancesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmInstancesResponseBody extends TeaModel { /** * <p>The instances.</p> */ @NameInMap("Instances") public ListCloudGtmInstancesResponseBodyInstances instances; /** * <p>Current page number, starting with <strong>1</strong>, default is <strong>1</strong>.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of rows per page when paginating queries, with a maximum value of 100 and a default of 20.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>Unique request identification code.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <p>Total number of instance entries.</p> * * <strong>example:</strong> * <p>15</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <p>Total number of pages.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("TotalPages") public Integer totalPages; public static ListCloudGtmInstancesResponseBody build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmInstancesResponseBody self = new ListCloudGtmInstancesResponseBody(); return TeaModel.build(map, self); } public ListCloudGtmInstancesResponseBody setInstances(ListCloudGtmInstancesResponseBodyInstances instances) { this.instances = instances; return this; } public ListCloudGtmInstancesResponseBodyInstances getInstances() { return this.instances; } public ListCloudGtmInstancesResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public ListCloudGtmInstancesResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public ListCloudGtmInstancesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public ListCloudGtmInstancesResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public ListCloudGtmInstancesResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class ListCloudGtmInstancesResponseBodyInstancesInstance extends TeaModel { /** * <p>The commodity code. Valid values:</p> * <ul> * <li>dns_gtm_public_cn: commodity code on the China site (aliyun.com)</li> * <li>dns_gtm_public_intl: commodity code on the international site (alibabacloud.com)</li> * </ul> * * <strong>example:</strong> * <p>dns_gtm_public_cn</p> */ @NameInMap("CommodityCode") public String commodityCode; /** * <p>Instance creation time.</p> * * <strong>example:</strong> * <p>2024-03-15T01:46Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>Instance creation time (timestamp).</p> * * <strong>example:</strong> * <p>1231298343343</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>Instance expiration time.</p> * * <strong>example:</strong> * <p>2024-03-15T01:46Z</p> */ @NameInMap("ExpireTime") public String expireTime; /** * <p>Instance expiration time (timestamp).</p> * * <strong>example:</strong> * <p>1231298343343</p> */ @NameInMap("ExpireTimestamp") public Long expireTimestamp; /** * <p>The ID of the GTM instance.</p> * * <strong>example:</strong> * <p>gtm-cn-jmp3qnw**03</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>Instance name.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("InstanceName") public String instanceName; /** * <p>Monitor probe task quota.</p> * * <strong>example:</strong> * <p>100</p> */ @NameInMap("MonitorTaskQuota") public Integer monitorTaskQuota; /** * <p>Monthly email sending volume.</p> * * <strong>example:</strong> * <p>50</p> */ @NameInMap("MonthlyEmailUsed") public Integer monthlyEmailUsed; /** * <p>SMS quota, only supported on the China site as international sites do not support SMS.</p> * * <strong>example:</strong> * <p>1000</p> */ @NameInMap("MonthlySmsQuota") public Integer monthlySmsQuota; /** * <p>Monthly SMS sending volume, only supported by the China site as international sites do not support SMS.</p> * * <strong>example:</strong> * <p>100</p> */ @NameInMap("MonthlySmsUsed") public Integer monthlySmsUsed; /** * <p>Monthly webhook send volume.</p> * * <strong>example:</strong> * <p>80</p> */ @NameInMap("MonthlyWebhookUsed") public Integer monthlyWebhookUsed; /** * <p>The access domain name, which consists of a hostname and a zone or a subzone.</p> * * <strong>example:</strong> * <p><a href="http://www.example.com">www.example.com</a></p> */ @NameInMap("ScheduleDomainName") public String scheduleDomainName; /** * <p>The last time the instance was modified.</p> * * <strong>example:</strong> * <p>2024-03-15T01:46Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <p>The last modification time of the instance (timestamp).</p> * * <strong>example:</strong> * <p>1231298343343</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; /** * <p>GTM instance version:</p> * <ul> * <li>standard: Standard Edition</li> * <li>ultimate: Ultimate Edition</li> * </ul> * * <strong>example:</strong> * <p>ultimate</p> */ @NameInMap("VersionCode") public String versionCode; public static ListCloudGtmInstancesResponseBodyInstancesInstance build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmInstancesResponseBodyInstancesInstance self = new ListCloudGtmInstancesResponseBodyInstancesInstance(); return TeaModel.build(map, self); } public ListCloudGtmInstancesResponseBodyInstancesInstance setCommodityCode(String commodityCode) { this.commodityCode = commodityCode; return this; } public String getCommodityCode() { return this.commodityCode; } public ListCloudGtmInstancesResponseBodyInstancesInstance setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public ListCloudGtmInstancesResponseBodyInstancesInstance setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public ListCloudGtmInstancesResponseBodyInstancesInstance setExpireTime(String expireTime) { this.expireTime = expireTime; return this; } public String getExpireTime() { return this.expireTime; } public ListCloudGtmInstancesResponseBodyInstancesInstance setExpireTimestamp(Long expireTimestamp) { this.expireTimestamp = expireTimestamp; return this; } public Long getExpireTimestamp() { return this.expireTimestamp; } public ListCloudGtmInstancesResponseBodyInstancesInstance setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public ListCloudGtmInstancesResponseBodyInstancesInstance setInstanceName(String instanceName) { this.instanceName = instanceName; return this; } public String getInstanceName() { return this.instanceName; } public ListCloudGtmInstancesResponseBodyInstancesInstance setMonitorTaskQuota(Integer monitorTaskQuota) { this.monitorTaskQuota = monitorTaskQuota; return this; } public Integer getMonitorTaskQuota() { return this.monitorTaskQuota; } public ListCloudGtmInstancesResponseBodyInstancesInstance setMonthlyEmailUsed(Integer monthlyEmailUsed) { this.monthlyEmailUsed = monthlyEmailUsed; return this; } public Integer getMonthlyEmailUsed() { return this.monthlyEmailUsed; } public ListCloudGtmInstancesResponseBodyInstancesInstance setMonthlySmsQuota(Integer monthlySmsQuota) { this.monthlySmsQuota = monthlySmsQuota; return this; } public Integer getMonthlySmsQuota() { return this.monthlySmsQuota; } public ListCloudGtmInstancesResponseBodyInstancesInstance setMonthlySmsUsed(Integer monthlySmsUsed) { this.monthlySmsUsed = monthlySmsUsed; return this; } public Integer getMonthlySmsUsed() { return this.monthlySmsUsed; } public ListCloudGtmInstancesResponseBodyInstancesInstance setMonthlyWebhookUsed(Integer monthlyWebhookUsed) { this.monthlyWebhookUsed = monthlyWebhookUsed; return this; } public Integer getMonthlyWebhookUsed() { return this.monthlyWebhookUsed; } public ListCloudGtmInstancesResponseBodyInstancesInstance setScheduleDomainName(String scheduleDomainName) { this.scheduleDomainName = scheduleDomainName; return this; } public String getScheduleDomainName() { return this.scheduleDomainName; } public ListCloudGtmInstancesResponseBodyInstancesInstance setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public ListCloudGtmInstancesResponseBodyInstancesInstance setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public ListCloudGtmInstancesResponseBodyInstancesInstance setVersionCode(String versionCode) { this.versionCode = versionCode; return this; } public String getVersionCode() { return this.versionCode; } } public static class ListCloudGtmInstancesResponseBodyInstances extends TeaModel { @NameInMap("Instance") public java.util.List<ListCloudGtmInstancesResponseBodyInstancesInstance> instance; public static ListCloudGtmInstancesResponseBodyInstances build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmInstancesResponseBodyInstances self = new ListCloudGtmInstancesResponseBodyInstances(); return TeaModel.build(map, self); } public ListCloudGtmInstancesResponseBodyInstances setInstance(java.util.List<ListCloudGtmInstancesResponseBodyInstancesInstance> instance) { this.instance = instance; return this; } public java.util.List<ListCloudGtmInstancesResponseBodyInstancesInstance> getInstance() { return this.instance; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ListCloudGtmMonitorNodesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmMonitorNodesRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li><strong>zh-CN</strong>: Chinese</li> * <li><strong>en-US</strong> (default): English</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; public static ListCloudGtmMonitorNodesRequest build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmMonitorNodesRequest self = new ListCloudGtmMonitorNodesRequest(); return TeaModel.build(map, self); } public ListCloudGtmMonitorNodesRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ListCloudGtmMonitorNodesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmMonitorNodesResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public ListCloudGtmMonitorNodesResponseBody body; public static ListCloudGtmMonitorNodesResponse build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmMonitorNodesResponse self = new ListCloudGtmMonitorNodesResponse(); return TeaModel.build(map, self); } public ListCloudGtmMonitorNodesResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public ListCloudGtmMonitorNodesResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public ListCloudGtmMonitorNodesResponse setBody(ListCloudGtmMonitorNodesResponseBody body) { this.body = body; return this; } public ListCloudGtmMonitorNodesResponseBody 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/ListCloudGtmMonitorNodesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmMonitorNodesResponseBody extends TeaModel { /** * <p>Public IPv4 monitoring node list.</p> */ @NameInMap("Ipv4IspCityNodes") public ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodes ipv4IspCityNodes; /** * <p>List of public IPv6 monitoring nodes.</p> */ @NameInMap("Ipv6IspCityNodes") public ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodes ipv6IspCityNodes; /** * <p>Unique request identification code.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; public static ListCloudGtmMonitorNodesResponseBody build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmMonitorNodesResponseBody self = new ListCloudGtmMonitorNodesResponseBody(); return TeaModel.build(map, self); } public ListCloudGtmMonitorNodesResponseBody setIpv4IspCityNodes(ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodes ipv4IspCityNodes) { this.ipv4IspCityNodes = ipv4IspCityNodes; return this; } public ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodes getIpv4IspCityNodes() { return this.ipv4IspCityNodes; } public ListCloudGtmMonitorNodesResponseBody setIpv6IspCityNodes(ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodes ipv6IspCityNodes) { this.ipv6IspCityNodes = ipv6IspCityNodes; return this; } public ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodes getIpv6IspCityNodes() { return this.ipv6IspCityNodes; } public ListCloudGtmMonitorNodesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public static class ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNodeIps extends TeaModel { @NameInMap("Ip") public java.util.List<String> ip; public static ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNodeIps build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNodeIps self = new ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNodeIps(); return TeaModel.build(map, self); } public ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNodeIps setIp(java.util.List<String> ip) { this.ip = ip; return this; } public java.util.List<String> getIp() { return this.ip; } } public static class ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNode extends TeaModel { /** * <p>City code.</p> * * <strong>example:</strong> * <p>503</p> */ @NameInMap("CityCode") public String cityCode; /** * <p>City name.</p> * * <strong>example:</strong> * <p>Beijing</p> */ @NameInMap("CityName") public String cityName; /** * <p>Country code.</p> * * <strong>example:</strong> * <p>629</p> */ @NameInMap("CountryCode") public String countryCode; /** * <p>Country name.</p> * * <strong>example:</strong> * <p>China</p> */ @NameInMap("CountryName") public String countryName; /** * <p>Monitor node default selection:</p> * <ul> * <li>true: Selected by default</li> * <li>false: Not selected by default</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("DefaultSelected") public Boolean defaultSelected; /** * <p>Monitor probe group name.</p> * * <strong>example:</strong> * <p>BGP Nodes</p> */ @NameInMap("GroupName") public String groupName; /** * <p>Monitoring node group type, currently supported:</p> * <ul> * <li>BGP: BGP node</li> * <li>OVERSEAS: International node</li> * <li>ISP: Carrier node</li> * </ul> * * <strong>example:</strong> * <p>BGP</p> */ @NameInMap("GroupType") public String groupType; /** * <p>List of node IP addresses.</p> */ @NameInMap("Ips") public ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNodeIps ips; /** * <p>Operator code.</p> * * <strong>example:</strong> * <p>465</p> */ @NameInMap("IspCode") public String ispCode; /** * <p>Operator name.</p> * * <strong>example:</strong> * <p>Alibaba</p> */ @NameInMap("IspName") public String ispName; /** * <p>Unique identifier ID of the probe node.</p> * * <strong>example:</strong> * <p>node-ewze1bysndy4gf**j8</p> */ @NameInMap("NodeId") public String nodeId; public static ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNode build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNode self = new ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNode(); return TeaModel.build(map, self); } public ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNode setCityCode(String cityCode) { this.cityCode = cityCode; return this; } public String getCityCode() { return this.cityCode; } public ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNode setCityName(String cityName) { this.cityName = cityName; return this; } public String getCityName() { return this.cityName; } public ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNode setCountryCode(String countryCode) { this.countryCode = countryCode; return this; } public String getCountryCode() { return this.countryCode; } public ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNode setCountryName(String countryName) { this.countryName = countryName; return this; } public String getCountryName() { return this.countryName; } public ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNode setDefaultSelected(Boolean defaultSelected) { this.defaultSelected = defaultSelected; return this; } public Boolean getDefaultSelected() { return this.defaultSelected; } public ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNode setGroupName(String groupName) { this.groupName = groupName; return this; } public String getGroupName() { return this.groupName; } public ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNode setGroupType(String groupType) { this.groupType = groupType; return this; } public String getGroupType() { return this.groupType; } public ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNode setIps(ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNodeIps ips) { this.ips = ips; return this; } public ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNodeIps getIps() { return this.ips; } public ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNode setIspCode(String ispCode) { this.ispCode = ispCode; return this; } public String getIspCode() { return this.ispCode; } public ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNode setIspName(String ispName) { this.ispName = ispName; return this; } public String getIspName() { return this.ispName; } public ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNode setNodeId(String nodeId) { this.nodeId = nodeId; return this; } public String getNodeId() { return this.nodeId; } } public static class ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodes extends TeaModel { @NameInMap("Ipv4IspCityNode") public java.util.List<ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNode> ipv4IspCityNode; public static ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodes build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodes self = new ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodes(); return TeaModel.build(map, self); } public ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodes setIpv4IspCityNode(java.util.List<ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNode> ipv4IspCityNode) { this.ipv4IspCityNode = ipv4IspCityNode; return this; } public java.util.List<ListCloudGtmMonitorNodesResponseBodyIpv4IspCityNodesIpv4IspCityNode> getIpv4IspCityNode() { return this.ipv4IspCityNode; } } public static class ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNodeIps extends TeaModel { @NameInMap("Ip") public java.util.List<String> ip; public static ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNodeIps build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNodeIps self = new ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNodeIps(); return TeaModel.build(map, self); } public ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNodeIps setIp(java.util.List<String> ip) { this.ip = ip; return this; } public java.util.List<String> getIp() { return this.ip; } } public static class ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNode extends TeaModel { /** * <p>City code.</p> * * <strong>example:</strong> * <p>357</p> */ @NameInMap("CityCode") public String cityCode; /** * <p>City name.</p> * * <strong>example:</strong> * <p>Shanghai</p> */ @NameInMap("CityName") public String cityName; /** * <p>Country code.</p> * * <strong>example:</strong> * <p>629</p> */ @NameInMap("CountryCode") public String countryCode; /** * <p>Country name.</p> * * <strong>example:</strong> * <p>China</p> */ @NameInMap("CountryName") public String countryName; /** * <p>Monitor node default selection:</p> * <ul> * <li>true: Selected by default</li> * <li>false: Not selected by default</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("DefaultSelected") public Boolean defaultSelected; /** * <p>Monitoring probe group name.</p> * * <strong>example:</strong> * <p>BGP</p> */ @NameInMap("GroupName") public String groupName; /** * <p>Monitoring node group type, currently supported:</p> * <ul> * <li>BGP: BGP node</li> * <li>OVERSEAS: International node</li> * <li>ISP: Carrier node</li> * </ul> * * <strong>example:</strong> * <p>BGP</p> */ @NameInMap("GroupType") public String groupType; /** * <p>List of node IP addresses.</p> */ @NameInMap("Ips") public ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNodeIps ips; /** * <p>Operator code.</p> * * <strong>example:</strong> * <p>465</p> */ @NameInMap("IspCode") public String ispCode; /** * <p>Operator name.</p> * * <strong>example:</strong> * <p>Alibaba</p> */ @NameInMap("IspName") public String ispName; /** * <p>Unique identifier ID of the probe node.</p> * * <strong>example:</strong> * <p>node-ewze1bysndy4gf**j8</p> */ @NameInMap("NodeId") public String nodeId; public static ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNode build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNode self = new ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNode(); return TeaModel.build(map, self); } public ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNode setCityCode(String cityCode) { this.cityCode = cityCode; return this; } public String getCityCode() { return this.cityCode; } public ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNode setCityName(String cityName) { this.cityName = cityName; return this; } public String getCityName() { return this.cityName; } public ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNode setCountryCode(String countryCode) { this.countryCode = countryCode; return this; } public String getCountryCode() { return this.countryCode; } public ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNode setCountryName(String countryName) { this.countryName = countryName; return this; } public String getCountryName() { return this.countryName; } public ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNode setDefaultSelected(Boolean defaultSelected) { this.defaultSelected = defaultSelected; return this; } public Boolean getDefaultSelected() { return this.defaultSelected; } public ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNode setGroupName(String groupName) { this.groupName = groupName; return this; } public String getGroupName() { return this.groupName; } public ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNode setGroupType(String groupType) { this.groupType = groupType; return this; } public String getGroupType() { return this.groupType; } public ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNode setIps(ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNodeIps ips) { this.ips = ips; return this; } public ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNodeIps getIps() { return this.ips; } public ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNode setIspCode(String ispCode) { this.ispCode = ispCode; return this; } public String getIspCode() { return this.ispCode; } public ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNode setIspName(String ispName) { this.ispName = ispName; return this; } public String getIspName() { return this.ispName; } public ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNode setNodeId(String nodeId) { this.nodeId = nodeId; return this; } public String getNodeId() { return this.nodeId; } } public static class ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodes extends TeaModel { @NameInMap("Ipv6IspCityNode") public java.util.List<ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNode> ipv6IspCityNode; public static ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodes build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodes self = new ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodes(); return TeaModel.build(map, self); } public ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodes setIpv6IspCityNode(java.util.List<ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNode> ipv6IspCityNode) { this.ipv6IspCityNode = ipv6IspCityNode; return this; } public java.util.List<ListCloudGtmMonitorNodesResponseBodyIpv6IspCityNodesIpv6IspCityNode> 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/ListCloudGtmMonitorTemplatesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmMonitorTemplatesRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li>zh-CN: Chinese</li> * <li>en-US (default): English</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>The IP address type of health check nodes. Valid values:</p> * <ul> * <li>IPv4: applicable when health checks are performed on IPv4 addresses.</li> * <li>IPv6: applicable when health checks are performed on IPv6 addresses.</li> * </ul> * * <strong>example:</strong> * <p>IPv4</p> */ @NameInMap("IpVersion") public String ipVersion; /** * <p>The name of the health check probe template, which is recommended to be distinguishable for configuration personnel to differentiate and remember, ideally indicating the health check protocol.</p> * * <strong>example:</strong> * <p>IPv4-Ping</p> */ @NameInMap("Name") public String name; /** * <p>Current page number, starting from <strong>1</strong>, default is <strong>1</strong>.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of rows per page when paginating queries, with a maximum value of 100 and a default of 20.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>Protocol types for initiating probes to the target IP address:</p> * <ul> * <li>ping</li> * <li>tcp</li> * <li>http</li> * <li>https</li> * </ul> * * <strong>example:</strong> * <p>ping</p> */ @NameInMap("Protocol") public String protocol; public static ListCloudGtmMonitorTemplatesRequest build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmMonitorTemplatesRequest self = new ListCloudGtmMonitorTemplatesRequest(); return TeaModel.build(map, self); } public ListCloudGtmMonitorTemplatesRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public ListCloudGtmMonitorTemplatesRequest setIpVersion(String ipVersion) { this.ipVersion = ipVersion; return this; } public String getIpVersion() { return this.ipVersion; } public ListCloudGtmMonitorTemplatesRequest setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public ListCloudGtmMonitorTemplatesRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public ListCloudGtmMonitorTemplatesRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public ListCloudGtmMonitorTemplatesRequest setProtocol(String protocol) { this.protocol = protocol; return this; } public String getProtocol() { return this.protocol; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ListCloudGtmMonitorTemplatesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmMonitorTemplatesResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public ListCloudGtmMonitorTemplatesResponseBody body; public static ListCloudGtmMonitorTemplatesResponse build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmMonitorTemplatesResponse self = new ListCloudGtmMonitorTemplatesResponse(); return TeaModel.build(map, self); } public ListCloudGtmMonitorTemplatesResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public ListCloudGtmMonitorTemplatesResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public ListCloudGtmMonitorTemplatesResponse setBody(ListCloudGtmMonitorTemplatesResponseBody body) { this.body = body; return this; } public ListCloudGtmMonitorTemplatesResponseBody 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/ListCloudGtmMonitorTemplatesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListCloudGtmMonitorTemplatesResponseBody extends TeaModel { /** * <p>Current page number, starting from 1, default is 1.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>The number of rows per page when paginating queries, with a maximum value of 100 and a default of 20.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>Unique request identification code.</p> * * <strong>example:</strong> * <p>75446CC1-FC9A-4595-8D96-089D73D7A63D</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The health check templates.</p> */ @NameInMap("Templates") public ListCloudGtmMonitorTemplatesResponseBodyTemplates templates; /** * <p>Total number of health check template entries retrieved.</p> * * <strong>example:</strong> * <p>30</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <p>Total number of pages after data pagination.</p> * * <strong>example:</strong> * <p>2</p> */ @NameInMap("TotalPages") public Integer totalPages; public static ListCloudGtmMonitorTemplatesResponseBody build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmMonitorTemplatesResponseBody self = new ListCloudGtmMonitorTemplatesResponseBody(); return TeaModel.build(map, self); } public ListCloudGtmMonitorTemplatesResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public ListCloudGtmMonitorTemplatesResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public ListCloudGtmMonitorTemplatesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public ListCloudGtmMonitorTemplatesResponseBody setTemplates(ListCloudGtmMonitorTemplatesResponseBodyTemplates templates) { this.templates = templates; return this; } public ListCloudGtmMonitorTemplatesResponseBodyTemplates getTemplates() { return this.templates; } public ListCloudGtmMonitorTemplatesResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public ListCloudGtmMonitorTemplatesResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode extends TeaModel { /** * <p>City code.</p> * * <strong>example:</strong> * <p>738</p> */ @NameInMap("CityCode") public String cityCode; /** * <p>City name.</p> * * <strong>example:</strong> * <p>Beijing</p> */ @NameInMap("CityName") public String cityName; /** * <p>Country code.</p> * * <strong>example:</strong> * <p>629</p> */ @NameInMap("CountryCode") public String countryCode; /** * <p>Country name.</p> * * <strong>example:</strong> * <p>China</p> */ @NameInMap("CountryName") public String countryName; /** * <p>Probe node group name.</p> * * <strong>example:</strong> * <p>BGP Nodes</p> */ @NameInMap("GroupName") public String groupName; /** * <p>Probe node group types:</p> * <ul> * <li>BGP: BGP nodes</li> * <li>OVERSEAS: International nodes</li> * <li>ISP: Carrier nodes</li> * </ul> * * <strong>example:</strong> * <p>BGP</p> */ @NameInMap("GroupType") public String groupType; /** * <p>Operator code.</p> * * <strong>example:</strong> * <p>465</p> */ @NameInMap("IspCode") public String ispCode; /** * <p>Operator name.</p> * * <strong>example:</strong> * <p>Alibaba</p> */ @NameInMap("IspName") public String ispName; public static ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode self = new ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode(); return TeaModel.build(map, self); } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode setCityCode(String cityCode) { this.cityCode = cityCode; return this; } public String getCityCode() { return this.cityCode; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode setCityName(String cityName) { this.cityName = cityName; return this; } public String getCityName() { return this.cityName; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode setCountryCode(String countryCode) { this.countryCode = countryCode; return this; } public String getCountryCode() { return this.countryCode; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode setCountryName(String countryName) { this.countryName = countryName; return this; } public String getCountryName() { return this.countryName; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode setGroupName(String groupName) { this.groupName = groupName; return this; } public String getGroupName() { return this.groupName; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode setGroupType(String groupType) { this.groupType = groupType; return this; } public String getGroupType() { return this.groupType; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode setIspCode(String ispCode) { this.ispCode = ispCode; return this; } public String getIspCode() { return this.ispCode; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode setIspName(String ispName) { this.ispName = ispName; return this; } public String getIspName() { return this.ispName; } } public static class ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodes extends TeaModel { @NameInMap("IspCityNode") public java.util.List<ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode> ispCityNode; public static ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodes build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodes self = new ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodes(); return TeaModel.build(map, self); } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodes setIspCityNode(java.util.List<ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode> ispCityNode) { this.ispCityNode = ispCityNode; return this; } public java.util.List<ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodesIspCityNode> getIspCityNode() { return this.ispCityNode; } } public static class ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate extends TeaModel { /** * <p>Health check template creation time.</p> * * <strong>example:</strong> * <p>2024-03-23T13:09Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <p>Health check template creation time (timestamp).</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <p>The number of retries. The system will only judge the application service as abnormal after consecutive monitoring failures to prevent inaccurate monitoring results due to momentary network fluctuations or other reasons. Available retry options are:</p> * <ul> * <li>1 - 2 - 3</li> * </ul> * * <strong>example:</strong> * <p>2</p> */ @NameInMap("EvaluationCount") public Integer evaluationCount; /** * <p>The extended information. The value of this parameter is a JSON string. The required parameters vary based on the health check protocol.</p> * <ul> * <li><p>HTTP or HTTPS:</p> * <p><strong>host</strong>: the Host field of an HTTP or HTTPS request header during an HTTP or HTTPS health check. The parameter value indicates the HTTP website that you want to visit. By default, the value is the primary domain name. You can change the value based on your business requirements.</p> * <p><strong>path</strong>: the URL for HTTP or HTTPS health checks. Default value: /.</p> * <p><strong>code</strong>: the alert threshold. During an HTTP or HTTPS health check, the system checks whether a web server functions as expected based on the status code that is returned from the web server. If the returned status code is greater than the specified threshold, the corresponding application service address is deemed abnormal. Valid values:</p> * <ul> * <li>400: indicates an invalid request. If an HTTP or HTTPS request contains invalid request parameters, a web server returns a status code that is greater than 400. You must specify an exact URL for path if you set code to 400.</li> * <li>500: indicates a server error. If some exceptions occur on a web server, the web server returns a status code that is greater than 500. This value is used by default.</li> * </ul> * <p><strong>sni</strong>: indicates whether Server Name Indication (SNI) is enabled. This parameter is used only when the health check protocol is HTTPS. SNI is an extension to the Transport Layer Security (TLS) protocol, which allows a client to specify the host to be connected when the client sends a TLS handshake request. TLS handshakes occur before any data of HTTP requests is sent. Therefore, SNI enables servers to identify the services that clients are attempting to access before certificates are sent. This allows the servers to present correct certificates to the clients. Valid values:</p> * <ul> * <li>true: SNI is enabled.</li> * <li>false: SNI is disabled.</li> * </ul> * <p><strong>followRedirect</strong>: indicates whether 3XX redirects are followed. Valid values:</p> * <ul> * <li>true: 3XX redirects are followed. You are redirected to the destination address if a 3XX status code such as 301, 302, 303, 307, or 308 is returned.</li> * <li>false: 3XX redirects are not followed.</li> * </ul> * </li> * <li><p>ping:</p> * <p><strong>packetNum</strong>: the total number of Internet Control Message Protocol (ICMP) packets that are sent to the address for each ping-based health check. Valid values: 20, 50, and 100.</p> * <p><strong>packetLossRate</strong>: the ICMP packet loss rate for each ping-based health check. The packet loss rate in a health check can be calculated by using the following formula: Packet loss rate in a health check = (Number of lost packets/Total number of sent ICMP packets) × 100%. If the packet loss rate reaches the threshold, an alert is triggered. Valid values: 10, 30, 40, 80, 90, and 100.</p> * </li> * </ul> * * <strong>example:</strong> * <p>{\&quot;code\&quot;:200,\&quot;path\&quot;:\&quot;\\index.htm\&quot;,\&quot;host\&quot;:\&quot;aliyun.com\&quot;}</p> */ @NameInMap("ExtendInfo") public String extendInfo; /** * <p>Percentage of selected node probe failures (%), that is, the percentage of unhealthy check points among total probe points. When the failure ratio exceeds the set threshold, the service address is judged as abnormal. The available failure ratio thresholds are:</p> * <ul> * <li>20</li> * <li>50</li> * <li>80</li> * <li>100</li> * </ul> * * <strong>example:</strong> * <p>50</p> */ @NameInMap("FailureRate") public Integer failureRate; /** * <p>The time interval between each check (in seconds), with a default of probing once every minute. The minimum supported health check interval is 15 seconds, available for flagship edition instances.</p> * * <strong>example:</strong> * <p>60</p> */ @NameInMap("Interval") public Integer interval; /** * <p>The IP address type of health check nodes. Valid values:</p> * <ul> * <li>IPv4: applicable when health checks are performed on IPv4 addresses.</li> * <li>IPv6: applicable when health checks are performed on IPv6 addresses.</li> * </ul> * * <strong>example:</strong> * <p>IPv4</p> */ @NameInMap("IpVersion") public String ipVersion; /** * <p>The health check nodes. You can call the <a href="~~ListCloudGtmMonitorNodes~~">ListCloudGtmMonitorNodes</a> operation to obtain the health check nodes.</p> */ @NameInMap("IspCityNodes") public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodes ispCityNodes; /** * <p>The name of the health check probe template, generally for the convenience of configuration personnel to distinguish and remember.</p> * * <strong>example:</strong> * <p>IPv4-Ping</p> */ @NameInMap("Name") public String name; /** * <p>Protocol types for initiating probes to the target IP address:</p> * <ul> * <li>ping</li> * <li>tcp</li> * <li>http</li> * <li>https</li> * </ul> * * <strong>example:</strong> * <p>ping</p> */ @NameInMap("Protocol") public String protocol; /** * <p>Remarks for the health check template.</p> * * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; /** * <p>The ID of the health check template. This ID uniquely identifies the health check template.</p> * * <strong>example:</strong> * <p>mtp-89518052425100**80</p> */ @NameInMap("TemplateId") public String templateId; /** * <p>Probe timeout (in milliseconds), data packets not returned within the timeout period are deemed as health check timeouts:</p> * <ul> * <li>2000</li> * <li>3000</li> * <li>5000</li> * <li>10000</li> * </ul> * * <strong>example:</strong> * <p>5000</p> */ @NameInMap("Timeout") public Integer timeout; /** * <p>Last modification time of the health check template.</p> * * <strong>example:</strong> * <p>2024-03-29T13:20Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <p>Health check template configuration modification time (timestamp).</p> * * <strong>example:</strong> * <p>1527690629357</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; public static ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate self = new ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate(); return TeaModel.build(map, self); } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setEvaluationCount(Integer evaluationCount) { this.evaluationCount = evaluationCount; return this; } public Integer getEvaluationCount() { return this.evaluationCount; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setExtendInfo(String extendInfo) { this.extendInfo = extendInfo; return this; } public String getExtendInfo() { return this.extendInfo; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setFailureRate(Integer failureRate) { this.failureRate = failureRate; return this; } public Integer getFailureRate() { return this.failureRate; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setInterval(Integer interval) { this.interval = interval; return this; } public Integer getInterval() { return this.interval; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setIpVersion(String ipVersion) { this.ipVersion = ipVersion; return this; } public String getIpVersion() { return this.ipVersion; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setIspCityNodes(ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodes ispCityNodes) { this.ispCityNodes = ispCityNodes; return this; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplateIspCityNodes getIspCityNodes() { return this.ispCityNodes; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setProtocol(String protocol) { this.protocol = protocol; return this; } public String getProtocol() { return this.protocol; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setTemplateId(String templateId) { this.templateId = templateId; return this; } public String getTemplateId() { return this.templateId; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setTimeout(Integer timeout) { this.timeout = timeout; return this; } public Integer getTimeout() { return this.timeout; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } } public static class ListCloudGtmMonitorTemplatesResponseBodyTemplates extends TeaModel { @NameInMap("Template") public java.util.List<ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate> template; public static ListCloudGtmMonitorTemplatesResponseBodyTemplates build(java.util.Map<String, ?> map) throws Exception { ListCloudGtmMonitorTemplatesResponseBodyTemplates self = new ListCloudGtmMonitorTemplatesResponseBodyTemplates(); return TeaModel.build(map, self); } public ListCloudGtmMonitorTemplatesResponseBodyTemplates setTemplate(java.util.List<ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate> template) { this.template = template; return this; } public java.util.List<ListCloudGtmMonitorTemplatesResponseBodyTemplatesTemplate> getTemplate() { return this.template; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ListRecursionRecordsRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListRecursionRecordsRequest extends TeaModel { /** * <strong>example:</strong> * <p>enable</p> */ @NameInMap("Enable") public String enable; /** * <strong>example:</strong> * <p>100</p> */ @NameInMap("MaxResults") public Integer maxResults; /** * <strong>example:</strong> * <p>4698691</p> */ @NameInMap("NextToken") public String nextToken; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <strong>example:</strong> * <p>remark</p> */ @NameInMap("Remark") public String remark; /** * <strong>example:</strong> * <p>default</p> */ @NameInMap("RequestSource") public String requestSource; /** * <strong>example:</strong> * <p>www</p> */ @NameInMap("Rr") public String rr; /** * <strong>example:</strong> * <p>60</p> */ @NameInMap("Ttl") public Integer ttl; /** * <strong>example:</strong> * <p>A</p> */ @NameInMap("Type") public String type; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("Weight") public Integer weight; /** * <strong>example:</strong> * <p>17832322323</p> */ @NameInMap("ZoneId") public String zoneId; public static ListRecursionRecordsRequest build(java.util.Map<String, ?> map) throws Exception { ListRecursionRecordsRequest self = new ListRecursionRecordsRequest(); return TeaModel.build(map, self); } public ListRecursionRecordsRequest setEnable(String enable) { this.enable = enable; return this; } public String getEnable() { return this.enable; } public ListRecursionRecordsRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public ListRecursionRecordsRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public ListRecursionRecordsRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public ListRecursionRecordsRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public ListRecursionRecordsRequest setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public ListRecursionRecordsRequest setRequestSource(String requestSource) { this.requestSource = requestSource; return this; } public String getRequestSource() { return this.requestSource; } public ListRecursionRecordsRequest setRr(String rr) { this.rr = rr; return this; } public String getRr() { return this.rr; } public ListRecursionRecordsRequest setTtl(Integer ttl) { this.ttl = ttl; return this; } public Integer getTtl() { return this.ttl; } public ListRecursionRecordsRequest setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public ListRecursionRecordsRequest setWeight(Integer weight) { this.weight = weight; return this; } public Integer getWeight() { return this.weight; } public ListRecursionRecordsRequest setZoneId(String zoneId) { this.zoneId = zoneId; return this; } public String getZoneId() { return this.zoneId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ListRecursionRecordsResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListRecursionRecordsResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public ListRecursionRecordsResponseBody body; public static ListRecursionRecordsResponse build(java.util.Map<String, ?> map) throws Exception { ListRecursionRecordsResponse self = new ListRecursionRecordsResponse(); return TeaModel.build(map, self); } public ListRecursionRecordsResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public ListRecursionRecordsResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public ListRecursionRecordsResponse setBody(ListRecursionRecordsResponseBody body) { this.body = body; return this; } public ListRecursionRecordsResponseBody 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/ListRecursionRecordsResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListRecursionRecordsResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>500</p> */ @NameInMap("MaxResults") public Integer maxResults; /** * <strong>example:</strong> * <p>4698691</p> */ @NameInMap("NextToken") public String nextToken; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <strong>example:</strong> * <p>20</p> */ @NameInMap("PageSize") public Integer pageSize; @NameInMap("Records") public ListRecursionRecordsResponseBodyRecords records; /** * <strong>example:</strong> * <p>6856BCF6-11D6-4D7E-AC53-FD579933522B</p> */ @NameInMap("RequestId") public String requestId; /** * <strong>example:</strong> * <p>100</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <strong>example:</strong> * <p>5</p> */ @NameInMap("TotalPages") public Integer totalPages; public static ListRecursionRecordsResponseBody build(java.util.Map<String, ?> map) throws Exception { ListRecursionRecordsResponseBody self = new ListRecursionRecordsResponseBody(); return TeaModel.build(map, self); } public ListRecursionRecordsResponseBody setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public ListRecursionRecordsResponseBody setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public ListRecursionRecordsResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public ListRecursionRecordsResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public ListRecursionRecordsResponseBody setRecords(ListRecursionRecordsResponseBodyRecords records) { this.records = records; return this; } public ListRecursionRecordsResponseBodyRecords getRecords() { return this.records; } public ListRecursionRecordsResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public ListRecursionRecordsResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public ListRecursionRecordsResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class ListRecursionRecordsResponseBodyRecordsRecord extends TeaModel { /** * <strong>example:</strong> * <p>2023-06-28T09:16Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <strong>example:</strong> * <p>1721119172000</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <strong>example:</strong> * <p>123121312</p> */ @NameInMap("Creator") public Long creator; /** * <strong>example:</strong> * <p>custom</p> */ @NameInMap("CreatorSubType") public String creatorSubType; /** * <strong>example:</strong> * <p>user</p> */ @NameInMap("CreatorType") public String creatorType; /** * <strong>example:</strong> * <p>enable</p> */ @NameInMap("EnableStatus") public String enableStatus; /** * <strong>example:</strong> * <p>10</p> */ @NameInMap("Priority") public Integer priority; /** * <strong>example:</strong> * <p>1897105298264316928</p> */ @NameInMap("RecordId") public String recordId; /** * <strong>example:</strong> * <p>1150</p> */ @NameInMap("Remark") public String remark; /** * <strong>example:</strong> * <p>default</p> */ @NameInMap("RequestSource") public String requestSource; /** * <strong>example:</strong> * <p>wap</p> */ @NameInMap("Rr") public String rr; /** * <strong>example:</strong> * <p>60</p> */ @NameInMap("Ttl") public Integer ttl; /** * <strong>example:</strong> * <p>A</p> */ @NameInMap("Type") public String type; /** * <strong>example:</strong> * <p>2024-10-22T09:54Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <strong>example:</strong> * <p>1620283051000</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; /** * <strong>example:</strong> * <p>120.38.70.54</p> */ @NameInMap("Value") public String value; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("Weight") public Integer weight; /** * <strong>example:</strong> * <p>169439170000011</p> */ @NameInMap("ZoneId") public String zoneId; public static ListRecursionRecordsResponseBodyRecordsRecord build(java.util.Map<String, ?> map) throws Exception { ListRecursionRecordsResponseBodyRecordsRecord self = new ListRecursionRecordsResponseBodyRecordsRecord(); return TeaModel.build(map, self); } public ListRecursionRecordsResponseBodyRecordsRecord setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public ListRecursionRecordsResponseBodyRecordsRecord setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public ListRecursionRecordsResponseBodyRecordsRecord setCreator(Long creator) { this.creator = creator; return this; } public Long getCreator() { return this.creator; } public ListRecursionRecordsResponseBodyRecordsRecord setCreatorSubType(String creatorSubType) { this.creatorSubType = creatorSubType; return this; } public String getCreatorSubType() { return this.creatorSubType; } public ListRecursionRecordsResponseBodyRecordsRecord setCreatorType(String creatorType) { this.creatorType = creatorType; return this; } public String getCreatorType() { return this.creatorType; } public ListRecursionRecordsResponseBodyRecordsRecord setEnableStatus(String enableStatus) { this.enableStatus = enableStatus; return this; } public String getEnableStatus() { return this.enableStatus; } public ListRecursionRecordsResponseBodyRecordsRecord setPriority(Integer priority) { this.priority = priority; return this; } public Integer getPriority() { return this.priority; } public ListRecursionRecordsResponseBodyRecordsRecord setRecordId(String recordId) { this.recordId = recordId; return this; } public String getRecordId() { return this.recordId; } public ListRecursionRecordsResponseBodyRecordsRecord setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public ListRecursionRecordsResponseBodyRecordsRecord setRequestSource(String requestSource) { this.requestSource = requestSource; return this; } public String getRequestSource() { return this.requestSource; } public ListRecursionRecordsResponseBodyRecordsRecord setRr(String rr) { this.rr = rr; return this; } public String getRr() { return this.rr; } public ListRecursionRecordsResponseBodyRecordsRecord setTtl(Integer ttl) { this.ttl = ttl; return this; } public Integer getTtl() { return this.ttl; } public ListRecursionRecordsResponseBodyRecordsRecord setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public ListRecursionRecordsResponseBodyRecordsRecord setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public ListRecursionRecordsResponseBodyRecordsRecord setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public ListRecursionRecordsResponseBodyRecordsRecord setValue(String value) { this.value = value; return this; } public String getValue() { return this.value; } public ListRecursionRecordsResponseBodyRecordsRecord setWeight(Integer weight) { this.weight = weight; return this; } public Integer getWeight() { return this.weight; } public ListRecursionRecordsResponseBodyRecordsRecord setZoneId(String zoneId) { this.zoneId = zoneId; return this; } public String getZoneId() { return this.zoneId; } } public static class ListRecursionRecordsResponseBodyRecords extends TeaModel { @NameInMap("Record") public java.util.List<ListRecursionRecordsResponseBodyRecordsRecord> record; public static ListRecursionRecordsResponseBodyRecords build(java.util.Map<String, ?> map) throws Exception { ListRecursionRecordsResponseBodyRecords self = new ListRecursionRecordsResponseBodyRecords(); return TeaModel.build(map, self); } public ListRecursionRecordsResponseBodyRecords setRecord(java.util.List<ListRecursionRecordsResponseBodyRecordsRecord> record) { this.record = record; return this; } public java.util.List<ListRecursionRecordsResponseBodyRecordsRecord> 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/ListRecursionZonesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListRecursionZonesRequest extends TeaModel { /** * <strong>example:</strong> * <p>100</p> */ @NameInMap("MaxResults") public Integer maxResults; /** * <strong>example:</strong> * <p>4698691</p> */ @NameInMap("NextToken") public String nextToken; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>10</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <strong>example:</strong> * <p>test</p> */ @NameInMap("Remark") public String remark; /** * <strong>example:</strong> * <p>lisheng999.com</p> */ @NameInMap("ZoneName") public String zoneName; public static ListRecursionZonesRequest build(java.util.Map<String, ?> map) throws Exception { ListRecursionZonesRequest self = new ListRecursionZonesRequest(); return TeaModel.build(map, self); } public ListRecursionZonesRequest setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public ListRecursionZonesRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public ListRecursionZonesRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public ListRecursionZonesRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public ListRecursionZonesRequest setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public ListRecursionZonesRequest setZoneName(String zoneName) { this.zoneName = zoneName; return this; } public String getZoneName() { return this.zoneName; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ListRecursionZonesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListRecursionZonesResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public ListRecursionZonesResponseBody body; public static ListRecursionZonesResponse build(java.util.Map<String, ?> map) throws Exception { ListRecursionZonesResponse self = new ListRecursionZonesResponse(); return TeaModel.build(map, self); } public ListRecursionZonesResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public ListRecursionZonesResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public ListRecursionZonesResponse setBody(ListRecursionZonesResponseBody body) { this.body = body; return this; } public ListRecursionZonesResponseBody 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/ListRecursionZonesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListRecursionZonesResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>100</p> */ @NameInMap("MaxResults") public Integer maxResults; /** * <strong>example:</strong> * <p>4698691</p> */ @NameInMap("NextToken") public String nextToken; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("PageNumber") public Integer pageNumber; /** * <strong>example:</strong> * <p>5</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <strong>example:</strong> * <p>1</p> */ @NameInMap("TotalPages") public Integer totalPages; @NameInMap("Zones") public ListRecursionZonesResponseBodyZones zones; public static ListRecursionZonesResponseBody build(java.util.Map<String, ?> map) throws Exception { ListRecursionZonesResponseBody self = new ListRecursionZonesResponseBody(); return TeaModel.build(map, self); } public ListRecursionZonesResponseBody setMaxResults(Integer maxResults) { this.maxResults = maxResults; return this; } public Integer getMaxResults() { return this.maxResults; } public ListRecursionZonesResponseBody setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public ListRecursionZonesResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public ListRecursionZonesResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public ListRecursionZonesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public ListRecursionZonesResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public ListRecursionZonesResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public ListRecursionZonesResponseBody setZones(ListRecursionZonesResponseBodyZones zones) { this.zones = zones; return this; } public ListRecursionZonesResponseBodyZones getZones() { return this.zones; } public static class ListRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScopeScopes extends TeaModel { @NameInMap("Scope") public java.util.List<String> scope; public static ListRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScopeScopes build(java.util.Map<String, ?> map) throws Exception { ListRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScopeScopes self = new ListRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScopeScopes(); return TeaModel.build(map, self); } public ListRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScopeScopes setScope(java.util.List<String> scope) { this.scope = scope; return this; } public java.util.List<String> getScope() { return this.scope; } } public static class ListRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScope extends TeaModel { /** * <strong>example:</strong> * <p>account</p> */ @NameInMap("EffectiveType") public String effectiveType; @NameInMap("Scopes") public ListRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScopeScopes scopes; public static ListRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScope build(java.util.Map<String, ?> map) throws Exception { ListRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScope self = new ListRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScope(); return TeaModel.build(map, self); } public ListRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScope setEffectiveType(String effectiveType) { this.effectiveType = effectiveType; return this; } public String getEffectiveType() { return this.effectiveType; } public ListRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScope setScopes(ListRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScopeScopes scopes) { this.scopes = scopes; return this; } public ListRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScopeScopes getScopes() { return this.scopes; } } public static class ListRecursionZonesResponseBodyZonesZoneEffectiveScopes extends TeaModel { @NameInMap("EffectiveScope") public java.util.List<ListRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScope> effectiveScope; public static ListRecursionZonesResponseBodyZonesZoneEffectiveScopes build(java.util.Map<String, ?> map) throws Exception { ListRecursionZonesResponseBodyZonesZoneEffectiveScopes self = new ListRecursionZonesResponseBodyZonesZoneEffectiveScopes(); return TeaModel.build(map, self); } public ListRecursionZonesResponseBodyZonesZoneEffectiveScopes setEffectiveScope(java.util.List<ListRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScope> effectiveScope) { this.effectiveScope = effectiveScope; return this; } public java.util.List<ListRecursionZonesResponseBodyZonesZoneEffectiveScopesEffectiveScope> getEffectiveScope() { return this.effectiveScope; } } public static class ListRecursionZonesResponseBodyZonesZone extends TeaModel { /** * <strong>example:</strong> * <p>2021-03-08T05:45Z</p> */ @NameInMap("CreateTime") public String createTime; /** * <strong>example:</strong> * <p>1729674680000</p> */ @NameInMap("CreateTimestamp") public Long createTimestamp; /** * <strong>example:</strong> * <p>218497924149333932</p> */ @NameInMap("Creator") public String creator; /** * <strong>example:</strong> * <p>SUB</p> */ @NameInMap("CreatorSubType") public String creatorSubType; /** * <strong>example:</strong> * <p>USER</p> */ @NameInMap("CreatorType") public String creatorType; @NameInMap("EffectiveScopes") public ListRecursionZonesResponseBodyZonesZoneEffectiveScopes effectiveScopes; /** * <strong>example:</strong> * <p>record</p> */ @NameInMap("ProxyPattern") public String proxyPattern; /** * <strong>example:</strong> * <p>8</p> */ @NameInMap("RecordCount") public Integer recordCount; /** * <strong>example:</strong> * <p>107</p> */ @NameInMap("Remark") public String remark; /** * <strong>example:</strong> * <p>2024-11-12T04:30Z</p> */ @NameInMap("UpdateTime") public String updateTime; /** * <strong>example:</strong> * <p>1707189878000</p> */ @NameInMap("UpdateTimestamp") public Long updateTimestamp; /** * <strong>example:</strong> * <p>173671468000011</p> */ @NameInMap("ZoneId") public String zoneId; /** * <strong>example:</strong> * <p>dfsdfsd</p> */ @NameInMap("ZoneName") public String zoneName; public static ListRecursionZonesResponseBodyZonesZone build(java.util.Map<String, ?> map) throws Exception { ListRecursionZonesResponseBodyZonesZone self = new ListRecursionZonesResponseBodyZonesZone(); return TeaModel.build(map, self); } public ListRecursionZonesResponseBodyZonesZone setCreateTime(String createTime) { this.createTime = createTime; return this; } public String getCreateTime() { return this.createTime; } public ListRecursionZonesResponseBodyZonesZone setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; return this; } public Long getCreateTimestamp() { return this.createTimestamp; } public ListRecursionZonesResponseBodyZonesZone setCreator(String creator) { this.creator = creator; return this; } public String getCreator() { return this.creator; } public ListRecursionZonesResponseBodyZonesZone setCreatorSubType(String creatorSubType) { this.creatorSubType = creatorSubType; return this; } public String getCreatorSubType() { return this.creatorSubType; } public ListRecursionZonesResponseBodyZonesZone setCreatorType(String creatorType) { this.creatorType = creatorType; return this; } public String getCreatorType() { return this.creatorType; } public ListRecursionZonesResponseBodyZonesZone setEffectiveScopes(ListRecursionZonesResponseBodyZonesZoneEffectiveScopes effectiveScopes) { this.effectiveScopes = effectiveScopes; return this; } public ListRecursionZonesResponseBodyZonesZoneEffectiveScopes getEffectiveScopes() { return this.effectiveScopes; } public ListRecursionZonesResponseBodyZonesZone setProxyPattern(String proxyPattern) { this.proxyPattern = proxyPattern; return this; } public String getProxyPattern() { return this.proxyPattern; } public ListRecursionZonesResponseBodyZonesZone setRecordCount(Integer recordCount) { this.recordCount = recordCount; return this; } public Integer getRecordCount() { return this.recordCount; } public ListRecursionZonesResponseBodyZonesZone setRemark(String remark) { this.remark = remark; return this; } public String getRemark() { return this.remark; } public ListRecursionZonesResponseBodyZonesZone setUpdateTime(String updateTime) { this.updateTime = updateTime; return this; } public String getUpdateTime() { return this.updateTime; } public ListRecursionZonesResponseBodyZonesZone setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; return this; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public ListRecursionZonesResponseBodyZonesZone setZoneId(String zoneId) { this.zoneId = zoneId; return this; } public String getZoneId() { return this.zoneId; } public ListRecursionZonesResponseBodyZonesZone setZoneName(String zoneName) { this.zoneName = zoneName; return this; } public String getZoneName() { return this.zoneName; } } public static class ListRecursionZonesResponseBodyZones extends TeaModel { @NameInMap("Zone") public java.util.List<ListRecursionZonesResponseBodyZonesZone> zone; public static ListRecursionZonesResponseBodyZones build(java.util.Map<String, ?> map) throws Exception { ListRecursionZonesResponseBodyZones self = new ListRecursionZonesResponseBodyZones(); return TeaModel.build(map, self); } public ListRecursionZonesResponseBodyZones setZone(java.util.List<ListRecursionZonesResponseBodyZonesZone> zone) { this.zone = zone; return this; } public java.util.List<ListRecursionZonesResponseBodyZonesZone> getZone() { return this.zone; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ListTagResourcesRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListTagResourcesRequest 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 pagination token. It can be used in the next request to retrieve a new page of results.</p> * * <strong>example:</strong> * <p>4698691</p> */ @NameInMap("NextToken") public String nextToken; /** * <p>The ID of the resource.</p> */ @NameInMap("ResourceId") public java.util.List<String> resourceId; /** * <p>The type of the resource. Valid values:</p> * <ul> * <li><strong>DOMAIN</strong>: domain name</li> * </ul> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>DOMAIN</p> */ @NameInMap("ResourceType") public String resourceType; /** * <p>The tags.</p> */ @NameInMap("Tag") public java.util.List<ListTagResourcesRequestTag> tag; public static ListTagResourcesRequest build(java.util.Map<String, ?> map) throws Exception { ListTagResourcesRequest self = new ListTagResourcesRequest(); return TeaModel.build(map, self); } public ListTagResourcesRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public ListTagResourcesRequest setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public ListTagResourcesRequest setResourceId(java.util.List<String> resourceId) { this.resourceId = resourceId; return this; } public java.util.List<String> getResourceId() { return this.resourceId; } public ListTagResourcesRequest setResourceType(String resourceType) { this.resourceType = resourceType; return this; } public String getResourceType() { return this.resourceType; } public ListTagResourcesRequest setTag(java.util.List<ListTagResourcesRequestTag> tag) { this.tag = tag; return this; } public java.util.List<ListTagResourcesRequestTag> getTag() { return this.tag; } public static class ListTagResourcesRequestTag extends TeaModel { /** * <p>The tag key.</p> * * <strong>example:</strong> * <p>abcd</p> */ @NameInMap("Key") public String key; /** * <p>The key value.</p> * * <strong>example:</strong> * <p>abcd</p> */ @NameInMap("Value") public String value; public static ListTagResourcesRequestTag build(java.util.Map<String, ?> map) throws Exception { ListTagResourcesRequestTag self = new ListTagResourcesRequestTag(); return TeaModel.build(map, self); } public ListTagResourcesRequestTag setKey(String key) { this.key = key; return this; } public String getKey() { return this.key; } public ListTagResourcesRequestTag 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/ListTagResourcesResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListTagResourcesResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public ListTagResourcesResponseBody body; public static ListTagResourcesResponse build(java.util.Map<String, ?> map) throws Exception { ListTagResourcesResponse self = new ListTagResourcesResponse(); return TeaModel.build(map, self); } public ListTagResourcesResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public ListTagResourcesResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public ListTagResourcesResponse setBody(ListTagResourcesResponseBody body) { this.body = body; return this; } public ListTagResourcesResponseBody 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/ListTagResourcesResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ListTagResourcesResponseBody extends TeaModel { /** * <p>A pagination token. It can be used in the next request to retrieve a new page of results. If NextToken is empty, no next page exists.</p> * * <strong>example:</strong> * <p>4698691</p> */ @NameInMap("NextToken") public String nextToken; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>61092C8D-6AEB-4310-B74D-C632F89BF4FB</p> */ @NameInMap("RequestId") public String requestId; /** * <p>An array that consists of the resource and the tags that are added to the resource, including information such as the resource ID, resource type, tag keys, and tag values.</p> */ @NameInMap("TagResources") public java.util.List<ListTagResourcesResponseBodyTagResources> tagResources; public static ListTagResourcesResponseBody build(java.util.Map<String, ?> map) throws Exception { ListTagResourcesResponseBody self = new ListTagResourcesResponseBody(); return TeaModel.build(map, self); } public ListTagResourcesResponseBody setNextToken(String nextToken) { this.nextToken = nextToken; return this; } public String getNextToken() { return this.nextToken; } public ListTagResourcesResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public ListTagResourcesResponseBody setTagResources(java.util.List<ListTagResourcesResponseBodyTagResources> tagResources) { this.tagResources = tagResources; return this; } public java.util.List<ListTagResourcesResponseBodyTagResources> getTagResources() { return this.tagResources; } public static class ListTagResourcesResponseBodyTagResources extends TeaModel { /** * <p>The ID of the resource.</p> * * <strong>example:</strong> * <p>dns-example.com</p> */ @NameInMap("ResourceId") public String resourceId; /** * <p>The type of the resource. Only DOMAIN is returned.</p> * * <strong>example:</strong> * <p>DOMAIN</p> */ @NameInMap("ResourceType") public String resourceType; /** * <p>The tag key.</p> * * <strong>example:</strong> * <p>abcd</p> */ @NameInMap("TagKey") public String tagKey; /** * <p>The tag value.</p> * * <strong>example:</strong> * <p>abcd</p> */ @NameInMap("TagValue") public String tagValue; public static ListTagResourcesResponseBodyTagResources build(java.util.Map<String, ?> map) throws Exception { ListTagResourcesResponseBodyTagResources self = new ListTagResourcesResponseBodyTagResources(); return TeaModel.build(map, self); } public ListTagResourcesResponseBodyTagResources setResourceId(String resourceId) { this.resourceId = resourceId; return this; } public String getResourceId() { return this.resourceId; } public ListTagResourcesResponseBodyTagResources setResourceType(String resourceType) { this.resourceType = resourceType; return this; } public String getResourceType() { return this.resourceType; } public ListTagResourcesResponseBodyTagResources setTagKey(String tagKey) { this.tagKey = tagKey; return this; } public String getTagKey() { return this.tagKey; } public ListTagResourcesResponseBodyTagResources setTagValue(String tagValue) { this.tagValue = tagValue; return this; } public String getTagValue() { return this.tagValue; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ModifyHichinaDomainDNSRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ModifyHichinaDomainDNSRequest extends TeaModel { /** * <p>The domain name.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("DomainName") public String domainName; /** * <p>The language 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 ModifyHichinaDomainDNSRequest build(java.util.Map<String, ?> map) throws Exception { ModifyHichinaDomainDNSRequest self = new ModifyHichinaDomainDNSRequest(); return TeaModel.build(map, self); } public ModifyHichinaDomainDNSRequest setDomainName(String domainName) { this.domainName = domainName; return this; } public String getDomainName() { return this.domainName; } public ModifyHichinaDomainDNSRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public ModifyHichinaDomainDNSRequest 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/ModifyHichinaDomainDNSResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ModifyHichinaDomainDNSResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public ModifyHichinaDomainDNSResponseBody body; public static ModifyHichinaDomainDNSResponse build(java.util.Map<String, ?> map) throws Exception { ModifyHichinaDomainDNSResponse self = new ModifyHichinaDomainDNSResponse(); return TeaModel.build(map, self); } public ModifyHichinaDomainDNSResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public ModifyHichinaDomainDNSResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public ModifyHichinaDomainDNSResponse setBody(ModifyHichinaDomainDNSResponseBody body) { this.body = body; return this; } public ModifyHichinaDomainDNSResponseBody 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/ModifyHichinaDomainDNSResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ModifyHichinaDomainDNSResponseBody extends TeaModel { /** * <p>The DNS server names after modification.</p> */ @NameInMap("NewDnsServers") public ModifyHichinaDomainDNSResponseBodyNewDnsServers newDnsServers; /** * <p>The DNS server names before modification.</p> */ @NameInMap("OriginalDnsServers") public ModifyHichinaDomainDNSResponseBodyOriginalDnsServers originalDnsServers; /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>536E9CAD-DB30-4647-AC87-AA5CC38C5382</p> */ @NameInMap("RequestId") public String requestId; public static ModifyHichinaDomainDNSResponseBody build(java.util.Map<String, ?> map) throws Exception { ModifyHichinaDomainDNSResponseBody self = new ModifyHichinaDomainDNSResponseBody(); return TeaModel.build(map, self); } public ModifyHichinaDomainDNSResponseBody setNewDnsServers(ModifyHichinaDomainDNSResponseBodyNewDnsServers newDnsServers) { this.newDnsServers = newDnsServers; return this; } public ModifyHichinaDomainDNSResponseBodyNewDnsServers getNewDnsServers() { return this.newDnsServers; } public ModifyHichinaDomainDNSResponseBody setOriginalDnsServers(ModifyHichinaDomainDNSResponseBodyOriginalDnsServers originalDnsServers) { this.originalDnsServers = originalDnsServers; return this; } public ModifyHichinaDomainDNSResponseBodyOriginalDnsServers getOriginalDnsServers() { return this.originalDnsServers; } public ModifyHichinaDomainDNSResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public static class ModifyHichinaDomainDNSResponseBodyNewDnsServers extends TeaModel { @NameInMap("DnsServer") public java.util.List<String> dnsServer; public static ModifyHichinaDomainDNSResponseBodyNewDnsServers build(java.util.Map<String, ?> map) throws Exception { ModifyHichinaDomainDNSResponseBodyNewDnsServers self = new ModifyHichinaDomainDNSResponseBodyNewDnsServers(); return TeaModel.build(map, self); } public ModifyHichinaDomainDNSResponseBodyNewDnsServers setDnsServer(java.util.List<String> dnsServer) { this.dnsServer = dnsServer; return this; } public java.util.List<String> getDnsServer() { return this.dnsServer; } } public static class ModifyHichinaDomainDNSResponseBodyOriginalDnsServers extends TeaModel { @NameInMap("DnsServer") public java.util.List<String> dnsServer; public static ModifyHichinaDomainDNSResponseBodyOriginalDnsServers build(java.util.Map<String, ?> map) throws Exception { ModifyHichinaDomainDNSResponseBodyOriginalDnsServers self = new ModifyHichinaDomainDNSResponseBodyOriginalDnsServers(); return TeaModel.build(map, self); } public ModifyHichinaDomainDNSResponseBodyOriginalDnsServers 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/MoveDomainResourceGroupRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class MoveDomainResourceGroupRequest 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 new resource group.</p> * <p>You can view the resource group ID in the <a href="https://resourcemanager.console.aliyun.com/resource-groups?">Resource Management console</a>.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>rg-aekzzk7hx3glaoq</p> */ @NameInMap("NewResourceGroupId") public String newResourceGroupId; /** * <p>The domain name.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("ResourceId") public String resourceId; public static MoveDomainResourceGroupRequest build(java.util.Map<String, ?> map) throws Exception { MoveDomainResourceGroupRequest self = new MoveDomainResourceGroupRequest(); return TeaModel.build(map, self); } public MoveDomainResourceGroupRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public MoveDomainResourceGroupRequest setNewResourceGroupId(String newResourceGroupId) { this.newResourceGroupId = newResourceGroupId; return this; } public String getNewResourceGroupId() { return this.newResourceGroupId; } public MoveDomainResourceGroupRequest setResourceId(String resourceId) { this.resourceId = resourceId; return this; } public String getResourceId() { return this.resourceId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/MoveDomainResourceGroupResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class MoveDomainResourceGroupResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public MoveDomainResourceGroupResponseBody body; public static MoveDomainResourceGroupResponse build(java.util.Map<String, ?> map) throws Exception { MoveDomainResourceGroupResponse self = new MoveDomainResourceGroupResponse(); return TeaModel.build(map, self); } public MoveDomainResourceGroupResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public MoveDomainResourceGroupResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public MoveDomainResourceGroupResponse setBody(MoveDomainResourceGroupResponseBody body) { this.body = body; return this; } public MoveDomainResourceGroupResponseBody 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/MoveDomainResourceGroupResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class MoveDomainResourceGroupResponseBody extends TeaModel { /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>C6F1D541-E7A6-447A-A2B5-9F7A20B2A8FB</p> */ @NameInMap("RequestId") public String requestId; public static MoveDomainResourceGroupResponseBody build(java.util.Map<String, ?> map) throws Exception { MoveDomainResourceGroupResponseBody self = new MoveDomainResourceGroupResponseBody(); return TeaModel.build(map, self); } public MoveDomainResourceGroupResponseBody 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/MoveGtmResourceGroupRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class MoveGtmResourceGroupRequest extends TeaModel { /** * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>AgIDE1MA_XXX</p> */ @NameInMap("NewResourceGroupId") public String newResourceGroupId; /** * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>rg-aekzzk7hx3*****</p> */ @NameInMap("ResourceId") public String resourceId; public static MoveGtmResourceGroupRequest build(java.util.Map<String, ?> map) throws Exception { MoveGtmResourceGroupRequest self = new MoveGtmResourceGroupRequest(); return TeaModel.build(map, self); } public MoveGtmResourceGroupRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public MoveGtmResourceGroupRequest setNewResourceGroupId(String newResourceGroupId) { this.newResourceGroupId = newResourceGroupId; return this; } public String getNewResourceGroupId() { return this.newResourceGroupId; } public MoveGtmResourceGroupRequest setResourceId(String resourceId) { this.resourceId = resourceId; return this; } public String getResourceId() { return this.resourceId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/MoveGtmResourceGroupResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class MoveGtmResourceGroupResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public MoveGtmResourceGroupResponseBody body; public static MoveGtmResourceGroupResponse build(java.util.Map<String, ?> map) throws Exception { MoveGtmResourceGroupResponse self = new MoveGtmResourceGroupResponse(); return TeaModel.build(map, self); } public MoveGtmResourceGroupResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public MoveGtmResourceGroupResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public MoveGtmResourceGroupResponse setBody(MoveGtmResourceGroupResponseBody body) { this.body = body; return this; } public MoveGtmResourceGroupResponseBody 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/MoveGtmResourceGroupResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class MoveGtmResourceGroupResponseBody extends TeaModel { /** * <strong>example:</strong> * <p>C6F1D541-E7A6-447A-A2B5-9F7A20B2A8FB</p> */ @NameInMap("RequestId") public String requestId; public static MoveGtmResourceGroupResponseBody build(java.util.Map<String, ?> map) throws Exception { MoveGtmResourceGroupResponseBody self = new MoveGtmResourceGroupResponseBody(); return TeaModel.build(map, self); } public MoveGtmResourceGroupResponseBody 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/OperateBatchDomainRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class OperateBatchDomainRequest extends TeaModel { /** * <p>The DNS records. You can submit up to 1,000 DNS records.</p> * <p>This parameter is required.</p> */ @NameInMap("DomainRecordInfo") public java.util.List<OperateBatchDomainRequestDomainRecordInfo> domainRecordInfo; /** * <p>The language of the response. Valid values:</p> * <ul> * <li>zh: Chinese</li> * <li>en: English</li> * </ul> * <p>Default value: zh</p> * * <strong>example:</strong> * <p>en</p> */ @NameInMap("Lang") public String lang; /** * <p>The type of the batch operation. Valid values:</p> * <ul> * <li><strong>DOMAIN_ADD</strong>: adds domain names in batches.</li> * <li><strong>DOMAIN_DEL</strong>: deletes domain names in batches.</li> * <li><strong>RR_ADD</strong>: adds DNS records in batches.</li> * <li><strong>RR_DEL</strong>: deletes DNS records in batches. This operation deletes the DNS records with the specified hostname or record value. If you do not specify the Rr and Value parameters, this operation deletes the DNS records that are added for the specified domain names.</li> * </ul> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>RR_ADD</p> */ @NameInMap("Type") public String type; public static OperateBatchDomainRequest build(java.util.Map<String, ?> map) throws Exception { OperateBatchDomainRequest self = new OperateBatchDomainRequest(); return TeaModel.build(map, self); } public OperateBatchDomainRequest setDomainRecordInfo(java.util.List<OperateBatchDomainRequestDomainRecordInfo> domainRecordInfo) { this.domainRecordInfo = domainRecordInfo; return this; } public java.util.List<OperateBatchDomainRequestDomainRecordInfo> getDomainRecordInfo() { return this.domainRecordInfo; } public OperateBatchDomainRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public OperateBatchDomainRequest setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public static class OperateBatchDomainRequestDomainRecordInfo extends TeaModel { /** * <p>The domain name.</p> * <blockquote> * <p> You can submit 1 to 1,000 domain names. Due to the limit on the length of HTTP request headers, excessive domain names are ignored. Do not enter more than 1,000 domain names.</p> * </blockquote> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>example.com</p> */ @NameInMap("Domain") public String domain; /** * <p>The DNS request source. Default value: default.</p> * * <strong>example:</strong> * <p>default</p> */ @NameInMap("Line") public String line; /** * <p>The new hostname (used only for modification operations, not for external users).</p> * * <strong>example:</strong> * <p>mail</p> */ @NameInMap("NewRr") public String newRr; /** * <p>The new type of the DNS record (used only for modification operations, not for external users).</p> * * <strong>example:</strong> * <p>AAAA</p> */ @NameInMap("NewType") public String newType; /** * <p>The new value of the DNS record (used only for modification operations, not for external users).</p> * * <strong>example:</strong> * <p>114.92.XX.XX</p> */ @NameInMap("NewValue") public String newValue; /** * <p>The priority of the mail exchanger (MX) record.</p> * <p>This parameter is required if the type of the DNS record is MX. Default value: 10.</p> * * <strong>example:</strong> * <p>5</p> */ @NameInMap("Priority") public Integer priority; /** * <p>The hostname.</p> * <blockquote> * <p> This parameter is required if you set Type to <strong>RR_ADD</strong> or <strong>RR_DEL</strong>.</p> * </blockquote> * * <strong>example:</strong> * <p>zhaohui</p> */ @NameInMap("Rr") public String rr; /** * <p>The time-to-live (TTL) value of the cached DNS record. Unit: seconds. Default value: <em><strong>600</strong></em>.</p> * * <strong>example:</strong> * <p>600</p> */ @NameInMap("Ttl") public Integer ttl; /** * <p>The type of the DNS record. Valid values: A, AAAA, TXT, MX, and CNAME.</p> * <blockquote> * <p> This parameter is required if you set Type to <strong>RR_ADD</strong> or <strong>RR_DEL</strong>.</p> * </blockquote> * * <strong>example:</strong> * <p>MX</p> */ @NameInMap("Type") public String type; /** * <p>The value of the DNS record.</p> * <blockquote> * <p> This parameter is required if you set Type to <strong>RR_ADD</strong> or <strong>RR_DEL</strong>.</p> * </blockquote> * * <strong>example:</strong> * <p>fd87da3c4528844d45af39200155a905</p> */ @NameInMap("Value") public String value; public static OperateBatchDomainRequestDomainRecordInfo build(java.util.Map<String, ?> map) throws Exception { OperateBatchDomainRequestDomainRecordInfo self = new OperateBatchDomainRequestDomainRecordInfo(); return TeaModel.build(map, self); } public OperateBatchDomainRequestDomainRecordInfo setDomain(String domain) { this.domain = domain; return this; } public String getDomain() { return this.domain; } public OperateBatchDomainRequestDomainRecordInfo setLine(String line) { this.line = line; return this; } public String getLine() { return this.line; } public OperateBatchDomainRequestDomainRecordInfo setNewRr(String newRr) { this.newRr = newRr; return this; } public String getNewRr() { return this.newRr; } public OperateBatchDomainRequestDomainRecordInfo setNewType(String newType) { this.newType = newType; return this; } public String getNewType() { return this.newType; } public OperateBatchDomainRequestDomainRecordInfo setNewValue(String newValue) { this.newValue = newValue; return this; } public String getNewValue() { return this.newValue; } public OperateBatchDomainRequestDomainRecordInfo setPriority(Integer priority) { this.priority = priority; return this; } public Integer getPriority() { return this.priority; } public OperateBatchDomainRequestDomainRecordInfo setRr(String rr) { this.rr = rr; return this; } public String getRr() { return this.rr; } public OperateBatchDomainRequestDomainRecordInfo setTtl(Integer ttl) { this.ttl = ttl; return this; } public Integer getTtl() { return this.ttl; } public OperateBatchDomainRequestDomainRecordInfo setType(String type) { this.type = type; return this; } public String getType() { return this.type; } public OperateBatchDomainRequestDomainRecordInfo 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/OperateBatchDomainResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class OperateBatchDomainResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public OperateBatchDomainResponseBody body; public static OperateBatchDomainResponse build(java.util.Map<String, ?> map) throws Exception { OperateBatchDomainResponse self = new OperateBatchDomainResponse(); return TeaModel.build(map, self); } public OperateBatchDomainResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public OperateBatchDomainResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public OperateBatchDomainResponse setBody(OperateBatchDomainResponseBody body) { this.body = body; return this; } public OperateBatchDomainResponseBody 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/OperateBatchDomainResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class OperateBatchDomainResponseBody extends TeaModel { /** * <p>The request ID.</p> * * <strong>example:</strong> * <p>75446CC1-FC9A-4595-8D96-089D73D7A63D</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The task ID.</p> * * <strong>example:</strong> * <p>345345</p> */ @NameInMap("TaskId") public Long taskId; public static OperateBatchDomainResponseBody build(java.util.Map<String, ?> map) throws Exception { OperateBatchDomainResponseBody self = new OperateBatchDomainResponseBody(); return TeaModel.build(map, self); } public OperateBatchDomainResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public OperateBatchDomainResponseBody setTaskId(Long taskId) { this.taskId = taskId; return this; } public Long getTaskId() { return this.taskId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/PausePdnsServiceRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class PausePdnsServiceRequest extends TeaModel { @NameInMap("Lang") public String lang; @NameInMap("ServiceType") public String serviceType; public static PausePdnsServiceRequest build(java.util.Map<String, ?> map) throws Exception { PausePdnsServiceRequest self = new PausePdnsServiceRequest(); return TeaModel.build(map, self); } public PausePdnsServiceRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public PausePdnsServiceRequest setServiceType(String serviceType) { this.serviceType = serviceType; return this; } public String getServiceType() { return this.serviceType; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/PausePdnsServiceResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class PausePdnsServiceResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public PausePdnsServiceResponseBody body; public static PausePdnsServiceResponse build(java.util.Map<String, ?> map) throws Exception { PausePdnsServiceResponse self = new PausePdnsServiceResponse(); return TeaModel.build(map, self); } public PausePdnsServiceResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public PausePdnsServiceResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public PausePdnsServiceResponse setBody(PausePdnsServiceResponseBody body) { this.body = body; return this; } public PausePdnsServiceResponseBody 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/PausePdnsServiceResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class PausePdnsServiceResponseBody extends TeaModel { @NameInMap("RequestId") public String requestId; public static PausePdnsServiceResponseBody build(java.util.Map<String, ?> map) throws Exception { PausePdnsServiceResponseBody self = new PausePdnsServiceResponseBody(); return TeaModel.build(map, self); } public PausePdnsServiceResponseBody 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/PreviewGtmRecoveryPlanRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class PreviewGtmRecoveryPlanRequest extends TeaModel { /** * <p>The language used by the user.</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 Integer pageNumber; /** * <p>The number of entries to return on per page. Maximum value: <strong>20</strong>. Default value: <strong>5</strong>.</p> * * <strong>example:</strong> * <p>5</p> */ @NameInMap("PageSize") public Integer pageSize; /** * <p>The ID of the disaster recovery plan that you want to preview.</p> * <p>This parameter is required.</p> * * <strong>example:</strong> * <p>100</p> */ @NameInMap("RecoveryPlanId") public Long recoveryPlanId; public static PreviewGtmRecoveryPlanRequest build(java.util.Map<String, ?> map) throws Exception { PreviewGtmRecoveryPlanRequest self = new PreviewGtmRecoveryPlanRequest(); return TeaModel.build(map, self); } public PreviewGtmRecoveryPlanRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } public PreviewGtmRecoveryPlanRequest setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public PreviewGtmRecoveryPlanRequest setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public PreviewGtmRecoveryPlanRequest setRecoveryPlanId(Long recoveryPlanId) { this.recoveryPlanId = recoveryPlanId; return this; } public Long getRecoveryPlanId() { return this.recoveryPlanId; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/PreviewGtmRecoveryPlanResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class PreviewGtmRecoveryPlanResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public PreviewGtmRecoveryPlanResponseBody body; public static PreviewGtmRecoveryPlanResponse build(java.util.Map<String, ?> map) throws Exception { PreviewGtmRecoveryPlanResponse self = new PreviewGtmRecoveryPlanResponse(); return TeaModel.build(map, self); } public PreviewGtmRecoveryPlanResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public PreviewGtmRecoveryPlanResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public PreviewGtmRecoveryPlanResponse setBody(PreviewGtmRecoveryPlanResponseBody body) { this.body = body; return this; } public PreviewGtmRecoveryPlanResponseBody 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/PreviewGtmRecoveryPlanResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class PreviewGtmRecoveryPlanResponseBody 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 returned preview information of the disaster recovery plan.</p> */ @NameInMap("Previews") public PreviewGtmRecoveryPlanResponseBodyPreviews previews; /** * <p>The ID of the request.</p> * * <strong>example:</strong> * <p>853805EA-3D47-47D5-9A1A-A45C24313ABD</p> */ @NameInMap("RequestId") public String requestId; /** * <p>The total number of entries returned on all pages.</p> * * <strong>example:</strong> * <p>15</p> */ @NameInMap("TotalItems") public Integer totalItems; /** * <p>The total number of pages returned.</p> * * <strong>example:</strong> * <p>3</p> */ @NameInMap("TotalPages") public Integer totalPages; public static PreviewGtmRecoveryPlanResponseBody build(java.util.Map<String, ?> map) throws Exception { PreviewGtmRecoveryPlanResponseBody self = new PreviewGtmRecoveryPlanResponseBody(); return TeaModel.build(map, self); } public PreviewGtmRecoveryPlanResponseBody setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; return this; } public Integer getPageNumber() { return this.pageNumber; } public PreviewGtmRecoveryPlanResponseBody setPageSize(Integer pageSize) { this.pageSize = pageSize; return this; } public Integer getPageSize() { return this.pageSize; } public PreviewGtmRecoveryPlanResponseBody setPreviews(PreviewGtmRecoveryPlanResponseBodyPreviews previews) { this.previews = previews; return this; } public PreviewGtmRecoveryPlanResponseBodyPreviews getPreviews() { return this.previews; } public PreviewGtmRecoveryPlanResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public PreviewGtmRecoveryPlanResponseBody setTotalItems(Integer totalItems) { this.totalItems = totalItems; return this; } public Integer getTotalItems() { return this.totalItems; } public PreviewGtmRecoveryPlanResponseBody setTotalPages(Integer totalPages) { this.totalPages = totalPages; return this; } public Integer getTotalPages() { return this.totalPages; } public static class PreviewGtmRecoveryPlanResponseBodyPreviewsPreviewSwitchInfosSwitchInfo extends TeaModel { /** * <p>The formatted message content.</p> */ @NameInMap("Content") public String content; /** * <p>The name of the switching policy for address pools.</p> * * <strong>example:</strong> * <p>strategy-name-example-1</p> */ @NameInMap("StrategyName") public String strategyName; public static PreviewGtmRecoveryPlanResponseBodyPreviewsPreviewSwitchInfosSwitchInfo build(java.util.Map<String, ?> map) throws Exception { PreviewGtmRecoveryPlanResponseBodyPreviewsPreviewSwitchInfosSwitchInfo self = new PreviewGtmRecoveryPlanResponseBodyPreviewsPreviewSwitchInfosSwitchInfo(); return TeaModel.build(map, self); } public PreviewGtmRecoveryPlanResponseBodyPreviewsPreviewSwitchInfosSwitchInfo setContent(String content) { this.content = content; return this; } public String getContent() { return this.content; } public PreviewGtmRecoveryPlanResponseBodyPreviewsPreviewSwitchInfosSwitchInfo setStrategyName(String strategyName) { this.strategyName = strategyName; return this; } public String getStrategyName() { return this.strategyName; } } public static class PreviewGtmRecoveryPlanResponseBodyPreviewsPreviewSwitchInfos extends TeaModel { @NameInMap("SwitchInfo") public java.util.List<PreviewGtmRecoveryPlanResponseBodyPreviewsPreviewSwitchInfosSwitchInfo> switchInfo; public static PreviewGtmRecoveryPlanResponseBodyPreviewsPreviewSwitchInfos build(java.util.Map<String, ?> map) throws Exception { PreviewGtmRecoveryPlanResponseBodyPreviewsPreviewSwitchInfos self = new PreviewGtmRecoveryPlanResponseBodyPreviewsPreviewSwitchInfos(); return TeaModel.build(map, self); } public PreviewGtmRecoveryPlanResponseBodyPreviewsPreviewSwitchInfos setSwitchInfo(java.util.List<PreviewGtmRecoveryPlanResponseBodyPreviewsPreviewSwitchInfosSwitchInfo> switchInfo) { this.switchInfo = switchInfo; return this; } public java.util.List<PreviewGtmRecoveryPlanResponseBodyPreviewsPreviewSwitchInfosSwitchInfo> getSwitchInfo() { return this.switchInfo; } } public static class PreviewGtmRecoveryPlanResponseBodyPreviewsPreview extends TeaModel { /** * <p>The ID of the GTM instance to which the previewed disaster recovery plan belongs.</p> * * <strong>example:</strong> * <p>instance-example</p> */ @NameInMap("InstanceId") public String instanceId; /** * <p>The name of the GTM instance to which the previewed disaster recovery plan belongs.</p> * * <strong>example:</strong> * <p>name-example</p> */ @NameInMap("Name") public String name; /** * <p>The returned information of the switching policies for address pools.</p> */ @NameInMap("SwitchInfos") public PreviewGtmRecoveryPlanResponseBodyPreviewsPreviewSwitchInfos switchInfos; /** * <p>The user\&quot;s domain name or domain name list.</p> * * <strong>example:</strong> * <p>30.yyy.com</p> */ @NameInMap("UserDomainName") public String userDomainName; public static PreviewGtmRecoveryPlanResponseBodyPreviewsPreview build(java.util.Map<String, ?> map) throws Exception { PreviewGtmRecoveryPlanResponseBodyPreviewsPreview self = new PreviewGtmRecoveryPlanResponseBodyPreviewsPreview(); return TeaModel.build(map, self); } public PreviewGtmRecoveryPlanResponseBodyPreviewsPreview setInstanceId(String instanceId) { this.instanceId = instanceId; return this; } public String getInstanceId() { return this.instanceId; } public PreviewGtmRecoveryPlanResponseBodyPreviewsPreview setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public PreviewGtmRecoveryPlanResponseBodyPreviewsPreview setSwitchInfos(PreviewGtmRecoveryPlanResponseBodyPreviewsPreviewSwitchInfos switchInfos) { this.switchInfos = switchInfos; return this; } public PreviewGtmRecoveryPlanResponseBodyPreviewsPreviewSwitchInfos getSwitchInfos() { return this.switchInfos; } public PreviewGtmRecoveryPlanResponseBodyPreviewsPreview setUserDomainName(String userDomainName) { this.userDomainName = userDomainName; return this; } public String getUserDomainName() { return this.userDomainName; } } public static class PreviewGtmRecoveryPlanResponseBodyPreviews extends TeaModel { @NameInMap("Preview") public java.util.List<PreviewGtmRecoveryPlanResponseBodyPreviewsPreview> preview; public static PreviewGtmRecoveryPlanResponseBodyPreviews build(java.util.Map<String, ?> map) throws Exception { PreviewGtmRecoveryPlanResponseBodyPreviews self = new PreviewGtmRecoveryPlanResponseBodyPreviews(); return TeaModel.build(map, self); } public PreviewGtmRecoveryPlanResponseBodyPreviews setPreview(java.util.List<PreviewGtmRecoveryPlanResponseBodyPreviewsPreview> preview) { this.preview = preview; return this; } public java.util.List<PreviewGtmRecoveryPlanResponseBodyPreviewsPreview> getPreview() { return this.preview; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/RemovePdnsAppKeyRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class RemovePdnsAppKeyRequest extends TeaModel { @NameInMap("AppKeyId") public String appKeyId; @NameInMap("Lang") public String lang; public static RemovePdnsAppKeyRequest build(java.util.Map<String, ?> map) throws Exception { RemovePdnsAppKeyRequest self = new RemovePdnsAppKeyRequest(); return TeaModel.build(map, self); } public RemovePdnsAppKeyRequest setAppKeyId(String appKeyId) { this.appKeyId = appKeyId; return this; } public String getAppKeyId() { return this.appKeyId; } public RemovePdnsAppKeyRequest 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/RemovePdnsAppKeyResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class RemovePdnsAppKeyResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public RemovePdnsAppKeyResponseBody body; public static RemovePdnsAppKeyResponse build(java.util.Map<String, ?> map) throws Exception { RemovePdnsAppKeyResponse self = new RemovePdnsAppKeyResponse(); return TeaModel.build(map, self); } public RemovePdnsAppKeyResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public RemovePdnsAppKeyResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public RemovePdnsAppKeyResponse setBody(RemovePdnsAppKeyResponseBody body) { this.body = body; return this; } public RemovePdnsAppKeyResponseBody 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/RemovePdnsAppKeyResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class RemovePdnsAppKeyResponseBody extends TeaModel { @NameInMap("RequestId") public String requestId; public static RemovePdnsAppKeyResponseBody build(java.util.Map<String, ?> map) throws Exception { RemovePdnsAppKeyResponseBody self = new RemovePdnsAppKeyResponseBody(); return TeaModel.build(map, self); } public RemovePdnsAppKeyResponseBody 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/RemovePdnsUdpIpSegmentRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class RemovePdnsUdpIpSegmentRequest extends TeaModel { @NameInMap("Ip") public String ip; @NameInMap("Lang") public String lang; public static RemovePdnsUdpIpSegmentRequest build(java.util.Map<String, ?> map) throws Exception { RemovePdnsUdpIpSegmentRequest self = new RemovePdnsUdpIpSegmentRequest(); return TeaModel.build(map, self); } public RemovePdnsUdpIpSegmentRequest setIp(String ip) { this.ip = ip; return this; } public String getIp() { return this.ip; } public RemovePdnsUdpIpSegmentRequest 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/RemovePdnsUdpIpSegmentResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class RemovePdnsUdpIpSegmentResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public RemovePdnsUdpIpSegmentResponseBody body; public static RemovePdnsUdpIpSegmentResponse build(java.util.Map<String, ?> map) throws Exception { RemovePdnsUdpIpSegmentResponse self = new RemovePdnsUdpIpSegmentResponse(); return TeaModel.build(map, self); } public RemovePdnsUdpIpSegmentResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public RemovePdnsUdpIpSegmentResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public RemovePdnsUdpIpSegmentResponse setBody(RemovePdnsUdpIpSegmentResponseBody body) { this.body = body; return this; } public RemovePdnsUdpIpSegmentResponseBody 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/RemovePdnsUdpIpSegmentResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class RemovePdnsUdpIpSegmentResponseBody extends TeaModel { @NameInMap("RequestId") public String requestId; public static RemovePdnsUdpIpSegmentResponseBody build(java.util.Map<String, ?> map) throws Exception { RemovePdnsUdpIpSegmentResponseBody self = new RemovePdnsUdpIpSegmentResponseBody(); return TeaModel.build(map, self); } public RemovePdnsUdpIpSegmentResponseBody 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/ReplaceCloudGtmAddressPoolAddressRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ReplaceCloudGtmAddressPoolAddressRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li><strong>zh-CN</strong>: Chinese</li> * <li><strong>en-US (default)</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>The ID of the address pool for which you want to replace addresses. This ID uniquely identifies the address pool.</p> * * <strong>example:</strong> * <p>pool-89618921167339**24</p> */ @NameInMap("AddressPoolId") public String addressPoolId; /** * <p>The addresses.</p> */ @NameInMap("Addresses") public java.util.List<ReplaceCloudGtmAddressPoolAddressRequestAddresses> addresses; /** * <p>The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.</p> * * <strong>example:</strong> * <p>1ae05db4-10e7-11ef-b126-00163e24**22</p> */ @NameInMap("ClientToken") public String clientToken; public static ReplaceCloudGtmAddressPoolAddressRequest build(java.util.Map<String, ?> map) throws Exception { ReplaceCloudGtmAddressPoolAddressRequest self = new ReplaceCloudGtmAddressPoolAddressRequest(); return TeaModel.build(map, self); } public ReplaceCloudGtmAddressPoolAddressRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public ReplaceCloudGtmAddressPoolAddressRequest setAddressPoolId(String addressPoolId) { this.addressPoolId = addressPoolId; return this; } public String getAddressPoolId() { return this.addressPoolId; } public ReplaceCloudGtmAddressPoolAddressRequest setAddresses(java.util.List<ReplaceCloudGtmAddressPoolAddressRequestAddresses> addresses) { this.addresses = addresses; return this; } public java.util.List<ReplaceCloudGtmAddressPoolAddressRequestAddresses> getAddresses() { return this.addresses; } public ReplaceCloudGtmAddressPoolAddressRequest setClientToken(String clientToken) { this.clientToken = clientToken; return this; } public String getClientToken() { return this.clientToken; } public static class ReplaceCloudGtmAddressPoolAddressRequestAddresses extends TeaModel { /** * <p>The ID of the new address. This ID uniquely identifies the address.</p> * <ul> * <li>If you specify this parameter, the original addresses in the address pool will be deleted and replaced with new addresses.</li> * <li>If you do not specify this parameter, all addresses in the address pool will be deleted and the address pool will be left empty.</li> * </ul> * * <strong>example:</strong> * <p>addr-89636516932803**44</p> */ @NameInMap("AddressId") public String addressId; /** * <p>The DNS request sources.</p> */ @NameInMap("RequestSource") public java.util.List<String> requestSource; /** * <p>The sequence number that specifies the priority for returning the new address. A smaller sequence number specifies a higher priority. This setting takes effect for new addresses.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("SerialNumber") public Integer serialNumber; /** * <p>The weight value of the new address. You can set a different weight value for each address. This way, addresses are returned based on the weight values for Domain Name System (DNS) requests. A weight value must be an integer that ranges from 1 to 100. This setting takes effect for new addresses.</p> * * <strong>example:</strong> * <p>1</p> */ @NameInMap("WeightValue") public Integer weightValue; public static ReplaceCloudGtmAddressPoolAddressRequestAddresses build(java.util.Map<String, ?> map) throws Exception { ReplaceCloudGtmAddressPoolAddressRequestAddresses self = new ReplaceCloudGtmAddressPoolAddressRequestAddresses(); return TeaModel.build(map, self); } public ReplaceCloudGtmAddressPoolAddressRequestAddresses setAddressId(String addressId) { this.addressId = addressId; return this; } public String getAddressId() { return this.addressId; } public ReplaceCloudGtmAddressPoolAddressRequestAddresses setRequestSource(java.util.List<String> requestSource) { this.requestSource = requestSource; return this; } public java.util.List<String> getRequestSource() { return this.requestSource; } public ReplaceCloudGtmAddressPoolAddressRequestAddresses setSerialNumber(Integer serialNumber) { this.serialNumber = serialNumber; return this; } public Integer getSerialNumber() { return this.serialNumber; } public ReplaceCloudGtmAddressPoolAddressRequestAddresses setWeightValue(Integer weightValue) { this.weightValue = weightValue; return this; } public Integer getWeightValue() { return this.weightValue; } } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ReplaceCloudGtmAddressPoolAddressResponse.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ReplaceCloudGtmAddressPoolAddressResponse extends TeaModel { @NameInMap("headers") public java.util.Map<String, String> headers; @NameInMap("statusCode") public Integer statusCode; @NameInMap("body") public ReplaceCloudGtmAddressPoolAddressResponseBody body; public static ReplaceCloudGtmAddressPoolAddressResponse build(java.util.Map<String, ?> map) throws Exception { ReplaceCloudGtmAddressPoolAddressResponse self = new ReplaceCloudGtmAddressPoolAddressResponse(); return TeaModel.build(map, self); } public ReplaceCloudGtmAddressPoolAddressResponse setHeaders(java.util.Map<String, String> headers) { this.headers = headers; return this; } public java.util.Map<String, String> getHeaders() { return this.headers; } public ReplaceCloudGtmAddressPoolAddressResponse setStatusCode(Integer statusCode) { this.statusCode = statusCode; return this; } public Integer getStatusCode() { return this.statusCode; } public ReplaceCloudGtmAddressPoolAddressResponse setBody(ReplaceCloudGtmAddressPoolAddressResponseBody body) { this.body = body; return this; } public ReplaceCloudGtmAddressPoolAddressResponseBody 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/ReplaceCloudGtmAddressPoolAddressResponseBody.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ReplaceCloudGtmAddressPoolAddressResponseBody extends TeaModel { /** * <p>The ID of the address pool. This ID uniquely identifies the address pool.</p> * * <strong>example:</strong> * <p>pool-89618921167339**24</p> */ @NameInMap("AddressPoolId") public String addressPoolId; /** * <p>Unique request identification code.</p> * * <strong>example:</strong> * <p>B57C121B-A45F-44D8-A9B2-13E5A5044195</p> */ @NameInMap("RequestId") public String requestId; /** * <p>Indicates whether the operation was successful:</p> * <ul> * <li>true: Successful. - false: Failed.</li> * </ul> * * <strong>example:</strong> * <p>true</p> */ @NameInMap("Success") public Boolean success; public static ReplaceCloudGtmAddressPoolAddressResponseBody build(java.util.Map<String, ?> map) throws Exception { ReplaceCloudGtmAddressPoolAddressResponseBody self = new ReplaceCloudGtmAddressPoolAddressResponseBody(); return TeaModel.build(map, self); } public ReplaceCloudGtmAddressPoolAddressResponseBody setAddressPoolId(String addressPoolId) { this.addressPoolId = addressPoolId; return this; } public String getAddressPoolId() { return this.addressPoolId; } public ReplaceCloudGtmAddressPoolAddressResponseBody setRequestId(String requestId) { this.requestId = requestId; return this; } public String getRequestId() { return this.requestId; } public ReplaceCloudGtmAddressPoolAddressResponseBody setSuccess(Boolean success) { this.success = success; return this; } public Boolean getSuccess() { return this.success; } }
0
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109
java-sources/com/aliyun/alidns20150109/3.5.0/com/aliyun/alidns20150109/models/ReplaceCloudGtmAddressPoolAddressShrinkRequest.java
// This file is auto-generated, don't edit it. Thanks. package com.aliyun.alidns20150109.models; import com.aliyun.tea.*; public class ReplaceCloudGtmAddressPoolAddressShrinkRequest extends TeaModel { /** * <p>The language of the response. Valid values:</p> * <ul> * <li><strong>zh-CN</strong>: Chinese</li> * <li><strong>en-US (default)</strong>: English</li> * </ul> * * <strong>example:</strong> * <p>en-US</p> */ @NameInMap("AcceptLanguage") public String acceptLanguage; /** * <p>The ID of the address pool for which you want to replace addresses. This ID uniquely identifies the address pool.</p> * * <strong>example:</strong> * <p>pool-89618921167339**24</p> */ @NameInMap("AddressPoolId") public String addressPoolId; /** * <p>The addresses.</p> */ @NameInMap("Addresses") public String addressesShrink; /** * <p>The client token that is used to ensure the idempotence of the request. You can use the client to generate the token, but you must make sure that the token is unique among different requests. The token can contain only ASCII characters and cannot exceed 64 characters in length.</p> * * <strong>example:</strong> * <p>1ae05db4-10e7-11ef-b126-00163e24**22</p> */ @NameInMap("ClientToken") public String clientToken; public static ReplaceCloudGtmAddressPoolAddressShrinkRequest build(java.util.Map<String, ?> map) throws Exception { ReplaceCloudGtmAddressPoolAddressShrinkRequest self = new ReplaceCloudGtmAddressPoolAddressShrinkRequest(); return TeaModel.build(map, self); } public ReplaceCloudGtmAddressPoolAddressShrinkRequest setAcceptLanguage(String acceptLanguage) { this.acceptLanguage = acceptLanguage; return this; } public String getAcceptLanguage() { return this.acceptLanguage; } public ReplaceCloudGtmAddressPoolAddressShrinkRequest setAddressPoolId(String addressPoolId) { this.addressPoolId = addressPoolId; return this; } public String getAddressPoolId() { return this.addressPoolId; } public ReplaceCloudGtmAddressPoolAddressShrinkRequest setAddressesShrink(String addressesShrink) { this.addressesShrink = addressesShrink; return this; } public String getAddressesShrink() { return this.addressesShrink; } public ReplaceCloudGtmAddressPoolAddressShrinkRequest setClientToken(String clientToken) { this.clientToken = clientToken; return this; } public String getClientToken() { return this.clientToken; } }