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/DescribeGtmInstancesResponse.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.DescribeGtmInstancesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeGtmInstancesResponse 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 expireTime; private Integer accessStrategyNum; private String createTime; private String cnameMode; private String instanceId; private Long expireTimestamp; private Integer ttl; private String alertGroup; private Integer addressPoolNum; private String instanceName; private String lbaStrategy; private String cname; private String versionCode; private String userDomainName; private Long createTimestamp; private String resourceGroupId; public String getExpireTime() { return this.expireTime; } public void setExpireTime(String expireTime) { this.expireTime = expireTime; } public Integer getAccessStrategyNum() { return this.accessStrategyNum; } public void setAccessStrategyNum(Integer accessStrategyNum) { this.accessStrategyNum = accessStrategyNum; } 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 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 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 Integer getAddressPoolNum() { return this.addressPoolNum; } public void setAddressPoolNum(Integer addressPoolNum) { this.addressPoolNum = addressPoolNum; } public String getInstanceName() { return this.instanceName; } public void setInstanceName(String instanceName) { this.instanceName = instanceName; } public String getLbaStrategy() { return this.lbaStrategy; } public void setLbaStrategy(String lbaStrategy) { this.lbaStrategy = lbaStrategy; } public String getCname() { return this.cname; } public void setCname(String cname) { this.cname = cname; } public String getVersionCode() { return this.versionCode; } public void setVersionCode(String versionCode) { this.versionCode = versionCode; } public String getUserDomainName() { return this.userDomainName; } public void setUserDomainName(String userDomainName) { this.userDomainName = userDomainName; } 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 DescribeGtmInstancesResponse getInstance(UnmarshallerContext context) { return DescribeGtmInstancesResponseUnmarshaller.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/DescribeGtmLogsRequest.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 DescribeGtmLogsRequest extends RpcAcsRequest<DescribeGtmLogsResponse> { private Long startTimestamp; private Integer pageNumber; private Long endTimestamp; private String instanceId; private Integer pageSize; private String lang; private String keyword; public DescribeGtmLogsRequest() { super("Alidns", "2015-01-09", "DescribeGtmLogs", "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<DescribeGtmLogsResponse> getResponseClass() { return DescribeGtmLogsResponse.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/DescribeGtmLogsResponse.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.DescribeGtmLogsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeGtmLogsResponse 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 operIp; 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 getOperIp() { return this.operIp; } public void setOperIp(String operIp) { this.operIp = operIp; } 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 DescribeGtmLogsResponse getInstance(UnmarshallerContext context) { return DescribeGtmLogsResponseUnmarshaller.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/DescribeGtmMonitorAvailableConfigRequest.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 DescribeGtmMonitorAvailableConfigRequest extends RpcAcsRequest<DescribeGtmMonitorAvailableConfigResponse> { private String lang; public DescribeGtmMonitorAvailableConfigRequest() { super("Alidns", "2015-01-09", "DescribeGtmMonitorAvailableConfig", "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<DescribeGtmMonitorAvailableConfigResponse> getResponseClass() { return DescribeGtmMonitorAvailableConfigResponse.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/DescribeGtmMonitorAvailableConfigResponse.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.DescribeGtmMonitorAvailableConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeGtmMonitorAvailableConfigResponse extends AcsResponse { private String requestId; private List<IspCityNode> ispCityNodes; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<IspCityNode> getIspCityNodes() { return this.ispCityNodes; } public void setIspCityNodes(List<IspCityNode> ispCityNodes) { this.ispCityNodes = ispCityNodes; } public static class IspCityNode { private String cityCode; private Boolean mainland; private String groupName; private String ispCode; private String cityName; private String ispName; private String groupType; private Boolean defaultSelected; public String getCityCode() { return this.cityCode; } public void setCityCode(String cityCode) { this.cityCode = cityCode; } public Boolean getMainland() { return this.mainland; } public void setMainland(Boolean mainland) { this.mainland = mainland; } 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; } } @Override public DescribeGtmMonitorAvailableConfigResponse getInstance(UnmarshallerContext context) { return DescribeGtmMonitorAvailableConfigResponseUnmarshaller.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/DescribeGtmMonitorConfigRequest.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 DescribeGtmMonitorConfigRequest extends RpcAcsRequest<DescribeGtmMonitorConfigResponse> { private String monitorConfigId; private String lang; public DescribeGtmMonitorConfigRequest() { super("Alidns", "2015-01-09", "DescribeGtmMonitorConfig", "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<DescribeGtmMonitorConfigResponse> getResponseClass() { return DescribeGtmMonitorConfigResponse.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/DescribeGtmMonitorConfigResponse.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.DescribeGtmMonitorConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeGtmMonitorConfigResponse 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 DescribeGtmMonitorConfigResponse getInstance(UnmarshallerContext context) { return DescribeGtmMonitorConfigResponseUnmarshaller.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/DescribeGtmRecoveryPlanAvailableConfigRequest.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 DescribeGtmRecoveryPlanAvailableConfigRequest extends RpcAcsRequest<DescribeGtmRecoveryPlanAvailableConfigResponse> { private String lang; public DescribeGtmRecoveryPlanAvailableConfigRequest() { super("Alidns", "2015-01-09", "DescribeGtmRecoveryPlanAvailableConfig", "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<DescribeGtmRecoveryPlanAvailableConfigResponse> getResponseClass() { return DescribeGtmRecoveryPlanAvailableConfigResponse.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/DescribeGtmRecoveryPlanAvailableConfigResponse.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.DescribeGtmRecoveryPlanAvailableConfigResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeGtmRecoveryPlanAvailableConfigResponse extends AcsResponse { private String requestId; private List<Instance> instances; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<Instance> getInstances() { return this.instances; } public void setInstances(List<Instance> instances) { this.instances = instances; } public static class Instance { private String instanceName; private String instanceId; private List<AddrPool> addrPools; public String getInstanceName() { return this.instanceName; } public void setInstanceName(String instanceName) { this.instanceName = instanceName; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public List<AddrPool> getAddrPools() { return this.addrPools; } public void setAddrPools(List<AddrPool> addrPools) { this.addrPools = addrPools; } public static class AddrPool { private String addrPoolId; private String name; 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; } } } @Override public DescribeGtmRecoveryPlanAvailableConfigResponse getInstance(UnmarshallerContext context) { return DescribeGtmRecoveryPlanAvailableConfigResponseUnmarshaller.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/DescribeGtmRecoveryPlanRequest.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 DescribeGtmRecoveryPlanRequest extends RpcAcsRequest<DescribeGtmRecoveryPlanResponse> { private Long recoveryPlanId; private String lang; public DescribeGtmRecoveryPlanRequest() { super("Alidns", "2015-01-09", "DescribeGtmRecoveryPlan", "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 getRecoveryPlanId() { return this.recoveryPlanId; } public void setRecoveryPlanId(Long recoveryPlanId) { this.recoveryPlanId = recoveryPlanId; if(recoveryPlanId != null){ putQueryParameter("RecoveryPlanId", recoveryPlanId.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribeGtmRecoveryPlanResponse> getResponseClass() { return DescribeGtmRecoveryPlanResponse.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/DescribeGtmRecoveryPlanResponse.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.DescribeGtmRecoveryPlanResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeGtmRecoveryPlanResponse extends AcsResponse { private String status; private String lastRollbackTime; private Integer faultAddrPoolNum; private String lastExecuteTime; private String requestId; private String createTime; private Long lastExecuteTimestamp; private String remark; private String name; private Long recoveryPlanId; private String updateTime; private Long updateTimestamp; private Long lastRollbackTimestamp; private Long createTimestamp; private List<FaultAddrPool> faultAddrPools; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public String getLastRollbackTime() { return this.lastRollbackTime; } public void setLastRollbackTime(String lastRollbackTime) { this.lastRollbackTime = lastRollbackTime; } public Integer getFaultAddrPoolNum() { return this.faultAddrPoolNum; } public void setFaultAddrPoolNum(Integer faultAddrPoolNum) { this.faultAddrPoolNum = faultAddrPoolNum; } public String getLastExecuteTime() { return this.lastExecuteTime; } public void setLastExecuteTime(String lastExecuteTime) { this.lastExecuteTime = lastExecuteTime; } 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 Long getLastExecuteTimestamp() { return this.lastExecuteTimestamp; } public void setLastExecuteTimestamp(Long lastExecuteTimestamp) { this.lastExecuteTimestamp = lastExecuteTimestamp; } public String getRemark() { return this.remark; } public void setRemark(String remark) { this.remark = remark; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Long getRecoveryPlanId() { return this.recoveryPlanId; } public void setRecoveryPlanId(Long recoveryPlanId) { this.recoveryPlanId = recoveryPlanId; } public String getUpdateTime() { return this.updateTime; } public void setUpdateTime(String updateTime) { this.updateTime = updateTime; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public void setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; } public Long getLastRollbackTimestamp() { return this.lastRollbackTimestamp; } public void setLastRollbackTimestamp(Long lastRollbackTimestamp) { this.lastRollbackTimestamp = lastRollbackTimestamp; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } public List<FaultAddrPool> getFaultAddrPools() { return this.faultAddrPools; } public void setFaultAddrPools(List<FaultAddrPool> faultAddrPools) { this.faultAddrPools = faultAddrPools; } public static class FaultAddrPool { private String addrPoolId; private String instanceId; private String addrPoolName; private List<Addr> addrs; public String getAddrPoolId() { return this.addrPoolId; } public void setAddrPoolId(String addrPoolId) { this.addrPoolId = addrPoolId; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getAddrPoolName() { return this.addrPoolName; } public void setAddrPoolName(String addrPoolName) { this.addrPoolName = addrPoolName; } public List<Addr> getAddrs() { return this.addrs; } public void setAddrs(List<Addr> addrs) { this.addrs = addrs; } public static class Addr { private String value; private String mode; private Long id; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getMode() { return this.mode; } public void setMode(String mode) { this.mode = mode; } public Long getId() { return this.id; } public void setId(Long id) { this.id = id; } } } @Override public DescribeGtmRecoveryPlanResponse getInstance(UnmarshallerContext context) { return DescribeGtmRecoveryPlanResponseUnmarshaller.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/DescribeGtmRecoveryPlansRequest.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 DescribeGtmRecoveryPlansRequest extends RpcAcsRequest<DescribeGtmRecoveryPlansResponse> { private Integer pageNumber; private Integer pageSize; private String lang; private String keyword; public DescribeGtmRecoveryPlansRequest() { super("Alidns", "2015-01-09", "DescribeGtmRecoveryPlans", "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 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<DescribeGtmRecoveryPlansResponse> getResponseClass() { return DescribeGtmRecoveryPlansResponse.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/DescribeGtmRecoveryPlansResponse.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.DescribeGtmRecoveryPlansResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeGtmRecoveryPlansResponse extends AcsResponse { private Integer pageSize; private String requestId; private Integer pageNumber; private Integer totalPages; private Integer totalItems; private List<RecoveryPlan> recoveryPlans; 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<RecoveryPlan> getRecoveryPlans() { return this.recoveryPlans; } public void setRecoveryPlans(List<RecoveryPlan> recoveryPlans) { this.recoveryPlans = recoveryPlans; } public static class RecoveryPlan { private String status; private Long lastRollbackTimestamp; private String updateTime; private String remark; private String createTime; private Long recoveryPlanId; private Long updateTimestamp; private Long lastExecuteTimestamp; private String lastExecuteTime; private String lastRollbackTime; private String name; private Integer faultAddrPoolNum; private Long createTimestamp; public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public Long getLastRollbackTimestamp() { return this.lastRollbackTimestamp; } public void setLastRollbackTimestamp(Long lastRollbackTimestamp) { this.lastRollbackTimestamp = lastRollbackTimestamp; } 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 getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public Long getRecoveryPlanId() { return this.recoveryPlanId; } public void setRecoveryPlanId(Long recoveryPlanId) { this.recoveryPlanId = recoveryPlanId; } public Long getUpdateTimestamp() { return this.updateTimestamp; } public void setUpdateTimestamp(Long updateTimestamp) { this.updateTimestamp = updateTimestamp; } public Long getLastExecuteTimestamp() { return this.lastExecuteTimestamp; } public void setLastExecuteTimestamp(Long lastExecuteTimestamp) { this.lastExecuteTimestamp = lastExecuteTimestamp; } public String getLastExecuteTime() { return this.lastExecuteTime; } public void setLastExecuteTime(String lastExecuteTime) { this.lastExecuteTime = lastExecuteTime; } public String getLastRollbackTime() { return this.lastRollbackTime; } public void setLastRollbackTime(String lastRollbackTime) { this.lastRollbackTime = lastRollbackTime; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public Integer getFaultAddrPoolNum() { return this.faultAddrPoolNum; } public void setFaultAddrPoolNum(Integer faultAddrPoolNum) { this.faultAddrPoolNum = faultAddrPoolNum; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } } @Override public DescribeGtmRecoveryPlansResponse getInstance(UnmarshallerContext context) { return DescribeGtmRecoveryPlansResponseUnmarshaller.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/DescribeInstanceDomainsRequest.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 DescribeInstanceDomainsRequest extends RpcAcsRequest<DescribeInstanceDomainsResponse> { private Long pageNumber; private String instanceId; private Long pageSize; private String lang; public DescribeInstanceDomainsRequest() { super("Alidns", "2015-01-09", "DescribeInstanceDomains", "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 getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; if(instanceId != null){ putQueryParameter("InstanceId", instanceId); } } 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<DescribeInstanceDomainsResponse> getResponseClass() { return DescribeInstanceDomainsResponse.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/DescribeInstanceDomainsResponse.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.DescribeInstanceDomainsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeInstanceDomainsResponse extends AcsResponse { private Integer pageSize; private String requestId; private Integer pageNumber; private Integer totalPages; private Integer totalItems; private List<InstanceDomain> instanceDomains; 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<InstanceDomain> getInstanceDomains() { return this.instanceDomains; } public void setInstanceDomains(List<InstanceDomain> instanceDomains) { this.instanceDomains = instanceDomains; } public static class InstanceDomain { private String createTime; private String domainName; private Long createTimestamp; public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } public Long getCreateTimestamp() { return this.createTimestamp; } public void setCreateTimestamp(Long createTimestamp) { this.createTimestamp = createTimestamp; } } @Override public DescribeInstanceDomainsResponse getInstance(UnmarshallerContext context) { return DescribeInstanceDomainsResponseUnmarshaller.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/DescribeIspFlushCacheInstancesRequest.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 DescribeIspFlushCacheInstancesRequest extends RpcAcsRequest<DescribeIspFlushCacheInstancesResponse> { private String isp; private String orderBy; private String type; private Integer pageNumber; private Integer pageSize; private String lang; private String keyword; private String direction; public DescribeIspFlushCacheInstancesRequest() { super("Alidns", "2015-01-09", "DescribeIspFlushCacheInstances", "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 getIsp() { return this.isp; } public void setIsp(String isp) { this.isp = isp; if(isp != null){ putQueryParameter("Isp", isp); } } public String getOrderBy() { return this.orderBy; } public void setOrderBy(String orderBy) { this.orderBy = orderBy; if(orderBy != null){ putQueryParameter("OrderBy", orderBy); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } 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 String getKeyword() { return this.keyword; } public void setKeyword(String keyword) { this.keyword = keyword; if(keyword != null){ putQueryParameter("Keyword", keyword); } } public String getDirection() { return this.direction; } public void setDirection(String direction) { this.direction = direction; if(direction != null){ putQueryParameter("Direction", direction); } } @Override public Class<DescribeIspFlushCacheInstancesResponse> getResponseClass() { return DescribeIspFlushCacheInstancesResponse.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/DescribeIspFlushCacheInstancesResponse.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.DescribeIspFlushCacheInstancesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeIspFlushCacheInstancesResponse extends AcsResponse { private Integer pageSize; private String requestId; private Integer pageNumber; private Integer totalPages; private Integer totalItems; private List<IspFlushCacheInstance> ispFlushCacheInstances; 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<IspFlushCacheInstance> getIspFlushCacheInstances() { return this.ispFlushCacheInstances; } public void setIspFlushCacheInstances(List<IspFlushCacheInstance> ispFlushCacheInstances) { this.ispFlushCacheInstances = ispFlushCacheInstances; } public static class IspFlushCacheInstance { private String isp; private String expireTime; private String instanceId; private Long expireTimestamp; private String instanceName; private String versionCode; private String status; private QuotaInfo quotaInfo; public String getIsp() { return this.isp; } public void setIsp(String isp) { this.isp = isp; } public String getExpireTime() { return this.expireTime; } public void setExpireTime(String expireTime) { this.expireTime = expireTime; } 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 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 getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public QuotaInfo getQuotaInfo() { return this.quotaInfo; } public void setQuotaInfo(QuotaInfo quotaInfo) { this.quotaInfo = quotaInfo; } public static class QuotaInfo { private Integer instanceQuota; private Integer instanceQuotaUsed; public Integer getInstanceQuota() { return this.instanceQuota; } public void setInstanceQuota(Integer instanceQuota) { this.instanceQuota = instanceQuota; } public Integer getInstanceQuotaUsed() { return this.instanceQuotaUsed; } public void setInstanceQuotaUsed(Integer instanceQuotaUsed) { this.instanceQuotaUsed = instanceQuotaUsed; } } } @Override public DescribeIspFlushCacheInstancesResponse getInstance(UnmarshallerContext context) { return DescribeIspFlushCacheInstancesResponseUnmarshaller.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/DescribeIspFlushCacheRemainQuotaRequest.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 DescribeIspFlushCacheRemainQuotaRequest extends RpcAcsRequest<DescribeIspFlushCacheRemainQuotaResponse> { private String lang; public DescribeIspFlushCacheRemainQuotaRequest() { super("Alidns", "2015-01-09", "DescribeIspFlushCacheRemainQuota", "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<DescribeIspFlushCacheRemainQuotaResponse> getResponseClass() { return DescribeIspFlushCacheRemainQuotaResponse.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/DescribeIspFlushCacheRemainQuotaResponse.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.DescribeIspFlushCacheRemainQuotaResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeIspFlushCacheRemainQuotaResponse extends AcsResponse { private Integer telecomRemainQuota; private String requestId; public Integer getTelecomRemainQuota() { return this.telecomRemainQuota; } public void setTelecomRemainQuota(Integer telecomRemainQuota) { this.telecomRemainQuota = telecomRemainQuota; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public DescribeIspFlushCacheRemainQuotaResponse getInstance(UnmarshallerContext context) { return DescribeIspFlushCacheRemainQuotaResponseUnmarshaller.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/DescribeIspFlushCacheTaskRequest.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 DescribeIspFlushCacheTaskRequest extends RpcAcsRequest<DescribeIspFlushCacheTaskResponse> { private String lang; private String taskId; public DescribeIspFlushCacheTaskRequest() { super("Alidns", "2015-01-09", "DescribeIspFlushCacheTask", "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); } } public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; if(taskId != null){ putQueryParameter("TaskId", taskId); } } @Override public Class<DescribeIspFlushCacheTaskResponse> getResponseClass() { return DescribeIspFlushCacheTaskResponse.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/DescribeIspFlushCacheTaskResponse.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.DescribeIspFlushCacheTaskResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeIspFlushCacheTaskResponse extends AcsResponse { private String requestId; private String taskId; private String domainName; private String instanceId; private String instanceName; private String isp; private String taskStatus; private String createTime; private Long createTimestamp; private List<FlushCacheResult> flushCacheResults; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getInstanceName() { return this.instanceName; } public void setInstanceName(String instanceName) { this.instanceName = instanceName; } public String getIsp() { return this.isp; } public void setIsp(String isp) { this.isp = isp; } public String getTaskStatus() { return this.taskStatus; } public void setTaskStatus(String taskStatus) { this.taskStatus = taskStatus; } 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 List<FlushCacheResult> getFlushCacheResults() { return this.flushCacheResults; } public void setFlushCacheResults(List<FlushCacheResult> flushCacheResults) { this.flushCacheResults = flushCacheResults; } public static class FlushCacheResult { private String province; private List<DnsNode> dnsNodes; public String getProvince() { return this.province; } public void setProvince(String province) { this.province = province; } public List<DnsNode> getDnsNodes() { return this.dnsNodes; } public void setDnsNodes(List<DnsNode> dnsNodes) { this.dnsNodes = dnsNodes; } public static class DnsNode { private String nodeIp; private String spName; private String status; private List<Answer> answers; public String getNodeIp() { return this.nodeIp; } public void setNodeIp(String nodeIp) { this.nodeIp = nodeIp; } public String getSpName() { return this.spName; } public void setSpName(String spName) { this.spName = spName; } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; } public List<Answer> getAnswers() { return this.answers; } public void setAnswers(List<Answer> answers) { this.answers = answers; } public static class Answer { private String name; private String type; private String record; private Long ttl; 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 getRecord() { return this.record; } public void setRecord(String record) { this.record = record; } public Long getTtl() { return this.ttl; } public void setTtl(Long ttl) { this.ttl = ttl; } } } } @Override public DescribeIspFlushCacheTaskResponse getInstance(UnmarshallerContext context) { return DescribeIspFlushCacheTaskResponseUnmarshaller.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/DescribeIspFlushCacheTasksRequest.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 DescribeIspFlushCacheTasksRequest extends RpcAcsRequest<DescribeIspFlushCacheTasksResponse> { private String isp; private String domainName; private String orderBy; private Integer pageNumber; private String instanceId; private Integer pageSize; private String lang; private String direction; public DescribeIspFlushCacheTasksRequest() { super("Alidns", "2015-01-09", "DescribeIspFlushCacheTasks", "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 getIsp() { return this.isp; } public void setIsp(String isp) { this.isp = isp; if(isp != null){ putQueryParameter("Isp", isp); } } 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 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); } } public String getDirection() { return this.direction; } public void setDirection(String direction) { this.direction = direction; if(direction != null){ putQueryParameter("Direction", direction); } } @Override public Class<DescribeIspFlushCacheTasksResponse> getResponseClass() { return DescribeIspFlushCacheTasksResponse.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/DescribeIspFlushCacheTasksResponse.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.DescribeIspFlushCacheTasksResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeIspFlushCacheTasksResponse extends AcsResponse { private Integer pageSize; private String requestId; private Integer pageNumber; private Integer totalPages; private Integer totalItems; private List<IspFlushCacheTask> ispFlushCacheTasks; 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<IspFlushCacheTask> getIspFlushCacheTasks() { return this.ispFlushCacheTasks; } public void setIspFlushCacheTasks(List<IspFlushCacheTask> ispFlushCacheTasks) { this.ispFlushCacheTasks = ispFlushCacheTasks; } public static class IspFlushCacheTask { private String taskId; private String domainName; private String instanceId; private String instanceName; private String isp; private String taskStatus; private String createTime; private Long createTimestamp; public String getTaskId() { return this.taskId; } public void setTaskId(String taskId) { this.taskId = taskId; } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getInstanceName() { return this.instanceName; } public void setInstanceName(String instanceName) { this.instanceName = instanceName; } public String getIsp() { return this.isp; } public void setIsp(String isp) { this.isp = isp; } public String getTaskStatus() { return this.taskStatus; } public void setTaskStatus(String taskStatus) { this.taskStatus = taskStatus; } 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; } } @Override public DescribeIspFlushCacheTasksResponse getInstance(UnmarshallerContext context) { return DescribeIspFlushCacheTasksResponseUnmarshaller.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/DescribePdnsAccountSummaryRequest.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 DescribePdnsAccountSummaryRequest extends RpcAcsRequest<DescribePdnsAccountSummaryResponse> { private String startDate; private String endDate; private String lang; public DescribePdnsAccountSummaryRequest() { super("Alidns", "2015-01-09", "DescribePdnsAccountSummary", "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<DescribePdnsAccountSummaryResponse> getResponseClass() { return DescribePdnsAccountSummaryResponse.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/DescribePdnsAccountSummaryResponse.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.DescribePdnsAccountSummaryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribePdnsAccountSummaryResponse extends AcsResponse { private String requestId; private Data data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public Data getData() { return this.data; } public void setData(Data data) { this.data = data; } public static class Data { private Long userId; private Long domainCount; private Long subDomainCount; private Long httpCount; private Long httpsCount; private Long totalCount; private Long threatCount; public Long getUserId() { return this.userId; } public void setUserId(Long userId) { this.userId = userId; } public Long getDomainCount() { return this.domainCount; } public void setDomainCount(Long domainCount) { this.domainCount = domainCount; } public Long getSubDomainCount() { return this.subDomainCount; } public void setSubDomainCount(Long subDomainCount) { this.subDomainCount = subDomainCount; } 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 getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public Long getThreatCount() { return this.threatCount; } public void setThreatCount(Long threatCount) { this.threatCount = threatCount; } } @Override public DescribePdnsAccountSummaryResponse getInstance(UnmarshallerContext context) { return DescribePdnsAccountSummaryResponseUnmarshaller.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/DescribePdnsAppKeyRequest.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 DescribePdnsAppKeyRequest extends RpcAcsRequest<DescribePdnsAppKeyResponse> { private String appKeyId; private String lang; public DescribePdnsAppKeyRequest() { super("Alidns", "2015-01-09", "DescribePdnsAppKey", "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 getAppKeyId() { return this.appKeyId; } public void setAppKeyId(String appKeyId) { this.appKeyId = appKeyId; if(appKeyId != null){ putQueryParameter("AppKeyId", appKeyId); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<DescribePdnsAppKeyResponse> getResponseClass() { return DescribePdnsAppKeyResponse.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/DescribePdnsAppKeyResponse.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.DescribePdnsAppKeyResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribePdnsAppKeyResponse extends AcsResponse { private String requestId; private AppKey appKey; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public AppKey getAppKey() { return this.appKey; } public void setAppKey(AppKey appKey) { this.appKey = appKey; } public static class AppKey { private String appKeyId; private String appKeySecret; private String state; private String createDate; public String getAppKeyId() { return this.appKeyId; } public void setAppKeyId(String appKeyId) { this.appKeyId = appKeyId; } public String getAppKeySecret() { return this.appKeySecret; } public void setAppKeySecret(String appKeySecret) { this.appKeySecret = appKeySecret; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getCreateDate() { return this.createDate; } public void setCreateDate(String createDate) { this.createDate = createDate; } } @Override public DescribePdnsAppKeyResponse getInstance(UnmarshallerContext context) { return DescribePdnsAppKeyResponseUnmarshaller.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/DescribePdnsAppKeysRequest.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 DescribePdnsAppKeysRequest extends RpcAcsRequest<DescribePdnsAppKeysResponse> { private String lang; public DescribePdnsAppKeysRequest() { super("Alidns", "2015-01-09", "DescribePdnsAppKeys", "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<DescribePdnsAppKeysResponse> getResponseClass() { return DescribePdnsAppKeysResponse.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/DescribePdnsAppKeysResponse.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.DescribePdnsAppKeysResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribePdnsAppKeysResponse extends AcsResponse { private String requestId; private List<AppKey> appKeys; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<AppKey> getAppKeys() { return this.appKeys; } public void setAppKeys(List<AppKey> appKeys) { this.appKeys = appKeys; } public static class AppKey { private String appKeyId; private String createDate; private String state; public String getAppKeyId() { return this.appKeyId; } public void setAppKeyId(String appKeyId) { this.appKeyId = appKeyId; } public String getCreateDate() { return this.createDate; } public void setCreateDate(String createDate) { this.createDate = createDate; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } } @Override public DescribePdnsAppKeysResponse getInstance(UnmarshallerContext context) { return DescribePdnsAppKeysResponseUnmarshaller.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/DescribePdnsOperateLogsRequest.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 DescribePdnsOperateLogsRequest extends RpcAcsRequest<DescribePdnsOperateLogsResponse> { private String actionType; private String startDate; private Long pageNumber; private String endDate; private Long pageSize; private String lang; private String keyword; public DescribePdnsOperateLogsRequest() { super("Alidns", "2015-01-09", "DescribePdnsOperateLogs", "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 getActionType() { return this.actionType; } public void setActionType(String actionType) { this.actionType = actionType; if(actionType != null){ putQueryParameter("ActionType", actionType); } } 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 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<DescribePdnsOperateLogsResponse> getResponseClass() { return DescribePdnsOperateLogsResponse.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/DescribePdnsOperateLogsResponse.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.DescribePdnsOperateLogsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribePdnsOperateLogsResponse extends AcsResponse { private Long totalCount; private Long pageSize; private String requestId; private Long pageNumber; private List<Log> logs; 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<Log> getLogs() { return this.logs; } public void setLogs(List<Log> logs) { this.logs = logs; } public static class Log { private String operateTime; private String type; private String action; private String content; public String getOperateTime() { return this.operateTime; } public void setOperateTime(String operateTime) { this.operateTime = operateTime; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public String getAction() { return this.action; } public void setAction(String action) { this.action = action; } public String getContent() { return this.content; } public void setContent(String content) { this.content = content; } } @Override public DescribePdnsOperateLogsResponse getInstance(UnmarshallerContext context) { return DescribePdnsOperateLogsResponseUnmarshaller.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/DescribePdnsRequestStatisticRequest.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 DescribePdnsRequestStatisticRequest extends RpcAcsRequest<DescribePdnsRequestStatisticResponse> { private String domainName; private String startDate; private String endDate; private String subDomain; private String lang; public DescribePdnsRequestStatisticRequest() { super("Alidns", "2015-01-09", "DescribePdnsRequestStatistic", "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 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<DescribePdnsRequestStatisticResponse> getResponseClass() { return DescribePdnsRequestStatisticResponse.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/DescribePdnsRequestStatisticResponse.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.DescribePdnsRequestStatisticResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribePdnsRequestStatisticResponse extends AcsResponse { private String requestId; private List<StatisticItem> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<StatisticItem> getData() { return this.data; } public void setData(List<StatisticItem> data) { this.data = data; } public static class StatisticItem { private Long v6HttpCount; private Long v6HttpsCount; private Long timestamp; private Long totalCount; private Long v4HttpCount; private Long v4HttpsCount; private Long v4Count; private Long v6Count; private Long httpCount; private Long httpsCount; private Long dohTotalCount; private Long udpTotalCount; private Long ipCount; public Long getV6HttpCount() { return this.v6HttpCount; } public void setV6HttpCount(Long v6HttpCount) { this.v6HttpCount = v6HttpCount; } public Long getV6HttpsCount() { return this.v6HttpsCount; } public void setV6HttpsCount(Long v6HttpsCount) { this.v6HttpsCount = v6HttpsCount; } 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 getV4HttpsCount() { return this.v4HttpsCount; } public void setV4HttpsCount(Long v4HttpsCount) { this.v4HttpsCount = v4HttpsCount; } public Long getV4Count() { return this.v4Count; } public void setV4Count(Long v4Count) { this.v4Count = v4Count; } public Long getV6Count() { return this.v6Count; } public void setV6Count(Long v6Count) { this.v6Count = v6Count; } 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 getDohTotalCount() { return this.dohTotalCount; } public void setDohTotalCount(Long dohTotalCount) { this.dohTotalCount = dohTotalCount; } public Long getUdpTotalCount() { return this.udpTotalCount; } public void setUdpTotalCount(Long udpTotalCount) { this.udpTotalCount = udpTotalCount; } public Long getIpCount() { return this.ipCount; } public void setIpCount(Long ipCount) { this.ipCount = ipCount; } } @Override public DescribePdnsRequestStatisticResponse getInstance(UnmarshallerContext context) { return DescribePdnsRequestStatisticResponseUnmarshaller.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/DescribePdnsRequestStatisticsRequest.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 DescribePdnsRequestStatisticsRequest extends RpcAcsRequest<DescribePdnsRequestStatisticsResponse> { private String domainName; private String type; private String startDate; private Long pageNumber; private String endDate; private Long pageSize; private String subDomain; private String lang; public DescribePdnsRequestStatisticsRequest() { super("Alidns", "2015-01-09", "DescribePdnsRequestStatistics", "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 getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } 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 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 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<DescribePdnsRequestStatisticsResponse> getResponseClass() { return DescribePdnsRequestStatisticsResponse.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/DescribePdnsRequestStatisticsResponse.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.DescribePdnsRequestStatisticsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribePdnsRequestStatisticsResponse extends AcsResponse { private Long totalCount; private Long pageSize; private String requestId; private Long pageNumber; private List<StatisticItem> data; 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<StatisticItem> getData() { return this.data; } public void setData(List<StatisticItem> data) { this.data = data; } public static class StatisticItem { private String domainName; private String subDomain; private Long v6HttpCount; private Long v6HttpsCount; private Long totalCount; private Long v4HttpCount; private Long v4HttpsCount; private Long v4Count; private Long v6Count; private Long httpCount; private Long httpsCount; private Long dohTotalCount; private Long udpTotalCount; private Long ipCount; private Long threatCount; private String maxThreatLevel; private List<ThreatItem> threatInfo; public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } public String getSubDomain() { return this.subDomain; } public void setSubDomain(String subDomain) { this.subDomain = subDomain; } public Long getV6HttpCount() { return this.v6HttpCount; } public void setV6HttpCount(Long v6HttpCount) { this.v6HttpCount = v6HttpCount; } public Long getV6HttpsCount() { return this.v6HttpsCount; } public void setV6HttpsCount(Long v6HttpsCount) { this.v6HttpsCount = v6HttpsCount; } 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 getV4HttpsCount() { return this.v4HttpsCount; } public void setV4HttpsCount(Long v4HttpsCount) { this.v4HttpsCount = v4HttpsCount; } public Long getV4Count() { return this.v4Count; } public void setV4Count(Long v4Count) { this.v4Count = v4Count; } public Long getV6Count() { return this.v6Count; } public void setV6Count(Long v6Count) { this.v6Count = v6Count; } 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 getDohTotalCount() { return this.dohTotalCount; } public void setDohTotalCount(Long dohTotalCount) { this.dohTotalCount = dohTotalCount; } public Long getUdpTotalCount() { return this.udpTotalCount; } public void setUdpTotalCount(Long udpTotalCount) { this.udpTotalCount = udpTotalCount; } public Long getIpCount() { return this.ipCount; } public void setIpCount(Long ipCount) { this.ipCount = ipCount; } public Long getThreatCount() { return this.threatCount; } public void setThreatCount(Long threatCount) { this.threatCount = threatCount; } public String getMaxThreatLevel() { return this.maxThreatLevel; } public void setMaxThreatLevel(String maxThreatLevel) { this.maxThreatLevel = maxThreatLevel; } public List<ThreatItem> getThreatInfo() { return this.threatInfo; } public void setThreatInfo(List<ThreatItem> threatInfo) { this.threatInfo = threatInfo; } public static class ThreatItem { private String threatType; private String threatLevel; public String getThreatType() { return this.threatType; } public void setThreatType(String threatType) { this.threatType = threatType; } public String getThreatLevel() { return this.threatLevel; } public void setThreatLevel(String threatLevel) { this.threatLevel = threatLevel; } } } @Override public DescribePdnsRequestStatisticsResponse getInstance(UnmarshallerContext context) { return DescribePdnsRequestStatisticsResponseUnmarshaller.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/DescribePdnsThreatLogsRequest.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 DescribePdnsThreatLogsRequest extends RpcAcsRequest<DescribePdnsThreatLogsResponse> { private String threatSourceIp; private String startDate; private Long pageNumber; private String endDate; private Long pageSize; private String threatType; private String lang; private String keyword; private String threatLevel; public DescribePdnsThreatLogsRequest() { super("Alidns", "2015-01-09", "DescribePdnsThreatLogs", "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 getThreatSourceIp() { return this.threatSourceIp; } public void setThreatSourceIp(String threatSourceIp) { this.threatSourceIp = threatSourceIp; if(threatSourceIp != null){ putQueryParameter("ThreatSourceIp", threatSourceIp); } } 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 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 getThreatType() { return this.threatType; } public void setThreatType(String threatType) { this.threatType = threatType; if(threatType != null){ putQueryParameter("ThreatType", threatType); } } 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 getThreatLevel() { return this.threatLevel; } public void setThreatLevel(String threatLevel) { this.threatLevel = threatLevel; if(threatLevel != null){ putQueryParameter("ThreatLevel", threatLevel); } } @Override public Class<DescribePdnsThreatLogsResponse> getResponseClass() { return DescribePdnsThreatLogsResponse.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/DescribePdnsThreatLogsResponse.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.DescribePdnsThreatLogsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribePdnsThreatLogsResponse extends AcsResponse { private Long totalCount; private Long pageSize; private String requestId; private Long pageNumber; private List<Log> logs; 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<Log> getLogs() { return this.logs; } public void setLogs(List<Log> logs) { this.logs = logs; } public static class Log { private String threatTime; private String threatType; private String threatLevel; private String sourceIp; private String subDomain; public String getThreatTime() { return this.threatTime; } public void setThreatTime(String threatTime) { this.threatTime = threatTime; } public String getThreatType() { return this.threatType; } public void setThreatType(String threatType) { this.threatType = threatType; } public String getThreatLevel() { return this.threatLevel; } public void setThreatLevel(String threatLevel) { this.threatLevel = threatLevel; } public String getSourceIp() { return this.sourceIp; } public void setSourceIp(String sourceIp) { this.sourceIp = sourceIp; } public String getSubDomain() { return this.subDomain; } public void setSubDomain(String subDomain) { this.subDomain = subDomain; } } @Override public DescribePdnsThreatLogsResponse getInstance(UnmarshallerContext context) { return DescribePdnsThreatLogsResponseUnmarshaller.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/DescribePdnsThreatStatisticRequest.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 DescribePdnsThreatStatisticRequest extends RpcAcsRequest<DescribePdnsThreatStatisticResponse> { private String threatSourceIp; private String startDate; private String endDate; private String lang; public DescribePdnsThreatStatisticRequest() { super("Alidns", "2015-01-09", "DescribePdnsThreatStatistic", "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 getThreatSourceIp() { return this.threatSourceIp; } public void setThreatSourceIp(String threatSourceIp) { this.threatSourceIp = threatSourceIp; if(threatSourceIp != null){ putQueryParameter("ThreatSourceIp", threatSourceIp); } } 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<DescribePdnsThreatStatisticResponse> getResponseClass() { return DescribePdnsThreatStatisticResponse.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/DescribePdnsThreatStatisticResponse.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.DescribePdnsThreatStatisticResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribePdnsThreatStatisticResponse extends AcsResponse { private String requestId; private List<StatisticItem> data; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<StatisticItem> getData() { return this.data; } public void setData(List<StatisticItem> data) { this.data = data; } public static class StatisticItem { private Long totalCount; private Long timestamp; private String threatType; private String threatLevel; private Long dohTotalCount; private Long udpTotalCount; public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public Long getTimestamp() { return this.timestamp; } public void setTimestamp(Long timestamp) { this.timestamp = timestamp; } public String getThreatType() { return this.threatType; } public void setThreatType(String threatType) { this.threatType = threatType; } public String getThreatLevel() { return this.threatLevel; } public void setThreatLevel(String threatLevel) { this.threatLevel = threatLevel; } public Long getDohTotalCount() { return this.dohTotalCount; } public void setDohTotalCount(Long dohTotalCount) { this.dohTotalCount = dohTotalCount; } public Long getUdpTotalCount() { return this.udpTotalCount; } public void setUdpTotalCount(Long udpTotalCount) { this.udpTotalCount = udpTotalCount; } } @Override public DescribePdnsThreatStatisticResponse getInstance(UnmarshallerContext context) { return DescribePdnsThreatStatisticResponseUnmarshaller.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/DescribePdnsThreatStatisticsRequest.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 DescribePdnsThreatStatisticsRequest extends RpcAcsRequest<DescribePdnsThreatStatisticsResponse> { private String type; private String startDate; private Long pageNumber; private Long pageSize; private String threatType; private String lang; private String direction; private String threatSourceIp; private String domainName; private String orderBy; private String endDate; private String subDomain; private String threatLevel; public DescribePdnsThreatStatisticsRequest() { super("Alidns", "2015-01-09", "DescribePdnsThreatStatistics", "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 getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } 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 getThreatType() { return this.threatType; } public void setThreatType(String threatType) { this.threatType = threatType; if(threatType != null){ putQueryParameter("ThreatType", threatType); } } 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); } } public String getThreatSourceIp() { return this.threatSourceIp; } public void setThreatSourceIp(String threatSourceIp) { this.threatSourceIp = threatSourceIp; if(threatSourceIp != null){ putQueryParameter("ThreatSourceIp", threatSourceIp); } } 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 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 getThreatLevel() { return this.threatLevel; } public void setThreatLevel(String threatLevel) { this.threatLevel = threatLevel; if(threatLevel != null){ putQueryParameter("ThreatLevel", threatLevel); } } @Override public Class<DescribePdnsThreatStatisticsResponse> getResponseClass() { return DescribePdnsThreatStatisticsResponse.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/DescribePdnsThreatStatisticsResponse.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.DescribePdnsThreatStatisticsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribePdnsThreatStatisticsResponse extends AcsResponse { private Long totalCount; private Long pageSize; private String requestId; private Long pageNumber; private List<StatisticItem> data; 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<StatisticItem> getData() { return this.data; } public void setData(List<StatisticItem> data) { this.data = data; } public static class StatisticItem { private String domainName; private String subDomain; private Long latestThreatTime; private Long totalCount; private Long dohTotalCount; private Long udpTotalCount; private String maxThreatLevel; private Long domainCount; private String sourceIp; private String threatType; private String threatLevel; public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } public String getSubDomain() { return this.subDomain; } public void setSubDomain(String subDomain) { this.subDomain = subDomain; } public Long getLatestThreatTime() { return this.latestThreatTime; } public void setLatestThreatTime(Long latestThreatTime) { this.latestThreatTime = latestThreatTime; } public Long getTotalCount() { return this.totalCount; } public void setTotalCount(Long totalCount) { this.totalCount = totalCount; } public Long getDohTotalCount() { return this.dohTotalCount; } public void setDohTotalCount(Long dohTotalCount) { this.dohTotalCount = dohTotalCount; } public Long getUdpTotalCount() { return this.udpTotalCount; } public void setUdpTotalCount(Long udpTotalCount) { this.udpTotalCount = udpTotalCount; } public String getMaxThreatLevel() { return this.maxThreatLevel; } public void setMaxThreatLevel(String maxThreatLevel) { this.maxThreatLevel = maxThreatLevel; } public Long getDomainCount() { return this.domainCount; } public void setDomainCount(Long domainCount) { this.domainCount = domainCount; } public String getSourceIp() { return this.sourceIp; } public void setSourceIp(String sourceIp) { this.sourceIp = sourceIp; } public String getThreatType() { return this.threatType; } public void setThreatType(String threatType) { this.threatType = threatType; } public String getThreatLevel() { return this.threatLevel; } public void setThreatLevel(String threatLevel) { this.threatLevel = threatLevel; } } @Override public DescribePdnsThreatStatisticsResponse getInstance(UnmarshallerContext context) { return DescribePdnsThreatStatisticsResponseUnmarshaller.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/DescribePdnsUdpIpSegmentsRequest.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 DescribePdnsUdpIpSegmentsRequest extends RpcAcsRequest<DescribePdnsUdpIpSegmentsResponse> { private Long pageNumber; private Long pageSize; private String lang; public DescribePdnsUdpIpSegmentsRequest() { super("Alidns", "2015-01-09", "DescribePdnsUdpIpSegments", "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); } } @Override public Class<DescribePdnsUdpIpSegmentsResponse> getResponseClass() { return DescribePdnsUdpIpSegmentsResponse.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/DescribePdnsUdpIpSegmentsResponse.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.DescribePdnsUdpIpSegmentsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribePdnsUdpIpSegmentsResponse extends AcsResponse { private Long totalCount; private Long pageSize; private String requestId; private Long pageNumber; private List<IpSegment> ipSegments; 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<IpSegment> getIpSegments() { return this.ipSegments; } public void setIpSegments(List<IpSegment> ipSegments) { this.ipSegments = ipSegments; } public static class IpSegment { private String name; private String ip; private Long mask; private String state; private String createDate; private String updateDate; public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getIp() { return this.ip; } public void setIp(String ip) { this.ip = ip; } public Long getMask() { return this.mask; } public void setMask(Long mask) { this.mask = mask; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getCreateDate() { return this.createDate; } public void setCreateDate(String createDate) { this.createDate = createDate; } public String getUpdateDate() { return this.updateDate; } public void setUpdateDate(String updateDate) { this.updateDate = updateDate; } } @Override public DescribePdnsUdpIpSegmentsResponse getInstance(UnmarshallerContext context) { return DescribePdnsUdpIpSegmentsResponseUnmarshaller.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/DescribePdnsUserInfoRequest.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 DescribePdnsUserInfoRequest extends RpcAcsRequest<DescribePdnsUserInfoResponse> { private String lang; public DescribePdnsUserInfoRequest() { super("Alidns", "2015-01-09", "DescribePdnsUserInfo", "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<DescribePdnsUserInfoResponse> getResponseClass() { return DescribePdnsUserInfoResponse.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/DescribePdnsUserInfoResponse.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.DescribePdnsUserInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribePdnsUserInfoResponse extends AcsResponse { private String requestId; private UserInfo userInfo; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public UserInfo getUserInfo() { return this.userInfo; } public void setUserInfo(UserInfo userInfo) { this.userInfo = userInfo; } public static class UserInfo { private Long pdnsId; private String state; private String serviceType; private String stoppedService; private String availableService; public Long getPdnsId() { return this.pdnsId; } public void setPdnsId(Long pdnsId) { this.pdnsId = pdnsId; } public String getState() { return this.state; } public void setState(String state) { this.state = state; } public String getServiceType() { return this.serviceType; } public void setServiceType(String serviceType) { this.serviceType = serviceType; } public String getStoppedService() { return this.stoppedService; } public void setStoppedService(String stoppedService) { this.stoppedService = stoppedService; } public String getAvailableService() { return this.availableService; } public void setAvailableService(String availableService) { this.availableService = availableService; } } @Override public DescribePdnsUserInfoResponse getInstance(UnmarshallerContext context) { return DescribePdnsUserInfoResponseUnmarshaller.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/DescribeRecordLogsRequest.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 DescribeRecordLogsRequest extends RpcAcsRequest<DescribeRecordLogsResponse> { private String domainName; private String startDate; private Long pageNumber; private String endDate; private String userClientIp; private Long pageSize; private String lang; private String keyWord; public DescribeRecordLogsRequest() { super("Alidns", "2015-01-09", "DescribeRecordLogs", "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 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 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 getKeyWord() { return this.keyWord; } public void setKeyWord(String keyWord) { this.keyWord = keyWord; if(keyWord != null){ putQueryParameter("KeyWord", keyWord); } } @Override public Class<DescribeRecordLogsResponse> getResponseClass() { return DescribeRecordLogsResponse.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/DescribeRecordLogsResponse.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.DescribeRecordLogsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeRecordLogsResponse extends AcsResponse { private Long totalCount; private Long pageSize; private String requestId; private Long pageNumber; private List<RecordLog> recordLogs; 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<RecordLog> getRecordLogs() { return this.recordLogs; } public void setRecordLogs(List<RecordLog> recordLogs) { this.recordLogs = recordLogs; } public static class RecordLog { private String action; private Long actionTimestamp; private String clientIp; private String message; private String actionTime; 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 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; } } @Override public DescribeRecordLogsResponse getInstance(UnmarshallerContext context) { return DescribeRecordLogsResponseUnmarshaller.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/DescribeRecordResolveStatisticsSummaryRequest.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 DescribeRecordResolveStatisticsSummaryRequest extends RpcAcsRequest<DescribeRecordResolveStatisticsSummaryResponse> { private Long threshold; private String startDate; private Integer pageNumber; private String domainType; private Integer pageSize; private String keyword; private String lang; private String direction; private String domainName; private String endDate; private String searchMode; public DescribeRecordResolveStatisticsSummaryRequest() { super("Alidns", "2015-01-09", "DescribeRecordResolveStatisticsSummary", "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 getDomainType() { return this.domainType; } public void setDomainType(String domainType) { this.domainType = domainType; if(domainType != null){ putQueryParameter("DomainType", domainType); } } public Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } 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); } } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; if(domainName != null){ putQueryParameter("DomainName", domainName); } } 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<DescribeRecordResolveStatisticsSummaryResponse> getResponseClass() { return DescribeRecordResolveStatisticsSummaryResponse.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/DescribeRecordResolveStatisticsSummaryResponse.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.DescribeRecordResolveStatisticsSummaryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeRecordResolveStatisticsSummaryResponse 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 subDomain; private String domainName; private String count; private String domainType; public String getSubDomain() { return this.subDomain; } public void setSubDomain(String subDomain) { this.subDomain = subDomain; } 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 DescribeRecordResolveStatisticsSummaryResponse getInstance(UnmarshallerContext context) { return DescribeRecordResolveStatisticsSummaryResponseUnmarshaller.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/DescribeRecordStatisticsRequest.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 DescribeRecordStatisticsRequest extends RpcAcsRequest<DescribeRecordStatisticsResponse> { private String rr; private String domainName; private String startDate; private String endDate; private String domainType; private String lang; public DescribeRecordStatisticsRequest() { super("Alidns", "2015-01-09", "DescribeRecordStatistics", "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 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<DescribeRecordStatisticsResponse> getResponseClass() { return DescribeRecordStatisticsResponse.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/DescribeRecordStatisticsResponse.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.DescribeRecordStatisticsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeRecordStatisticsResponse 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 DescribeRecordStatisticsResponse getInstance(UnmarshallerContext context) { return DescribeRecordStatisticsResponseUnmarshaller.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/DescribeRecordStatisticsSummaryRequest.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 DescribeRecordStatisticsSummaryRequest extends RpcAcsRequest<DescribeRecordStatisticsSummaryResponse> { private Long threshold; private String startDate; private Long pageNumber; private String domainType; private Long pageSize; private String lang; private String keyword; private String domainName; private String endDate; private String searchMode; public DescribeRecordStatisticsSummaryRequest() { super("Alidns", "2015-01-09", "DescribeRecordStatisticsSummary", "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 String getDomainType() { return this.domainType; } public void setDomainType(String domainType) { this.domainType = domainType; if(domainType != null){ putQueryParameter("DomainType", domainType); } } 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 getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; if(domainName != null){ putQueryParameter("DomainName", domainName); } } 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<DescribeRecordStatisticsSummaryResponse> getResponseClass() { return DescribeRecordStatisticsSummaryResponse.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/DescribeRecordStatisticsSummaryResponse.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.DescribeRecordStatisticsSummaryResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeRecordStatisticsSummaryResponse 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 subDomain; private Long count; public String getSubDomain() { return this.subDomain; } public void setSubDomain(String subDomain) { this.subDomain = subDomain; } public Long getCount() { return this.count; } public void setCount(Long count) { this.count = count; } } @Override public DescribeRecordStatisticsSummaryResponse getInstance(UnmarshallerContext context) { return DescribeRecordStatisticsSummaryResponseUnmarshaller.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/DescribeSubDomainRecordsRequest.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 DescribeSubDomainRecordsRequest extends RpcAcsRequest<DescribeSubDomainRecordsResponse> { private String line; private String domainName; private String type; private Long pageNumber; private String userClientIp; private Long pageSize; private String subDomain; private String lang; public DescribeSubDomainRecordsRequest() { super("Alidns", "2015-01-09", "DescribeSubDomainRecords", "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 getLine() { return this.line; } public void setLine(String line) { this.line = line; if(line != null){ putQueryParameter("Line", line); } } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; if(domainName != null){ putQueryParameter("DomainName", domainName); } } 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 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 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<DescribeSubDomainRecordsResponse> getResponseClass() { return DescribeSubDomainRecordsResponse.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/DescribeSubDomainRecordsResponse.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.DescribeSubDomainRecordsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeSubDomainRecordsResponse 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 Integer weight; private String value; private Long tTL; private String line; private String recordId; private Long priority; private String rR; private String domainName; private Boolean locked; private String remark; 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 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 Long getTTL() { return this.tTL; } public void setTTL(Long tTL) { this.tTL = tTL; } public String getLine() { return this.line; } public void setLine(String line) { this.line = line; } 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 Boolean getLocked() { return this.locked; } public void setLocked(Boolean locked) { this.locked = locked; } public String getRemark() { return this.remark; } public void setRemark(String remark) { this.remark = remark; } } @Override public DescribeSubDomainRecordsResponse getInstance(UnmarshallerContext context) { return DescribeSubDomainRecordsResponseUnmarshaller.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/DescribeSupportLinesRequest.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 DescribeSupportLinesRequest extends RpcAcsRequest<DescribeSupportLinesResponse> { private String domainName; private String userClientIp; private String lang; public DescribeSupportLinesRequest() { super("Alidns", "2015-01-09", "DescribeSupportLines", "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 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<DescribeSupportLinesResponse> getResponseClass() { return DescribeSupportLinesResponse.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/DescribeSupportLinesResponse.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.DescribeSupportLinesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeSupportLinesResponse extends AcsResponse { private String requestId; private List<RecordLine> recordLines; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<RecordLine> getRecordLines() { return this.recordLines; } public void setRecordLines(List<RecordLine> recordLines) { this.recordLines = recordLines; } 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 DescribeSupportLinesResponse getInstance(UnmarshallerContext context) { return DescribeSupportLinesResponseUnmarshaller.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/DescribeTagsRequest.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 DescribeTagsRequest extends RpcAcsRequest<DescribeTagsResponse> { private String resourceType; private Long pageNumber; private Long pageSize; private String lang; public DescribeTagsRequest() { super("Alidns", "2015-01-09", "DescribeTags", "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 getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; if(resourceType != null){ putQueryParameter("ResourceType", resourceType); } } 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<DescribeTagsResponse> getResponseClass() { return DescribeTagsResponse.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/DescribeTagsResponse.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.DescribeTagsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeTagsResponse extends AcsResponse { private Long totalCount; private Long pageSize; private String requestId; private Long pageNumber; private List<Tag> tags; 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<Tag> getTags() { return this.tags; } public void setTags(List<Tag> tags) { this.tags = tags; } public static class Tag { private String key; private List<String> values; public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } public List<String> getValues() { return this.values; } public void setValues(List<String> values) { this.values = values; } } @Override public DescribeTagsResponse getInstance(UnmarshallerContext context) { return DescribeTagsResponseUnmarshaller.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/DescribeTransferDomainsRequest.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 DescribeTransferDomainsRequest extends RpcAcsRequest<DescribeTransferDomainsResponse> { private Long fromUserId; private Long pageNumber; private Long targetUserId; private Long pageSize; private String lang; private String domainName; private String transferType; public DescribeTransferDomainsRequest() { super("Alidns", "2015-01-09", "DescribeTransferDomains", "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 getFromUserId() { return this.fromUserId; } public void setFromUserId(Long fromUserId) { this.fromUserId = fromUserId; if(fromUserId != null){ putQueryParameter("FromUserId", fromUserId.toString()); } } public Long getPageNumber() { return this.pageNumber; } public void setPageNumber(Long pageNumber) { this.pageNumber = pageNumber; if(pageNumber != null){ putQueryParameter("PageNumber", pageNumber.toString()); } } public Long getTargetUserId() { return this.targetUserId; } public void setTargetUserId(Long targetUserId) { this.targetUserId = targetUserId; if(targetUserId != null){ putQueryParameter("TargetUserId", targetUserId.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 getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; if(domainName != null){ putQueryParameter("DomainName", domainName); } } public String getTransferType() { return this.transferType; } public void setTransferType(String transferType) { this.transferType = transferType; if(transferType != null){ putQueryParameter("TransferType", transferType); } } @Override public Class<DescribeTransferDomainsResponse> getResponseClass() { return DescribeTransferDomainsResponse.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/DescribeTransferDomainsResponse.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.DescribeTransferDomainsResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class DescribeTransferDomainsResponse extends AcsResponse { private Long totalCount; private Long pageSize; private String requestId; private Long pageNumber; private List<DomainTransfer> domainTransfers; 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<DomainTransfer> getDomainTransfers() { return this.domainTransfers; } public void setDomainTransfers(List<DomainTransfer> domainTransfers) { this.domainTransfers = domainTransfers; } public static class DomainTransfer { private Long fromUserId; private String createTime; private Long targetUserId; private String domainName; private Long id; private Long createTimestamp; public Long getFromUserId() { return this.fromUserId; } public void setFromUserId(Long fromUserId) { this.fromUserId = fromUserId; } public String getCreateTime() { return this.createTime; } public void setCreateTime(String createTime) { this.createTime = createTime; } public Long getTargetUserId() { return this.targetUserId; } public void setTargetUserId(Long targetUserId) { this.targetUserId = targetUserId; } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; } 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; } } @Override public DescribeTransferDomainsResponse getInstance(UnmarshallerContext context) { return DescribeTransferDomainsResponseUnmarshaller.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/ExecuteGtmRecoveryPlanRequest.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 ExecuteGtmRecoveryPlanRequest extends RpcAcsRequest<ExecuteGtmRecoveryPlanResponse> { private Long recoveryPlanId; private String lang; public ExecuteGtmRecoveryPlanRequest() { super("Alidns", "2015-01-09", "ExecuteGtmRecoveryPlan", "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 getRecoveryPlanId() { return this.recoveryPlanId; } public void setRecoveryPlanId(Long recoveryPlanId) { this.recoveryPlanId = recoveryPlanId; if(recoveryPlanId != null){ putQueryParameter("RecoveryPlanId", recoveryPlanId.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<ExecuteGtmRecoveryPlanResponse> getResponseClass() { return ExecuteGtmRecoveryPlanResponse.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/ExecuteGtmRecoveryPlanResponse.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.ExecuteGtmRecoveryPlanResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ExecuteGtmRecoveryPlanResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public ExecuteGtmRecoveryPlanResponse getInstance(UnmarshallerContext context) { return ExecuteGtmRecoveryPlanResponseUnmarshaller.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/GetMainDomainNameRequest.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 GetMainDomainNameRequest extends RpcAcsRequest<GetMainDomainNameResponse> { private String inputString; private String lang; public GetMainDomainNameRequest() { super("Alidns", "2015-01-09", "GetMainDomainName", "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 getInputString() { return this.inputString; } public void setInputString(String inputString) { this.inputString = inputString; if(inputString != null){ putQueryParameter("InputString", inputString); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<GetMainDomainNameResponse> getResponseClass() { return GetMainDomainNameResponse.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/GetMainDomainNameResponse.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.GetMainDomainNameResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetMainDomainNameResponse extends AcsResponse { private String rR; private String requestId; private String domainName; private Long domainLevel; public String getRR() { return this.rR; } public void setRR(String rR) { this.rR = rR; } 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 getDomainLevel() { return this.domainLevel; } public void setDomainLevel(Long domainLevel) { this.domainLevel = domainLevel; } @Override public GetMainDomainNameResponse getInstance(UnmarshallerContext context) { return GetMainDomainNameResponseUnmarshaller.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/GetTxtRecordForVerifyRequest.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 GetTxtRecordForVerifyRequest extends RpcAcsRequest<GetTxtRecordForVerifyResponse> { private String domainName; private String type; private String lang; public GetTxtRecordForVerifyRequest() { super("Alidns", "2015-01-09", "GetTxtRecordForVerify", "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 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<GetTxtRecordForVerifyResponse> getResponseClass() { return GetTxtRecordForVerifyResponse.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/GetTxtRecordForVerifyResponse.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.GetTxtRecordForVerifyResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class GetTxtRecordForVerifyResponse extends AcsResponse { private String rR; private String requestId; private String domainName; private String value; public String getRR() { return this.rR; } public void setRR(String rR) { this.rR = rR; } 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 getValue() { return this.value; } public void setValue(String value) { this.value = value; } @Override public GetTxtRecordForVerifyResponse getInstance(UnmarshallerContext context) { return GetTxtRecordForVerifyResponseUnmarshaller.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/ListTagResourcesRequest.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 java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class ListTagResourcesRequest extends RpcAcsRequest<ListTagResourcesResponse> { private List<String> resourceIds; private String resourceType; private String nextToken; private List<Tag> tags; private String lang; public ListTagResourcesRequest() { super("Alidns", "2015-01-09", "ListTagResources", "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 List<String> getResourceIds() { return this.resourceIds; } public void setResourceIds(List<String> resourceIds) { this.resourceIds = resourceIds; if (resourceIds != null) { for (int i = 0; i < resourceIds.size(); i++) { putQueryParameter("ResourceId." + (i + 1) , resourceIds.get(i)); } } } public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; if(resourceType != null){ putQueryParameter("ResourceType", resourceType); } } public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; if(nextToken != null){ putQueryParameter("NextToken", nextToken); } } public List<Tag> getTags() { return this.tags; } public void setTags(List<Tag> tags) { this.tags = tags; if (tags != null) { for (int depth1 = 0; depth1 < tags.size(); depth1++) { putQueryParameter("Tag." + (depth1 + 1) + ".Value" , tags.get(depth1).getValue()); putQueryParameter("Tag." + (depth1 + 1) + ".Key" , tags.get(depth1).getKey()); } } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } public static class Tag { private String value; private String key; public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public String getKey() { return this.key; } public void setKey(String key) { this.key = key; } } @Override public Class<ListTagResourcesResponse> getResponseClass() { return ListTagResourcesResponse.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/ListTagResourcesResponse.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.ListTagResourcesResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ListTagResourcesResponse extends AcsResponse { private String nextToken; private String requestId; private List<TagResource> tagResources; public String getNextToken() { return this.nextToken; } public void setNextToken(String nextToken) { this.nextToken = nextToken; } public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<TagResource> getTagResources() { return this.tagResources; } public void setTagResources(List<TagResource> tagResources) { this.tagResources = tagResources; } public static class TagResource { private String resourceType; private String tagValue; private String resourceId; private String tagKey; public String getResourceType() { return this.resourceType; } public void setResourceType(String resourceType) { this.resourceType = resourceType; } public String getTagValue() { return this.tagValue; } public void setTagValue(String tagValue) { this.tagValue = tagValue; } public String getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; } public String getTagKey() { return this.tagKey; } public void setTagKey(String tagKey) { this.tagKey = tagKey; } } @Override public ListTagResourcesResponse getInstance(UnmarshallerContext context) { return ListTagResourcesResponseUnmarshaller.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/ModifyHichinaDomainDNSRequest.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 ModifyHichinaDomainDNSRequest extends RpcAcsRequest<ModifyHichinaDomainDNSResponse> { private String domainName; private String userClientIp; private String lang; public ModifyHichinaDomainDNSRequest() { super("Alidns", "2015-01-09", "ModifyHichinaDomainDNS", "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 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<ModifyHichinaDomainDNSResponse> getResponseClass() { return ModifyHichinaDomainDNSResponse.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/ModifyHichinaDomainDNSResponse.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.ModifyHichinaDomainDNSResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ModifyHichinaDomainDNSResponse extends AcsResponse { private String requestId; private List<String> newDnsServers; private List<String> originalDnsServers; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } public List<String> getNewDnsServers() { return this.newDnsServers; } public void setNewDnsServers(List<String> newDnsServers) { this.newDnsServers = newDnsServers; } public List<String> getOriginalDnsServers() { return this.originalDnsServers; } public void setOriginalDnsServers(List<String> originalDnsServers) { this.originalDnsServers = originalDnsServers; } @Override public ModifyHichinaDomainDNSResponse getInstance(UnmarshallerContext context) { return ModifyHichinaDomainDNSResponseUnmarshaller.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/MoveDomainResourceGroupRequest.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 MoveDomainResourceGroupRequest extends RpcAcsRequest<MoveDomainResourceGroupResponse> { private String resourceId; private String newResourceGroupId; private String lang; public MoveDomainResourceGroupRequest() { super("Alidns", "2015-01-09", "MoveDomainResourceGroup", "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 getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; if(resourceId != null){ putQueryParameter("ResourceId", resourceId); } } public String getNewResourceGroupId() { return this.newResourceGroupId; } public void setNewResourceGroupId(String newResourceGroupId) { this.newResourceGroupId = newResourceGroupId; if(newResourceGroupId != null){ putQueryParameter("NewResourceGroupId", newResourceGroupId); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<MoveDomainResourceGroupResponse> getResponseClass() { return MoveDomainResourceGroupResponse.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/MoveDomainResourceGroupResponse.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.MoveDomainResourceGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class MoveDomainResourceGroupResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public MoveDomainResourceGroupResponse getInstance(UnmarshallerContext context) { return MoveDomainResourceGroupResponseUnmarshaller.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/MoveGtmResourceGroupRequest.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 MoveGtmResourceGroupRequest extends RpcAcsRequest<MoveGtmResourceGroupResponse> { private String resourceId; private String newResourceGroupId; private String lang; public MoveGtmResourceGroupRequest() { super("Alidns", "2015-01-09", "MoveGtmResourceGroup", "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 getResourceId() { return this.resourceId; } public void setResourceId(String resourceId) { this.resourceId = resourceId; if(resourceId != null){ putQueryParameter("ResourceId", resourceId); } } public String getNewResourceGroupId() { return this.newResourceGroupId; } public void setNewResourceGroupId(String newResourceGroupId) { this.newResourceGroupId = newResourceGroupId; if(newResourceGroupId != null){ putQueryParameter("NewResourceGroupId", newResourceGroupId); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<MoveGtmResourceGroupResponse> getResponseClass() { return MoveGtmResourceGroupResponse.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/MoveGtmResourceGroupResponse.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.MoveGtmResourceGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class MoveGtmResourceGroupResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public MoveGtmResourceGroupResponse getInstance(UnmarshallerContext context) { return MoveGtmResourceGroupResponseUnmarshaller.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/OperateBatchDomainRequest.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 java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.alidns.Endpoint; /** * @author auto create * @version */ public class OperateBatchDomainRequest extends RpcAcsRequest<OperateBatchDomainResponse> { private List<DomainRecordInfo> domainRecordInfos; private String type; private String lang; public OperateBatchDomainRequest() { super("Alidns", "2015-01-09", "OperateBatchDomain", "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 List<DomainRecordInfo> getDomainRecordInfos() { return this.domainRecordInfos; } public void setDomainRecordInfos(List<DomainRecordInfo> domainRecordInfos) { this.domainRecordInfos = domainRecordInfos; if (domainRecordInfos != null) { for (int depth1 = 0; depth1 < domainRecordInfos.size(); depth1++) { putQueryParameter("DomainRecordInfo." + (depth1 + 1) + ".Rr" , domainRecordInfos.get(depth1).getRr()); putQueryParameter("DomainRecordInfo." + (depth1 + 1) + ".NewType" , domainRecordInfos.get(depth1).getNewType()); putQueryParameter("DomainRecordInfo." + (depth1 + 1) + ".NewValue" , domainRecordInfos.get(depth1).getNewValue()); putQueryParameter("DomainRecordInfo." + (depth1 + 1) + ".Line" , domainRecordInfos.get(depth1).getLine()); putQueryParameter("DomainRecordInfo." + (depth1 + 1) + ".Domain" , domainRecordInfos.get(depth1).getDomain()); putQueryParameter("DomainRecordInfo." + (depth1 + 1) + ".Type" , domainRecordInfos.get(depth1).getType()); putQueryParameter("DomainRecordInfo." + (depth1 + 1) + ".Priority" , domainRecordInfos.get(depth1).getPriority()); putQueryParameter("DomainRecordInfo." + (depth1 + 1) + ".Value" , domainRecordInfos.get(depth1).getValue()); putQueryParameter("DomainRecordInfo." + (depth1 + 1) + ".Ttl" , domainRecordInfos.get(depth1).getTtl()); putQueryParameter("DomainRecordInfo." + (depth1 + 1) + ".NewRr" , domainRecordInfos.get(depth1).getNewRr()); } } } 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); } } public static class DomainRecordInfo { private String rr; private String newType; private String newValue; private String line; private String domain; private String type; private Integer priority; private String value; private Integer ttl; private String newRr; public String getRr() { return this.rr; } public void setRr(String rr) { this.rr = rr; } public String getNewType() { return this.newType; } public void setNewType(String newType) { this.newType = newType; } public String getNewValue() { return this.newValue; } public void setNewValue(String newValue) { this.newValue = newValue; } public String getLine() { return this.line; } public void setLine(String line) { this.line = line; } public String getDomain() { return this.domain; } public void setDomain(String domain) { this.domain = domain; } public String getType() { return this.type; } public void setType(String type) { this.type = type; } public Integer getPriority() { return this.priority; } public void setPriority(Integer priority) { this.priority = priority; } public String getValue() { return this.value; } public void setValue(String value) { this.value = value; } public Integer getTtl() { return this.ttl; } public void setTtl(Integer ttl) { this.ttl = ttl; } public String getNewRr() { return this.newRr; } public void setNewRr(String newRr) { this.newRr = newRr; } } @Override public Class<OperateBatchDomainResponse> getResponseClass() { return OperateBatchDomainResponse.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/OperateBatchDomainResponse.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.OperateBatchDomainResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class OperateBatchDomainResponse extends AcsResponse { private Long taskId; private String requestId; 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; } @Override public OperateBatchDomainResponse getInstance(UnmarshallerContext context) { return OperateBatchDomainResponseUnmarshaller.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/PausePdnsServiceRequest.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 PausePdnsServiceRequest extends RpcAcsRequest<PausePdnsServiceResponse> { private String serviceType; private String lang; public PausePdnsServiceRequest() { super("Alidns", "2015-01-09", "PausePdnsService", "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 getServiceType() { return this.serviceType; } public void setServiceType(String serviceType) { this.serviceType = serviceType; if(serviceType != null){ putQueryParameter("ServiceType", serviceType); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<PausePdnsServiceResponse> getResponseClass() { return PausePdnsServiceResponse.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/PausePdnsServiceResponse.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.PausePdnsServiceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class PausePdnsServiceResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public PausePdnsServiceResponse getInstance(UnmarshallerContext context) { return PausePdnsServiceResponseUnmarshaller.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/PreviewGtmRecoveryPlanRequest.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 PreviewGtmRecoveryPlanRequest extends RpcAcsRequest<PreviewGtmRecoveryPlanResponse> { private Integer pageNumber; private Integer pageSize; private Long recoveryPlanId; private String lang; public PreviewGtmRecoveryPlanRequest() { super("Alidns", "2015-01-09", "PreviewGtmRecoveryPlan", "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 Integer getPageSize() { return this.pageSize; } public void setPageSize(Integer pageSize) { this.pageSize = pageSize; if(pageSize != null){ putQueryParameter("PageSize", pageSize.toString()); } } public Long getRecoveryPlanId() { return this.recoveryPlanId; } public void setRecoveryPlanId(Long recoveryPlanId) { this.recoveryPlanId = recoveryPlanId; if(recoveryPlanId != null){ putQueryParameter("RecoveryPlanId", recoveryPlanId.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<PreviewGtmRecoveryPlanResponse> getResponseClass() { return PreviewGtmRecoveryPlanResponse.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/PreviewGtmRecoveryPlanResponse.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.PreviewGtmRecoveryPlanResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class PreviewGtmRecoveryPlanResponse extends AcsResponse { private Integer pageSize; private String requestId; private Integer pageNumber; private Integer totalPages; private Integer totalItems; private List<Preview> previews; 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<Preview> getPreviews() { return this.previews; } public void setPreviews(List<Preview> previews) { this.previews = previews; } public static class Preview { private String instanceId; private String name; private String userDomainName; private List<SwitchInfo> switchInfos; public String getInstanceId() { return this.instanceId; } public void setInstanceId(String instanceId) { this.instanceId = instanceId; } public String getName() { return this.name; } public void setName(String name) { this.name = name; } public String getUserDomainName() { return this.userDomainName; } public void setUserDomainName(String userDomainName) { this.userDomainName = userDomainName; } public List<SwitchInfo> getSwitchInfos() { return this.switchInfos; } public void setSwitchInfos(List<SwitchInfo> switchInfos) { this.switchInfos = switchInfos; } public static class SwitchInfo { private String strategyName; private String content; public String getStrategyName() { return this.strategyName; } public void setStrategyName(String strategyName) { this.strategyName = strategyName; } public String getContent() { return this.content; } public void setContent(String content) { this.content = content; } } } @Override public PreviewGtmRecoveryPlanResponse getInstance(UnmarshallerContext context) { return PreviewGtmRecoveryPlanResponseUnmarshaller.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/RemovePdnsAppKeyRequest.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 RemovePdnsAppKeyRequest extends RpcAcsRequest<RemovePdnsAppKeyResponse> { private String appKeyId; private String lang; public RemovePdnsAppKeyRequest() { super("Alidns", "2015-01-09", "RemovePdnsAppKey", "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 getAppKeyId() { return this.appKeyId; } public void setAppKeyId(String appKeyId) { this.appKeyId = appKeyId; if(appKeyId != null){ putQueryParameter("AppKeyId", appKeyId); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<RemovePdnsAppKeyResponse> getResponseClass() { return RemovePdnsAppKeyResponse.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/RemovePdnsAppKeyResponse.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.RemovePdnsAppKeyResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RemovePdnsAppKeyResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public RemovePdnsAppKeyResponse getInstance(UnmarshallerContext context) { return RemovePdnsAppKeyResponseUnmarshaller.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/RemovePdnsUdpIpSegmentRequest.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 RemovePdnsUdpIpSegmentRequest extends RpcAcsRequest<RemovePdnsUdpIpSegmentResponse> { private String ip; private String lang; public RemovePdnsUdpIpSegmentRequest() { super("Alidns", "2015-01-09", "RemovePdnsUdpIpSegment", "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 getIp() { return this.ip; } public void setIp(String ip) { this.ip = ip; if(ip != null){ putQueryParameter("Ip", ip); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<RemovePdnsUdpIpSegmentResponse> getResponseClass() { return RemovePdnsUdpIpSegmentResponse.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/RemovePdnsUdpIpSegmentResponse.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.RemovePdnsUdpIpSegmentResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RemovePdnsUdpIpSegmentResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public RemovePdnsUdpIpSegmentResponse getInstance(UnmarshallerContext context) { return RemovePdnsUdpIpSegmentResponseUnmarshaller.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/ResumePdnsServiceRequest.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 ResumePdnsServiceRequest extends RpcAcsRequest<ResumePdnsServiceResponse> { private String serviceType; private String lang; public ResumePdnsServiceRequest() { super("Alidns", "2015-01-09", "ResumePdnsService", "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 getServiceType() { return this.serviceType; } public void setServiceType(String serviceType) { this.serviceType = serviceType; if(serviceType != null){ putQueryParameter("ServiceType", serviceType); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<ResumePdnsServiceResponse> getResponseClass() { return ResumePdnsServiceResponse.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/ResumePdnsServiceResponse.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.ResumePdnsServiceResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class ResumePdnsServiceResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public ResumePdnsServiceResponse getInstance(UnmarshallerContext context) { return ResumePdnsServiceResponseUnmarshaller.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/RetrieveDomainRequest.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 RetrieveDomainRequest extends RpcAcsRequest<RetrieveDomainResponse> { private String domainName; private String lang; public RetrieveDomainRequest() { super("Alidns", "2015-01-09", "RetrieveDomain", "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<RetrieveDomainResponse> getResponseClass() { return RetrieveDomainResponse.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/RetrieveDomainResponse.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.RetrieveDomainResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RetrieveDomainResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public RetrieveDomainResponse getInstance(UnmarshallerContext context) { return RetrieveDomainResponseUnmarshaller.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/RollbackGtmRecoveryPlanRequest.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 RollbackGtmRecoveryPlanRequest extends RpcAcsRequest<RollbackGtmRecoveryPlanResponse> { private Long recoveryPlanId; private String lang; public RollbackGtmRecoveryPlanRequest() { super("Alidns", "2015-01-09", "RollbackGtmRecoveryPlan", "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 getRecoveryPlanId() { return this.recoveryPlanId; } public void setRecoveryPlanId(Long recoveryPlanId) { this.recoveryPlanId = recoveryPlanId; if(recoveryPlanId != null){ putQueryParameter("RecoveryPlanId", recoveryPlanId.toString()); } } public String getLang() { return this.lang; } public void setLang(String lang) { this.lang = lang; if(lang != null){ putQueryParameter("Lang", lang); } } @Override public Class<RollbackGtmRecoveryPlanResponse> getResponseClass() { return RollbackGtmRecoveryPlanResponse.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/RollbackGtmRecoveryPlanResponse.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.RollbackGtmRecoveryPlanResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class RollbackGtmRecoveryPlanResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public RollbackGtmRecoveryPlanResponse getInstance(UnmarshallerContext context) { return RollbackGtmRecoveryPlanResponseUnmarshaller.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/SetDNSSLBStatusRequest.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 SetDNSSLBStatusRequest extends RpcAcsRequest<SetDNSSLBStatusResponse> { private String line; private String domainName; private String type; private String userClientIp; private String subDomain; private String lang; private Boolean open; public SetDNSSLBStatusRequest() { super("Alidns", "2015-01-09", "SetDNSSLBStatus", "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 getLine() { return this.line; } public void setLine(String line) { this.line = line; if(line != null){ putQueryParameter("Line", line); } } public String getDomainName() { return this.domainName; } public void setDomainName(String domainName) { this.domainName = domainName; if(domainName != null){ putQueryParameter("DomainName", domainName); } } public String getType() { return this.type; } public void setType(String type) { this.type = type; if(type != null){ putQueryParameter("Type", type); } } public String getUserClientIp() { return this.userClientIp; } public void setUserClientIp(String userClientIp) { this.userClientIp = userClientIp; if(userClientIp != null){ putQueryParameter("UserClientIp", userClientIp); } } 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); } } public Boolean getOpen() { return this.open; } public void setOpen(Boolean open) { this.open = open; if(open != null){ putQueryParameter("Open", open.toString()); } } @Override public Class<SetDNSSLBStatusResponse> getResponseClass() { return SetDNSSLBStatusResponse.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/SetDNSSLBStatusResponse.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.SetDNSSLBStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SetDNSSLBStatusResponse extends AcsResponse { private String requestId; private Long recordCount; private Boolean open; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } 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; } @Override public SetDNSSLBStatusResponse getInstance(UnmarshallerContext context) { return SetDNSSLBStatusResponseUnmarshaller.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/SetDnsGtmAccessModeRequest.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 SetDnsGtmAccessModeRequest extends RpcAcsRequest<SetDnsGtmAccessModeResponse> { private String strategyId; private String lang; private String accessMode; public SetDnsGtmAccessModeRequest() { super("Alidns", "2015-01-09", "SetDnsGtmAccessMode", "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); } } public String getAccessMode() { return this.accessMode; } public void setAccessMode(String accessMode) { this.accessMode = accessMode; if(accessMode != null){ putQueryParameter("AccessMode", accessMode); } } @Override public Class<SetDnsGtmAccessModeResponse> getResponseClass() { return SetDnsGtmAccessModeResponse.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/SetDnsGtmAccessModeResponse.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.SetDnsGtmAccessModeResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SetDnsGtmAccessModeResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public SetDnsGtmAccessModeResponse getInstance(UnmarshallerContext context) { return SetDnsGtmAccessModeResponseUnmarshaller.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/SetDnsGtmMonitorStatusRequest.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 SetDnsGtmMonitorStatusRequest extends RpcAcsRequest<SetDnsGtmMonitorStatusResponse> { private String monitorConfigId; private String lang; private String status; public SetDnsGtmMonitorStatusRequest() { super("Alidns", "2015-01-09", "SetDnsGtmMonitorStatus", "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); } } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; if(status != null){ putQueryParameter("Status", status); } } @Override public Class<SetDnsGtmMonitorStatusResponse> getResponseClass() { return SetDnsGtmMonitorStatusResponse.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/SetDnsGtmMonitorStatusResponse.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.SetDnsGtmMonitorStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SetDnsGtmMonitorStatusResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public SetDnsGtmMonitorStatusResponse getInstance(UnmarshallerContext context) { return SetDnsGtmMonitorStatusResponseUnmarshaller.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/SetDomainDnssecStatusRequest.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 SetDomainDnssecStatusRequest extends RpcAcsRequest<SetDomainDnssecStatusResponse> { private String domainName; private String lang; private String status; public SetDomainDnssecStatusRequest() { super("Alidns", "2015-01-09", "SetDomainDnssecStatus", "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 String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; if(status != null){ putQueryParameter("Status", status); } } @Override public Class<SetDomainDnssecStatusResponse> getResponseClass() { return SetDomainDnssecStatusResponse.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/SetDomainDnssecStatusResponse.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.SetDomainDnssecStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ public class SetDomainDnssecStatusResponse extends AcsResponse { private String requestId; public String getRequestId() { return this.requestId; } public void setRequestId(String requestId) { this.requestId = requestId; } @Override public SetDomainDnssecStatusResponse getInstance(UnmarshallerContext context) { return SetDomainDnssecStatusResponseUnmarshaller.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/SetDomainRecordStatusRequest.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 SetDomainRecordStatusRequest extends RpcAcsRequest<SetDomainRecordStatusResponse> { private String recordId; private String userClientIp; private String lang; private String status; public SetDomainRecordStatusRequest() { super("Alidns", "2015-01-09", "SetDomainRecordStatus", "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); } } public String getStatus() { return this.status; } public void setStatus(String status) { this.status = status; if(status != null){ putQueryParameter("Status", status); } } @Override public Class<SetDomainRecordStatusResponse> getResponseClass() { return SetDomainRecordStatusResponse.class; } }