index
int64
repo_id
string
file_path
string
content
string
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DeleteSubDomainRecordsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DeleteSubDomainRecordsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DeleteSubDomainRecordsResponse extends AcsResponse { private String rR; private String totalCount; private String requestId; public String getRR() { return this.rR; } public void setRR(String rR) { this.rR = rR; } public String getTotalCount() { return this.totalCount; } public void setTotalCount(String totalCount) { this.totalCount = totalCount; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public DeleteSubDomainRecordsResponse getInstance(UnmarshallerContext context) { return DeleteSubDomainRecordsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeBatchResultCountRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeBatchResultCountRequest extends RpcAcsRequest<DescribeBatchResultCountResponse> { private String batchType; private String lang; private Long taskId; public DescribeBatchResultCountRequest() { super("Alidns", "2015-01-09", "DescribeBatchResultCount", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getBatchType() { return this.batchType; } public void setBatchType(String batchType) { this.batchType = batchType; if(batchType != null){ putQueryParameter("BatchType", batchType); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } public Long getTaskId() { return this.taskId; } public void setTaskId(Long taskId) { this.taskId = taskId; if(taskId != null){ putQueryParameter("TaskId", taskId.toString()); } } @Override public Class<DescribeBatchResultCountResponse> getResponseClass() { return DescribeBatchResultCountResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeBatchResultCountResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeBatchResultCountResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeBatchResultCountResponse extends AcsResponse { private Integer status; private Integer totalCount; private Long taskId; private String requestId; private Integer failedCount; private Integer successCount; private String batchType; private String reason; public Integer getStatus() { return this.status; } public void setStatus(Integer status) { this.status = status; } public Integer getTotalCount() { return this.totalCount; } public void setTotalCount(Integer totalCount) { this.totalCount = totalCount; } public Long getTaskId() { return this.taskId; } public void setTaskId(Long taskId) { this.taskId = taskId; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getFailedCount() { return this.failedCount; } public void setFailedCount(Integer failedCount) { this.failedCount = failedCount; } public Integer getSuccessCount() { return this.successCount; } public void setSuccessCount(Integer successCount) { this.successCount = successCount; } public String getBatchType() { return this.batchType; } public void setBatchType(String batchType) { this.batchType = batchType; } public String getReason() { return this.reason; } public void setReason(String reason) { this.reason = reason; } @Override public DescribeBatchResultCountResponse getInstance(UnmarshallerContext context) { return DescribeBatchResultCountResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeBatchResultDetailRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeBatchResultDetailRequest extends RpcAcsRequest<DescribeBatchResultDetailResponse> { private String batchType; private Integer pageNumber; private Integer pageSize; private String lang; private Long taskId; private String status; public DescribeBatchResultDetailRequest() { super("Alidns", "2015-01-09", "DescribeBatchResultDetail", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getBatchType() { return this.batchType; } public void setBatchType(String batchType) { this.batchType = batchType; if(batchType != null){ putQueryParameter("BatchType", batchType); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } public Long getTaskId() { return this.taskId; } public void setTaskId(Long taskId) { this.taskId = taskId; if(taskId != null){ putQueryParameter("TaskId", taskId.toString()); } } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; if(status != null){ putQueryParameter("Status", status); } } @Override public Class<DescribeBatchResultDetailResponse> getResponseClass() { return DescribeBatchResultDetailResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeBatchResultDetailResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeBatchResultDetailResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeBatchResultDetailResponse extends AcsResponse { private Long totalCount; private Long pageSize; private String requestId; private Long pageNumber; private List<BatchResultDetail> batchResultDetails; public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public List<BatchResultDetail> getBatchResultDetails() { return this.batchResultDetails; } public void setBatchResultDetails(List<BatchResultDetail> batchResultDetails) { this.batchResultDetails = batchResultDetails; } public static class BatchResultDetail { private Boolean status; private String type; private String domain; private String remark; private String recordId; private String rr; private String priority; private String rrStatus; private String operateDateStr; private String newValue; private String value; private String ttl; private String batchType; private String line; private String newRr; private String reason; public Boolean getStatus() { return this.status; } public void setStatus(Boolean status) { this.status = status; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; } public String getRemark() { return this.remark; } public void setRemark(String remark) { this.remark = remark; } public String getRecordId() { return this.recordId; } public void setRecordId(String recordId) { this.recordId = recordId; } public String getRr() { return this.rr; } public void setRr(String rr) { this.rr = rr; } public String getPriority() { return this.priority; } public void setPriority(String priority) { this.priority = priority; } public String getRrStatus() { return this.rrStatus; } public void setRrStatus(String rrStatus) { this.rrStatus = rrStatus; } public String getOperateDateStr() { return this.operateDateStr; } public void setOperateDateStr(String operateDateStr) { this.operateDateStr = operateDateStr; } public String getNewValue() { return this.newValue; } public void setNewValue(String newValue) { this.newValue = newValue; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getTtl() { return this.ttl; } public void setTtl(String ttl) { this.ttl = ttl; } public String getBatchType() { return this.batchType; } public void setBatchType(String batchType) { this.batchType = batchType; } public String getLine() { return this.line; } public void setLine(String line) { this.line = line; } public String getNewRr() { return this.newRr; } public void setNewRr(String newRr) { this.newRr = newRr; } public String getReason() { return this.reason; } public void setReason(String reason) { this.reason = reason; } } @Override public DescribeBatchResultDetailResponse getInstance(UnmarshallerContext context) { return DescribeBatchResultDetailResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeCustomLineRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeCustomLineRequest extends RpcAcsRequest<DescribeCustomLineResponse> { private Long lineId; private String lang; public DescribeCustomLineRequest() { super("Alidns", "2015-01-09", "DescribeCustomLine", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getLineId() { return this.lineId; } public void setLineId(Long lineId) { this.lineId = lineId; if(lineId != null){ putQueryParameter("LineId", lineId.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeCustomLineResponse> getResponseClass() { return DescribeCustomLineResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeCustomLineResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeCustomLineResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeCustomLineResponse extends AcsResponse { private String requestId; private String domainName; private String createTime; private Long id; private String ipSegments; private String code; private Long createTimestamp; private String name; private List<IpSegment> ipSegmentList; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public String getIpSegments() { return this.ipSegments; } public void setIpSegments(String ipSegments) { this.ipSegments = ipSegments; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public List<IpSegment> getIpSegmentList() { return this.ipSegmentList; } public void setIpSegmentList(List<IpSegment> ipSegmentList) { this.ipSegmentList = ipSegmentList; } public static class IpSegment { private String endIp; private String startIp; private String name; public String getEndIp() { return this.endIp; } public void setEndIp(String endIp) { this.endIp = endIp; } public String getStartIp() { return this.startIp; } public void setStartIp(String startIp) { this.startIp = startIp; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } @Override public DescribeCustomLineResponse getInstance(UnmarshallerContext context) { return DescribeCustomLineResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeCustomLinesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeCustomLinesRequest extends RpcAcsRequest<DescribeCustomLinesResponse> { private String domainName; private Long pageNumber; private Long pageSize; private String lang; public DescribeCustomLinesRequest() { super("Alidns", "2015-01-09", "DescribeCustomLines", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; if(domainName != null){ putQueryParameter("DomainName", domainName); } } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeCustomLinesResponse> getResponseClass() { return DescribeCustomLinesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeCustomLinesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeCustomLinesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeCustomLinesResponse extends AcsResponse { private Integer pageSize; private String requestId; private Integer pageNumber; private Integer totalPages; private Integer totalItems; private List<CustomLine> customLines; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalPages() { return this.totalPages; } public void setTotalPages(Integer totalPages) { this.totalPages = totalPages; } public Integer getTotalItems() { return this.totalItems; } public void setTotalItems(Integer totalItems) { this.totalItems = totalItems; } public List<CustomLine> getCustomLines() { return this.customLines; } public void setCustomLines(List<CustomLine> customLines) { this.customLines = customLines; } public static class CustomLine { private String createTime; private String code; private String name; private String ipSegments; private Long id; private Long createTimestamp; private List<IpSegment> ipSegmentList; public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getCode() { return this.code; } public void setCode(String code) { this.code = code; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getIpSegments() { return this.ipSegments; } public void setIpSegments(String ipSegments) { this.ipSegments = ipSegments; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } public List<IpSegment> getIpSegmentList() { return this.ipSegmentList; } public void setIpSegmentList(List<IpSegment> ipSegmentList) { this.ipSegmentList = ipSegmentList; } public static class IpSegment { private String endIp; private String startIp; private String name; public String getEndIp() { return this.endIp; } public void setEndIp(String endIp) { this.endIp = endIp; } public String getStartIp() { return this.startIp; } public void setStartIp(String startIp) { this.startIp = startIp; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } } } @Override public DescribeCustomLinesResponse getInstance(UnmarshallerContext context) { return DescribeCustomLinesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDNSSLBSubDomainsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDNSSLBSubDomainsRequest extends RpcAcsRequest<DescribeDNSSLBSubDomainsResponse> { private String rr; private String domainName; private Long pageNumber; private String userClientIp; private Long pageSize; private String lang; public DescribeDNSSLBSubDomainsRequest() { super("Alidns", "2015-01-09", "DescribeDNSSLBSubDomains", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getRr() { return this.rr; } public void setRr(String rr) { this.rr = rr; if(rr != null){ putQueryParameter("Rr", rr); } } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; if(domainName != null){ putQueryParameter("DomainName", domainName); } } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public String getUserClientIp() { return this.userClientIp; } public void setUserClientIp(String userClientIp) { this.userClientIp = userClientIp; if(userClientIp != null){ putQueryParameter("UserClientIp", userClientIp); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDNSSLBSubDomainsResponse> getResponseClass() { return DescribeDNSSLBSubDomainsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDNSSLBSubDomainsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDNSSLBSubDomainsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDNSSLBSubDomainsResponse extends AcsResponse { private Long totalCount; private Long pageSize; private String requestId; private Long pageNumber; private List<SlbSubDomain> slbSubDomains; public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public List<SlbSubDomain> getSlbSubDomains() { return this.slbSubDomains; } public void setSlbSubDomains(List<SlbSubDomain> slbSubDomains) { this.slbSubDomains = slbSubDomains; } public static class SlbSubDomain { private String type; private Long recordCount; private Boolean open; private String subDomain; private List<LineAlgorithm> lineAlgorithms; public String getType() { return this.type; } public void setType(String type) { this.type = type; } public Long getRecordCount() { return this.recordCount; } public void setRecordCount(Long recordCount) { this.recordCount = recordCount; } public Boolean getOpen() { return this.open; } public void setOpen(Boolean open) { this.open = open; } public String getSubDomain() { return this.subDomain; } public void setSubDomain(String subDomain) { this.subDomain = subDomain; } public List<LineAlgorithm> getLineAlgorithms() { return this.lineAlgorithms; } public void setLineAlgorithms(List<LineAlgorithm> lineAlgorithms) { this.lineAlgorithms = lineAlgorithms; } public static class LineAlgorithm { private String line; private Boolean open; public String getLine() { return this.line; } public void setLine(String line) { this.line = line; } public Boolean getOpen() { return this.open; } public void setOpen(Boolean open) { this.open = open; } } } @Override public DescribeDNSSLBSubDomainsResponse getInstance(UnmarshallerContext context) { return DescribeDNSSLBSubDomainsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsCacheDomainsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDnsCacheDomainsRequest extends RpcAcsRequest<DescribeDnsCacheDomainsResponse> { private Long pageNumber; private Long pageSize; private String lang; private String keyword; public DescribeDnsCacheDomainsRequest() { super("Alidns", "2015-01-09", "DescribeDnsCacheDomains", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } public String getKeyword() { return this.keyword; } public void setKeyword(String keyword) { this.keyword = keyword; if(keyword != null){ putQueryParameter("Keyword", keyword); } } @Override public Class<DescribeDnsCacheDomainsResponse> getResponseClass() { return DescribeDnsCacheDomainsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsCacheDomainsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDnsCacheDomainsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDnsCacheDomainsResponse extends AcsResponse { private Long totalCount; private Long pageSize; private String requestId; private Long pageNumber; private List<Domain> domains; public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public List<Domain> getDomains() { return this.domains; } public void setDomains(List<Domain> domains) { this.domains = domains; } public static class Domain { private String sourceProtocol; private String updateTime; private String remark; private String expireTime; private String createTime; private String instanceId; private String sourceEdns; private String domainName; private String domainId; private Long updateTimestamp; private Long expireTimestamp; private Integer cacheTtlMax; private Integer cacheTtlMin; private String versionCode; private Long createTimestamp; private List<SourceDnsServer> sourceDnsServers; public String getSourceProtocol() { return this.sourceProtocol; } public void setSourceProtocol(String sourceProtocol) { this.sourceProtocol = sourceProtocol; } public String getUpdateTime() { return this.updateTime; } public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } public String getRemark() { return this.remark; } public void setRemark(String remark) { this.remark = remark; } public String getExpireTime() { return this.expireTime; } public void setExpireTime(String expireTime) { this.expireTime = expireTime; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getSourceEdns() { return this.sourceEdns; } public void setSourceEdns(String sourceEdns) { this.sourceEdns = sourceEdns; } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } public String getDomainId() { return this.domainId; } public void setDomainId(String domainId) { this.domainId = domainId; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public void setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; } public Long getExpireTimestamp() { return this.expireTimestamp; } public void setExpireTimestamp(Long expireTimestamp) { this.expireTimestamp = expireTimestamp; } public Integer getCacheTtlMax() { return this.cacheTtlMax; } public void setCacheTtlMax(Integer cacheTtlMax) { this.cacheTtlMax = cacheTtlMax; } public Integer getCacheTtlMin() { return this.cacheTtlMin; } public void setCacheTtlMin(Integer cacheTtlMin) { this.cacheTtlMin = cacheTtlMin; } public String getVersionCode() { return this.versionCode; } public void setVersionCode(String versionCode) { this.versionCode = versionCode; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } public List<SourceDnsServer> getSourceDnsServers() { return this.sourceDnsServers; } public void setSourceDnsServers(List<SourceDnsServer> sourceDnsServers) { this.sourceDnsServers = sourceDnsServers; } public static class SourceDnsServer { private String host; private String port; public String getHost() { return this.host; } public void setHost(String host) { this.host = host; } public String getPort() { return this.port; } public void setPort(String port) { this.port = port; } } } @Override public DescribeDnsCacheDomainsResponse getInstance(UnmarshallerContext context) { return DescribeDnsCacheDomainsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmAccessStrategiesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDnsGtmAccessStrategiesRequest extends RpcAcsRequest<DescribeDnsGtmAccessStrategiesResponse> { private Integer pageNumber; private String instanceId; private Integer pageSize; private String strategyMode; private String lang; public DescribeDnsGtmAccessStrategiesRequest() { super("Alidns", "2015-01-09", "DescribeDnsGtmAccessStrategies", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getStrategyMode() { return this.strategyMode; } public void setStrategyMode(String strategyMode) { this.strategyMode = strategyMode; if(strategyMode != null){ putQueryParameter("StrategyMode", strategyMode); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDnsGtmAccessStrategiesResponse> getResponseClass() { return DescribeDnsGtmAccessStrategiesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmAccessStrategiesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDnsGtmAccessStrategiesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDnsGtmAccessStrategiesResponse extends AcsResponse { private Integer pageSize; private String requestId; private Integer pageNumber; private Integer totalPages; private Integer totalItems; private List<Strategy> strategies; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalPages() { return this.totalPages; } public void setTotalPages(Integer totalPages) { this.totalPages = totalPages; } public Integer getTotalItems() { return this.totalItems; } public void setTotalItems(Integer totalItems) { this.totalItems = totalItems; } public List<Strategy> getStrategies() { return this.strategies; } public void setStrategies(List<Strategy> strategies) { this.strategies = strategies; } public static class Strategy { private String effectiveLbaStrategy; private String strategyId; private String strategyName; private String effectiveAddrPoolGroupType; private String createTime; private Long createTimestamp; private String effectiveAddrPoolType; private List<EffectiveAddrPool> effectiveAddrPools; private List<Line> lines; public String getEffectiveLbaStrategy() { return this.effectiveLbaStrategy; } public void setEffectiveLbaStrategy(String effectiveLbaStrategy) { this.effectiveLbaStrategy = effectiveLbaStrategy; } public String getStrategyId() { return this.strategyId; } public void setStrategyId(String strategyId) { this.strategyId = strategyId; } public String getStrategyName() { return this.strategyName; } public void setStrategyName(String strategyName) { this.strategyName = strategyName; } public String getEffectiveAddrPoolGroupType() { return this.effectiveAddrPoolGroupType; } public void setEffectiveAddrPoolGroupType(String effectiveAddrPoolGroupType) { this.effectiveAddrPoolGroupType = effectiveAddrPoolGroupType; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } public String getEffectiveAddrPoolType() { return this.effectiveAddrPoolType; } public void setEffectiveAddrPoolType(String effectiveAddrPoolType) { this.effectiveAddrPoolType = effectiveAddrPoolType; } public List<EffectiveAddrPool> getEffectiveAddrPools() { return this.effectiveAddrPools; } public void setEffectiveAddrPools(List<EffectiveAddrPool> effectiveAddrPools) { this.effectiveAddrPools = effectiveAddrPools; } public List<Line> getLines() { return this.lines; } public void setLines(List<Line> lines) { this.lines = lines; } public static class EffectiveAddrPool { private Integer lbaWeight; private String name; private Integer addrCount; private String id; public Integer getLbaWeight() { return this.lbaWeight; } public void setLbaWeight(Integer lbaWeight) { this.lbaWeight = lbaWeight; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Integer getAddrCount() { return this.addrCount; } public void setAddrCount(Integer addrCount) { this.addrCount = addrCount; } public String getId() { return this.id; } public void setId(String id) { this.id = id; } } public static class Line { private String groupName; private String lineCode; private String lineName; private String groupCode; public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getLineCode() { return this.lineCode; } public void setLineCode(String lineCode) { this.lineCode = lineCode; } public String getLineName() { return this.lineName; } public void setLineName(String lineName) { this.lineName = lineName; } public String getGroupCode() { return this.groupCode; } public void setGroupCode(String groupCode) { this.groupCode = groupCode; } } } @Override public DescribeDnsGtmAccessStrategiesResponse getInstance(UnmarshallerContext context) { return DescribeDnsGtmAccessStrategiesResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmAccessStrategyAvailableConfigRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDnsGtmAccessStrategyAvailableConfigRequest extends RpcAcsRequest<DescribeDnsGtmAccessStrategyAvailableConfigResponse> { private String instanceId; private String strategyMode; private String lang; public DescribeDnsGtmAccessStrategyAvailableConfigRequest() { super("Alidns", "2015-01-09", "DescribeDnsGtmAccessStrategyAvailableConfig", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public String getStrategyMode() { return this.strategyMode; } public void setStrategyMode(String strategyMode) { this.strategyMode = strategyMode; if(strategyMode != null){ putQueryParameter("StrategyMode", strategyMode); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDnsGtmAccessStrategyAvailableConfigResponse> getResponseClass() { return DescribeDnsGtmAccessStrategyAvailableConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmAccessStrategyAvailableConfigResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDnsGtmAccessStrategyAvailableConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDnsGtmAccessStrategyAvailableConfigResponse extends AcsResponse { private String requestId; private Boolean suggestSetDefaultLine; private List<DomainAddrPool> domainAddrPools; private List<Ipv4AddrPool> ipv4AddrPools; private List<Ipv6AddrPool> ipv6AddrPools; private List<Line> lines; private List<String> selectedDomainLines; private List<String> selectedIpv4Lines; private List<String> selectedIpv6Lines; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuggestSetDefaultLine() { return this.suggestSetDefaultLine; } public void setSuggestSetDefaultLine(Boolean suggestSetDefaultLine) { this.suggestSetDefaultLine = suggestSetDefaultLine; } public List<DomainAddrPool> getDomainAddrPools() { return this.domainAddrPools; } public void setDomainAddrPools(List<DomainAddrPool> domainAddrPools) { this.domainAddrPools = domainAddrPools; } public List<Ipv4AddrPool> getIpv4AddrPools() { return this.ipv4AddrPools; } public void setIpv4AddrPools(List<Ipv4AddrPool> ipv4AddrPools) { this.ipv4AddrPools = ipv4AddrPools; } public List<Ipv6AddrPool> getIpv6AddrPools() { return this.ipv6AddrPools; } public void setIpv6AddrPools(List<Ipv6AddrPool> ipv6AddrPools) { this.ipv6AddrPools = ipv6AddrPools; } public List<Line> getLines() { return this.lines; } public void setLines(List<Line> lines) { this.lines = lines; } public List<String> getSelectedDomainLines() { return this.selectedDomainLines; } public void setSelectedDomainLines(List<String> selectedDomainLines) { this.selectedDomainLines = selectedDomainLines; } public List<String> getSelectedIpv4Lines() { return this.selectedIpv4Lines; } public void setSelectedIpv4Lines(List<String> selectedIpv4Lines) { this.selectedIpv4Lines = selectedIpv4Lines; } public List<String> getSelectedIpv6Lines() { return this.selectedIpv6Lines; } public void setSelectedIpv6Lines(List<String> selectedIpv6Lines) { this.selectedIpv6Lines = selectedIpv6Lines; } public static class DomainAddrPool { private String name; private Integer addrCount; private String id; public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Integer getAddrCount() { return this.addrCount; } public void setAddrCount(Integer addrCount) { this.addrCount = addrCount; } public String getId() { return this.id; } public void setId(String id) { this.id = id; } } public static class Ipv4AddrPool { private String name; private Integer addrCount; private String id; public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Integer getAddrCount() { return this.addrCount; } public void setAddrCount(Integer addrCount) { this.addrCount = addrCount; } public String getId() { return this.id; } public void setId(String id) { this.id = id; } } public static class Ipv6AddrPool { private String name; private Integer addrCount; private String id; public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Integer getAddrCount() { return this.addrCount; } public void setAddrCount(Integer addrCount) { this.addrCount = addrCount; } public String getId() { return this.id; } public void setId(String id) { this.id = id; } } public static class Line { private String fatherCode; private String groupName; private String lineCode; private String lineName; private String groupCode; public String getFatherCode() { return this.fatherCode; } public void setFatherCode(String fatherCode) { this.fatherCode = fatherCode; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getLineCode() { return this.lineCode; } public void setLineCode(String lineCode) { this.lineCode = lineCode; } public String getLineName() { return this.lineName; } public void setLineName(String lineName) { this.lineName = lineName; } public String getGroupCode() { return this.groupCode; } public void setGroupCode(String groupCode) { this.groupCode = groupCode; } } @Override public DescribeDnsGtmAccessStrategyAvailableConfigResponse getInstance(UnmarshallerContext context) { return DescribeDnsGtmAccessStrategyAvailableConfigResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmAccessStrategyRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDnsGtmAccessStrategyRequest extends RpcAcsRequest<DescribeDnsGtmAccessStrategyResponse> { private String strategyId; private String lang; public DescribeDnsGtmAccessStrategyRequest() { super("Alidns", "2015-01-09", "DescribeDnsGtmAccessStrategy", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getStrategyId() { return this.strategyId; } public void setStrategyId(String strategyId) { this.strategyId = strategyId; if(strategyId != null){ putQueryParameter("StrategyId", strategyId); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDnsGtmAccessStrategyResponse> getResponseClass() { return DescribeDnsGtmAccessStrategyResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmAccessStrategyResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDnsGtmAccessStrategyResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDnsGtmAccessStrategyResponse extends AcsResponse { private Integer failoverMinAvailableAddrNum; private String defaultAddrPoolType; private Integer defaultAvailableAddrNum; private String strategyId; private String failoverAddrPoolGroupStatus; private Integer failoverAvailableAddrNum; private String failoverLbaStrategy; private Integer defaultMaxReturnAddrNum; private String strategyMode; private Long createTimestamp; private String defaultLbaStrategy; private String defaultAddrPoolGroupStatus; private String failoverAddrPoolType; private String requestId; private String instanceId; private String defaultLatencyOptimization; private String effectiveAddrPoolGroupType; private String createTime; private Integer defaultMinAvailableAddrNum; private String failoverLatencyOptimization; private String strategyName; private Integer failoverMaxReturnAddrNum; private String accessMode; private List<FailoverAddrPool> failoverAddrPools; private List<DefaultAddrPool> defaultAddrPools; private List<Line> lines; public Integer getFailoverMinAvailableAddrNum() { return this.failoverMinAvailableAddrNum; } public void setFailoverMinAvailableAddrNum(Integer failoverMinAvailableAddrNum) { this.failoverMinAvailableAddrNum = failoverMinAvailableAddrNum; } public String getDefaultAddrPoolType() { return this.defaultAddrPoolType; } public void setDefaultAddrPoolType(String defaultAddrPoolType) { this.defaultAddrPoolType = defaultAddrPoolType; } public Integer getDefaultAvailableAddrNum() { return this.defaultAvailableAddrNum; } public void setDefaultAvailableAddrNum(Integer defaultAvailableAddrNum) { this.defaultAvailableAddrNum = defaultAvailableAddrNum; } public String getStrategyId() { return this.strategyId; } public void setStrategyId(String strategyId) { this.strategyId = strategyId; } public String getFailoverAddrPoolGroupStatus() { return this.failoverAddrPoolGroupStatus; } public void setFailoverAddrPoolGroupStatus(String failoverAddrPoolGroupStatus) { this.failoverAddrPoolGroupStatus = failoverAddrPoolGroupStatus; } public Integer getFailoverAvailableAddrNum() { return this.failoverAvailableAddrNum; } public void setFailoverAvailableAddrNum(Integer failoverAvailableAddrNum) { this.failoverAvailableAddrNum = failoverAvailableAddrNum; } public String getFailoverLbaStrategy() { return this.failoverLbaStrategy; } public void setFailoverLbaStrategy(String failoverLbaStrategy) { this.failoverLbaStrategy = failoverLbaStrategy; } public Integer getDefaultMaxReturnAddrNum() { return this.defaultMaxReturnAddrNum; } public void setDefaultMaxReturnAddrNum(Integer defaultMaxReturnAddrNum) { this.defaultMaxReturnAddrNum = defaultMaxReturnAddrNum; } public String getStrategyMode() { return this.strategyMode; } public void setStrategyMode(String strategyMode) { this.strategyMode = strategyMode; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } public String getDefaultLbaStrategy() { return this.defaultLbaStrategy; } public void setDefaultLbaStrategy(String defaultLbaStrategy) { this.defaultLbaStrategy = defaultLbaStrategy; } public String getDefaultAddrPoolGroupStatus() { return this.defaultAddrPoolGroupStatus; } public void setDefaultAddrPoolGroupStatus(String defaultAddrPoolGroupStatus) { this.defaultAddrPoolGroupStatus = defaultAddrPoolGroupStatus; } public String getFailoverAddrPoolType() { return this.failoverAddrPoolType; } public void setFailoverAddrPoolType(String failoverAddrPoolType) { this.failoverAddrPoolType = failoverAddrPoolType; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getDefaultLatencyOptimization() { return this.defaultLatencyOptimization; } public void setDefaultLatencyOptimization(String defaultLatencyOptimization) { this.defaultLatencyOptimization = defaultLatencyOptimization; } public String getEffectiveAddrPoolGroupType() { return this.effectiveAddrPoolGroupType; } public void setEffectiveAddrPoolGroupType(String effectiveAddrPoolGroupType) { this.effectiveAddrPoolGroupType = effectiveAddrPoolGroupType; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public Integer getDefaultMinAvailableAddrNum() { return this.defaultMinAvailableAddrNum; } public void setDefaultMinAvailableAddrNum(Integer defaultMinAvailableAddrNum) { this.defaultMinAvailableAddrNum = defaultMinAvailableAddrNum; } public String getFailoverLatencyOptimization() { return this.failoverLatencyOptimization; } public void setFailoverLatencyOptimization(String failoverLatencyOptimization) { this.failoverLatencyOptimization = failoverLatencyOptimization; } public String getStrategyName() { return this.strategyName; } public void setStrategyName(String strategyName) { this.strategyName = strategyName; } public Integer getFailoverMaxReturnAddrNum() { return this.failoverMaxReturnAddrNum; } public void setFailoverMaxReturnAddrNum(Integer failoverMaxReturnAddrNum) { this.failoverMaxReturnAddrNum = failoverMaxReturnAddrNum; } public String getAccessMode() { return this.accessMode; } public void setAccessMode(String accessMode) { this.accessMode = accessMode; } public List<FailoverAddrPool> getFailoverAddrPools() { return this.failoverAddrPools; } public void setFailoverAddrPools(List<FailoverAddrPool> failoverAddrPools) { this.failoverAddrPools = failoverAddrPools; } public List<DefaultAddrPool> getDefaultAddrPools() { return this.defaultAddrPools; } public void setDefaultAddrPools(List<DefaultAddrPool> defaultAddrPools) { this.defaultAddrPools = defaultAddrPools; } public List<Line> getLines() { return this.lines; } public void setLines(List<Line> lines) { this.lines = lines; } public static class FailoverAddrPool { private Integer lbaWeight; private String name; private Integer addrCount; private String id; public Integer getLbaWeight() { return this.lbaWeight; } public void setLbaWeight(Integer lbaWeight) { this.lbaWeight = lbaWeight; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Integer getAddrCount() { return this.addrCount; } public void setAddrCount(Integer addrCount) { this.addrCount = addrCount; } public String getId() { return this.id; } public void setId(String id) { this.id = id; } } public static class DefaultAddrPool { private Integer lbaWeight; private String name; private Integer addrCount; private String id; public Integer getLbaWeight() { return this.lbaWeight; } public void setLbaWeight(Integer lbaWeight) { this.lbaWeight = lbaWeight; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Integer getAddrCount() { return this.addrCount; } public void setAddrCount(Integer addrCount) { this.addrCount = addrCount; } public String getId() { return this.id; } public void setId(String id) { this.id = id; } } public static class Line { private String groupName; private String lineCode; private String lineName; private String groupCode; public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getLineCode() { return this.lineCode; } public void setLineCode(String lineCode) { this.lineCode = lineCode; } public String getLineName() { return this.lineName; } public void setLineName(String lineName) { this.lineName = lineName; } public String getGroupCode() { return this.groupCode; } public void setGroupCode(String groupCode) { this.groupCode = groupCode; } } @Override public DescribeDnsGtmAccessStrategyResponse getInstance(UnmarshallerContext context) { return DescribeDnsGtmAccessStrategyResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmAddrAttributeInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDnsGtmAddrAttributeInfoRequest extends RpcAcsRequest<DescribeDnsGtmAddrAttributeInfoResponse> { private String addrs; private String type; private String lang; public DescribeDnsGtmAddrAttributeInfoRequest() { super("Alidns", "2015-01-09", "DescribeDnsGtmAddrAttributeInfo", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAddrs() { return this.addrs; } public void setAddrs(String addrs) { this.addrs = addrs; if(addrs != null){ putQueryParameter("Addrs", addrs); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDnsGtmAddrAttributeInfoResponse> getResponseClass() { return DescribeDnsGtmAddrAttributeInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmAddrAttributeInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDnsGtmAddrAttributeInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDnsGtmAddrAttributeInfoResponse extends AcsResponse { private String requestId; private List<AddrItem> addr; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<AddrItem> getAddr() { return this.addr; } public void setAddr(List<AddrItem> addr) { this.addr = addr; } public static class AddrItem { private String addr; private AttributeInfo attributeInfo; public String getAddr() { return this.addr; } public void setAddr(String addr) { this.addr = addr; } public AttributeInfo getAttributeInfo() { return this.attributeInfo; } public void setAttributeInfo(AttributeInfo attributeInfo) { this.attributeInfo = attributeInfo; } public static class AttributeInfo { private String fatherCode; private String groupName; private String lineCode; private String lineName; private String groupCode; public String getFatherCode() { return this.fatherCode; } public void setFatherCode(String fatherCode) { this.fatherCode = fatherCode; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getLineCode() { return this.lineCode; } public void setLineCode(String lineCode) { this.lineCode = lineCode; } public String getLineName() { return this.lineName; } public void setLineName(String lineName) { this.lineName = lineName; } public String getGroupCode() { return this.groupCode; } public void setGroupCode(String groupCode) { this.groupCode = groupCode; } } } @Override public DescribeDnsGtmAddrAttributeInfoResponse getInstance(UnmarshallerContext context) { return DescribeDnsGtmAddrAttributeInfoResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmAddressPoolAvailableConfigRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDnsGtmAddressPoolAvailableConfigRequest extends RpcAcsRequest<DescribeDnsGtmAddressPoolAvailableConfigResponse> { private String instanceId; private String lang; public DescribeDnsGtmAddressPoolAvailableConfigRequest() { super("Alidns", "2015-01-09", "DescribeDnsGtmAddressPoolAvailableConfig", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDnsGtmAddressPoolAvailableConfigResponse> getResponseClass() { return DescribeDnsGtmAddressPoolAvailableConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmAddressPoolAvailableConfigResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDnsGtmAddressPoolAvailableConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDnsGtmAddressPoolAvailableConfigResponse extends AcsResponse { private String requestId; private List<AttributeInfo> attributeInfos; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<AttributeInfo> getAttributeInfos() { return this.attributeInfos; } public void setAttributeInfos(List<AttributeInfo> attributeInfos) { this.attributeInfos = attributeInfos; } public static class AttributeInfo { private String fatherCode; private String groupName; private String lineCode; private String lineName; private String groupCode; public String getFatherCode() { return this.fatherCode; } public void setFatherCode(String fatherCode) { this.fatherCode = fatherCode; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getLineCode() { return this.lineCode; } public void setLineCode(String lineCode) { this.lineCode = lineCode; } public String getLineName() { return this.lineName; } public void setLineName(String lineName) { this.lineName = lineName; } public String getGroupCode() { return this.groupCode; } public void setGroupCode(String groupCode) { this.groupCode = groupCode; } } @Override public DescribeDnsGtmAddressPoolAvailableConfigResponse getInstance(UnmarshallerContext context) { return DescribeDnsGtmAddressPoolAvailableConfigResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmAvailableAlertGroupRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDnsGtmAvailableAlertGroupRequest extends RpcAcsRequest<DescribeDnsGtmAvailableAlertGroupResponse> { private String lang; public DescribeDnsGtmAvailableAlertGroupRequest() { super("Alidns", "2015-01-09", "DescribeDnsGtmAvailableAlertGroup", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDnsGtmAvailableAlertGroupResponse> getResponseClass() { return DescribeDnsGtmAvailableAlertGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmAvailableAlertGroupResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDnsGtmAvailableAlertGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDnsGtmAvailableAlertGroupResponse extends AcsResponse { private String requestId; private String availableAlertGroup; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getAvailableAlertGroup() { return this.availableAlertGroup; } public void setAvailableAlertGroup(String availableAlertGroup) { this.availableAlertGroup = availableAlertGroup; } @Override public DescribeDnsGtmAvailableAlertGroupResponse getInstance(UnmarshallerContext context) { return DescribeDnsGtmAvailableAlertGroupResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmInstanceAddressPoolRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDnsGtmInstanceAddressPoolRequest extends RpcAcsRequest<DescribeDnsGtmInstanceAddressPoolResponse> { private String addrPoolId; private String lang; public DescribeDnsGtmInstanceAddressPoolRequest() { super("Alidns", "2015-01-09", "DescribeDnsGtmInstanceAddressPool", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAddrPoolId() { return this.addrPoolId; } public void setAddrPoolId(String addrPoolId) { this.addrPoolId = addrPoolId; if(addrPoolId != null){ putQueryParameter("AddrPoolId", addrPoolId); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDnsGtmInstanceAddressPoolResponse> getResponseClass() { return DescribeDnsGtmInstanceAddressPoolResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmInstanceAddressPoolResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDnsGtmInstanceAddressPoolResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDnsGtmInstanceAddressPoolResponse extends AcsResponse { private String requestId; private String lbaStrategy; private String createTime; private Integer addrCount; private String name; private String type; private String updateTime; private String addrPoolId; private Long updateTimestamp; private String monitorConfigId; private String monitorStatus; private Long createTimestamp; private List<Addr> addrs; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getLbaStrategy() { return this.lbaStrategy; } public void setLbaStrategy(String lbaStrategy) { this.lbaStrategy = lbaStrategy; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public Integer getAddrCount() { return this.addrCount; } public void setAddrCount(Integer addrCount) { this.addrCount = addrCount; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getUpdateTime() { return this.updateTime; } public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } public String getAddrPoolId() { return this.addrPoolId; } public void setAddrPoolId(String addrPoolId) { this.addrPoolId = addrPoolId; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public void setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; } public String getMonitorConfigId() { return this.monitorConfigId; } public void setMonitorConfigId(String monitorConfigId) { this.monitorConfigId = monitorConfigId; } public String getMonitorStatus() { return this.monitorStatus; } public void setMonitorStatus(String monitorStatus) { this.monitorStatus = monitorStatus; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } public List<Addr> getAddrs() { return this.addrs; } public void setAddrs(List<Addr> addrs) { this.addrs = addrs; } public static class Addr { private Long updateTimestamp; private String attributeInfo; private String updateTime; private String alertStatus; private String remark; private Integer lbaWeight; private String addr; private String createTime; private String mode; private Long createTimestamp; public Long getUpdateTimestamp() { return this.updateTimestamp; } public void setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; } public String getAttributeInfo() { return this.attributeInfo; } public void setAttributeInfo(String attributeInfo) { this.attributeInfo = attributeInfo; } public String getUpdateTime() { return this.updateTime; } public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } public String getAlertStatus() { return this.alertStatus; } public void setAlertStatus(String alertStatus) { this.alertStatus = alertStatus; } public String getRemark() { return this.remark; } public void setRemark(String remark) { this.remark = remark; } public Integer getLbaWeight() { return this.lbaWeight; } public void setLbaWeight(Integer lbaWeight) { this.lbaWeight = lbaWeight; } public String getAddr() { return this.addr; } public void setAddr(String addr) { this.addr = addr; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getMode() { return this.mode; } public void setMode(String mode) { this.mode = mode; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } } @Override public DescribeDnsGtmInstanceAddressPoolResponse getInstance(UnmarshallerContext context) { return DescribeDnsGtmInstanceAddressPoolResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmInstanceAddressPoolsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDnsGtmInstanceAddressPoolsRequest extends RpcAcsRequest<DescribeDnsGtmInstanceAddressPoolsResponse> { private Integer pageNumber; private String instanceId; private Integer pageSize; private String lang; public DescribeDnsGtmInstanceAddressPoolsRequest() { super("Alidns", "2015-01-09", "DescribeDnsGtmInstanceAddressPools", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDnsGtmInstanceAddressPoolsResponse> getResponseClass() { return DescribeDnsGtmInstanceAddressPoolsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmInstanceAddressPoolsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDnsGtmInstanceAddressPoolsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDnsGtmInstanceAddressPoolsResponse extends AcsResponse { private Integer pageSize; private String requestId; private Integer pageNumber; private Integer totalPages; private Integer totalItems; private List<AddrPool> addrPools; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalPages() { return this.totalPages; } public void setTotalPages(Integer totalPages) { this.totalPages = totalPages; } public Integer getTotalItems() { return this.totalItems; } public void setTotalItems(Integer totalItems) { this.totalItems = totalItems; } public List<AddrPool> getAddrPools() { return this.addrPools; } public void setAddrPools(List<AddrPool> addrPools) { this.addrPools = addrPools; } public static class AddrPool { private String type; private Long updateTimestamp; private String monitorStatus; private String updateTime; private String createTime; private String addrPoolId; private String lbaStrategy; private String name; private Integer addrCount; private String monitorConfigId; private Long createTimestamp; public String getType() { return this.type; } public void setType(String type) { this.type = type; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public void setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; } public String getMonitorStatus() { return this.monitorStatus; } public void setMonitorStatus(String monitorStatus) { this.monitorStatus = monitorStatus; } public String getUpdateTime() { return this.updateTime; } public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getAddrPoolId() { return this.addrPoolId; } public void setAddrPoolId(String addrPoolId) { this.addrPoolId = addrPoolId; } public String getLbaStrategy() { return this.lbaStrategy; } public void setLbaStrategy(String lbaStrategy) { this.lbaStrategy = lbaStrategy; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Integer getAddrCount() { return this.addrCount; } public void setAddrCount(Integer addrCount) { this.addrCount = addrCount; } public String getMonitorConfigId() { return this.monitorConfigId; } public void setMonitorConfigId(String monitorConfigId) { this.monitorConfigId = monitorConfigId; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } } @Override public DescribeDnsGtmInstanceAddressPoolsResponse getInstance(UnmarshallerContext context) { return DescribeDnsGtmInstanceAddressPoolsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmInstanceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDnsGtmInstanceRequest extends RpcAcsRequest<DescribeDnsGtmInstanceResponse> { private String instanceId; private String lang; public DescribeDnsGtmInstanceRequest() { super("Alidns", "2015-01-09", "DescribeDnsGtmInstance", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDnsGtmInstanceResponse> getResponseClass() { return DescribeDnsGtmInstanceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmInstanceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDnsGtmInstanceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDnsGtmInstanceResponse extends AcsResponse { private Long expireTimestamp; private String requestId; private String resourceGroupId; private String instanceId; private Integer taskQuota; private String createTime; private Integer smsQuota; private String versionCode; private String paymentType; private String expireTime; private Long createTimestamp; private Config config; private UsedQuota usedQuota; public Long getExpireTimestamp() { return this.expireTimestamp; } public void setExpireTimestamp(Long expireTimestamp) { this.expireTimestamp = expireTimestamp; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public Integer getTaskQuota() { return this.taskQuota; } public void setTaskQuota(Integer taskQuota) { this.taskQuota = taskQuota; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public Integer getSmsQuota() { return this.smsQuota; } public void setSmsQuota(Integer smsQuota) { this.smsQuota = smsQuota; } public String getVersionCode() { return this.versionCode; } public void setVersionCode(String versionCode) { this.versionCode = versionCode; } public String getPaymentType() { return this.paymentType; } public void setPaymentType(String paymentType) { this.paymentType = paymentType; } public String getExpireTime() { return this.expireTime; } public void setExpireTime(String expireTime) { this.expireTime = expireTime; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } public Config getConfig() { return this.config; } public void setConfig(Config config) { this.config = config; } public UsedQuota getUsedQuota() { return this.usedQuota; } public void setUsedQuota(UsedQuota usedQuota) { this.usedQuota = usedQuota; } public static class Config { private Integer ttl; private String alertGroup; private String cnameType; private String strategyMode; private String instanceName; private String publicCnameMode; private String publicUserDomainName; private String pubicZoneName; private String publicRr; private List<AlertConfigItem> alertConfig; public Integer getTtl() { return this.ttl; } public void setTtl(Integer ttl) { this.ttl = ttl; } public String getAlertGroup() { return this.alertGroup; } public void setAlertGroup(String alertGroup) { this.alertGroup = alertGroup; } public String getCnameType() { return this.cnameType; } public void setCnameType(String cnameType) { this.cnameType = cnameType; } public String getStrategyMode() { return this.strategyMode; } public void setStrategyMode(String strategyMode) { this.strategyMode = strategyMode; } public String getInstanceName() { return this.instanceName; } public void setInstanceName(String instanceName) { this.instanceName = instanceName; } public String getPublicCnameMode() { return this.publicCnameMode; } public void setPublicCnameMode(String publicCnameMode) { this.publicCnameMode = publicCnameMode; } public String getPublicUserDomainName() { return this.publicUserDomainName; } public void setPublicUserDomainName(String publicUserDomainName) { this.publicUserDomainName = publicUserDomainName; } public String getPubicZoneName() { return this.pubicZoneName; } public void setPubicZoneName(String pubicZoneName) { this.pubicZoneName = pubicZoneName; } public String getPublicRr() { return this.publicRr; } public void setPublicRr(String publicRr) { this.publicRr = publicRr; } public List<AlertConfigItem> getAlertConfig() { return this.alertConfig; } public void setAlertConfig(List<AlertConfigItem> alertConfig) { this.alertConfig = alertConfig; } public static class AlertConfigItem { private Boolean smsNotice; private String noticeType; private Boolean emailNotice; private Boolean dingtalkNotice; public Boolean getSmsNotice() { return this.smsNotice; } public void setSmsNotice(Boolean smsNotice) { this.smsNotice = smsNotice; } public String getNoticeType() { return this.noticeType; } public void setNoticeType(String noticeType) { this.noticeType = noticeType; } public Boolean getEmailNotice() { return this.emailNotice; } public void setEmailNotice(Boolean emailNotice) { this.emailNotice = emailNotice; } public Boolean getDingtalkNotice() { return this.dingtalkNotice; } public void setDingtalkNotice(Boolean dingtalkNotice) { this.dingtalkNotice = dingtalkNotice; } } } public static class UsedQuota { private Integer emailUsedCount; private Integer taskUsedCount; private Integer smsUsedCount; private Integer dingtalkUsedCount; public Integer getEmailUsedCount() { return this.emailUsedCount; } public void setEmailUsedCount(Integer emailUsedCount) { this.emailUsedCount = emailUsedCount; } public Integer getTaskUsedCount() { return this.taskUsedCount; } public void setTaskUsedCount(Integer taskUsedCount) { this.taskUsedCount = taskUsedCount; } public Integer getSmsUsedCount() { return this.smsUsedCount; } public void setSmsUsedCount(Integer smsUsedCount) { this.smsUsedCount = smsUsedCount; } public Integer getDingtalkUsedCount() { return this.dingtalkUsedCount; } public void setDingtalkUsedCount(Integer dingtalkUsedCount) { this.dingtalkUsedCount = dingtalkUsedCount; } } @Override public DescribeDnsGtmInstanceResponse getInstance(UnmarshallerContext context) { return DescribeDnsGtmInstanceResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmInstanceStatusRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDnsGtmInstanceStatusRequest extends RpcAcsRequest<DescribeDnsGtmInstanceStatusResponse> { private String instanceId; private String lang; public DescribeDnsGtmInstanceStatusRequest() { super("Alidns", "2015-01-09", "DescribeDnsGtmInstanceStatus", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDnsGtmInstanceStatusResponse> getResponseClass() { return DescribeDnsGtmInstanceStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmInstanceStatusResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDnsGtmInstanceStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDnsGtmInstanceStatusResponse extends AcsResponse { private Integer strategyNotAvailableNum; private Integer addrAvailableNum; private String requestId; private Integer switchToFailoverStrategyNum; private Integer addrNotAvailableNum; private Integer addrPoolGroupNotAvailableNum; public Integer getStrategyNotAvailableNum() { return this.strategyNotAvailableNum; } public void setStrategyNotAvailableNum(Integer strategyNotAvailableNum) { this.strategyNotAvailableNum = strategyNotAvailableNum; } public Integer getAddrAvailableNum() { return this.addrAvailableNum; } public void setAddrAvailableNum(Integer addrAvailableNum) { this.addrAvailableNum = addrAvailableNum; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getSwitchToFailoverStrategyNum() { return this.switchToFailoverStrategyNum; } public void setSwitchToFailoverStrategyNum(Integer switchToFailoverStrategyNum) { this.switchToFailoverStrategyNum = switchToFailoverStrategyNum; } public Integer getAddrNotAvailableNum() { return this.addrNotAvailableNum; } public void setAddrNotAvailableNum(Integer addrNotAvailableNum) { this.addrNotAvailableNum = addrNotAvailableNum; } public Integer getAddrPoolGroupNotAvailableNum() { return this.addrPoolGroupNotAvailableNum; } public void setAddrPoolGroupNotAvailableNum(Integer addrPoolGroupNotAvailableNum) { this.addrPoolGroupNotAvailableNum = addrPoolGroupNotAvailableNum; } @Override public DescribeDnsGtmInstanceStatusResponse getInstance(UnmarshallerContext context) { return DescribeDnsGtmInstanceStatusResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmInstanceSystemCnameRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDnsGtmInstanceSystemCnameRequest extends RpcAcsRequest<DescribeDnsGtmInstanceSystemCnameResponse> { private String instanceId; private String lang; public DescribeDnsGtmInstanceSystemCnameRequest() { super("Alidns", "2015-01-09", "DescribeDnsGtmInstanceSystemCname", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDnsGtmInstanceSystemCnameResponse> getResponseClass() { return DescribeDnsGtmInstanceSystemCnameResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmInstanceSystemCnameResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDnsGtmInstanceSystemCnameResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDnsGtmInstanceSystemCnameResponse extends AcsResponse { private String systemCname; private String requestId; public String getSystemCname() { return this.systemCname; } public void setSystemCname(String systemCname) { this.systemCname = systemCname; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public DescribeDnsGtmInstanceSystemCnameResponse getInstance(UnmarshallerContext context) { return DescribeDnsGtmInstanceSystemCnameResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmInstancesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDnsGtmInstancesRequest extends RpcAcsRequest<DescribeDnsGtmInstancesResponse> { private Integer pageNumber; private String resourceGroupId; private Integer pageSize; private String lang; private String keyword; public DescribeDnsGtmInstancesRequest() { super("Alidns", "2015-01-09", "DescribeDnsGtmInstances", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } public String getKeyword() { return this.keyword; } public void setKeyword(String keyword) { this.keyword = keyword; if(keyword != null){ putQueryParameter("Keyword", keyword); } } @Override public Class<DescribeDnsGtmInstancesResponse> getResponseClass() { return DescribeDnsGtmInstancesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmInstancesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDnsGtmInstancesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDnsGtmInstancesResponse extends AcsResponse { private Integer pageSize; private String requestId; private Integer pageNumber; private Integer totalPages; private Integer totalItems; private List<GtmInstance> gtmInstances; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalPages() { return this.totalPages; } public void setTotalPages(Integer totalPages) { this.totalPages = totalPages; } public Integer getTotalItems() { return this.totalItems; } public void setTotalItems(Integer totalItems) { this.totalItems = totalItems; } public List<GtmInstance> getGtmInstances() { return this.gtmInstances; } public void setGtmInstances(List<GtmInstance> gtmInstances) { this.gtmInstances = gtmInstances; } public static class GtmInstance { private String paymentType; private String expireTime; private String createTime; private Integer smsQuota; private String instanceId; private Long expireTimestamp; private String resourceGroupId; private String versionCode; private Integer taskQuota; private Long createTimestamp; private Config config; private UsedQuota usedQuota; public String getPaymentType() { return this.paymentType; } public void setPaymentType(String paymentType) { this.paymentType = paymentType; } public String getExpireTime() { return this.expireTime; } public void setExpireTime(String expireTime) { this.expireTime = expireTime; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public Integer getSmsQuota() { return this.smsQuota; } public void setSmsQuota(Integer smsQuota) { this.smsQuota = smsQuota; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public Long getExpireTimestamp() { return this.expireTimestamp; } public void setExpireTimestamp(Long expireTimestamp) { this.expireTimestamp = expireTimestamp; } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; } public String getVersionCode() { return this.versionCode; } public void setVersionCode(String versionCode) { this.versionCode = versionCode; } public Integer getTaskQuota() { return this.taskQuota; } public void setTaskQuota(Integer taskQuota) { this.taskQuota = taskQuota; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } public Config getConfig() { return this.config; } public void setConfig(Config config) { this.config = config; } public UsedQuota getUsedQuota() { return this.usedQuota; } public void setUsedQuota(UsedQuota usedQuota) { this.usedQuota = usedQuota; } public static class Config { private Integer ttl; private String alertGroup; private String publicZoneName; private String cnameType; private String strategyMode; private String instanceName; private String publicCnameMode; private String publicUserDomainName; private String publicRr; private List<AlertConfigItem> alertConfig; public Integer getTtl() { return this.ttl; } public void setTtl(Integer ttl) { this.ttl = ttl; } public String getAlertGroup() { return this.alertGroup; } public void setAlertGroup(String alertGroup) { this.alertGroup = alertGroup; } public String getPublicZoneName() { return this.publicZoneName; } public void setPublicZoneName(String publicZoneName) { this.publicZoneName = publicZoneName; } public String getCnameType() { return this.cnameType; } public void setCnameType(String cnameType) { this.cnameType = cnameType; } public String getStrategyMode() { return this.strategyMode; } public void setStrategyMode(String strategyMode) { this.strategyMode = strategyMode; } public String getInstanceName() { return this.instanceName; } public void setInstanceName(String instanceName) { this.instanceName = instanceName; } public String getPublicCnameMode() { return this.publicCnameMode; } public void setPublicCnameMode(String publicCnameMode) { this.publicCnameMode = publicCnameMode; } public String getPublicUserDomainName() { return this.publicUserDomainName; } public void setPublicUserDomainName(String publicUserDomainName) { this.publicUserDomainName = publicUserDomainName; } public String getPublicRr() { return this.publicRr; } public void setPublicRr(String publicRr) { this.publicRr = publicRr; } public List<AlertConfigItem> getAlertConfig() { return this.alertConfig; } public void setAlertConfig(List<AlertConfigItem> alertConfig) { this.alertConfig = alertConfig; } public static class AlertConfigItem { private String smsNotice; private String noticeType; private String emailNotice; private String dingtalkNotice; public String getSmsNotice() { return this.smsNotice; } public void setSmsNotice(String smsNotice) { this.smsNotice = smsNotice; } public String getNoticeType() { return this.noticeType; } public void setNoticeType(String noticeType) { this.noticeType = noticeType; } public String getEmailNotice() { return this.emailNotice; } public void setEmailNotice(String emailNotice) { this.emailNotice = emailNotice; } public String getDingtalkNotice() { return this.dingtalkNotice; } public void setDingtalkNotice(String dingtalkNotice) { this.dingtalkNotice = dingtalkNotice; } } } public static class UsedQuota { private Integer emailUsedCount; private Integer taskUsedCount; private Integer smsUsedCount; private Integer dingtalkUsedCount; public Integer getEmailUsedCount() { return this.emailUsedCount; } public void setEmailUsedCount(Integer emailUsedCount) { this.emailUsedCount = emailUsedCount; } public Integer getTaskUsedCount() { return this.taskUsedCount; } public void setTaskUsedCount(Integer taskUsedCount) { this.taskUsedCount = taskUsedCount; } public Integer getSmsUsedCount() { return this.smsUsedCount; } public void setSmsUsedCount(Integer smsUsedCount) { this.smsUsedCount = smsUsedCount; } public Integer getDingtalkUsedCount() { return this.dingtalkUsedCount; } public void setDingtalkUsedCount(Integer dingtalkUsedCount) { this.dingtalkUsedCount = dingtalkUsedCount; } } } @Override public DescribeDnsGtmInstancesResponse getInstance(UnmarshallerContext context) { return DescribeDnsGtmInstancesResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmLogsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDnsGtmLogsRequest extends RpcAcsRequest<DescribeDnsGtmLogsResponse> { private Long startTimestamp; private Integer pageNumber; private Long endTimestamp; private String instanceId; private Integer pageSize; private String lang; private String keyword; public DescribeDnsGtmLogsRequest() { super("Alidns", "2015-01-09", "DescribeDnsGtmLogs", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getStartTimestamp() { return this.startTimestamp; } public void setStartTimestamp(Long startTimestamp) { this.startTimestamp = startTimestamp; if(startTimestamp != null){ putQueryParameter("StartTimestamp", startTimestamp.toString()); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Long getEndTimestamp() { return this.endTimestamp; } public void setEndTimestamp(Long endTimestamp) { this.endTimestamp = endTimestamp; if(endTimestamp != null){ putQueryParameter("EndTimestamp", endTimestamp.toString()); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } public String getKeyword() { return this.keyword; } public void setKeyword(String keyword) { this.keyword = keyword; if(keyword != null){ putQueryParameter("Keyword", keyword); } } @Override public Class<DescribeDnsGtmLogsResponse> getResponseClass() { return DescribeDnsGtmLogsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmLogsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDnsGtmLogsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDnsGtmLogsResponse extends AcsResponse { private Integer pageSize; private String requestId; private Integer pageNumber; private Integer totalPages; private Integer totalItems; private List<Log> logs; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalPages() { return this.totalPages; } public void setTotalPages(Integer totalPages) { this.totalPages = totalPages; } public Integer getTotalItems() { return this.totalItems; } public void setTotalItems(Integer totalItems) { this.totalItems = totalItems; } public List<Log> getLogs() { return this.logs; } public void setLogs(List<Log> logs) { this.logs = logs; } public static class Log { private Long operTimestamp; private String entityId; private String entityType; private String operTime; private String operAction; private String content; private String entityName; private Long id; public Long getOperTimestamp() { return this.operTimestamp; } public void setOperTimestamp(Long operTimestamp) { this.operTimestamp = operTimestamp; } public String getEntityId() { return this.entityId; } public void setEntityId(String entityId) { this.entityId = entityId; } public String getEntityType() { return this.entityType; } public void setEntityType(String entityType) { this.entityType = entityType; } public String getOperTime() { return this.operTime; } public void setOperTime(String operTime) { this.operTime = operTime; } public String getOperAction() { return this.operAction; } public void setOperAction(String operAction) { this.operAction = operAction; } public String getContent() { return this.content; } public void setContent(String content) { this.content = content; } public String getEntityName() { return this.entityName; } public void setEntityName(String entityName) { this.entityName = entityName; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } } @Override public DescribeDnsGtmLogsResponse getInstance(UnmarshallerContext context) { return DescribeDnsGtmLogsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmMonitorAvailableConfigRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDnsGtmMonitorAvailableConfigRequest extends RpcAcsRequest<DescribeDnsGtmMonitorAvailableConfigResponse> { private String lang; public DescribeDnsGtmMonitorAvailableConfigRequest() { super("Alidns", "2015-01-09", "DescribeDnsGtmMonitorAvailableConfig", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDnsGtmMonitorAvailableConfigResponse> getResponseClass() { return DescribeDnsGtmMonitorAvailableConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmMonitorAvailableConfigResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDnsGtmMonitorAvailableConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDnsGtmMonitorAvailableConfigResponse extends AcsResponse { private String requestId; private List<Ipv4IspCityNode> ipv4IspCityNodes; private List<DomainIpv4IspCityNode> domainIpv4IspCityNodes; private List<DomainIpv6IspCityNode> domainIpv6IspCityNodes; private List<Ipv6IspCityNode> ipv6IspCityNodes; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<Ipv4IspCityNode> getIpv4IspCityNodes() { return this.ipv4IspCityNodes; } public void setIpv4IspCityNodes(List<Ipv4IspCityNode> ipv4IspCityNodes) { this.ipv4IspCityNodes = ipv4IspCityNodes; } public List<DomainIpv4IspCityNode> getDomainIpv4IspCityNodes() { return this.domainIpv4IspCityNodes; } public void setDomainIpv4IspCityNodes(List<DomainIpv4IspCityNode> domainIpv4IspCityNodes) { this.domainIpv4IspCityNodes = domainIpv4IspCityNodes; } public List<DomainIpv6IspCityNode> getDomainIpv6IspCityNodes() { return this.domainIpv6IspCityNodes; } public void setDomainIpv6IspCityNodes(List<DomainIpv6IspCityNode> domainIpv6IspCityNodes) { this.domainIpv6IspCityNodes = domainIpv6IspCityNodes; } public List<Ipv6IspCityNode> getIpv6IspCityNodes() { return this.ipv6IspCityNodes; } public void setIpv6IspCityNodes(List<Ipv6IspCityNode> ipv6IspCityNodes) { this.ipv6IspCityNodes = ipv6IspCityNodes; } public static class Ipv4IspCityNode { private String cityCode; private String groupName; private String ispCode; private String cityName; private String ispName; private String groupType; private Boolean defaultSelected; private List<String> ips; public String getCityCode() { return this.cityCode; } public void setCityCode(String cityCode) { this.cityCode = cityCode; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getIspCode() { return this.ispCode; } public void setIspCode(String ispCode) { this.ispCode = ispCode; } public String getCityName() { return this.cityName; } public void setCityName(String cityName) { this.cityName = cityName; } public String getIspName() { return this.ispName; } public void setIspName(String ispName) { this.ispName = ispName; } public String getGroupType() { return this.groupType; } public void setGroupType(String groupType) { this.groupType = groupType; } public Boolean getDefaultSelected() { return this.defaultSelected; } public void setDefaultSelected(Boolean defaultSelected) { this.defaultSelected = defaultSelected; } public List<String> getIps() { return this.ips; } public void setIps(List<String> ips) { this.ips = ips; } } public static class DomainIpv4IspCityNode { private String cityCode; private String groupName; private String ispCode; private String cityName; private String ispName; private String groupType; private Boolean defaultSelected; private List<String> ips1; public String getCityCode() { return this.cityCode; } public void setCityCode(String cityCode) { this.cityCode = cityCode; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getIspCode() { return this.ispCode; } public void setIspCode(String ispCode) { this.ispCode = ispCode; } public String getCityName() { return this.cityName; } public void setCityName(String cityName) { this.cityName = cityName; } public String getIspName() { return this.ispName; } public void setIspName(String ispName) { this.ispName = ispName; } public String getGroupType() { return this.groupType; } public void setGroupType(String groupType) { this.groupType = groupType; } public Boolean getDefaultSelected() { return this.defaultSelected; } public void setDefaultSelected(Boolean defaultSelected) { this.defaultSelected = defaultSelected; } public List<String> getIps1() { return this.ips1; } public void setIps1(List<String> ips1) { this.ips1 = ips1; } } public static class DomainIpv6IspCityNode { private String cityCode; private String groupName; private String ispCode; private String cityName; private String ispName; private String groupType; private Boolean defaultSelected; private List<String> ips2; public String getCityCode() { return this.cityCode; } public void setCityCode(String cityCode) { this.cityCode = cityCode; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getIspCode() { return this.ispCode; } public void setIspCode(String ispCode) { this.ispCode = ispCode; } public String getCityName() { return this.cityName; } public void setCityName(String cityName) { this.cityName = cityName; } public String getIspName() { return this.ispName; } public void setIspName(String ispName) { this.ispName = ispName; } public String getGroupType() { return this.groupType; } public void setGroupType(String groupType) { this.groupType = groupType; } public Boolean getDefaultSelected() { return this.defaultSelected; } public void setDefaultSelected(Boolean defaultSelected) { this.defaultSelected = defaultSelected; } public List<String> getIps2() { return this.ips2; } public void setIps2(List<String> ips2) { this.ips2 = ips2; } } public static class Ipv6IspCityNode { private String cityCode; private String groupName; private String ispCode; private String cityName; private String ispName; private String groupType; private Boolean defaultSelected; private List<String> ips3; public String getCityCode() { return this.cityCode; } public void setCityCode(String cityCode) { this.cityCode = cityCode; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getIspCode() { return this.ispCode; } public void setIspCode(String ispCode) { this.ispCode = ispCode; } public String getCityName() { return this.cityName; } public void setCityName(String cityName) { this.cityName = cityName; } public String getIspName() { return this.ispName; } public void setIspName(String ispName) { this.ispName = ispName; } public String getGroupType() { return this.groupType; } public void setGroupType(String groupType) { this.groupType = groupType; } public Boolean getDefaultSelected() { return this.defaultSelected; } public void setDefaultSelected(Boolean defaultSelected) { this.defaultSelected = defaultSelected; } public List<String> getIps3() { return this.ips3; } public void setIps3(List<String> ips3) { this.ips3 = ips3; } } @Override public DescribeDnsGtmMonitorAvailableConfigResponse getInstance(UnmarshallerContext context) { return DescribeDnsGtmMonitorAvailableConfigResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmMonitorConfigRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDnsGtmMonitorConfigRequest extends RpcAcsRequest<DescribeDnsGtmMonitorConfigResponse> { private String monitorConfigId; private String lang; public DescribeDnsGtmMonitorConfigRequest() { super("Alidns", "2015-01-09", "DescribeDnsGtmMonitorConfig", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getMonitorConfigId() { return this.monitorConfigId; } public void setMonitorConfigId(String monitorConfigId) { this.monitorConfigId = monitorConfigId; if(monitorConfigId != null){ putQueryParameter("MonitorConfigId", monitorConfigId); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDnsGtmMonitorConfigResponse> getResponseClass() { return DescribeDnsGtmMonitorConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsGtmMonitorConfigResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDnsGtmMonitorConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDnsGtmMonitorConfigResponse extends AcsResponse { private String requestId; private Integer timeout; private String protocolType; private String createTime; private String updateTime; private Integer evaluationCount; private Long updateTimestamp; private String monitorExtendInfo; private String monitorConfigId; private Long createTimestamp; private Integer interval; private List<IspCityNode> ispCityNodes; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getTimeout() { return this.timeout; } public void setTimeout(Integer timeout) { this.timeout = timeout; } public String getProtocolType() { return this.protocolType; } public void setProtocolType(String protocolType) { this.protocolType = protocolType; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getUpdateTime() { return this.updateTime; } public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } public Integer getEvaluationCount() { return this.evaluationCount; } public void setEvaluationCount(Integer evaluationCount) { this.evaluationCount = evaluationCount; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public void setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; } public String getMonitorExtendInfo() { return this.monitorExtendInfo; } public void setMonitorExtendInfo(String monitorExtendInfo) { this.monitorExtendInfo = monitorExtendInfo; } public String getMonitorConfigId() { return this.monitorConfigId; } public void setMonitorConfigId(String monitorConfigId) { this.monitorConfigId = monitorConfigId; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } public Integer getInterval() { return this.interval; } public void setInterval(Integer interval) { this.interval = interval; } public List<IspCityNode> getIspCityNodes() { return this.ispCityNodes; } public void setIspCityNodes(List<IspCityNode> ispCityNodes) { this.ispCityNodes = ispCityNodes; } public static class IspCityNode { private String cityCode; private String countryName; private String ispCode; private String cityName; private String countryCode; private String ispName; public String getCityCode() { return this.cityCode; } public void setCityCode(String cityCode) { this.cityCode = cityCode; } public String getCountryName() { return this.countryName; } public void setCountryName(String countryName) { this.countryName = countryName; } public String getIspCode() { return this.ispCode; } public void setIspCode(String ispCode) { this.ispCode = ispCode; } public String getCityName() { return this.cityName; } public void setCityName(String cityName) { this.cityName = cityName; } public String getCountryCode() { return this.countryCode; } public void setCountryCode(String countryCode) { this.countryCode = countryCode; } public String getIspName() { return this.ispName; } public void setIspName(String ispName) { this.ispName = ispName; } } @Override public DescribeDnsGtmMonitorConfigResponse getInstance(UnmarshallerContext context) { return DescribeDnsGtmMonitorConfigResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsProductInstanceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDnsProductInstanceRequest extends RpcAcsRequest<DescribeDnsProductInstanceResponse> { private String instanceId; private String userClientIp; private String lang; public DescribeDnsProductInstanceRequest() { super("Alidns", "2015-01-09", "DescribeDnsProductInstance", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public String getUserClientIp() { return this.userClientIp; } public void setUserClientIp(String userClientIp) { this.userClientIp = userClientIp; if(userClientIp != null){ putQueryParameter("UserClientIp", userClientIp); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDnsProductInstanceResponse> getResponseClass() { return DescribeDnsProductInstanceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsProductInstanceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDnsProductInstanceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDnsProductInstanceResponse extends AcsResponse { private Long monitorNodeCount; private Boolean inBlackHole; private Long bindDomainCount; private Boolean regionLines; private Long bindCount; private String endTime; private Long startTimestamp; private String iSPLines; private Long endTimestamp; private Long dDosDefendQuery; private String dnsSecurity; private String domainType; private Long uRLForwardCount; private Long tTLMinValue; private String paymentType; private String versionName; private String overseaLine; private String iSPRegionLines; private Boolean gslb; private Long bindUsedCount; private String requestId; private Long dnsSLBCount; private String instanceId; private Long monitorTaskCount; private String startTime; private Long dDosDefendFlow; private Long monitorFrequency; private String searchEngineLines; private Long bindDomainUsedCount; private String versionCode; private Long overseaDDosDefendFlow; private Boolean inClean; private Long subDomainLevel; private String domain; private List<String> dnsServers; public Long getMonitorNodeCount() { return this.monitorNodeCount; } public void setMonitorNodeCount(Long monitorNodeCount) { this.monitorNodeCount = monitorNodeCount; } public Boolean getInBlackHole() { return this.inBlackHole; } public void setInBlackHole(Boolean inBlackHole) { this.inBlackHole = inBlackHole; } public Long getBindDomainCount() { return this.bindDomainCount; } public void setBindDomainCount(Long bindDomainCount) { this.bindDomainCount = bindDomainCount; } public Boolean getRegionLines() { return this.regionLines; } public void setRegionLines(Boolean regionLines) { this.regionLines = regionLines; } public Long getBindCount() { return this.bindCount; } public void setBindCount(Long bindCount) { this.bindCount = bindCount; } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; } public Long getStartTimestamp() { return this.startTimestamp; } public void setStartTimestamp(Long startTimestamp) { this.startTimestamp = startTimestamp; } public String getISPLines() { return this.iSPLines; } public void setISPLines(String iSPLines) { this.iSPLines = iSPLines; } public Long getEndTimestamp() { return this.endTimestamp; } public void setEndTimestamp(Long endTimestamp) { this.endTimestamp = endTimestamp; } public Long getDDosDefendQuery() { return this.dDosDefendQuery; } public void setDDosDefendQuery(Long dDosDefendQuery) { this.dDosDefendQuery = dDosDefendQuery; } public String getDnsSecurity() { return this.dnsSecurity; } public void setDnsSecurity(String dnsSecurity) { this.dnsSecurity = dnsSecurity; } public String getDomainType() { return this.domainType; } public void setDomainType(String domainType) { this.domainType = domainType; } public Long getURLForwardCount() { return this.uRLForwardCount; } public void setURLForwardCount(Long uRLForwardCount) { this.uRLForwardCount = uRLForwardCount; } public Long getTTLMinValue() { return this.tTLMinValue; } public void setTTLMinValue(Long tTLMinValue) { this.tTLMinValue = tTLMinValue; } public String getPaymentType() { return this.paymentType; } public void setPaymentType(String paymentType) { this.paymentType = paymentType; } public String getVersionName() { return this.versionName; } public void setVersionName(String versionName) { this.versionName = versionName; } public String getOverseaLine() { return this.overseaLine; } public void setOverseaLine(String overseaLine) { this.overseaLine = overseaLine; } public String getISPRegionLines() { return this.iSPRegionLines; } public void setISPRegionLines(String iSPRegionLines) { this.iSPRegionLines = iSPRegionLines; } public Boolean getGslb() { return this.gslb; } public void setGslb(Boolean gslb) { this.gslb = gslb; } public Long getBindUsedCount() { return this.bindUsedCount; } public void setBindUsedCount(Long bindUsedCount) { this.bindUsedCount = bindUsedCount; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getDnsSLBCount() { return this.dnsSLBCount; } public void setDnsSLBCount(Long dnsSLBCount) { this.dnsSLBCount = dnsSLBCount; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public Long getMonitorTaskCount() { return this.monitorTaskCount; } public void setMonitorTaskCount(Long monitorTaskCount) { this.monitorTaskCount = monitorTaskCount; } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } public Long getDDosDefendFlow() { return this.dDosDefendFlow; } public void setDDosDefendFlow(Long dDosDefendFlow) { this.dDosDefendFlow = dDosDefendFlow; } public Long getMonitorFrequency() { return this.monitorFrequency; } public void setMonitorFrequency(Long monitorFrequency) { this.monitorFrequency = monitorFrequency; } public String getSearchEngineLines() { return this.searchEngineLines; } public void setSearchEngineLines(String searchEngineLines) { this.searchEngineLines = searchEngineLines; } public Long getBindDomainUsedCount() { return this.bindDomainUsedCount; } public void setBindDomainUsedCount(Long bindDomainUsedCount) { this.bindDomainUsedCount = bindDomainUsedCount; } public String getVersionCode() { return this.versionCode; } public void setVersionCode(String versionCode) { this.versionCode = versionCode; } public Long getOverseaDDosDefendFlow() { return this.overseaDDosDefendFlow; } public void setOverseaDDosDefendFlow(Long overseaDDosDefendFlow) { this.overseaDDosDefendFlow = overseaDDosDefendFlow; } public Boolean getInClean() { return this.inClean; } public void setInClean(Boolean inClean) { this.inClean = inClean; } public Long getSubDomainLevel() { return this.subDomainLevel; } public void setSubDomainLevel(Long subDomainLevel) { this.subDomainLevel = subDomainLevel; } public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; } public List<String> getDnsServers() { return this.dnsServers; } public void setDnsServers(List<String> dnsServers) { this.dnsServers = dnsServers; } @Override public DescribeDnsProductInstanceResponse getInstance(UnmarshallerContext context) { return DescribeDnsProductInstanceResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsProductInstancesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDnsProductInstancesRequest extends RpcAcsRequest<DescribeDnsProductInstancesResponse> { private String orderBy; private Long pageNumber; private String domainType; private String userClientIp; private Long pageSize; private String lang; private String versionCode; private String direction; public DescribeDnsProductInstancesRequest() { super("Alidns", "2015-01-09", "DescribeDnsProductInstances", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getOrderBy() { return this.orderBy; } public void setOrderBy(String orderBy) { this.orderBy = orderBy; if(orderBy != null){ putQueryParameter("OrderBy", orderBy); } } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public String getDomainType() { return this.domainType; } public void setDomainType(String domainType) { this.domainType = domainType; if(domainType != null){ putQueryParameter("DomainType", domainType); } } public String getUserClientIp() { return this.userClientIp; } public void setUserClientIp(String userClientIp) { this.userClientIp = userClientIp; if(userClientIp != null){ putQueryParameter("UserClientIp", userClientIp); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } public String getVersionCode() { return this.versionCode; } public void setVersionCode(String versionCode) { this.versionCode = versionCode; if(versionCode != null){ putQueryParameter("VersionCode", versionCode); } } public String getDirection() { return this.direction; } public void setDirection(String direction) { this.direction = direction; if(direction != null){ putQueryParameter("Direction", direction); } } @Override public Class<DescribeDnsProductInstancesResponse> getResponseClass() { return DescribeDnsProductInstancesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDnsProductInstancesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDnsProductInstancesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDnsProductInstancesResponse extends AcsResponse { private Long totalCount; private String domainType; private Long pageSize; private String requestId; private Long pageNumber; private List<DnsProduct> dnsProducts; public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public String getDomainType() { return this.domainType; } public void setDomainType(String domainType) { this.domainType = domainType; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public List<DnsProduct> getDnsProducts() { return this.dnsProducts; } public void setDnsProducts(List<DnsProduct> dnsProducts) { this.dnsProducts = dnsProducts; } public static class DnsProduct { private String overseaLine; private String paymentType; private Long monitorNodeCount; private Boolean inBlackHole; private Long bindDomainUsedCount; private String iSPRegionLines; private Long tTLMinValue; private String iSPLines; private String searchEngineLines; private Long endTimestamp; private String versionName; private String versionCode; private Long monitorTaskCount; private Long bindUsedCount; private String domain; private Long monitorFrequency; private Boolean inClean; private Long uRLForwardCount; private Long startTimestamp; private Long dDosDefendQuery; private String instanceId; private Long dDosDefendFlow; private Long bindCount; private Long subDomainLevel; private Long bindDomainCount; private String endTime; private String startTime; private Long overseaDDosDefendFlow; private Boolean regionLines; private Boolean gslb; private String dnsSecurity; private Long dnsSLBCount; public String getOverseaLine() { return this.overseaLine; } public void setOverseaLine(String overseaLine) { this.overseaLine = overseaLine; } public String getPaymentType() { return this.paymentType; } public void setPaymentType(String paymentType) { this.paymentType = paymentType; } public Long getMonitorNodeCount() { return this.monitorNodeCount; } public void setMonitorNodeCount(Long monitorNodeCount) { this.monitorNodeCount = monitorNodeCount; } public Boolean getInBlackHole() { return this.inBlackHole; } public void setInBlackHole(Boolean inBlackHole) { this.inBlackHole = inBlackHole; } public Long getBindDomainUsedCount() { return this.bindDomainUsedCount; } public void setBindDomainUsedCount(Long bindDomainUsedCount) { this.bindDomainUsedCount = bindDomainUsedCount; } public String getISPRegionLines() { return this.iSPRegionLines; } public void setISPRegionLines(String iSPRegionLines) { this.iSPRegionLines = iSPRegionLines; } public Long getTTLMinValue() { return this.tTLMinValue; } public void setTTLMinValue(Long tTLMinValue) { this.tTLMinValue = tTLMinValue; } public String getISPLines() { return this.iSPLines; } public void setISPLines(String iSPLines) { this.iSPLines = iSPLines; } public String getSearchEngineLines() { return this.searchEngineLines; } public void setSearchEngineLines(String searchEngineLines) { this.searchEngineLines = searchEngineLines; } public Long getEndTimestamp() { return this.endTimestamp; } public void setEndTimestamp(Long endTimestamp) { this.endTimestamp = endTimestamp; } public String getVersionName() { return this.versionName; } public void setVersionName(String versionName) { this.versionName = versionName; } public String getVersionCode() { return this.versionCode; } public void setVersionCode(String versionCode) { this.versionCode = versionCode; } public Long getMonitorTaskCount() { return this.monitorTaskCount; } public void setMonitorTaskCount(Long monitorTaskCount) { this.monitorTaskCount = monitorTaskCount; } public Long getBindUsedCount() { return this.bindUsedCount; } public void setBindUsedCount(Long bindUsedCount) { this.bindUsedCount = bindUsedCount; } public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; } public Long getMonitorFrequency() { return this.monitorFrequency; } public void setMonitorFrequency(Long monitorFrequency) { this.monitorFrequency = monitorFrequency; } public Boolean getInClean() { return this.inClean; } public void setInClean(Boolean inClean) { this.inClean = inClean; } public Long getURLForwardCount() { return this.uRLForwardCount; } public void setURLForwardCount(Long uRLForwardCount) { this.uRLForwardCount = uRLForwardCount; } public Long getStartTimestamp() { return this.startTimestamp; } public void setStartTimestamp(Long startTimestamp) { this.startTimestamp = startTimestamp; } public Long getDDosDefendQuery() { return this.dDosDefendQuery; } public void setDDosDefendQuery(Long dDosDefendQuery) { this.dDosDefendQuery = dDosDefendQuery; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public Long getDDosDefendFlow() { return this.dDosDefendFlow; } public void setDDosDefendFlow(Long dDosDefendFlow) { this.dDosDefendFlow = dDosDefendFlow; } public Long getBindCount() { return this.bindCount; } public void setBindCount(Long bindCount) { this.bindCount = bindCount; } public Long getSubDomainLevel() { return this.subDomainLevel; } public void setSubDomainLevel(Long subDomainLevel) { this.subDomainLevel = subDomainLevel; } public Long getBindDomainCount() { return this.bindDomainCount; } public void setBindDomainCount(Long bindDomainCount) { this.bindDomainCount = bindDomainCount; } public String getEndTime() { return this.endTime; } public void setEndTime(String endTime) { this.endTime = endTime; } public String getStartTime() { return this.startTime; } public void setStartTime(String startTime) { this.startTime = startTime; } public Long getOverseaDDosDefendFlow() { return this.overseaDDosDefendFlow; } public void setOverseaDDosDefendFlow(Long overseaDDosDefendFlow) { this.overseaDDosDefendFlow = overseaDDosDefendFlow; } public Boolean getRegionLines() { return this.regionLines; } public void setRegionLines(Boolean regionLines) { this.regionLines = regionLines; } public Boolean getGslb() { return this.gslb; } public void setGslb(Boolean gslb) { this.gslb = gslb; } public String getDnsSecurity() { return this.dnsSecurity; } public void setDnsSecurity(String dnsSecurity) { this.dnsSecurity = dnsSecurity; } public Long getDnsSLBCount() { return this.dnsSLBCount; } public void setDnsSLBCount(Long dnsSLBCount) { this.dnsSLBCount = dnsSLBCount; } } @Override public DescribeDnsProductInstancesResponse getInstance(UnmarshallerContext context) { return DescribeDnsProductInstancesResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDohAccountStatisticsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDohAccountStatisticsRequest extends RpcAcsRequest<DescribeDohAccountStatisticsResponse> { private String startDate; private String endDate; private String lang; public DescribeDohAccountStatisticsRequest() { super("Alidns", "2015-01-09", "DescribeDohAccountStatistics", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getStartDate() { return this.startDate; } public void setStartDate(String startDate) { this.startDate = startDate; if(startDate != null){ putQueryParameter("StartDate", startDate); } } public String getEndDate() { return this.endDate; } public void setEndDate(String endDate) { this.endDate = endDate; if(endDate != null){ putQueryParameter("EndDate", endDate); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDohAccountStatisticsResponse> getResponseClass() { return DescribeDohAccountStatisticsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDohAccountStatisticsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDohAccountStatisticsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDohAccountStatisticsResponse extends AcsResponse { private String requestId; private List<Statistic> statistics; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<Statistic> getStatistics() { return this.statistics; } public void setStatistics(List<Statistic> statistics) { this.statistics = statistics; } public static class Statistic { private Long v6HttpCount; private Long v4HttpsCount; private Long timestamp; private Long totalCount; private Long v4HttpCount; private Long v6HttpsCount; public Long getV6HttpCount() { return this.v6HttpCount; } public void setV6HttpCount(Long v6HttpCount) { this.v6HttpCount = v6HttpCount; } public Long getV4HttpsCount() { return this.v4HttpsCount; } public void setV4HttpsCount(Long v4HttpsCount) { this.v4HttpsCount = v4HttpsCount; } public Long getTimestamp() { return this.timestamp; } public void setTimestamp(Long timestamp) { this.timestamp = timestamp; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public Long getV4HttpCount() { return this.v4HttpCount; } public void setV4HttpCount(Long v4HttpCount) { this.v4HttpCount = v4HttpCount; } public Long getV6HttpsCount() { return this.v6HttpsCount; } public void setV6HttpsCount(Long v6HttpsCount) { this.v6HttpsCount = v6HttpsCount; } } @Override public DescribeDohAccountStatisticsResponse getInstance(UnmarshallerContext context) { return DescribeDohAccountStatisticsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDohDomainStatisticsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDohDomainStatisticsRequest extends RpcAcsRequest<DescribeDohDomainStatisticsResponse> { private String domainName; private String startDate; private String endDate; private String lang; public DescribeDohDomainStatisticsRequest() { super("Alidns", "2015-01-09", "DescribeDohDomainStatistics", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; if(domainName != null){ putQueryParameter("DomainName", domainName); } } public String getStartDate() { return this.startDate; } public void setStartDate(String startDate) { this.startDate = startDate; if(startDate != null){ putQueryParameter("StartDate", startDate); } } public String getEndDate() { return this.endDate; } public void setEndDate(String endDate) { this.endDate = endDate; if(endDate != null){ putQueryParameter("EndDate", endDate); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDohDomainStatisticsResponse> getResponseClass() { return DescribeDohDomainStatisticsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDohDomainStatisticsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDohDomainStatisticsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDohDomainStatisticsResponse extends AcsResponse { private String requestId; private List<Statistic> statistics; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<Statistic> getStatistics() { return this.statistics; } public void setStatistics(List<Statistic> statistics) { this.statistics = statistics; } public static class Statistic { private Long v6HttpCount; private Long v4HttpsCount; private Long timestamp; private Long totalCount; private Long v4HttpCount; private Long v6HttpsCount; public Long getV6HttpCount() { return this.v6HttpCount; } public void setV6HttpCount(Long v6HttpCount) { this.v6HttpCount = v6HttpCount; } public Long getV4HttpsCount() { return this.v4HttpsCount; } public void setV4HttpsCount(Long v4HttpsCount) { this.v4HttpsCount = v4HttpsCount; } public Long getTimestamp() { return this.timestamp; } public void setTimestamp(Long timestamp) { this.timestamp = timestamp; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public Long getV4HttpCount() { return this.v4HttpCount; } public void setV4HttpCount(Long v4HttpCount) { this.v4HttpCount = v4HttpCount; } public Long getV6HttpsCount() { return this.v6HttpsCount; } public void setV6HttpsCount(Long v6HttpsCount) { this.v6HttpsCount = v6HttpsCount; } } @Override public DescribeDohDomainStatisticsResponse getInstance(UnmarshallerContext context) { return DescribeDohDomainStatisticsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDohDomainStatisticsSummaryRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDohDomainStatisticsSummaryRequest extends RpcAcsRequest<DescribeDohDomainStatisticsSummaryResponse> { private String domainName; private String startDate; private Integer pageNumber; private String endDate; private Integer pageSize; private String lang; public DescribeDohDomainStatisticsSummaryRequest() { super("Alidns", "2015-01-09", "DescribeDohDomainStatisticsSummary", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; if(domainName != null){ putQueryParameter("DomainName", domainName); } } public String getStartDate() { return this.startDate; } public void setStartDate(String startDate) { this.startDate = startDate; if(startDate != null){ putQueryParameter("StartDate", startDate); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public String getEndDate() { return this.endDate; } public void setEndDate(String endDate) { this.endDate = endDate; if(endDate != null){ putQueryParameter("EndDate", endDate); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDohDomainStatisticsSummaryResponse> getResponseClass() { return DescribeDohDomainStatisticsSummaryResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDohDomainStatisticsSummaryResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDohDomainStatisticsSummaryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDohDomainStatisticsSummaryResponse extends AcsResponse { private Integer pageSize; private String requestId; private Integer pageNumber; private Integer totalPages; private Integer totalItems; private List<Statistic> statistics; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalPages() { return this.totalPages; } public void setTotalPages(Integer totalPages) { this.totalPages = totalPages; } public Integer getTotalItems() { return this.totalItems; } public void setTotalItems(Integer totalItems) { this.totalItems = totalItems; } public List<Statistic> getStatistics() { return this.statistics; } public void setStatistics(List<Statistic> statistics) { this.statistics = statistics; } public static class Statistic { private Long v6HttpCount; private Long v4HttpsCount; private Long ipCount; private Long totalCount; private Long httpCount; private String domainName; private Long httpsCount; private Long v4HttpCount; private Long v6HttpsCount; public Long getV6HttpCount() { return this.v6HttpCount; } public void setV6HttpCount(Long v6HttpCount) { this.v6HttpCount = v6HttpCount; } public Long getV4HttpsCount() { return this.v4HttpsCount; } public void setV4HttpsCount(Long v4HttpsCount) { this.v4HttpsCount = v4HttpsCount; } public Long getIpCount() { return this.ipCount; } public void setIpCount(Long ipCount) { this.ipCount = ipCount; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public Long getHttpCount() { return this.httpCount; } public void setHttpCount(Long httpCount) { this.httpCount = httpCount; } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } public Long getHttpsCount() { return this.httpsCount; } public void setHttpsCount(Long httpsCount) { this.httpsCount = httpsCount; } public Long getV4HttpCount() { return this.v4HttpCount; } public void setV4HttpCount(Long v4HttpCount) { this.v4HttpCount = v4HttpCount; } public Long getV6HttpsCount() { return this.v6HttpsCount; } public void setV6HttpsCount(Long v6HttpsCount) { this.v6HttpsCount = v6HttpsCount; } } @Override public DescribeDohDomainStatisticsSummaryResponse getInstance(UnmarshallerContext context) { return DescribeDohDomainStatisticsSummaryResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDohSubDomainStatisticsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDohSubDomainStatisticsRequest extends RpcAcsRequest<DescribeDohSubDomainStatisticsResponse> { private String startDate; private String endDate; private String subDomain; private String lang; public DescribeDohSubDomainStatisticsRequest() { super("Alidns", "2015-01-09", "DescribeDohSubDomainStatistics", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getStartDate() { return this.startDate; } public void setStartDate(String startDate) { this.startDate = startDate; if(startDate != null){ putQueryParameter("StartDate", startDate); } } public String getEndDate() { return this.endDate; } public void setEndDate(String endDate) { this.endDate = endDate; if(endDate != null){ putQueryParameter("EndDate", endDate); } } public String getSubDomain() { return this.subDomain; } public void setSubDomain(String subDomain) { this.subDomain = subDomain; if(subDomain != null){ putQueryParameter("SubDomain", subDomain); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDohSubDomainStatisticsResponse> getResponseClass() { return DescribeDohSubDomainStatisticsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDohSubDomainStatisticsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDohSubDomainStatisticsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDohSubDomainStatisticsResponse extends AcsResponse { private String requestId; private List<Statistic> statistics; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<Statistic> getStatistics() { return this.statistics; } public void setStatistics(List<Statistic> statistics) { this.statistics = statistics; } public static class Statistic { private Long v6HttpCount; private Long v4HttpsCount; private Long timestamp; private Long totalCount; private Long v4HttpCount; private Long v6HttpsCount; public Long getV6HttpCount() { return this.v6HttpCount; } public void setV6HttpCount(Long v6HttpCount) { this.v6HttpCount = v6HttpCount; } public Long getV4HttpsCount() { return this.v4HttpsCount; } public void setV4HttpsCount(Long v4HttpsCount) { this.v4HttpsCount = v4HttpsCount; } public Long getTimestamp() { return this.timestamp; } public void setTimestamp(Long timestamp) { this.timestamp = timestamp; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public Long getV4HttpCount() { return this.v4HttpCount; } public void setV4HttpCount(Long v4HttpCount) { this.v4HttpCount = v4HttpCount; } public Long getV6HttpsCount() { return this.v6HttpsCount; } public void setV6HttpsCount(Long v6HttpsCount) { this.v6HttpsCount = v6HttpsCount; } } @Override public DescribeDohSubDomainStatisticsResponse getInstance(UnmarshallerContext context) { return DescribeDohSubDomainStatisticsResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDohSubDomainStatisticsSummaryRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDohSubDomainStatisticsSummaryRequest extends RpcAcsRequest<DescribeDohSubDomainStatisticsSummaryResponse> { private String domainName; private String startDate; private Integer pageNumber; private String endDate; private Integer pageSize; private String subDomain; private String lang; public DescribeDohSubDomainStatisticsSummaryRequest() { super("Alidns", "2015-01-09", "DescribeDohSubDomainStatisticsSummary", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; if(domainName != null){ putQueryParameter("DomainName", domainName); } } public String getStartDate() { return this.startDate; } public void setStartDate(String startDate) { this.startDate = startDate; if(startDate != null){ putQueryParameter("StartDate", startDate); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public String getEndDate() { return this.endDate; } public void setEndDate(String endDate) { this.endDate = endDate; if(endDate != null){ putQueryParameter("EndDate", endDate); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getSubDomain() { return this.subDomain; } public void setSubDomain(String subDomain) { this.subDomain = subDomain; if(subDomain != null){ putQueryParameter("SubDomain", subDomain); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDohSubDomainStatisticsSummaryResponse> getResponseClass() { return DescribeDohSubDomainStatisticsSummaryResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDohSubDomainStatisticsSummaryResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDohSubDomainStatisticsSummaryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDohSubDomainStatisticsSummaryResponse extends AcsResponse { private Integer pageSize; private String requestId; private Integer pageNumber; private Integer totalPages; private Integer totalItems; private List<Statistic> statistics; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalPages() { return this.totalPages; } public void setTotalPages(Integer totalPages) { this.totalPages = totalPages; } public Integer getTotalItems() { return this.totalItems; } public void setTotalItems(Integer totalItems) { this.totalItems = totalItems; } public List<Statistic> getStatistics() { return this.statistics; } public void setStatistics(List<Statistic> statistics) { this.statistics = statistics; } public static class Statistic { private Long v6HttpCount; private Long v4HttpsCount; private Long ipCount; private String subDomain; private Long totalCount; private Long httpCount; private Long httpsCount; private Long v4HttpCount; private Long v6HttpsCount; public Long getV6HttpCount() { return this.v6HttpCount; } public void setV6HttpCount(Long v6HttpCount) { this.v6HttpCount = v6HttpCount; } public Long getV4HttpsCount() { return this.v4HttpsCount; } public void setV4HttpsCount(Long v4HttpsCount) { this.v4HttpsCount = v4HttpsCount; } public Long getIpCount() { return this.ipCount; } public void setIpCount(Long ipCount) { this.ipCount = ipCount; } public String getSubDomain() { return this.subDomain; } public void setSubDomain(String subDomain) { this.subDomain = subDomain; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public Long getHttpCount() { return this.httpCount; } public void setHttpCount(Long httpCount) { this.httpCount = httpCount; } public Long getHttpsCount() { return this.httpsCount; } public void setHttpsCount(Long httpsCount) { this.httpsCount = httpsCount; } public Long getV4HttpCount() { return this.v4HttpCount; } public void setV4HttpCount(Long v4HttpCount) { this.v4HttpCount = v4HttpCount; } public Long getV6HttpsCount() { return this.v6HttpsCount; } public void setV6HttpsCount(Long v6HttpsCount) { this.v6HttpsCount = v6HttpsCount; } } @Override public DescribeDohSubDomainStatisticsSummaryResponse getInstance(UnmarshallerContext context) { return DescribeDohSubDomainStatisticsSummaryResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDohUserInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDohUserInfoRequest extends RpcAcsRequest<DescribeDohUserInfoResponse> { private String startDate; private String endDate; private String lang; public DescribeDohUserInfoRequest() { super("Alidns", "2015-01-09", "DescribeDohUserInfo", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getStartDate() { return this.startDate; } public void setStartDate(String startDate) { this.startDate = startDate; if(startDate != null){ putQueryParameter("StartDate", startDate); } } public String getEndDate() { return this.endDate; } public void setEndDate(String endDate) { this.endDate = endDate; if(endDate != null){ putQueryParameter("EndDate", endDate); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDohUserInfoResponse> getResponseClass() { return DescribeDohUserInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDohUserInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDohUserInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDohUserInfoResponse extends AcsResponse { private String requestId; private Integer subDomainCount; private Long pdnsId; private Integer domainCount; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getSubDomainCount() { return this.subDomainCount; } public void setSubDomainCount(Integer subDomainCount) { this.subDomainCount = subDomainCount; } public Long getPdnsId() { return this.pdnsId; } public void setPdnsId(Long pdnsId) { this.pdnsId = pdnsId; } public Integer getDomainCount() { return this.domainCount; } public void setDomainCount(Integer domainCount) { this.domainCount = domainCount; } @Override public DescribeDohUserInfoResponse getInstance(UnmarshallerContext context) { return DescribeDohUserInfoResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainDnssecInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDomainDnssecInfoRequest extends RpcAcsRequest<DescribeDomainDnssecInfoResponse> { private String domainName; private String lang; public DescribeDomainDnssecInfoRequest() { super("Alidns", "2015-01-09", "DescribeDomainDnssecInfo", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; if(domainName != null){ putQueryParameter("DomainName", domainName); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDomainDnssecInfoResponse> getResponseClass() { return DescribeDomainDnssecInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainDnssecInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDomainDnssecInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDomainDnssecInfoResponse extends AcsResponse { private String status; private String requestId; private String digest; private String domainName; private String publicKey; private String digestType; private String dsRecord; private String keyTag; private String flags; private String algorithm; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getDigest() { return this.digest; } public void setDigest(String digest) { this.digest = digest; } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } public String getPublicKey() { return this.publicKey; } public void setPublicKey(String publicKey) { this.publicKey = publicKey; } public String getDigestType() { return this.digestType; } public void setDigestType(String digestType) { this.digestType = digestType; } public String getDsRecord() { return this.dsRecord; } public void setDsRecord(String dsRecord) { this.dsRecord = dsRecord; } public String getKeyTag() { return this.keyTag; } public void setKeyTag(String keyTag) { this.keyTag = keyTag; } public String getFlags() { return this.flags; } public void setFlags(String flags) { this.flags = flags; } public String getAlgorithm() { return this.algorithm; } public void setAlgorithm(String algorithm) { this.algorithm = algorithm; } @Override public DescribeDomainDnssecInfoResponse getInstance(UnmarshallerContext context) { return DescribeDomainDnssecInfoResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainGroupsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDomainGroupsRequest extends RpcAcsRequest<DescribeDomainGroupsResponse> { private Long pageNumber; private Long pageSize; private String lang; private String keyWord; public DescribeDomainGroupsRequest() { super("Alidns", "2015-01-09", "DescribeDomainGroups", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } public String getKeyWord() { return this.keyWord; } public void setKeyWord(String keyWord) { this.keyWord = keyWord; if(keyWord != null){ putQueryParameter("KeyWord", keyWord); } } @Override public Class<DescribeDomainGroupsResponse> getResponseClass() { return DescribeDomainGroupsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainGroupsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDomainGroupsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDomainGroupsResponse extends AcsResponse { private Long totalCount; private Long pageSize; private String requestId; private Long pageNumber; private List<DomainGroup> domainGroups; public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public List<DomainGroup> getDomainGroups() { return this.domainGroups; } public void setDomainGroups(List<DomainGroup> domainGroups) { this.domainGroups = domainGroups; } public static class DomainGroup { private String groupId; private String groupName; private Long domainCount; public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public Long getDomainCount() { return this.domainCount; } public void setDomainCount(Long domainCount) { this.domainCount = domainCount; } } @Override public DescribeDomainGroupsResponse getInstance(UnmarshallerContext context) { return DescribeDomainGroupsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDomainInfoRequest extends RpcAcsRequest<DescribeDomainInfoResponse> { private String domainName; private String lang; private Boolean needDetailAttributes; public DescribeDomainInfoRequest() { super("Alidns", "2015-01-09", "DescribeDomainInfo", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; if(domainName != null){ putQueryParameter("DomainName", domainName); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } public Boolean getNeedDetailAttributes() { return this.needDetailAttributes; } public void setNeedDetailAttributes(Boolean needDetailAttributes) { this.needDetailAttributes = needDetailAttributes; if(needDetailAttributes != null){ putQueryParameter("NeedDetailAttributes", needDetailAttributes.toString()); } } @Override public Class<DescribeDomainInfoResponse> getResponseClass() { return DescribeDomainInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDomainInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDomainInfoResponse extends AcsResponse { private String recordLineTreeJson; private String groupName; private Boolean inBlackHole; private Boolean regionLines; private Boolean slaveDns; private Boolean aliDomain; private String requestId; private String resourceGroupId; private String instanceId; private String domainName; private String createTime; private String punyCode; private String remark; private String groupId; private String versionCode; private String domainId; private Long minTtl; private Boolean inClean; private String versionName; private String lineType; private List<RecordLine> recordLines; private List<String> dnsServers; private List<String> availableTtls; public String getRecordLineTreeJson() { return this.recordLineTreeJson; } public void setRecordLineTreeJson(String recordLineTreeJson) { this.recordLineTreeJson = recordLineTreeJson; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public Boolean getInBlackHole() { return this.inBlackHole; } public void setInBlackHole(Boolean inBlackHole) { this.inBlackHole = inBlackHole; } public Boolean getRegionLines() { return this.regionLines; } public void setRegionLines(Boolean regionLines) { this.regionLines = regionLines; } public Boolean getSlaveDns() { return this.slaveDns; } public void setSlaveDns(Boolean slaveDns) { this.slaveDns = slaveDns; } public Boolean getAliDomain() { return this.aliDomain; } public void setAliDomain(Boolean aliDomain) { this.aliDomain = aliDomain; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getPunyCode() { return this.punyCode; } public void setPunyCode(String punyCode) { this.punyCode = punyCode; } public String getRemark() { return this.remark; } public void setRemark(String remark) { this.remark = remark; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getVersionCode() { return this.versionCode; } public void setVersionCode(String versionCode) { this.versionCode = versionCode; } public String getDomainId() { return this.domainId; } public void setDomainId(String domainId) { this.domainId = domainId; } public Long getMinTtl() { return this.minTtl; } public void setMinTtl(Long minTtl) { this.minTtl = minTtl; } public Boolean getInClean() { return this.inClean; } public void setInClean(Boolean inClean) { this.inClean = inClean; } public String getVersionName() { return this.versionName; } public void setVersionName(String versionName) { this.versionName = versionName; } public String getLineType() { return this.lineType; } public void setLineType(String lineType) { this.lineType = lineType; } public List<RecordLine> getRecordLines() { return this.recordLines; } public void setRecordLines(List<RecordLine> recordLines) { this.recordLines = recordLines; } public List<String> getDnsServers() { return this.dnsServers; } public void setDnsServers(List<String> dnsServers) { this.dnsServers = dnsServers; } public List<String> getAvailableTtls() { return this.availableTtls; } public void setAvailableTtls(List<String> availableTtls) { this.availableTtls = availableTtls; } public static class RecordLine { private String fatherCode; private String lineDisplayName; private String lineCode; private String lineName; public String getFatherCode() { return this.fatherCode; } public void setFatherCode(String fatherCode) { this.fatherCode = fatherCode; } public String getLineDisplayName() { return this.lineDisplayName; } public void setLineDisplayName(String lineDisplayName) { this.lineDisplayName = lineDisplayName; } public String getLineCode() { return this.lineCode; } public void setLineCode(String lineCode) { this.lineCode = lineCode; } public String getLineName() { return this.lineName; } public void setLineName(String lineName) { this.lineName = lineName; } } @Override public DescribeDomainInfoResponse getInstance(UnmarshallerContext context) { return DescribeDomainInfoResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainLogsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDomainLogsRequest extends RpcAcsRequest<DescribeDomainLogsResponse> { private String groupId; private String startDate; private String type; private Long pageNumber; private String endDate; private Long pageSize; private String lang; private String keyWord; public DescribeDomainLogsRequest() { super("Alidns", "2015-01-09", "DescribeDomainLogs", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId); } } public String getStartDate() { return this.startDate; } public void setStartDate(String startDate) { this.startDate = startDate; if(startDate != null){ putQueryParameter("StartDate", startDate); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public String getEndDate() { return this.endDate; } public void setEndDate(String endDate) { this.endDate = endDate; if(endDate != null){ putQueryParameter("endDate", endDate); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } public String getKeyWord() { return this.keyWord; } public void setKeyWord(String keyWord) { this.keyWord = keyWord; if(keyWord != null){ putQueryParameter("KeyWord", keyWord); } } @Override public Class<DescribeDomainLogsResponse> getResponseClass() { return DescribeDomainLogsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainLogsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDomainLogsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDomainLogsResponse extends AcsResponse { private Long totalCount; private Long pageSize; private String requestId; private Long pageNumber; private List<DomainLog> domainLogs; public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public List<DomainLog> getDomainLogs() { return this.domainLogs; } public void setDomainLogs(List<DomainLog> domainLogs) { this.domainLogs = domainLogs; } public static class DomainLog { private String action; private Long actionTimestamp; private String zoneId; private String clientIp; private String message; private String actionTime; private String domainName; public String getAction() { return this.action; } public void setAction(String action) { this.action = action; } public Long getActionTimestamp() { return this.actionTimestamp; } public void setActionTimestamp(Long actionTimestamp) { this.actionTimestamp = actionTimestamp; } public String getZoneId() { return this.zoneId; } public void setZoneId(String zoneId) { this.zoneId = zoneId; } public String getClientIp() { return this.clientIp; } public void setClientIp(String clientIp) { this.clientIp = clientIp; } public String getMessage() { return this.message; } public void setMessage(String message) { this.message = message; } public String getActionTime() { return this.actionTime; } public void setActionTime(String actionTime) { this.actionTime = actionTime; } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } } @Override public DescribeDomainLogsResponse getInstance(UnmarshallerContext context) { return DescribeDomainLogsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainNsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDomainNsRequest extends RpcAcsRequest<DescribeDomainNsResponse> { private String domainName; private String lang; public DescribeDomainNsRequest() { super("Alidns", "2015-01-09", "DescribeDomainNs", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; if(domainName != null){ putQueryParameter("DomainName", domainName); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDomainNsResponse> getResponseClass() { return DescribeDomainNsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainNsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDomainNsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDomainNsResponse extends AcsResponse { private Boolean allAliDns; private String requestId; private Boolean includeAliDns; private String detectFailedReasonCode; private List<String> expectDnsServers; private List<String> dnsServers; public Boolean getAllAliDns() { return this.allAliDns; } public void setAllAliDns(Boolean allAliDns) { this.allAliDns = allAliDns; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getIncludeAliDns() { return this.includeAliDns; } public void setIncludeAliDns(Boolean includeAliDns) { this.includeAliDns = includeAliDns; } public String getDetectFailedReasonCode() { return this.detectFailedReasonCode; } public void setDetectFailedReasonCode(String detectFailedReasonCode) { this.detectFailedReasonCode = detectFailedReasonCode; } public List<String> getExpectDnsServers() { return this.expectDnsServers; } public void setExpectDnsServers(List<String> expectDnsServers) { this.expectDnsServers = expectDnsServers; } public List<String> getDnsServers() { return this.dnsServers; } public void setDnsServers(List<String> dnsServers) { this.dnsServers = dnsServers; } @Override public DescribeDomainNsResponse getInstance(UnmarshallerContext context) { return DescribeDomainNsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainRecordInfoRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDomainRecordInfoRequest extends RpcAcsRequest<DescribeDomainRecordInfoResponse> { private String recordId; private String userClientIp; private String lang; public DescribeDomainRecordInfoRequest() { super("Alidns", "2015-01-09", "DescribeDomainRecordInfo", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getRecordId() { return this.recordId; } public void setRecordId(String recordId) { this.recordId = recordId; if(recordId != null){ putQueryParameter("RecordId", recordId); } } public String getUserClientIp() { return this.userClientIp; } public void setUserClientIp(String userClientIp) { this.userClientIp = userClientIp; if(userClientIp != null){ putQueryParameter("UserClientIp", userClientIp); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDomainRecordInfoResponse> getResponseClass() { return DescribeDomainRecordInfoResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainRecordInfoResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDomainRecordInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDomainRecordInfoResponse extends AcsResponse { private String status; private String rR; private String groupName; private String requestId; private String domainName; private Long priority; private String punyCode; private Long tTL; private String groupId; private String line; private Boolean locked; private String type; private String domainId; private String value; private String recordId; private String remark; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getRR() { return this.rR; } public void setRR(String rR) { this.rR = rR; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } public Long getPriority() { return this.priority; } public void setPriority(Long priority) { this.priority = priority; } public String getPunyCode() { return this.punyCode; } public void setPunyCode(String punyCode) { this.punyCode = punyCode; } public Long getTTL() { return this.tTL; } public void setTTL(Long tTL) { this.tTL = tTL; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getLine() { return this.line; } public void setLine(String line) { this.line = line; } public Boolean getLocked() { return this.locked; } public void setLocked(Boolean locked) { this.locked = locked; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getDomainId() { return this.domainId; } public void setDomainId(String domainId) { this.domainId = domainId; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getRecordId() { return this.recordId; } public void setRecordId(String recordId) { this.recordId = recordId; } public String getRemark() { return this.remark; } public void setRemark(String remark) { this.remark = remark; } @Override public DescribeDomainRecordInfoResponse getInstance(UnmarshallerContext context) { return DescribeDomainRecordInfoResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainRecordsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDomainRecordsRequest extends RpcAcsRequest<DescribeDomainRecordsResponse> { private String valueKeyWord; private String line; private String type; private Long pageNumber; private Long pageSize; private String lang; private String keyWord; private String rRKeyWord; private String direction; private Long groupId; private String domainName; private String orderBy; private String searchMode; private String typeKeyWord; private String status; public DescribeDomainRecordsRequest() { super("Alidns", "2015-01-09", "DescribeDomainRecords", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getValueKeyWord() { return this.valueKeyWord; } public void setValueKeyWord(String valueKeyWord) { this.valueKeyWord = valueKeyWord; if(valueKeyWord != null){ putQueryParameter("ValueKeyWord", valueKeyWord); } } public String getLine() { return this.line; } public void setLine(String line) { this.line = line; if(line != null){ putQueryParameter("Line", line); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } public String getKeyWord() { return this.keyWord; } public void setKeyWord(String keyWord) { this.keyWord = keyWord; if(keyWord != null){ putQueryParameter("KeyWord", keyWord); } } public String getRRKeyWord() { return this.rRKeyWord; } public void setRRKeyWord(String rRKeyWord) { this.rRKeyWord = rRKeyWord; if(rRKeyWord != null){ putQueryParameter("RRKeyWord", rRKeyWord); } } public String getDirection() { return this.direction; } public void setDirection(String direction) { this.direction = direction; if(direction != null){ putQueryParameter("Direction", direction); } } public Long getGroupId() { return this.groupId; } public void setGroupId(Long groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId.toString()); } } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; if(domainName != null){ putQueryParameter("DomainName", domainName); } } public String getOrderBy() { return this.orderBy; } public void setOrderBy(String orderBy) { this.orderBy = orderBy; if(orderBy != null){ putQueryParameter("OrderBy", orderBy); } } public String getSearchMode() { return this.searchMode; } public void setSearchMode(String searchMode) { this.searchMode = searchMode; if(searchMode != null){ putQueryParameter("SearchMode", searchMode); } } public String getTypeKeyWord() { return this.typeKeyWord; } public void setTypeKeyWord(String typeKeyWord) { this.typeKeyWord = typeKeyWord; if(typeKeyWord != null){ putQueryParameter("TypeKeyWord", typeKeyWord); } } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; if(status != null){ putQueryParameter("Status", status); } } @Override public Class<DescribeDomainRecordsResponse> getResponseClass() { return DescribeDomainRecordsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainRecordsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDomainRecordsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDomainRecordsResponse extends AcsResponse { private Long totalCount; private Long pageSize; private String requestId; private Long pageNumber; private List<Record> domainRecords; public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public List<Record> getDomainRecords() { return this.domainRecords; } public void setDomainRecords(List<Record> domainRecords) { this.domainRecords = domainRecords; } public static class Record { private String status; private String type; private String remark; private Long tTL; private String recordId; private Long priority; private String rR; private String domainName; private Integer weight; private String value; private String line; private Boolean locked; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getRemark() { return this.remark; } public void setRemark(String remark) { this.remark = remark; } public Long getTTL() { return this.tTL; } public void setTTL(Long tTL) { this.tTL = tTL; } public String getRecordId() { return this.recordId; } public void setRecordId(String recordId) { this.recordId = recordId; } public Long getPriority() { return this.priority; } public void setPriority(Long priority) { this.priority = priority; } public String getRR() { return this.rR; } public void setRR(String rR) { this.rR = rR; } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } public Integer getWeight() { return this.weight; } public void setWeight(Integer weight) { this.weight = weight; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getLine() { return this.line; } public void setLine(String line) { this.line = line; } public Boolean getLocked() { return this.locked; } public void setLocked(Boolean locked) { this.locked = locked; } } @Override public DescribeDomainRecordsResponse getInstance(UnmarshallerContext context) { return DescribeDomainRecordsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainResolveStatisticsSummaryRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDomainResolveStatisticsSummaryRequest extends RpcAcsRequest<DescribeDomainResolveStatisticsSummaryResponse> { private Long threshold; private String startDate; private Integer pageNumber; private String endDate; private Integer pageSize; private String searchMode; private String keyword; private String lang; private String direction; public DescribeDomainResolveStatisticsSummaryRequest() { super("Alidns", "2015-01-09", "DescribeDomainResolveStatisticsSummary", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getThreshold() { return this.threshold; } public void setThreshold(Long threshold) { this.threshold = threshold; if(threshold != null){ putQueryParameter("Threshold", threshold.toString()); } } public String getStartDate() { return this.startDate; } public void setStartDate(String startDate) { this.startDate = startDate; if(startDate != null){ putQueryParameter("StartDate", startDate); } } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public String getEndDate() { return this.endDate; } public void setEndDate(String endDate) { this.endDate = endDate; if(endDate != null){ putQueryParameter("EndDate", endDate); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getSearchMode() { return this.searchMode; } public void setSearchMode(String searchMode) { this.searchMode = searchMode; if(searchMode != null){ putQueryParameter("SearchMode", searchMode); } } public String getKeyword() { return this.keyword; } public void setKeyword(String keyword) { this.keyword = keyword; if(keyword != null){ putQueryParameter("Keyword", keyword); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } public String getDirection() { return this.direction; } public void setDirection(String direction) { this.direction = direction; if(direction != null){ putQueryParameter("Direction", direction); } } @Override public Class<DescribeDomainResolveStatisticsSummaryResponse> getResponseClass() { return DescribeDomainResolveStatisticsSummaryResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainResolveStatisticsSummaryResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDomainResolveStatisticsSummaryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDomainResolveStatisticsSummaryResponse extends AcsResponse { private String requestId; private Integer pageSize; private Integer pageNumber; private Integer totalPages; private Integer totalItems; private List<Statistic> statistics; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalPages() { return this.totalPages; } public void setTotalPages(Integer totalPages) { this.totalPages = totalPages; } public Integer getTotalItems() { return this.totalItems; } public void setTotalItems(Integer totalItems) { this.totalItems = totalItems; } public List<Statistic> getStatistics() { return this.statistics; } public void setStatistics(List<Statistic> statistics) { this.statistics = statistics; } public static class Statistic { private String domainName; private String count; private String domainType; public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } public String getCount() { return this.count; } public void setCount(String count) { this.count = count; } public String getDomainType() { return this.domainType; } public void setDomainType(String domainType) { this.domainType = domainType; } } @Override public DescribeDomainResolveStatisticsSummaryResponse getInstance(UnmarshallerContext context) { return DescribeDomainResolveStatisticsSummaryResponseUnmarshaller.unmarshall(this, context); } @Override public boolean checkShowJsonItemName() { return false; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainStatisticsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDomainStatisticsRequest extends RpcAcsRequest<DescribeDomainStatisticsResponse> { private String domainName; private String startDate; private String endDate; private String domainType; private String lang; public DescribeDomainStatisticsRequest() { super("Alidns", "2015-01-09", "DescribeDomainStatistics", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; if(domainName != null){ putQueryParameter("DomainName", domainName); } } public String getStartDate() { return this.startDate; } public void setStartDate(String startDate) { this.startDate = startDate; if(startDate != null){ putQueryParameter("StartDate", startDate); } } public String getEndDate() { return this.endDate; } public void setEndDate(String endDate) { this.endDate = endDate; if(endDate != null){ putQueryParameter("EndDate", endDate); } } public String getDomainType() { return this.domainType; } public void setDomainType(String domainType) { this.domainType = domainType; if(domainType != null){ putQueryParameter("DomainType", domainType); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeDomainStatisticsResponse> getResponseClass() { return DescribeDomainStatisticsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainStatisticsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDomainStatisticsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDomainStatisticsResponse extends AcsResponse { private String requestId; private List<Statistic> statistics; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<Statistic> getStatistics() { return this.statistics; } public void setStatistics(List<Statistic> statistics) { this.statistics = statistics; } public static class Statistic { private Long timestamp; private Long count; public Long getTimestamp() { return this.timestamp; } public void setTimestamp(Long timestamp) { this.timestamp = timestamp; } public Long getCount() { return this.count; } public void setCount(Long count) { this.count = count; } } @Override public DescribeDomainStatisticsResponse getInstance(UnmarshallerContext context) { return DescribeDomainStatisticsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainStatisticsSummaryRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDomainStatisticsSummaryRequest extends RpcAcsRequest<DescribeDomainStatisticsSummaryResponse> { private Long threshold; private String startDate; private Long pageNumber; private Long pageSize; private String lang; private String keyword; private String endDate; private String searchMode; public DescribeDomainStatisticsSummaryRequest() { super("Alidns", "2015-01-09", "DescribeDomainStatisticsSummary", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getThreshold() { return this.threshold; } public void setThreshold(Long threshold) { this.threshold = threshold; if(threshold != null){ putQueryParameter("Threshold", threshold.toString()); } } public String getStartDate() { return this.startDate; } public void setStartDate(String startDate) { this.startDate = startDate; if(startDate != null){ putQueryParameter("StartDate", startDate); } } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } public String getKeyword() { return this.keyword; } public void setKeyword(String keyword) { this.keyword = keyword; if(keyword != null){ putQueryParameter("Keyword", keyword); } } public String getEndDate() { return this.endDate; } public void setEndDate(String endDate) { this.endDate = endDate; if(endDate != null){ putQueryParameter("EndDate", endDate); } } public String getSearchMode() { return this.searchMode; } public void setSearchMode(String searchMode) { this.searchMode = searchMode; if(searchMode != null){ putQueryParameter("SearchMode", searchMode); } } @Override public Class<DescribeDomainStatisticsSummaryResponse> getResponseClass() { return DescribeDomainStatisticsSummaryResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainStatisticsSummaryResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDomainStatisticsSummaryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDomainStatisticsSummaryResponse extends AcsResponse { private Integer pageSize; private String requestId; private Integer pageNumber; private Integer totalPages; private Integer totalItems; private List<Statistic> statistics; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalPages() { return this.totalPages; } public void setTotalPages(Integer totalPages) { this.totalPages = totalPages; } public Integer getTotalItems() { return this.totalItems; } public void setTotalItems(Integer totalItems) { this.totalItems = totalItems; } public List<Statistic> getStatistics() { return this.statistics; } public void setStatistics(List<Statistic> statistics) { this.statistics = statistics; } public static class Statistic { private String domainName; private Long count; private String domainType; public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } public Long getCount() { return this.count; } public void setCount(Long count) { this.count = count; } public String getDomainType() { return this.domainType; } public void setDomainType(String domainType) { this.domainType = domainType; } } @Override public DescribeDomainStatisticsSummaryResponse getInstance(UnmarshallerContext context) { return DescribeDomainStatisticsSummaryResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeDomainsRequest extends RpcAcsRequest<DescribeDomainsResponse> { private Long pageNumber; private String resourceGroupId; private Long pageSize; private String lang; private String keyWord; private Boolean starmark; private String groupId; private String searchMode; public DescribeDomainsRequest() { super("Alidns", "2015-01-09", "DescribeDomains", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } public String getKeyWord() { return this.keyWord; } public void setKeyWord(String keyWord) { this.keyWord = keyWord; if(keyWord != null){ putQueryParameter("KeyWord", keyWord); } } public Boolean getStarmark() { return this.starmark; } public void setStarmark(Boolean starmark) { this.starmark = starmark; if(starmark != null){ putQueryParameter("Starmark", starmark.toString()); } } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; if(groupId != null){ putQueryParameter("GroupId", groupId); } } public String getSearchMode() { return this.searchMode; } public void setSearchMode(String searchMode) { this.searchMode = searchMode; if(searchMode != null){ putQueryParameter("SearchMode", searchMode); } } @Override public Class<DescribeDomainsResponse> getResponseClass() { return DescribeDomainsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeDomainsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeDomainsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeDomainsResponse extends AcsResponse { private Long totalCount; private Long pageSize; private String requestId; private Long pageNumber; private List<Domain> domains; public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public Long getPageSize() { return this.pageSize; } public void setPageSize(Long pageSize) { this.pageSize = pageSize; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; } public List<Domain> getDomains() { return this.domains; } public void setDomains(List<Domain> domains) { this.domains = domains; } public static class Domain { private String remark; private String createTime; private Long recordCount; private String instanceId; private String domainName; private String domainId; private Boolean aliDomain; private String groupId; private String groupName; private String resourceGroupId; private String instanceEndTime; private Boolean instanceExpired; private String versionName; private String versionCode; private String punyCode; private String registrantEmail; private Long createTimestamp; private Boolean starmark; private List<Tag> tags; private List<String> dnsServers; public String getRemark() { return this.remark; } public void setRemark(String remark) { this.remark = remark; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public Long getRecordCount() { return this.recordCount; } public void setRecordCount(Long recordCount) { this.recordCount = recordCount; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } public String getDomainId() { return this.domainId; } public void setDomainId(String domainId) { this.domainId = domainId; } public Boolean getAliDomain() { return this.aliDomain; } public void setAliDomain(Boolean aliDomain) { this.aliDomain = aliDomain; } public String getGroupId() { return this.groupId; } public void setGroupId(String groupId) { this.groupId = groupId; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; } public String getInstanceEndTime() { return this.instanceEndTime; } public void setInstanceEndTime(String instanceEndTime) { this.instanceEndTime = instanceEndTime; } public Boolean getInstanceExpired() { return this.instanceExpired; } public void setInstanceExpired(Boolean instanceExpired) { this.instanceExpired = instanceExpired; } public String getVersionName() { return this.versionName; } public void setVersionName(String versionName) { this.versionName = versionName; } public String getVersionCode() { return this.versionCode; } public void setVersionCode(String versionCode) { this.versionCode = versionCode; } public String getPunyCode() { return this.punyCode; } public void setPunyCode(String punyCode) { this.punyCode = punyCode; } public String getRegistrantEmail() { return this.registrantEmail; } public void setRegistrantEmail(String registrantEmail) { this.registrantEmail = registrantEmail; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } public Boolean getStarmark() { return this.starmark; } public void setStarmark(Boolean starmark) { this.starmark = starmark; } public List<Tag> getTags() { return this.tags; } public void setTags(List<Tag> tags) { this.tags = tags; } public List<String> getDnsServers() { return this.dnsServers; } public void setDnsServers(List<String> dnsServers) { this.dnsServers = dnsServers; } public static class Tag { private String key; private String value; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } } } @Override public DescribeDomainsResponse getInstance(UnmarshallerContext context) { return DescribeDomainsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeGtmAccessStrategiesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeGtmAccessStrategiesRequest extends RpcAcsRequest<DescribeGtmAccessStrategiesResponse> { private Integer pageNumber; private String instanceId; private Integer pageSize; private String lang; public DescribeGtmAccessStrategiesRequest() { super("Alidns", "2015-01-09", "DescribeGtmAccessStrategies", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeGtmAccessStrategiesResponse> getResponseClass() { return DescribeGtmAccessStrategiesResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeGtmAccessStrategiesResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeGtmAccessStrategiesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeGtmAccessStrategiesResponse extends AcsResponse { private Integer pageSize; private String requestId; private Integer pageNumber; private Integer totalPages; private Integer totalItems; private List<Strategy> strategies; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalPages() { return this.totalPages; } public void setTotalPages(Integer totalPages) { this.totalPages = totalPages; } public Integer getTotalItems() { return this.totalItems; } public void setTotalItems(Integer totalItems) { this.totalItems = totalItems; } public List<Strategy> getStrategies() { return this.strategies; } public void setStrategies(List<Strategy> strategies) { this.strategies = strategies; } public static class Strategy { private String accessMode; private String strategyName; private String defaultAddrPoolMonitorStatus; private String strategyMode; private String createTime; private String defaultAddrPoolStatus; private String instanceId; private String failoverAddrPoolId; private String defaultAddrPoolId; private String strategyId; private String failoverAddrPoolStatus; private String accessStatus; private String failoverAddrPoolMonitorStatus; private String defaultAddrPoolName; private String failoverAddrPoolName; private Long createTimestamp; private List<Line> lines; public String getAccessMode() { return this.accessMode; } public void setAccessMode(String accessMode) { this.accessMode = accessMode; } public String getStrategyName() { return this.strategyName; } public void setStrategyName(String strategyName) { this.strategyName = strategyName; } public String getDefaultAddrPoolMonitorStatus() { return this.defaultAddrPoolMonitorStatus; } public void setDefaultAddrPoolMonitorStatus(String defaultAddrPoolMonitorStatus) { this.defaultAddrPoolMonitorStatus = defaultAddrPoolMonitorStatus; } public String getStrategyMode() { return this.strategyMode; } public void setStrategyMode(String strategyMode) { this.strategyMode = strategyMode; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getDefaultAddrPoolStatus() { return this.defaultAddrPoolStatus; } public void setDefaultAddrPoolStatus(String defaultAddrPoolStatus) { this.defaultAddrPoolStatus = defaultAddrPoolStatus; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getFailoverAddrPoolId() { return this.failoverAddrPoolId; } public void setFailoverAddrPoolId(String failoverAddrPoolId) { this.failoverAddrPoolId = failoverAddrPoolId; } public String getDefaultAddrPoolId() { return this.defaultAddrPoolId; } public void setDefaultAddrPoolId(String defaultAddrPoolId) { this.defaultAddrPoolId = defaultAddrPoolId; } public String getStrategyId() { return this.strategyId; } public void setStrategyId(String strategyId) { this.strategyId = strategyId; } public String getFailoverAddrPoolStatus() { return this.failoverAddrPoolStatus; } public void setFailoverAddrPoolStatus(String failoverAddrPoolStatus) { this.failoverAddrPoolStatus = failoverAddrPoolStatus; } public String getAccessStatus() { return this.accessStatus; } public void setAccessStatus(String accessStatus) { this.accessStatus = accessStatus; } public String getFailoverAddrPoolMonitorStatus() { return this.failoverAddrPoolMonitorStatus; } public void setFailoverAddrPoolMonitorStatus(String failoverAddrPoolMonitorStatus) { this.failoverAddrPoolMonitorStatus = failoverAddrPoolMonitorStatus; } public String getDefaultAddrPoolName() { return this.defaultAddrPoolName; } public void setDefaultAddrPoolName(String defaultAddrPoolName) { this.defaultAddrPoolName = defaultAddrPoolName; } public String getFailoverAddrPoolName() { return this.failoverAddrPoolName; } public void setFailoverAddrPoolName(String failoverAddrPoolName) { this.failoverAddrPoolName = failoverAddrPoolName; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } public List<Line> getLines() { return this.lines; } public void setLines(List<Line> lines) { this.lines = lines; } public static class Line { private String groupName; private String lineCode; private String lineName; private String groupCode; public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getLineCode() { return this.lineCode; } public void setLineCode(String lineCode) { this.lineCode = lineCode; } public String getLineName() { return this.lineName; } public void setLineName(String lineName) { this.lineName = lineName; } public String getGroupCode() { return this.groupCode; } public void setGroupCode(String groupCode) { this.groupCode = groupCode; } } } @Override public DescribeGtmAccessStrategiesResponse getInstance(UnmarshallerContext context) { return DescribeGtmAccessStrategiesResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeGtmAccessStrategyAvailableConfigRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeGtmAccessStrategyAvailableConfigRequest extends RpcAcsRequest<DescribeGtmAccessStrategyAvailableConfigResponse> { private String instanceId; private String lang; public DescribeGtmAccessStrategyAvailableConfigRequest() { super("Alidns", "2015-01-09", "DescribeGtmAccessStrategyAvailableConfig", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeGtmAccessStrategyAvailableConfigResponse> getResponseClass() { return DescribeGtmAccessStrategyAvailableConfigResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeGtmAccessStrategyAvailableConfigResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeGtmAccessStrategyAvailableConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeGtmAccessStrategyAvailableConfigResponse extends AcsResponse { private String requestId; private Boolean suggestSetDefaultLine; private List<AddrPool> addrPools; private List<Line> lines; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Boolean getSuggestSetDefaultLine() { return this.suggestSetDefaultLine; } public void setSuggestSetDefaultLine(Boolean suggestSetDefaultLine) { this.suggestSetDefaultLine = suggestSetDefaultLine; } public List<AddrPool> getAddrPools() { return this.addrPools; } public void setAddrPools(List<AddrPool> addrPools) { this.addrPools = addrPools; } public List<Line> getLines() { return this.lines; } public void setLines(List<Line> lines) { this.lines = lines; } public static class AddrPool { private String addrPoolId; private String addrPoolName; public String getAddrPoolId() { return this.addrPoolId; } public void setAddrPoolId(String addrPoolId) { this.addrPoolId = addrPoolId; } public String getAddrPoolName() { return this.addrPoolName; } public void setAddrPoolName(String addrPoolName) { this.addrPoolName = addrPoolName; } } public static class Line { private String status; private String fatherCode; private String lineCode; private String groupName; private String lineName; private String groupCode; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getFatherCode() { return this.fatherCode; } public void setFatherCode(String fatherCode) { this.fatherCode = fatherCode; } public String getLineCode() { return this.lineCode; } public void setLineCode(String lineCode) { this.lineCode = lineCode; } public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getLineName() { return this.lineName; } public void setLineName(String lineName) { this.lineName = lineName; } public String getGroupCode() { return this.groupCode; } public void setGroupCode(String groupCode) { this.groupCode = groupCode; } } @Override public DescribeGtmAccessStrategyAvailableConfigResponse getInstance(UnmarshallerContext context) { return DescribeGtmAccessStrategyAvailableConfigResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeGtmAccessStrategyRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeGtmAccessStrategyRequest extends RpcAcsRequest<DescribeGtmAccessStrategyResponse> { private String strategyId; private String lang; public DescribeGtmAccessStrategyRequest() { super("Alidns", "2015-01-09", "DescribeGtmAccessStrategy", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getStrategyId() { return this.strategyId; } public void setStrategyId(String strategyId) { this.strategyId = strategyId; if(strategyId != null){ putQueryParameter("StrategyId", strategyId); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeGtmAccessStrategyResponse> getResponseClass() { return DescribeGtmAccessStrategyResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeGtmAccessStrategyResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeGtmAccessStrategyResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeGtmAccessStrategyResponse extends AcsResponse { private String requestId; private String instanceId; private String strategyId; private String defaultAddrPoolStatus; private String failoverAddrPoolId; private String accessStatus; private String defaultAddrPoolMonitorStatus; private String defaultAddrPoolName; private String defultAddrPoolId; private String strategyName; private String failoverAddrPoolStatus; private String accessMode; private String strategyMode; private String failoverAddrPoolMonitorStatus; private String failoverAddrPoolName; private List<Line> lines; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getStrategyId() { return this.strategyId; } public void setStrategyId(String strategyId) { this.strategyId = strategyId; } public String getDefaultAddrPoolStatus() { return this.defaultAddrPoolStatus; } public void setDefaultAddrPoolStatus(String defaultAddrPoolStatus) { this.defaultAddrPoolStatus = defaultAddrPoolStatus; } public String getFailoverAddrPoolId() { return this.failoverAddrPoolId; } public void setFailoverAddrPoolId(String failoverAddrPoolId) { this.failoverAddrPoolId = failoverAddrPoolId; } public String getAccessStatus() { return this.accessStatus; } public void setAccessStatus(String accessStatus) { this.accessStatus = accessStatus; } public String getDefaultAddrPoolMonitorStatus() { return this.defaultAddrPoolMonitorStatus; } public void setDefaultAddrPoolMonitorStatus(String defaultAddrPoolMonitorStatus) { this.defaultAddrPoolMonitorStatus = defaultAddrPoolMonitorStatus; } public String getDefaultAddrPoolName() { return this.defaultAddrPoolName; } public void setDefaultAddrPoolName(String defaultAddrPoolName) { this.defaultAddrPoolName = defaultAddrPoolName; } public String getDefultAddrPoolId() { return this.defultAddrPoolId; } public void setDefultAddrPoolId(String defultAddrPoolId) { this.defultAddrPoolId = defultAddrPoolId; } public String getStrategyName() { return this.strategyName; } public void setStrategyName(String strategyName) { this.strategyName = strategyName; } public String getFailoverAddrPoolStatus() { return this.failoverAddrPoolStatus; } public void setFailoverAddrPoolStatus(String failoverAddrPoolStatus) { this.failoverAddrPoolStatus = failoverAddrPoolStatus; } public String getAccessMode() { return this.accessMode; } public void setAccessMode(String accessMode) { this.accessMode = accessMode; } public String getStrategyMode() { return this.strategyMode; } public void setStrategyMode(String strategyMode) { this.strategyMode = strategyMode; } public String getFailoverAddrPoolMonitorStatus() { return this.failoverAddrPoolMonitorStatus; } public void setFailoverAddrPoolMonitorStatus(String failoverAddrPoolMonitorStatus) { this.failoverAddrPoolMonitorStatus = failoverAddrPoolMonitorStatus; } public String getFailoverAddrPoolName() { return this.failoverAddrPoolName; } public void setFailoverAddrPoolName(String failoverAddrPoolName) { this.failoverAddrPoolName = failoverAddrPoolName; } public List<Line> getLines() { return this.lines; } public void setLines(List<Line> lines) { this.lines = lines; } public static class Line { private String groupName; private String lineCode; private String lineName; private String groupCode; public String getGroupName() { return this.groupName; } public void setGroupName(String groupName) { this.groupName = groupName; } public String getLineCode() { return this.lineCode; } public void setLineCode(String lineCode) { this.lineCode = lineCode; } public String getLineName() { return this.lineName; } public void setLineName(String lineName) { this.lineName = lineName; } public String getGroupCode() { return this.groupCode; } public void setGroupCode(String groupCode) { this.groupCode = groupCode; } } @Override public DescribeGtmAccessStrategyResponse getInstance(UnmarshallerContext context) { return DescribeGtmAccessStrategyResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeGtmAvailableAlertGroupRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeGtmAvailableAlertGroupRequest extends RpcAcsRequest<DescribeGtmAvailableAlertGroupResponse> { private String lang; public DescribeGtmAvailableAlertGroupRequest() { super("Alidns", "2015-01-09", "DescribeGtmAvailableAlertGroup", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeGtmAvailableAlertGroupResponse> getResponseClass() { return DescribeGtmAvailableAlertGroupResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeGtmAvailableAlertGroupResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeGtmAvailableAlertGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeGtmAvailableAlertGroupResponse extends AcsResponse { private String requestId; private String availableAlertGroup; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getAvailableAlertGroup() { return this.availableAlertGroup; } public void setAvailableAlertGroup(String availableAlertGroup) { this.availableAlertGroup = availableAlertGroup; } @Override public DescribeGtmAvailableAlertGroupResponse getInstance(UnmarshallerContext context) { return DescribeGtmAvailableAlertGroupResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeGtmInstanceAddressPoolRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeGtmInstanceAddressPoolRequest extends RpcAcsRequest<DescribeGtmInstanceAddressPoolResponse> { private String addrPoolId; private String lang; public DescribeGtmInstanceAddressPoolRequest() { super("Alidns", "2015-01-09", "DescribeGtmInstanceAddressPool", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getAddrPoolId() { return this.addrPoolId; } public void setAddrPoolId(String addrPoolId) { this.addrPoolId = addrPoolId; if(addrPoolId != null){ putQueryParameter("AddrPoolId", addrPoolId); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeGtmInstanceAddressPoolResponse> getResponseClass() { return DescribeGtmInstanceAddressPoolResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeGtmInstanceAddressPoolResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeGtmInstanceAddressPoolResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeGtmInstanceAddressPoolResponse extends AcsResponse { private String status; private String requestId; private String createTime; private Integer addrCount; private String name; private String type; private String updateTime; private String addrPoolId; private Long updateTimestamp; private String monitorConfigId; private Integer minAvailableAddrNum; private String monitorStatus; private Long createTimestamp; private List<Addr> addrs; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public Integer getAddrCount() { return this.addrCount; } public void setAddrCount(Integer addrCount) { this.addrCount = addrCount; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getUpdateTime() { return this.updateTime; } public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } public String getAddrPoolId() { return this.addrPoolId; } public void setAddrPoolId(String addrPoolId) { this.addrPoolId = addrPoolId; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public void setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; } public String getMonitorConfigId() { return this.monitorConfigId; } public void setMonitorConfigId(String monitorConfigId) { this.monitorConfigId = monitorConfigId; } public Integer getMinAvailableAddrNum() { return this.minAvailableAddrNum; } public void setMinAvailableAddrNum(Integer minAvailableAddrNum) { this.minAvailableAddrNum = minAvailableAddrNum; } public String getMonitorStatus() { return this.monitorStatus; } public void setMonitorStatus(String monitorStatus) { this.monitorStatus = monitorStatus; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } public List<Addr> getAddrs() { return this.addrs; } public void setAddrs(List<Addr> addrs) { this.addrs = addrs; } public static class Addr { private String value; private Long updateTimestamp; private String updateTime; private String alertStatus; private Integer lbaWeight; private String createTime; private Long addrId; private String mode; private Long createTimestamp; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public void setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; } public String getUpdateTime() { return this.updateTime; } public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } public String getAlertStatus() { return this.alertStatus; } public void setAlertStatus(String alertStatus) { this.alertStatus = alertStatus; } public Integer getLbaWeight() { return this.lbaWeight; } public void setLbaWeight(Integer lbaWeight) { this.lbaWeight = lbaWeight; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public Long getAddrId() { return this.addrId; } public void setAddrId(Long addrId) { this.addrId = addrId; } public String getMode() { return this.mode; } public void setMode(String mode) { this.mode = mode; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } } @Override public DescribeGtmInstanceAddressPoolResponse getInstance(UnmarshallerContext context) { return DescribeGtmInstanceAddressPoolResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeGtmInstanceAddressPoolsRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeGtmInstanceAddressPoolsRequest extends RpcAcsRequest<DescribeGtmInstanceAddressPoolsResponse> { private Integer pageNumber; private String instanceId; private Integer pageSize; private String lang; public DescribeGtmInstanceAddressPoolsRequest() { super("Alidns", "2015-01-09", "DescribeGtmInstanceAddressPools", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeGtmInstanceAddressPoolsResponse> getResponseClass() { return DescribeGtmInstanceAddressPoolsResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeGtmInstanceAddressPoolsResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import java.util.List; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeGtmInstanceAddressPoolsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeGtmInstanceAddressPoolsResponse extends AcsResponse { private Integer pageSize; private String requestId; private Integer pageNumber; private Integer totalPages; private Integer totalItems; private List<AddrPool> addrPools; public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; } public Integer getTotalPages() { return this.totalPages; } public void setTotalPages(Integer totalPages) { this.totalPages = totalPages; } public Integer getTotalItems() { return this.totalItems; } public void setTotalItems(Integer totalItems) { this.totalItems = totalItems; } public List<AddrPool> getAddrPools() { return this.addrPools; } public void setAddrPools(List<AddrPool> addrPools) { this.addrPools = addrPools; } public static class AddrPool { private String type; private String status; private String updateTime; private String createTime; private String monitorConfigId; private Integer minAvailableAddrNum; private Long updateTimestamp; private String monitorStatus; private String addrPoolId; private String name; private Integer addrCount; private Long createTimestamp; public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getUpdateTime() { return this.updateTime; } public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getMonitorConfigId() { return this.monitorConfigId; } public void setMonitorConfigId(String monitorConfigId) { this.monitorConfigId = monitorConfigId; } public Integer getMinAvailableAddrNum() { return this.minAvailableAddrNum; } public void setMinAvailableAddrNum(Integer minAvailableAddrNum) { this.minAvailableAddrNum = minAvailableAddrNum; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public void setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; } public String getMonitorStatus() { return this.monitorStatus; } public void setMonitorStatus(String monitorStatus) { this.monitorStatus = monitorStatus; } public String getAddrPoolId() { return this.addrPoolId; } public void setAddrPoolId(String addrPoolId) { this.addrPoolId = addrPoolId; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Integer getAddrCount() { return this.addrCount; } public void setAddrCount(Integer addrCount) { this.addrCount = addrCount; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } } @Override public DescribeGtmInstanceAddressPoolsResponse getInstance(UnmarshallerContext context) { return DescribeGtmInstanceAddressPoolsResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeGtmInstanceRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeGtmInstanceRequest extends RpcAcsRequest<DescribeGtmInstanceResponse> { private String instanceId; private String lang; private Boolean needDetailAttributes; public DescribeGtmInstanceRequest() { super("Alidns", "2015-01-09", "DescribeGtmInstance", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } public Boolean getNeedDetailAttributes() { return this.needDetailAttributes; } public void setNeedDetailAttributes(Boolean needDetailAttributes) { this.needDetailAttributes = needDetailAttributes; if(needDetailAttributes != null){ putQueryParameter("NeedDetailAttributes", needDetailAttributes.toString()); } } @Override public Class<DescribeGtmInstanceResponse> getResponseClass() { return DescribeGtmInstanceResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeGtmInstanceResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeGtmInstanceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeGtmInstanceResponse extends AcsResponse { private Long expireTimestamp; private String userDomainName; private String requestId; private String lbaStrategy; private String instanceId; private String createTime; private String cnameMode; private Integer ttl; private String cname; private String instanceName; private String versionCode; private String alertGroup; private Integer addressPoolNum; private Integer accessStrategyNum; private String expireTime; private Long createTimestamp; private String resourceGroupId; public Long getExpireTimestamp() { return this.expireTimestamp; } public void setExpireTimestamp(Long expireTimestamp) { this.expireTimestamp = expireTimestamp; } public String getUserDomainName() { return this.userDomainName; } public void setUserDomainName(String userDomainName) { this.userDomainName = userDomainName; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getLbaStrategy() { return this.lbaStrategy; } public void setLbaStrategy(String lbaStrategy) { this.lbaStrategy = lbaStrategy; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getCnameMode() { return this.cnameMode; } public void setCnameMode(String cnameMode) { this.cnameMode = cnameMode; } public Integer getTtl() { return this.ttl; } public void setTtl(Integer ttl) { this.ttl = ttl; } public String getCname() { return this.cname; } public void setCname(String cname) { this.cname = cname; } public String getInstanceName() { return this.instanceName; } public void setInstanceName(String instanceName) { this.instanceName = instanceName; } public String getVersionCode() { return this.versionCode; } public void setVersionCode(String versionCode) { this.versionCode = versionCode; } public String getAlertGroup() { return this.alertGroup; } public void setAlertGroup(String alertGroup) { this.alertGroup = alertGroup; } public Integer getAddressPoolNum() { return this.addressPoolNum; } public void setAddressPoolNum(Integer addressPoolNum) { this.addressPoolNum = addressPoolNum; } public Integer getAccessStrategyNum() { return this.accessStrategyNum; } public void setAccessStrategyNum(Integer accessStrategyNum) { this.accessStrategyNum = accessStrategyNum; } public String getExpireTime() { return this.expireTime; } public void setExpireTime(String expireTime) { this.expireTime = expireTime; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; } @Override public DescribeGtmInstanceResponse getInstance(UnmarshallerContext context) { return DescribeGtmInstanceResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeGtmInstanceStatusRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeGtmInstanceStatusRequest extends RpcAcsRequest<DescribeGtmInstanceStatusResponse> { private String instanceId; private String lang; public DescribeGtmInstanceStatusRequest() { super("Alidns", "2015-01-09", "DescribeGtmInstanceStatus", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeGtmInstanceStatusResponse> getResponseClass() { return DescribeGtmInstanceStatusResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeGtmInstanceStatusResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeGtmInstanceStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeGtmInstanceStatusResponse extends AcsResponse { private String status; private Integer strategyNotAvailableNum; private String requestId; private Integer switchToFailoverStrategyNum; private String statusReason; private Integer addrNotAvailableNum; private Integer addrPoolNotAvailableNum; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public Integer getStrategyNotAvailableNum() { return this.strategyNotAvailableNum; } public void setStrategyNotAvailableNum(Integer strategyNotAvailableNum) { this.strategyNotAvailableNum = strategyNotAvailableNum; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Integer getSwitchToFailoverStrategyNum() { return this.switchToFailoverStrategyNum; } public void setSwitchToFailoverStrategyNum(Integer switchToFailoverStrategyNum) { this.switchToFailoverStrategyNum = switchToFailoverStrategyNum; } public String getStatusReason() { return this.statusReason; } public void setStatusReason(String statusReason) { this.statusReason = statusReason; } public Integer getAddrNotAvailableNum() { return this.addrNotAvailableNum; } public void setAddrNotAvailableNum(Integer addrNotAvailableNum) { this.addrNotAvailableNum = addrNotAvailableNum; } public Integer getAddrPoolNotAvailableNum() { return this.addrPoolNotAvailableNum; } public void setAddrPoolNotAvailableNum(Integer addrPoolNotAvailableNum) { this.addrPoolNotAvailableNum = addrPoolNotAvailableNum; } @Override public DescribeGtmInstanceStatusResponse getInstance(UnmarshallerContext context) { return DescribeGtmInstanceStatusResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeGtmInstanceSystemCnameRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeGtmInstanceSystemCnameRequest extends RpcAcsRequest<DescribeGtmInstanceSystemCnameResponse> { private String instanceId; private String lang; public DescribeGtmInstanceSystemCnameRequest() { super("Alidns", "2015-01-09", "DescribeGtmInstanceSystemCname", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeGtmInstanceSystemCnameResponse> getResponseClass() { return DescribeGtmInstanceSystemCnameResponse.class; } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeGtmInstanceSystemCnameResponse.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.AcsResponse; import com.aliyuncs.alidns.transform.v20150109.DescribeGtmInstanceSystemCnameResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeGtmInstanceSystemCnameResponse extends AcsResponse { private String systemCname; private String requestId; public String getSystemCname() { return this.systemCname; } public void setSystemCname(String systemCname) { this.systemCname = systemCname; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public DescribeGtmInstanceSystemCnameResponse getInstance(UnmarshallerContext context) { return DescribeGtmInstanceSystemCnameResponseUnmarshaller.unmarshall(this, context); } }
0
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model
java-sources/com/aliyun/aliyun-java-sdk-alidns/3.0.7/com/aliyuncs/alidns/model/v20150109/DescribeGtmInstancesRequest.java
/* * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package com.aliyuncs.alidns.model.v20150109; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class DescribeGtmInstancesRequest extends RpcAcsRequest<DescribeGtmInstancesResponse> { private Integer pageNumber; private String resourceGroupId; private Integer pageSize; private String lang; private String keyword; private Boolean needDetailAttributes; public DescribeGtmInstancesRequest() { super("Alidns", "2015-01-09", "DescribeGtmInstances", "alidns"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); } catch (Exception e) {} } public Integer getPageNumber() { return this.pageNumber; } public void setPageNumber(Integer pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public String getResourceGroupId() { return this.resourceGroupId; } public void setResourceGroupId(String resourceGroupId) { this.resourceGroupId = resourceGroupId; if(resourceGroupId != null){ putQueryParameter("ResourceGroupId", resourceGroupId); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } public String getKeyword() { return this.keyword; } public void setKeyword(String keyword) { this.keyword = keyword; if(keyword != null){ putQueryParameter("Keyword", keyword); } } public Boolean getNeedDetailAttributes() { return this.needDetailAttributes; } public void setNeedDetailAttributes(Boolean needDetailAttributes) { this.needDetailAttributes = needDetailAttributes; if(needDetailAttributes != null){ putQueryParameter("NeedDetailAttributes", needDetailAttributes.toString()); } } @Override public Class<DescribeGtmInstancesResponse> getResponseClass() { return DescribeGtmInstancesResponse.class; } }