diff --git a/aliyun-java-sdk-domain/ChangeLog.txt b/aliyun-java-sdk-domain/ChangeLog.txt index fa67544efa..6a28ada669 100644 --- a/aliyun-java-sdk-domain/ChangeLog.txt +++ b/aliyun-java-sdk-domain/ChangeLog.txt @@ -1,3 +1,8 @@ +2024-10-18 Version: 3.15.10 +- 基于转移码的转出接口 +- SaveSingleTaskForTransferOutByAuthorizationCode +- SaveBatchTaskForTransferOutByAuthorizationCode + 2024-10-17 Version: 3.15.9 - Supported query exchange rate. diff --git a/aliyun-java-sdk-domain/pom.xml b/aliyun-java-sdk-domain/pom.xml index 0a30726426..f353f5f986 100644 --- a/aliyun-java-sdk-domain/pom.xml +++ b/aliyun-java-sdk-domain/pom.xml @@ -4,7 +4,7 @@ com.aliyun aliyun-java-sdk-domain jar - 3.15.9 + 3.15.10 aliyun-java-sdk-domain http://www.aliyun.com Aliyun Open API SDK for Java diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/AcknowledgeTaskResultRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/AcknowledgeTaskResultRequest.java new file mode 100644 index 0000000000..4068395261 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/AcknowledgeTaskResultRequest.java @@ -0,0 +1,83 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class AcknowledgeTaskResultRequest extends RpcAcsRequest { + + + private List taskDetailNos; + + private String userClientIp; + + private String lang; + public AcknowledgeTaskResultRequest() { + super("Domain", "2018-01-29", "AcknowledgeTaskResult", "domain"); + 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 getTaskDetailNos() { + return this.taskDetailNos; + } + + public void setTaskDetailNos(List taskDetailNos) { + this.taskDetailNos = taskDetailNos; + if (taskDetailNos != null) { + for (int i = 0; i < taskDetailNos.size(); i++) { + putQueryParameter("TaskDetailNo." + (i + 1) , taskDetailNos.get(i)); + } + } + } + + 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 getResponseClass() { + return AcknowledgeTaskResultResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/AcknowledgeTaskResultResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/AcknowledgeTaskResultResponse.java new file mode 100644 index 0000000000..a39fe3c2c0 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/AcknowledgeTaskResultResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.AcknowledgeTaskResultResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class AcknowledgeTaskResultResponse extends AcsResponse { + + private String requestId; + + private Integer result; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public Integer getResult() { + return this.result; + } + + public void setResult(Integer result) { + this.result = result; + } + + @Override + public AcknowledgeTaskResultResponse getInstance(UnmarshallerContext context) { + return AcknowledgeTaskResultResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/BatchFuzzyMatchDomainSensitiveWordRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/BatchFuzzyMatchDomainSensitiveWordRequest.java new file mode 100644 index 0000000000..47d5b5b3d8 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/BatchFuzzyMatchDomainSensitiveWordRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class BatchFuzzyMatchDomainSensitiveWordRequest extends RpcAcsRequest { + + + private String userClientIp; + + private String keyword; + + private String lang; + public BatchFuzzyMatchDomainSensitiveWordRequest() { + super("Domain", "2018-01-29", "BatchFuzzyMatchDomainSensitiveWord", "domain"); + 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 getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + 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); + } + } + + @Override + public Class getResponseClass() { + return BatchFuzzyMatchDomainSensitiveWordResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/BatchFuzzyMatchDomainSensitiveWordResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/BatchFuzzyMatchDomainSensitiveWordResponse.java new file mode 100644 index 0000000000..8fb22d056f --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/BatchFuzzyMatchDomainSensitiveWordResponse.java @@ -0,0 +1,98 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.BatchFuzzyMatchDomainSensitiveWordResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class BatchFuzzyMatchDomainSensitiveWordResponse extends AcsResponse { + + private String requestId; + + private List sensitiveWordMatchResultList; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getSensitiveWordMatchResultList() { + return this.sensitiveWordMatchResultList; + } + + public void setSensitiveWordMatchResultList(List sensitiveWordMatchResultList) { + this.sensitiveWordMatchResultList = sensitiveWordMatchResultList; + } + + public static class SensitiveWordMatchResult { + + private String keyword; + + private Boolean exist; + + private List matchedSentiveWords; + + public String getKeyword() { + return this.keyword; + } + + public void setKeyword(String keyword) { + this.keyword = keyword; + } + + public Boolean getExist() { + return this.exist; + } + + public void setExist(Boolean exist) { + this.exist = exist; + } + + public List getMatchedSentiveWords() { + return this.matchedSentiveWords; + } + + public void setMatchedSentiveWords(List matchedSentiveWords) { + this.matchedSentiveWords = matchedSentiveWords; + } + + public static class MatchedSensitiveWord { + + private String word; + + public String getWord() { + return this.word; + } + + public void setWord(String word) { + this.word = word; + } + } + } + + @Override + public BatchFuzzyMatchDomainSensitiveWordResponse getInstance(UnmarshallerContext context) { + return BatchFuzzyMatchDomainSensitiveWordResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelDomainVerificationRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelDomainVerificationRequest.java new file mode 100644 index 0000000000..8331fab0d8 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelDomainVerificationRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class CancelDomainVerificationRequest extends RpcAcsRequest { + + + private String actionType; + + private String instanceId; + + private String userClientIp; + + private String lang; + public CancelDomainVerificationRequest() { + super("Domain", "2018-01-29", "CancelDomainVerification", "domain"); + 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 getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + if(instanceId != null){ + putQueryParameter("InstanceId", instanceId); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return CancelDomainVerificationResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/RefuseDemandResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelDomainVerificationResponse.java similarity index 67% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/RefuseDemandResponse.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelDomainVerificationResponse.java index 8b464157c5..dc874fa2f4 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/RefuseDemandResponse.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelDomainVerificationResponse.java @@ -12,17 +12,17 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.RefuseDemandResponseUnmarshaller; +import com.aliyuncs.domain.transform.v20180129.CancelDomainVerificationResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ -public class RefuseDemandResponse extends AcsResponse { +public class CancelDomainVerificationResponse extends AcsResponse { private String requestId; @@ -35,12 +35,7 @@ public void setRequestId(String requestId) { } @Override - public RefuseDemandResponse getInstance(UnmarshallerContext context) { - return RefuseDemandResponseUnmarshaller.unmarshall(this, context); - } - - @Override - public boolean checkShowJsonItemName() { - return false; + public CancelDomainVerificationResponse getInstance(UnmarshallerContext context) { + return CancelDomainVerificationResponseUnmarshaller.unmarshall(this, context); } } diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/RecordDemandRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelOperationAuditRequest.java similarity index 55% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/RecordDemandRequest.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelOperationAuditRequest.java index 65a3666f04..004bb612ee 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/RecordDemandRequest.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelOperationAuditRequest.java @@ -12,7 +12,7 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; @@ -22,14 +22,14 @@ * @author auto create * @version */ -public class RecordDemandRequest extends RpcAcsRequest { +public class CancelOperationAuditRequest extends RpcAcsRequest { - private String message; + private Long auditRecordId; - private String bizId; - public RecordDemandRequest() { - super("Domain", "2018-02-08", "RecordDemand", "domain"); + private String lang; + public CancelOperationAuditRequest() { + super("Domain", "2018-01-29", "CancelOperationAudit", "domain"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); @@ -37,31 +37,31 @@ public RecordDemandRequest() { } catch (Exception e) {} } - public String getMessage() { - return this.message; + public Long getAuditRecordId() { + return this.auditRecordId; } - public void setMessage(String message) { - this.message = message; - if(message != null){ - putQueryParameter("Message", message); + public void setAuditRecordId(Long auditRecordId) { + this.auditRecordId = auditRecordId; + if(auditRecordId != null){ + putQueryParameter("AuditRecordId", auditRecordId.toString()); } } - public String getBizId() { - return this.bizId; + public String getLang() { + return this.lang; } - public void setBizId(String bizId) { - this.bizId = bizId; - if(bizId != null){ - putQueryParameter("BizId", bizId); + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); } } @Override - public Class getResponseClass() { - return RecordDemandResponse.class; + public Class getResponseClass() { + return CancelOperationAuditResponse.class; } } diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/RecordDemandResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelOperationAuditResponse.java similarity index 71% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/RecordDemandResponse.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelOperationAuditResponse.java index 631463073e..cf50a04ade 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/RecordDemandResponse.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelOperationAuditResponse.java @@ -12,17 +12,17 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.RecordDemandResponseUnmarshaller; +import com.aliyuncs.domain.transform.v20180129.CancelOperationAuditResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ -public class RecordDemandResponse extends AcsResponse { +public class CancelOperationAuditResponse extends AcsResponse { private String requestId; @@ -35,8 +35,8 @@ public void setRequestId(String requestId) { } @Override - public RecordDemandResponse getInstance(UnmarshallerContext context) { - return RecordDemandResponseUnmarshaller.unmarshall(this, context); + public CancelOperationAuditResponse getInstance(UnmarshallerContext context) { + return CancelOperationAuditResponseUnmarshaller.unmarshall(this, context); } @Override diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelQualificationVerificationRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelQualificationVerificationRequest.java new file mode 100644 index 0000000000..ad04cc4894 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelQualificationVerificationRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class CancelQualificationVerificationRequest extends RpcAcsRequest { + + + private String qualificationType; + + private String instanceId; + + private String userClientIp; + + private String lang; + public CancelQualificationVerificationRequest() { + super("Domain", "2018-01-29", "CancelQualificationVerification", "domain"); + 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 getQualificationType() { + return this.qualificationType; + } + + public void setQualificationType(String qualificationType) { + this.qualificationType = qualificationType; + if(qualificationType != null){ + putQueryParameter("QualificationType", qualificationType); + } + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + if(instanceId != null){ + putQueryParameter("InstanceId", instanceId); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return CancelQualificationVerificationResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelQualificationVerificationResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelQualificationVerificationResponse.java new file mode 100644 index 0000000000..348b7126ed --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelQualificationVerificationResponse.java @@ -0,0 +1,46 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.CancelQualificationVerificationResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class CancelQualificationVerificationResponse extends AcsResponse { + + private String requestId; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + @Override + public CancelQualificationVerificationResponse getInstance(UnmarshallerContext context) { + return CancelQualificationVerificationResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/BidDomainRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelTaskRequest.java similarity index 52% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/BidDomainRequest.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelTaskRequest.java index 70cf1d82c2..93024fc2b5 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/BidDomainRequest.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelTaskRequest.java @@ -12,7 +12,7 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; @@ -22,16 +22,16 @@ * @author auto create * @version */ -public class BidDomainRequest extends RpcAcsRequest { +public class CancelTaskRequest extends RpcAcsRequest { - private String auctionId; + private String userClientIp; - private Float maxBid; + private String taskNo; - private String currency; - public BidDomainRequest() { - super("Domain", "2018-02-08", "BidDomain", "domain"); + private String lang; + public CancelTaskRequest() { + super("Domain", "2018-01-29", "CancelTask", "domain"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); @@ -39,42 +39,42 @@ public BidDomainRequest() { } catch (Exception e) {} } - public String getAuctionId() { - return this.auctionId; + public String getUserClientIp() { + return this.userClientIp; } - public void setAuctionId(String auctionId) { - this.auctionId = auctionId; - if(auctionId != null){ - putBodyParameter("AuctionId", auctionId); + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); } } - public Float getMaxBid() { - return this.maxBid; + public String getTaskNo() { + return this.taskNo; } - public void setMaxBid(Float maxBid) { - this.maxBid = maxBid; - if(maxBid != null){ - putBodyParameter("MaxBid", maxBid.toString()); + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + if(taskNo != null){ + putQueryParameter("TaskNo", taskNo); } } - public String getCurrency() { - return this.currency; + public String getLang() { + return this.lang; } - public void setCurrency(String currency) { - this.currency = currency; - if(currency != null){ - putBodyParameter("Currency", currency); + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); } } @Override - public Class getResponseClass() { - return BidDomainResponse.class; + public Class getResponseClass() { + return CancelTaskResponse.class; } } diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelTaskResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelTaskResponse.java new file mode 100644 index 0000000000..f2b31dbf18 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CancelTaskResponse.java @@ -0,0 +1,41 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.CancelTaskResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class CancelTaskResponse extends AcsResponse { + + private String requestId; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + @Override + public CancelTaskResponse getInstance(UnmarshallerContext context) { + return CancelTaskResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ChangeResourceGroupRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ChangeResourceGroupRequest.java new file mode 100644 index 0000000000..98de0c3a86 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ChangeResourceGroupRequest.java @@ -0,0 +1,106 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class ChangeResourceGroupRequest extends RpcAcsRequest { + + + private String resourceId; + + private String resourceType; + + private String newResourceGroupId; + + private String userClientIp; + + private String lang; + public ChangeResourceGroupRequest() { + super("Domain", "2018-01-29", "ChangeResourceGroup", "domain"); + 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 getResourceType() { + return this.resourceType; + } + + public void setResourceType(String resourceType) { + this.resourceType = resourceType; + if(resourceType != null){ + putQueryParameter("ResourceType", resourceType); + } + } + + public String getNewResourceGroupId() { + return this.newResourceGroupId; + } + + public void setNewResourceGroupId(String newResourceGroupId) { + this.newResourceGroupId = newResourceGroupId; + if(newResourceGroupId != null){ + putQueryParameter("NewResourceGroupId", newResourceGroupId); + } + } + + 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 getResponseClass() { + return ChangeResourceGroupResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/GetReserveDomainUrlResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ChangeResourceGroupResponse.java similarity index 66% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/GetReserveDomainUrlResponse.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ChangeResourceGroupResponse.java index b8e7881df8..d14618e9b3 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/GetReserveDomainUrlResponse.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ChangeResourceGroupResponse.java @@ -12,29 +12,21 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.GetReserveDomainUrlResponseUnmarshaller; +import com.aliyuncs.domain.transform.v20180129.ChangeResourceGroupResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ -public class GetReserveDomainUrlResponse extends AcsResponse { - - private String url; +public class ChangeResourceGroupResponse extends AcsResponse { private String requestId; - public String getUrl() { - return this.url; - } - - public void setUrl(String url) { - this.url = url; - } + private String result; public String getRequestId() { return this.requestId; @@ -44,9 +36,17 @@ public void setRequestId(String requestId) { this.requestId = requestId; } + public String getResult() { + return this.result; + } + + public void setResult(String result) { + this.result = result; + } + @Override - public GetReserveDomainUrlResponse getInstance(UnmarshallerContext context) { - return GetReserveDomainUrlResponseUnmarshaller.unmarshall(this, context); + public ChangeResourceGroupResponse getInstance(UnmarshallerContext context) { + return ChangeResourceGroupResponseUnmarshaller.unmarshall(this, context); } @Override diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckDomainRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckDomainRequest.java new file mode 100644 index 0000000000..df930ba2a8 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckDomainRequest.java @@ -0,0 +1,106 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class CheckDomainRequest extends RpcAcsRequest { + + + private String domainName; + + private String feeCurrency; + + private Integer feePeriod; + + private String feeCommand; + + private String lang; + public CheckDomainRequest() { + super("Domain", "2018-01-29", "CheckDomain", "domain"); + 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 getFeeCurrency() { + return this.feeCurrency; + } + + public void setFeeCurrency(String feeCurrency) { + this.feeCurrency = feeCurrency; + if(feeCurrency != null){ + putQueryParameter("FeeCurrency", feeCurrency); + } + } + + public Integer getFeePeriod() { + return this.feePeriod; + } + + public void setFeePeriod(Integer feePeriod) { + this.feePeriod = feePeriod; + if(feePeriod != null){ + putQueryParameter("FeePeriod", feePeriod.toString()); + } + } + + public String getFeeCommand() { + return this.feeCommand; + } + + public void setFeeCommand(String feeCommand) { + this.feeCommand = feeCommand; + if(feeCommand != null){ + putQueryParameter("FeeCommand", feeCommand); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return CheckDomainResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckDomainResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckDomainResponse.java new file mode 100644 index 0000000000..e449bd65b1 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckDomainResponse.java @@ -0,0 +1,145 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.CheckDomainResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class CheckDomainResponse extends AcsResponse { + + private String requestId; + + private String avail; + + private Long price; + + private String domainName; + + private String premium; + + private Boolean dynamicCheck; + + private String reason; + + private List staticPriceInfo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getAvail() { + return this.avail; + } + + public void setAvail(String avail) { + this.avail = avail; + } + + public Long getPrice() { + return this.price; + } + + public void setPrice(Long price) { + this.price = price; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public String getPremium() { + return this.premium; + } + + public void setPremium(String premium) { + this.premium = premium; + } + + public Boolean getDynamicCheck() { + return this.dynamicCheck; + } + + public void setDynamicCheck(Boolean dynamicCheck) { + this.dynamicCheck = dynamicCheck; + } + + public String getReason() { + return this.reason; + } + + public void setReason(String reason) { + this.reason = reason; + } + + public List getStaticPriceInfo() { + return this.staticPriceInfo; + } + + public void setStaticPriceInfo(List staticPriceInfo) { + this.staticPriceInfo = staticPriceInfo; + } + + public static class PriceInfo { + + private String action; + + private Double money; + + private Long period; + + public String getAction() { + return this.action; + } + + public void setAction(String action) { + this.action = action; + } + + public Double getMoney() { + return this.money; + } + + public void setMoney(Double money) { + this.money = money; + } + + public Long getPeriod() { + return this.period; + } + + public void setPeriod(Long period) { + this.period = period; + } + } + + @Override + public CheckDomainResponse getInstance(UnmarshallerContext context) { + return CheckDomainResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckDomainSunriseClaimRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckDomainSunriseClaimRequest.java new file mode 100644 index 0000000000..2789c59893 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckDomainSunriseClaimRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class CheckDomainSunriseClaimRequest extends RpcAcsRequest { + + + private String domainName; + + private String userClientIp; + + private String lang; + public CheckDomainSunriseClaimRequest() { + super("Domain", "2018-01-29", "CheckDomainSunriseClaim", "domain"); + 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 getResponseClass() { + return CheckDomainSunriseClaimResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckDomainSunriseClaimResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckDomainSunriseClaimResponse.java new file mode 100644 index 0000000000..96c8f2ee2f --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckDomainSunriseClaimResponse.java @@ -0,0 +1,61 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.CheckDomainSunriseClaimResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class CheckDomainSunriseClaimResponse extends AcsResponse { + + private String claimKey; + + private String requestId; + + private Integer result; + + public String getClaimKey() { + return this.claimKey; + } + + public void setClaimKey(String claimKey) { + this.claimKey = claimKey; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public Integer getResult() { + return this.result; + } + + public void setResult(Integer result) { + this.result = result; + } + + @Override + public CheckDomainSunriseClaimResponse getInstance(UnmarshallerContext context) { + return CheckDomainSunriseClaimResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CheckSelectedDomainStatusRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckIntlFixPriceDomainStatusRequest.java similarity index 71% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CheckSelectedDomainStatusRequest.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckIntlFixPriceDomainStatusRequest.java index 78f4e10b50..fc6741d70c 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CheckSelectedDomainStatusRequest.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckIntlFixPriceDomainStatusRequest.java @@ -12,9 +12,10 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.domain.Endpoint; @@ -22,12 +23,13 @@ * @author auto create * @version */ -public class CheckSelectedDomainStatusRequest extends RpcAcsRequest { +public class CheckIntlFixPriceDomainStatusRequest extends RpcAcsRequest { private String domain; - public CheckSelectedDomainStatusRequest() { - super("Domain", "2018-02-08", "CheckSelectedDomainStatus", "domain"); + public CheckIntlFixPriceDomainStatusRequest() { + super("Domain", "2018-01-29", "CheckIntlFixPriceDomainStatus", "domain"); + setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); @@ -47,8 +49,8 @@ public void setDomain(String domain) { } @Override - public Class getResponseClass() { - return CheckSelectedDomainStatusResponse.class; + public Class getResponseClass() { + return CheckIntlFixPriceDomainStatusResponse.class; } } diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CheckSelectedDomainStatusResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckIntlFixPriceDomainStatusResponse.java similarity index 63% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CheckSelectedDomainStatusResponse.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckIntlFixPriceDomainStatusResponse.java index cfe015cb4d..c5240f8947 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CheckSelectedDomainStatusResponse.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckIntlFixPriceDomainStatusResponse.java @@ -12,26 +12,20 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.CheckSelectedDomainStatusResponseUnmarshaller; +import com.aliyuncs.domain.transform.v20180129.CheckIntlFixPriceDomainStatusResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ -public class CheckSelectedDomainStatusResponse extends AcsResponse { +public class CheckIntlFixPriceDomainStatusResponse extends AcsResponse { private String requestId; - private String errorCode; - - private Boolean success; - - private Integer httpStatusCode; - private Module module; public String getRequestId() { @@ -42,30 +36,6 @@ public void setRequestId(String requestId) { this.requestId = requestId; } - public String getErrorCode() { - return this.errorCode; - } - - public void setErrorCode(String errorCode) { - this.errorCode = errorCode; - } - - public Boolean getSuccess() { - return this.success; - } - - public void setSuccess(Boolean success) { - this.success = success; - } - - public Integer getHttpStatusCode() { - return this.httpStatusCode; - } - - public void setHttpStatusCode(Integer httpStatusCode) { - this.httpStatusCode = httpStatusCode; - } - public Module getModule() { return this.module; } @@ -78,7 +48,9 @@ public static class Module { private String domain; - private Double price; + private Long price; + + private String currency; private Long regDate; @@ -96,14 +68,22 @@ public void setDomain(String domain) { this.domain = domain; } - public Double getPrice() { + public Long getPrice() { return this.price; } - public void setPrice(Double price) { + public void setPrice(Long price) { this.price = price; } + public String getCurrency() { + return this.currency; + } + + public void setCurrency(String currency) { + this.currency = currency; + } + public Long getRegDate() { return this.regDate; } @@ -138,8 +118,8 @@ public void setPremium(Boolean premium) { } @Override - public CheckSelectedDomainStatusResponse getInstance(UnmarshallerContext context) { - return CheckSelectedDomainStatusResponseUnmarshaller.unmarshall(this, context); + public CheckIntlFixPriceDomainStatusResponse getInstance(UnmarshallerContext context) { + return CheckIntlFixPriceDomainStatusResponseUnmarshaller.unmarshall(this, context); } @Override diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckMaxYearOfServerLockRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckMaxYearOfServerLockRequest.java new file mode 100644 index 0000000000..4f949cebd8 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckMaxYearOfServerLockRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class CheckMaxYearOfServerLockRequest extends RpcAcsRequest { + + + private String domainName; + + private String userClientIp; + + private String checkAction; + + private String lang; + public CheckMaxYearOfServerLockRequest() { + super("Domain", "2018-01-29", "CheckMaxYearOfServerLock", "domain"); + 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 getCheckAction() { + return this.checkAction; + } + + public void setCheckAction(String checkAction) { + this.checkAction = checkAction; + if(checkAction != null){ + putQueryParameter("CheckAction", checkAction); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return CheckMaxYearOfServerLockResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckMaxYearOfServerLockResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckMaxYearOfServerLockResponse.java new file mode 100644 index 0000000000..2b247be7c1 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckMaxYearOfServerLockResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.CheckMaxYearOfServerLockResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class CheckMaxYearOfServerLockResponse extends AcsResponse { + + private String requestId; + + private Integer maxYear; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public Integer getMaxYear() { + return this.maxYear; + } + + public void setMaxYear(Integer maxYear) { + this.maxYear = maxYear; + } + + @Override + public CheckMaxYearOfServerLockResponse getInstance(UnmarshallerContext context) { + return CheckMaxYearOfServerLockResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckProcessingServerLockApplyRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckProcessingServerLockApplyRequest.java new file mode 100644 index 0000000000..12ca0b19a5 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckProcessingServerLockApplyRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class CheckProcessingServerLockApplyRequest extends RpcAcsRequest { + + + private String domainName; + + private Integer feePeriod; + + private String userClientIp; + + private String lang; + public CheckProcessingServerLockApplyRequest() { + super("Domain", "2018-01-29", "CheckProcessingServerLockApply", "domain"); + 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 Integer getFeePeriod() { + return this.feePeriod; + } + + public void setFeePeriod(Integer feePeriod) { + this.feePeriod = feePeriod; + if(feePeriod != null){ + putQueryParameter("FeePeriod", feePeriod.toString()); + } + } + + 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 getResponseClass() { + return CheckProcessingServerLockApplyResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckProcessingServerLockApplyResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckProcessingServerLockApplyResponse.java new file mode 100644 index 0000000000..0847771935 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckProcessingServerLockApplyResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.CheckProcessingServerLockApplyResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class CheckProcessingServerLockApplyResponse extends AcsResponse { + + private String requestId; + + private Boolean exists; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public Boolean getExists() { + return this.exists; + } + + public void setExists(Boolean exists) { + this.exists = exists; + } + + @Override + public CheckProcessingServerLockApplyResponse getInstance(UnmarshallerContext context) { + return CheckProcessingServerLockApplyResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckTransferInFeasibilityRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckTransferInFeasibilityRequest.java new file mode 100644 index 0000000000..6ff145b4a9 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckTransferInFeasibilityRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class CheckTransferInFeasibilityRequest extends RpcAcsRequest { + + + private String domainName; + + private String transferAuthorizationCode; + + private String userClientIp; + + private String lang; + public CheckTransferInFeasibilityRequest() { + super("Domain", "2018-01-29", "CheckTransferInFeasibility", "domain"); + 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 getTransferAuthorizationCode() { + return this.transferAuthorizationCode; + } + + public void setTransferAuthorizationCode(String transferAuthorizationCode) { + this.transferAuthorizationCode = transferAuthorizationCode; + if(transferAuthorizationCode != null){ + putQueryParameter("TransferAuthorizationCode", transferAuthorizationCode); + } + } + + 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 getResponseClass() { + return CheckTransferInFeasibilityResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckTransferInFeasibilityResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckTransferInFeasibilityResponse.java new file mode 100644 index 0000000000..c376212ace --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CheckTransferInFeasibilityResponse.java @@ -0,0 +1,81 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.CheckTransferInFeasibilityResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class CheckTransferInFeasibilityResponse extends AcsResponse { + + private Boolean canTransfer; + + private String message; + + private String requestId; + + private String productId; + + private String code; + + public Boolean getCanTransfer() { + return this.canTransfer; + } + + public void setCanTransfer(Boolean canTransfer) { + this.canTransfer = canTransfer; + } + + public String getMessage() { + return this.message; + } + + public void setMessage(String message) { + this.message = message; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getProductId() { + return this.productId; + } + + public void setProductId(String productId) { + this.productId = productId; + } + + public String getCode() { + return this.code; + } + + public void setCode(String code) { + this.code = code; + } + + @Override + public CheckTransferInFeasibilityResponse getInstance(UnmarshallerContext context) { + return CheckTransferInFeasibilityResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ConfirmTransferInEmailRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ConfirmTransferInEmailRequest.java new file mode 100644 index 0000000000..93dc303296 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ConfirmTransferInEmailRequest.java @@ -0,0 +1,96 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class ConfirmTransferInEmailRequest extends RpcAcsRequest { + + + private List domainNames; + + private String userClientIp; + + private String lang; + + private String email; + public ConfirmTransferInEmailRequest() { + super("Domain", "2018-01-29", "ConfirmTransferInEmail", "domain"); + 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 getDomainNames() { + return this.domainNames; + } + + public void setDomainNames(List domainNames) { + this.domainNames = domainNames; + if (domainNames != null) { + for (int i = 0; i < domainNames.size(); i++) { + putQueryParameter("DomainName." + (i + 1) , domainNames.get(i)); + } + } + } + + 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 getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + if(email != null){ + putQueryParameter("Email", email); + } + } + + @Override + public Class getResponseClass() { + return ConfirmTransferInEmailResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ConfirmTransferInEmailResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ConfirmTransferInEmailResponse.java new file mode 100644 index 0000000000..68689bdbef --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ConfirmTransferInEmailResponse.java @@ -0,0 +1,62 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.ConfirmTransferInEmailResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class ConfirmTransferInEmailResponse extends AcsResponse { + + private String requestId; + + private List successList; + + private List failList; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getSuccessList() { + return this.successList; + } + + public void setSuccessList(List successList) { + this.successList = successList; + } + + public List getFailList() { + return this.failList; + } + + public void setFailList(List failList) { + this.failList = failList; + } + + @Override + public ConfirmTransferInEmailResponse getInstance(UnmarshallerContext context) { + return ConfirmTransferInEmailResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CreateFixedPriceDemandOrderRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CreateIntlFixedPriceDomainOrderRequest.java similarity index 53% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CreateFixedPriceDemandOrderRequest.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CreateIntlFixedPriceDomainOrderRequest.java index 8f977dc497..6d3b005d67 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CreateFixedPriceDemandOrderRequest.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CreateIntlFixedPriceDomainOrderRequest.java @@ -12,9 +12,10 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.domain.Endpoint; @@ -22,18 +23,19 @@ * @author auto create * @version */ -public class CreateFixedPriceDemandOrderRequest extends RpcAcsRequest { +public class CreateIntlFixedPriceDomainOrderRequest extends RpcAcsRequest { - private String code; + private Boolean autoPay; - private String contactId; + private Long contactId; - private String source; + private Long expectedPrice; private String domain; - public CreateFixedPriceDemandOrderRequest() { - super("Domain", "2018-02-08", "CreateFixedPriceDemandOrder", "domain"); + public CreateIntlFixedPriceDomainOrderRequest() { + super("Domain", "2018-01-29", "CreateIntlFixedPriceDomainOrder", "domain"); + setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); @@ -41,36 +43,36 @@ public CreateFixedPriceDemandOrderRequest() { } catch (Exception e) {} } - public String getCode() { - return this.code; + public Boolean getAutoPay() { + return this.autoPay; } - public void setCode(String code) { - this.code = code; - if(code != null){ - putQueryParameter("Code", code); + public void setAutoPay(Boolean autoPay) { + this.autoPay = autoPay; + if(autoPay != null){ + putQueryParameter("AutoPay", autoPay.toString()); } } - public String getContactId() { + public Long getContactId() { return this.contactId; } - public void setContactId(String contactId) { + public void setContactId(Long contactId) { this.contactId = contactId; if(contactId != null){ - putQueryParameter("ContactId", contactId); + putQueryParameter("ContactId", contactId.toString()); } } - public String getSource() { - return this.source; + public Long getExpectedPrice() { + return this.expectedPrice; } - public void setSource(String source) { - this.source = source; - if(source != null){ - putQueryParameter("Source", source); + public void setExpectedPrice(Long expectedPrice) { + this.expectedPrice = expectedPrice; + if(expectedPrice != null){ + putQueryParameter("ExpectedPrice", expectedPrice.toString()); } } @@ -86,8 +88,8 @@ public void setDomain(String domain) { } @Override - public Class getResponseClass() { - return CreateFixedPriceDemandOrderResponse.class; + public Class getResponseClass() { + return CreateIntlFixedPriceDomainOrderResponse.class; } } diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CreateFixedPriceDemandOrderResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CreateIntlFixedPriceDomainOrderResponse.java similarity index 56% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CreateFixedPriceDemandOrderResponse.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CreateIntlFixedPriceDomainOrderResponse.java index e28c3805d2..e5adff4d73 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CreateFixedPriceDemandOrderResponse.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/CreateIntlFixedPriceDomainOrderResponse.java @@ -12,26 +12,20 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.CreateFixedPriceDemandOrderResponseUnmarshaller; +import com.aliyuncs.domain.transform.v20180129.CreateIntlFixedPriceDomainOrderResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ -public class CreateFixedPriceDemandOrderResponse extends AcsResponse { +public class CreateIntlFixedPriceDomainOrderResponse extends AcsResponse { private String requestId; - private Integer httpStatusCode; - - private String errorCode; - - private Boolean success; - private Module module; public String getRequestId() { @@ -42,30 +36,6 @@ public void setRequestId(String requestId) { this.requestId = requestId; } - public Integer getHttpStatusCode() { - return this.httpStatusCode; - } - - public void setHttpStatusCode(Integer httpStatusCode) { - this.httpStatusCode = httpStatusCode; - } - - public String getErrorCode() { - return this.errorCode; - } - - public void setErrorCode(String errorCode) { - this.errorCode = errorCode; - } - - public Boolean getSuccess() { - return this.success; - } - - public void setSuccess(Boolean success) { - this.success = success; - } - public Module getModule() { return this.module; } @@ -76,11 +46,21 @@ public void setModule(Module module) { public static class Module { + private String domain; + private String orderNo; - private Long price; + private Long payPrice; - private String domain; + private String payUrl; + + public String getDomain() { + return this.domain; + } + + public void setDomain(String domain) { + this.domain = domain; + } public String getOrderNo() { return this.orderNo; @@ -90,26 +70,26 @@ public void setOrderNo(String orderNo) { this.orderNo = orderNo; } - public Long getPrice() { - return this.price; + public Long getPayPrice() { + return this.payPrice; } - public void setPrice(Long price) { - this.price = price; + public void setPayPrice(Long payPrice) { + this.payPrice = payPrice; } - public String getDomain() { - return this.domain; + public String getPayUrl() { + return this.payUrl; } - public void setDomain(String domain) { - this.domain = domain; + public void setPayUrl(String payUrl) { + this.payUrl = payUrl; } } @Override - public CreateFixedPriceDemandOrderResponse getInstance(UnmarshallerContext context) { - return CreateFixedPriceDemandOrderResponseUnmarshaller.unmarshall(this, context); + public CreateIntlFixedPriceDomainOrderResponse getInstance(UnmarshallerContext context) { + return CreateIntlFixedPriceDomainOrderResponseUnmarshaller.unmarshall(this, context); } @Override diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryExchangeRateRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteContactTemplatesRequest.java similarity index 51% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryExchangeRateRequest.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteContactTemplatesRequest.java index fe9b7df000..943435493d 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryExchangeRateRequest.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteContactTemplatesRequest.java @@ -12,10 +12,9 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.RpcAcsRequest; -import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.domain.Endpoint; @@ -23,15 +22,14 @@ * @author auto create * @version */ -public class QueryExchangeRateRequest extends RpcAcsRequest { +public class DeleteContactTemplatesRequest extends RpcAcsRequest { - private String toCurrency; + private String userClientIp; - private String fromCurrency; - public QueryExchangeRateRequest() { - super("Domain", "2018-02-08", "QueryExchangeRate", "domain"); - setProtocol(ProtocolType.HTTPS); + private String registrantProfileIds; + public DeleteContactTemplatesRequest() { + super("Domain", "2018-01-29", "DeleteContactTemplates", "domain"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); @@ -39,31 +37,31 @@ public QueryExchangeRateRequest() { } catch (Exception e) {} } - public String getToCurrency() { - return this.toCurrency; + public String getUserClientIp() { + return this.userClientIp; } - public void setToCurrency(String toCurrency) { - this.toCurrency = toCurrency; - if(toCurrency != null){ - putQueryParameter("ToCurrency", toCurrency); + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); } } - public String getFromCurrency() { - return this.fromCurrency; + public String getRegistrantProfileIds() { + return this.registrantProfileIds; } - public void setFromCurrency(String fromCurrency) { - this.fromCurrency = fromCurrency; - if(fromCurrency != null){ - putQueryParameter("FromCurrency", fromCurrency); + public void setRegistrantProfileIds(String registrantProfileIds) { + this.registrantProfileIds = registrantProfileIds; + if(registrantProfileIds != null){ + putQueryParameter("RegistrantProfileIds", registrantProfileIds); } } @Override - public Class getResponseClass() { - return QueryExchangeRateResponse.class; + public Class getResponseClass() { + return DeleteContactTemplatesResponse.class; } } diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteContactTemplatesResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteContactTemplatesResponse.java new file mode 100644 index 0000000000..23739ac4c6 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteContactTemplatesResponse.java @@ -0,0 +1,46 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.DeleteContactTemplatesResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class DeleteContactTemplatesResponse extends AcsResponse { + + private String requestId; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + @Override + public DeleteContactTemplatesResponse getInstance(UnmarshallerContext context) { + return DeleteContactTemplatesResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteDomainGroupRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteDomainGroupRequest.java new file mode 100644 index 0000000000..1696adf863 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteDomainGroupRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class DeleteDomainGroupRequest extends RpcAcsRequest { + + + private Long domainGroupId; + + private String userClientIp; + + private String lang; + public DeleteDomainGroupRequest() { + super("Domain", "2018-01-29", "DeleteDomainGroup", "domain"); + 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 getDomainGroupId() { + return this.domainGroupId; + } + + public void setDomainGroupId(Long domainGroupId) { + this.domainGroupId = domainGroupId; + if(domainGroupId != null){ + putQueryParameter("DomainGroupId", domainGroupId.toString()); + } + } + + 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 getResponseClass() { + return DeleteDomainGroupResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteDomainGroupResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteDomainGroupResponse.java new file mode 100644 index 0000000000..9f75372f3d --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteDomainGroupResponse.java @@ -0,0 +1,41 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.DeleteDomainGroupResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class DeleteDomainGroupResponse extends AcsResponse { + + private String requestId; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + @Override + public DeleteDomainGroupResponse getInstance(UnmarshallerContext context) { + return DeleteDomainGroupResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteEmailVerificationRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteEmailVerificationRequest.java new file mode 100644 index 0000000000..24a19f880d --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteEmailVerificationRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class DeleteEmailVerificationRequest extends RpcAcsRequest { + + + private String userClientIp; + + private String lang; + + private String email; + public DeleteEmailVerificationRequest() { + super("Domain", "2018-01-29", "DeleteEmailVerification", "domain"); + 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 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 getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + if(email != null){ + putQueryParameter("Email", email); + } + } + + @Override + public Class getResponseClass() { + return DeleteEmailVerificationResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteEmailVerificationResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteEmailVerificationResponse.java new file mode 100644 index 0000000000..88962e7e04 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteEmailVerificationResponse.java @@ -0,0 +1,100 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.DeleteEmailVerificationResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class DeleteEmailVerificationResponse extends AcsResponse { + + private String requestId; + + private List successList; + + private List failList; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getSuccessList() { + return this.successList; + } + + public void setSuccessList(List successList) { + this.successList = successList; + } + + public List getFailList() { + return this.failList; + } + + public void setFailList(List failList) { + this.failList = failList; + } + + public static class SendResult { + + private String email; + + private String code; + + private String message; + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getCode() { + return this.code; + } + + public void setCode(String code) { + this.code = code; + } + + public String getMessage() { + return this.message; + } + + public void setMessage(String message) { + this.message = message; + } + } + + @Override + public DeleteEmailVerificationResponse getInstance(UnmarshallerContext context) { + return DeleteEmailVerificationResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteRegistrantProfileRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteRegistrantProfileRequest.java new file mode 100644 index 0000000000..89a0b857a7 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteRegistrantProfileRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class DeleteRegistrantProfileRequest extends RpcAcsRequest { + + + private Long registrantProfileId; + + private String userClientIp; + + private String lang; + public DeleteRegistrantProfileRequest() { + super("Domain", "2018-01-29", "DeleteRegistrantProfile", "domain"); + 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 getRegistrantProfileId() { + return this.registrantProfileId; + } + + public void setRegistrantProfileId(Long registrantProfileId) { + this.registrantProfileId = registrantProfileId; + if(registrantProfileId != null){ + putQueryParameter("RegistrantProfileId", registrantProfileId.toString()); + } + } + + 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 getResponseClass() { + return DeleteRegistrantProfileResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteRegistrantProfileResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteRegistrantProfileResponse.java new file mode 100644 index 0000000000..fa6df6ee40 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DeleteRegistrantProfileResponse.java @@ -0,0 +1,41 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.DeleteRegistrantProfileResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class DeleteRegistrantProfileResponse extends AcsResponse { + + private String requestId; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + @Override + public DeleteRegistrantProfileResponse getInstance(UnmarshallerContext context) { + return DeleteRegistrantProfileResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/AcceptDemandRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DomainSpecialBizCancelRequest.java similarity index 58% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/AcceptDemandRequest.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DomainSpecialBizCancelRequest.java index f1e3434dc5..c79fd3ed09 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/AcceptDemandRequest.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DomainSpecialBizCancelRequest.java @@ -12,7 +12,7 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; @@ -22,14 +22,14 @@ * @author auto create * @version */ -public class AcceptDemandRequest extends RpcAcsRequest { +public class DomainSpecialBizCancelRequest extends RpcAcsRequest { - private String message; + private Long bizId; - private String bizId; - public AcceptDemandRequest() { - super("Domain", "2018-02-08", "AcceptDemand", "domain"); + private String userClientIp; + public DomainSpecialBizCancelRequest() { + super("Domain", "2018-01-29", "DomainSpecialBizCancel", "domain"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); @@ -37,31 +37,31 @@ public AcceptDemandRequest() { } catch (Exception e) {} } - public String getMessage() { - return this.message; + public Long getBizId() { + return this.bizId; } - public void setMessage(String message) { - this.message = message; - if(message != null){ - putQueryParameter("Message", message); + public void setBizId(Long bizId) { + this.bizId = bizId; + if(bizId != null){ + putBodyParameter("BizId", bizId.toString()); } } - public String getBizId() { - return this.bizId; + public String getUserClientIp() { + return this.userClientIp; } - public void setBizId(String bizId) { - this.bizId = bizId; - if(bizId != null){ - putQueryParameter("BizId", bizId); + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); } } @Override - public Class getResponseClass() { - return AcceptDemandResponse.class; + public Class getResponseClass() { + return DomainSpecialBizCancelResponse.class; } } diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/SubmitPurchaseInfoResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DomainSpecialBizCancelResponse.java similarity index 67% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/SubmitPurchaseInfoResponse.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DomainSpecialBizCancelResponse.java index 87a29e5a75..baf13357e8 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/SubmitPurchaseInfoResponse.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/DomainSpecialBizCancelResponse.java @@ -12,21 +12,21 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.SubmitPurchaseInfoResponseUnmarshaller; +import com.aliyuncs.domain.transform.v20180129.DomainSpecialBizCancelResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ -public class SubmitPurchaseInfoResponse extends AcsResponse { +public class DomainSpecialBizCancelResponse extends AcsResponse { @Override - public SubmitPurchaseInfoResponse getInstance(UnmarshallerContext context) { - return SubmitPurchaseInfoResponseUnmarshaller.unmarshall(this, context); + public DomainSpecialBizCancelResponse getInstance(UnmarshallerContext context) { + return DomainSpecialBizCancelResponseUnmarshaller.unmarshall(this, context); } @Override diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/EmailVerifiedRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/EmailVerifiedRequest.java new file mode 100644 index 0000000000..80cc056af8 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/EmailVerifiedRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class EmailVerifiedRequest extends RpcAcsRequest { + + + private String userClientIp; + + private String lang; + + private String email; + public EmailVerifiedRequest() { + super("Domain", "2018-01-29", "EmailVerified", "domain"); + 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 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 getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + if(email != null){ + putQueryParameter("Email", email); + } + } + + @Override + public Class getResponseClass() { + return EmailVerifiedResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/ChangeAuctionResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/EmailVerifiedResponse.java similarity index 75% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/ChangeAuctionResponse.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/EmailVerifiedResponse.java index 156359b5d2..a4a04253ba 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/ChangeAuctionResponse.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/EmailVerifiedResponse.java @@ -12,17 +12,17 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.ChangeAuctionResponseUnmarshaller; +import com.aliyuncs.domain.transform.v20180129.EmailVerifiedResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ -public class ChangeAuctionResponse extends AcsResponse { +public class EmailVerifiedResponse extends AcsResponse { private String requestId; @@ -35,8 +35,8 @@ public void setRequestId(String requestId) { } @Override - public ChangeAuctionResponse getInstance(UnmarshallerContext context) { - return ChangeAuctionResponseUnmarshaller.unmarshall(this, context); + public EmailVerifiedResponse getInstance(UnmarshallerContext context) { + return EmailVerifiedResponseUnmarshaller.unmarshall(this, context); } @Override diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/FuzzyMatchDomainSensitiveWordRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/FuzzyMatchDomainSensitiveWordRequest.java new file mode 100644 index 0000000000..86a6a02767 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/FuzzyMatchDomainSensitiveWordRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class FuzzyMatchDomainSensitiveWordRequest extends RpcAcsRequest { + + + private String userClientIp; + + private String keyword; + + private String lang; + public FuzzyMatchDomainSensitiveWordRequest() { + super("Domain", "2018-01-29", "FuzzyMatchDomainSensitiveWord", "domain"); + 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 getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + 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); + } + } + + @Override + public Class getResponseClass() { + return FuzzyMatchDomainSensitiveWordResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/FuzzyMatchDomainSensitiveWordResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/FuzzyMatchDomainSensitiveWordResponse.java new file mode 100644 index 0000000000..77216ad1e2 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/FuzzyMatchDomainSensitiveWordResponse.java @@ -0,0 +1,85 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.FuzzyMatchDomainSensitiveWordResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class FuzzyMatchDomainSensitiveWordResponse extends AcsResponse { + + private Boolean exist; + + private String requestId; + + private String keyword; + + private List matchedSentiveWords; + + public Boolean getExist() { + return this.exist; + } + + public void setExist(Boolean exist) { + this.exist = exist; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getKeyword() { + return this.keyword; + } + + public void setKeyword(String keyword) { + this.keyword = keyword; + } + + public List getMatchedSentiveWords() { + return this.matchedSentiveWords; + } + + public void setMatchedSentiveWords(List matchedSentiveWords) { + this.matchedSentiveWords = matchedSentiveWords; + } + + public static class MatchedSensitiveWord { + + private String word; + + public String getWord() { + return this.word; + } + + public void setWord(String word) { + this.word = word; + } + } + + @Override + public FuzzyMatchDomainSensitiveWordResponse getInstance(UnmarshallerContext context) { + return FuzzyMatchDomainSensitiveWordResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/SelectedDomainListRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/GetIntlFixPriceDomainListUrlRequest.java similarity index 76% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/SelectedDomainListRequest.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/GetIntlFixPriceDomainListUrlRequest.java index 35b89959cd..e40995a736 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/SelectedDomainListRequest.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/GetIntlFixPriceDomainListUrlRequest.java @@ -12,7 +12,7 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.ProtocolType; @@ -23,12 +23,12 @@ * @author auto create * @version */ -public class SelectedDomainListRequest extends RpcAcsRequest { +public class GetIntlFixPriceDomainListUrlRequest extends RpcAcsRequest { private String listDate; - public SelectedDomainListRequest() { - super("Domain", "2018-02-08", "SelectedDomainList", "domain"); + public GetIntlFixPriceDomainListUrlRequest() { + super("Domain", "2018-01-29", "GetIntlFixPriceDomainListUrl", "domain"); setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); try { @@ -49,8 +49,8 @@ public void setListDate(String listDate) { } @Override - public Class getResponseClass() { - return SelectedDomainListResponse.class; + public Class getResponseClass() { + return GetIntlFixPriceDomainListUrlResponse.class; } } diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/SelectedDomainListResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/GetIntlFixPriceDomainListUrlResponse.java similarity index 64% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/SelectedDomainListResponse.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/GetIntlFixPriceDomainListUrlResponse.java index 1e103d3adf..62af0924ac 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/SelectedDomainListResponse.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/GetIntlFixPriceDomainListUrlResponse.java @@ -12,24 +12,20 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.SelectedDomainListResponseUnmarshaller; +import com.aliyuncs.domain.transform.v20180129.GetIntlFixPriceDomainListUrlResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ -public class SelectedDomainListResponse extends AcsResponse { +public class GetIntlFixPriceDomainListUrlResponse extends AcsResponse { private String requestId; - private Boolean success; - - private String errorCode; - private Module module; public String getRequestId() { @@ -40,22 +36,6 @@ public void setRequestId(String requestId) { this.requestId = requestId; } - public Boolean getSuccess() { - return this.success; - } - - public void setSuccess(Boolean success) { - this.success = success; - } - - public String getErrorCode() { - return this.errorCode; - } - - public void setErrorCode(String errorCode) { - this.errorCode = errorCode; - } - public Module getModule() { return this.module; } @@ -78,8 +58,8 @@ public void setDownloadUrl(String downloadUrl) { } @Override - public SelectedDomainListResponse getInstance(UnmarshallerContext context) { - return SelectedDomainListResponseUnmarshaller.unmarshall(this, context); + public GetIntlFixPriceDomainListUrlResponse getInstance(UnmarshallerContext context) { + return GetIntlFixPriceDomainListUrlResponseUnmarshaller.unmarshall(this, context); } @Override diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/GetOperationOssUploadPolicyRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/GetOperationOssUploadPolicyRequest.java new file mode 100644 index 0000000000..7c61b79ad9 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/GetOperationOssUploadPolicyRequest.java @@ -0,0 +1,67 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class GetOperationOssUploadPolicyRequest extends RpcAcsRequest { + + + private Integer auditType; + + private String lang; + public GetOperationOssUploadPolicyRequest() { + super("Domain", "2018-01-29", "GetOperationOssUploadPolicy", "domain"); + 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 getAuditType() { + return this.auditType; + } + + public void setAuditType(Integer auditType) { + this.auditType = auditType; + if(auditType != null){ + putQueryParameter("AuditType", auditType.toString()); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return GetOperationOssUploadPolicyResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/GetOperationOssUploadPolicyResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/GetOperationOssUploadPolicyResponse.java new file mode 100644 index 0000000000..f1b814ce1b --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/GetOperationOssUploadPolicyResponse.java @@ -0,0 +1,106 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.GetOperationOssUploadPolicyResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class GetOperationOssUploadPolicyResponse extends AcsResponse { + + private String fileDir; + + private String encodedPolicy; + + private String requestId; + + private String accessid; + + private String signature; + + private String host; + + private String expireTime; + + public String getFileDir() { + return this.fileDir; + } + + public void setFileDir(String fileDir) { + this.fileDir = fileDir; + } + + public String getEncodedPolicy() { + return this.encodedPolicy; + } + + public void setEncodedPolicy(String encodedPolicy) { + this.encodedPolicy = encodedPolicy; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getAccessid() { + return this.accessid; + } + + public void setAccessid(String accessid) { + this.accessid = accessid; + } + + public String getSignature() { + return this.signature; + } + + public void setSignature(String signature) { + this.signature = signature; + } + + public String getHost() { + return this.host; + } + + public void setHost(String host) { + this.host = host; + } + + public String getExpireTime() { + return this.expireTime; + } + + public void setExpireTime(String expireTime) { + this.expireTime = expireTime; + } + + @Override + public GetOperationOssUploadPolicyResponse getInstance(UnmarshallerContext context) { + return GetOperationOssUploadPolicyResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/GetQualificationUploadPolicyRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/GetQualificationUploadPolicyRequest.java new file mode 100644 index 0000000000..dd3821399d --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/GetQualificationUploadPolicyRequest.java @@ -0,0 +1,67 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class GetQualificationUploadPolicyRequest extends RpcAcsRequest { + + + private String userClientIp; + + private String lang; + public GetQualificationUploadPolicyRequest() { + super("Domain", "2018-01-29", "GetQualificationUploadPolicy", "domain"); + 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 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 getResponseClass() { + return GetQualificationUploadPolicyResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/GetQualificationUploadPolicyResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/GetQualificationUploadPolicyResponse.java new file mode 100644 index 0000000000..fa5a6ac33f --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/GetQualificationUploadPolicyResponse.java @@ -0,0 +1,111 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.GetQualificationUploadPolicyResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class GetQualificationUploadPolicyResponse extends AcsResponse { + + private String policy; + + private String expire; + + private String requestId; + + private String accessid; + + private String signature; + + private String host; + + private String prefix; + + private String dir; + + public String getPolicy() { + return this.policy; + } + + public void setPolicy(String policy) { + this.policy = policy; + } + + public String getExpire() { + return this.expire; + } + + public void setExpire(String expire) { + this.expire = expire; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getAccessid() { + return this.accessid; + } + + public void setAccessid(String accessid) { + this.accessid = accessid; + } + + public String getSignature() { + return this.signature; + } + + public void setSignature(String signature) { + this.signature = signature; + } + + public String getHost() { + return this.host; + } + + public void setHost(String host) { + this.host = host; + } + + public String getPrefix() { + return this.prefix; + } + + public void setPrefix(String prefix) { + this.prefix = prefix; + } + + public String getDir() { + return this.dir; + } + + public void setDir(String dir) { + this.dir = dir; + } + + @Override + public GetQualificationUploadPolicyResponse getInstance(UnmarshallerContext context) { + return GetQualificationUploadPolicyResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ListEmailVerificationRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ListEmailVerificationRequest.java new file mode 100644 index 0000000000..dadd8cc5d4 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ListEmailVerificationRequest.java @@ -0,0 +1,145 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class ListEmailVerificationRequest extends RpcAcsRequest { + + + private Long endCreateTime; + + private Integer pageNum; + + private Integer verificationStatus; + + private Long beginCreateTime; + + private Integer pageSize; + + private String userClientIp; + + private String lang; + + private String email; + public ListEmailVerificationRequest() { + super("Domain", "2018-01-29", "ListEmailVerification", "domain"); + 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 getEndCreateTime() { + return this.endCreateTime; + } + + public void setEndCreateTime(Long endCreateTime) { + this.endCreateTime = endCreateTime; + if(endCreateTime != null){ + putQueryParameter("EndCreateTime", endCreateTime.toString()); + } + } + + public Integer getPageNum() { + return this.pageNum; + } + + public void setPageNum(Integer pageNum) { + this.pageNum = pageNum; + if(pageNum != null){ + putQueryParameter("PageNum", pageNum.toString()); + } + } + + public Integer getVerificationStatus() { + return this.verificationStatus; + } + + public void setVerificationStatus(Integer verificationStatus) { + this.verificationStatus = verificationStatus; + if(verificationStatus != null){ + putQueryParameter("VerificationStatus", verificationStatus.toString()); + } + } + + public Long getBeginCreateTime() { + return this.beginCreateTime; + } + + public void setBeginCreateTime(Long beginCreateTime) { + this.beginCreateTime = beginCreateTime; + if(beginCreateTime != null){ + putQueryParameter("BeginCreateTime", beginCreateTime.toString()); + } + } + + public Integer getPageSize() { + return this.pageSize; + } + + public void setPageSize(Integer pageSize) { + this.pageSize = pageSize; + if(pageSize != null){ + putQueryParameter("PageSize", pageSize.toString()); + } + } + + 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 getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + if(email != null){ + putQueryParameter("Email", email); + } + } + + @Override + public Class getResponseClass() { + return ListEmailVerificationResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ListEmailVerificationResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ListEmailVerificationResponse.java new file mode 100644 index 0000000000..9f32446a98 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ListEmailVerificationResponse.java @@ -0,0 +1,220 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.ListEmailVerificationResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class ListEmailVerificationResponse extends AcsResponse { + + private Boolean prePage; + + private Integer currentPageNum; + + private String requestId; + + private Integer pageSize; + + private Integer totalPageNum; + + private Integer totalItemNum; + + private Boolean nextPage; + + private List data; + + public Boolean getPrePage() { + return this.prePage; + } + + public void setPrePage(Boolean prePage) { + this.prePage = prePage; + } + + public Integer getCurrentPageNum() { + return this.currentPageNum; + } + + public void setCurrentPageNum(Integer currentPageNum) { + this.currentPageNum = currentPageNum; + } + + 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 getTotalPageNum() { + return this.totalPageNum; + } + + public void setTotalPageNum(Integer totalPageNum) { + this.totalPageNum = totalPageNum; + } + + public Integer getTotalItemNum() { + return this.totalItemNum; + } + + public void setTotalItemNum(Integer totalItemNum) { + this.totalItemNum = totalItemNum; + } + + public Boolean getNextPage() { + return this.nextPage; + } + + public void setNextPage(Boolean nextPage) { + this.nextPage = nextPage; + } + + public List getData() { + return this.data; + } + + public void setData(List data) { + this.data = data; + } + + public static class EmailVerification { + + private String verificationTime; + + private String email; + + private String emailVerificationNo; + + private String userId; + + private String gmtCreate; + + private Integer verificationStatus; + + private String tokenSendTime; + + private String sendIp; + + private String gmtModified; + + private String confirmIp; + + public String getVerificationTime() { + return this.verificationTime; + } + + public void setVerificationTime(String verificationTime) { + this.verificationTime = verificationTime; + } + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getEmailVerificationNo() { + return this.emailVerificationNo; + } + + public void setEmailVerificationNo(String emailVerificationNo) { + this.emailVerificationNo = emailVerificationNo; + } + + public String getUserId() { + return this.userId; + } + + public void setUserId(String userId) { + this.userId = userId; + } + + public String getGmtCreate() { + return this.gmtCreate; + } + + public void setGmtCreate(String gmtCreate) { + this.gmtCreate = gmtCreate; + } + + public Integer getVerificationStatus() { + return this.verificationStatus; + } + + public void setVerificationStatus(Integer verificationStatus) { + this.verificationStatus = verificationStatus; + } + + public String getTokenSendTime() { + return this.tokenSendTime; + } + + public void setTokenSendTime(String tokenSendTime) { + this.tokenSendTime = tokenSendTime; + } + + public String getSendIp() { + return this.sendIp; + } + + public void setSendIp(String sendIp) { + this.sendIp = sendIp; + } + + public String getGmtModified() { + return this.gmtModified; + } + + public void setGmtModified(String gmtModified) { + this.gmtModified = gmtModified; + } + + public String getConfirmIp() { + return this.confirmIp; + } + + public void setConfirmIp(String confirmIp) { + this.confirmIp = confirmIp; + } + } + + @Override + public ListEmailVerificationResponse getInstance(UnmarshallerContext context) { + return ListEmailVerificationResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ListServerLockRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ListServerLockRequest.java new file mode 100644 index 0000000000..5b4ac1f26e --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ListServerLockRequest.java @@ -0,0 +1,210 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class ListServerLockRequest extends RpcAcsRequest { + + + private String lockProductId; + + private Long endExpireDate; + + private Integer pageNum; + + private Long beginStartDate; + + private String orderByType; + + private Integer serverLockStatus; + + private Long startExpireDate; + + private Integer pageSize; + + private String lang; + + private String domainName; + + private String orderBy; + + private Long endStartDate; + + private String userClientIp; + public ListServerLockRequest() { + super("Domain", "2018-01-29", "ListServerLock", "domain"); + 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 getLockProductId() { + return this.lockProductId; + } + + public void setLockProductId(String lockProductId) { + this.lockProductId = lockProductId; + if(lockProductId != null){ + putQueryParameter("LockProductId", lockProductId); + } + } + + public Long getEndExpireDate() { + return this.endExpireDate; + } + + public void setEndExpireDate(Long endExpireDate) { + this.endExpireDate = endExpireDate; + if(endExpireDate != null){ + putQueryParameter("EndExpireDate", endExpireDate.toString()); + } + } + + public Integer getPageNum() { + return this.pageNum; + } + + public void setPageNum(Integer pageNum) { + this.pageNum = pageNum; + if(pageNum != null){ + putQueryParameter("PageNum", pageNum.toString()); + } + } + + public Long getBeginStartDate() { + return this.beginStartDate; + } + + public void setBeginStartDate(Long beginStartDate) { + this.beginStartDate = beginStartDate; + if(beginStartDate != null){ + putQueryParameter("BeginStartDate", beginStartDate.toString()); + } + } + + public String getOrderByType() { + return this.orderByType; + } + + public void setOrderByType(String orderByType) { + this.orderByType = orderByType; + if(orderByType != null){ + putQueryParameter("OrderByType", orderByType); + } + } + + public Integer getServerLockStatus() { + return this.serverLockStatus; + } + + public void setServerLockStatus(Integer serverLockStatus) { + this.serverLockStatus = serverLockStatus; + if(serverLockStatus != null){ + putQueryParameter("ServerLockStatus", serverLockStatus.toString()); + } + } + + public Long getStartExpireDate() { + return this.startExpireDate; + } + + public void setStartExpireDate(Long startExpireDate) { + this.startExpireDate = startExpireDate; + if(startExpireDate != null){ + putQueryParameter("StartExpireDate", startExpireDate.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 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 Long getEndStartDate() { + return this.endStartDate; + } + + public void setEndStartDate(Long endStartDate) { + this.endStartDate = endStartDate; + if(endStartDate != null){ + putQueryParameter("EndStartDate", endStartDate.toString()); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + @Override + public Class getResponseClass() { + return ListServerLockResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ListServerLockResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ListServerLockResponse.java new file mode 100644 index 0000000000..8474df8623 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ListServerLockResponse.java @@ -0,0 +1,220 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.ListServerLockResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class ListServerLockResponse extends AcsResponse { + + private Boolean prePage; + + private Integer currentPageNum; + + private String requestId; + + private Integer pageSize; + + private Integer totalPageNum; + + private Integer totalItemNum; + + private Boolean nextPage; + + private List data; + + public Boolean getPrePage() { + return this.prePage; + } + + public void setPrePage(Boolean prePage) { + this.prePage = prePage; + } + + public Integer getCurrentPageNum() { + return this.currentPageNum; + } + + public void setCurrentPageNum(Integer currentPageNum) { + this.currentPageNum = currentPageNum; + } + + 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 getTotalPageNum() { + return this.totalPageNum; + } + + public void setTotalPageNum(Integer totalPageNum) { + this.totalPageNum = totalPageNum; + } + + public Integer getTotalItemNum() { + return this.totalItemNum; + } + + public void setTotalItemNum(Integer totalItemNum) { + this.totalItemNum = totalItemNum; + } + + public Boolean getNextPage() { + return this.nextPage; + } + + public void setNextPage(Boolean nextPage) { + this.nextPage = nextPage; + } + + public List getData() { + return this.data; + } + + public void setData(List data) { + this.data = data; + } + + public static class QueryTransferInResponse { + + private String serverLockStatus; + + private String lockInstanceId; + + private String userId; + + private String gmtCreate; + + private String expireDate; + + private String startDate; + + private String lockProductId; + + private String domainInstanceId; + + private String gmtModified; + + private String domainName; + + public String getServerLockStatus() { + return this.serverLockStatus; + } + + public void setServerLockStatus(String serverLockStatus) { + this.serverLockStatus = serverLockStatus; + } + + public String getLockInstanceId() { + return this.lockInstanceId; + } + + public void setLockInstanceId(String lockInstanceId) { + this.lockInstanceId = lockInstanceId; + } + + public String getUserId() { + return this.userId; + } + + public void setUserId(String userId) { + this.userId = userId; + } + + public String getGmtCreate() { + return this.gmtCreate; + } + + public void setGmtCreate(String gmtCreate) { + this.gmtCreate = gmtCreate; + } + + public String getExpireDate() { + return this.expireDate; + } + + public void setExpireDate(String expireDate) { + this.expireDate = expireDate; + } + + public String getStartDate() { + return this.startDate; + } + + public void setStartDate(String startDate) { + this.startDate = startDate; + } + + public String getLockProductId() { + return this.lockProductId; + } + + public void setLockProductId(String lockProductId) { + this.lockProductId = lockProductId; + } + + public String getDomainInstanceId() { + return this.domainInstanceId; + } + + public void setDomainInstanceId(String domainInstanceId) { + this.domainInstanceId = domainInstanceId; + } + + public String getGmtModified() { + return this.gmtModified; + } + + public void setGmtModified(String gmtModified) { + this.gmtModified = gmtModified; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + } + + @Override + public ListServerLockResponse getInstance(UnmarshallerContext context) { + return ListServerLockResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/PurchaseIntlDomainRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/LookupTmchNoticeRequest.java similarity index 50% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/PurchaseIntlDomainRequest.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/LookupTmchNoticeRequest.java index 2a80114202..395dc0a7f7 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/PurchaseIntlDomainRequest.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/LookupTmchNoticeRequest.java @@ -12,7 +12,7 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; @@ -22,16 +22,16 @@ * @author auto create * @version */ -public class PurchaseIntlDomainRequest extends RpcAcsRequest { +public class LookupTmchNoticeRequest extends RpcAcsRequest { - private String auctionId; + private String claimKey; - private Double price; + private String userClientIp; - private String currency; - public PurchaseIntlDomainRequest() { - super("Domain", "2018-02-08", "PurchaseIntlDomain", "domain"); + private String lang; + public LookupTmchNoticeRequest() { + super("Domain", "2018-01-29", "LookupTmchNotice", "domain"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); @@ -39,42 +39,42 @@ public PurchaseIntlDomainRequest() { } catch (Exception e) {} } - public String getAuctionId() { - return this.auctionId; + public String getClaimKey() { + return this.claimKey; } - public void setAuctionId(String auctionId) { - this.auctionId = auctionId; - if(auctionId != null){ - putBodyParameter("AuctionId", auctionId); + public void setClaimKey(String claimKey) { + this.claimKey = claimKey; + if(claimKey != null){ + putQueryParameter("ClaimKey", claimKey); } } - public Double getPrice() { - return this.price; + public String getUserClientIp() { + return this.userClientIp; } - public void setPrice(Double price) { - this.price = price; - if(price != null){ - putBodyParameter("Price", price.toString()); + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); } } - public String getCurrency() { - return this.currency; + public String getLang() { + return this.lang; } - public void setCurrency(String currency) { - this.currency = currency; - if(currency != null){ - putBodyParameter("Currency", currency); + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); } } @Override - public Class getResponseClass() { - return PurchaseIntlDomainResponse.class; + public Class getResponseClass() { + return LookupTmchNoticeResponse.class; } } diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/LookupTmchNoticeResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/LookupTmchNoticeResponse.java new file mode 100644 index 0000000000..cc1cc8f9b3 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/LookupTmchNoticeResponse.java @@ -0,0 +1,413 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.LookupTmchNoticeResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class LookupTmchNoticeResponse extends AcsResponse { + + private String requestId; + + private String label; + + private Long id; + + private String notBefore; + + private String notAfter; + + private List claims; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getLabel() { + return this.label; + } + + public void setLabel(String label) { + this.label = label; + } + + public Long getId() { + return this.id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getNotBefore() { + return this.notBefore; + } + + public void setNotBefore(String notBefore) { + this.notBefore = notBefore; + } + + public String getNotAfter() { + return this.notAfter; + } + + public void setNotAfter(String notAfter) { + this.notAfter = notAfter; + } + + public List getClaims() { + return this.claims; + } + + public void setClaims(List claims) { + this.claims = claims; + } + + public static class Claim { + + private String goodsAndServices; + + private String markName; + + private List contacts; + + private List classDescs; + + private List holders; + + private JurDesc jurDesc; + + public String getGoodsAndServices() { + return this.goodsAndServices; + } + + public void setGoodsAndServices(String goodsAndServices) { + this.goodsAndServices = goodsAndServices; + } + + public String getMarkName() { + return this.markName; + } + + public void setMarkName(String markName) { + this.markName = markName; + } + + public List getContacts() { + return this.contacts; + } + + public void setContacts(List contacts) { + this.contacts = contacts; + } + + public List getClassDescs() { + return this.classDescs; + } + + public void setClassDescs(List classDescs) { + this.classDescs = classDescs; + } + + public List getHolders() { + return this.holders; + } + + public void setHolders(List holders) { + this.holders = holders; + } + + public JurDesc getJurDesc() { + return this.jurDesc; + } + + public void setJurDesc(JurDesc jurDesc) { + this.jurDesc = jurDesc; + } + + public static class Contact { + + private String type; + + private String voice; + + private String email; + + private String fax; + + private String org; + + private String name; + + private Addr addr; + + public String getType() { + return this.type; + } + + public void setType(String type) { + this.type = type; + } + + public String getVoice() { + return this.voice; + } + + public void setVoice(String voice) { + this.voice = voice; + } + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getFax() { + return this.fax; + } + + public void setFax(String fax) { + this.fax = fax; + } + + public String getOrg() { + return this.org; + } + + public void setOrg(String org) { + this.org = org; + } + + public String getName() { + return this.name; + } + + public void setName(String name) { + this.name = name; + } + + public Addr getAddr() { + return this.addr; + } + + public void setAddr(Addr addr) { + this.addr = addr; + } + + public static class Addr { + + private String cc; + + private String sp; + + private String pc; + + private String city; + + private List street; + + public String getCc() { + return this.cc; + } + + public void setCc(String cc) { + this.cc = cc; + } + + public String getSp() { + return this.sp; + } + + public void setSp(String sp) { + this.sp = sp; + } + + public String getPc() { + return this.pc; + } + + public void setPc(String pc) { + this.pc = pc; + } + + public String getCity() { + return this.city; + } + + public void setCity(String city) { + this.city = city; + } + + public List getStreet() { + return this.street; + } + + public void setStreet(List street) { + this.street = street; + } + } + } + + public static class ClassDesc { + + private Integer classNum; + + private String desc; + + public Integer getClassNum() { + return this.classNum; + } + + public void setClassNum(Integer classNum) { + this.classNum = classNum; + } + + public String getDesc() { + return this.desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + } + + public static class Holder { + + private String entitlement; + + private String org; + + private Addr1 addr1; + + public String getEntitlement() { + return this.entitlement; + } + + public void setEntitlement(String entitlement) { + this.entitlement = entitlement; + } + + public String getOrg() { + return this.org; + } + + public void setOrg(String org) { + this.org = org; + } + + public Addr1 getAddr1() { + return this.addr1; + } + + public void setAddr1(Addr1 addr1) { + this.addr1 = addr1; + } + + public static class Addr1 { + + private String cc; + + private String sp; + + private String pc; + + private String city; + + private List street2; + + public String getCc() { + return this.cc; + } + + public void setCc(String cc) { + this.cc = cc; + } + + public String getSp() { + return this.sp; + } + + public void setSp(String sp) { + this.sp = sp; + } + + public String getPc() { + return this.pc; + } + + public void setPc(String pc) { + this.pc = pc; + } + + public String getCity() { + return this.city; + } + + public void setCity(String city) { + this.city = city; + } + + public List getStreet2() { + return this.street2; + } + + public void setStreet2(List street2) { + this.street2 = street2; + } + } + } + + public static class JurDesc { + + private String jurCC; + + private String desc; + + public String getJurCC() { + return this.jurCC; + } + + public void setJurCC(String jurCC) { + this.jurCC = jurCC; + } + + public String getDesc() { + return this.desc; + } + + public void setDesc(String desc) { + this.desc = desc; + } + } + } + + @Override + public LookupTmchNoticeResponse getInstance(UnmarshallerContext context) { + return LookupTmchNoticeResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/PollTaskResultRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/PollTaskResultRequest.java new file mode 100644 index 0000000000..3a442a3ad2 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/PollTaskResultRequest.java @@ -0,0 +1,145 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class PollTaskResultRequest extends RpcAcsRequest { + + + private String domainName; + + private Integer pageNum; + + private Integer taskResultStatus; + + private String instanceId; + + private String userClientIp; + + private String taskNo; + + private Integer pageSize; + + private String lang; + public PollTaskResultRequest() { + super("Domain", "2018-01-29", "PollTaskResult", "domain"); + 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 Integer getPageNum() { + return this.pageNum; + } + + public void setPageNum(Integer pageNum) { + this.pageNum = pageNum; + if(pageNum != null){ + putQueryParameter("PageNum", pageNum.toString()); + } + } + + public Integer getTaskResultStatus() { + return this.taskResultStatus; + } + + public void setTaskResultStatus(Integer taskResultStatus) { + this.taskResultStatus = taskResultStatus; + if(taskResultStatus != null){ + putQueryParameter("TaskResultStatus", taskResultStatus.toString()); + } + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + if(instanceId != null){ + putQueryParameter("InstanceId", instanceId); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + if(taskNo != null){ + putQueryParameter("TaskNo", taskNo); + } + } + + public Integer getPageSize() { + return this.pageSize; + } + + public void setPageSize(Integer pageSize) { + this.pageSize = pageSize; + if(pageSize != null){ + putQueryParameter("PageSize", pageSize.toString()); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return PollTaskResultResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/PollTaskResultResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/PollTaskResultResponse.java new file mode 100644 index 0000000000..3f97c1bbe8 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/PollTaskResultResponse.java @@ -0,0 +1,245 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.PollTaskResultResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class PollTaskResultResponse extends AcsResponse { + + private Boolean prePage; + + private Integer currentPageNum; + + private String requestId; + + private Integer pageSize; + + private Integer totalPageNum; + + private Integer totalItemNum; + + private Boolean nextPage; + + private List data; + + public Boolean getPrePage() { + return this.prePage; + } + + public void setPrePage(Boolean prePage) { + this.prePage = prePage; + } + + public Integer getCurrentPageNum() { + return this.currentPageNum; + } + + public void setCurrentPageNum(Integer currentPageNum) { + this.currentPageNum = currentPageNum; + } + + 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 getTotalPageNum() { + return this.totalPageNum; + } + + public void setTotalPageNum(Integer totalPageNum) { + this.totalPageNum = totalPageNum; + } + + public Integer getTotalItemNum() { + return this.totalItemNum; + } + + public void setTotalItemNum(Integer totalItemNum) { + this.totalItemNum = totalItemNum; + } + + public Boolean getNextPage() { + return this.nextPage; + } + + public void setNextPage(Boolean nextPage) { + this.nextPage = nextPage; + } + + public List getData() { + return this.data; + } + + public void setData(List data) { + this.data = data; + } + + public static class TaskDetail { + + private String updateTime; + + private String taskDetailNo; + + private String createTime; + + private String instanceId; + + private String domainName; + + private String taskType; + + private String taskNo; + + private String taskResult; + + private Integer taskStatusCode; + + private String taskStatus; + + private String taskTypeDescription; + + private Integer tryCount; + + private String errorMsg; + + public String getUpdateTime() { + return this.updateTime; + } + + public void setUpdateTime(String updateTime) { + this.updateTime = updateTime; + } + + public String getTaskDetailNo() { + return this.taskDetailNo; + } + + public void setTaskDetailNo(String taskDetailNo) { + this.taskDetailNo = taskDetailNo; + } + + public String getCreateTime() { + return this.createTime; + } + + public void setCreateTime(String createTime) { + this.createTime = createTime; + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public String getTaskType() { + return this.taskType; + } + + public void setTaskType(String taskType) { + this.taskType = taskType; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + public String getTaskResult() { + return this.taskResult; + } + + public void setTaskResult(String taskResult) { + this.taskResult = taskResult; + } + + public Integer getTaskStatusCode() { + return this.taskStatusCode; + } + + public void setTaskStatusCode(Integer taskStatusCode) { + this.taskStatusCode = taskStatusCode; + } + + public String getTaskStatus() { + return this.taskStatus; + } + + public void setTaskStatus(String taskStatus) { + this.taskStatus = taskStatus; + } + + public String getTaskTypeDescription() { + return this.taskTypeDescription; + } + + public void setTaskTypeDescription(String taskTypeDescription) { + this.taskTypeDescription = taskTypeDescription; + } + + public Integer getTryCount() { + return this.tryCount; + } + + public void setTryCount(Integer tryCount) { + this.tryCount = tryCount; + } + + public String getErrorMsg() { + return this.errorMsg; + } + + public void setErrorMsg(String errorMsg) { + this.errorMsg = errorMsg; + } + } + + @Override + public PollTaskResultResponse getInstance(UnmarshallerContext context) { + return PollTaskResultResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryAdvancedDomainListRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryAdvancedDomainListRequest.java new file mode 100644 index 0000000000..a4062720d2 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryAdvancedDomainListRequest.java @@ -0,0 +1,445 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryAdvancedDomainListRequest extends RpcAcsRequest { + + + private String productDomainType; + + private Integer pageNum; + + private String excluded; + + private Integer startLength; + + private String resourceGroupId; + + private Boolean excludedSuffix; + + private Integer pageSize; + + private List tags; + + private String lang; + + private Boolean excludedPrefix; + + private String keyWord; + + private Boolean productDomainTypeSort; + + private Long endExpirationDate; + + private String suffixs; + + private Boolean domainNameSort; + + private Boolean expirationDateSort; + + private Long startExpirationDate; + + private Integer domainStatus; + + private Long domainGroupId; + + private Boolean keyWordSuffix; + + private Boolean keyWordPrefix; + + private Integer tradeType; + + private Long endRegistrationDate; + + private Integer form; + + private Boolean isPremiumDomain; + + private String userClientIp; + + private Boolean registrationDateSort; + + private Long startRegistrationDate; + + private Integer endLength; + public QueryAdvancedDomainListRequest() { + super("Domain", "2018-01-29", "QueryAdvancedDomainList", "domain"); + 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 getProductDomainType() { + return this.productDomainType; + } + + public void setProductDomainType(String productDomainType) { + this.productDomainType = productDomainType; + if(productDomainType != null){ + putQueryParameter("ProductDomainType", productDomainType); + } + } + + public Integer getPageNum() { + return this.pageNum; + } + + public void setPageNum(Integer pageNum) { + this.pageNum = pageNum; + if(pageNum != null){ + putQueryParameter("PageNum", pageNum.toString()); + } + } + + public String getExcluded() { + return this.excluded; + } + + public void setExcluded(String excluded) { + this.excluded = excluded; + if(excluded != null){ + putQueryParameter("Excluded", excluded); + } + } + + public Integer getStartLength() { + return this.startLength; + } + + public void setStartLength(Integer startLength) { + this.startLength = startLength; + if(startLength != null){ + putQueryParameter("StartLength", startLength.toString()); + } + } + + public String getResourceGroupId() { + return this.resourceGroupId; + } + + public void setResourceGroupId(String resourceGroupId) { + this.resourceGroupId = resourceGroupId; + if(resourceGroupId != null){ + putQueryParameter("ResourceGroupId", resourceGroupId); + } + } + + public Boolean getExcludedSuffix() { + return this.excludedSuffix; + } + + public void setExcludedSuffix(Boolean excludedSuffix) { + this.excludedSuffix = excludedSuffix; + if(excludedSuffix != null){ + putQueryParameter("ExcludedSuffix", excludedSuffix.toString()); + } + } + + public Integer getPageSize() { + return this.pageSize; + } + + public void setPageSize(Integer pageSize) { + this.pageSize = pageSize; + if(pageSize != null){ + putQueryParameter("PageSize", pageSize.toString()); + } + } + + public List getTags() { + return this.tags; + } + + public void setTags(List 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 Boolean getExcludedPrefix() { + return this.excludedPrefix; + } + + public void setExcludedPrefix(Boolean excludedPrefix) { + this.excludedPrefix = excludedPrefix; + if(excludedPrefix != null){ + putQueryParameter("ExcludedPrefix", excludedPrefix.toString()); + } + } + + public String getKeyWord() { + return this.keyWord; + } + + public void setKeyWord(String keyWord) { + this.keyWord = keyWord; + if(keyWord != null){ + putQueryParameter("KeyWord", keyWord); + } + } + + public Boolean getProductDomainTypeSort() { + return this.productDomainTypeSort; + } + + public void setProductDomainTypeSort(Boolean productDomainTypeSort) { + this.productDomainTypeSort = productDomainTypeSort; + if(productDomainTypeSort != null){ + putQueryParameter("ProductDomainTypeSort", productDomainTypeSort.toString()); + } + } + + public Long getEndExpirationDate() { + return this.endExpirationDate; + } + + public void setEndExpirationDate(Long endExpirationDate) { + this.endExpirationDate = endExpirationDate; + if(endExpirationDate != null){ + putQueryParameter("EndExpirationDate", endExpirationDate.toString()); + } + } + + public String getSuffixs() { + return this.suffixs; + } + + public void setSuffixs(String suffixs) { + this.suffixs = suffixs; + if(suffixs != null){ + putQueryParameter("Suffixs", suffixs); + } + } + + public Boolean getDomainNameSort() { + return this.domainNameSort; + } + + public void setDomainNameSort(Boolean domainNameSort) { + this.domainNameSort = domainNameSort; + if(domainNameSort != null){ + putQueryParameter("DomainNameSort", domainNameSort.toString()); + } + } + + public Boolean getExpirationDateSort() { + return this.expirationDateSort; + } + + public void setExpirationDateSort(Boolean expirationDateSort) { + this.expirationDateSort = expirationDateSort; + if(expirationDateSort != null){ + putQueryParameter("ExpirationDateSort", expirationDateSort.toString()); + } + } + + public Long getStartExpirationDate() { + return this.startExpirationDate; + } + + public void setStartExpirationDate(Long startExpirationDate) { + this.startExpirationDate = startExpirationDate; + if(startExpirationDate != null){ + putQueryParameter("StartExpirationDate", startExpirationDate.toString()); + } + } + + public Integer getDomainStatus() { + return this.domainStatus; + } + + public void setDomainStatus(Integer domainStatus) { + this.domainStatus = domainStatus; + if(domainStatus != null){ + putQueryParameter("DomainStatus", domainStatus.toString()); + } + } + + public Long getDomainGroupId() { + return this.domainGroupId; + } + + public void setDomainGroupId(Long domainGroupId) { + this.domainGroupId = domainGroupId; + if(domainGroupId != null){ + putQueryParameter("DomainGroupId", domainGroupId.toString()); + } + } + + public Boolean getKeyWordSuffix() { + return this.keyWordSuffix; + } + + public void setKeyWordSuffix(Boolean keyWordSuffix) { + this.keyWordSuffix = keyWordSuffix; + if(keyWordSuffix != null){ + putQueryParameter("KeyWordSuffix", keyWordSuffix.toString()); + } + } + + public Boolean getKeyWordPrefix() { + return this.keyWordPrefix; + } + + public void setKeyWordPrefix(Boolean keyWordPrefix) { + this.keyWordPrefix = keyWordPrefix; + if(keyWordPrefix != null){ + putQueryParameter("KeyWordPrefix", keyWordPrefix.toString()); + } + } + + public Integer getTradeType() { + return this.tradeType; + } + + public void setTradeType(Integer tradeType) { + this.tradeType = tradeType; + if(tradeType != null){ + putQueryParameter("TradeType", tradeType.toString()); + } + } + + public Long getEndRegistrationDate() { + return this.endRegistrationDate; + } + + public void setEndRegistrationDate(Long endRegistrationDate) { + this.endRegistrationDate = endRegistrationDate; + if(endRegistrationDate != null){ + putQueryParameter("EndRegistrationDate", endRegistrationDate.toString()); + } + } + + public Integer getForm() { + return this.form; + } + + public void setForm(Integer form) { + this.form = form; + if(form != null){ + putQueryParameter("Form", form.toString()); + } + } + + public Boolean getIsPremiumDomain() { + return this.isPremiumDomain; + } + + public void setIsPremiumDomain(Boolean isPremiumDomain) { + this.isPremiumDomain = isPremiumDomain; + if(isPremiumDomain != null){ + putQueryParameter("IsPremiumDomain", isPremiumDomain.toString()); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public Boolean getRegistrationDateSort() { + return this.registrationDateSort; + } + + public void setRegistrationDateSort(Boolean registrationDateSort) { + this.registrationDateSort = registrationDateSort; + if(registrationDateSort != null){ + putQueryParameter("RegistrationDateSort", registrationDateSort.toString()); + } + } + + public Long getStartRegistrationDate() { + return this.startRegistrationDate; + } + + public void setStartRegistrationDate(Long startRegistrationDate) { + this.startRegistrationDate = startRegistrationDate; + if(startRegistrationDate != null){ + putQueryParameter("StartRegistrationDate", startRegistrationDate.toString()); + } + } + + public Integer getEndLength() { + return this.endLength; + } + + public void setEndLength(Integer endLength) { + this.endLength = endLength; + if(endLength != null){ + putQueryParameter("EndLength", endLength.toString()); + } + } + + 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 getResponseClass() { + return QueryAdvancedDomainListResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryAdvancedDomainListResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryAdvancedDomainListResponse.java new file mode 100644 index 0000000000..2142d22e03 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryAdvancedDomainListResponse.java @@ -0,0 +1,368 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryAdvancedDomainListResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryAdvancedDomainListResponse extends AcsResponse { + + private Boolean prePage; + + private Integer currentPageNum; + + private String requestId; + + private Integer pageSize; + + private Integer totalPageNum; + + private Integer totalItemNum; + + private Boolean nextPage; + + private List data; + + public Boolean getPrePage() { + return this.prePage; + } + + public void setPrePage(Boolean prePage) { + this.prePage = prePage; + } + + public Integer getCurrentPageNum() { + return this.currentPageNum; + } + + public void setCurrentPageNum(Integer currentPageNum) { + this.currentPageNum = currentPageNum; + } + + 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 getTotalPageNum() { + return this.totalPageNum; + } + + public void setTotalPageNum(Integer totalPageNum) { + this.totalPageNum = totalPageNum; + } + + public Integer getTotalItemNum() { + return this.totalItemNum; + } + + public void setTotalItemNum(Integer totalItemNum) { + this.totalItemNum = totalItemNum; + } + + public Boolean getNextPage() { + return this.nextPage; + } + + public void setNextPage(Boolean nextPage) { + this.nextPage = nextPage; + } + + public List getData() { + return this.data; + } + + public void setData(List data) { + this.data = data; + } + + public static class Domain { + + private String domainAuditStatus; + + private String domainGroupId; + + private String remark; + + private String domainGroupName; + + private String zhRegistrantOrganization; + + private String registrantOrganization; + + private String registrationDate; + + private String instanceId; + + private String domainName; + + private String expirationDateStatus; + + private String expirationDate; + + private String email; + + private String registrantType; + + private Long expirationDateLong; + + private Integer expirationCurrDateDiff; + + private Boolean premium; + + private Long registrationDateLong; + + private String productId; + + private String domainStatus; + + private String domainType; + + private String resourceGroupId; + + private List tag; + + private List dnsList; + + public String getDomainAuditStatus() { + return this.domainAuditStatus; + } + + public void setDomainAuditStatus(String domainAuditStatus) { + this.domainAuditStatus = domainAuditStatus; + } + + public String getDomainGroupId() { + return this.domainGroupId; + } + + public void setDomainGroupId(String domainGroupId) { + this.domainGroupId = domainGroupId; + } + + public String getRemark() { + return this.remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getDomainGroupName() { + return this.domainGroupName; + } + + public void setDomainGroupName(String domainGroupName) { + this.domainGroupName = domainGroupName; + } + + public String getZhRegistrantOrganization() { + return this.zhRegistrantOrganization; + } + + public void setZhRegistrantOrganization(String zhRegistrantOrganization) { + this.zhRegistrantOrganization = zhRegistrantOrganization; + } + + public String getRegistrantOrganization() { + return this.registrantOrganization; + } + + public void setRegistrantOrganization(String registrantOrganization) { + this.registrantOrganization = registrantOrganization; + } + + public String getRegistrationDate() { + return this.registrationDate; + } + + public void setRegistrationDate(String registrationDate) { + this.registrationDate = registrationDate; + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public String getExpirationDateStatus() { + return this.expirationDateStatus; + } + + public void setExpirationDateStatus(String expirationDateStatus) { + this.expirationDateStatus = expirationDateStatus; + } + + public String getExpirationDate() { + return this.expirationDate; + } + + public void setExpirationDate(String expirationDate) { + this.expirationDate = expirationDate; + } + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getRegistrantType() { + return this.registrantType; + } + + public void setRegistrantType(String registrantType) { + this.registrantType = registrantType; + } + + public Long getExpirationDateLong() { + return this.expirationDateLong; + } + + public void setExpirationDateLong(Long expirationDateLong) { + this.expirationDateLong = expirationDateLong; + } + + public Integer getExpirationCurrDateDiff() { + return this.expirationCurrDateDiff; + } + + public void setExpirationCurrDateDiff(Integer expirationCurrDateDiff) { + this.expirationCurrDateDiff = expirationCurrDateDiff; + } + + public Boolean getPremium() { + return this.premium; + } + + public void setPremium(Boolean premium) { + this.premium = premium; + } + + public Long getRegistrationDateLong() { + return this.registrationDateLong; + } + + public void setRegistrationDateLong(Long registrationDateLong) { + this.registrationDateLong = registrationDateLong; + } + + public String getProductId() { + return this.productId; + } + + public void setProductId(String productId) { + this.productId = productId; + } + + public String getDomainStatus() { + return this.domainStatus; + } + + public void setDomainStatus(String domainStatus) { + this.domainStatus = domainStatus; + } + + public String getDomainType() { + return this.domainType; + } + + public void setDomainType(String domainType) { + this.domainType = domainType; + } + + public String getResourceGroupId() { + return this.resourceGroupId; + } + + public void setResourceGroupId(String resourceGroupId) { + this.resourceGroupId = resourceGroupId; + } + + public List getTag() { + return this.tag; + } + + public void setTag(List tag) { + this.tag = tag; + } + + public List getDnsList() { + return this.dnsList; + } + + public void setDnsList(List dnsList) { + this.dnsList = dnsList; + } + + public static class TagItem { + + private String key; + + private String value; + + public String getKey() { + return this.key; + } + + public void setKey(String key) { + this.key = key; + } + + public String getValue() { + return this.value; + } + + public void setValue(String value) { + this.value = value; + } + } + } + + @Override + public QueryAdvancedDomainListResponse getInstance(UnmarshallerContext context) { + return QueryAdvancedDomainListResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/ReserveIntlDomainRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryArtExtensionRequest.java similarity index 58% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/ReserveIntlDomainRequest.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryArtExtensionRequest.java index 5526e502b2..4a5f51f7d2 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/ReserveIntlDomainRequest.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryArtExtensionRequest.java @@ -12,7 +12,7 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; @@ -22,12 +22,16 @@ * @author auto create * @version */ -public class ReserveIntlDomainRequest extends RpcAcsRequest { +public class QueryArtExtensionRequest extends RpcAcsRequest { - private String domainName; - public ReserveIntlDomainRequest() { - super("Domain", "2018-02-08", "ReserveIntlDomain", "domain"); + private String domainName; + + private String userClientIp; + + private String lang; + public QueryArtExtensionRequest() { + super("Domain", "2018-01-29", "QueryArtExtension", "domain"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); @@ -42,13 +46,35 @@ public String getDomainName() { public void setDomainName(String domainName) { this.domainName = domainName; if(domainName != null){ - putBodyParameter("DomainName", domainName); + 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 getResponseClass() { - return ReserveIntlDomainResponse.class; + public Class getResponseClass() { + return QueryArtExtensionResponse.class; } } diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryArtExtensionResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryArtExtensionResponse.java new file mode 100644 index 0000000000..90da48ea23 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryArtExtensionResponse.java @@ -0,0 +1,146 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryArtExtensionResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryArtExtensionResponse extends AcsResponse { + + private String objectType; + + private String materialsAndTechniques; + + private String inscriptionsAndMarkings; + + private String requestId; + + private String reference; + + private String dateOrPeriod; + + private String dimensions; + + private String title; + + private String features; + + private String subject; + + private String maker; + + public String getObjectType() { + return this.objectType; + } + + public void setObjectType(String objectType) { + this.objectType = objectType; + } + + public String getMaterialsAndTechniques() { + return this.materialsAndTechniques; + } + + public void setMaterialsAndTechniques(String materialsAndTechniques) { + this.materialsAndTechniques = materialsAndTechniques; + } + + public String getInscriptionsAndMarkings() { + return this.inscriptionsAndMarkings; + } + + public void setInscriptionsAndMarkings(String inscriptionsAndMarkings) { + this.inscriptionsAndMarkings = inscriptionsAndMarkings; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getReference() { + return this.reference; + } + + public void setReference(String reference) { + this.reference = reference; + } + + public String getDateOrPeriod() { + return this.dateOrPeriod; + } + + public void setDateOrPeriod(String dateOrPeriod) { + this.dateOrPeriod = dateOrPeriod; + } + + public String getDimensions() { + return this.dimensions; + } + + public void setDimensions(String dimensions) { + this.dimensions = dimensions; + } + + public String getTitle() { + return this.title; + } + + public void setTitle(String title) { + this.title = title; + } + + public String getFeatures() { + return this.features; + } + + public void setFeatures(String features) { + this.features = features; + } + + public String getSubject() { + return this.subject; + } + + public void setSubject(String subject) { + this.subject = subject; + } + + public String getMaker() { + return this.maker; + } + + public void setMaker(String maker) { + this.maker = maker; + } + + @Override + public QueryArtExtensionResponse getInstance(UnmarshallerContext context) { + return QueryArtExtensionResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryChangeLogListRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryChangeLogListRequest.java new file mode 100644 index 0000000000..6acfc798b1 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryChangeLogListRequest.java @@ -0,0 +1,132 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryChangeLogListRequest extends RpcAcsRequest { + + + private String domainName; + + private Integer pageNum; + + private Long startDate; + + private Long endDate; + + private String userClientIp; + + private Integer pageSize; + + private String lang; + public QueryChangeLogListRequest() { + super("Domain", "2018-01-29", "QueryChangeLogList", "domain"); + 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 Integer getPageNum() { + return this.pageNum; + } + + public void setPageNum(Integer pageNum) { + this.pageNum = pageNum; + if(pageNum != null){ + putQueryParameter("PageNum", pageNum.toString()); + } + } + + public Long getStartDate() { + return this.startDate; + } + + public void setStartDate(Long startDate) { + this.startDate = startDate; + if(startDate != null){ + putQueryParameter("StartDate", startDate.toString()); + } + } + + public Long getEndDate() { + return this.endDate; + } + + public void setEndDate(Long endDate) { + this.endDate = endDate; + if(endDate != null){ + putQueryParameter("EndDate", endDate.toString()); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public Integer getPageSize() { + return this.pageSize; + } + + public void setPageSize(Integer pageSize) { + this.pageSize = pageSize; + if(pageSize != null){ + putQueryParameter("PageSize", pageSize.toString()); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return QueryChangeLogListResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryChangeLogListResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryChangeLogListResponse.java new file mode 100644 index 0000000000..c69446c85f --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryChangeLogListResponse.java @@ -0,0 +1,185 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryChangeLogListResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryChangeLogListResponse extends AcsResponse { + + private Boolean prePage; + + private Integer currentPageNum; + + private String requestId; + + private Integer pageSize; + + private Integer totalPageNum; + + private Boolean resultLimit; + + private Integer totalItemNum; + + private Boolean nextPage; + + private List data; + + public Boolean getPrePage() { + return this.prePage; + } + + public void setPrePage(Boolean prePage) { + this.prePage = prePage; + } + + public Integer getCurrentPageNum() { + return this.currentPageNum; + } + + public void setCurrentPageNum(Integer currentPageNum) { + this.currentPageNum = currentPageNum; + } + + 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 getTotalPageNum() { + return this.totalPageNum; + } + + public void setTotalPageNum(Integer totalPageNum) { + this.totalPageNum = totalPageNum; + } + + public Boolean getResultLimit() { + return this.resultLimit; + } + + public void setResultLimit(Boolean resultLimit) { + this.resultLimit = resultLimit; + } + + public Integer getTotalItemNum() { + return this.totalItemNum; + } + + public void setTotalItemNum(Integer totalItemNum) { + this.totalItemNum = totalItemNum; + } + + public Boolean getNextPage() { + return this.nextPage; + } + + public void setNextPage(Boolean nextPage) { + this.nextPage = nextPage; + } + + public List getData() { + return this.data; + } + + public void setData(List data) { + this.data = data; + } + + public static class ChangeLog { + + private String operation; + + private String time; + + private String result; + + private String domainName; + + private String operationIPAddress; + + private String details; + + public String getOperation() { + return this.operation; + } + + public void setOperation(String operation) { + this.operation = operation; + } + + public String getTime() { + return this.time; + } + + public void setTime(String time) { + this.time = time; + } + + public String getResult() { + return this.result; + } + + public void setResult(String result) { + this.result = result; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public String getOperationIPAddress() { + return this.operationIPAddress; + } + + public void setOperationIPAddress(String operationIPAddress) { + this.operationIPAddress = operationIPAddress; + } + + public String getDetails() { + return this.details; + } + + public void setDetails(String details) { + this.details = details; + } + } + + @Override + public QueryChangeLogListResponse getInstance(UnmarshallerContext context) { + return QueryChangeLogListResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryContactInfoRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryContactInfoRequest.java new file mode 100644 index 0000000000..7e7374d6d5 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryContactInfoRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryContactInfoRequest extends RpcAcsRequest { + + + private String contactType; + + private String domainName; + + private String userClientIp; + + private String lang; + public QueryContactInfoRequest() { + super("Domain", "2018-01-29", "QueryContactInfo", "domain"); + 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 getContactType() { + return this.contactType; + } + + public void setContactType(String contactType) { + this.contactType = contactType; + if(contactType != null){ + putQueryParameter("ContactType", contactType); + } + } + + 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 getResponseClass() { + return QueryContactInfoResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryContactInfoResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryContactInfoResponse.java new file mode 100644 index 0000000000..0915eb25c9 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryContactInfoResponse.java @@ -0,0 +1,211 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryContactInfoResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryContactInfoResponse extends AcsResponse { + + private String zhProvince; + + private String email; + + private String telephone; + + private String requestId; + + private String address; + + private String postalCode; + + private String zhRegistrantName; + + private String city; + + private String createDate; + + private String province; + + private String zhCity; + + private String registrantName; + + private String zhRegistrantOrganization; + + private String country; + + private String registrantOrganization; + + private String telExt; + + private String telArea; + + private String zhAddress; + + public String getZhProvince() { + return this.zhProvince; + } + + public void setZhProvince(String zhProvince) { + this.zhProvince = zhProvince; + } + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getTelephone() { + return this.telephone; + } + + public void setTelephone(String telephone) { + this.telephone = telephone; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getAddress() { + return this.address; + } + + public void setAddress(String address) { + this.address = address; + } + + public String getPostalCode() { + return this.postalCode; + } + + public void setPostalCode(String postalCode) { + this.postalCode = postalCode; + } + + public String getZhRegistrantName() { + return this.zhRegistrantName; + } + + public void setZhRegistrantName(String zhRegistrantName) { + this.zhRegistrantName = zhRegistrantName; + } + + public String getCity() { + return this.city; + } + + public void setCity(String city) { + this.city = city; + } + + public String getCreateDate() { + return this.createDate; + } + + public void setCreateDate(String createDate) { + this.createDate = createDate; + } + + public String getProvince() { + return this.province; + } + + public void setProvince(String province) { + this.province = province; + } + + public String getZhCity() { + return this.zhCity; + } + + public void setZhCity(String zhCity) { + this.zhCity = zhCity; + } + + public String getRegistrantName() { + return this.registrantName; + } + + public void setRegistrantName(String registrantName) { + this.registrantName = registrantName; + } + + public String getZhRegistrantOrganization() { + return this.zhRegistrantOrganization; + } + + public void setZhRegistrantOrganization(String zhRegistrantOrganization) { + this.zhRegistrantOrganization = zhRegistrantOrganization; + } + + public String getCountry() { + return this.country; + } + + public void setCountry(String country) { + this.country = country; + } + + public String getRegistrantOrganization() { + return this.registrantOrganization; + } + + public void setRegistrantOrganization(String registrantOrganization) { + this.registrantOrganization = registrantOrganization; + } + + public String getTelExt() { + return this.telExt; + } + + public void setTelExt(String telExt) { + this.telExt = telExt; + } + + public String getTelArea() { + return this.telArea; + } + + public void setTelArea(String telArea) { + this.telArea = telArea; + } + + public String getZhAddress() { + return this.zhAddress; + } + + public void setZhAddress(String zhAddress) { + this.zhAddress = zhAddress; + } + + @Override + public QueryContactInfoResponse getInstance(UnmarshallerContext context) { + return QueryContactInfoResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/ReserveDomainRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDSRecordRequest.java similarity index 59% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/ReserveDomainRequest.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDSRecordRequest.java index f07a34964f..8f242ba670 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/ReserveDomainRequest.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDSRecordRequest.java @@ -12,10 +12,9 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.RpcAcsRequest; -import java.util.List; import com.aliyuncs.http.MethodType; import com.aliyuncs.domain.Endpoint; @@ -23,14 +22,16 @@ * @author auto create * @version */ -public class ReserveDomainRequest extends RpcAcsRequest { +public class QueryDSRecordRequest extends RpcAcsRequest { private String domainName; - private List channelss; - public ReserveDomainRequest() { - super("Domain", "2018-02-08", "ReserveDomain", "domain"); + private String userClientIp; + + private String lang; + public QueryDSRecordRequest() { + super("Domain", "2018-01-29", "QueryDSRecord", "domain"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); @@ -45,26 +46,35 @@ public String getDomainName() { public void setDomainName(String domainName) { this.domainName = domainName; if(domainName != null){ - putBodyParameter("DomainName", domainName); + putQueryParameter("DomainName", domainName); } } - public List getChannelss() { - return this.channelss; + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } } - public void setChannelss(List channelss) { - this.channelss = channelss; - if (channelss != null) { - for (int i = 0; i < channelss.size(); i++) { - putBodyParameter("Channels." + (i + 1) , channelss.get(i)); - } - } + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } } @Override - public Class getResponseClass() { - return ReserveDomainResponse.class; + public Class getResponseClass() { + return QueryDSRecordResponse.class; } } diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDSRecordResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDSRecordResponse.java new file mode 100644 index 0000000000..4fbcd03dbf --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDSRecordResponse.java @@ -0,0 +1,100 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryDSRecordResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryDSRecordResponse extends AcsResponse { + + private String requestId; + + private List dSRecordList; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getDSRecordList() { + return this.dSRecordList; + } + + public void setDSRecordList(List dSRecordList) { + this.dSRecordList = dSRecordList; + } + + public static class DSRecord { + + private Integer digestType; + + private String digest; + + private Integer algorithm; + + private Integer keyTag; + + public Integer getDigestType() { + return this.digestType; + } + + public void setDigestType(Integer digestType) { + this.digestType = digestType; + } + + public String getDigest() { + return this.digest; + } + + public void setDigest(String digest) { + this.digest = digest; + } + + public Integer getAlgorithm() { + return this.algorithm; + } + + public void setAlgorithm(Integer algorithm) { + this.algorithm = algorithm; + } + + public Integer getKeyTag() { + return this.keyTag; + } + + public void setKeyTag(Integer keyTag) { + this.keyTag = keyTag; + } + } + + @Override + public QueryDSRecordResponse getInstance(UnmarshallerContext context) { + return QueryDSRecordResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDnsHostRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDnsHostRequest.java new file mode 100644 index 0000000000..74b44fb517 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDnsHostRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryDnsHostRequest extends RpcAcsRequest { + + + private String instanceId; + + private String userClientIp; + + private String lang; + public QueryDnsHostRequest() { + super("Domain", "2018-01-29", "QueryDnsHost", "domain"); + setMethod(MethodType.POST); + try { + com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); + com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); + } catch (Exception e) {} + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + if(instanceId != null){ + putQueryParameter("InstanceId", instanceId); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return QueryDnsHostResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDnsHostResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDnsHostResponse.java new file mode 100644 index 0000000000..6d17cc8222 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDnsHostResponse.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryDnsHostResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryDnsHostResponse extends AcsResponse { + + private String requestId; + + private List dnsHostList; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getDnsHostList() { + return this.dnsHostList; + } + + public void setDnsHostList(List dnsHostList) { + this.dnsHostList = dnsHostList; + } + + public static class DnsHost { + + private String dnsName; + + private List ipList; + + public String getDnsName() { + return this.dnsName; + } + + public void setDnsName(String dnsName) { + this.dnsName = dnsName; + } + + public List getIpList() { + return this.ipList; + } + + public void setIpList(List ipList) { + this.ipList = ipList; + } + } + + @Override + public QueryDnsHostResponse getInstance(UnmarshallerContext context) { + return QueryDnsHostResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainAdminDivisionRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainAdminDivisionRequest.java new file mode 100644 index 0000000000..db1c6060c4 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainAdminDivisionRequest.java @@ -0,0 +1,67 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryDomainAdminDivisionRequest extends RpcAcsRequest { + + + private String userClientIp; + + private String lang; + public QueryDomainAdminDivisionRequest() { + super("Domain", "2018-01-29", "QueryDomainAdminDivision", "domain"); + 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 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 getResponseClass() { + return QueryDomainAdminDivisionResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainAdminDivisionResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainAdminDivisionResponse.java new file mode 100644 index 0000000000..f1e65a45c3 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainAdminDivisionResponse.java @@ -0,0 +1,88 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryDomainAdminDivisionResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryDomainAdminDivisionResponse extends AcsResponse { + + private String requestId; + + private List adminDivisions; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getAdminDivisions() { + return this.adminDivisions; + } + + public void setAdminDivisions(List adminDivisions) { + this.adminDivisions = adminDivisions; + } + + public static class AdminDivision { + + private String divisionName; + + private List children; + + public String getDivisionName() { + return this.divisionName; + } + + public void setDivisionName(String divisionName) { + this.divisionName = divisionName; + } + + public List getChildren() { + return this.children; + } + + public void setChildren(List children) { + this.children = children; + } + + public static class ChildrenItem { + + private String childDivisionName; + + public String getChildDivisionName() { + return this.childDivisionName; + } + + public void setChildDivisionName(String childDivisionName) { + this.childDivisionName = childDivisionName; + } + } + } + + @Override + public QueryDomainAdminDivisionResponse getInstance(UnmarshallerContext context) { + return QueryDomainAdminDivisionResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainByDomainNameRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainByDomainNameRequest.java new file mode 100644 index 0000000000..2c9d1fdea1 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainByDomainNameRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryDomainByDomainNameRequest extends RpcAcsRequest { + + + private String domainName; + + private String userClientIp; + + private String lang; + public QueryDomainByDomainNameRequest() { + super("Domain", "2018-01-29", "QueryDomainByDomainName", "domain"); + 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 getResponseClass() { + return QueryDomainByDomainNameResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainByDomainNameResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainByDomainNameResponse.java new file mode 100644 index 0000000000..d29a5c1b54 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainByDomainNameResponse.java @@ -0,0 +1,395 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryDomainByDomainNameResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryDomainByDomainNameResponse extends AcsResponse { + + private String email; + + private String registrationDate; + + private Long registrationDateLong; + + private String realNameStatus; + + private Boolean premium; + + private String domainNameVerificationStatus; + + private Long expirationDateLong; + + private String transferOutStatus; + + private String zhRegistrantOrganization; + + private Boolean emailVerificationClientHold; + + private Integer emailVerificationStatus; + + private String registrantOrganization; + + private String transferProhibitionLock; + + private Boolean domainNameProxyService; + + private String registrantType; + + private String registrantUpdatingStatus; + + private String requestId; + + private String domainName; + + private String instanceId; + + private String zhRegistrantName; + + private String expirationDate; + + private String registrantName; + + private String userId; + + private String updateProhibitionLock; + + private Long domainGroupId; + + private String remark; + + private String domainGroupName; + + private String expirationDateStatus; + + private Integer expirationCurrDateDiff; + + private String domainType; + + private String domainStatus; + + private String resourceGroupId; + + private List tag; + + private List dnsList; + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getRegistrationDate() { + return this.registrationDate; + } + + public void setRegistrationDate(String registrationDate) { + this.registrationDate = registrationDate; + } + + public Long getRegistrationDateLong() { + return this.registrationDateLong; + } + + public void setRegistrationDateLong(Long registrationDateLong) { + this.registrationDateLong = registrationDateLong; + } + + public String getRealNameStatus() { + return this.realNameStatus; + } + + public void setRealNameStatus(String realNameStatus) { + this.realNameStatus = realNameStatus; + } + + public Boolean getPremium() { + return this.premium; + } + + public void setPremium(Boolean premium) { + this.premium = premium; + } + + public String getDomainNameVerificationStatus() { + return this.domainNameVerificationStatus; + } + + public void setDomainNameVerificationStatus(String domainNameVerificationStatus) { + this.domainNameVerificationStatus = domainNameVerificationStatus; + } + + public Long getExpirationDateLong() { + return this.expirationDateLong; + } + + public void setExpirationDateLong(Long expirationDateLong) { + this.expirationDateLong = expirationDateLong; + } + + public String getTransferOutStatus() { + return this.transferOutStatus; + } + + public void setTransferOutStatus(String transferOutStatus) { + this.transferOutStatus = transferOutStatus; + } + + public String getZhRegistrantOrganization() { + return this.zhRegistrantOrganization; + } + + public void setZhRegistrantOrganization(String zhRegistrantOrganization) { + this.zhRegistrantOrganization = zhRegistrantOrganization; + } + + public Boolean getEmailVerificationClientHold() { + return this.emailVerificationClientHold; + } + + public void setEmailVerificationClientHold(Boolean emailVerificationClientHold) { + this.emailVerificationClientHold = emailVerificationClientHold; + } + + public Integer getEmailVerificationStatus() { + return this.emailVerificationStatus; + } + + public void setEmailVerificationStatus(Integer emailVerificationStatus) { + this.emailVerificationStatus = emailVerificationStatus; + } + + public String getRegistrantOrganization() { + return this.registrantOrganization; + } + + public void setRegistrantOrganization(String registrantOrganization) { + this.registrantOrganization = registrantOrganization; + } + + public String getTransferProhibitionLock() { + return this.transferProhibitionLock; + } + + public void setTransferProhibitionLock(String transferProhibitionLock) { + this.transferProhibitionLock = transferProhibitionLock; + } + + public Boolean getDomainNameProxyService() { + return this.domainNameProxyService; + } + + public void setDomainNameProxyService(Boolean domainNameProxyService) { + this.domainNameProxyService = domainNameProxyService; + } + + public String getRegistrantType() { + return this.registrantType; + } + + public void setRegistrantType(String registrantType) { + this.registrantType = registrantType; + } + + public String getRegistrantUpdatingStatus() { + return this.registrantUpdatingStatus; + } + + public void setRegistrantUpdatingStatus(String registrantUpdatingStatus) { + this.registrantUpdatingStatus = registrantUpdatingStatus; + } + + 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 getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + } + + public String getZhRegistrantName() { + return this.zhRegistrantName; + } + + public void setZhRegistrantName(String zhRegistrantName) { + this.zhRegistrantName = zhRegistrantName; + } + + public String getExpirationDate() { + return this.expirationDate; + } + + public void setExpirationDate(String expirationDate) { + this.expirationDate = expirationDate; + } + + public String getRegistrantName() { + return this.registrantName; + } + + public void setRegistrantName(String registrantName) { + this.registrantName = registrantName; + } + + public String getUserId() { + return this.userId; + } + + public void setUserId(String userId) { + this.userId = userId; + } + + public String getUpdateProhibitionLock() { + return this.updateProhibitionLock; + } + + public void setUpdateProhibitionLock(String updateProhibitionLock) { + this.updateProhibitionLock = updateProhibitionLock; + } + + public Long getDomainGroupId() { + return this.domainGroupId; + } + + public void setDomainGroupId(Long domainGroupId) { + this.domainGroupId = domainGroupId; + } + + public String getRemark() { + return this.remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getDomainGroupName() { + return this.domainGroupName; + } + + public void setDomainGroupName(String domainGroupName) { + this.domainGroupName = domainGroupName; + } + + public String getExpirationDateStatus() { + return this.expirationDateStatus; + } + + public void setExpirationDateStatus(String expirationDateStatus) { + this.expirationDateStatus = expirationDateStatus; + } + + public Integer getExpirationCurrDateDiff() { + return this.expirationCurrDateDiff; + } + + public void setExpirationCurrDateDiff(Integer expirationCurrDateDiff) { + this.expirationCurrDateDiff = expirationCurrDateDiff; + } + + public String getDomainType() { + return this.domainType; + } + + public void setDomainType(String domainType) { + this.domainType = domainType; + } + + public String getDomainStatus() { + return this.domainStatus; + } + + public void setDomainStatus(String domainStatus) { + this.domainStatus = domainStatus; + } + + public String getResourceGroupId() { + return this.resourceGroupId; + } + + public void setResourceGroupId(String resourceGroupId) { + this.resourceGroupId = resourceGroupId; + } + + public List getTag() { + return this.tag; + } + + public void setTag(List tag) { + this.tag = tag; + } + + public List getDnsList() { + return this.dnsList; + } + + public void setDnsList(List dnsList) { + this.dnsList = dnsList; + } + + public static class TagItem { + + private String key; + + private String vaue; + + public String getKey() { + return this.key; + } + + public void setKey(String key) { + this.key = key; + } + + public String getVaue() { + return this.vaue; + } + + public void setVaue(String vaue) { + this.vaue = vaue; + } + } + + @Override + public QueryDomainByDomainNameResponse getInstance(UnmarshallerContext context) { + return QueryDomainByDomainNameResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainByInstanceIdRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainByInstanceIdRequest.java new file mode 100644 index 0000000000..1829f4f84b --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainByInstanceIdRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryDomainByInstanceIdRequest extends RpcAcsRequest { + + + private String instanceId; + + private String userClientIp; + + private String lang; + public QueryDomainByInstanceIdRequest() { + super("Domain", "2018-01-29", "QueryDomainByInstanceId", "domain"); + setMethod(MethodType.POST); + try { + com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); + com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); + } catch (Exception e) {} + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + if(instanceId != null){ + putQueryParameter("InstanceId", instanceId); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return QueryDomainByInstanceIdResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainByInstanceIdResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainByInstanceIdResponse.java new file mode 100644 index 0000000000..981476384d --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainByInstanceIdResponse.java @@ -0,0 +1,395 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryDomainByInstanceIdResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryDomainByInstanceIdResponse extends AcsResponse { + + private String email; + + private String registrationDate; + + private Long registrationDateLong; + + private String realNameStatus; + + private Boolean premium; + + private String domainNameVerificationStatus; + + private Long expirationDateLong; + + private String transferOutStatus; + + private String zhRegistrantOrganization; + + private Boolean emailVerificationClientHold; + + private Integer emailVerificationStatus; + + private String registrantOrganization; + + private String transferProhibitionLock; + + private Boolean domainNameProxyService; + + private String registrantType; + + private String registrantUpdatingStatus; + + private String requestId; + + private String domainName; + + private String instanceId; + + private String zhRegistrantName; + + private String expirationDate; + + private String registrantName; + + private String userId; + + private String updateProhibitionLock; + + private Long domainGroupId; + + private String remark; + + private String domainGroupName; + + private String expirationDateStatus; + + private Integer expirationCurrDateDiff; + + private String domainType; + + private String domainStatus; + + private String resourceGroupId; + + private List tag; + + private List dnsList; + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getRegistrationDate() { + return this.registrationDate; + } + + public void setRegistrationDate(String registrationDate) { + this.registrationDate = registrationDate; + } + + public Long getRegistrationDateLong() { + return this.registrationDateLong; + } + + public void setRegistrationDateLong(Long registrationDateLong) { + this.registrationDateLong = registrationDateLong; + } + + public String getRealNameStatus() { + return this.realNameStatus; + } + + public void setRealNameStatus(String realNameStatus) { + this.realNameStatus = realNameStatus; + } + + public Boolean getPremium() { + return this.premium; + } + + public void setPremium(Boolean premium) { + this.premium = premium; + } + + public String getDomainNameVerificationStatus() { + return this.domainNameVerificationStatus; + } + + public void setDomainNameVerificationStatus(String domainNameVerificationStatus) { + this.domainNameVerificationStatus = domainNameVerificationStatus; + } + + public Long getExpirationDateLong() { + return this.expirationDateLong; + } + + public void setExpirationDateLong(Long expirationDateLong) { + this.expirationDateLong = expirationDateLong; + } + + public String getTransferOutStatus() { + return this.transferOutStatus; + } + + public void setTransferOutStatus(String transferOutStatus) { + this.transferOutStatus = transferOutStatus; + } + + public String getZhRegistrantOrganization() { + return this.zhRegistrantOrganization; + } + + public void setZhRegistrantOrganization(String zhRegistrantOrganization) { + this.zhRegistrantOrganization = zhRegistrantOrganization; + } + + public Boolean getEmailVerificationClientHold() { + return this.emailVerificationClientHold; + } + + public void setEmailVerificationClientHold(Boolean emailVerificationClientHold) { + this.emailVerificationClientHold = emailVerificationClientHold; + } + + public Integer getEmailVerificationStatus() { + return this.emailVerificationStatus; + } + + public void setEmailVerificationStatus(Integer emailVerificationStatus) { + this.emailVerificationStatus = emailVerificationStatus; + } + + public String getRegistrantOrganization() { + return this.registrantOrganization; + } + + public void setRegistrantOrganization(String registrantOrganization) { + this.registrantOrganization = registrantOrganization; + } + + public String getTransferProhibitionLock() { + return this.transferProhibitionLock; + } + + public void setTransferProhibitionLock(String transferProhibitionLock) { + this.transferProhibitionLock = transferProhibitionLock; + } + + public Boolean getDomainNameProxyService() { + return this.domainNameProxyService; + } + + public void setDomainNameProxyService(Boolean domainNameProxyService) { + this.domainNameProxyService = domainNameProxyService; + } + + public String getRegistrantType() { + return this.registrantType; + } + + public void setRegistrantType(String registrantType) { + this.registrantType = registrantType; + } + + public String getRegistrantUpdatingStatus() { + return this.registrantUpdatingStatus; + } + + public void setRegistrantUpdatingStatus(String registrantUpdatingStatus) { + this.registrantUpdatingStatus = registrantUpdatingStatus; + } + + 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 getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + } + + public String getZhRegistrantName() { + return this.zhRegistrantName; + } + + public void setZhRegistrantName(String zhRegistrantName) { + this.zhRegistrantName = zhRegistrantName; + } + + public String getExpirationDate() { + return this.expirationDate; + } + + public void setExpirationDate(String expirationDate) { + this.expirationDate = expirationDate; + } + + public String getRegistrantName() { + return this.registrantName; + } + + public void setRegistrantName(String registrantName) { + this.registrantName = registrantName; + } + + public String getUserId() { + return this.userId; + } + + public void setUserId(String userId) { + this.userId = userId; + } + + public String getUpdateProhibitionLock() { + return this.updateProhibitionLock; + } + + public void setUpdateProhibitionLock(String updateProhibitionLock) { + this.updateProhibitionLock = updateProhibitionLock; + } + + public Long getDomainGroupId() { + return this.domainGroupId; + } + + public void setDomainGroupId(Long domainGroupId) { + this.domainGroupId = domainGroupId; + } + + public String getRemark() { + return this.remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getDomainGroupName() { + return this.domainGroupName; + } + + public void setDomainGroupName(String domainGroupName) { + this.domainGroupName = domainGroupName; + } + + public String getExpirationDateStatus() { + return this.expirationDateStatus; + } + + public void setExpirationDateStatus(String expirationDateStatus) { + this.expirationDateStatus = expirationDateStatus; + } + + public Integer getExpirationCurrDateDiff() { + return this.expirationCurrDateDiff; + } + + public void setExpirationCurrDateDiff(Integer expirationCurrDateDiff) { + this.expirationCurrDateDiff = expirationCurrDateDiff; + } + + public String getDomainType() { + return this.domainType; + } + + public void setDomainType(String domainType) { + this.domainType = domainType; + } + + public String getDomainStatus() { + return this.domainStatus; + } + + public void setDomainStatus(String domainStatus) { + this.domainStatus = domainStatus; + } + + public String getResourceGroupId() { + return this.resourceGroupId; + } + + public void setResourceGroupId(String resourceGroupId) { + this.resourceGroupId = resourceGroupId; + } + + public List getTag() { + return this.tag; + } + + public void setTag(List tag) { + this.tag = tag; + } + + public List getDnsList() { + return this.dnsList; + } + + public void setDnsList(List dnsList) { + this.dnsList = dnsList; + } + + public static class TagItem { + + private String key; + + private String value; + + public String getKey() { + return this.key; + } + + public void setKey(String key) { + this.key = key; + } + + public String getValue() { + return this.value; + } + + public void setValue(String value) { + this.value = value; + } + } + + @Override + public QueryDomainByInstanceIdResponse getInstance(UnmarshallerContext context) { + return QueryDomainByInstanceIdResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainGroupListRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainGroupListRequest.java new file mode 100644 index 0000000000..a8b27bc0f3 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainGroupListRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryDomainGroupListRequest extends RpcAcsRequest { + + + private Boolean showDeletingGroup; + + private String userClientIp; + + private String domainGroupName; + + private String lang; + public QueryDomainGroupListRequest() { + super("Domain", "2018-01-29", "QueryDomainGroupList", "domain"); + 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 Boolean getShowDeletingGroup() { + return this.showDeletingGroup; + } + + public void setShowDeletingGroup(Boolean showDeletingGroup) { + this.showDeletingGroup = showDeletingGroup; + if(showDeletingGroup != null){ + putQueryParameter("ShowDeletingGroup", showDeletingGroup.toString()); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getDomainGroupName() { + return this.domainGroupName; + } + + public void setDomainGroupName(String domainGroupName) { + this.domainGroupName = domainGroupName; + if(domainGroupName != null){ + putQueryParameter("DomainGroupName", domainGroupName); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return QueryDomainGroupListResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainGroupListResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainGroupListResponse.java new file mode 100644 index 0000000000..0ef288078f --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainGroupListResponse.java @@ -0,0 +1,125 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryDomainGroupListResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryDomainGroupListResponse extends AcsResponse { + + private String requestId; + + private List data; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getData() { + return this.data; + } + + public void setData(List data) { + this.data = data; + } + + public static class DomainGroup { + + private Boolean beingDeleted; + + private String domainGroupStatus; + + private String domainGroupId; + + private String domainGroupName; + + private String modificationDate; + + private Integer totalNumber; + + private String creationDate; + + public Boolean getBeingDeleted() { + return this.beingDeleted; + } + + public void setBeingDeleted(Boolean beingDeleted) { + this.beingDeleted = beingDeleted; + } + + public String getDomainGroupStatus() { + return this.domainGroupStatus; + } + + public void setDomainGroupStatus(String domainGroupStatus) { + this.domainGroupStatus = domainGroupStatus; + } + + public String getDomainGroupId() { + return this.domainGroupId; + } + + public void setDomainGroupId(String domainGroupId) { + this.domainGroupId = domainGroupId; + } + + public String getDomainGroupName() { + return this.domainGroupName; + } + + public void setDomainGroupName(String domainGroupName) { + this.domainGroupName = domainGroupName; + } + + public String getModificationDate() { + return this.modificationDate; + } + + public void setModificationDate(String modificationDate) { + this.modificationDate = modificationDate; + } + + public Integer getTotalNumber() { + return this.totalNumber; + } + + public void setTotalNumber(Integer totalNumber) { + this.totalNumber = totalNumber; + } + + public String getCreationDate() { + return this.creationDate; + } + + public void setCreationDate(String creationDate) { + this.creationDate = creationDate; + } + } + + @Override + public QueryDomainGroupListResponse getInstance(UnmarshallerContext context) { + return QueryDomainGroupListResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainListRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainListRequest.java new file mode 100644 index 0000000000..6f010edc8f --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainListRequest.java @@ -0,0 +1,289 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryDomainListRequest extends RpcAcsRequest { + + + private String productDomainType; + + private String ccompany; + + private String orderKeyType; + + private Integer pageNum; + + private String orderByType; + + private String resourceGroupId; + + private Integer pageSize; + + private List tags; + + private String lang; + + private String queryType; + + private Long endExpirationDate; + + private String domainName; + + private Long startExpirationDate; + + private String domainGroupId; + + private Long endRegistrationDate; + + private String userClientIp; + + private Long startRegistrationDate; + public QueryDomainListRequest() { + super("Domain", "2018-01-29", "QueryDomainList", "domain"); + 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 getProductDomainType() { + return this.productDomainType; + } + + public void setProductDomainType(String productDomainType) { + this.productDomainType = productDomainType; + if(productDomainType != null){ + putQueryParameter("ProductDomainType", productDomainType); + } + } + + public String getCcompany() { + return this.ccompany; + } + + public void setCcompany(String ccompany) { + this.ccompany = ccompany; + if(ccompany != null){ + putQueryParameter("Ccompany", ccompany); + } + } + + public String getOrderKeyType() { + return this.orderKeyType; + } + + public void setOrderKeyType(String orderKeyType) { + this.orderKeyType = orderKeyType; + if(orderKeyType != null){ + putQueryParameter("OrderKeyType", orderKeyType); + } + } + + public Integer getPageNum() { + return this.pageNum; + } + + public void setPageNum(Integer pageNum) { + this.pageNum = pageNum; + if(pageNum != null){ + putQueryParameter("PageNum", pageNum.toString()); + } + } + + public String getOrderByType() { + return this.orderByType; + } + + public void setOrderByType(String orderByType) { + this.orderByType = orderByType; + if(orderByType != null){ + putQueryParameter("OrderByType", orderByType); + } + } + + public String getResourceGroupId() { + return this.resourceGroupId; + } + + public void setResourceGroupId(String resourceGroupId) { + this.resourceGroupId = resourceGroupId; + if(resourceGroupId != null){ + putQueryParameter("ResourceGroupId", resourceGroupId); + } + } + + public Integer getPageSize() { + return this.pageSize; + } + + public void setPageSize(Integer pageSize) { + this.pageSize = pageSize; + if(pageSize != null){ + putQueryParameter("PageSize", pageSize.toString()); + } + } + + public List getTags() { + return this.tags; + } + + public void setTags(List 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 String getQueryType() { + return this.queryType; + } + + public void setQueryType(String queryType) { + this.queryType = queryType; + if(queryType != null){ + putQueryParameter("QueryType", queryType); + } + } + + public Long getEndExpirationDate() { + return this.endExpirationDate; + } + + public void setEndExpirationDate(Long endExpirationDate) { + this.endExpirationDate = endExpirationDate; + if(endExpirationDate != null){ + putQueryParameter("EndExpirationDate", endExpirationDate.toString()); + } + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + if(domainName != null){ + putQueryParameter("DomainName", domainName); + } + } + + public Long getStartExpirationDate() { + return this.startExpirationDate; + } + + public void setStartExpirationDate(Long startExpirationDate) { + this.startExpirationDate = startExpirationDate; + if(startExpirationDate != null){ + putQueryParameter("StartExpirationDate", startExpirationDate.toString()); + } + } + + public String getDomainGroupId() { + return this.domainGroupId; + } + + public void setDomainGroupId(String domainGroupId) { + this.domainGroupId = domainGroupId; + if(domainGroupId != null){ + putQueryParameter("DomainGroupId", domainGroupId); + } + } + + public Long getEndRegistrationDate() { + return this.endRegistrationDate; + } + + public void setEndRegistrationDate(Long endRegistrationDate) { + this.endRegistrationDate = endRegistrationDate; + if(endRegistrationDate != null){ + putQueryParameter("EndRegistrationDate", endRegistrationDate.toString()); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public Long getStartRegistrationDate() { + return this.startRegistrationDate; + } + + public void setStartRegistrationDate(Long startRegistrationDate) { + this.startRegistrationDate = startRegistrationDate; + if(startRegistrationDate != null){ + putQueryParameter("StartRegistrationDate", startRegistrationDate.toString()); + } + } + + 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 getResponseClass() { + return QueryDomainListResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainListResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainListResponse.java new file mode 100644 index 0000000000..5f3e88173b --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainListResponse.java @@ -0,0 +1,348 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryDomainListResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryDomainListResponse extends AcsResponse { + + private Boolean prePage; + + private Integer currentPageNum; + + private String requestId; + + private Integer pageSize; + + private Integer totalPageNum; + + private Integer totalItemNum; + + private Boolean nextPage; + + private List data; + + public Boolean getPrePage() { + return this.prePage; + } + + public void setPrePage(Boolean prePage) { + this.prePage = prePage; + } + + public Integer getCurrentPageNum() { + return this.currentPageNum; + } + + public void setCurrentPageNum(Integer currentPageNum) { + this.currentPageNum = currentPageNum; + } + + 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 getTotalPageNum() { + return this.totalPageNum; + } + + public void setTotalPageNum(Integer totalPageNum) { + this.totalPageNum = totalPageNum; + } + + public Integer getTotalItemNum() { + return this.totalItemNum; + } + + public void setTotalItemNum(Integer totalItemNum) { + this.totalItemNum = totalItemNum; + } + + public Boolean getNextPage() { + return this.nextPage; + } + + public void setNextPage(Boolean nextPage) { + this.nextPage = nextPage; + } + + public List getData() { + return this.data; + } + + public void setData(List data) { + this.data = data; + } + + public static class Domain { + + private String domainAuditStatus; + + private String domainGroupId; + + private String remark; + + private String domainGroupName; + + private String registrationDate; + + private String instanceId; + + private String domainName; + + private String expirationDateStatus; + + private String expirationDate; + + private String registrantType; + + private Long expirationDateLong; + + private Integer expirationCurrDateDiff; + + private Boolean premium; + + private Long registrationDateLong; + + private String productId; + + private String domainStatus; + + private String domainType; + + private String resourceGroupId; + + private String ccompany; + + private String chgholderStatus; + + private List tag; + + public String getDomainAuditStatus() { + return this.domainAuditStatus; + } + + public void setDomainAuditStatus(String domainAuditStatus) { + this.domainAuditStatus = domainAuditStatus; + } + + public String getDomainGroupId() { + return this.domainGroupId; + } + + public void setDomainGroupId(String domainGroupId) { + this.domainGroupId = domainGroupId; + } + + public String getRemark() { + return this.remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getDomainGroupName() { + return this.domainGroupName; + } + + public void setDomainGroupName(String domainGroupName) { + this.domainGroupName = domainGroupName; + } + + public String getRegistrationDate() { + return this.registrationDate; + } + + public void setRegistrationDate(String registrationDate) { + this.registrationDate = registrationDate; + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public String getExpirationDateStatus() { + return this.expirationDateStatus; + } + + public void setExpirationDateStatus(String expirationDateStatus) { + this.expirationDateStatus = expirationDateStatus; + } + + public String getExpirationDate() { + return this.expirationDate; + } + + public void setExpirationDate(String expirationDate) { + this.expirationDate = expirationDate; + } + + public String getRegistrantType() { + return this.registrantType; + } + + public void setRegistrantType(String registrantType) { + this.registrantType = registrantType; + } + + public Long getExpirationDateLong() { + return this.expirationDateLong; + } + + public void setExpirationDateLong(Long expirationDateLong) { + this.expirationDateLong = expirationDateLong; + } + + public Integer getExpirationCurrDateDiff() { + return this.expirationCurrDateDiff; + } + + public void setExpirationCurrDateDiff(Integer expirationCurrDateDiff) { + this.expirationCurrDateDiff = expirationCurrDateDiff; + } + + public Boolean getPremium() { + return this.premium; + } + + public void setPremium(Boolean premium) { + this.premium = premium; + } + + public Long getRegistrationDateLong() { + return this.registrationDateLong; + } + + public void setRegistrationDateLong(Long registrationDateLong) { + this.registrationDateLong = registrationDateLong; + } + + public String getProductId() { + return this.productId; + } + + public void setProductId(String productId) { + this.productId = productId; + } + + public String getDomainStatus() { + return this.domainStatus; + } + + public void setDomainStatus(String domainStatus) { + this.domainStatus = domainStatus; + } + + public String getDomainType() { + return this.domainType; + } + + public void setDomainType(String domainType) { + this.domainType = domainType; + } + + public String getResourceGroupId() { + return this.resourceGroupId; + } + + public void setResourceGroupId(String resourceGroupId) { + this.resourceGroupId = resourceGroupId; + } + + public String getCcompany() { + return this.ccompany; + } + + public void setCcompany(String ccompany) { + this.ccompany = ccompany; + } + + public String getChgholderStatus() { + return this.chgholderStatus; + } + + public void setChgholderStatus(String chgholderStatus) { + this.chgholderStatus = chgholderStatus; + } + + public List getTag() { + return this.tag; + } + + public void setTag(List tag) { + this.tag = tag; + } + + public static class TagItem { + + private String key; + + private String value; + + public String getKey() { + return this.key; + } + + public void setKey(String key) { + this.key = key; + } + + public String getValue() { + return this.value; + } + + public void setValue(String value) { + this.value = value; + } + } + } + + @Override + public QueryDomainListResponse getInstance(UnmarshallerContext context) { + return QueryDomainListResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainRealNameVerificationInfoRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainRealNameVerificationInfoRequest.java new file mode 100644 index 0000000000..3e72ada009 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainRealNameVerificationInfoRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryDomainRealNameVerificationInfoRequest extends RpcAcsRequest { + + + private Boolean fetchImage; + + private String domainName; + + private String userClientIp; + + private String lang; + public QueryDomainRealNameVerificationInfoRequest() { + super("Domain", "2018-01-29", "QueryDomainRealNameVerificationInfo", "domain"); + 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 Boolean getFetchImage() { + return this.fetchImage; + } + + public void setFetchImage(Boolean fetchImage) { + this.fetchImage = fetchImage; + if(fetchImage != null){ + putQueryParameter("FetchImage", fetchImage.toString()); + } + } + + 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 getResponseClass() { + return QueryDomainRealNameVerificationInfoResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainRealNameVerificationInfoResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainRealNameVerificationInfoResponse.java new file mode 100644 index 0000000000..1589888b93 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainRealNameVerificationInfoResponse.java @@ -0,0 +1,111 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryDomainRealNameVerificationInfoResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryDomainRealNameVerificationInfoResponse extends AcsResponse { + + private String identityCredentialType; + + private String requestId; + + private String instanceId; + + private String domainName; + + private String identityCredential; + + private String submissionDate; + + private String identityCredentialNo; + + private String identityCredentialUrl; + + public String getIdentityCredentialType() { + return this.identityCredentialType; + } + + public void setIdentityCredentialType(String identityCredentialType) { + this.identityCredentialType = identityCredentialType; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public String getIdentityCredential() { + return this.identityCredential; + } + + public void setIdentityCredential(String identityCredential) { + this.identityCredential = identityCredential; + } + + public String getSubmissionDate() { + return this.submissionDate; + } + + public void setSubmissionDate(String submissionDate) { + this.submissionDate = submissionDate; + } + + public String getIdentityCredentialNo() { + return this.identityCredentialNo; + } + + public void setIdentityCredentialNo(String identityCredentialNo) { + this.identityCredentialNo = identityCredentialNo; + } + + public String getIdentityCredentialUrl() { + return this.identityCredentialUrl; + } + + public void setIdentityCredentialUrl(String identityCredentialUrl) { + this.identityCredentialUrl = identityCredentialUrl; + } + + @Override + public QueryDomainRealNameVerificationInfoResponse getInstance(UnmarshallerContext context) { + return QueryDomainRealNameVerificationInfoResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/FinishDemandRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainSpecialBizDetailRequest.java similarity index 57% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/FinishDemandRequest.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainSpecialBizDetailRequest.java index 2727139bc1..a0592566a5 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/FinishDemandRequest.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainSpecialBizDetailRequest.java @@ -12,7 +12,7 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; @@ -22,14 +22,14 @@ * @author auto create * @version */ -public class FinishDemandRequest extends RpcAcsRequest { +public class QueryDomainSpecialBizDetailRequest extends RpcAcsRequest { - private String message; + private Long bizId; - private String bizId; - public FinishDemandRequest() { - super("Domain", "2018-02-08", "FinishDemand", "domain"); + private String userClientIp; + public QueryDomainSpecialBizDetailRequest() { + super("Domain", "2018-01-29", "QueryDomainSpecialBizDetail", "domain"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); @@ -37,31 +37,31 @@ public FinishDemandRequest() { } catch (Exception e) {} } - public String getMessage() { - return this.message; + public Long getBizId() { + return this.bizId; } - public void setMessage(String message) { - this.message = message; - if(message != null){ - putQueryParameter("Message", message); + public void setBizId(Long bizId) { + this.bizId = bizId; + if(bizId != null){ + putBodyParameter("BizId", bizId.toString()); } } - public String getBizId() { - return this.bizId; + public String getUserClientIp() { + return this.userClientIp; } - public void setBizId(String bizId) { - this.bizId = bizId; - if(bizId != null){ - putQueryParameter("BizId", bizId); + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); } } @Override - public Class getResponseClass() { - return FinishDemandResponse.class; + public Class getResponseClass() { + return QueryDomainSpecialBizDetailResponse.class; } } diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainSpecialBizDetailResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainSpecialBizDetailResponse.java new file mode 100644 index 0000000000..f5e238d083 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainSpecialBizDetailResponse.java @@ -0,0 +1,779 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryDomainSpecialBizDetailResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryDomainSpecialBizDetailResponse extends AcsResponse { + + private String requestId; + + private Integer httpStatusCode; + + private String dynamicCode; + + private String dynamicMessage; + + private Boolean synchro; + + private String errorMsg; + + private String errorCode; + + private Boolean success; + + private Boolean allowRetry; + + private String appName; + + private List errorArgs; + + private Module module; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public Integer getHttpStatusCode() { + return this.httpStatusCode; + } + + public void setHttpStatusCode(Integer httpStatusCode) { + this.httpStatusCode = httpStatusCode; + } + + public String getDynamicCode() { + return this.dynamicCode; + } + + public void setDynamicCode(String dynamicCode) { + this.dynamicCode = dynamicCode; + } + + public String getDynamicMessage() { + return this.dynamicMessage; + } + + public void setDynamicMessage(String dynamicMessage) { + this.dynamicMessage = dynamicMessage; + } + + public Boolean getSynchro() { + return this.synchro; + } + + public void setSynchro(Boolean synchro) { + this.synchro = synchro; + } + + public String getErrorMsg() { + return this.errorMsg; + } + + public void setErrorMsg(String errorMsg) { + this.errorMsg = errorMsg; + } + + public String getErrorCode() { + return this.errorCode; + } + + public void setErrorCode(String errorCode) { + this.errorCode = errorCode; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public Boolean getAllowRetry() { + return this.allowRetry; + } + + public void setAllowRetry(Boolean allowRetry) { + this.allowRetry = allowRetry; + } + + public String getAppName() { + return this.appName; + } + + public void setAppName(String appName) { + this.appName = appName; + } + + public List getErrorArgs() { + return this.errorArgs; + } + + public void setErrorArgs(List errorArgs) { + this.errorArgs = errorArgs; + } + + public Module getModule() { + return this.module; + } + + public void setModule(Module module) { + this.module = module; + } + + public static class Module { + + private Long id; + + private String gmtCreate; + + private String gmtModified; + + private String bizName; + + private String bizNo; + + private String domainName; + + private String saleId; + + private String userId; + + private String productId; + + private String bizType; + + private String bizStatus; + + private Integer status; + + private String statusDesc; + + private String auditMsg; + + private String orderId; + + private Long updateTime; + + private Long createTime; + + private List domainSpecialBizCredentials; + + private DomainSpecialBizContact domainSpecialBizContact; + + private DomainSpecialOrderResult domainSpecialOrderResult; + + public Long getId() { + return this.id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getGmtCreate() { + return this.gmtCreate; + } + + public void setGmtCreate(String gmtCreate) { + this.gmtCreate = gmtCreate; + } + + public String getGmtModified() { + return this.gmtModified; + } + + public void setGmtModified(String gmtModified) { + this.gmtModified = gmtModified; + } + + public String getBizName() { + return this.bizName; + } + + public void setBizName(String bizName) { + this.bizName = bizName; + } + + public String getBizNo() { + return this.bizNo; + } + + public void setBizNo(String bizNo) { + this.bizNo = bizNo; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public String getSaleId() { + return this.saleId; + } + + public void setSaleId(String saleId) { + this.saleId = saleId; + } + + public String getUserId() { + return this.userId; + } + + public void setUserId(String userId) { + this.userId = userId; + } + + public String getProductId() { + return this.productId; + } + + public void setProductId(String productId) { + this.productId = productId; + } + + public String getBizType() { + return this.bizType; + } + + public void setBizType(String bizType) { + this.bizType = bizType; + } + + public String getBizStatus() { + return this.bizStatus; + } + + public void setBizStatus(String bizStatus) { + this.bizStatus = bizStatus; + } + + public Integer getStatus() { + return this.status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public String getStatusDesc() { + return this.statusDesc; + } + + public void setStatusDesc(String statusDesc) { + this.statusDesc = statusDesc; + } + + public String getAuditMsg() { + return this.auditMsg; + } + + public void setAuditMsg(String auditMsg) { + this.auditMsg = auditMsg; + } + + public String getOrderId() { + return this.orderId; + } + + public void setOrderId(String orderId) { + this.orderId = orderId; + } + + public Long getUpdateTime() { + return this.updateTime; + } + + public void setUpdateTime(Long updateTime) { + this.updateTime = updateTime; + } + + public Long getCreateTime() { + return this.createTime; + } + + public void setCreateTime(Long createTime) { + this.createTime = createTime; + } + + public List getDomainSpecialBizCredentials() { + return this.domainSpecialBizCredentials; + } + + public void setDomainSpecialBizCredentials(List domainSpecialBizCredentials) { + this.domainSpecialBizCredentials = domainSpecialBizCredentials; + } + + public DomainSpecialBizContact getDomainSpecialBizContact() { + return this.domainSpecialBizContact; + } + + public void setDomainSpecialBizContact(DomainSpecialBizContact domainSpecialBizContact) { + this.domainSpecialBizContact = domainSpecialBizContact; + } + + public DomainSpecialOrderResult getDomainSpecialOrderResult() { + return this.domainSpecialOrderResult; + } + + public void setDomainSpecialOrderResult(DomainSpecialOrderResult domainSpecialOrderResult) { + this.domainSpecialOrderResult = domainSpecialOrderResult; + } + + public static class DomainSpecialBizCredential { + + private String domainName; + + private String saleId; + + private Long bizId; + + private String credentialNo; + + private String credentialType; + + private String credentialUrl; + + private Integer holderCert; + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public String getSaleId() { + return this.saleId; + } + + public void setSaleId(String saleId) { + this.saleId = saleId; + } + + public Long getBizId() { + return this.bizId; + } + + public void setBizId(Long bizId) { + this.bizId = bizId; + } + + public String getCredentialNo() { + return this.credentialNo; + } + + public void setCredentialNo(String credentialNo) { + this.credentialNo = credentialNo; + } + + public String getCredentialType() { + return this.credentialType; + } + + public void setCredentialType(String credentialType) { + this.credentialType = credentialType; + } + + public String getCredentialUrl() { + return this.credentialUrl; + } + + public void setCredentialUrl(String credentialUrl) { + this.credentialUrl = credentialUrl; + } + + public Integer getHolderCert() { + return this.holderCert; + } + + public void setHolderCert(Integer holderCert) { + this.holderCert = holderCert; + } + } + + public static class DomainSpecialBizContact { + + private Long bizId; + + private Integer regType; + + private String cCompany; + + private String eCompany; + + private String cName; + + private String eName; + + private String cCountry; + + private String cProvince; + + private String eProvince; + + private String cCity; + + private String eCity; + + private String cVenu; + + private String eVenu; + + private String postalcode; + + private String email; + + private String telArea; + + private String telMain; + + private String telExt; + + private String faxArea; + + private String faxMain; + + private String faxExt; + + private String mobile; + + private String extend; + + private String vspContactId; + + private String registrantId; + + public Long getBizId() { + return this.bizId; + } + + public void setBizId(Long bizId) { + this.bizId = bizId; + } + + public Integer getRegType() { + return this.regType; + } + + public void setRegType(Integer regType) { + this.regType = regType; + } + + public String getCCompany() { + return this.cCompany; + } + + public void setCCompany(String cCompany) { + this.cCompany = cCompany; + } + + public String getECompany() { + return this.eCompany; + } + + public void setECompany(String eCompany) { + this.eCompany = eCompany; + } + + public String getCName() { + return this.cName; + } + + public void setCName(String cName) { + this.cName = cName; + } + + public String getEName() { + return this.eName; + } + + public void setEName(String eName) { + this.eName = eName; + } + + public String getCCountry() { + return this.cCountry; + } + + public void setCCountry(String cCountry) { + this.cCountry = cCountry; + } + + public String getCProvince() { + return this.cProvince; + } + + public void setCProvince(String cProvince) { + this.cProvince = cProvince; + } + + public String getEProvince() { + return this.eProvince; + } + + public void setEProvince(String eProvince) { + this.eProvince = eProvince; + } + + public String getCCity() { + return this.cCity; + } + + public void setCCity(String cCity) { + this.cCity = cCity; + } + + public String getECity() { + return this.eCity; + } + + public void setECity(String eCity) { + this.eCity = eCity; + } + + public String getCVenu() { + return this.cVenu; + } + + public void setCVenu(String cVenu) { + this.cVenu = cVenu; + } + + public String getEVenu() { + return this.eVenu; + } + + public void setEVenu(String eVenu) { + this.eVenu = eVenu; + } + + public String getPostalcode() { + return this.postalcode; + } + + public void setPostalcode(String postalcode) { + this.postalcode = postalcode; + } + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getTelArea() { + return this.telArea; + } + + public void setTelArea(String telArea) { + this.telArea = telArea; + } + + public String getTelMain() { + return this.telMain; + } + + public void setTelMain(String telMain) { + this.telMain = telMain; + } + + public String getTelExt() { + return this.telExt; + } + + public void setTelExt(String telExt) { + this.telExt = telExt; + } + + public String getFaxArea() { + return this.faxArea; + } + + public void setFaxArea(String faxArea) { + this.faxArea = faxArea; + } + + public String getFaxMain() { + return this.faxMain; + } + + public void setFaxMain(String faxMain) { + this.faxMain = faxMain; + } + + public String getFaxExt() { + return this.faxExt; + } + + public void setFaxExt(String faxExt) { + this.faxExt = faxExt; + } + + public String getMobile() { + return this.mobile; + } + + public void setMobile(String mobile) { + this.mobile = mobile; + } + + public String getExtend() { + return this.extend; + } + + public void setExtend(String extend) { + this.extend = extend; + } + + public String getVspContactId() { + return this.vspContactId; + } + + public void setVspContactId(String vspContactId) { + this.vspContactId = vspContactId; + } + + public String getRegistrantId() { + return this.registrantId; + } + + public void setRegistrantId(String registrantId) { + this.registrantId = registrantId; + } + } + + public static class DomainSpecialOrderResult { + + private String saleId; + + private String orderId; + + private String subOrderId; + + private String actionType; + + private Double orderAmount; + + private String orderCurrency; + + private String orderTime; + + private Integer orderYear; + + private String orderStatus; + + public String getSaleId() { + return this.saleId; + } + + public void setSaleId(String saleId) { + this.saleId = saleId; + } + + public String getOrderId() { + return this.orderId; + } + + public void setOrderId(String orderId) { + this.orderId = orderId; + } + + public String getSubOrderId() { + return this.subOrderId; + } + + public void setSubOrderId(String subOrderId) { + this.subOrderId = subOrderId; + } + + public String getActionType() { + return this.actionType; + } + + public void setActionType(String actionType) { + this.actionType = actionType; + } + + public Double getOrderAmount() { + return this.orderAmount; + } + + public void setOrderAmount(Double orderAmount) { + this.orderAmount = orderAmount; + } + + public String getOrderCurrency() { + return this.orderCurrency; + } + + public void setOrderCurrency(String orderCurrency) { + this.orderCurrency = orderCurrency; + } + + public String getOrderTime() { + return this.orderTime; + } + + public void setOrderTime(String orderTime) { + this.orderTime = orderTime; + } + + public Integer getOrderYear() { + return this.orderYear; + } + + public void setOrderYear(Integer orderYear) { + this.orderYear = orderYear; + } + + public String getOrderStatus() { + return this.orderStatus; + } + + public void setOrderStatus(String orderStatus) { + this.orderStatus = orderStatus; + } + } + } + + @Override + public QueryDomainSpecialBizDetailResponse getInstance(UnmarshallerContext context) { + return QueryDomainSpecialBizDetailResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainSpecialBizInfoByDomainRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainSpecialBizInfoByDomainRequest.java new file mode 100644 index 0000000000..1c351f6428 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainSpecialBizInfoByDomainRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryDomainSpecialBizInfoByDomainRequest extends RpcAcsRequest { + + + private String domainName; + + private String bizType; + + private String userClientIp; + public QueryDomainSpecialBizInfoByDomainRequest() { + super("Domain", "2018-01-29", "QueryDomainSpecialBizInfoByDomain", "domain"); + 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){ + putBodyParameter("DomainName", domainName); + } + } + + public String getBizType() { + return this.bizType; + } + + public void setBizType(String bizType) { + this.bizType = bizType; + if(bizType != null){ + putBodyParameter("BizType", bizType); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + @Override + public Class getResponseClass() { + return QueryDomainSpecialBizInfoByDomainResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainSpecialBizInfoByDomainResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainSpecialBizInfoByDomainResponse.java new file mode 100644 index 0000000000..6a3a24c738 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainSpecialBizInfoByDomainResponse.java @@ -0,0 +1,676 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryDomainSpecialBizInfoByDomainResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryDomainSpecialBizInfoByDomainResponse extends AcsResponse { + + private String requestId; + + private Integer httpStatusCode; + + private String dynamicCode; + + private String dynamicMessage; + + private Boolean synchro; + + private String errorMsg; + + private String errorCode; + + private Boolean success; + + private Boolean allowRetry; + + private String appName; + + private List errorArgs; + + private Module module; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public Integer getHttpStatusCode() { + return this.httpStatusCode; + } + + public void setHttpStatusCode(Integer httpStatusCode) { + this.httpStatusCode = httpStatusCode; + } + + public String getDynamicCode() { + return this.dynamicCode; + } + + public void setDynamicCode(String dynamicCode) { + this.dynamicCode = dynamicCode; + } + + public String getDynamicMessage() { + return this.dynamicMessage; + } + + public void setDynamicMessage(String dynamicMessage) { + this.dynamicMessage = dynamicMessage; + } + + public Boolean getSynchro() { + return this.synchro; + } + + public void setSynchro(Boolean synchro) { + this.synchro = synchro; + } + + public String getErrorMsg() { + return this.errorMsg; + } + + public void setErrorMsg(String errorMsg) { + this.errorMsg = errorMsg; + } + + public String getErrorCode() { + return this.errorCode; + } + + public void setErrorCode(String errorCode) { + this.errorCode = errorCode; + } + + public Boolean getSuccess() { + return this.success; + } + + public void setSuccess(Boolean success) { + this.success = success; + } + + public Boolean getAllowRetry() { + return this.allowRetry; + } + + public void setAllowRetry(Boolean allowRetry) { + this.allowRetry = allowRetry; + } + + public String getAppName() { + return this.appName; + } + + public void setAppName(String appName) { + this.appName = appName; + } + + public List getErrorArgs() { + return this.errorArgs; + } + + public void setErrorArgs(List errorArgs) { + this.errorArgs = errorArgs; + } + + public Module getModule() { + return this.module; + } + + public void setModule(Module module) { + this.module = module; + } + + public static class Module { + + private Long id; + + private String gmtCreate; + + private String gmtModified; + + private String bizName; + + private String bizNo; + + private String domainName; + + private String saleId; + + private String userId; + + private String productId; + + private String bizType; + + private String bizStatus; + + private Integer status; + + private String statusDesc; + + private String auditMsg; + + private String orderId; + + private Long updateTime; + + private Long createTime; + + private List domainSpecialBizCredentials; + + private DomainSpecialBizContact domainSpecialBizContact; + + public Long getId() { + return this.id; + } + + public void setId(Long id) { + this.id = id; + } + + public String getGmtCreate() { + return this.gmtCreate; + } + + public void setGmtCreate(String gmtCreate) { + this.gmtCreate = gmtCreate; + } + + public String getGmtModified() { + return this.gmtModified; + } + + public void setGmtModified(String gmtModified) { + this.gmtModified = gmtModified; + } + + public String getBizName() { + return this.bizName; + } + + public void setBizName(String bizName) { + this.bizName = bizName; + } + + public String getBizNo() { + return this.bizNo; + } + + public void setBizNo(String bizNo) { + this.bizNo = bizNo; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public String getSaleId() { + return this.saleId; + } + + public void setSaleId(String saleId) { + this.saleId = saleId; + } + + public String getUserId() { + return this.userId; + } + + public void setUserId(String userId) { + this.userId = userId; + } + + public String getProductId() { + return this.productId; + } + + public void setProductId(String productId) { + this.productId = productId; + } + + public String getBizType() { + return this.bizType; + } + + public void setBizType(String bizType) { + this.bizType = bizType; + } + + public String getBizStatus() { + return this.bizStatus; + } + + public void setBizStatus(String bizStatus) { + this.bizStatus = bizStatus; + } + + public Integer getStatus() { + return this.status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public String getStatusDesc() { + return this.statusDesc; + } + + public void setStatusDesc(String statusDesc) { + this.statusDesc = statusDesc; + } + + public String getAuditMsg() { + return this.auditMsg; + } + + public void setAuditMsg(String auditMsg) { + this.auditMsg = auditMsg; + } + + public String getOrderId() { + return this.orderId; + } + + public void setOrderId(String orderId) { + this.orderId = orderId; + } + + public Long getUpdateTime() { + return this.updateTime; + } + + public void setUpdateTime(Long updateTime) { + this.updateTime = updateTime; + } + + public Long getCreateTime() { + return this.createTime; + } + + public void setCreateTime(Long createTime) { + this.createTime = createTime; + } + + public List getDomainSpecialBizCredentials() { + return this.domainSpecialBizCredentials; + } + + public void setDomainSpecialBizCredentials(List domainSpecialBizCredentials) { + this.domainSpecialBizCredentials = domainSpecialBizCredentials; + } + + public DomainSpecialBizContact getDomainSpecialBizContact() { + return this.domainSpecialBizContact; + } + + public void setDomainSpecialBizContact(DomainSpecialBizContact domainSpecialBizContact) { + this.domainSpecialBizContact = domainSpecialBizContact; + } + + public static class DomainSpecialBizCredential { + + private String domainName; + + private String saleId; + + private Long bizId; + + private String credentialNo; + + private String credentialType; + + private String credentialUrl; + + private Integer holderCert; + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public String getSaleId() { + return this.saleId; + } + + public void setSaleId(String saleId) { + this.saleId = saleId; + } + + public Long getBizId() { + return this.bizId; + } + + public void setBizId(Long bizId) { + this.bizId = bizId; + } + + public String getCredentialNo() { + return this.credentialNo; + } + + public void setCredentialNo(String credentialNo) { + this.credentialNo = credentialNo; + } + + public String getCredentialType() { + return this.credentialType; + } + + public void setCredentialType(String credentialType) { + this.credentialType = credentialType; + } + + public String getCredentialUrl() { + return this.credentialUrl; + } + + public void setCredentialUrl(String credentialUrl) { + this.credentialUrl = credentialUrl; + } + + public Integer getHolderCert() { + return this.holderCert; + } + + public void setHolderCert(Integer holderCert) { + this.holderCert = holderCert; + } + } + + public static class DomainSpecialBizContact { + + private Long bizId; + + private Integer regType; + + private String cCompany; + + private String eCompany; + + private String cName; + + private String eName; + + private String cCountry; + + private String cProvince; + + private String eProvince; + + private String cCity; + + private String eCity; + + private String cVenu; + + private String eVenu; + + private String postalcode; + + private String email; + + private String telArea; + + private String telMain; + + private String telExt; + + private String faxArea; + + private String faxMain; + + private String faxExt; + + private String mobile; + + private String extend; + + private String vspContactId; + + private String registrantId; + + public Long getBizId() { + return this.bizId; + } + + public void setBizId(Long bizId) { + this.bizId = bizId; + } + + public Integer getRegType() { + return this.regType; + } + + public void setRegType(Integer regType) { + this.regType = regType; + } + + public String getCCompany() { + return this.cCompany; + } + + public void setCCompany(String cCompany) { + this.cCompany = cCompany; + } + + public String getECompany() { + return this.eCompany; + } + + public void setECompany(String eCompany) { + this.eCompany = eCompany; + } + + public String getCName() { + return this.cName; + } + + public void setCName(String cName) { + this.cName = cName; + } + + public String getEName() { + return this.eName; + } + + public void setEName(String eName) { + this.eName = eName; + } + + public String getCCountry() { + return this.cCountry; + } + + public void setCCountry(String cCountry) { + this.cCountry = cCountry; + } + + public String getCProvince() { + return this.cProvince; + } + + public void setCProvince(String cProvince) { + this.cProvince = cProvince; + } + + public String getEProvince() { + return this.eProvince; + } + + public void setEProvince(String eProvince) { + this.eProvince = eProvince; + } + + public String getCCity() { + return this.cCity; + } + + public void setCCity(String cCity) { + this.cCity = cCity; + } + + public String getECity() { + return this.eCity; + } + + public void setECity(String eCity) { + this.eCity = eCity; + } + + public String getCVenu() { + return this.cVenu; + } + + public void setCVenu(String cVenu) { + this.cVenu = cVenu; + } + + public String getEVenu() { + return this.eVenu; + } + + public void setEVenu(String eVenu) { + this.eVenu = eVenu; + } + + public String getPostalcode() { + return this.postalcode; + } + + public void setPostalcode(String postalcode) { + this.postalcode = postalcode; + } + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getTelArea() { + return this.telArea; + } + + public void setTelArea(String telArea) { + this.telArea = telArea; + } + + public String getTelMain() { + return this.telMain; + } + + public void setTelMain(String telMain) { + this.telMain = telMain; + } + + public String getTelExt() { + return this.telExt; + } + + public void setTelExt(String telExt) { + this.telExt = telExt; + } + + public String getFaxArea() { + return this.faxArea; + } + + public void setFaxArea(String faxArea) { + this.faxArea = faxArea; + } + + public String getFaxMain() { + return this.faxMain; + } + + public void setFaxMain(String faxMain) { + this.faxMain = faxMain; + } + + public String getFaxExt() { + return this.faxExt; + } + + public void setFaxExt(String faxExt) { + this.faxExt = faxExt; + } + + public String getMobile() { + return this.mobile; + } + + public void setMobile(String mobile) { + this.mobile = mobile; + } + + public String getExtend() { + return this.extend; + } + + public void setExtend(String extend) { + this.extend = extend; + } + + public String getVspContactId() { + return this.vspContactId; + } + + public void setVspContactId(String vspContactId) { + this.vspContactId = vspContactId; + } + + public String getRegistrantId() { + return this.registrantId; + } + + public void setRegistrantId(String registrantId) { + this.registrantId = registrantId; + } + } + } + + @Override + public QueryDomainSpecialBizInfoByDomainResponse getInstance(UnmarshallerContext context) { + return QueryDomainSpecialBizInfoByDomainResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/FailDemandRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainSuffixRequest.java similarity index 56% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/FailDemandRequest.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainSuffixRequest.java index 763204940a..0f2dc5d8c2 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/FailDemandRequest.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainSuffixRequest.java @@ -12,7 +12,7 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; @@ -22,14 +22,14 @@ * @author auto create * @version */ -public class FailDemandRequest extends RpcAcsRequest { +public class QueryDomainSuffixRequest extends RpcAcsRequest { - private String message; + private String userClientIp; - private String bizId; - public FailDemandRequest() { - super("Domain", "2018-02-08", "FailDemand", "domain"); + private String lang; + public QueryDomainSuffixRequest() { + super("Domain", "2018-01-29", "QueryDomainSuffix", "domain"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); @@ -37,31 +37,31 @@ public FailDemandRequest() { } catch (Exception e) {} } - public String getMessage() { - return this.message; + public String getUserClientIp() { + return this.userClientIp; } - public void setMessage(String message) { - this.message = message; - if(message != null){ - putQueryParameter("Message", message); + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); } } - public String getBizId() { - return this.bizId; + public String getLang() { + return this.lang; } - public void setBizId(String bizId) { - this.bizId = bizId; - if(bizId != null){ - putQueryParameter("BizId", bizId); + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); } } @Override - public Class getResponseClass() { - return FailDemandResponse.class; + public Class getResponseClass() { + return QueryDomainSuffixResponse.class; } } diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainSuffixResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainSuffixResponse.java new file mode 100644 index 0000000000..bde951f4de --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryDomainSuffixResponse.java @@ -0,0 +1,52 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryDomainSuffixResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryDomainSuffixResponse extends AcsResponse { + + private String requestId; + + private List suffixList; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getSuffixList() { + return this.suffixList; + } + + public void setSuffixList(List suffixList) { + this.suffixList = suffixList; + } + + @Override + public QueryDomainSuffixResponse getInstance(UnmarshallerContext context) { + return QueryDomainSuffixResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryEmailVerificationRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryEmailVerificationRequest.java new file mode 100644 index 0000000000..65b9a4bbb9 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryEmailVerificationRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryEmailVerificationRequest extends RpcAcsRequest { + + + private String userClientIp; + + private String lang; + + private String email; + public QueryEmailVerificationRequest() { + super("Domain", "2018-01-29", "QueryEmailVerification", "domain"); + 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 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 getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + if(email != null){ + putQueryParameter("Email", email); + } + } + + @Override + public Class getResponseClass() { + return QueryEmailVerificationResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryEmailVerificationResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryEmailVerificationResponse.java new file mode 100644 index 0000000000..f7e61775ca --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryEmailVerificationResponse.java @@ -0,0 +1,146 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryEmailVerificationResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryEmailVerificationResponse extends AcsResponse { + + private Integer verificationStatus; + + private String gmtCreate; + + private String email; + + private String emailVerificationNo; + + private String confirmIp; + + private String requestId; + + private String userId; + + private String gmtModified; + + private String sendIp; + + private String verificationTime; + + private String tokenSendTime; + + public Integer getVerificationStatus() { + return this.verificationStatus; + } + + public void setVerificationStatus(Integer verificationStatus) { + this.verificationStatus = verificationStatus; + } + + public String getGmtCreate() { + return this.gmtCreate; + } + + public void setGmtCreate(String gmtCreate) { + this.gmtCreate = gmtCreate; + } + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getEmailVerificationNo() { + return this.emailVerificationNo; + } + + public void setEmailVerificationNo(String emailVerificationNo) { + this.emailVerificationNo = emailVerificationNo; + } + + public String getConfirmIp() { + return this.confirmIp; + } + + public void setConfirmIp(String confirmIp) { + this.confirmIp = confirmIp; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getUserId() { + return this.userId; + } + + public void setUserId(String userId) { + this.userId = userId; + } + + public String getGmtModified() { + return this.gmtModified; + } + + public void setGmtModified(String gmtModified) { + this.gmtModified = gmtModified; + } + + public String getSendIp() { + return this.sendIp; + } + + public void setSendIp(String sendIp) { + this.sendIp = sendIp; + } + + public String getVerificationTime() { + return this.verificationTime; + } + + public void setVerificationTime(String verificationTime) { + this.verificationTime = verificationTime; + } + + public String getTokenSendTime() { + return this.tokenSendTime; + } + + public void setTokenSendTime(String tokenSendTime) { + this.tokenSendTime = tokenSendTime; + } + + @Override + public QueryEmailVerificationResponse getInstance(UnmarshallerContext context) { + return QueryEmailVerificationResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryDomainTransferStatusRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryEnsAssociationRequest.java similarity index 57% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryDomainTransferStatusRequest.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryEnsAssociationRequest.java index 6db09180b2..0c6076231a 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryDomainTransferStatusRequest.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryEnsAssociationRequest.java @@ -12,7 +12,7 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; @@ -22,12 +22,16 @@ * @author auto create * @version */ -public class QueryDomainTransferStatusRequest extends RpcAcsRequest { +public class QueryEnsAssociationRequest extends RpcAcsRequest { - private String domainName; - public QueryDomainTransferStatusRequest() { - super("Domain", "2018-02-08", "QueryDomainTransferStatus", "domain"); + private String domainName; + + private String userClientIp; + + private String lang; + public QueryEnsAssociationRequest() { + super("Domain", "2018-01-29", "QueryEnsAssociation", "domain"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); @@ -42,13 +46,35 @@ public String getDomainName() { public void setDomainName(String domainName) { this.domainName = domainName; if(domainName != null){ - putBodyParameter("DomainName", domainName); + 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 getResponseClass() { - return QueryDomainTransferStatusResponse.class; + public Class getResponseClass() { + return QueryEnsAssociationResponse.class; } } diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryEnsAssociationResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryEnsAssociationResponse.java new file mode 100644 index 0000000000..8da5dc7da0 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryEnsAssociationResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryEnsAssociationResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryEnsAssociationResponse extends AcsResponse { + + private String address; + + private String requestId; + + public String getAddress() { + return this.address; + } + + public void setAddress(String address) { + this.address = address; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + @Override + public QueryEnsAssociationResponse getInstance(UnmarshallerContext context) { + return QueryEnsAssociationResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryFailReasonForDomainRealNameVerificationRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryFailReasonForDomainRealNameVerificationRequest.java new file mode 100644 index 0000000000..ec67a77ef5 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryFailReasonForDomainRealNameVerificationRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryFailReasonForDomainRealNameVerificationRequest extends RpcAcsRequest { + + + private String domainName; + + private String realNameVerificationAction; + + private String userClientIp; + + private String lang; + public QueryFailReasonForDomainRealNameVerificationRequest() { + super("Domain", "2018-01-29", "QueryFailReasonForDomainRealNameVerification", "domain"); + 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 getRealNameVerificationAction() { + return this.realNameVerificationAction; + } + + public void setRealNameVerificationAction(String realNameVerificationAction) { + this.realNameVerificationAction = realNameVerificationAction; + if(realNameVerificationAction != null){ + putQueryParameter("RealNameVerificationAction", realNameVerificationAction); + } + } + + 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 getResponseClass() { + return QueryFailReasonForDomainRealNameVerificationResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryFailReasonForDomainRealNameVerificationResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryFailReasonForDomainRealNameVerificationResponse.java new file mode 100644 index 0000000000..e5c404ffe3 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryFailReasonForDomainRealNameVerificationResponse.java @@ -0,0 +1,90 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryFailReasonForDomainRealNameVerificationResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryFailReasonForDomainRealNameVerificationResponse extends AcsResponse { + + private String requestId; + + private List data; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getData() { + return this.data; + } + + public void setData(List data) { + this.data = data; + } + + public static class FailRecord { + + private String date; + + private String failReason; + + private String domainNameVerificationStatus; + + public String getDate() { + return this.date; + } + + public void setDate(String date) { + this.date = date; + } + + public String getFailReason() { + return this.failReason; + } + + public void setFailReason(String failReason) { + this.failReason = failReason; + } + + public String getDomainNameVerificationStatus() { + return this.domainNameVerificationStatus; + } + + public void setDomainNameVerificationStatus(String domainNameVerificationStatus) { + this.domainNameVerificationStatus = domainNameVerificationStatus; + } + } + + @Override + public QueryFailReasonForDomainRealNameVerificationResponse getInstance(UnmarshallerContext context) { + return QueryFailReasonForDomainRealNameVerificationResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryFailReasonForRegistrantProfileRealNameVerificationRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryFailReasonForRegistrantProfileRealNameVerificationRequest.java new file mode 100644 index 0000000000..f36cba572c --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryFailReasonForRegistrantProfileRealNameVerificationRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryFailReasonForRegistrantProfileRealNameVerificationRequest extends RpcAcsRequest { + + + private Long registrantProfileID; + + private String userClientIp; + + private String lang; + public QueryFailReasonForRegistrantProfileRealNameVerificationRequest() { + super("Domain", "2018-01-29", "QueryFailReasonForRegistrantProfileRealNameVerification", "domain"); + 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 getRegistrantProfileID() { + return this.registrantProfileID; + } + + public void setRegistrantProfileID(Long registrantProfileID) { + this.registrantProfileID = registrantProfileID; + if(registrantProfileID != null){ + putQueryParameter("RegistrantProfileID", registrantProfileID.toString()); + } + } + + 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 getResponseClass() { + return QueryFailReasonForRegistrantProfileRealNameVerificationResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryFailReasonForRegistrantProfileRealNameVerificationResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryFailReasonForRegistrantProfileRealNameVerificationResponse.java new file mode 100644 index 0000000000..69f7bb64ba --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryFailReasonForRegistrantProfileRealNameVerificationResponse.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryFailReasonForRegistrantProfileRealNameVerificationResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryFailReasonForRegistrantProfileRealNameVerificationResponse extends AcsResponse { + + private String requestId; + + private List data; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getData() { + return this.data; + } + + public void setData(List data) { + this.data = data; + } + + public static class FailRecord { + + private String date; + + private String failReason; + + public String getDate() { + return this.date; + } + + public void setDate(String date) { + this.date = date; + } + + public String getFailReason() { + return this.failReason; + } + + public void setFailReason(String failReason) { + this.failReason = failReason; + } + } + + @Override + public QueryFailReasonForRegistrantProfileRealNameVerificationResponse getInstance(UnmarshallerContext context) { + return QueryFailReasonForRegistrantProfileRealNameVerificationResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryFailingReasonListForQualificationRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryFailingReasonListForQualificationRequest.java new file mode 100644 index 0000000000..baf1abd9ae --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryFailingReasonListForQualificationRequest.java @@ -0,0 +1,106 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryFailingReasonListForQualificationRequest extends RpcAcsRequest { + + + private String qualificationType; + + private String instanceId; + + private String userClientIp; + + private Integer limit; + + private String lang; + public QueryFailingReasonListForQualificationRequest() { + super("Domain", "2018-01-29", "QueryFailingReasonListForQualification", "domain"); + 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 getQualificationType() { + return this.qualificationType; + } + + public void setQualificationType(String qualificationType) { + this.qualificationType = qualificationType; + if(qualificationType != null){ + putQueryParameter("QualificationType", qualificationType); + } + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + if(instanceId != null){ + putQueryParameter("InstanceId", instanceId); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public Integer getLimit() { + return this.limit; + } + + public void setLimit(Integer limit) { + this.limit = limit; + if(limit != null){ + putQueryParameter("Limit", limit.toString()); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return QueryFailingReasonListForQualificationResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryFailingReasonListForQualificationResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryFailingReasonListForQualificationResponse.java new file mode 100644 index 0000000000..b601b8faa0 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryFailingReasonListForQualificationResponse.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryFailingReasonListForQualificationResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryFailingReasonListForQualificationResponse extends AcsResponse { + + private String requestId; + + private List data; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getData() { + return this.data; + } + + public void setData(List data) { + this.data = data; + } + + public static class FailRecord { + + private String date; + + private String failReason; + + public String getDate() { + return this.date; + } + + public void setDate(String date) { + this.date = date; + } + + public String getFailReason() { + return this.failReason; + } + + public void setFailReason(String failReason) { + this.failReason = failReason; + } + } + + @Override + public QueryFailingReasonListForQualificationResponse getInstance(UnmarshallerContext context) { + return QueryFailingReasonListForQualificationResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBrokerDemandRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryIntlFixedPriceOrderListRequest.java similarity index 65% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBrokerDemandRequest.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryIntlFixedPriceOrderListRequest.java index 676ba444b2..938e291508 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBrokerDemandRequest.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryIntlFixedPriceOrderListRequest.java @@ -12,9 +12,10 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.domain.Endpoint; @@ -22,18 +23,19 @@ * @author auto create * @version */ -public class QueryBrokerDemandRequest extends RpcAcsRequest { +public class QueryIntlFixedPriceOrderListRequest extends RpcAcsRequest { - private Integer currentPage; - - private Integer pageSize; + private Long currentPage; private String bizId; - private String status; - public QueryBrokerDemandRequest() { - super("Domain", "2018-02-08", "QueryBrokerDemand", "domain"); + private Long pageSize; + + private Long status; + public QueryIntlFixedPriceOrderListRequest() { + super("Domain", "2018-01-29", "QueryIntlFixedPriceOrderList", "domain"); + setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); @@ -41,28 +43,17 @@ public QueryBrokerDemandRequest() { } catch (Exception e) {} } - public Integer getCurrentPage() { + public Long getCurrentPage() { return this.currentPage; } - public void setCurrentPage(Integer currentPage) { + public void setCurrentPage(Long currentPage) { this.currentPage = currentPage; if(currentPage != null){ putQueryParameter("CurrentPage", currentPage.toString()); } } - public Integer getPageSize() { - return this.pageSize; - } - - public void setPageSize(Integer pageSize) { - this.pageSize = pageSize; - if(pageSize != null){ - putQueryParameter("PageSize", pageSize.toString()); - } - } - public String getBizId() { return this.bizId; } @@ -74,20 +65,31 @@ public void setBizId(String bizId) { } } - public String getStatus() { + public Long getPageSize() { + return this.pageSize; + } + + public void setPageSize(Long pageSize) { + this.pageSize = pageSize; + if(pageSize != null){ + putQueryParameter("PageSize", pageSize.toString()); + } + } + + public Long getStatus() { return this.status; } - public void setStatus(String status) { + public void setStatus(Long status) { this.status = status; if(status != null){ - putQueryParameter("Status", status); + putQueryParameter("Status", status.toString()); } } @Override - public Class getResponseClass() { - return QueryBrokerDemandResponse.class; + public Class getResponseClass() { + return QueryIntlFixedPriceOrderListResponse.class; } } diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryIntlFixedPriceOrderListResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryIntlFixedPriceOrderListResponse.java new file mode 100644 index 0000000000..429463b6a9 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryIntlFixedPriceOrderListResponse.java @@ -0,0 +1,193 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryIntlFixedPriceOrderListResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryIntlFixedPriceOrderListResponse extends AcsResponse { + + private String requestId; + + private Module module; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public Module getModule() { + return this.module; + } + + public void setModule(Module module) { + this.module = module; + } + + public static class Module { + + private Integer totalItemNum; + + private Integer currentPageNum; + + private Integer pageSize; + + private Integer totalPageNum; + + private List data; + + public Integer getTotalItemNum() { + return this.totalItemNum; + } + + public void setTotalItemNum(Integer totalItemNum) { + this.totalItemNum = totalItemNum; + } + + public Integer getCurrentPageNum() { + return this.currentPageNum; + } + + public void setCurrentPageNum(Integer currentPageNum) { + this.currentPageNum = currentPageNum; + } + + public Integer getPageSize() { + return this.pageSize; + } + + public void setPageSize(Integer pageSize) { + this.pageSize = pageSize; + } + + public Integer getTotalPageNum() { + return this.totalPageNum; + } + + public void setTotalPageNum(Integer totalPageNum) { + this.totalPageNum = totalPageNum; + } + + public List getData() { + return this.data; + } + + public void setData(List data) { + this.data = data; + } + + public static class OrderList { + + private Integer orderType; + + private String bizId; + + private String userId; + + private Integer status; + + private Long price; + + private String domain; + + private Long createTime; + + private Long updateTime; + + public Integer getOrderType() { + return this.orderType; + } + + public void setOrderType(Integer orderType) { + this.orderType = orderType; + } + + public String getBizId() { + return this.bizId; + } + + public void setBizId(String bizId) { + this.bizId = bizId; + } + + public String getUserId() { + return this.userId; + } + + public void setUserId(String userId) { + this.userId = userId; + } + + public Integer getStatus() { + return this.status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public Long getPrice() { + return this.price; + } + + public void setPrice(Long price) { + this.price = price; + } + + public String getDomain() { + return this.domain; + } + + public void setDomain(String domain) { + this.domain = domain; + } + + public Long getCreateTime() { + return this.createTime; + } + + public void setCreateTime(Long createTime) { + this.createTime = createTime; + } + + public Long getUpdateTime() { + return this.updateTime; + } + + public void setUpdateTime(Long updateTime) { + this.updateTime = updateTime; + } + } + } + + @Override + public QueryIntlFixedPriceOrderListResponse getInstance(UnmarshallerContext context) { + return QueryIntlFixedPriceOrderListResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryLocalEnsAssociationRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryLocalEnsAssociationRequest.java new file mode 100644 index 0000000000..1a70725516 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryLocalEnsAssociationRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryLocalEnsAssociationRequest extends RpcAcsRequest { + + + private String domainName; + + private String userClientIp; + + private String lang; + public QueryLocalEnsAssociationRequest() { + super("Domain", "2018-01-29", "QueryLocalEnsAssociation", "domain"); + 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 getResponseClass() { + return QueryLocalEnsAssociationResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryLocalEnsAssociationResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryLocalEnsAssociationResponse.java new file mode 100644 index 0000000000..254d723149 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryLocalEnsAssociationResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryLocalEnsAssociationResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryLocalEnsAssociationResponse extends AcsResponse { + + private String address; + + private String requestId; + + public String getAddress() { + return this.address; + } + + public void setAddress(String address) { + this.address = address; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + @Override + public QueryLocalEnsAssociationResponse getInstance(UnmarshallerContext context) { + return QueryLocalEnsAssociationResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryOperationAuditInfoDetailRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryOperationAuditInfoDetailRequest.java new file mode 100644 index 0000000000..6e9d6cf2b7 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryOperationAuditInfoDetailRequest.java @@ -0,0 +1,67 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryOperationAuditInfoDetailRequest extends RpcAcsRequest { + + + private Long auditRecordId; + + private String lang; + public QueryOperationAuditInfoDetailRequest() { + super("Domain", "2018-01-29", "QueryOperationAuditInfoDetail", "domain"); + 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 getAuditRecordId() { + return this.auditRecordId; + } + + public void setAuditRecordId(Long auditRecordId) { + this.auditRecordId = auditRecordId; + if(auditRecordId != null){ + putQueryParameter("AuditRecordId", auditRecordId.toString()); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return QueryOperationAuditInfoDetailResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryOperationAuditInfoDetailResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryOperationAuditInfoDetailResponse.java new file mode 100644 index 0000000000..f60e5e3825 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryOperationAuditInfoDetailResponse.java @@ -0,0 +1,136 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryOperationAuditInfoDetailResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryOperationAuditInfoDetailResponse extends AcsResponse { + + private String auditInfo; + + private Integer auditStatus; + + private String requestId; + + private String businessName; + + private Integer auditType; + + private String domainName; + + private Long createTime; + + private Long updateTime; + + private String id; + + private String remark; + + public String getAuditInfo() { + return this.auditInfo; + } + + public void setAuditInfo(String auditInfo) { + this.auditInfo = auditInfo; + } + + public Integer getAuditStatus() { + return this.auditStatus; + } + + public void setAuditStatus(Integer auditStatus) { + this.auditStatus = auditStatus; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getBusinessName() { + return this.businessName; + } + + public void setBusinessName(String businessName) { + this.businessName = businessName; + } + + public Integer getAuditType() { + return this.auditType; + } + + public void setAuditType(Integer auditType) { + this.auditType = auditType; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public Long getCreateTime() { + return this.createTime; + } + + public void setCreateTime(Long createTime) { + this.createTime = createTime; + } + + public Long getUpdateTime() { + return this.updateTime; + } + + public void setUpdateTime(Long updateTime) { + this.updateTime = updateTime; + } + + public String getId() { + return this.id; + } + + public void setId(String id) { + this.id = id; + } + + public String getRemark() { + return this.remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + @Override + public QueryOperationAuditInfoDetailResponse getInstance(UnmarshallerContext context) { + return QueryOperationAuditInfoDetailResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryOperationAuditInfoListRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryOperationAuditInfoListRequest.java new file mode 100644 index 0000000000..7a3f353b41 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryOperationAuditInfoListRequest.java @@ -0,0 +1,119 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryOperationAuditInfoListRequest extends RpcAcsRequest { + + + private Integer auditStatus; + + private String domainName; + + private Integer pageNum; + + private Integer pageSize; + + private Integer auditType; + + private String lang; + public QueryOperationAuditInfoListRequest() { + super("Domain", "2018-01-29", "QueryOperationAuditInfoList", "domain"); + 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 getAuditStatus() { + return this.auditStatus; + } + + public void setAuditStatus(Integer auditStatus) { + this.auditStatus = auditStatus; + if(auditStatus != null){ + putQueryParameter("AuditStatus", auditStatus.toString()); + } + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + if(domainName != null){ + putQueryParameter("DomainName", domainName); + } + } + + public Integer getPageNum() { + return this.pageNum; + } + + public void setPageNum(Integer pageNum) { + this.pageNum = pageNum; + if(pageNum != null){ + putQueryParameter("PageNum", pageNum.toString()); + } + } + + public Integer getPageSize() { + return this.pageSize; + } + + public void setPageSize(Integer pageSize) { + this.pageSize = pageSize; + if(pageSize != null){ + putQueryParameter("PageSize", pageSize.toString()); + } + } + + public Integer getAuditType() { + return this.auditType; + } + + public void setAuditType(Integer auditType) { + this.auditType = auditType; + if(auditType != null){ + putQueryParameter("AuditType", auditType.toString()); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return QueryOperationAuditInfoListResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryOperationAuditInfoListResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryOperationAuditInfoListResponse.java new file mode 100644 index 0000000000..fc761c92bd --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryOperationAuditInfoListResponse.java @@ -0,0 +1,210 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryOperationAuditInfoListResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryOperationAuditInfoListResponse extends AcsResponse { + + private Boolean prePage; + + private Integer currentPageNum; + + private String requestId; + + private Integer pageSize; + + private Integer totalPageNum; + + private Integer totalItemNum; + + private Boolean nextPage; + + private List data; + + public Boolean getPrePage() { + return this.prePage; + } + + public void setPrePage(Boolean prePage) { + this.prePage = prePage; + } + + public Integer getCurrentPageNum() { + return this.currentPageNum; + } + + public void setCurrentPageNum(Integer currentPageNum) { + this.currentPageNum = currentPageNum; + } + + 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 getTotalPageNum() { + return this.totalPageNum; + } + + public void setTotalPageNum(Integer totalPageNum) { + this.totalPageNum = totalPageNum; + } + + public Integer getTotalItemNum() { + return this.totalItemNum; + } + + public void setTotalItemNum(Integer totalItemNum) { + this.totalItemNum = totalItemNum; + } + + public Boolean getNextPage() { + return this.nextPage; + } + + public void setNextPage(Boolean nextPage) { + this.nextPage = nextPage; + } + + public List getData() { + return this.data; + } + + public void setData(List data) { + this.data = data; + } + + public static class OperationAuditRecord { + + private Long updateTime; + + private String remark; + + private Long createTime; + + private Integer auditType; + + private String businessName; + + private String auditInfo; + + private String domainName; + + private Integer auditStatus; + + private Long id; + + public Long getUpdateTime() { + return this.updateTime; + } + + public void setUpdateTime(Long updateTime) { + this.updateTime = updateTime; + } + + public String getRemark() { + return this.remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public Long getCreateTime() { + return this.createTime; + } + + public void setCreateTime(Long createTime) { + this.createTime = createTime; + } + + public Integer getAuditType() { + return this.auditType; + } + + public void setAuditType(Integer auditType) { + this.auditType = auditType; + } + + public String getBusinessName() { + return this.businessName; + } + + public void setBusinessName(String businessName) { + this.businessName = businessName; + } + + public String getAuditInfo() { + return this.auditInfo; + } + + public void setAuditInfo(String auditInfo) { + this.auditInfo = auditInfo; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public Integer getAuditStatus() { + return this.auditStatus; + } + + public void setAuditStatus(Integer auditStatus) { + this.auditStatus = auditStatus; + } + + public Long getId() { + return this.id; + } + + public void setId(Long id) { + this.id = id; + } + } + + @Override + public QueryOperationAuditInfoListResponse getInstance(UnmarshallerContext context) { + return QueryOperationAuditInfoListResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryQualificationDetailRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryQualificationDetailRequest.java new file mode 100644 index 0000000000..dad537ade3 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryQualificationDetailRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryQualificationDetailRequest extends RpcAcsRequest { + + + private String qualificationType; + + private String instanceId; + + private String userClientIp; + + private String lang; + public QueryQualificationDetailRequest() { + super("Domain", "2018-01-29", "QueryQualificationDetail", "domain"); + 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 getQualificationType() { + return this.qualificationType; + } + + public void setQualificationType(String qualificationType) { + this.qualificationType = qualificationType; + if(qualificationType != null){ + putQueryParameter("QualificationType", qualificationType); + } + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + if(instanceId != null){ + putQueryParameter("InstanceId", instanceId); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return QueryQualificationDetailResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryQualificationDetailResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryQualificationDetailResponse.java new file mode 100644 index 0000000000..7277f42c9b --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryQualificationDetailResponse.java @@ -0,0 +1,105 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryQualificationDetailResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryQualificationDetailResponse extends AcsResponse { + + private Integer auditStatus; + + private String requestId; + + private String trackId; + + private List credentials; + + public Integer getAuditStatus() { + return this.auditStatus; + } + + public void setAuditStatus(Integer auditStatus) { + this.auditStatus = auditStatus; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTrackId() { + return this.trackId; + } + + public void setTrackId(String trackId) { + this.trackId = trackId; + } + + public List getCredentials() { + return this.credentials; + } + + public void setCredentials(List credentials) { + this.credentials = credentials; + } + + public static class QualificationCredential { + + private String credentialType; + + private String credentialNo; + + private String credentialUrl; + + public String getCredentialType() { + return this.credentialType; + } + + public void setCredentialType(String credentialType) { + this.credentialType = credentialType; + } + + public String getCredentialNo() { + return this.credentialNo; + } + + public void setCredentialNo(String credentialNo) { + this.credentialNo = credentialNo; + } + + public String getCredentialUrl() { + return this.credentialUrl; + } + + public void setCredentialUrl(String credentialUrl) { + this.credentialUrl = credentialUrl; + } + } + + @Override + public QueryQualificationDetailResponse getInstance(UnmarshallerContext context) { + return QueryQualificationDetailResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryRegistrantProfileRealNameVerificationInfoRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryRegistrantProfileRealNameVerificationInfoRequest.java new file mode 100644 index 0000000000..7405222225 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryRegistrantProfileRealNameVerificationInfoRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryRegistrantProfileRealNameVerificationInfoRequest extends RpcAcsRequest { + + + private Boolean fetchImage; + + private Long registrantProfileId; + + private String userClientIp; + + private String lang; + public QueryRegistrantProfileRealNameVerificationInfoRequest() { + super("Domain", "2018-01-29", "QueryRegistrantProfileRealNameVerificationInfo", "domain"); + 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 Boolean getFetchImage() { + return this.fetchImage; + } + + public void setFetchImage(Boolean fetchImage) { + this.fetchImage = fetchImage; + if(fetchImage != null){ + putQueryParameter("FetchImage", fetchImage.toString()); + } + } + + public Long getRegistrantProfileId() { + return this.registrantProfileId; + } + + public void setRegistrantProfileId(Long registrantProfileId) { + this.registrantProfileId = registrantProfileId; + if(registrantProfileId != null){ + putQueryParameter("RegistrantProfileId", registrantProfileId.toString()); + } + } + + 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 getResponseClass() { + return QueryRegistrantProfileRealNameVerificationInfoResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryRegistrantProfileRealNameVerificationInfoResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryRegistrantProfileRealNameVerificationInfoResponse.java new file mode 100644 index 0000000000..f3a6e82dcd --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryRegistrantProfileRealNameVerificationInfoResponse.java @@ -0,0 +1,111 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryRegistrantProfileRealNameVerificationInfoResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryRegistrantProfileRealNameVerificationInfoResponse extends AcsResponse { + + private String identityCredentialType; + + private String requestId; + + private String modificationDate; + + private String identityCredential; + + private String submissionDate; + + private String identityCredentialNo; + + private Long registrantProfileId; + + private String identityCredentialUrl; + + public String getIdentityCredentialType() { + return this.identityCredentialType; + } + + public void setIdentityCredentialType(String identityCredentialType) { + this.identityCredentialType = identityCredentialType; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getModificationDate() { + return this.modificationDate; + } + + public void setModificationDate(String modificationDate) { + this.modificationDate = modificationDate; + } + + public String getIdentityCredential() { + return this.identityCredential; + } + + public void setIdentityCredential(String identityCredential) { + this.identityCredential = identityCredential; + } + + public String getSubmissionDate() { + return this.submissionDate; + } + + public void setSubmissionDate(String submissionDate) { + this.submissionDate = submissionDate; + } + + public String getIdentityCredentialNo() { + return this.identityCredentialNo; + } + + public void setIdentityCredentialNo(String identityCredentialNo) { + this.identityCredentialNo = identityCredentialNo; + } + + public Long getRegistrantProfileId() { + return this.registrantProfileId; + } + + public void setRegistrantProfileId(Long registrantProfileId) { + this.registrantProfileId = registrantProfileId; + } + + public String getIdentityCredentialUrl() { + return this.identityCredentialUrl; + } + + public void setIdentityCredentialUrl(String identityCredentialUrl) { + this.identityCredentialUrl = identityCredentialUrl; + } + + @Override + public QueryRegistrantProfileRealNameVerificationInfoResponse getInstance(UnmarshallerContext context) { + return QueryRegistrantProfileRealNameVerificationInfoResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryRegistrantProfilesRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryRegistrantProfilesRequest.java new file mode 100644 index 0000000000..240babb6a7 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryRegistrantProfilesRequest.java @@ -0,0 +1,210 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryRegistrantProfilesRequest extends RpcAcsRequest { + + + private Long registrantProfileId; + + private String remark; + + private Integer pageNum; + + private Integer pageSize; + + private String realNameStatus; + + private String lang; + + private String email; + + private String zhRegistrantOrganization; + + private String registrantType; + + private String registrantProfileType; + + private Boolean defaultRegistrantProfile; + + private String registrantOrganization; + + private String userClientIp; + public QueryRegistrantProfilesRequest() { + super("Domain", "2018-01-29", "QueryRegistrantProfiles", "domain"); + 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 getRegistrantProfileId() { + return this.registrantProfileId; + } + + public void setRegistrantProfileId(Long registrantProfileId) { + this.registrantProfileId = registrantProfileId; + if(registrantProfileId != null){ + putQueryParameter("RegistrantProfileId", registrantProfileId.toString()); + } + } + + public String getRemark() { + return this.remark; + } + + public void setRemark(String remark) { + this.remark = remark; + if(remark != null){ + putQueryParameter("Remark", remark); + } + } + + public Integer getPageNum() { + return this.pageNum; + } + + public void setPageNum(Integer pageNum) { + this.pageNum = pageNum; + if(pageNum != null){ + putQueryParameter("PageNum", pageNum.toString()); + } + } + + public Integer getPageSize() { + return this.pageSize; + } + + public void setPageSize(Integer pageSize) { + this.pageSize = pageSize; + if(pageSize != null){ + putQueryParameter("PageSize", pageSize.toString()); + } + } + + public String getRealNameStatus() { + return this.realNameStatus; + } + + public void setRealNameStatus(String realNameStatus) { + this.realNameStatus = realNameStatus; + if(realNameStatus != null){ + putQueryParameter("RealNameStatus", realNameStatus); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + if(email != null){ + putQueryParameter("Email", email); + } + } + + public String getZhRegistrantOrganization() { + return this.zhRegistrantOrganization; + } + + public void setZhRegistrantOrganization(String zhRegistrantOrganization) { + this.zhRegistrantOrganization = zhRegistrantOrganization; + if(zhRegistrantOrganization != null){ + putQueryParameter("ZhRegistrantOrganization", zhRegistrantOrganization); + } + } + + public String getRegistrantType() { + return this.registrantType; + } + + public void setRegistrantType(String registrantType) { + this.registrantType = registrantType; + if(registrantType != null){ + putQueryParameter("RegistrantType", registrantType); + } + } + + public String getRegistrantProfileType() { + return this.registrantProfileType; + } + + public void setRegistrantProfileType(String registrantProfileType) { + this.registrantProfileType = registrantProfileType; + if(registrantProfileType != null){ + putQueryParameter("RegistrantProfileType", registrantProfileType); + } + } + + public Boolean getDefaultRegistrantProfile() { + return this.defaultRegistrantProfile; + } + + public void setDefaultRegistrantProfile(Boolean defaultRegistrantProfile) { + this.defaultRegistrantProfile = defaultRegistrantProfile; + if(defaultRegistrantProfile != null){ + putQueryParameter("DefaultRegistrantProfile", defaultRegistrantProfile.toString()); + } + } + + public String getRegistrantOrganization() { + return this.registrantOrganization; + } + + public void setRegistrantOrganization(String registrantOrganization) { + this.registrantOrganization = registrantOrganization; + if(registrantOrganization != null){ + putQueryParameter("RegistrantOrganization", registrantOrganization); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + @Override + public Class getResponseClass() { + return QueryRegistrantProfilesResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryRegistrantProfilesResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryRegistrantProfilesResponse.java new file mode 100644 index 0000000000..4e4b35d8de --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryRegistrantProfilesResponse.java @@ -0,0 +1,385 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryRegistrantProfilesResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryRegistrantProfilesResponse extends AcsResponse { + + private Boolean nextPage; + + private String requestId; + + private Integer totalItemNum; + + private Boolean prePage; + + private Integer currentPageNum; + + private Integer totalPageNum; + + private Integer pageSize; + + private List registrantProfiles; + + public Boolean getNextPage() { + return this.nextPage; + } + + public void setNextPage(Boolean nextPage) { + this.nextPage = nextPage; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public Integer getTotalItemNum() { + return this.totalItemNum; + } + + public void setTotalItemNum(Integer totalItemNum) { + this.totalItemNum = totalItemNum; + } + + public Boolean getPrePage() { + return this.prePage; + } + + public void setPrePage(Boolean prePage) { + this.prePage = prePage; + } + + public Integer getCurrentPageNum() { + return this.currentPageNum; + } + + public void setCurrentPageNum(Integer currentPageNum) { + this.currentPageNum = currentPageNum; + } + + public Integer getTotalPageNum() { + return this.totalPageNum; + } + + public void setTotalPageNum(Integer totalPageNum) { + this.totalPageNum = totalPageNum; + } + + public Integer getPageSize() { + return this.pageSize; + } + + public void setPageSize(Integer pageSize) { + this.pageSize = pageSize; + } + + public List getRegistrantProfiles() { + return this.registrantProfiles; + } + + public void setRegistrantProfiles(List registrantProfiles) { + this.registrantProfiles = registrantProfiles; + } + + public static class RegistrantProfile { + + private String telExt; + + private String updateTime; + + private String zhProvince; + + private String createTime; + + private String telephone; + + private String registrantOrganization; + + private String city; + + private String zhCity; + + private String telArea; + + private String address; + + private String realNameStatus; + + private String postalCode; + + private String registrantProfileType; + + private Long registrantProfileId; + + private String zhRegistrantOrganization; + + private Boolean defaultRegistrantProfile; + + private String email; + + private String zhRegistrantName; + + private String registrantType; + + private String country; + + private String registrantName; + + private Integer emailVerificationStatus; + + private String zhAddress; + + private String province; + + private String credentialNo; + + private String credentialType; + + private String remark; + + public String getTelExt() { + return this.telExt; + } + + public void setTelExt(String telExt) { + this.telExt = telExt; + } + + public String getUpdateTime() { + return this.updateTime; + } + + public void setUpdateTime(String updateTime) { + this.updateTime = updateTime; + } + + public String getZhProvince() { + return this.zhProvince; + } + + public void setZhProvince(String zhProvince) { + this.zhProvince = zhProvince; + } + + public String getCreateTime() { + return this.createTime; + } + + public void setCreateTime(String createTime) { + this.createTime = createTime; + } + + public String getTelephone() { + return this.telephone; + } + + public void setTelephone(String telephone) { + this.telephone = telephone; + } + + public String getRegistrantOrganization() { + return this.registrantOrganization; + } + + public void setRegistrantOrganization(String registrantOrganization) { + this.registrantOrganization = registrantOrganization; + } + + public String getCity() { + return this.city; + } + + public void setCity(String city) { + this.city = city; + } + + public String getZhCity() { + return this.zhCity; + } + + public void setZhCity(String zhCity) { + this.zhCity = zhCity; + } + + public String getTelArea() { + return this.telArea; + } + + public void setTelArea(String telArea) { + this.telArea = telArea; + } + + public String getAddress() { + return this.address; + } + + public void setAddress(String address) { + this.address = address; + } + + public String getRealNameStatus() { + return this.realNameStatus; + } + + public void setRealNameStatus(String realNameStatus) { + this.realNameStatus = realNameStatus; + } + + public String getPostalCode() { + return this.postalCode; + } + + public void setPostalCode(String postalCode) { + this.postalCode = postalCode; + } + + public String getRegistrantProfileType() { + return this.registrantProfileType; + } + + public void setRegistrantProfileType(String registrantProfileType) { + this.registrantProfileType = registrantProfileType; + } + + public Long getRegistrantProfileId() { + return this.registrantProfileId; + } + + public void setRegistrantProfileId(Long registrantProfileId) { + this.registrantProfileId = registrantProfileId; + } + + public String getZhRegistrantOrganization() { + return this.zhRegistrantOrganization; + } + + public void setZhRegistrantOrganization(String zhRegistrantOrganization) { + this.zhRegistrantOrganization = zhRegistrantOrganization; + } + + public Boolean getDefaultRegistrantProfile() { + return this.defaultRegistrantProfile; + } + + public void setDefaultRegistrantProfile(Boolean defaultRegistrantProfile) { + this.defaultRegistrantProfile = defaultRegistrantProfile; + } + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getZhRegistrantName() { + return this.zhRegistrantName; + } + + public void setZhRegistrantName(String zhRegistrantName) { + this.zhRegistrantName = zhRegistrantName; + } + + public String getRegistrantType() { + return this.registrantType; + } + + public void setRegistrantType(String registrantType) { + this.registrantType = registrantType; + } + + public String getCountry() { + return this.country; + } + + public void setCountry(String country) { + this.country = country; + } + + public String getRegistrantName() { + return this.registrantName; + } + + public void setRegistrantName(String registrantName) { + this.registrantName = registrantName; + } + + public Integer getEmailVerificationStatus() { + return this.emailVerificationStatus; + } + + public void setEmailVerificationStatus(Integer emailVerificationStatus) { + this.emailVerificationStatus = emailVerificationStatus; + } + + public String getZhAddress() { + return this.zhAddress; + } + + public void setZhAddress(String zhAddress) { + this.zhAddress = zhAddress; + } + + public String getProvince() { + return this.province; + } + + public void setProvince(String province) { + this.province = province; + } + + public String getCredentialNo() { + return this.credentialNo; + } + + public void setCredentialNo(String credentialNo) { + this.credentialNo = credentialNo; + } + + public String getCredentialType() { + return this.credentialType; + } + + public void setCredentialType(String credentialType) { + this.credentialType = credentialType; + } + + public String getRemark() { + return this.remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + } + + @Override + public QueryRegistrantProfilesResponse getInstance(UnmarshallerContext context) { + return QueryRegistrantProfilesResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryServerLockRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryServerLockRequest.java new file mode 100644 index 0000000000..f20cdc2bd9 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryServerLockRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryServerLockRequest extends RpcAcsRequest { + + + private String instanceId; + + private String userClientIp; + + private String lang; + public QueryServerLockRequest() { + super("Domain", "2018-01-29", "QueryServerLock", "domain"); + setMethod(MethodType.POST); + try { + com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); + com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); + } catch (Exception e) {} + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + if(instanceId != null){ + putQueryParameter("InstanceId", instanceId); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return QueryServerLockResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryServerLockResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryServerLockResponse.java new file mode 100644 index 0000000000..af5340b831 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryServerLockResponse.java @@ -0,0 +1,146 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryServerLockResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryServerLockResponse extends AcsResponse { + + private String startDate; + + private String gmtCreate; + + private String requestId; + + private String expireDate; + + private String domainName; + + private String userId; + + private String gmtModified; + + private String domainInstanceId; + + private String lockInstanceId; + + private Integer serverLockStatus; + + private String lockProductId; + + public String getStartDate() { + return this.startDate; + } + + public void setStartDate(String startDate) { + this.startDate = startDate; + } + + public String getGmtCreate() { + return this.gmtCreate; + } + + public void setGmtCreate(String gmtCreate) { + this.gmtCreate = gmtCreate; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getExpireDate() { + return this.expireDate; + } + + public void setExpireDate(String expireDate) { + this.expireDate = expireDate; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public String getUserId() { + return this.userId; + } + + public void setUserId(String userId) { + this.userId = userId; + } + + public String getGmtModified() { + return this.gmtModified; + } + + public void setGmtModified(String gmtModified) { + this.gmtModified = gmtModified; + } + + public String getDomainInstanceId() { + return this.domainInstanceId; + } + + public void setDomainInstanceId(String domainInstanceId) { + this.domainInstanceId = domainInstanceId; + } + + public String getLockInstanceId() { + return this.lockInstanceId; + } + + public void setLockInstanceId(String lockInstanceId) { + this.lockInstanceId = lockInstanceId; + } + + public Integer getServerLockStatus() { + return this.serverLockStatus; + } + + public void setServerLockStatus(Integer serverLockStatus) { + this.serverLockStatus = serverLockStatus; + } + + public String getLockProductId() { + return this.lockProductId; + } + + public void setLockProductId(String lockProductId) { + this.lockProductId = lockProductId; + } + + @Override + public QueryServerLockResponse getInstance(UnmarshallerContext context) { + return QueryServerLockResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskDetailHistoryRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskDetailHistoryRequest.java new file mode 100644 index 0000000000..ea02888f40 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskDetailHistoryRequest.java @@ -0,0 +1,145 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryTaskDetailHistoryRequest extends RpcAcsRequest { + + + private String domainName; + + private Integer taskStatus; + + private String userClientIp; + + private String taskNo; + + private Integer pageSize; + + private String taskDetailNoCursor; + + private String lang; + + private String domainNameCursor; + public QueryTaskDetailHistoryRequest() { + super("Domain", "2018-01-29", "QueryTaskDetailHistory", "domain"); + 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 Integer getTaskStatus() { + return this.taskStatus; + } + + public void setTaskStatus(Integer taskStatus) { + this.taskStatus = taskStatus; + if(taskStatus != null){ + putQueryParameter("TaskStatus", taskStatus.toString()); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + if(taskNo != null){ + putQueryParameter("TaskNo", taskNo); + } + } + + public Integer getPageSize() { + return this.pageSize; + } + + public void setPageSize(Integer pageSize) { + this.pageSize = pageSize; + if(pageSize != null){ + putQueryParameter("PageSize", pageSize.toString()); + } + } + + public String getTaskDetailNoCursor() { + return this.taskDetailNoCursor; + } + + public void setTaskDetailNoCursor(String taskDetailNoCursor) { + this.taskDetailNoCursor = taskDetailNoCursor; + if(taskDetailNoCursor != null){ + putQueryParameter("TaskDetailNoCursor", taskDetailNoCursor); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + public String getDomainNameCursor() { + return this.domainNameCursor; + } + + public void setDomainNameCursor(String domainNameCursor) { + this.domainNameCursor = domainNameCursor; + if(domainNameCursor != null){ + putQueryParameter("DomainNameCursor", domainNameCursor); + } + } + + @Override + public Class getResponseClass() { + return QueryTaskDetailHistoryResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskDetailHistoryResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskDetailHistoryResponse.java new file mode 100644 index 0000000000..1667481735 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskDetailHistoryResponse.java @@ -0,0 +1,589 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryTaskDetailHistoryResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryTaskDetailHistoryResponse extends AcsResponse { + + private Integer pageSize; + + private String requestId; + + private List objects; + + private CurrentPageCursor currentPageCursor; + + private PrePageCursor prePageCursor; + + private NextPageCursor nextPageCursor; + + 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 List getObjects() { + return this.objects; + } + + public void setObjects(List objects) { + this.objects = objects; + } + + public CurrentPageCursor getCurrentPageCursor() { + return this.currentPageCursor; + } + + public void setCurrentPageCursor(CurrentPageCursor currentPageCursor) { + this.currentPageCursor = currentPageCursor; + } + + public PrePageCursor getPrePageCursor() { + return this.prePageCursor; + } + + public void setPrePageCursor(PrePageCursor prePageCursor) { + this.prePageCursor = prePageCursor; + } + + public NextPageCursor getNextPageCursor() { + return this.nextPageCursor; + } + + public void setNextPageCursor(NextPageCursor nextPageCursor) { + this.nextPageCursor = nextPageCursor; + } + + public static class TaskDetailHistory { + + private String updateTime; + + private String taskDetailNo; + + private String createTime; + + private String instanceId; + + private String domainName; + + private String taskType; + + private String taskNo; + + private Integer taskStatusCode; + + private String taskStatus; + + private String taskTypeDescription; + + private Integer tryCount; + + private String errorMsg; + + public String getUpdateTime() { + return this.updateTime; + } + + public void setUpdateTime(String updateTime) { + this.updateTime = updateTime; + } + + public String getTaskDetailNo() { + return this.taskDetailNo; + } + + public void setTaskDetailNo(String taskDetailNo) { + this.taskDetailNo = taskDetailNo; + } + + public String getCreateTime() { + return this.createTime; + } + + public void setCreateTime(String createTime) { + this.createTime = createTime; + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public String getTaskType() { + return this.taskType; + } + + public void setTaskType(String taskType) { + this.taskType = taskType; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + public Integer getTaskStatusCode() { + return this.taskStatusCode; + } + + public void setTaskStatusCode(Integer taskStatusCode) { + this.taskStatusCode = taskStatusCode; + } + + public String getTaskStatus() { + return this.taskStatus; + } + + public void setTaskStatus(String taskStatus) { + this.taskStatus = taskStatus; + } + + public String getTaskTypeDescription() { + return this.taskTypeDescription; + } + + public void setTaskTypeDescription(String taskTypeDescription) { + this.taskTypeDescription = taskTypeDescription; + } + + public Integer getTryCount() { + return this.tryCount; + } + + public void setTryCount(Integer tryCount) { + this.tryCount = tryCount; + } + + public String getErrorMsg() { + return this.errorMsg; + } + + public void setErrorMsg(String errorMsg) { + this.errorMsg = errorMsg; + } + } + + public static class CurrentPageCursor { + + private String updateTime; + + private String taskDetailNo; + + private String createTime; + + private String instanceId; + + private String domainName; + + private String taskType; + + private String taskNo; + + private Integer taskStatusCode; + + private String taskStatus; + + private String taskTypeDescription; + + private Integer tryCount; + + private String errorMsg; + + public String getUpdateTime() { + return this.updateTime; + } + + public void setUpdateTime(String updateTime) { + this.updateTime = updateTime; + } + + public String getTaskDetailNo() { + return this.taskDetailNo; + } + + public void setTaskDetailNo(String taskDetailNo) { + this.taskDetailNo = taskDetailNo; + } + + public String getCreateTime() { + return this.createTime; + } + + public void setCreateTime(String createTime) { + this.createTime = createTime; + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public String getTaskType() { + return this.taskType; + } + + public void setTaskType(String taskType) { + this.taskType = taskType; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + public Integer getTaskStatusCode() { + return this.taskStatusCode; + } + + public void setTaskStatusCode(Integer taskStatusCode) { + this.taskStatusCode = taskStatusCode; + } + + public String getTaskStatus() { + return this.taskStatus; + } + + public void setTaskStatus(String taskStatus) { + this.taskStatus = taskStatus; + } + + public String getTaskTypeDescription() { + return this.taskTypeDescription; + } + + public void setTaskTypeDescription(String taskTypeDescription) { + this.taskTypeDescription = taskTypeDescription; + } + + public Integer getTryCount() { + return this.tryCount; + } + + public void setTryCount(Integer tryCount) { + this.tryCount = tryCount; + } + + public String getErrorMsg() { + return this.errorMsg; + } + + public void setErrorMsg(String errorMsg) { + this.errorMsg = errorMsg; + } + } + + public static class PrePageCursor { + + private String updateTime; + + private String taskDetailNo; + + private String createTime; + + private String instanceId; + + private String domainName; + + private String taskType; + + private String taskNo; + + private Integer taskStatusCode; + + private String taskStatus; + + private String taskTypeDescription; + + private Integer tryCount; + + private String errorMsg; + + public String getUpdateTime() { + return this.updateTime; + } + + public void setUpdateTime(String updateTime) { + this.updateTime = updateTime; + } + + public String getTaskDetailNo() { + return this.taskDetailNo; + } + + public void setTaskDetailNo(String taskDetailNo) { + this.taskDetailNo = taskDetailNo; + } + + public String getCreateTime() { + return this.createTime; + } + + public void setCreateTime(String createTime) { + this.createTime = createTime; + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public String getTaskType() { + return this.taskType; + } + + public void setTaskType(String taskType) { + this.taskType = taskType; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + public Integer getTaskStatusCode() { + return this.taskStatusCode; + } + + public void setTaskStatusCode(Integer taskStatusCode) { + this.taskStatusCode = taskStatusCode; + } + + public String getTaskStatus() { + return this.taskStatus; + } + + public void setTaskStatus(String taskStatus) { + this.taskStatus = taskStatus; + } + + public String getTaskTypeDescription() { + return this.taskTypeDescription; + } + + public void setTaskTypeDescription(String taskTypeDescription) { + this.taskTypeDescription = taskTypeDescription; + } + + public Integer getTryCount() { + return this.tryCount; + } + + public void setTryCount(Integer tryCount) { + this.tryCount = tryCount; + } + + public String getErrorMsg() { + return this.errorMsg; + } + + public void setErrorMsg(String errorMsg) { + this.errorMsg = errorMsg; + } + } + + public static class NextPageCursor { + + private String updateTime; + + private String taskDetailNo; + + private String createTime; + + private String instanceId; + + private String domainName; + + private String taskType; + + private String taskNo; + + private Integer taskStatusCode; + + private String taskStatus; + + private String taskTypeDescription; + + private Integer tryCount; + + private String errorMsg; + + public String getUpdateTime() { + return this.updateTime; + } + + public void setUpdateTime(String updateTime) { + this.updateTime = updateTime; + } + + public String getTaskDetailNo() { + return this.taskDetailNo; + } + + public void setTaskDetailNo(String taskDetailNo) { + this.taskDetailNo = taskDetailNo; + } + + public String getCreateTime() { + return this.createTime; + } + + public void setCreateTime(String createTime) { + this.createTime = createTime; + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public String getTaskType() { + return this.taskType; + } + + public void setTaskType(String taskType) { + this.taskType = taskType; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + public Integer getTaskStatusCode() { + return this.taskStatusCode; + } + + public void setTaskStatusCode(Integer taskStatusCode) { + this.taskStatusCode = taskStatusCode; + } + + public String getTaskStatus() { + return this.taskStatus; + } + + public void setTaskStatus(String taskStatus) { + this.taskStatus = taskStatus; + } + + public String getTaskTypeDescription() { + return this.taskTypeDescription; + } + + public void setTaskTypeDescription(String taskTypeDescription) { + this.taskTypeDescription = taskTypeDescription; + } + + public Integer getTryCount() { + return this.tryCount; + } + + public void setTryCount(Integer tryCount) { + this.tryCount = tryCount; + } + + public String getErrorMsg() { + return this.errorMsg; + } + + public void setErrorMsg(String errorMsg) { + this.errorMsg = errorMsg; + } + } + + @Override + public QueryTaskDetailHistoryResponse getInstance(UnmarshallerContext context) { + return QueryTaskDetailHistoryResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskDetailListRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskDetailListRequest.java new file mode 100644 index 0000000000..6cb94d4988 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskDetailListRequest.java @@ -0,0 +1,145 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryTaskDetailListRequest extends RpcAcsRequest { + + + private String domainName; + + private Integer pageNum; + + private Integer taskStatus; + + private String instanceId; + + private String taskNo; + + private String userClientIp; + + private Integer pageSize; + + private String lang; + public QueryTaskDetailListRequest() { + super("Domain", "2018-01-29", "QueryTaskDetailList", "domain"); + 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 Integer getPageNum() { + return this.pageNum; + } + + public void setPageNum(Integer pageNum) { + this.pageNum = pageNum; + if(pageNum != null){ + putQueryParameter("PageNum", pageNum.toString()); + } + } + + public Integer getTaskStatus() { + return this.taskStatus; + } + + public void setTaskStatus(Integer taskStatus) { + this.taskStatus = taskStatus; + if(taskStatus != null){ + putQueryParameter("TaskStatus", taskStatus.toString()); + } + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + if(instanceId != null){ + putQueryParameter("InstanceId", instanceId); + } + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + if(taskNo != null){ + putQueryParameter("TaskNo", taskNo); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public Integer getPageSize() { + return this.pageSize; + } + + public void setPageSize(Integer pageSize) { + this.pageSize = pageSize; + if(pageSize != null){ + putQueryParameter("PageSize", pageSize.toString()); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return QueryTaskDetailListResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskDetailListResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskDetailListResponse.java new file mode 100644 index 0000000000..b7fe961a6d --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskDetailListResponse.java @@ -0,0 +1,255 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryTaskDetailListResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryTaskDetailListResponse extends AcsResponse { + + private Boolean prePage; + + private Integer currentPageNum; + + private String requestId; + + private Integer pageSize; + + private Integer totalPageNum; + + private Integer totalItemNum; + + private Boolean nextPage; + + private List data; + + public Boolean getPrePage() { + return this.prePage; + } + + public void setPrePage(Boolean prePage) { + this.prePage = prePage; + } + + public Integer getCurrentPageNum() { + return this.currentPageNum; + } + + public void setCurrentPageNum(Integer currentPageNum) { + this.currentPageNum = currentPageNum; + } + + 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 getTotalPageNum() { + return this.totalPageNum; + } + + public void setTotalPageNum(Integer totalPageNum) { + this.totalPageNum = totalPageNum; + } + + public Integer getTotalItemNum() { + return this.totalItemNum; + } + + public void setTotalItemNum(Integer totalItemNum) { + this.totalItemNum = totalItemNum; + } + + public Boolean getNextPage() { + return this.nextPage; + } + + public void setNextPage(Boolean nextPage) { + this.nextPage = nextPage; + } + + public List getData() { + return this.data; + } + + public void setData(List data) { + this.data = data; + } + + public static class TaskDetail { + + private String updateTime; + + private String taskDetailNo; + + private String createTime; + + private String instanceId; + + private String domainName; + + private String taskType; + + private String taskNo; + + private String taskResult; + + private Integer taskStatusCode; + + private String taskStatus; + + private String taskTypeDescription; + + private Integer tryCount; + + private String errorMsg; + + private String failReason; + + public String getUpdateTime() { + return this.updateTime; + } + + public void setUpdateTime(String updateTime) { + this.updateTime = updateTime; + } + + public String getTaskDetailNo() { + return this.taskDetailNo; + } + + public void setTaskDetailNo(String taskDetailNo) { + this.taskDetailNo = taskDetailNo; + } + + public String getCreateTime() { + return this.createTime; + } + + public void setCreateTime(String createTime) { + this.createTime = createTime; + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public String getTaskType() { + return this.taskType; + } + + public void setTaskType(String taskType) { + this.taskType = taskType; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + public String getTaskResult() { + return this.taskResult; + } + + public void setTaskResult(String taskResult) { + this.taskResult = taskResult; + } + + public Integer getTaskStatusCode() { + return this.taskStatusCode; + } + + public void setTaskStatusCode(Integer taskStatusCode) { + this.taskStatusCode = taskStatusCode; + } + + public String getTaskStatus() { + return this.taskStatus; + } + + public void setTaskStatus(String taskStatus) { + this.taskStatus = taskStatus; + } + + public String getTaskTypeDescription() { + return this.taskTypeDescription; + } + + public void setTaskTypeDescription(String taskTypeDescription) { + this.taskTypeDescription = taskTypeDescription; + } + + public Integer getTryCount() { + return this.tryCount; + } + + public void setTryCount(Integer tryCount) { + this.tryCount = tryCount; + } + + public String getErrorMsg() { + return this.errorMsg; + } + + public void setErrorMsg(String errorMsg) { + this.errorMsg = errorMsg; + } + + public String getFailReason() { + return this.failReason; + } + + public void setFailReason(String failReason) { + this.failReason = failReason; + } + } + + @Override + public QueryTaskDetailListResponse getInstance(UnmarshallerContext context) { + return QueryTaskDetailListResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskInfoHistoryRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskInfoHistoryRequest.java new file mode 100644 index 0000000000..2699fff7dc --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskInfoHistoryRequest.java @@ -0,0 +1,132 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryTaskInfoHistoryRequest extends RpcAcsRequest { + + + private Long endCreateTime; + + private Long beginCreateTime; + + private String taskNoCursor; + + private String userClientIp; + + private Integer pageSize; + + private String lang; + + private Long createTimeCursor; + public QueryTaskInfoHistoryRequest() { + super("Domain", "2018-01-29", "QueryTaskInfoHistory", "domain"); + 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 getEndCreateTime() { + return this.endCreateTime; + } + + public void setEndCreateTime(Long endCreateTime) { + this.endCreateTime = endCreateTime; + if(endCreateTime != null){ + putQueryParameter("EndCreateTime", endCreateTime.toString()); + } + } + + public Long getBeginCreateTime() { + return this.beginCreateTime; + } + + public void setBeginCreateTime(Long beginCreateTime) { + this.beginCreateTime = beginCreateTime; + if(beginCreateTime != null){ + putQueryParameter("BeginCreateTime", beginCreateTime.toString()); + } + } + + public String getTaskNoCursor() { + return this.taskNoCursor; + } + + public void setTaskNoCursor(String taskNoCursor) { + this.taskNoCursor = taskNoCursor; + if(taskNoCursor != null){ + putQueryParameter("TaskNoCursor", taskNoCursor); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public Integer getPageSize() { + return this.pageSize; + } + + public void setPageSize(Integer pageSize) { + this.pageSize = pageSize; + if(pageSize != null){ + putQueryParameter("PageSize", pageSize.toString()); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + public Long getCreateTimeCursor() { + return this.createTimeCursor; + } + + public void setCreateTimeCursor(Long createTimeCursor) { + this.createTimeCursor = createTimeCursor; + if(createTimeCursor != null){ + putQueryParameter("CreateTimeCursor", createTimeCursor.toString()); + } + } + + @Override + public Class getResponseClass() { + return QueryTaskInfoHistoryResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskInfoHistoryResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskInfoHistoryResponse.java new file mode 100644 index 0000000000..f78b55913b --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskInfoHistoryResponse.java @@ -0,0 +1,469 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryTaskInfoHistoryResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryTaskInfoHistoryResponse extends AcsResponse { + + private Integer pageSize; + + private String requestId; + + private List objects; + + private CurrentPageCursor currentPageCursor; + + private PrePageCursor prePageCursor; + + private NextPageCursor nextPageCursor; + + 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 List getObjects() { + return this.objects; + } + + public void setObjects(List objects) { + this.objects = objects; + } + + public CurrentPageCursor getCurrentPageCursor() { + return this.currentPageCursor; + } + + public void setCurrentPageCursor(CurrentPageCursor currentPageCursor) { + this.currentPageCursor = currentPageCursor; + } + + public PrePageCursor getPrePageCursor() { + return this.prePageCursor; + } + + public void setPrePageCursor(PrePageCursor prePageCursor) { + this.prePageCursor = prePageCursor; + } + + public NextPageCursor getNextPageCursor() { + return this.nextPageCursor; + } + + public void setNextPageCursor(NextPageCursor nextPageCursor) { + this.nextPageCursor = nextPageCursor; + } + + public static class TaskInfoHistory { + + private String taskType; + + private String taskNo; + + private Integer taskStatusCode; + + private String taskStatus; + + private String taskTypeDescription; + + private Integer taskNum; + + private String createTime; + + private Long createTimeLong; + + private String clientip; + + public String getTaskType() { + return this.taskType; + } + + public void setTaskType(String taskType) { + this.taskType = taskType; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + public Integer getTaskStatusCode() { + return this.taskStatusCode; + } + + public void setTaskStatusCode(Integer taskStatusCode) { + this.taskStatusCode = taskStatusCode; + } + + public String getTaskStatus() { + return this.taskStatus; + } + + public void setTaskStatus(String taskStatus) { + this.taskStatus = taskStatus; + } + + public String getTaskTypeDescription() { + return this.taskTypeDescription; + } + + public void setTaskTypeDescription(String taskTypeDescription) { + this.taskTypeDescription = taskTypeDescription; + } + + public Integer getTaskNum() { + return this.taskNum; + } + + public void setTaskNum(Integer taskNum) { + this.taskNum = taskNum; + } + + public String getCreateTime() { + return this.createTime; + } + + public void setCreateTime(String createTime) { + this.createTime = createTime; + } + + public Long getCreateTimeLong() { + return this.createTimeLong; + } + + public void setCreateTimeLong(Long createTimeLong) { + this.createTimeLong = createTimeLong; + } + + public String getClientip() { + return this.clientip; + } + + public void setClientip(String clientip) { + this.clientip = clientip; + } + } + + public static class CurrentPageCursor { + + private String taskType; + + private String taskNo; + + private Integer taskStatusCode; + + private String taskStatus; + + private String taskTypeDescription; + + private Integer taskNum; + + private String createTime; + + private Long createTimeLong; + + private String clientip; + + public String getTaskType() { + return this.taskType; + } + + public void setTaskType(String taskType) { + this.taskType = taskType; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + public Integer getTaskStatusCode() { + return this.taskStatusCode; + } + + public void setTaskStatusCode(Integer taskStatusCode) { + this.taskStatusCode = taskStatusCode; + } + + public String getTaskStatus() { + return this.taskStatus; + } + + public void setTaskStatus(String taskStatus) { + this.taskStatus = taskStatus; + } + + public String getTaskTypeDescription() { + return this.taskTypeDescription; + } + + public void setTaskTypeDescription(String taskTypeDescription) { + this.taskTypeDescription = taskTypeDescription; + } + + public Integer getTaskNum() { + return this.taskNum; + } + + public void setTaskNum(Integer taskNum) { + this.taskNum = taskNum; + } + + public String getCreateTime() { + return this.createTime; + } + + public void setCreateTime(String createTime) { + this.createTime = createTime; + } + + public Long getCreateTimeLong() { + return this.createTimeLong; + } + + public void setCreateTimeLong(Long createTimeLong) { + this.createTimeLong = createTimeLong; + } + + public String getClientip() { + return this.clientip; + } + + public void setClientip(String clientip) { + this.clientip = clientip; + } + } + + public static class PrePageCursor { + + private String taskType; + + private String taskNo; + + private Integer taskStatusCode; + + private String taskStatus; + + private String taskTypeDescription; + + private Integer taskNum; + + private String createTime; + + private Long createTimeLong; + + private String clientip; + + public String getTaskType() { + return this.taskType; + } + + public void setTaskType(String taskType) { + this.taskType = taskType; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + public Integer getTaskStatusCode() { + return this.taskStatusCode; + } + + public void setTaskStatusCode(Integer taskStatusCode) { + this.taskStatusCode = taskStatusCode; + } + + public String getTaskStatus() { + return this.taskStatus; + } + + public void setTaskStatus(String taskStatus) { + this.taskStatus = taskStatus; + } + + public String getTaskTypeDescription() { + return this.taskTypeDescription; + } + + public void setTaskTypeDescription(String taskTypeDescription) { + this.taskTypeDescription = taskTypeDescription; + } + + public Integer getTaskNum() { + return this.taskNum; + } + + public void setTaskNum(Integer taskNum) { + this.taskNum = taskNum; + } + + public String getCreateTime() { + return this.createTime; + } + + public void setCreateTime(String createTime) { + this.createTime = createTime; + } + + public Long getCreateTimeLong() { + return this.createTimeLong; + } + + public void setCreateTimeLong(Long createTimeLong) { + this.createTimeLong = createTimeLong; + } + + public String getClientip() { + return this.clientip; + } + + public void setClientip(String clientip) { + this.clientip = clientip; + } + } + + public static class NextPageCursor { + + private String taskType; + + private String taskNo; + + private Integer taskStatusCode; + + private String taskStatus; + + private String taskTypeDescription; + + private Integer taskNum; + + private String createTime; + + private Long createTimeLong; + + private String clientip; + + public String getTaskType() { + return this.taskType; + } + + public void setTaskType(String taskType) { + this.taskType = taskType; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + public Integer getTaskStatusCode() { + return this.taskStatusCode; + } + + public void setTaskStatusCode(Integer taskStatusCode) { + this.taskStatusCode = taskStatusCode; + } + + public String getTaskStatus() { + return this.taskStatus; + } + + public void setTaskStatus(String taskStatus) { + this.taskStatus = taskStatus; + } + + public String getTaskTypeDescription() { + return this.taskTypeDescription; + } + + public void setTaskTypeDescription(String taskTypeDescription) { + this.taskTypeDescription = taskTypeDescription; + } + + public Integer getTaskNum() { + return this.taskNum; + } + + public void setTaskNum(Integer taskNum) { + this.taskNum = taskNum; + } + + public String getCreateTime() { + return this.createTime; + } + + public void setCreateTime(String createTime) { + this.createTime = createTime; + } + + public Long getCreateTimeLong() { + return this.createTimeLong; + } + + public void setCreateTimeLong(Long createTimeLong) { + this.createTimeLong = createTimeLong; + } + + public String getClientip() { + return this.clientip; + } + + public void setClientip(String clientip) { + this.clientip = clientip; + } + } + + @Override + public QueryTaskInfoHistoryResponse getInstance(UnmarshallerContext context) { + return QueryTaskInfoHistoryResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskListRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskListRequest.java new file mode 100644 index 0000000000..404bccc166 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskListRequest.java @@ -0,0 +1,119 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryTaskListRequest extends RpcAcsRequest { + + + private Long endCreateTime; + + private Integer pageNum; + + private Long beginCreateTime; + + private String userClientIp; + + private Integer pageSize; + + private String lang; + public QueryTaskListRequest() { + super("Domain", "2018-01-29", "QueryTaskList", "domain"); + 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 getEndCreateTime() { + return this.endCreateTime; + } + + public void setEndCreateTime(Long endCreateTime) { + this.endCreateTime = endCreateTime; + if(endCreateTime != null){ + putQueryParameter("EndCreateTime", endCreateTime.toString()); + } + } + + public Integer getPageNum() { + return this.pageNum; + } + + public void setPageNum(Integer pageNum) { + this.pageNum = pageNum; + if(pageNum != null){ + putQueryParameter("PageNum", pageNum.toString()); + } + } + + public Long getBeginCreateTime() { + return this.beginCreateTime; + } + + public void setBeginCreateTime(Long beginCreateTime) { + this.beginCreateTime = beginCreateTime; + if(beginCreateTime != null){ + putQueryParameter("BeginCreateTime", beginCreateTime.toString()); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public Integer getPageSize() { + return this.pageSize; + } + + public void setPageSize(Integer pageSize) { + this.pageSize = pageSize; + if(pageSize != null){ + putQueryParameter("PageSize", pageSize.toString()); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return QueryTaskListResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskListResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskListResponse.java new file mode 100644 index 0000000000..ff163abd0c --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTaskListResponse.java @@ -0,0 +1,215 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryTaskListResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryTaskListResponse extends AcsResponse { + + private Boolean prePage; + + private Integer currentPageNum; + + private String requestId; + + private Integer pageSize; + + private Integer totalPageNum; + + private Integer totalItemNum; + + private Boolean nextPage; + + private List data; + + public Boolean getPrePage() { + return this.prePage; + } + + public void setPrePage(Boolean prePage) { + this.prePage = prePage; + } + + public Integer getCurrentPageNum() { + return this.currentPageNum; + } + + public void setCurrentPageNum(Integer currentPageNum) { + this.currentPageNum = currentPageNum; + } + + 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 getTotalPageNum() { + return this.totalPageNum; + } + + public void setTotalPageNum(Integer totalPageNum) { + this.totalPageNum = totalPageNum; + } + + public Integer getTotalItemNum() { + return this.totalItemNum; + } + + public void setTotalItemNum(Integer totalItemNum) { + this.totalItemNum = totalItemNum; + } + + public Boolean getNextPage() { + return this.nextPage; + } + + public void setNextPage(Boolean nextPage) { + this.nextPage = nextPage; + } + + public List getData() { + return this.data; + } + + public void setData(List data) { + this.data = data; + } + + public static class TaskInfo { + + private String taskType; + + private String taskCancelStatus; + + private String taskNo; + + private Integer taskCancelStatusCode; + + private Integer taskStatusCode; + + private String taskStatus; + + private String taskTypeDescription; + + private Integer taskNum; + + private String createTime; + + private String clientip; + + public String getTaskType() { + return this.taskType; + } + + public void setTaskType(String taskType) { + this.taskType = taskType; + } + + public String getTaskCancelStatus() { + return this.taskCancelStatus; + } + + public void setTaskCancelStatus(String taskCancelStatus) { + this.taskCancelStatus = taskCancelStatus; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + public Integer getTaskCancelStatusCode() { + return this.taskCancelStatusCode; + } + + public void setTaskCancelStatusCode(Integer taskCancelStatusCode) { + this.taskCancelStatusCode = taskCancelStatusCode; + } + + public Integer getTaskStatusCode() { + return this.taskStatusCode; + } + + public void setTaskStatusCode(Integer taskStatusCode) { + this.taskStatusCode = taskStatusCode; + } + + public String getTaskStatus() { + return this.taskStatus; + } + + public void setTaskStatus(String taskStatus) { + this.taskStatus = taskStatus; + } + + public String getTaskTypeDescription() { + return this.taskTypeDescription; + } + + public void setTaskTypeDescription(String taskTypeDescription) { + this.taskTypeDescription = taskTypeDescription; + } + + public Integer getTaskNum() { + return this.taskNum; + } + + public void setTaskNum(Integer taskNum) { + this.taskNum = taskNum; + } + + public String getCreateTime() { + return this.createTime; + } + + public void setCreateTime(String createTime) { + this.createTime = createTime; + } + + public String getClientip() { + return this.clientip; + } + + public void setClientip(String clientip) { + this.clientip = clientip; + } + } + + @Override + public QueryTaskListResponse getInstance(UnmarshallerContext context) { + return QueryTaskListResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTransferInByInstanceIdRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTransferInByInstanceIdRequest.java new file mode 100644 index 0000000000..df655dddd2 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTransferInByInstanceIdRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryTransferInByInstanceIdRequest extends RpcAcsRequest { + + + private String instanceId; + + private String userClientIp; + + private String lang; + public QueryTransferInByInstanceIdRequest() { + super("Domain", "2018-01-29", "QueryTransferInByInstanceId", "domain"); + setMethod(MethodType.POST); + try { + com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); + com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); + } catch (Exception e) {} + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + if(instanceId != null){ + putQueryParameter("InstanceId", instanceId); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return QueryTransferInByInstanceIdResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTransferInByInstanceIdResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTransferInByInstanceIdResponse.java new file mode 100644 index 0000000000..e70006aac3 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTransferInByInstanceIdResponse.java @@ -0,0 +1,251 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryTransferInByInstanceIdResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryTransferInByInstanceIdResponse extends AcsResponse { + + private Integer status; + + private String transferAuthorizationCodeSubmissionDate; + + private String email; + + private Integer progressBarType; + + private String requestId; + + private String instanceId; + + private String domainName; + + private Long submissionDateLong; + + private String submissionDate; + + private String simpleTransferInStatus; + + private Long transferAuthorizationCodeSubmissionDateLong; + + private Long expirationDateLong; + + private String expirationDate; + + private Boolean needMailCheck; + + private String userId; + + private String modificationDate; + + private Long resultDateLong; + + private String resultMsg; + + private Boolean whoisMailStatus; + + private Long modificationDateLong; + + private String resultCode; + + private String resultDate; + + public Integer getStatus() { + return this.status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public String getTransferAuthorizationCodeSubmissionDate() { + return this.transferAuthorizationCodeSubmissionDate; + } + + public void setTransferAuthorizationCodeSubmissionDate(String transferAuthorizationCodeSubmissionDate) { + this.transferAuthorizationCodeSubmissionDate = transferAuthorizationCodeSubmissionDate; + } + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + } + + public Integer getProgressBarType() { + return this.progressBarType; + } + + public void setProgressBarType(Integer progressBarType) { + this.progressBarType = progressBarType; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public Long getSubmissionDateLong() { + return this.submissionDateLong; + } + + public void setSubmissionDateLong(Long submissionDateLong) { + this.submissionDateLong = submissionDateLong; + } + + public String getSubmissionDate() { + return this.submissionDate; + } + + public void setSubmissionDate(String submissionDate) { + this.submissionDate = submissionDate; + } + + public String getSimpleTransferInStatus() { + return this.simpleTransferInStatus; + } + + public void setSimpleTransferInStatus(String simpleTransferInStatus) { + this.simpleTransferInStatus = simpleTransferInStatus; + } + + public Long getTransferAuthorizationCodeSubmissionDateLong() { + return this.transferAuthorizationCodeSubmissionDateLong; + } + + public void setTransferAuthorizationCodeSubmissionDateLong(Long transferAuthorizationCodeSubmissionDateLong) { + this.transferAuthorizationCodeSubmissionDateLong = transferAuthorizationCodeSubmissionDateLong; + } + + public Long getExpirationDateLong() { + return this.expirationDateLong; + } + + public void setExpirationDateLong(Long expirationDateLong) { + this.expirationDateLong = expirationDateLong; + } + + public String getExpirationDate() { + return this.expirationDate; + } + + public void setExpirationDate(String expirationDate) { + this.expirationDate = expirationDate; + } + + public Boolean getNeedMailCheck() { + return this.needMailCheck; + } + + public void setNeedMailCheck(Boolean needMailCheck) { + this.needMailCheck = needMailCheck; + } + + public String getUserId() { + return this.userId; + } + + public void setUserId(String userId) { + this.userId = userId; + } + + public String getModificationDate() { + return this.modificationDate; + } + + public void setModificationDate(String modificationDate) { + this.modificationDate = modificationDate; + } + + public Long getResultDateLong() { + return this.resultDateLong; + } + + public void setResultDateLong(Long resultDateLong) { + this.resultDateLong = resultDateLong; + } + + public String getResultMsg() { + return this.resultMsg; + } + + public void setResultMsg(String resultMsg) { + this.resultMsg = resultMsg; + } + + public Boolean getWhoisMailStatus() { + return this.whoisMailStatus; + } + + public void setWhoisMailStatus(Boolean whoisMailStatus) { + this.whoisMailStatus = whoisMailStatus; + } + + public Long getModificationDateLong() { + return this.modificationDateLong; + } + + public void setModificationDateLong(Long modificationDateLong) { + this.modificationDateLong = modificationDateLong; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public String getResultDate() { + return this.resultDate; + } + + public void setResultDate(String resultDate) { + this.resultDate = resultDate; + } + + @Override + public QueryTransferInByInstanceIdResponse getInstance(UnmarshallerContext context) { + return QueryTransferInByInstanceIdResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTransferInListRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTransferInListRequest.java new file mode 100644 index 0000000000..28e7f300e6 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTransferInListRequest.java @@ -0,0 +1,145 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class QueryTransferInListRequest extends RpcAcsRequest { + + + private Long submissionStartDate; + + private Long submissionEndDate; + + private String domainName; + + private Integer pageNum; + + private String userClientIp; + + private String simpleTransferInStatus; + + private Integer pageSize; + + private String lang; + public QueryTransferInListRequest() { + super("Domain", "2018-01-29", "QueryTransferInList", "domain"); + 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 getSubmissionStartDate() { + return this.submissionStartDate; + } + + public void setSubmissionStartDate(Long submissionStartDate) { + this.submissionStartDate = submissionStartDate; + if(submissionStartDate != null){ + putQueryParameter("SubmissionStartDate", submissionStartDate.toString()); + } + } + + public Long getSubmissionEndDate() { + return this.submissionEndDate; + } + + public void setSubmissionEndDate(Long submissionEndDate) { + this.submissionEndDate = submissionEndDate; + if(submissionEndDate != null){ + putQueryParameter("SubmissionEndDate", submissionEndDate.toString()); + } + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + if(domainName != null){ + putQueryParameter("DomainName", domainName); + } + } + + public Integer getPageNum() { + return this.pageNum; + } + + public void setPageNum(Integer pageNum) { + this.pageNum = pageNum; + if(pageNum != null){ + putQueryParameter("PageNum", pageNum.toString()); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getSimpleTransferInStatus() { + return this.simpleTransferInStatus; + } + + public void setSimpleTransferInStatus(String simpleTransferInStatus) { + this.simpleTransferInStatus = simpleTransferInStatus; + if(simpleTransferInStatus != null){ + putQueryParameter("SimpleTransferInStatus", simpleTransferInStatus); + } + } + + public Integer getPageSize() { + return this.pageSize; + } + + public void setPageSize(Integer pageSize) { + this.pageSize = pageSize; + if(pageSize != null){ + putQueryParameter("PageSize", pageSize.toString()); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return QueryTransferInListResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTransferInListResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTransferInListResponse.java new file mode 100644 index 0000000000..8e6309868e --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTransferInListResponse.java @@ -0,0 +1,325 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryTransferInListResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryTransferInListResponse extends AcsResponse { + + private Boolean prePage; + + private Integer currentPageNum; + + private String requestId; + + private Integer pageSize; + + private Integer totalPageNum; + + private Integer totalItemNum; + + private Boolean nextPage; + + private List data; + + public Boolean getPrePage() { + return this.prePage; + } + + public void setPrePage(Boolean prePage) { + this.prePage = prePage; + } + + public Integer getCurrentPageNum() { + return this.currentPageNum; + } + + public void setCurrentPageNum(Integer currentPageNum) { + this.currentPageNum = currentPageNum; + } + + 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 getTotalPageNum() { + return this.totalPageNum; + } + + public void setTotalPageNum(Integer totalPageNum) { + this.totalPageNum = totalPageNum; + } + + public Integer getTotalItemNum() { + return this.totalItemNum; + } + + public void setTotalItemNum(Integer totalItemNum) { + this.totalItemNum = totalItemNum; + } + + public Boolean getNextPage() { + return this.nextPage; + } + + public void setNextPage(Boolean nextPage) { + this.nextPage = nextPage; + } + + public List getData() { + return this.data; + } + + public void setData(List data) { + this.data = data; + } + + public static class TransferInInfo { + + private Integer status; + + private String userId; + + private String modificationDate; + + private Long transferAuthorizationCodeSubmissionDateLong; + + private Long submissionDateLong; + + private String resultCode; + + private Boolean needMailCheck; + + private Long modificationDateLong; + + private String instanceId; + + private String domainName; + + private Integer progressBarType; + + private String resultMsg; + + private Long resultDateLong; + + private String expirationDate; + + private String email; + + private Boolean whoisMailStatus; + + private String transferAuthorizationCodeSubmissionDate; + + private String submissionDate; + + private Long expirationDateLong; + + private String simpleTransferInStatus; + + private String resultDate; + + public Integer getStatus() { + return this.status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public String getUserId() { + return this.userId; + } + + public void setUserId(String userId) { + this.userId = userId; + } + + public String getModificationDate() { + return this.modificationDate; + } + + public void setModificationDate(String modificationDate) { + this.modificationDate = modificationDate; + } + + public Long getTransferAuthorizationCodeSubmissionDateLong() { + return this.transferAuthorizationCodeSubmissionDateLong; + } + + public void setTransferAuthorizationCodeSubmissionDateLong(Long transferAuthorizationCodeSubmissionDateLong) { + this.transferAuthorizationCodeSubmissionDateLong = transferAuthorizationCodeSubmissionDateLong; + } + + public Long getSubmissionDateLong() { + return this.submissionDateLong; + } + + public void setSubmissionDateLong(Long submissionDateLong) { + this.submissionDateLong = submissionDateLong; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public Boolean getNeedMailCheck() { + return this.needMailCheck; + } + + public void setNeedMailCheck(Boolean needMailCheck) { + this.needMailCheck = needMailCheck; + } + + public Long getModificationDateLong() { + return this.modificationDateLong; + } + + public void setModificationDateLong(Long modificationDateLong) { + this.modificationDateLong = modificationDateLong; + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public Integer getProgressBarType() { + return this.progressBarType; + } + + public void setProgressBarType(Integer progressBarType) { + this.progressBarType = progressBarType; + } + + public String getResultMsg() { + return this.resultMsg; + } + + public void setResultMsg(String resultMsg) { + this.resultMsg = resultMsg; + } + + public Long getResultDateLong() { + return this.resultDateLong; + } + + public void setResultDateLong(Long resultDateLong) { + this.resultDateLong = resultDateLong; + } + + public String getExpirationDate() { + return this.expirationDate; + } + + public void setExpirationDate(String expirationDate) { + this.expirationDate = expirationDate; + } + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + } + + public Boolean getWhoisMailStatus() { + return this.whoisMailStatus; + } + + public void setWhoisMailStatus(Boolean whoisMailStatus) { + this.whoisMailStatus = whoisMailStatus; + } + + public String getTransferAuthorizationCodeSubmissionDate() { + return this.transferAuthorizationCodeSubmissionDate; + } + + public void setTransferAuthorizationCodeSubmissionDate(String transferAuthorizationCodeSubmissionDate) { + this.transferAuthorizationCodeSubmissionDate = transferAuthorizationCodeSubmissionDate; + } + + public String getSubmissionDate() { + return this.submissionDate; + } + + public void setSubmissionDate(String submissionDate) { + this.submissionDate = submissionDate; + } + + public Long getExpirationDateLong() { + return this.expirationDateLong; + } + + public void setExpirationDateLong(Long expirationDateLong) { + this.expirationDateLong = expirationDateLong; + } + + public String getSimpleTransferInStatus() { + return this.simpleTransferInStatus; + } + + public void setSimpleTransferInStatus(String simpleTransferInStatus) { + this.simpleTransferInStatus = simpleTransferInStatus; + } + + public String getResultDate() { + return this.resultDate; + } + + public void setResultDate(String resultDate) { + this.resultDate = resultDate; + } + } + + @Override + public QueryTransferInListResponse getInstance(UnmarshallerContext context) { + return QueryTransferInListResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBookingDomainInfoRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTransferOutInfoRequest.java similarity index 57% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBookingDomainInfoRequest.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTransferOutInfoRequest.java index cfa5dde644..818e441485 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBookingDomainInfoRequest.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTransferOutInfoRequest.java @@ -12,7 +12,7 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; @@ -22,12 +22,16 @@ * @author auto create * @version */ -public class QueryBookingDomainInfoRequest extends RpcAcsRequest { +public class QueryTransferOutInfoRequest extends RpcAcsRequest { - private String domainName; - public QueryBookingDomainInfoRequest() { - super("Domain", "2018-02-08", "QueryBookingDomainInfo", "domain"); + private String domainName; + + private String userClientIp; + + private String lang; + public QueryTransferOutInfoRequest() { + super("Domain", "2018-01-29", "QueryTransferOutInfo", "domain"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); @@ -42,13 +46,35 @@ public String getDomainName() { public void setDomainName(String domainName) { this.domainName = domainName; if(domainName != null){ - putBodyParameter("DomainName", domainName); + 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 getResponseClass() { - return QueryBookingDomainInfoResponse.class; + public Class getResponseClass() { + return QueryTransferOutInfoResponse.class; } } diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTransferOutInfoResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTransferOutInfoResponse.java new file mode 100644 index 0000000000..418a465ad6 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/QueryTransferOutInfoResponse.java @@ -0,0 +1,111 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.QueryTransferOutInfoResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class QueryTransferOutInfoResponse extends AcsResponse { + + private Integer status; + + private String email; + + private String expirationDate; + + private String requestId; + + private String resultMsg; + + private String pendingRequestDate; + + private String resultCode; + + private String transferAuthorizationCodeSendDate; + + public Integer getStatus() { + return this.status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getExpirationDate() { + return this.expirationDate; + } + + public void setExpirationDate(String expirationDate) { + this.expirationDate = expirationDate; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getResultMsg() { + return this.resultMsg; + } + + public void setResultMsg(String resultMsg) { + this.resultMsg = resultMsg; + } + + public String getPendingRequestDate() { + return this.pendingRequestDate; + } + + public void setPendingRequestDate(String pendingRequestDate) { + this.pendingRequestDate = pendingRequestDate; + } + + public String getResultCode() { + return this.resultCode; + } + + public void setResultCode(String resultCode) { + this.resultCode = resultCode; + } + + public String getTransferAuthorizationCodeSendDate() { + return this.transferAuthorizationCodeSendDate; + } + + public void setTransferAuthorizationCodeSendDate(String transferAuthorizationCodeSendDate) { + this.transferAuthorizationCodeSendDate = transferAuthorizationCodeSendDate; + } + + @Override + public QueryTransferOutInfoResponse getInstance(UnmarshallerContext context) { + return QueryTransferOutInfoResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/RegistrantProfileRealNameVerificationRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/RegistrantProfileRealNameVerificationRequest.java new file mode 100644 index 0000000000..02a12d77ee --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/RegistrantProfileRealNameVerificationRequest.java @@ -0,0 +1,119 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class RegistrantProfileRealNameVerificationRequest extends RpcAcsRequest { + + + private String identityCredentialType; + + private Long registrantProfileID; + + private String identityCredential; + + private String userClientIp; + + private String lang; + + private String identityCredentialNo; + public RegistrantProfileRealNameVerificationRequest() { + super("Domain", "2018-01-29", "RegistrantProfileRealNameVerification", "domain"); + 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 getIdentityCredentialType() { + return this.identityCredentialType; + } + + public void setIdentityCredentialType(String identityCredentialType) { + this.identityCredentialType = identityCredentialType; + if(identityCredentialType != null){ + putQueryParameter("IdentityCredentialType", identityCredentialType); + } + } + + public Long getRegistrantProfileID() { + return this.registrantProfileID; + } + + public void setRegistrantProfileID(Long registrantProfileID) { + this.registrantProfileID = registrantProfileID; + if(registrantProfileID != null){ + putQueryParameter("RegistrantProfileID", registrantProfileID.toString()); + } + } + + public String getIdentityCredential() { + return this.identityCredential; + } + + public void setIdentityCredential(String identityCredential) { + this.identityCredential = identityCredential; + if(identityCredential != null){ + putBodyParameter("IdentityCredential", identityCredential); + } + } + + 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 getIdentityCredentialNo() { + return this.identityCredentialNo; + } + + public void setIdentityCredentialNo(String identityCredentialNo) { + this.identityCredentialNo = identityCredentialNo; + if(identityCredentialNo != null){ + putQueryParameter("IdentityCredentialNo", identityCredentialNo); + } + } + + @Override + public Class getResponseClass() { + return RegistrantProfileRealNameVerificationResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/RegistrantProfileRealNameVerificationResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/RegistrantProfileRealNameVerificationResponse.java new file mode 100644 index 0000000000..4fdd4b77d6 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/RegistrantProfileRealNameVerificationResponse.java @@ -0,0 +1,46 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.RegistrantProfileRealNameVerificationResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class RegistrantProfileRealNameVerificationResponse extends AcsResponse { + + private String requestId; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + @Override + public RegistrantProfileRealNameVerificationResponse getInstance(UnmarshallerContext context) { + return RegistrantProfileRealNameVerificationResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ResendEmailVerificationRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ResendEmailVerificationRequest.java new file mode 100644 index 0000000000..eed08c859f --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ResendEmailVerificationRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class ResendEmailVerificationRequest extends RpcAcsRequest { + + + private String userClientIp; + + private String lang; + + private String email; + public ResendEmailVerificationRequest() { + super("Domain", "2018-01-29", "ResendEmailVerification", "domain"); + 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 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 getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + if(email != null){ + putQueryParameter("Email", email); + } + } + + @Override + public Class getResponseClass() { + return ResendEmailVerificationResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ResendEmailVerificationResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ResendEmailVerificationResponse.java new file mode 100644 index 0000000000..5572ce8820 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ResendEmailVerificationResponse.java @@ -0,0 +1,100 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.ResendEmailVerificationResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class ResendEmailVerificationResponse extends AcsResponse { + + private String requestId; + + private List successList; + + private List failList; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getSuccessList() { + return this.successList; + } + + public void setSuccessList(List successList) { + this.successList = successList; + } + + public List getFailList() { + return this.failList; + } + + public void setFailList(List failList) { + this.failList = failList; + } + + public static class SendResult { + + private String email; + + private String code; + + private String message; + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getCode() { + return this.code; + } + + public void setCode(String code) { + this.code = code; + } + + public String getMessage() { + return this.message; + } + + public void setMessage(String message) { + this.message = message; + } + } + + @Override + public ResendEmailVerificationResponse getInstance(UnmarshallerContext context) { + return ResendEmailVerificationResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ResetQualificationVerificationRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ResetQualificationVerificationRequest.java new file mode 100644 index 0000000000..3453e585ac --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ResetQualificationVerificationRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class ResetQualificationVerificationRequest extends RpcAcsRequest { + + + private String instanceId; + + private String userClientIp; + + private String lang; + public ResetQualificationVerificationRequest() { + super("Domain", "2018-01-29", "ResetQualificationVerification", "domain"); + setMethod(MethodType.POST); + try { + com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); + com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); + } catch (Exception e) {} + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + if(instanceId != null){ + putQueryParameter("InstanceId", instanceId); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return ResetQualificationVerificationResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ResetQualificationVerificationResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ResetQualificationVerificationResponse.java new file mode 100644 index 0000000000..0237928998 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ResetQualificationVerificationResponse.java @@ -0,0 +1,46 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.ResetQualificationVerificationResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class ResetQualificationVerificationResponse extends AcsResponse { + + private String requestId; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + @Override + public ResetQualificationVerificationResponse getInstance(UnmarshallerContext context) { + return ResetQualificationVerificationResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchDomainRemarkRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchDomainRemarkRequest.java new file mode 100644 index 0000000000..745169833a --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchDomainRemarkRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveBatchDomainRemarkRequest extends RpcAcsRequest { + + + private String remark; + + private String instanceIds; + + private String userClientIp; + + private String lang; + public SaveBatchDomainRemarkRequest() { + super("Domain", "2018-01-29", "SaveBatchDomainRemark", "domain"); + 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 getRemark() { + return this.remark; + } + + public void setRemark(String remark) { + this.remark = remark; + if(remark != null){ + putQueryParameter("Remark", remark); + } + } + + public String getInstanceIds() { + return this.instanceIds; + } + + public void setInstanceIds(String instanceIds) { + this.instanceIds = instanceIds; + if(instanceIds != null){ + putQueryParameter("InstanceIds", instanceIds); + } + } + + 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 getResponseClass() { + return SaveBatchDomainRemarkResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/FinishDemandResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchDomainRemarkResponse.java similarity index 71% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/FinishDemandResponse.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchDomainRemarkResponse.java index 10f754b10c..403d0317c0 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/FinishDemandResponse.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchDomainRemarkResponse.java @@ -12,17 +12,17 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.FinishDemandResponseUnmarshaller; +import com.aliyuncs.domain.transform.v20180129.SaveBatchDomainRemarkResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ -public class FinishDemandResponse extends AcsResponse { +public class SaveBatchDomainRemarkResponse extends AcsResponse { private String requestId; @@ -35,8 +35,8 @@ public void setRequestId(String requestId) { } @Override - public FinishDemandResponse getInstance(UnmarshallerContext context) { - return FinishDemandResponseUnmarshaller.unmarshall(this, context); + public SaveBatchDomainRemarkResponse getInstance(UnmarshallerContext context) { + return SaveBatchDomainRemarkResponseUnmarshaller.unmarshall(this, context); } @Override diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForApplyQuickTransferOutOpenlyRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForApplyQuickTransferOutOpenlyRequest.java new file mode 100644 index 0000000000..c1cefc93ce --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForApplyQuickTransferOutOpenlyRequest.java @@ -0,0 +1,85 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.ProtocolType; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForApplyQuickTransferOutOpenlyRequest extends RpcAcsRequest { + + + private List domainNamess; + + private String userClientIp; + + private String lang; + public SaveBatchTaskForApplyQuickTransferOutOpenlyRequest() { + super("Domain", "2018-01-29", "SaveBatchTaskForApplyQuickTransferOutOpenly", "domain"); + setProtocol(ProtocolType.HTTPS); + 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 getDomainNamess() { + return this.domainNamess; + } + + public void setDomainNamess(List domainNamess) { + this.domainNamess = domainNamess; + if (domainNamess != null) { + for (int i = 0; i < domainNamess.size(); i++) { + putQueryParameter("DomainNames." + (i + 1) , domainNamess.get(i)); + } + } + } + + 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 getResponseClass() { + return SaveBatchTaskForApplyQuickTransferOutOpenlyResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForApplyQuickTransferOutOpenlyResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForApplyQuickTransferOutOpenlyResponse.java new file mode 100644 index 0000000000..f1a2f8258a --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForApplyQuickTransferOutOpenlyResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveBatchTaskForApplyQuickTransferOutOpenlyResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForApplyQuickTransferOutOpenlyResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveBatchTaskForApplyQuickTransferOutOpenlyResponse getInstance(UnmarshallerContext context) { + return SaveBatchTaskForApplyQuickTransferOutOpenlyResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderActivateRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderActivateRequest.java new file mode 100644 index 0000000000..84010ea055 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderActivateRequest.java @@ -0,0 +1,434 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForCreatingOrderActivateRequest extends RpcAcsRequest { + + + private List orderActivateParams; + + private String couponNo; + + private Boolean useCoupon; + + private String promotionNo; + + private String userClientIp; + + private String lang; + + private Boolean usePromotion; + public SaveBatchTaskForCreatingOrderActivateRequest() { + super("Domain", "2018-01-29", "SaveBatchTaskForCreatingOrderActivate", "domain"); + 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 getOrderActivateParams() { + return this.orderActivateParams; + } + + public void setOrderActivateParams(List orderActivateParams) { + this.orderActivateParams = orderActivateParams; + if (orderActivateParams != null) { + for (int depth1 = 0; depth1 < orderActivateParams.size(); depth1++) { + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".Country" , orderActivateParams.get(depth1).getCountry()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".SubscriptionDuration" , orderActivateParams.get(depth1).getSubscriptionDuration()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".PermitPremiumActivation" , orderActivateParams.get(depth1).getPermitPremiumActivation()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".City" , orderActivateParams.get(depth1).getCity()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".Dns2" , orderActivateParams.get(depth1).getDns2()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".Dns1" , orderActivateParams.get(depth1).getDns1()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".RegistrantProfileId" , orderActivateParams.get(depth1).getRegistrantProfileId()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".AliyunDns" , orderActivateParams.get(depth1).getAliyunDns()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".ZhCity" , orderActivateParams.get(depth1).getZhCity()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".ResourceGroupId" , orderActivateParams.get(depth1).getResourceGroupId()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".TelExt" , orderActivateParams.get(depth1).getTelExt()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".ZhRegistrantName" , orderActivateParams.get(depth1).getZhRegistrantName()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".Province" , orderActivateParams.get(depth1).getProvince()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".PostalCode" , orderActivateParams.get(depth1).getPostalCode()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".Email" , orderActivateParams.get(depth1).getEmail()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".ZhRegistrantOrganization" , orderActivateParams.get(depth1).getZhRegistrantOrganization()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".Address" , orderActivateParams.get(depth1).getAddress()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".TelArea" , orderActivateParams.get(depth1).getTelArea()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".DomainName" , orderActivateParams.get(depth1).getDomainName()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".RegistrantType" , orderActivateParams.get(depth1).getRegistrantType()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".ZhAddress" , orderActivateParams.get(depth1).getZhAddress()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".Telephone" , orderActivateParams.get(depth1).getTelephone()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".TrademarkDomainActivation" , orderActivateParams.get(depth1).getTrademarkDomainActivation()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".ZhProvince" , orderActivateParams.get(depth1).getZhProvince()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".RegistrantOrganization" , orderActivateParams.get(depth1).getRegistrantOrganization()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".EnableDomainProxy" , orderActivateParams.get(depth1).getEnableDomainProxy()); + putQueryParameter("OrderActivateParam." + (depth1 + 1) + ".RegistrantName" , orderActivateParams.get(depth1).getRegistrantName()); + } + } + } + + public String getCouponNo() { + return this.couponNo; + } + + public void setCouponNo(String couponNo) { + this.couponNo = couponNo; + if(couponNo != null){ + putQueryParameter("CouponNo", couponNo); + } + } + + public Boolean getUseCoupon() { + return this.useCoupon; + } + + public void setUseCoupon(Boolean useCoupon) { + this.useCoupon = useCoupon; + if(useCoupon != null){ + putQueryParameter("UseCoupon", useCoupon.toString()); + } + } + + public String getPromotionNo() { + return this.promotionNo; + } + + public void setPromotionNo(String promotionNo) { + this.promotionNo = promotionNo; + if(promotionNo != null){ + putQueryParameter("PromotionNo", promotionNo); + } + } + + 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 Boolean getUsePromotion() { + return this.usePromotion; + } + + public void setUsePromotion(Boolean usePromotion) { + this.usePromotion = usePromotion; + if(usePromotion != null){ + putQueryParameter("UsePromotion", usePromotion.toString()); + } + } + + public static class OrderActivateParam { + + private String country; + + private Integer subscriptionDuration; + + private Boolean permitPremiumActivation; + + private String city; + + private String dns2; + + private String dns1; + + private Long registrantProfileId; + + private Boolean aliyunDns; + + private String zhCity; + + private String resourceGroupId; + + private String telExt; + + private String zhRegistrantName; + + private String province; + + private String postalCode; + + private String email; + + private String zhRegistrantOrganization; + + private String address; + + private String telArea; + + private String domainName; + + private String registrantType; + + private String zhAddress; + + private String telephone; + + private Boolean trademarkDomainActivation; + + private String zhProvince; + + private String registrantOrganization; + + private Boolean enableDomainProxy; + + private String registrantName; + + public String getCountry() { + return this.country; + } + + public void setCountry(String country) { + this.country = country; + } + + public Integer getSubscriptionDuration() { + return this.subscriptionDuration; + } + + public void setSubscriptionDuration(Integer subscriptionDuration) { + this.subscriptionDuration = subscriptionDuration; + } + + public Boolean getPermitPremiumActivation() { + return this.permitPremiumActivation; + } + + public void setPermitPremiumActivation(Boolean permitPremiumActivation) { + this.permitPremiumActivation = permitPremiumActivation; + } + + public String getCity() { + return this.city; + } + + public void setCity(String city) { + this.city = city; + } + + public String getDns2() { + return this.dns2; + } + + public void setDns2(String dns2) { + this.dns2 = dns2; + } + + public String getDns1() { + return this.dns1; + } + + public void setDns1(String dns1) { + this.dns1 = dns1; + } + + public Long getRegistrantProfileId() { + return this.registrantProfileId; + } + + public void setRegistrantProfileId(Long registrantProfileId) { + this.registrantProfileId = registrantProfileId; + } + + public Boolean getAliyunDns() { + return this.aliyunDns; + } + + public void setAliyunDns(Boolean aliyunDns) { + this.aliyunDns = aliyunDns; + } + + public String getZhCity() { + return this.zhCity; + } + + public void setZhCity(String zhCity) { + this.zhCity = zhCity; + } + + public String getResourceGroupId() { + return this.resourceGroupId; + } + + public void setResourceGroupId(String resourceGroupId) { + this.resourceGroupId = resourceGroupId; + } + + public String getTelExt() { + return this.telExt; + } + + public void setTelExt(String telExt) { + this.telExt = telExt; + } + + public String getZhRegistrantName() { + return this.zhRegistrantName; + } + + public void setZhRegistrantName(String zhRegistrantName) { + this.zhRegistrantName = zhRegistrantName; + } + + public String getProvince() { + return this.province; + } + + public void setProvince(String province) { + this.province = province; + } + + public String getPostalCode() { + return this.postalCode; + } + + public void setPostalCode(String postalCode) { + this.postalCode = postalCode; + } + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getZhRegistrantOrganization() { + return this.zhRegistrantOrganization; + } + + public void setZhRegistrantOrganization(String zhRegistrantOrganization) { + this.zhRegistrantOrganization = zhRegistrantOrganization; + } + + public String getAddress() { + return this.address; + } + + public void setAddress(String address) { + this.address = address; + } + + public String getTelArea() { + return this.telArea; + } + + public void setTelArea(String telArea) { + this.telArea = telArea; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public String getRegistrantType() { + return this.registrantType; + } + + public void setRegistrantType(String registrantType) { + this.registrantType = registrantType; + } + + public String getZhAddress() { + return this.zhAddress; + } + + public void setZhAddress(String zhAddress) { + this.zhAddress = zhAddress; + } + + public String getTelephone() { + return this.telephone; + } + + public void setTelephone(String telephone) { + this.telephone = telephone; + } + + public Boolean getTrademarkDomainActivation() { + return this.trademarkDomainActivation; + } + + public void setTrademarkDomainActivation(Boolean trademarkDomainActivation) { + this.trademarkDomainActivation = trademarkDomainActivation; + } + + public String getZhProvince() { + return this.zhProvince; + } + + public void setZhProvince(String zhProvince) { + this.zhProvince = zhProvince; + } + + public String getRegistrantOrganization() { + return this.registrantOrganization; + } + + public void setRegistrantOrganization(String registrantOrganization) { + this.registrantOrganization = registrantOrganization; + } + + public Boolean getEnableDomainProxy() { + return this.enableDomainProxy; + } + + public void setEnableDomainProxy(Boolean enableDomainProxy) { + this.enableDomainProxy = enableDomainProxy; + } + + public String getRegistrantName() { + return this.registrantName; + } + + public void setRegistrantName(String registrantName) { + this.registrantName = registrantName; + } + } + + @Override + public Class getResponseClass() { + return SaveBatchTaskForCreatingOrderActivateResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderActivateResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderActivateResponse.java new file mode 100644 index 0000000000..e605f72fb9 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderActivateResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveBatchTaskForCreatingOrderActivateResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForCreatingOrderActivateResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveBatchTaskForCreatingOrderActivateResponse getInstance(UnmarshallerContext context) { + return SaveBatchTaskForCreatingOrderActivateResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderRedeemRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderRedeemRequest.java new file mode 100644 index 0000000000..4a7a63e54a --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderRedeemRequest.java @@ -0,0 +1,159 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForCreatingOrderRedeemRequest extends RpcAcsRequest { + + + private String couponNo; + + private Boolean useCoupon; + + private String promotionNo; + + private List orderRedeemParams; + + private String userClientIp; + + private String lang; + + private Boolean usePromotion; + public SaveBatchTaskForCreatingOrderRedeemRequest() { + super("Domain", "2018-01-29", "SaveBatchTaskForCreatingOrderRedeem", "domain"); + 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 getCouponNo() { + return this.couponNo; + } + + public void setCouponNo(String couponNo) { + this.couponNo = couponNo; + if(couponNo != null){ + putQueryParameter("CouponNo", couponNo); + } + } + + public Boolean getUseCoupon() { + return this.useCoupon; + } + + public void setUseCoupon(Boolean useCoupon) { + this.useCoupon = useCoupon; + if(useCoupon != null){ + putQueryParameter("UseCoupon", useCoupon.toString()); + } + } + + public String getPromotionNo() { + return this.promotionNo; + } + + public void setPromotionNo(String promotionNo) { + this.promotionNo = promotionNo; + if(promotionNo != null){ + putQueryParameter("PromotionNo", promotionNo); + } + } + + public List getOrderRedeemParams() { + return this.orderRedeemParams; + } + + public void setOrderRedeemParams(List orderRedeemParams) { + this.orderRedeemParams = orderRedeemParams; + if (orderRedeemParams != null) { + for (int depth1 = 0; depth1 < orderRedeemParams.size(); depth1++) { + putQueryParameter("OrderRedeemParam." + (depth1 + 1) + ".CurrentExpirationDate" , orderRedeemParams.get(depth1).getCurrentExpirationDate()); + putQueryParameter("OrderRedeemParam." + (depth1 + 1) + ".DomainName" , orderRedeemParams.get(depth1).getDomainName()); + } + } + } + + 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 Boolean getUsePromotion() { + return this.usePromotion; + } + + public void setUsePromotion(Boolean usePromotion) { + this.usePromotion = usePromotion; + if(usePromotion != null){ + putQueryParameter("UsePromotion", usePromotion.toString()); + } + } + + public static class OrderRedeemParam { + + private Long currentExpirationDate; + + private String domainName; + + public Long getCurrentExpirationDate() { + return this.currentExpirationDate; + } + + public void setCurrentExpirationDate(Long currentExpirationDate) { + this.currentExpirationDate = currentExpirationDate; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + } + + @Override + public Class getResponseClass() { + return SaveBatchTaskForCreatingOrderRedeemResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderRedeemResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderRedeemResponse.java new file mode 100644 index 0000000000..27f77755f5 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderRedeemResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveBatchTaskForCreatingOrderRedeemResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForCreatingOrderRedeemResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveBatchTaskForCreatingOrderRedeemResponse getInstance(UnmarshallerContext context) { + return SaveBatchTaskForCreatingOrderRedeemResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderRenewRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderRenewRequest.java new file mode 100644 index 0000000000..f1710b4190 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderRenewRequest.java @@ -0,0 +1,170 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForCreatingOrderRenewRequest extends RpcAcsRequest { + + + private String couponNo; + + private Boolean useCoupon; + + private String promotionNo; + + private String userClientIp; + + private List orderRenewParams; + + private String lang; + + private Boolean usePromotion; + public SaveBatchTaskForCreatingOrderRenewRequest() { + super("Domain", "2018-01-29", "SaveBatchTaskForCreatingOrderRenew", "domain"); + 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 getCouponNo() { + return this.couponNo; + } + + public void setCouponNo(String couponNo) { + this.couponNo = couponNo; + if(couponNo != null){ + putQueryParameter("CouponNo", couponNo); + } + } + + public Boolean getUseCoupon() { + return this.useCoupon; + } + + public void setUseCoupon(Boolean useCoupon) { + this.useCoupon = useCoupon; + if(useCoupon != null){ + putQueryParameter("UseCoupon", useCoupon.toString()); + } + } + + public String getPromotionNo() { + return this.promotionNo; + } + + public void setPromotionNo(String promotionNo) { + this.promotionNo = promotionNo; + if(promotionNo != null){ + putQueryParameter("PromotionNo", promotionNo); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public List getOrderRenewParams() { + return this.orderRenewParams; + } + + public void setOrderRenewParams(List orderRenewParams) { + this.orderRenewParams = orderRenewParams; + if (orderRenewParams != null) { + for (int depth1 = 0; depth1 < orderRenewParams.size(); depth1++) { + putQueryParameter("OrderRenewParam." + (depth1 + 1) + ".SubscriptionDuration" , orderRenewParams.get(depth1).getSubscriptionDuration()); + putQueryParameter("OrderRenewParam." + (depth1 + 1) + ".CurrentExpirationDate" , orderRenewParams.get(depth1).getCurrentExpirationDate()); + putQueryParameter("OrderRenewParam." + (depth1 + 1) + ".DomainName" , orderRenewParams.get(depth1).getDomainName()); + } + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + public Boolean getUsePromotion() { + return this.usePromotion; + } + + public void setUsePromotion(Boolean usePromotion) { + this.usePromotion = usePromotion; + if(usePromotion != null){ + putQueryParameter("UsePromotion", usePromotion.toString()); + } + } + + public static class OrderRenewParam { + + private Integer subscriptionDuration; + + private Long currentExpirationDate; + + private String domainName; + + public Integer getSubscriptionDuration() { + return this.subscriptionDuration; + } + + public void setSubscriptionDuration(Integer subscriptionDuration) { + this.subscriptionDuration = subscriptionDuration; + } + + public Long getCurrentExpirationDate() { + return this.currentExpirationDate; + } + + public void setCurrentExpirationDate(Long currentExpirationDate) { + this.currentExpirationDate = currentExpirationDate; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + } + + @Override + public Class getResponseClass() { + return SaveBatchTaskForCreatingOrderRenewResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderRenewResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderRenewResponse.java new file mode 100644 index 0000000000..45b0635e2f --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderRenewResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveBatchTaskForCreatingOrderRenewResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForCreatingOrderRenewResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveBatchTaskForCreatingOrderRenewResponse getInstance(UnmarshallerContext context) { + return SaveBatchTaskForCreatingOrderRenewResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderTransferRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderTransferRequest.java new file mode 100644 index 0000000000..00e0a448f3 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderTransferRequest.java @@ -0,0 +1,181 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForCreatingOrderTransferRequest extends RpcAcsRequest { + + + private List orderTransferParams; + + private String couponNo; + + private Boolean useCoupon; + + private String promotionNo; + + private String userClientIp; + + private String lang; + + private Boolean usePromotion; + public SaveBatchTaskForCreatingOrderTransferRequest() { + super("Domain", "2018-01-29", "SaveBatchTaskForCreatingOrderTransfer", "domain"); + 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 getOrderTransferParams() { + return this.orderTransferParams; + } + + public void setOrderTransferParams(List orderTransferParams) { + this.orderTransferParams = orderTransferParams; + if (orderTransferParams != null) { + for (int depth1 = 0; depth1 < orderTransferParams.size(); depth1++) { + putQueryParameter("OrderTransferParam." + (depth1 + 1) + ".PermitPremiumTransfer" , orderTransferParams.get(depth1).getPermitPremiumTransfer()); + putQueryParameter("OrderTransferParam." + (depth1 + 1) + ".AuthorizationCode" , orderTransferParams.get(depth1).getAuthorizationCode()); + putQueryParameter("OrderTransferParam." + (depth1 + 1) + ".RegistrantProfileId" , orderTransferParams.get(depth1).getRegistrantProfileId()); + putQueryParameter("OrderTransferParam." + (depth1 + 1) + ".DomainName" , orderTransferParams.get(depth1).getDomainName()); + } + } + } + + public String getCouponNo() { + return this.couponNo; + } + + public void setCouponNo(String couponNo) { + this.couponNo = couponNo; + if(couponNo != null){ + putQueryParameter("CouponNo", couponNo); + } + } + + public Boolean getUseCoupon() { + return this.useCoupon; + } + + public void setUseCoupon(Boolean useCoupon) { + this.useCoupon = useCoupon; + if(useCoupon != null){ + putQueryParameter("UseCoupon", useCoupon.toString()); + } + } + + public String getPromotionNo() { + return this.promotionNo; + } + + public void setPromotionNo(String promotionNo) { + this.promotionNo = promotionNo; + if(promotionNo != null){ + putQueryParameter("PromotionNo", promotionNo); + } + } + + 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 Boolean getUsePromotion() { + return this.usePromotion; + } + + public void setUsePromotion(Boolean usePromotion) { + this.usePromotion = usePromotion; + if(usePromotion != null){ + putQueryParameter("UsePromotion", usePromotion.toString()); + } + } + + public static class OrderTransferParam { + + private Boolean permitPremiumTransfer; + + private String authorizationCode; + + private Long registrantProfileId; + + private String domainName; + + public Boolean getPermitPremiumTransfer() { + return this.permitPremiumTransfer; + } + + public void setPermitPremiumTransfer(Boolean permitPremiumTransfer) { + this.permitPremiumTransfer = permitPremiumTransfer; + } + + public String getAuthorizationCode() { + return this.authorizationCode; + } + + public void setAuthorizationCode(String authorizationCode) { + this.authorizationCode = authorizationCode; + } + + public Long getRegistrantProfileId() { + return this.registrantProfileId; + } + + public void setRegistrantProfileId(Long registrantProfileId) { + this.registrantProfileId = registrantProfileId; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + } + + @Override + public Class getResponseClass() { + return SaveBatchTaskForCreatingOrderTransferResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderTransferResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderTransferResponse.java new file mode 100644 index 0000000000..e34a8732cc --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForCreatingOrderTransferResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveBatchTaskForCreatingOrderTransferResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForCreatingOrderTransferResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveBatchTaskForCreatingOrderTransferResponse getInstance(UnmarshallerContext context) { + return SaveBatchTaskForCreatingOrderTransferResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForDomainNameProxyServiceRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForDomainNameProxyServiceRequest.java new file mode 100644 index 0000000000..37b565eea3 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForDomainNameProxyServiceRequest.java @@ -0,0 +1,96 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForDomainNameProxyServiceRequest extends RpcAcsRequest { + + + private List domainNames; + + private String userClientIp; + + private String lang; + + private Boolean status; + public SaveBatchTaskForDomainNameProxyServiceRequest() { + super("Domain", "2018-01-29", "SaveBatchTaskForDomainNameProxyService", "domain"); + 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 getDomainNames() { + return this.domainNames; + } + + public void setDomainNames(List domainNames) { + this.domainNames = domainNames; + if (domainNames != null) { + for (int i = 0; i < domainNames.size(); i++) { + putQueryParameter("DomainName." + (i + 1) , domainNames.get(i)); + } + } + } + + 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 Boolean getStatus() { + return this.status; + } + + public void setStatus(Boolean status) { + this.status = status; + if(status != null){ + putQueryParameter("Status", status.toString()); + } + } + + @Override + public Class getResponseClass() { + return SaveBatchTaskForDomainNameProxyServiceResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForDomainNameProxyServiceResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForDomainNameProxyServiceResponse.java new file mode 100644 index 0000000000..4b432860a4 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForDomainNameProxyServiceResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveBatchTaskForDomainNameProxyServiceResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForDomainNameProxyServiceResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveBatchTaskForDomainNameProxyServiceResponse getInstance(UnmarshallerContext context) { + return SaveBatchTaskForDomainNameProxyServiceResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForGenerateDomainCertificateRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForGenerateDomainCertificateRequest.java new file mode 100644 index 0000000000..08d722d2a9 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForGenerateDomainCertificateRequest.java @@ -0,0 +1,84 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.google.gson.Gson; +import com.google.gson.annotations.SerializedName; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForGenerateDomainCertificateRequest extends RpcAcsRequest { + + + @SerializedName("domainNames") + private List domainNames; + + private String userClientIp; + + private String lang; + public SaveBatchTaskForGenerateDomainCertificateRequest() { + super("Domain", "2018-01-29", "SaveBatchTaskForGenerateDomainCertificate", "domain"); + 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 getDomainNames() { + return this.domainNames; + } + + public void setDomainNames(List domainNames) { + this.domainNames = domainNames; + if (domainNames != null) { + putQueryParameter("DomainNames" , new Gson().toJson(domainNames)); + } + } + + 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 getResponseClass() { + return SaveBatchTaskForGenerateDomainCertificateResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForGenerateDomainCertificateResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForGenerateDomainCertificateResponse.java new file mode 100644 index 0000000000..3cc648db95 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForGenerateDomainCertificateResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveBatchTaskForGenerateDomainCertificateResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForGenerateDomainCertificateResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveBatchTaskForGenerateDomainCertificateResponse getInstance(UnmarshallerContext context) { + return SaveBatchTaskForGenerateDomainCertificateResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForModifyingDomainDnsRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForModifyingDomainDnsRequest.java new file mode 100644 index 0000000000..9eac60d5cb --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForModifyingDomainDnsRequest.java @@ -0,0 +1,111 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForModifyingDomainDnsRequest extends RpcAcsRequest { + + + private List domainNames; + + private Boolean aliyunDns; + + private String userClientIp; + + private List domainNameServers; + + private String lang; + public SaveBatchTaskForModifyingDomainDnsRequest() { + super("Domain", "2018-01-29", "SaveBatchTaskForModifyingDomainDns", "domain"); + 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 getDomainNames() { + return this.domainNames; + } + + public void setDomainNames(List domainNames) { + this.domainNames = domainNames; + if (domainNames != null) { + for (int i = 0; i < domainNames.size(); i++) { + putQueryParameter("DomainName." + (i + 1) , domainNames.get(i)); + } + } + } + + public Boolean getAliyunDns() { + return this.aliyunDns; + } + + public void setAliyunDns(Boolean aliyunDns) { + this.aliyunDns = aliyunDns; + if(aliyunDns != null){ + putQueryParameter("AliyunDns", aliyunDns.toString()); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public List getDomainNameServers() { + return this.domainNameServers; + } + + public void setDomainNameServers(List domainNameServers) { + this.domainNameServers = domainNameServers; + if (domainNameServers != null) { + for (int i = 0; i < domainNameServers.size(); i++) { + putQueryParameter("DomainNameServer." + (i + 1) , domainNameServers.get(i)); + } + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return SaveBatchTaskForModifyingDomainDnsResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForModifyingDomainDnsResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForModifyingDomainDnsResponse.java new file mode 100644 index 0000000000..0ec90ab214 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForModifyingDomainDnsResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveBatchTaskForModifyingDomainDnsResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForModifyingDomainDnsResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveBatchTaskForModifyingDomainDnsResponse getInstance(UnmarshallerContext context) { + return SaveBatchTaskForModifyingDomainDnsResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForReserveDropListDomainRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForReserveDropListDomainRequest.java new file mode 100644 index 0000000000..f34c0a18fa --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForReserveDropListDomainRequest.java @@ -0,0 +1,105 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForReserveDropListDomainRequest extends RpcAcsRequest { + + + private List domainss; + + private String contactTemplateId; + public SaveBatchTaskForReserveDropListDomainRequest() { + super("Domain", "2018-01-29", "SaveBatchTaskForReserveDropListDomain", "domain"); + 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 getDomainss() { + return this.domainss; + } + + public void setDomainss(List domainss) { + this.domainss = domainss; + if (domainss != null) { + for (int depth1 = 0; depth1 < domainss.size(); depth1++) { + putQueryParameter("Domains." + (depth1 + 1) + ".Dns2" , domainss.get(depth1).getDns2()); + putQueryParameter("Domains." + (depth1 + 1) + ".Dns1" , domainss.get(depth1).getDns1()); + putQueryParameter("Domains." + (depth1 + 1) + ".DomainName" , domainss.get(depth1).getDomainName()); + } + } + } + + public String getContactTemplateId() { + return this.contactTemplateId; + } + + public void setContactTemplateId(String contactTemplateId) { + this.contactTemplateId = contactTemplateId; + if(contactTemplateId != null){ + putQueryParameter("ContactTemplateId", contactTemplateId); + } + } + + public static class Domains { + + private String dns2; + + private String dns1; + + private String domainName; + + public String getDns2() { + return this.dns2; + } + + public void setDns2(String dns2) { + this.dns2 = dns2; + } + + public String getDns1() { + return this.dns1; + } + + public void setDns1(String dns1) { + this.dns1 = dns1; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + } + + @Override + public Class getResponseClass() { + return SaveBatchTaskForReserveDropListDomainResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForReserveDropListDomainResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForReserveDropListDomainResponse.java new file mode 100644 index 0000000000..a479306d64 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForReserveDropListDomainResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveBatchTaskForReserveDropListDomainResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForReserveDropListDomainResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveBatchTaskForReserveDropListDomainResponse getInstance(UnmarshallerContext context) { + return SaveBatchTaskForReserveDropListDomainResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForTransferOutByAuthorizationCodeRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForTransferOutByAuthorizationCodeRequest.java new file mode 100644 index 0000000000..f224bd9ecd --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForTransferOutByAuthorizationCodeRequest.java @@ -0,0 +1,109 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.ProtocolType; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForTransferOutByAuthorizationCodeRequest extends RpcAcsRequest { + + + private String _long; + + private List transferOutParamLists; + + private String userClientIp; + public SaveBatchTaskForTransferOutByAuthorizationCodeRequest() { + super("Domain", "2018-01-29", "SaveBatchTaskForTransferOutByAuthorizationCode", "domain"); + setProtocol(ProtocolType.HTTPS); + 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 get_Long() { + return this._long; + } + + public void set_Long(String _long) { + this._long = _long; + if(_long != null){ + putQueryParameter("Long", _long); + } + } + + public List getTransferOutParamLists() { + return this.transferOutParamLists; + } + + public void setTransferOutParamLists(List transferOutParamLists) { + this.transferOutParamLists = transferOutParamLists; + if (transferOutParamLists != null) { + for (int depth1 = 0; depth1 < transferOutParamLists.size(); depth1++) { + putQueryParameter("TransferOutParamList." + (depth1 + 1) + ".AuthorizationCode" , transferOutParamLists.get(depth1).getAuthorizationCode()); + putQueryParameter("TransferOutParamList." + (depth1 + 1) + ".DomainName" , transferOutParamLists.get(depth1).getDomainName()); + } + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public static class TransferOutParamList { + + private String authorizationCode; + + private String domainName; + + public String getAuthorizationCode() { + return this.authorizationCode; + } + + public void setAuthorizationCode(String authorizationCode) { + this.authorizationCode = authorizationCode; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + } + + @Override + public Class getResponseClass() { + return SaveBatchTaskForTransferOutByAuthorizationCodeResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForTransferOutByAuthorizationCodeResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForTransferOutByAuthorizationCodeResponse.java new file mode 100644 index 0000000000..cb86bd9e9e --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForTransferOutByAuthorizationCodeResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveBatchTaskForTransferOutByAuthorizationCodeResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForTransferOutByAuthorizationCodeResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveBatchTaskForTransferOutByAuthorizationCodeResponse getInstance(UnmarshallerContext context) { + return SaveBatchTaskForTransferOutByAuthorizationCodeResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForTransferProhibitionLockRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForTransferProhibitionLockRequest.java new file mode 100644 index 0000000000..a49a1fadbb --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForTransferProhibitionLockRequest.java @@ -0,0 +1,96 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForTransferProhibitionLockRequest extends RpcAcsRequest { + + + private List domainNames; + + private String userClientIp; + + private String lang; + + private Boolean status; + public SaveBatchTaskForTransferProhibitionLockRequest() { + super("Domain", "2018-01-29", "SaveBatchTaskForTransferProhibitionLock", "domain"); + 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 getDomainNames() { + return this.domainNames; + } + + public void setDomainNames(List domainNames) { + this.domainNames = domainNames; + if (domainNames != null) { + for (int i = 0; i < domainNames.size(); i++) { + putQueryParameter("DomainName." + (i + 1) , domainNames.get(i)); + } + } + } + + 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 Boolean getStatus() { + return this.status; + } + + public void setStatus(Boolean status) { + this.status = status; + if(status != null){ + putQueryParameter("Status", status.toString()); + } + } + + @Override + public Class getResponseClass() { + return SaveBatchTaskForTransferProhibitionLockResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForTransferProhibitionLockResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForTransferProhibitionLockResponse.java new file mode 100644 index 0000000000..8853d15c33 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForTransferProhibitionLockResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveBatchTaskForTransferProhibitionLockResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForTransferProhibitionLockResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveBatchTaskForTransferProhibitionLockResponse getInstance(UnmarshallerContext context) { + return SaveBatchTaskForTransferProhibitionLockResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForUpdateProhibitionLockRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForUpdateProhibitionLockRequest.java new file mode 100644 index 0000000000..e3f819d4ea --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForUpdateProhibitionLockRequest.java @@ -0,0 +1,96 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForUpdateProhibitionLockRequest extends RpcAcsRequest { + + + private List domainNames; + + private String userClientIp; + + private String lang; + + private Boolean status; + public SaveBatchTaskForUpdateProhibitionLockRequest() { + super("Domain", "2018-01-29", "SaveBatchTaskForUpdateProhibitionLock", "domain"); + 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 getDomainNames() { + return this.domainNames; + } + + public void setDomainNames(List domainNames) { + this.domainNames = domainNames; + if (domainNames != null) { + for (int i = 0; i < domainNames.size(); i++) { + putQueryParameter("DomainName." + (i + 1) , domainNames.get(i)); + } + } + } + + 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 Boolean getStatus() { + return this.status; + } + + public void setStatus(Boolean status) { + this.status = status; + if(status != null){ + putQueryParameter("Status", status.toString()); + } + } + + @Override + public Class getResponseClass() { + return SaveBatchTaskForUpdateProhibitionLockResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForUpdateProhibitionLockResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForUpdateProhibitionLockResponse.java new file mode 100644 index 0000000000..1a33a633d0 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForUpdateProhibitionLockResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveBatchTaskForUpdateProhibitionLockResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForUpdateProhibitionLockResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveBatchTaskForUpdateProhibitionLockResponse getInstance(UnmarshallerContext context) { + return SaveBatchTaskForUpdateProhibitionLockResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForUpdatingContactInfoByNewContactRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForUpdatingContactInfoByNewContactRequest.java new file mode 100644 index 0000000000..9c9da9de31 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForUpdatingContactInfoByNewContactRequest.java @@ -0,0 +1,330 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForUpdatingContactInfoByNewContactRequest extends RpcAcsRequest { + + + private String country; + + private String city; + + private Boolean transferOutProhibited; + + private String zhCity; + + private String telExt; + + private String province; + + private String zhRegistrantName; + + private String postalCode; + + private String lang; + + private String email; + + private String zhRegistrantOrganization; + + private String address; + + private String telArea; + + private String contactType; + + private String zhAddress; + + private String registrantType; + + private List domainNames; + + private String telephone; + + private String zhProvince; + + private String registrantOrganization; + + private String userClientIp; + + private String registrantName; + public SaveBatchTaskForUpdatingContactInfoByNewContactRequest() { + super("Domain", "2018-01-29", "SaveBatchTaskForUpdatingContactInfoByNewContact", "domain"); + 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 getCountry() { + return this.country; + } + + public void setCountry(String country) { + this.country = country; + if(country != null){ + putQueryParameter("Country", country); + } + } + + public String getCity() { + return this.city; + } + + public void setCity(String city) { + this.city = city; + if(city != null){ + putQueryParameter("City", city); + } + } + + public Boolean getTransferOutProhibited() { + return this.transferOutProhibited; + } + + public void setTransferOutProhibited(Boolean transferOutProhibited) { + this.transferOutProhibited = transferOutProhibited; + if(transferOutProhibited != null){ + putQueryParameter("TransferOutProhibited", transferOutProhibited.toString()); + } + } + + public String getZhCity() { + return this.zhCity; + } + + public void setZhCity(String zhCity) { + this.zhCity = zhCity; + if(zhCity != null){ + putQueryParameter("ZhCity", zhCity); + } + } + + public String getTelExt() { + return this.telExt; + } + + public void setTelExt(String telExt) { + this.telExt = telExt; + if(telExt != null){ + putQueryParameter("TelExt", telExt); + } + } + + public String getProvince() { + return this.province; + } + + public void setProvince(String province) { + this.province = province; + if(province != null){ + putQueryParameter("Province", province); + } + } + + public String getZhRegistrantName() { + return this.zhRegistrantName; + } + + public void setZhRegistrantName(String zhRegistrantName) { + this.zhRegistrantName = zhRegistrantName; + if(zhRegistrantName != null){ + putQueryParameter("ZhRegistrantName", zhRegistrantName); + } + } + + public String getPostalCode() { + return this.postalCode; + } + + public void setPostalCode(String postalCode) { + this.postalCode = postalCode; + if(postalCode != null){ + putQueryParameter("PostalCode", postalCode); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + if(email != null){ + putQueryParameter("Email", email); + } + } + + public String getZhRegistrantOrganization() { + return this.zhRegistrantOrganization; + } + + public void setZhRegistrantOrganization(String zhRegistrantOrganization) { + this.zhRegistrantOrganization = zhRegistrantOrganization; + if(zhRegistrantOrganization != null){ + putQueryParameter("ZhRegistrantOrganization", zhRegistrantOrganization); + } + } + + public String getAddress() { + return this.address; + } + + public void setAddress(String address) { + this.address = address; + if(address != null){ + putQueryParameter("Address", address); + } + } + + public String getTelArea() { + return this.telArea; + } + + public void setTelArea(String telArea) { + this.telArea = telArea; + if(telArea != null){ + putQueryParameter("TelArea", telArea); + } + } + + public String getContactType() { + return this.contactType; + } + + public void setContactType(String contactType) { + this.contactType = contactType; + if(contactType != null){ + putQueryParameter("ContactType", contactType); + } + } + + public String getZhAddress() { + return this.zhAddress; + } + + public void setZhAddress(String zhAddress) { + this.zhAddress = zhAddress; + if(zhAddress != null){ + putQueryParameter("ZhAddress", zhAddress); + } + } + + public String getRegistrantType() { + return this.registrantType; + } + + public void setRegistrantType(String registrantType) { + this.registrantType = registrantType; + if(registrantType != null){ + putQueryParameter("RegistrantType", registrantType); + } + } + + public List getDomainNames() { + return this.domainNames; + } + + public void setDomainNames(List domainNames) { + this.domainNames = domainNames; + if (domainNames != null) { + for (int i = 0; i < domainNames.size(); i++) { + putQueryParameter("DomainName." + (i + 1) , domainNames.get(i)); + } + } + } + + public String getTelephone() { + return this.telephone; + } + + public void setTelephone(String telephone) { + this.telephone = telephone; + if(telephone != null){ + putQueryParameter("Telephone", telephone); + } + } + + public String getZhProvince() { + return this.zhProvince; + } + + public void setZhProvince(String zhProvince) { + this.zhProvince = zhProvince; + if(zhProvince != null){ + putQueryParameter("ZhProvince", zhProvince); + } + } + + public String getRegistrantOrganization() { + return this.registrantOrganization; + } + + public void setRegistrantOrganization(String registrantOrganization) { + this.registrantOrganization = registrantOrganization; + if(registrantOrganization != null){ + putQueryParameter("RegistrantOrganization", registrantOrganization); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getRegistrantName() { + return this.registrantName; + } + + public void setRegistrantName(String registrantName) { + this.registrantName = registrantName; + if(registrantName != null){ + putQueryParameter("RegistrantName", registrantName); + } + } + + @Override + public Class getResponseClass() { + return SaveBatchTaskForUpdatingContactInfoByNewContactResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForUpdatingContactInfoByNewContactResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForUpdatingContactInfoByNewContactResponse.java new file mode 100644 index 0000000000..4c365e7cce --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForUpdatingContactInfoByNewContactResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveBatchTaskForUpdatingContactInfoByNewContactResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForUpdatingContactInfoByNewContactResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveBatchTaskForUpdatingContactInfoByNewContactResponse getInstance(UnmarshallerContext context) { + return SaveBatchTaskForUpdatingContactInfoByNewContactResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdRequest.java new file mode 100644 index 0000000000..d56c6c4ecf --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdRequest.java @@ -0,0 +1,122 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdRequest extends RpcAcsRequest { + + + private String contactType; + + private Long registrantProfileId; + + private List domainNames; + + private Boolean transferOutProhibited; + + private String userClientIp; + + private String lang; + public SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdRequest() { + super("Domain", "2018-01-29", "SaveBatchTaskForUpdatingContactInfoByRegistrantProfileId", "domain"); + 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 getContactType() { + return this.contactType; + } + + public void setContactType(String contactType) { + this.contactType = contactType; + if(contactType != null){ + putQueryParameter("ContactType", contactType); + } + } + + public Long getRegistrantProfileId() { + return this.registrantProfileId; + } + + public void setRegistrantProfileId(Long registrantProfileId) { + this.registrantProfileId = registrantProfileId; + if(registrantProfileId != null){ + putQueryParameter("RegistrantProfileId", registrantProfileId.toString()); + } + } + + public List getDomainNames() { + return this.domainNames; + } + + public void setDomainNames(List domainNames) { + this.domainNames = domainNames; + if (domainNames != null) { + for (int i = 0; i < domainNames.size(); i++) { + putQueryParameter("DomainName." + (i + 1) , domainNames.get(i)); + } + } + } + + public Boolean getTransferOutProhibited() { + return this.transferOutProhibited; + } + + public void setTransferOutProhibited(Boolean transferOutProhibited) { + this.transferOutProhibited = transferOutProhibited; + if(transferOutProhibited != null){ + putQueryParameter("TransferOutProhibited", transferOutProhibited.toString()); + } + } + + 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 getResponseClass() { + return SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdResponse.java new file mode 100644 index 0000000000..1a0d633c77 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdResponse getInstance(UnmarshallerContext context) { + return SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveDomainGroupRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveDomainGroupRequest.java new file mode 100644 index 0000000000..9efd174e30 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveDomainGroupRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveDomainGroupRequest extends RpcAcsRequest { + + + private Long domainGroupId; + + private String userClientIp; + + private String domainGroupName; + + private String lang; + public SaveDomainGroupRequest() { + super("Domain", "2018-01-29", "SaveDomainGroup", "domain"); + 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 getDomainGroupId() { + return this.domainGroupId; + } + + public void setDomainGroupId(Long domainGroupId) { + this.domainGroupId = domainGroupId; + if(domainGroupId != null){ + putQueryParameter("DomainGroupId", domainGroupId.toString()); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getDomainGroupName() { + return this.domainGroupName; + } + + public void setDomainGroupName(String domainGroupName) { + this.domainGroupName = domainGroupName; + if(domainGroupName != null){ + putQueryParameter("DomainGroupName", domainGroupName); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return SaveDomainGroupResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveDomainGroupResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveDomainGroupResponse.java new file mode 100644 index 0000000000..751addfa38 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveDomainGroupResponse.java @@ -0,0 +1,111 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveDomainGroupResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveDomainGroupResponse extends AcsResponse { + + private Boolean beingDeleted; + + private String creationDate; + + private String requestId; + + private String domainGroupName; + + private String modificationDate; + + private String domainGroupStatus; + + private Long domainGroupId; + + private Integer totalNumber; + + public Boolean getBeingDeleted() { + return this.beingDeleted; + } + + public void setBeingDeleted(Boolean beingDeleted) { + this.beingDeleted = beingDeleted; + } + + public String getCreationDate() { + return this.creationDate; + } + + public void setCreationDate(String creationDate) { + this.creationDate = creationDate; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getDomainGroupName() { + return this.domainGroupName; + } + + public void setDomainGroupName(String domainGroupName) { + this.domainGroupName = domainGroupName; + } + + public String getModificationDate() { + return this.modificationDate; + } + + public void setModificationDate(String modificationDate) { + this.modificationDate = modificationDate; + } + + public String getDomainGroupStatus() { + return this.domainGroupStatus; + } + + public void setDomainGroupStatus(String domainGroupStatus) { + this.domainGroupStatus = domainGroupStatus; + } + + public Long getDomainGroupId() { + return this.domainGroupId; + } + + public void setDomainGroupId(Long domainGroupId) { + this.domainGroupId = domainGroupId; + } + + public Integer getTotalNumber() { + return this.totalNumber; + } + + public void setTotalNumber(Integer totalNumber) { + this.totalNumber = totalNumber; + } + + @Override + public SaveDomainGroupResponse getInstance(UnmarshallerContext context) { + return SaveDomainGroupResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveRegistrantProfileRealNameVerificationRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveRegistrantProfileRealNameVerificationRequest.java new file mode 100644 index 0000000000..d032a3fe7a --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveRegistrantProfileRealNameVerificationRequest.java @@ -0,0 +1,353 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveRegistrantProfileRealNameVerificationRequest extends RpcAcsRequest { + + + private String country; + + private String identityCredentialType; + + private String city; + + private Long registrantProfileId; + + private String identityCredential; + + private String zhCity; + + private String telExt; + + private String province; + + private String zhRegistrantName; + + private String postalCode; + + private String lang; + + private String email; + + private String zhRegistrantOrganization; + + private String address; + + private String telArea; + + private String zhAddress; + + private String registrantType; + + private String registrantProfileType; + + private String telephone; + + private String zhProvince; + + private String registrantOrganization; + + private String userClientIp; + + private String identityCredentialNo; + + private String registrantName; + public SaveRegistrantProfileRealNameVerificationRequest() { + super("Domain", "2018-01-29", "SaveRegistrantProfileRealNameVerification", "domain"); + 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 getCountry() { + return this.country; + } + + public void setCountry(String country) { + this.country = country; + if(country != null){ + putQueryParameter("Country", country); + } + } + + public String getIdentityCredentialType() { + return this.identityCredentialType; + } + + public void setIdentityCredentialType(String identityCredentialType) { + this.identityCredentialType = identityCredentialType; + if(identityCredentialType != null){ + putQueryParameter("IdentityCredentialType", identityCredentialType); + } + } + + public String getCity() { + return this.city; + } + + public void setCity(String city) { + this.city = city; + if(city != null){ + putQueryParameter("City", city); + } + } + + public Long getRegistrantProfileId() { + return this.registrantProfileId; + } + + public void setRegistrantProfileId(Long registrantProfileId) { + this.registrantProfileId = registrantProfileId; + if(registrantProfileId != null){ + putQueryParameter("RegistrantProfileId", registrantProfileId.toString()); + } + } + + public String getIdentityCredential() { + return this.identityCredential; + } + + public void setIdentityCredential(String identityCredential) { + this.identityCredential = identityCredential; + if(identityCredential != null){ + putQueryParameter("IdentityCredential", identityCredential); + } + } + + public String getZhCity() { + return this.zhCity; + } + + public void setZhCity(String zhCity) { + this.zhCity = zhCity; + if(zhCity != null){ + putQueryParameter("ZhCity", zhCity); + } + } + + public String getTelExt() { + return this.telExt; + } + + public void setTelExt(String telExt) { + this.telExt = telExt; + if(telExt != null){ + putQueryParameter("TelExt", telExt); + } + } + + public String getProvince() { + return this.province; + } + + public void setProvince(String province) { + this.province = province; + if(province != null){ + putQueryParameter("Province", province); + } + } + + public String getZhRegistrantName() { + return this.zhRegistrantName; + } + + public void setZhRegistrantName(String zhRegistrantName) { + this.zhRegistrantName = zhRegistrantName; + if(zhRegistrantName != null){ + putQueryParameter("ZhRegistrantName", zhRegistrantName); + } + } + + public String getPostalCode() { + return this.postalCode; + } + + public void setPostalCode(String postalCode) { + this.postalCode = postalCode; + if(postalCode != null){ + putQueryParameter("PostalCode", postalCode); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + if(email != null){ + putQueryParameter("Email", email); + } + } + + public String getZhRegistrantOrganization() { + return this.zhRegistrantOrganization; + } + + public void setZhRegistrantOrganization(String zhRegistrantOrganization) { + this.zhRegistrantOrganization = zhRegistrantOrganization; + if(zhRegistrantOrganization != null){ + putQueryParameter("ZhRegistrantOrganization", zhRegistrantOrganization); + } + } + + public String getAddress() { + return this.address; + } + + public void setAddress(String address) { + this.address = address; + if(address != null){ + putQueryParameter("Address", address); + } + } + + public String getTelArea() { + return this.telArea; + } + + public void setTelArea(String telArea) { + this.telArea = telArea; + if(telArea != null){ + putQueryParameter("TelArea", telArea); + } + } + + public String getZhAddress() { + return this.zhAddress; + } + + public void setZhAddress(String zhAddress) { + this.zhAddress = zhAddress; + if(zhAddress != null){ + putQueryParameter("ZhAddress", zhAddress); + } + } + + public String getRegistrantType() { + return this.registrantType; + } + + public void setRegistrantType(String registrantType) { + this.registrantType = registrantType; + if(registrantType != null){ + putQueryParameter("RegistrantType", registrantType); + } + } + + public String getRegistrantProfileType() { + return this.registrantProfileType; + } + + public void setRegistrantProfileType(String registrantProfileType) { + this.registrantProfileType = registrantProfileType; + if(registrantProfileType != null){ + putQueryParameter("RegistrantProfileType", registrantProfileType); + } + } + + public String getTelephone() { + return this.telephone; + } + + public void setTelephone(String telephone) { + this.telephone = telephone; + if(telephone != null){ + putQueryParameter("Telephone", telephone); + } + } + + public String getZhProvince() { + return this.zhProvince; + } + + public void setZhProvince(String zhProvince) { + this.zhProvince = zhProvince; + if(zhProvince != null){ + putQueryParameter("ZhProvince", zhProvince); + } + } + + public String getRegistrantOrganization() { + return this.registrantOrganization; + } + + public void setRegistrantOrganization(String registrantOrganization) { + this.registrantOrganization = registrantOrganization; + if(registrantOrganization != null){ + putQueryParameter("RegistrantOrganization", registrantOrganization); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getIdentityCredentialNo() { + return this.identityCredentialNo; + } + + public void setIdentityCredentialNo(String identityCredentialNo) { + this.identityCredentialNo = identityCredentialNo; + if(identityCredentialNo != null){ + putQueryParameter("IdentityCredentialNo", identityCredentialNo); + } + } + + public String getRegistrantName() { + return this.registrantName; + } + + public void setRegistrantName(String registrantName) { + this.registrantName = registrantName; + if(registrantName != null){ + putQueryParameter("RegistrantName", registrantName); + } + } + + @Override + public Class getResponseClass() { + return SaveRegistrantProfileRealNameVerificationResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveRegistrantProfileRealNameVerificationResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveRegistrantProfileRealNameVerificationResponse.java new file mode 100644 index 0000000000..5bd3c8d104 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveRegistrantProfileRealNameVerificationResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveRegistrantProfileRealNameVerificationResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveRegistrantProfileRealNameVerificationResponse extends AcsResponse { + + private Long registrantProfileId; + + private String requestId; + + public Long getRegistrantProfileId() { + return this.registrantProfileId; + } + + public void setRegistrantProfileId(Long registrantProfileId) { + this.registrantProfileId = registrantProfileId; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + @Override + public SaveRegistrantProfileRealNameVerificationResponse getInstance(UnmarshallerContext context) { + return SaveRegistrantProfileRealNameVerificationResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveRegistrantProfileRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveRegistrantProfileRequest.java new file mode 100644 index 0000000000..68ae941639 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveRegistrantProfileRequest.java @@ -0,0 +1,327 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveRegistrantProfileRequest extends RpcAcsRequest { + + + private String country; + + private String city; + + private Long registrantProfileId; + + private String zhCity; + + private String telExt; + + private String province; + + private String zhRegistrantName; + + private String postalCode; + + private String lang; + + private String email; + + private String zhRegistrantOrganization; + + private String address; + + private String telArea; + + private String zhAddress; + + private String registrantType; + + private String registrantProfileType; + + private String telephone; + + private Boolean defaultRegistrantProfile; + + private String zhProvince; + + private String registrantOrganization; + + private String userClientIp; + + private String registrantName; + public SaveRegistrantProfileRequest() { + super("Domain", "2018-01-29", "SaveRegistrantProfile", "domain"); + 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 getCountry() { + return this.country; + } + + public void setCountry(String country) { + this.country = country; + if(country != null){ + putQueryParameter("Country", country); + } + } + + public String getCity() { + return this.city; + } + + public void setCity(String city) { + this.city = city; + if(city != null){ + putQueryParameter("City", city); + } + } + + public Long getRegistrantProfileId() { + return this.registrantProfileId; + } + + public void setRegistrantProfileId(Long registrantProfileId) { + this.registrantProfileId = registrantProfileId; + if(registrantProfileId != null){ + putQueryParameter("RegistrantProfileId", registrantProfileId.toString()); + } + } + + public String getZhCity() { + return this.zhCity; + } + + public void setZhCity(String zhCity) { + this.zhCity = zhCity; + if(zhCity != null){ + putQueryParameter("ZhCity", zhCity); + } + } + + public String getTelExt() { + return this.telExt; + } + + public void setTelExt(String telExt) { + this.telExt = telExt; + if(telExt != null){ + putQueryParameter("TelExt", telExt); + } + } + + public String getProvince() { + return this.province; + } + + public void setProvince(String province) { + this.province = province; + if(province != null){ + putQueryParameter("Province", province); + } + } + + public String getZhRegistrantName() { + return this.zhRegistrantName; + } + + public void setZhRegistrantName(String zhRegistrantName) { + this.zhRegistrantName = zhRegistrantName; + if(zhRegistrantName != null){ + putQueryParameter("ZhRegistrantName", zhRegistrantName); + } + } + + public String getPostalCode() { + return this.postalCode; + } + + public void setPostalCode(String postalCode) { + this.postalCode = postalCode; + if(postalCode != null){ + putQueryParameter("PostalCode", postalCode); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + if(email != null){ + putQueryParameter("Email", email); + } + } + + public String getZhRegistrantOrganization() { + return this.zhRegistrantOrganization; + } + + public void setZhRegistrantOrganization(String zhRegistrantOrganization) { + this.zhRegistrantOrganization = zhRegistrantOrganization; + if(zhRegistrantOrganization != null){ + putQueryParameter("ZhRegistrantOrganization", zhRegistrantOrganization); + } + } + + public String getAddress() { + return this.address; + } + + public void setAddress(String address) { + this.address = address; + if(address != null){ + putQueryParameter("Address", address); + } + } + + public String getTelArea() { + return this.telArea; + } + + public void setTelArea(String telArea) { + this.telArea = telArea; + if(telArea != null){ + putQueryParameter("TelArea", telArea); + } + } + + public String getZhAddress() { + return this.zhAddress; + } + + public void setZhAddress(String zhAddress) { + this.zhAddress = zhAddress; + if(zhAddress != null){ + putQueryParameter("ZhAddress", zhAddress); + } + } + + public String getRegistrantType() { + return this.registrantType; + } + + public void setRegistrantType(String registrantType) { + this.registrantType = registrantType; + if(registrantType != null){ + putQueryParameter("RegistrantType", registrantType); + } + } + + public String getRegistrantProfileType() { + return this.registrantProfileType; + } + + public void setRegistrantProfileType(String registrantProfileType) { + this.registrantProfileType = registrantProfileType; + if(registrantProfileType != null){ + putQueryParameter("RegistrantProfileType", registrantProfileType); + } + } + + public String getTelephone() { + return this.telephone; + } + + public void setTelephone(String telephone) { + this.telephone = telephone; + if(telephone != null){ + putQueryParameter("Telephone", telephone); + } + } + + public Boolean getDefaultRegistrantProfile() { + return this.defaultRegistrantProfile; + } + + public void setDefaultRegistrantProfile(Boolean defaultRegistrantProfile) { + this.defaultRegistrantProfile = defaultRegistrantProfile; + if(defaultRegistrantProfile != null){ + putQueryParameter("DefaultRegistrantProfile", defaultRegistrantProfile.toString()); + } + } + + public String getZhProvince() { + return this.zhProvince; + } + + public void setZhProvince(String zhProvince) { + this.zhProvince = zhProvince; + if(zhProvince != null){ + putQueryParameter("ZhProvince", zhProvince); + } + } + + public String getRegistrantOrganization() { + return this.registrantOrganization; + } + + public void setRegistrantOrganization(String registrantOrganization) { + this.registrantOrganization = registrantOrganization; + if(registrantOrganization != null){ + putQueryParameter("RegistrantOrganization", registrantOrganization); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getRegistrantName() { + return this.registrantName; + } + + public void setRegistrantName(String registrantName) { + this.registrantName = registrantName; + if(registrantName != null){ + putQueryParameter("RegistrantName", registrantName); + } + } + + @Override + public Class getResponseClass() { + return SaveRegistrantProfileResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveRegistrantProfileResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveRegistrantProfileResponse.java new file mode 100644 index 0000000000..ae6e01fd6f --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveRegistrantProfileResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveRegistrantProfileResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveRegistrantProfileResponse extends AcsResponse { + + private Long registrantProfileId; + + private String requestId; + + public Long getRegistrantProfileId() { + return this.registrantProfileId; + } + + public void setRegistrantProfileId(Long registrantProfileId) { + this.registrantProfileId = registrantProfileId; + } + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + @Override + public SaveRegistrantProfileResponse getInstance(UnmarshallerContext context) { + return SaveRegistrantProfileResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForAddingDSRecordRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForAddingDSRecordRequest.java new file mode 100644 index 0000000000..a4ce532088 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForAddingDSRecordRequest.java @@ -0,0 +1,132 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForAddingDSRecordRequest extends RpcAcsRequest { + + + private Integer keyTag; + + private String domainName; + + private String userClientIp; + + private Integer digestType; + + private String digest; + + private String lang; + + private Integer algorithm; + public SaveSingleTaskForAddingDSRecordRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForAddingDSRecord", "domain"); + 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 getKeyTag() { + return this.keyTag; + } + + public void setKeyTag(Integer keyTag) { + this.keyTag = keyTag; + if(keyTag != null){ + putQueryParameter("KeyTag", keyTag.toString()); + } + } + + 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 Integer getDigestType() { + return this.digestType; + } + + public void setDigestType(Integer digestType) { + this.digestType = digestType; + if(digestType != null){ + putQueryParameter("DigestType", digestType.toString()); + } + } + + public String getDigest() { + return this.digest; + } + + public void setDigest(String digest) { + this.digest = digest; + if(digest != null){ + putQueryParameter("Digest", digest); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + public Integer getAlgorithm() { + return this.algorithm; + } + + public void setAlgorithm(Integer algorithm) { + this.algorithm = algorithm; + if(algorithm != null){ + putQueryParameter("Algorithm", algorithm.toString()); + } + } + + @Override + public Class getResponseClass() { + return SaveSingleTaskForAddingDSRecordResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryExchangeRateResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForAddingDSRecordResponse.java similarity index 62% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryExchangeRateResponse.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForAddingDSRecordResponse.java index c0e362546b..84a91f7658 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryExchangeRateResponse.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForAddingDSRecordResponse.java @@ -12,29 +12,21 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.QueryExchangeRateResponseUnmarshaller; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForAddingDSRecordResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ -public class QueryExchangeRateResponse extends AcsResponse { - - private Double exchangeRate; +public class SaveSingleTaskForAddingDSRecordResponse extends AcsResponse { private String requestId; - public Double getExchangeRate() { - return this.exchangeRate; - } - - public void setExchangeRate(Double exchangeRate) { - this.exchangeRate = exchangeRate; - } + private String taskNo; public String getRequestId() { return this.requestId; @@ -44,9 +36,17 @@ public void setRequestId(String requestId) { this.requestId = requestId; } + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + @Override - public QueryExchangeRateResponse getInstance(UnmarshallerContext context) { - return QueryExchangeRateResponseUnmarshaller.unmarshall(this, context); + public SaveSingleTaskForAddingDSRecordResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForAddingDSRecordResponseUnmarshaller.unmarshall(this, context); } @Override diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForApplyQuickTransferOutOpenlyRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForApplyQuickTransferOutOpenlyRequest.java new file mode 100644 index 0000000000..26ac46bd75 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForApplyQuickTransferOutOpenlyRequest.java @@ -0,0 +1,82 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.ProtocolType; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForApplyQuickTransferOutOpenlyRequest extends RpcAcsRequest { + + + private String domainName; + + private String userClientIp; + + private String lang; + public SaveSingleTaskForApplyQuickTransferOutOpenlyRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForApplyQuickTransferOutOpenly", "domain"); + setProtocol(ProtocolType.HTTPS); + 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 getResponseClass() { + return SaveSingleTaskForApplyQuickTransferOutOpenlyResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForApplyQuickTransferOutOpenlyResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForApplyQuickTransferOutOpenlyResponse.java new file mode 100644 index 0000000000..127221c7c4 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForApplyQuickTransferOutOpenlyResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForApplyQuickTransferOutOpenlyResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForApplyQuickTransferOutOpenlyResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForApplyQuickTransferOutOpenlyResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForApplyQuickTransferOutOpenlyResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForApprovingTransferOutRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForApprovingTransferOutRequest.java new file mode 100644 index 0000000000..feba2ac822 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForApprovingTransferOutRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForApprovingTransferOutRequest extends RpcAcsRequest { + + + private String domainName; + + private String userClientIp; + + private String lang; + public SaveSingleTaskForApprovingTransferOutRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForApprovingTransferOut", "domain"); + 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 getResponseClass() { + return SaveSingleTaskForApprovingTransferOutResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForApprovingTransferOutResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForApprovingTransferOutResponse.java new file mode 100644 index 0000000000..896a9173c1 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForApprovingTransferOutResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForApprovingTransferOutResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForApprovingTransferOutResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForApprovingTransferOutResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForApprovingTransferOutResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForAssociatingEnsRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForAssociatingEnsRequest.java new file mode 100644 index 0000000000..1ab654a2aa --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForAssociatingEnsRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForAssociatingEnsRequest extends RpcAcsRequest { + + + private String address; + + private String domainName; + + private String userClientIp; + + private String lang; + public SaveSingleTaskForAssociatingEnsRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForAssociatingEns", "domain"); + 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 getAddress() { + return this.address; + } + + public void setAddress(String address) { + this.address = address; + if(address != null){ + putQueryParameter("Address", address); + } + } + + 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 getResponseClass() { + return SaveSingleTaskForAssociatingEnsResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForAssociatingEnsResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForAssociatingEnsResponse.java new file mode 100644 index 0000000000..0bbc05bc60 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForAssociatingEnsResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForAssociatingEnsResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForAssociatingEnsResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForAssociatingEnsResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForAssociatingEnsResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCancelingTransferInRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCancelingTransferInRequest.java new file mode 100644 index 0000000000..ed80dcdf45 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCancelingTransferInRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForCancelingTransferInRequest extends RpcAcsRequest { + + + private String domainName; + + private String userClientIp; + + private String lang; + public SaveSingleTaskForCancelingTransferInRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForCancelingTransferIn", "domain"); + 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 getResponseClass() { + return SaveSingleTaskForCancelingTransferInResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCancelingTransferInResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCancelingTransferInResponse.java new file mode 100644 index 0000000000..c9d4454516 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCancelingTransferInResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForCancelingTransferInResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForCancelingTransferInResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForCancelingTransferInResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForCancelingTransferInResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCancelingTransferOutRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCancelingTransferOutRequest.java new file mode 100644 index 0000000000..e900589e0f --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCancelingTransferOutRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForCancelingTransferOutRequest extends RpcAcsRequest { + + + private String domainName; + + private String userClientIp; + + private String lang; + public SaveSingleTaskForCancelingTransferOutRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForCancelingTransferOut", "domain"); + 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 getResponseClass() { + return SaveSingleTaskForCancelingTransferOutResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCancelingTransferOutResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCancelingTransferOutResponse.java new file mode 100644 index 0000000000..89de52dc4c --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCancelingTransferOutResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForCancelingTransferOutResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForCancelingTransferOutResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForCancelingTransferOutResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForCancelingTransferOutResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingDnsHostRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingDnsHostRequest.java new file mode 100644 index 0000000000..b2405e8101 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingDnsHostRequest.java @@ -0,0 +1,109 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForCreatingDnsHostRequest extends RpcAcsRequest { + + + private List ips; + + private String instanceId; + + private String dnsName; + + private String userClientIp; + + private String lang; + public SaveSingleTaskForCreatingDnsHostRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForCreatingDnsHost", "domain"); + 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 getIps() { + return this.ips; + } + + public void setIps(List ips) { + this.ips = ips; + if (ips != null) { + for (int i = 0; i < ips.size(); i++) { + putQueryParameter("Ip." + (i + 1) , ips.get(i)); + } + } + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + if(instanceId != null){ + putQueryParameter("InstanceId", instanceId); + } + } + + public String getDnsName() { + return this.dnsName; + } + + public void setDnsName(String dnsName) { + this.dnsName = dnsName; + if(dnsName != null){ + putQueryParameter("DnsName", dnsName); + } + } + + 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 getResponseClass() { + return SaveSingleTaskForCreatingDnsHostResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/BidDomainResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingDnsHostResponse.java similarity index 62% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/BidDomainResponse.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingDnsHostResponse.java index f75fa39de2..d624710043 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/BidDomainResponse.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingDnsHostResponse.java @@ -12,29 +12,21 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.BidDomainResponseUnmarshaller; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForCreatingDnsHostResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ -public class BidDomainResponse extends AcsResponse { - - private String auctionId; +public class SaveSingleTaskForCreatingDnsHostResponse extends AcsResponse { private String requestId; - public String getAuctionId() { - return this.auctionId; - } - - public void setAuctionId(String auctionId) { - this.auctionId = auctionId; - } + private String taskNo; public String getRequestId() { return this.requestId; @@ -44,9 +36,17 @@ public void setRequestId(String requestId) { this.requestId = requestId; } + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + @Override - public BidDomainResponse getInstance(UnmarshallerContext context) { - return BidDomainResponseUnmarshaller.unmarshall(this, context); + public SaveSingleTaskForCreatingDnsHostResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForCreatingDnsHostResponseUnmarshaller.unmarshall(this, context); } @Override diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderActivateRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderActivateRequest.java new file mode 100644 index 0000000000..b06ea5df0c --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderActivateRequest.java @@ -0,0 +1,470 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForCreatingOrderActivateRequest extends RpcAcsRequest { + + + private String country; + + private String dns2; + + private String dns1; + + private String couponNo; + + private String zhCity; + + private String resourceGroupId; + + private String telExt; + + private String province; + + private String domainName; + + private String zhAddress; + + private String telephone; + + private String zhProvince; + + private String registrantOrganization; + + private String promotionNo; + + private String registrantName; + + private Boolean usePromotion; + + private Integer subscriptionDuration; + + private Boolean permitPremiumActivation; + + private String city; + + private Long registrantProfileId; + + private Boolean aliyunDns; + + private String zhRegistrantName; + + private String postalCode; + + private String lang; + + private String email; + + private String zhRegistrantOrganization; + + private String address; + + private String telArea; + + private String registrantType; + + private Boolean trademarkDomainActivation; + + private Boolean useCoupon; + + private Boolean enableDomainProxy; + + private String userClientIp; + public SaveSingleTaskForCreatingOrderActivateRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForCreatingOrderActivate", "domain"); + 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 getCountry() { + return this.country; + } + + public void setCountry(String country) { + this.country = country; + if(country != null){ + putQueryParameter("Country", country); + } + } + + public String getDns2() { + return this.dns2; + } + + public void setDns2(String dns2) { + this.dns2 = dns2; + if(dns2 != null){ + putQueryParameter("Dns2", dns2); + } + } + + public String getDns1() { + return this.dns1; + } + + public void setDns1(String dns1) { + this.dns1 = dns1; + if(dns1 != null){ + putQueryParameter("Dns1", dns1); + } + } + + public String getCouponNo() { + return this.couponNo; + } + + public void setCouponNo(String couponNo) { + this.couponNo = couponNo; + if(couponNo != null){ + putQueryParameter("CouponNo", couponNo); + } + } + + public String getZhCity() { + return this.zhCity; + } + + public void setZhCity(String zhCity) { + this.zhCity = zhCity; + if(zhCity != null){ + putQueryParameter("ZhCity", zhCity); + } + } + + public String getResourceGroupId() { + return this.resourceGroupId; + } + + public void setResourceGroupId(String resourceGroupId) { + this.resourceGroupId = resourceGroupId; + if(resourceGroupId != null){ + putQueryParameter("ResourceGroupId", resourceGroupId); + } + } + + public String getTelExt() { + return this.telExt; + } + + public void setTelExt(String telExt) { + this.telExt = telExt; + if(telExt != null){ + putQueryParameter("TelExt", telExt); + } + } + + public String getProvince() { + return this.province; + } + + public void setProvince(String province) { + this.province = province; + if(province != null){ + putQueryParameter("Province", province); + } + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + if(domainName != null){ + putQueryParameter("DomainName", domainName); + } + } + + public String getZhAddress() { + return this.zhAddress; + } + + public void setZhAddress(String zhAddress) { + this.zhAddress = zhAddress; + if(zhAddress != null){ + putQueryParameter("ZhAddress", zhAddress); + } + } + + public String getTelephone() { + return this.telephone; + } + + public void setTelephone(String telephone) { + this.telephone = telephone; + if(telephone != null){ + putQueryParameter("Telephone", telephone); + } + } + + public String getZhProvince() { + return this.zhProvince; + } + + public void setZhProvince(String zhProvince) { + this.zhProvince = zhProvince; + if(zhProvince != null){ + putQueryParameter("ZhProvince", zhProvince); + } + } + + public String getRegistrantOrganization() { + return this.registrantOrganization; + } + + public void setRegistrantOrganization(String registrantOrganization) { + this.registrantOrganization = registrantOrganization; + if(registrantOrganization != null){ + putQueryParameter("RegistrantOrganization", registrantOrganization); + } + } + + public String getPromotionNo() { + return this.promotionNo; + } + + public void setPromotionNo(String promotionNo) { + this.promotionNo = promotionNo; + if(promotionNo != null){ + putQueryParameter("PromotionNo", promotionNo); + } + } + + public String getRegistrantName() { + return this.registrantName; + } + + public void setRegistrantName(String registrantName) { + this.registrantName = registrantName; + if(registrantName != null){ + putQueryParameter("RegistrantName", registrantName); + } + } + + public Boolean getUsePromotion() { + return this.usePromotion; + } + + public void setUsePromotion(Boolean usePromotion) { + this.usePromotion = usePromotion; + if(usePromotion != null){ + putQueryParameter("UsePromotion", usePromotion.toString()); + } + } + + public Integer getSubscriptionDuration() { + return this.subscriptionDuration; + } + + public void setSubscriptionDuration(Integer subscriptionDuration) { + this.subscriptionDuration = subscriptionDuration; + if(subscriptionDuration != null){ + putQueryParameter("SubscriptionDuration", subscriptionDuration.toString()); + } + } + + public Boolean getPermitPremiumActivation() { + return this.permitPremiumActivation; + } + + public void setPermitPremiumActivation(Boolean permitPremiumActivation) { + this.permitPremiumActivation = permitPremiumActivation; + if(permitPremiumActivation != null){ + putQueryParameter("PermitPremiumActivation", permitPremiumActivation.toString()); + } + } + + public String getCity() { + return this.city; + } + + public void setCity(String city) { + this.city = city; + if(city != null){ + putQueryParameter("City", city); + } + } + + public Long getRegistrantProfileId() { + return this.registrantProfileId; + } + + public void setRegistrantProfileId(Long registrantProfileId) { + this.registrantProfileId = registrantProfileId; + if(registrantProfileId != null){ + putQueryParameter("RegistrantProfileId", registrantProfileId.toString()); + } + } + + public Boolean getAliyunDns() { + return this.aliyunDns; + } + + public void setAliyunDns(Boolean aliyunDns) { + this.aliyunDns = aliyunDns; + if(aliyunDns != null){ + putQueryParameter("AliyunDns", aliyunDns.toString()); + } + } + + public String getZhRegistrantName() { + return this.zhRegistrantName; + } + + public void setZhRegistrantName(String zhRegistrantName) { + this.zhRegistrantName = zhRegistrantName; + if(zhRegistrantName != null){ + putQueryParameter("ZhRegistrantName", zhRegistrantName); + } + } + + public String getPostalCode() { + return this.postalCode; + } + + public void setPostalCode(String postalCode) { + this.postalCode = postalCode; + if(postalCode != null){ + putQueryParameter("PostalCode", postalCode); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + if(email != null){ + putQueryParameter("Email", email); + } + } + + public String getZhRegistrantOrganization() { + return this.zhRegistrantOrganization; + } + + public void setZhRegistrantOrganization(String zhRegistrantOrganization) { + this.zhRegistrantOrganization = zhRegistrantOrganization; + if(zhRegistrantOrganization != null){ + putQueryParameter("ZhRegistrantOrganization", zhRegistrantOrganization); + } + } + + public String getAddress() { + return this.address; + } + + public void setAddress(String address) { + this.address = address; + if(address != null){ + putQueryParameter("Address", address); + } + } + + public String getTelArea() { + return this.telArea; + } + + public void setTelArea(String telArea) { + this.telArea = telArea; + if(telArea != null){ + putQueryParameter("TelArea", telArea); + } + } + + public String getRegistrantType() { + return this.registrantType; + } + + public void setRegistrantType(String registrantType) { + this.registrantType = registrantType; + if(registrantType != null){ + putQueryParameter("RegistrantType", registrantType); + } + } + + public Boolean getTrademarkDomainActivation() { + return this.trademarkDomainActivation; + } + + public void setTrademarkDomainActivation(Boolean trademarkDomainActivation) { + this.trademarkDomainActivation = trademarkDomainActivation; + if(trademarkDomainActivation != null){ + putQueryParameter("TrademarkDomainActivation", trademarkDomainActivation.toString()); + } + } + + public Boolean getUseCoupon() { + return this.useCoupon; + } + + public void setUseCoupon(Boolean useCoupon) { + this.useCoupon = useCoupon; + if(useCoupon != null){ + putQueryParameter("UseCoupon", useCoupon.toString()); + } + } + + public Boolean getEnableDomainProxy() { + return this.enableDomainProxy; + } + + public void setEnableDomainProxy(Boolean enableDomainProxy) { + this.enableDomainProxy = enableDomainProxy; + if(enableDomainProxy != null){ + putQueryParameter("EnableDomainProxy", enableDomainProxy.toString()); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + @Override + public Class getResponseClass() { + return SaveSingleTaskForCreatingOrderActivateResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderActivateResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderActivateResponse.java new file mode 100644 index 0000000000..24badf022e --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderActivateResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForCreatingOrderActivateResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForCreatingOrderActivateResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForCreatingOrderActivateResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForCreatingOrderActivateResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderRedeemRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderRedeemRequest.java new file mode 100644 index 0000000000..5503739d7a --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderRedeemRequest.java @@ -0,0 +1,145 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForCreatingOrderRedeemRequest extends RpcAcsRequest { + + + private String domainName; + + private String couponNo; + + private Boolean useCoupon; + + private String promotionNo; + + private Long currentExpirationDate; + + private String userClientIp; + + private String lang; + + private Boolean usePromotion; + public SaveSingleTaskForCreatingOrderRedeemRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForCreatingOrderRedeem", "domain"); + 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 getCouponNo() { + return this.couponNo; + } + + public void setCouponNo(String couponNo) { + this.couponNo = couponNo; + if(couponNo != null){ + putQueryParameter("CouponNo", couponNo); + } + } + + public Boolean getUseCoupon() { + return this.useCoupon; + } + + public void setUseCoupon(Boolean useCoupon) { + this.useCoupon = useCoupon; + if(useCoupon != null){ + putQueryParameter("UseCoupon", useCoupon.toString()); + } + } + + public String getPromotionNo() { + return this.promotionNo; + } + + public void setPromotionNo(String promotionNo) { + this.promotionNo = promotionNo; + if(promotionNo != null){ + putQueryParameter("PromotionNo", promotionNo); + } + } + + public Long getCurrentExpirationDate() { + return this.currentExpirationDate; + } + + public void setCurrentExpirationDate(Long currentExpirationDate) { + this.currentExpirationDate = currentExpirationDate; + if(currentExpirationDate != null){ + putQueryParameter("CurrentExpirationDate", currentExpirationDate.toString()); + } + } + + 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 Boolean getUsePromotion() { + return this.usePromotion; + } + + public void setUsePromotion(Boolean usePromotion) { + this.usePromotion = usePromotion; + if(usePromotion != null){ + putQueryParameter("UsePromotion", usePromotion.toString()); + } + } + + @Override + public Class getResponseClass() { + return SaveSingleTaskForCreatingOrderRedeemResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderRedeemResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderRedeemResponse.java new file mode 100644 index 0000000000..7746a350dd --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderRedeemResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForCreatingOrderRedeemResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForCreatingOrderRedeemResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForCreatingOrderRedeemResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForCreatingOrderRedeemResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderRenewRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderRenewRequest.java new file mode 100644 index 0000000000..376e5cfbd0 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderRenewRequest.java @@ -0,0 +1,158 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForCreatingOrderRenewRequest extends RpcAcsRequest { + + + private Integer subscriptionDuration; + + private String couponNo; + + private Long currentExpirationDate; + + private String lang; + + private String domainName; + + private Boolean useCoupon; + + private String promotionNo; + + private String userClientIp; + + private Boolean usePromotion; + public SaveSingleTaskForCreatingOrderRenewRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForCreatingOrderRenew", "domain"); + 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 getSubscriptionDuration() { + return this.subscriptionDuration; + } + + public void setSubscriptionDuration(Integer subscriptionDuration) { + this.subscriptionDuration = subscriptionDuration; + if(subscriptionDuration != null){ + putQueryParameter("SubscriptionDuration", subscriptionDuration.toString()); + } + } + + public String getCouponNo() { + return this.couponNo; + } + + public void setCouponNo(String couponNo) { + this.couponNo = couponNo; + if(couponNo != null){ + putQueryParameter("CouponNo", couponNo); + } + } + + public Long getCurrentExpirationDate() { + return this.currentExpirationDate; + } + + public void setCurrentExpirationDate(Long currentExpirationDate) { + this.currentExpirationDate = currentExpirationDate; + if(currentExpirationDate != null){ + putQueryParameter("CurrentExpirationDate", currentExpirationDate.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 Boolean getUseCoupon() { + return this.useCoupon; + } + + public void setUseCoupon(Boolean useCoupon) { + this.useCoupon = useCoupon; + if(useCoupon != null){ + putQueryParameter("UseCoupon", useCoupon.toString()); + } + } + + public String getPromotionNo() { + return this.promotionNo; + } + + public void setPromotionNo(String promotionNo) { + this.promotionNo = promotionNo; + if(promotionNo != null){ + putQueryParameter("PromotionNo", promotionNo); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public Boolean getUsePromotion() { + return this.usePromotion; + } + + public void setUsePromotion(Boolean usePromotion) { + this.usePromotion = usePromotion; + if(usePromotion != null){ + putQueryParameter("UsePromotion", usePromotion.toString()); + } + } + + @Override + public Class getResponseClass() { + return SaveSingleTaskForCreatingOrderRenewResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderRenewResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderRenewResponse.java new file mode 100644 index 0000000000..609f3feac8 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderRenewResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForCreatingOrderRenewResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForCreatingOrderRenewResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForCreatingOrderRenewResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForCreatingOrderRenewResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderTransferRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderTransferRequest.java new file mode 100644 index 0000000000..036e599766 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderTransferRequest.java @@ -0,0 +1,171 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForCreatingOrderTransferRequest extends RpcAcsRequest { + + + private Long registrantProfileId; + + private String couponNo; + + private String lang; + + private String domainName; + + private Boolean useCoupon; + + private Boolean permitPremiumTransfer; + + private String promotionNo; + + private String authorizationCode; + + private String userClientIp; + + private Boolean usePromotion; + public SaveSingleTaskForCreatingOrderTransferRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForCreatingOrderTransfer", "domain"); + 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 getRegistrantProfileId() { + return this.registrantProfileId; + } + + public void setRegistrantProfileId(Long registrantProfileId) { + this.registrantProfileId = registrantProfileId; + if(registrantProfileId != null){ + putQueryParameter("RegistrantProfileId", registrantProfileId.toString()); + } + } + + public String getCouponNo() { + return this.couponNo; + } + + public void setCouponNo(String couponNo) { + this.couponNo = couponNo; + if(couponNo != null){ + putQueryParameter("CouponNo", couponNo); + } + } + + 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 Boolean getUseCoupon() { + return this.useCoupon; + } + + public void setUseCoupon(Boolean useCoupon) { + this.useCoupon = useCoupon; + if(useCoupon != null){ + putQueryParameter("UseCoupon", useCoupon.toString()); + } + } + + public Boolean getPermitPremiumTransfer() { + return this.permitPremiumTransfer; + } + + public void setPermitPremiumTransfer(Boolean permitPremiumTransfer) { + this.permitPremiumTransfer = permitPremiumTransfer; + if(permitPremiumTransfer != null){ + putQueryParameter("PermitPremiumTransfer", permitPremiumTransfer.toString()); + } + } + + public String getPromotionNo() { + return this.promotionNo; + } + + public void setPromotionNo(String promotionNo) { + this.promotionNo = promotionNo; + if(promotionNo != null){ + putQueryParameter("PromotionNo", promotionNo); + } + } + + public String getAuthorizationCode() { + return this.authorizationCode; + } + + public void setAuthorizationCode(String authorizationCode) { + this.authorizationCode = authorizationCode; + if(authorizationCode != null){ + putQueryParameter("AuthorizationCode", authorizationCode); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public Boolean getUsePromotion() { + return this.usePromotion; + } + + public void setUsePromotion(Boolean usePromotion) { + this.usePromotion = usePromotion; + if(usePromotion != null){ + putQueryParameter("UsePromotion", usePromotion.toString()); + } + } + + @Override + public Class getResponseClass() { + return SaveSingleTaskForCreatingOrderTransferResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderTransferResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderTransferResponse.java new file mode 100644 index 0000000000..d70281725b --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForCreatingOrderTransferResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForCreatingOrderTransferResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForCreatingOrderTransferResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForCreatingOrderTransferResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForCreatingOrderTransferResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDeletingDSRecordRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDeletingDSRecordRequest.java new file mode 100644 index 0000000000..05589d3f9b --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDeletingDSRecordRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForDeletingDSRecordRequest extends RpcAcsRequest { + + + private Integer keyTag; + + private String domainName; + + private String userClientIp; + + private String lang; + public SaveSingleTaskForDeletingDSRecordRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForDeletingDSRecord", "domain"); + 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 getKeyTag() { + return this.keyTag; + } + + public void setKeyTag(Integer keyTag) { + this.keyTag = keyTag; + if(keyTag != null){ + putQueryParameter("KeyTag", keyTag.toString()); + } + } + + 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 getResponseClass() { + return SaveSingleTaskForDeletingDSRecordResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDeletingDSRecordResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDeletingDSRecordResponse.java new file mode 100644 index 0000000000..3c900572fd --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDeletingDSRecordResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForDeletingDSRecordResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForDeletingDSRecordResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForDeletingDSRecordResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForDeletingDSRecordResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDeletingDnsHostRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDeletingDnsHostRequest.java new file mode 100644 index 0000000000..011816e4fb --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDeletingDnsHostRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForDeletingDnsHostRequest extends RpcAcsRequest { + + + private String instanceId; + + private String dnsName; + + private String userClientIp; + + private String lang; + public SaveSingleTaskForDeletingDnsHostRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForDeletingDnsHost", "domain"); + setMethod(MethodType.POST); + try { + com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); + com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); + } catch (Exception e) {} + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + if(instanceId != null){ + putQueryParameter("InstanceId", instanceId); + } + } + + public String getDnsName() { + return this.dnsName; + } + + public void setDnsName(String dnsName) { + this.dnsName = dnsName; + if(dnsName != null){ + putQueryParameter("DnsName", dnsName); + } + } + + 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 getResponseClass() { + return SaveSingleTaskForDeletingDnsHostResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDeletingDnsHostResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDeletingDnsHostResponse.java new file mode 100644 index 0000000000..62dcfbae92 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDeletingDnsHostResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForDeletingDnsHostResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForDeletingDnsHostResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForDeletingDnsHostResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForDeletingDnsHostResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDisassociatingEnsRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDisassociatingEnsRequest.java new file mode 100644 index 0000000000..76e4f1629d --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDisassociatingEnsRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForDisassociatingEnsRequest extends RpcAcsRequest { + + + private String domainName; + + private String userClientIp; + + private String lang; + public SaveSingleTaskForDisassociatingEnsRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForDisassociatingEns", "domain"); + 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 getResponseClass() { + return SaveSingleTaskForDisassociatingEnsResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDisassociatingEnsResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDisassociatingEnsResponse.java new file mode 100644 index 0000000000..ab273eed94 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDisassociatingEnsResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForDisassociatingEnsResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForDisassociatingEnsResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForDisassociatingEnsResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForDisassociatingEnsResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDomainNameProxyServiceRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDomainNameProxyServiceRequest.java new file mode 100644 index 0000000000..4682cc0c33 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDomainNameProxyServiceRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForDomainNameProxyServiceRequest extends RpcAcsRequest { + + + private String domainName; + + private String userClientIp; + + private String lang; + + private Boolean status; + public SaveSingleTaskForDomainNameProxyServiceRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForDomainNameProxyService", "domain"); + 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); + } + } + + public Boolean getStatus() { + return this.status; + } + + public void setStatus(Boolean status) { + this.status = status; + if(status != null){ + putQueryParameter("Status", status.toString()); + } + } + + @Override + public Class getResponseClass() { + return SaveSingleTaskForDomainNameProxyServiceResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDomainNameProxyServiceResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDomainNameProxyServiceResponse.java new file mode 100644 index 0000000000..67699d293c --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForDomainNameProxyServiceResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForDomainNameProxyServiceResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForDomainNameProxyServiceResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForDomainNameProxyServiceResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForDomainNameProxyServiceResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForGenerateDomainCertificateRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForGenerateDomainCertificateRequest.java new file mode 100644 index 0000000000..8e49c22826 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForGenerateDomainCertificateRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForGenerateDomainCertificateRequest extends RpcAcsRequest { + + + private String domainName; + + private String userClientIp; + + private String lang; + public SaveSingleTaskForGenerateDomainCertificateRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForGenerateDomainCertificate", "domain"); + 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 getResponseClass() { + return SaveSingleTaskForGenerateDomainCertificateResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForGenerateDomainCertificateResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForGenerateDomainCertificateResponse.java new file mode 100644 index 0000000000..7317a935d8 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForGenerateDomainCertificateResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForGenerateDomainCertificateResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForGenerateDomainCertificateResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForGenerateDomainCertificateResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForGenerateDomainCertificateResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForModifyingDSRecordRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForModifyingDSRecordRequest.java new file mode 100644 index 0000000000..792d01e78e --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForModifyingDSRecordRequest.java @@ -0,0 +1,132 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForModifyingDSRecordRequest extends RpcAcsRequest { + + + private Integer keyTag; + + private String domainName; + + private String userClientIp; + + private Integer digestType; + + private String digest; + + private String lang; + + private Integer algorithm; + public SaveSingleTaskForModifyingDSRecordRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForModifyingDSRecord", "domain"); + 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 getKeyTag() { + return this.keyTag; + } + + public void setKeyTag(Integer keyTag) { + this.keyTag = keyTag; + if(keyTag != null){ + putQueryParameter("KeyTag", keyTag.toString()); + } + } + + 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 Integer getDigestType() { + return this.digestType; + } + + public void setDigestType(Integer digestType) { + this.digestType = digestType; + if(digestType != null){ + putQueryParameter("DigestType", digestType.toString()); + } + } + + public String getDigest() { + return this.digest; + } + + public void setDigest(String digest) { + this.digest = digest; + if(digest != null){ + putQueryParameter("Digest", digest); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + public Integer getAlgorithm() { + return this.algorithm; + } + + public void setAlgorithm(Integer algorithm) { + this.algorithm = algorithm; + if(algorithm != null){ + putQueryParameter("Algorithm", algorithm.toString()); + } + } + + @Override + public Class getResponseClass() { + return SaveSingleTaskForModifyingDSRecordResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForModifyingDSRecordResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForModifyingDSRecordResponse.java new file mode 100644 index 0000000000..8ccb1a0183 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForModifyingDSRecordResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForModifyingDSRecordResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForModifyingDSRecordResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForModifyingDSRecordResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForModifyingDSRecordResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForModifyingDnsHostRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForModifyingDnsHostRequest.java new file mode 100644 index 0000000000..6fb097d49c --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForModifyingDnsHostRequest.java @@ -0,0 +1,109 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForModifyingDnsHostRequest extends RpcAcsRequest { + + + private List ips; + + private String instanceId; + + private String dnsName; + + private String userClientIp; + + private String lang; + public SaveSingleTaskForModifyingDnsHostRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForModifyingDnsHost", "domain"); + 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 getIps() { + return this.ips; + } + + public void setIps(List ips) { + this.ips = ips; + if (ips != null) { + for (int i = 0; i < ips.size(); i++) { + putQueryParameter("Ip." + (i + 1) , ips.get(i)); + } + } + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + if(instanceId != null){ + putQueryParameter("InstanceId", instanceId); + } + } + + public String getDnsName() { + return this.dnsName; + } + + public void setDnsName(String dnsName) { + this.dnsName = dnsName; + if(dnsName != null){ + putQueryParameter("DnsName", dnsName); + } + } + + 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 getResponseClass() { + return SaveSingleTaskForModifyingDnsHostResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForModifyingDnsHostResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForModifyingDnsHostResponse.java new file mode 100644 index 0000000000..183fb9b965 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForModifyingDnsHostResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForModifyingDnsHostResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForModifyingDnsHostResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForModifyingDnsHostResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForModifyingDnsHostResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForQueryingTransferAuthorizationCodeRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForQueryingTransferAuthorizationCodeRequest.java new file mode 100644 index 0000000000..d06dea7d11 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForQueryingTransferAuthorizationCodeRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForQueryingTransferAuthorizationCodeRequest extends RpcAcsRequest { + + + private String domainName; + + private String userClientIp; + + private String lang; + public SaveSingleTaskForQueryingTransferAuthorizationCodeRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForQueryingTransferAuthorizationCode", "domain"); + 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 getResponseClass() { + return SaveSingleTaskForQueryingTransferAuthorizationCodeResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForQueryingTransferAuthorizationCodeResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForQueryingTransferAuthorizationCodeResponse.java new file mode 100644 index 0000000000..94d728354b --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForQueryingTransferAuthorizationCodeResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForQueryingTransferAuthorizationCodeResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForQueryingTransferAuthorizationCodeResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForQueryingTransferAuthorizationCodeResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForQueryingTransferAuthorizationCodeResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/UpdatePartnerReservePriceRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForReserveDropListDomainRequest.java similarity index 50% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/UpdatePartnerReservePriceRequest.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForReserveDropListDomainRequest.java index eab37ad54b..0fb371afdc 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/UpdatePartnerReservePriceRequest.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForReserveDropListDomainRequest.java @@ -12,9 +12,10 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.ProtocolType; import com.aliyuncs.http.MethodType; import com.aliyuncs.domain.Endpoint; @@ -22,18 +23,19 @@ * @author auto create * @version */ -public class UpdatePartnerReservePriceRequest extends RpcAcsRequest { +public class SaveSingleTaskForReserveDropListDomainRequest extends RpcAcsRequest { - private String partnerType; + private String dns2; - private String domainName; + private String dns1; - private Integer biddingId; + private String domainName; - private Double reservePrice; - public UpdatePartnerReservePriceRequest() { - super("Domain", "2018-02-08", "UpdatePartnerReservePrice", "domain"); + private String contactTemplateId; + public SaveSingleTaskForReserveDropListDomainRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForReserveDropListDomain", "domain"); + setProtocol(ProtocolType.HTTPS); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); @@ -41,53 +43,53 @@ public UpdatePartnerReservePriceRequest() { } catch (Exception e) {} } - public String getPartnerType() { - return this.partnerType; + public String getDns2() { + return this.dns2; } - public void setPartnerType(String partnerType) { - this.partnerType = partnerType; - if(partnerType != null){ - putBodyParameter("PartnerType", partnerType); + public void setDns2(String dns2) { + this.dns2 = dns2; + if(dns2 != null){ + putQueryParameter("Dns2", dns2); } } - public String getDomainName() { - return this.domainName; + public String getDns1() { + return this.dns1; } - public void setDomainName(String domainName) { - this.domainName = domainName; - if(domainName != null){ - putBodyParameter("DomainName", domainName); + public void setDns1(String dns1) { + this.dns1 = dns1; + if(dns1 != null){ + putQueryParameter("Dns1", dns1); } } - public Integer getBiddingId() { - return this.biddingId; + public String getDomainName() { + return this.domainName; } - public void setBiddingId(Integer biddingId) { - this.biddingId = biddingId; - if(biddingId != null){ - putBodyParameter("BiddingId", biddingId.toString()); + public void setDomainName(String domainName) { + this.domainName = domainName; + if(domainName != null){ + putQueryParameter("DomainName", domainName); } } - public Double getReservePrice() { - return this.reservePrice; + public String getContactTemplateId() { + return this.contactTemplateId; } - public void setReservePrice(Double reservePrice) { - this.reservePrice = reservePrice; - if(reservePrice != null){ - putBodyParameter("ReservePrice", reservePrice.toString()); + public void setContactTemplateId(String contactTemplateId) { + this.contactTemplateId = contactTemplateId; + if(contactTemplateId != null){ + putQueryParameter("ContactTemplateId", contactTemplateId); } } @Override - public Class getResponseClass() { - return UpdatePartnerReservePriceResponse.class; + public Class getResponseClass() { + return SaveSingleTaskForReserveDropListDomainResponse.class; } } diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForReserveDropListDomainResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForReserveDropListDomainResponse.java new file mode 100644 index 0000000000..468e1de5d6 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForReserveDropListDomainResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForReserveDropListDomainResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForReserveDropListDomainResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForReserveDropListDomainResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForReserveDropListDomainResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForSaveArtExtensionRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForSaveArtExtensionRequest.java new file mode 100644 index 0000000000..0c699a9e37 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForSaveArtExtensionRequest.java @@ -0,0 +1,197 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForSaveArtExtensionRequest extends RpcAcsRequest { + + + private String subject; + + private String title; + + private String dateOrPeriod; + + private String reference; + + private String features; + + private String inscriptionsAndMarkings; + + private String objectType; + + private String lang; + + private String domainName; + + private String maker; + + private String materialsAndTechniques; + + private String dimensions; + public SaveSingleTaskForSaveArtExtensionRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForSaveArtExtension", "domain"); + 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 getSubject() { + return this.subject; + } + + public void setSubject(String subject) { + this.subject = subject; + if(subject != null){ + putQueryParameter("Subject", subject); + } + } + + public String getTitle() { + return this.title; + } + + public void setTitle(String title) { + this.title = title; + if(title != null){ + putQueryParameter("Title", title); + } + } + + public String getDateOrPeriod() { + return this.dateOrPeriod; + } + + public void setDateOrPeriod(String dateOrPeriod) { + this.dateOrPeriod = dateOrPeriod; + if(dateOrPeriod != null){ + putQueryParameter("DateOrPeriod", dateOrPeriod); + } + } + + public String getReference() { + return this.reference; + } + + public void setReference(String reference) { + this.reference = reference; + if(reference != null){ + putQueryParameter("Reference", reference); + } + } + + public String getFeatures() { + return this.features; + } + + public void setFeatures(String features) { + this.features = features; + if(features != null){ + putQueryParameter("Features", features); + } + } + + public String getInscriptionsAndMarkings() { + return this.inscriptionsAndMarkings; + } + + public void setInscriptionsAndMarkings(String inscriptionsAndMarkings) { + this.inscriptionsAndMarkings = inscriptionsAndMarkings; + if(inscriptionsAndMarkings != null){ + putQueryParameter("InscriptionsAndMarkings", inscriptionsAndMarkings); + } + } + + public String getObjectType() { + return this.objectType; + } + + public void setObjectType(String objectType) { + this.objectType = objectType; + if(objectType != null){ + putQueryParameter("ObjectType", objectType); + } + } + + 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 getMaker() { + return this.maker; + } + + public void setMaker(String maker) { + this.maker = maker; + if(maker != null){ + putQueryParameter("Maker", maker); + } + } + + public String getMaterialsAndTechniques() { + return this.materialsAndTechniques; + } + + public void setMaterialsAndTechniques(String materialsAndTechniques) { + this.materialsAndTechniques = materialsAndTechniques; + if(materialsAndTechniques != null){ + putQueryParameter("MaterialsAndTechniques", materialsAndTechniques); + } + } + + public String getDimensions() { + return this.dimensions; + } + + public void setDimensions(String dimensions) { + this.dimensions = dimensions; + if(dimensions != null){ + putQueryParameter("Dimensions", dimensions); + } + } + + @Override + public Class getResponseClass() { + return SaveSingleTaskForSaveArtExtensionResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForSaveArtExtensionResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForSaveArtExtensionResponse.java new file mode 100644 index 0000000000..5bb3dbed42 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForSaveArtExtensionResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForSaveArtExtensionResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForSaveArtExtensionResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForSaveArtExtensionResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForSaveArtExtensionResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForSynchronizingDSRecordRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForSynchronizingDSRecordRequest.java new file mode 100644 index 0000000000..ccb11b1ca5 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForSynchronizingDSRecordRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForSynchronizingDSRecordRequest extends RpcAcsRequest { + + + private String domainName; + + private String userClientIp; + + private String lang; + public SaveSingleTaskForSynchronizingDSRecordRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForSynchronizingDSRecord", "domain"); + 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 getResponseClass() { + return SaveSingleTaskForSynchronizingDSRecordResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForSynchronizingDSRecordResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForSynchronizingDSRecordResponse.java new file mode 100644 index 0000000000..b30907ee7f --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForSynchronizingDSRecordResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForSynchronizingDSRecordResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForSynchronizingDSRecordResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForSynchronizingDSRecordResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForSynchronizingDSRecordResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForSynchronizingDnsHostRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForSynchronizingDnsHostRequest.java new file mode 100644 index 0000000000..2de2f414b3 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForSynchronizingDnsHostRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForSynchronizingDnsHostRequest extends RpcAcsRequest { + + + private String instanceId; + + private String userClientIp; + + private String lang; + public SaveSingleTaskForSynchronizingDnsHostRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForSynchronizingDnsHost", "domain"); + setMethod(MethodType.POST); + try { + com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); + com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); + } catch (Exception e) {} + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + if(instanceId != null){ + putQueryParameter("InstanceId", instanceId); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return SaveSingleTaskForSynchronizingDnsHostResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForSynchronizingDnsHostResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForSynchronizingDnsHostResponse.java new file mode 100644 index 0000000000..be6a94704f --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForSynchronizingDnsHostResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForSynchronizingDnsHostResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForSynchronizingDnsHostResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForSynchronizingDnsHostResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForSynchronizingDnsHostResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForTransferOutByAuthorizationCodeRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForTransferOutByAuthorizationCodeRequest.java new file mode 100644 index 0000000000..c665af4fba --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForTransferOutByAuthorizationCodeRequest.java @@ -0,0 +1,95 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.ProtocolType; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForTransferOutByAuthorizationCodeRequest extends RpcAcsRequest { + + + private String domainName; + + private String authorizationCode; + + private String userClientIp; + + private String lang; + public SaveSingleTaskForTransferOutByAuthorizationCodeRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForTransferOutByAuthorizationCode", "domain"); + setProtocol(ProtocolType.HTTPS); + 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 getAuthorizationCode() { + return this.authorizationCode; + } + + public void setAuthorizationCode(String authorizationCode) { + this.authorizationCode = authorizationCode; + if(authorizationCode != null){ + putQueryParameter("AuthorizationCode", authorizationCode); + } + } + + 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 getResponseClass() { + return SaveSingleTaskForTransferOutByAuthorizationCodeResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForTransferOutByAuthorizationCodeResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForTransferOutByAuthorizationCodeResponse.java new file mode 100644 index 0000000000..faf2efc42b --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForTransferOutByAuthorizationCodeResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForTransferOutByAuthorizationCodeResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForTransferOutByAuthorizationCodeResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForTransferOutByAuthorizationCodeResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForTransferOutByAuthorizationCodeResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForTransferProhibitionLockRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForTransferProhibitionLockRequest.java new file mode 100644 index 0000000000..e063dbbcc0 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForTransferProhibitionLockRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForTransferProhibitionLockRequest extends RpcAcsRequest { + + + private String domainName; + + private String userClientIp; + + private String lang; + + private Boolean status; + public SaveSingleTaskForTransferProhibitionLockRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForTransferProhibitionLock", "domain"); + 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); + } + } + + public Boolean getStatus() { + return this.status; + } + + public void setStatus(Boolean status) { + this.status = status; + if(status != null){ + putQueryParameter("Status", status.toString()); + } + } + + @Override + public Class getResponseClass() { + return SaveSingleTaskForTransferProhibitionLockResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForTransferProhibitionLockResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForTransferProhibitionLockResponse.java new file mode 100644 index 0000000000..ac7ddf7b3f --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForTransferProhibitionLockResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForTransferProhibitionLockResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForTransferProhibitionLockResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForTransferProhibitionLockResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForTransferProhibitionLockResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForUpdateProhibitionLockRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForUpdateProhibitionLockRequest.java new file mode 100644 index 0000000000..62b1fe0eea --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForUpdateProhibitionLockRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForUpdateProhibitionLockRequest extends RpcAcsRequest { + + + private String domainName; + + private String userClientIp; + + private String lang; + + private Boolean status; + public SaveSingleTaskForUpdateProhibitionLockRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForUpdateProhibitionLock", "domain"); + 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); + } + } + + public Boolean getStatus() { + return this.status; + } + + public void setStatus(Boolean status) { + this.status = status; + if(status != null){ + putQueryParameter("Status", status.toString()); + } + } + + @Override + public Class getResponseClass() { + return SaveSingleTaskForUpdateProhibitionLockResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForUpdateProhibitionLockResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForUpdateProhibitionLockResponse.java new file mode 100644 index 0000000000..068ae7e700 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForUpdateProhibitionLockResponse.java @@ -0,0 +1,51 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForUpdateProhibitionLockResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForUpdateProhibitionLockResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForUpdateProhibitionLockResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForUpdateProhibitionLockResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForUpdatingContactInfoRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForUpdatingContactInfoRequest.java new file mode 100644 index 0000000000..a9a2a7d3d0 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForUpdatingContactInfoRequest.java @@ -0,0 +1,132 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForUpdatingContactInfoRequest extends RpcAcsRequest { + + + private String contactType; + + private String domainName; + + private Long registrantProfileId; + + private Boolean addTransferLock; + + private String instanceId; + + private String userClientIp; + + private String lang; + public SaveSingleTaskForUpdatingContactInfoRequest() { + super("Domain", "2018-01-29", "SaveSingleTaskForUpdatingContactInfo", "domain"); + 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 getContactType() { + return this.contactType; + } + + public void setContactType(String contactType) { + this.contactType = contactType; + if(contactType != null){ + putQueryParameter("ContactType", contactType); + } + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + if(domainName != null){ + putQueryParameter("DomainName", domainName); + } + } + + public Long getRegistrantProfileId() { + return this.registrantProfileId; + } + + public void setRegistrantProfileId(Long registrantProfileId) { + this.registrantProfileId = registrantProfileId; + if(registrantProfileId != null){ + putQueryParameter("RegistrantProfileId", registrantProfileId.toString()); + } + } + + public Boolean getAddTransferLock() { + return this.addTransferLock; + } + + public void setAddTransferLock(Boolean addTransferLock) { + this.addTransferLock = addTransferLock; + if(addTransferLock != null){ + putQueryParameter("AddTransferLock", addTransferLock.toString()); + } + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + if(instanceId != null){ + putQueryParameter("InstanceId", instanceId); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return SaveSingleTaskForUpdatingContactInfoResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForUpdatingContactInfoResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForUpdatingContactInfoResponse.java new file mode 100644 index 0000000000..298f9dd703 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveSingleTaskForUpdatingContactInfoResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveSingleTaskForUpdatingContactInfoResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveSingleTaskForUpdatingContactInfoResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveSingleTaskForUpdatingContactInfoResponse getInstance(UnmarshallerContext context) { + return SaveSingleTaskForUpdatingContactInfoResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForSubmittingDomainDeleteRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForSubmittingDomainDeleteRequest.java new file mode 100644 index 0000000000..8a6916fe83 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForSubmittingDomainDeleteRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveTaskForSubmittingDomainDeleteRequest extends RpcAcsRequest { + + + private String instanceId; + + private String userClientIp; + + private String lang; + public SaveTaskForSubmittingDomainDeleteRequest() { + super("Domain", "2018-01-29", "SaveTaskForSubmittingDomainDelete", "domain"); + setMethod(MethodType.POST); + try { + com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); + com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); + } catch (Exception e) {} + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + if(instanceId != null){ + putQueryParameter("InstanceId", instanceId); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return SaveTaskForSubmittingDomainDeleteResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForSubmittingDomainDeleteResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForSubmittingDomainDeleteResponse.java new file mode 100644 index 0000000000..dd68e8cd24 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForSubmittingDomainDeleteResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveTaskForSubmittingDomainDeleteResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveTaskForSubmittingDomainDeleteResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveTaskForSubmittingDomainDeleteResponse getInstance(UnmarshallerContext context) { + return SaveTaskForSubmittingDomainDeleteResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialRequest.java new file mode 100644 index 0000000000..9c6583127d --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialRequest.java @@ -0,0 +1,122 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialRequest extends RpcAcsRequest { + + + private String identityCredentialType; + + private String identityCredential; + + private List domainNames; + + private String userClientIp; + + private String lang; + + private String identityCredentialNo; + public SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialRequest() { + super("Domain", "2018-01-29", "SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredential", "domain"); + 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 getIdentityCredentialType() { + return this.identityCredentialType; + } + + public void setIdentityCredentialType(String identityCredentialType) { + this.identityCredentialType = identityCredentialType; + if(identityCredentialType != null){ + putQueryParameter("IdentityCredentialType", identityCredentialType); + } + } + + public String getIdentityCredential() { + return this.identityCredential; + } + + public void setIdentityCredential(String identityCredential) { + this.identityCredential = identityCredential; + if(identityCredential != null){ + putBodyParameter("IdentityCredential", identityCredential); + } + } + + public List getDomainNames() { + return this.domainNames; + } + + public void setDomainNames(List domainNames) { + this.domainNames = domainNames; + if (domainNames != null) { + for (int i = 0; i < domainNames.size(); i++) { + putQueryParameter("DomainName." + (i + 1) , domainNames.get(i)); + } + } + } + + 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 getIdentityCredentialNo() { + return this.identityCredentialNo; + } + + public void setIdentityCredentialNo(String identityCredentialNo) { + this.identityCredentialNo = identityCredentialNo; + if(identityCredentialNo != null){ + putQueryParameter("IdentityCredentialNo", identityCredentialNo); + } + } + + @Override + public Class getResponseClass() { + return SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialResponse.java new file mode 100644 index 0000000000..d1ff9f67aa --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialResponse getInstance(UnmarshallerContext context) { + return SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDRequest.java new file mode 100644 index 0000000000..80a2b261cf --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDRequest.java @@ -0,0 +1,106 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDRequest extends RpcAcsRequest { + + + private String domainName; + + private Long registrantProfileId; + + private String instanceId; + + private String userClientIp; + + private String lang; + public SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDRequest() { + super("Domain", "2018-01-29", "SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileID", "domain"); + setMethod(MethodType.POST); + try { + com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); + com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); + } catch (Exception e) {} + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + if(domainName != null){ + putQueryParameter("DomainName", domainName); + } + } + + public Long getRegistrantProfileId() { + return this.registrantProfileId; + } + + public void setRegistrantProfileId(Long registrantProfileId) { + this.registrantProfileId = registrantProfileId; + if(registrantProfileId != null){ + putQueryParameter("RegistrantProfileId", registrantProfileId.toString()); + } + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + if(instanceId != null){ + putQueryParameter("InstanceId", instanceId); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDResponse.java new file mode 100644 index 0000000000..5ecf6fdb2a --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDResponse getInstance(UnmarshallerContext context) { + return SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForUpdatingRegistrantInfoByIdentityCredentialRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForUpdatingRegistrantInfoByIdentityCredentialRequest.java new file mode 100644 index 0000000000..f9102cd934 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForUpdatingRegistrantInfoByIdentityCredentialRequest.java @@ -0,0 +1,356 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveTaskForUpdatingRegistrantInfoByIdentityCredentialRequest extends RpcAcsRequest { + + + private String country; + + private String identityCredentialType; + + private String city; + + private String identityCredential; + + private Boolean transferOutProhibited; + + private String zhCity; + + private String telExt; + + private String province; + + private String zhRegistrantName; + + private String postalCode; + + private String lang; + + private String email; + + private String zhRegistrantOrganization; + + private String address; + + private String telArea; + + private String zhAddress; + + private String registrantType; + + private List domainNames; + + private String telephone; + + private String zhProvince; + + private String registrantOrganization; + + private String userClientIp; + + private String identityCredentialNo; + + private String registrantName; + public SaveTaskForUpdatingRegistrantInfoByIdentityCredentialRequest() { + super("Domain", "2018-01-29", "SaveTaskForUpdatingRegistrantInfoByIdentityCredential", "domain"); + 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 getCountry() { + return this.country; + } + + public void setCountry(String country) { + this.country = country; + if(country != null){ + putQueryParameter("Country", country); + } + } + + public String getIdentityCredentialType() { + return this.identityCredentialType; + } + + public void setIdentityCredentialType(String identityCredentialType) { + this.identityCredentialType = identityCredentialType; + if(identityCredentialType != null){ + putQueryParameter("IdentityCredentialType", identityCredentialType); + } + } + + public String getCity() { + return this.city; + } + + public void setCity(String city) { + this.city = city; + if(city != null){ + putQueryParameter("City", city); + } + } + + public String getIdentityCredential() { + return this.identityCredential; + } + + public void setIdentityCredential(String identityCredential) { + this.identityCredential = identityCredential; + if(identityCredential != null){ + putBodyParameter("IdentityCredential", identityCredential); + } + } + + public Boolean getTransferOutProhibited() { + return this.transferOutProhibited; + } + + public void setTransferOutProhibited(Boolean transferOutProhibited) { + this.transferOutProhibited = transferOutProhibited; + if(transferOutProhibited != null){ + putQueryParameter("TransferOutProhibited", transferOutProhibited.toString()); + } + } + + public String getZhCity() { + return this.zhCity; + } + + public void setZhCity(String zhCity) { + this.zhCity = zhCity; + if(zhCity != null){ + putQueryParameter("ZhCity", zhCity); + } + } + + public String getTelExt() { + return this.telExt; + } + + public void setTelExt(String telExt) { + this.telExt = telExt; + if(telExt != null){ + putQueryParameter("TelExt", telExt); + } + } + + public String getProvince() { + return this.province; + } + + public void setProvince(String province) { + this.province = province; + if(province != null){ + putQueryParameter("Province", province); + } + } + + public String getZhRegistrantName() { + return this.zhRegistrantName; + } + + public void setZhRegistrantName(String zhRegistrantName) { + this.zhRegistrantName = zhRegistrantName; + if(zhRegistrantName != null){ + putQueryParameter("ZhRegistrantName", zhRegistrantName); + } + } + + public String getPostalCode() { + return this.postalCode; + } + + public void setPostalCode(String postalCode) { + this.postalCode = postalCode; + if(postalCode != null){ + putQueryParameter("PostalCode", postalCode); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + if(email != null){ + putQueryParameter("Email", email); + } + } + + public String getZhRegistrantOrganization() { + return this.zhRegistrantOrganization; + } + + public void setZhRegistrantOrganization(String zhRegistrantOrganization) { + this.zhRegistrantOrganization = zhRegistrantOrganization; + if(zhRegistrantOrganization != null){ + putQueryParameter("ZhRegistrantOrganization", zhRegistrantOrganization); + } + } + + public String getAddress() { + return this.address; + } + + public void setAddress(String address) { + this.address = address; + if(address != null){ + putQueryParameter("Address", address); + } + } + + public String getTelArea() { + return this.telArea; + } + + public void setTelArea(String telArea) { + this.telArea = telArea; + if(telArea != null){ + putQueryParameter("TelArea", telArea); + } + } + + public String getZhAddress() { + return this.zhAddress; + } + + public void setZhAddress(String zhAddress) { + this.zhAddress = zhAddress; + if(zhAddress != null){ + putQueryParameter("ZhAddress", zhAddress); + } + } + + public String getRegistrantType() { + return this.registrantType; + } + + public void setRegistrantType(String registrantType) { + this.registrantType = registrantType; + if(registrantType != null){ + putQueryParameter("RegistrantType", registrantType); + } + } + + public List getDomainNames() { + return this.domainNames; + } + + public void setDomainNames(List domainNames) { + this.domainNames = domainNames; + if (domainNames != null) { + for (int i = 0; i < domainNames.size(); i++) { + putQueryParameter("DomainName." + (i + 1) , domainNames.get(i)); + } + } + } + + public String getTelephone() { + return this.telephone; + } + + public void setTelephone(String telephone) { + this.telephone = telephone; + if(telephone != null){ + putQueryParameter("Telephone", telephone); + } + } + + public String getZhProvince() { + return this.zhProvince; + } + + public void setZhProvince(String zhProvince) { + this.zhProvince = zhProvince; + if(zhProvince != null){ + putQueryParameter("ZhProvince", zhProvince); + } + } + + public String getRegistrantOrganization() { + return this.registrantOrganization; + } + + public void setRegistrantOrganization(String registrantOrganization) { + this.registrantOrganization = registrantOrganization; + if(registrantOrganization != null){ + putQueryParameter("RegistrantOrganization", registrantOrganization); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getIdentityCredentialNo() { + return this.identityCredentialNo; + } + + public void setIdentityCredentialNo(String identityCredentialNo) { + this.identityCredentialNo = identityCredentialNo; + if(identityCredentialNo != null){ + putQueryParameter("IdentityCredentialNo", identityCredentialNo); + } + } + + public String getRegistrantName() { + return this.registrantName; + } + + public void setRegistrantName(String registrantName) { + this.registrantName = registrantName; + if(registrantName != null){ + putQueryParameter("RegistrantName", registrantName); + } + } + + @Override + public Class getResponseClass() { + return SaveTaskForUpdatingRegistrantInfoByIdentityCredentialResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForUpdatingRegistrantInfoByIdentityCredentialResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForUpdatingRegistrantInfoByIdentityCredentialResponse.java new file mode 100644 index 0000000000..959d606c37 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForUpdatingRegistrantInfoByIdentityCredentialResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveTaskForUpdatingRegistrantInfoByIdentityCredentialResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveTaskForUpdatingRegistrantInfoByIdentityCredentialResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveTaskForUpdatingRegistrantInfoByIdentityCredentialResponse getInstance(UnmarshallerContext context) { + return SaveTaskForUpdatingRegistrantInfoByIdentityCredentialResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDRequest.java new file mode 100644 index 0000000000..d4880abb83 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDRequest.java @@ -0,0 +1,109 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDRequest extends RpcAcsRequest { + + + private Long registrantProfileId; + + private List domainNames; + + private Boolean transferOutProhibited; + + private String userClientIp; + + private String lang; + public SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDRequest() { + super("Domain", "2018-01-29", "SaveTaskForUpdatingRegistrantInfoByRegistrantProfileID", "domain"); + 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 getRegistrantProfileId() { + return this.registrantProfileId; + } + + public void setRegistrantProfileId(Long registrantProfileId) { + this.registrantProfileId = registrantProfileId; + if(registrantProfileId != null){ + putQueryParameter("RegistrantProfileId", registrantProfileId.toString()); + } + } + + public List getDomainNames() { + return this.domainNames; + } + + public void setDomainNames(List domainNames) { + this.domainNames = domainNames; + if (domainNames != null) { + for (int i = 0; i < domainNames.size(); i++) { + putQueryParameter("DomainName." + (i + 1) , domainNames.get(i)); + } + } + } + + public Boolean getTransferOutProhibited() { + return this.transferOutProhibited; + } + + public void setTransferOutProhibited(Boolean transferOutProhibited) { + this.transferOutProhibited = transferOutProhibited; + if(transferOutProhibited != null){ + putQueryParameter("TransferOutProhibited", transferOutProhibited.toString()); + } + } + + 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 getResponseClass() { + return SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDResponse.java new file mode 100644 index 0000000000..49220e28e3 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDResponse.java @@ -0,0 +1,56 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDResponse extends AcsResponse { + + private String requestId; + + private String taskNo; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public String getTaskNo() { + return this.taskNo; + } + + public void setTaskNo(String taskNo) { + this.taskNo = taskNo; + } + + @Override + public SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDResponse getInstance(UnmarshallerContext context) { + return SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ScrollDomainListRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ScrollDomainListRequest.java new file mode 100644 index 0000000000..ca02a68991 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ScrollDomainListRequest.java @@ -0,0 +1,340 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class ScrollDomainListRequest extends RpcAcsRequest { + + + private String productDomainType; + + private String excluded; + + private Integer startLength; + + private String resourceGroupId; + + private Boolean excludedSuffix; + + private Integer pageSize; + + private String lang; + + private Boolean excludedPrefix; + + private String keyWord; + + private Long endExpirationDate; + + private String suffixs; + + private Long startExpirationDate; + + private Integer domainStatus; + + private Long domainGroupId; + + private Boolean keyWordSuffix; + + private String scrollId; + + private Boolean keyWordPrefix; + + private Integer tradeType; + + private Long endRegistrationDate; + + private Integer form; + + private String userClientIp; + + private Long startRegistrationDate; + + private Integer endLength; + public ScrollDomainListRequest() { + super("Domain", "2018-01-29", "ScrollDomainList", "domain"); + 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 getProductDomainType() { + return this.productDomainType; + } + + public void setProductDomainType(String productDomainType) { + this.productDomainType = productDomainType; + if(productDomainType != null){ + putQueryParameter("ProductDomainType", productDomainType); + } + } + + public String getExcluded() { + return this.excluded; + } + + public void setExcluded(String excluded) { + this.excluded = excluded; + if(excluded != null){ + putQueryParameter("Excluded", excluded); + } + } + + public Integer getStartLength() { + return this.startLength; + } + + public void setStartLength(Integer startLength) { + this.startLength = startLength; + if(startLength != null){ + putQueryParameter("StartLength", startLength.toString()); + } + } + + public String getResourceGroupId() { + return this.resourceGroupId; + } + + public void setResourceGroupId(String resourceGroupId) { + this.resourceGroupId = resourceGroupId; + if(resourceGroupId != null){ + putQueryParameter("ResourceGroupId", resourceGroupId); + } + } + + public Boolean getExcludedSuffix() { + return this.excludedSuffix; + } + + public void setExcludedSuffix(Boolean excludedSuffix) { + this.excludedSuffix = excludedSuffix; + if(excludedSuffix != null){ + putQueryParameter("ExcludedSuffix", excludedSuffix.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 Boolean getExcludedPrefix() { + return this.excludedPrefix; + } + + public void setExcludedPrefix(Boolean excludedPrefix) { + this.excludedPrefix = excludedPrefix; + if(excludedPrefix != null){ + putQueryParameter("ExcludedPrefix", excludedPrefix.toString()); + } + } + + public String getKeyWord() { + return this.keyWord; + } + + public void setKeyWord(String keyWord) { + this.keyWord = keyWord; + if(keyWord != null){ + putQueryParameter("KeyWord", keyWord); + } + } + + public Long getEndExpirationDate() { + return this.endExpirationDate; + } + + public void setEndExpirationDate(Long endExpirationDate) { + this.endExpirationDate = endExpirationDate; + if(endExpirationDate != null){ + putQueryParameter("EndExpirationDate", endExpirationDate.toString()); + } + } + + public String getSuffixs() { + return this.suffixs; + } + + public void setSuffixs(String suffixs) { + this.suffixs = suffixs; + if(suffixs != null){ + putQueryParameter("Suffixs", suffixs); + } + } + + public Long getStartExpirationDate() { + return this.startExpirationDate; + } + + public void setStartExpirationDate(Long startExpirationDate) { + this.startExpirationDate = startExpirationDate; + if(startExpirationDate != null){ + putQueryParameter("StartExpirationDate", startExpirationDate.toString()); + } + } + + public Integer getDomainStatus() { + return this.domainStatus; + } + + public void setDomainStatus(Integer domainStatus) { + this.domainStatus = domainStatus; + if(domainStatus != null){ + putQueryParameter("DomainStatus", domainStatus.toString()); + } + } + + public Long getDomainGroupId() { + return this.domainGroupId; + } + + public void setDomainGroupId(Long domainGroupId) { + this.domainGroupId = domainGroupId; + if(domainGroupId != null){ + putQueryParameter("DomainGroupId", domainGroupId.toString()); + } + } + + public Boolean getKeyWordSuffix() { + return this.keyWordSuffix; + } + + public void setKeyWordSuffix(Boolean keyWordSuffix) { + this.keyWordSuffix = keyWordSuffix; + if(keyWordSuffix != null){ + putQueryParameter("KeyWordSuffix", keyWordSuffix.toString()); + } + } + + public String getScrollId() { + return this.scrollId; + } + + public void setScrollId(String scrollId) { + this.scrollId = scrollId; + if(scrollId != null){ + putQueryParameter("ScrollId", scrollId); + } + } + + public Boolean getKeyWordPrefix() { + return this.keyWordPrefix; + } + + public void setKeyWordPrefix(Boolean keyWordPrefix) { + this.keyWordPrefix = keyWordPrefix; + if(keyWordPrefix != null){ + putQueryParameter("KeyWordPrefix", keyWordPrefix.toString()); + } + } + + public Integer getTradeType() { + return this.tradeType; + } + + public void setTradeType(Integer tradeType) { + this.tradeType = tradeType; + if(tradeType != null){ + putQueryParameter("TradeType", tradeType.toString()); + } + } + + public Long getEndRegistrationDate() { + return this.endRegistrationDate; + } + + public void setEndRegistrationDate(Long endRegistrationDate) { + this.endRegistrationDate = endRegistrationDate; + if(endRegistrationDate != null){ + putQueryParameter("EndRegistrationDate", endRegistrationDate.toString()); + } + } + + public Integer getForm() { + return this.form; + } + + public void setForm(Integer form) { + this.form = form; + if(form != null){ + putQueryParameter("Form", form.toString()); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public Long getStartRegistrationDate() { + return this.startRegistrationDate; + } + + public void setStartRegistrationDate(Long startRegistrationDate) { + this.startRegistrationDate = startRegistrationDate; + if(startRegistrationDate != null){ + putQueryParameter("StartRegistrationDate", startRegistrationDate.toString()); + } + } + + public Integer getEndLength() { + return this.endLength; + } + + public void setEndLength(Integer endLength) { + this.endLength = endLength; + if(endLength != null){ + putQueryParameter("EndLength", endLength.toString()); + } + } + + @Override + public Class getResponseClass() { + return ScrollDomainListResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ScrollDomainListResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ScrollDomainListResponse.java new file mode 100644 index 0000000000..2303e03c5c --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/ScrollDomainListResponse.java @@ -0,0 +1,338 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.ScrollDomainListResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class ScrollDomainListResponse extends AcsResponse { + + private String requestId; + + private Integer pageSize; + + private String scrollId; + + private Integer totalItemNum; + + private List data; + + 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 String getScrollId() { + return this.scrollId; + } + + public void setScrollId(String scrollId) { + this.scrollId = scrollId; + } + + public Integer getTotalItemNum() { + return this.totalItemNum; + } + + public void setTotalItemNum(Integer totalItemNum) { + this.totalItemNum = totalItemNum; + } + + public List getData() { + return this.data; + } + + public void setData(List data) { + this.data = data; + } + + public static class Domain { + + private String domainAuditStatus; + + private String domainGroupId; + + private String remark; + + private String domainGroupName; + + private String zhRegistrantOrganization; + + private String registrantOrganization; + + private String registrationDate; + + private String instanceId; + + private String domainName; + + private String expirationDateStatus; + + private String expirationDate; + + private String email; + + private String registrantType; + + private Long expirationDateLong; + + private Integer expirationCurrDateDiff; + + private Boolean premium; + + private Long registrationDateLong; + + private String productId; + + private String domainStatus; + + private String domainType; + + private String resourceGroupId; + + private List tag; + + private List dnsList; + + public String getDomainAuditStatus() { + return this.domainAuditStatus; + } + + public void setDomainAuditStatus(String domainAuditStatus) { + this.domainAuditStatus = domainAuditStatus; + } + + public String getDomainGroupId() { + return this.domainGroupId; + } + + public void setDomainGroupId(String domainGroupId) { + this.domainGroupId = domainGroupId; + } + + public String getRemark() { + return this.remark; + } + + public void setRemark(String remark) { + this.remark = remark; + } + + public String getDomainGroupName() { + return this.domainGroupName; + } + + public void setDomainGroupName(String domainGroupName) { + this.domainGroupName = domainGroupName; + } + + public String getZhRegistrantOrganization() { + return this.zhRegistrantOrganization; + } + + public void setZhRegistrantOrganization(String zhRegistrantOrganization) { + this.zhRegistrantOrganization = zhRegistrantOrganization; + } + + public String getRegistrantOrganization() { + return this.registrantOrganization; + } + + public void setRegistrantOrganization(String registrantOrganization) { + this.registrantOrganization = registrantOrganization; + } + + public String getRegistrationDate() { + return this.registrationDate; + } + + public void setRegistrationDate(String registrationDate) { + this.registrationDate = registrationDate; + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + } + + public String getExpirationDateStatus() { + return this.expirationDateStatus; + } + + public void setExpirationDateStatus(String expirationDateStatus) { + this.expirationDateStatus = expirationDateStatus; + } + + public String getExpirationDate() { + return this.expirationDate; + } + + public void setExpirationDate(String expirationDate) { + this.expirationDate = expirationDate; + } + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getRegistrantType() { + return this.registrantType; + } + + public void setRegistrantType(String registrantType) { + this.registrantType = registrantType; + } + + public Long getExpirationDateLong() { + return this.expirationDateLong; + } + + public void setExpirationDateLong(Long expirationDateLong) { + this.expirationDateLong = expirationDateLong; + } + + public Integer getExpirationCurrDateDiff() { + return this.expirationCurrDateDiff; + } + + public void setExpirationCurrDateDiff(Integer expirationCurrDateDiff) { + this.expirationCurrDateDiff = expirationCurrDateDiff; + } + + public Boolean getPremium() { + return this.premium; + } + + public void setPremium(Boolean premium) { + this.premium = premium; + } + + public Long getRegistrationDateLong() { + return this.registrationDateLong; + } + + public void setRegistrationDateLong(Long registrationDateLong) { + this.registrationDateLong = registrationDateLong; + } + + public String getProductId() { + return this.productId; + } + + public void setProductId(String productId) { + this.productId = productId; + } + + public String getDomainStatus() { + return this.domainStatus; + } + + public void setDomainStatus(String domainStatus) { + this.domainStatus = domainStatus; + } + + public String getDomainType() { + return this.domainType; + } + + public void setDomainType(String domainType) { + this.domainType = domainType; + } + + public String getResourceGroupId() { + return this.resourceGroupId; + } + + public void setResourceGroupId(String resourceGroupId) { + this.resourceGroupId = resourceGroupId; + } + + public List getTag() { + return this.tag; + } + + public void setTag(List tag) { + this.tag = tag; + } + + public List getDnsList() { + return this.dnsList; + } + + public void setDnsList(List dnsList) { + this.dnsList = dnsList; + } + + public static class TagItem { + + private String key; + + private String value; + + public String getKey() { + return this.key; + } + + public void setKey(String key) { + this.key = key; + } + + public String getValue() { + return this.value; + } + + public void setValue(String value) { + this.value = value; + } + } + } + + @Override + public ScrollDomainListResponse getInstance(UnmarshallerContext context) { + return ScrollDomainListResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SetDefaultRegistrantProfileRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SetDefaultRegistrantProfileRequest.java new file mode 100644 index 0000000000..ef9364bccd --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SetDefaultRegistrantProfileRequest.java @@ -0,0 +1,67 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SetDefaultRegistrantProfileRequest extends RpcAcsRequest { + + + private Long registrantProfileId; + + private String userClientIp; + public SetDefaultRegistrantProfileRequest() { + super("Domain", "2018-01-29", "SetDefaultRegistrantProfile", "domain"); + 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 getRegistrantProfileId() { + return this.registrantProfileId; + } + + public void setRegistrantProfileId(Long registrantProfileId) { + this.registrantProfileId = registrantProfileId; + if(registrantProfileId != null){ + putQueryParameter("RegistrantProfileId", registrantProfileId.toString()); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + @Override + public Class getResponseClass() { + return SetDefaultRegistrantProfileResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SetDefaultRegistrantProfileResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SetDefaultRegistrantProfileResponse.java new file mode 100644 index 0000000000..59c997f7e1 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SetDefaultRegistrantProfileResponse.java @@ -0,0 +1,46 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SetDefaultRegistrantProfileResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SetDefaultRegistrantProfileResponse extends AcsResponse { + + private String requestId; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + @Override + public SetDefaultRegistrantProfileResponse getInstance(UnmarshallerContext context) { + return SetDefaultRegistrantProfileResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SetupDomainAutoRenewRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SetupDomainAutoRenewRequest.java new file mode 100644 index 0000000000..4b23118d8a --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SetupDomainAutoRenewRequest.java @@ -0,0 +1,67 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SetupDomainAutoRenewRequest extends RpcAcsRequest { + + + private String instanceId; + + private String operation; + public SetupDomainAutoRenewRequest() { + super("Domain", "2018-01-29", "SetupDomainAutoRenew", "domain"); + setMethod(MethodType.POST); + try { + com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); + com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType); + } catch (Exception e) {} + } + + public String getInstanceId() { + return this.instanceId; + } + + public void setInstanceId(String instanceId) { + this.instanceId = instanceId; + if(instanceId != null){ + putQueryParameter("InstanceId", instanceId); + } + } + + public String getOperation() { + return this.operation; + } + + public void setOperation(String operation) { + this.operation = operation; + if(operation != null){ + putQueryParameter("Operation", operation); + } + } + + @Override + public Class getResponseClass() { + return SetupDomainAutoRenewResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/ReserveDomainResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SetupDomainAutoRenewResponse.java similarity index 64% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/ReserveDomainResponse.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SetupDomainAutoRenewResponse.java index 91639a6a74..26b5bb21a8 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/ReserveDomainResponse.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SetupDomainAutoRenewResponse.java @@ -12,29 +12,21 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.ReserveDomainResponseUnmarshaller; +import com.aliyuncs.domain.transform.v20180129.SetupDomainAutoRenewResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ -public class ReserveDomainResponse extends AcsResponse { - - private String auctionId; +public class SetupDomainAutoRenewResponse extends AcsResponse { private String requestId; - public String getAuctionId() { - return this.auctionId; - } - - public void setAuctionId(String auctionId) { - this.auctionId = auctionId; - } + private Boolean result; public String getRequestId() { return this.requestId; @@ -44,9 +36,17 @@ public void setRequestId(String requestId) { this.requestId = requestId; } + public Boolean getResult() { + return this.result; + } + + public void setResult(Boolean result) { + this.result = result; + } + @Override - public ReserveDomainResponse getInstance(UnmarshallerContext context) { - return ReserveDomainResponseUnmarshaller.unmarshall(this, context); + public SetupDomainAutoRenewResponse getInstance(UnmarshallerContext context) { + return SetupDomainAutoRenewResponseUnmarshaller.unmarshall(this, context); } @Override diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitDomainSpecialBizCredentialsRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitDomainSpecialBizCredentialsRequest.java new file mode 100644 index 0000000000..b5a86e6bc2 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitDomainSpecialBizCredentialsRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SubmitDomainSpecialBizCredentialsRequest extends RpcAcsRequest { + + + private String credentials; + + private String extend; + + private Long bizId; + + private String userClientIp; + public SubmitDomainSpecialBizCredentialsRequest() { + super("Domain", "2018-01-29", "SubmitDomainSpecialBizCredentials", "domain"); + 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 getCredentials() { + return this.credentials; + } + + public void setCredentials(String credentials) { + this.credentials = credentials; + if(credentials != null){ + putBodyParameter("Credentials", credentials); + } + } + + public String getExtend() { + return this.extend; + } + + public void setExtend(String extend) { + this.extend = extend; + if(extend != null){ + putBodyParameter("Extend", extend); + } + } + + public Long getBizId() { + return this.bizId; + } + + public void setBizId(Long bizId) { + this.bizId = bizId; + if(bizId != null){ + putBodyParameter("BizId", bizId.toString()); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + @Override + public Class getResponseClass() { + return SubmitDomainSpecialBizCredentialsResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitDomainSpecialBizCredentialsResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitDomainSpecialBizCredentialsResponse.java new file mode 100644 index 0000000000..782c9688da --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitDomainSpecialBizCredentialsResponse.java @@ -0,0 +1,36 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SubmitDomainSpecialBizCredentialsResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SubmitDomainSpecialBizCredentialsResponse extends AcsResponse { + + @Override + public SubmitDomainSpecialBizCredentialsResponse getInstance(UnmarshallerContext context) { + return SubmitDomainSpecialBizCredentialsResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitEmailVerificationRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitEmailVerificationRequest.java new file mode 100644 index 0000000000..5bda18f8d7 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitEmailVerificationRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SubmitEmailVerificationRequest extends RpcAcsRequest { + + + private Boolean sendIfExist; + + private String userClientIp; + + private String lang; + + private String email; + public SubmitEmailVerificationRequest() { + super("Domain", "2018-01-29", "SubmitEmailVerification", "domain"); + 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 Boolean getSendIfExist() { + return this.sendIfExist; + } + + public void setSendIfExist(Boolean sendIfExist) { + this.sendIfExist = sendIfExist; + if(sendIfExist != null){ + putQueryParameter("SendIfExist", sendIfExist.toString()); + } + } + + 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 getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + if(email != null){ + putQueryParameter("Email", email); + } + } + + @Override + public Class getResponseClass() { + return SubmitEmailVerificationResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitEmailVerificationResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitEmailVerificationResponse.java new file mode 100644 index 0000000000..59a5be1a3a --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitEmailVerificationResponse.java @@ -0,0 +1,110 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SubmitEmailVerificationResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SubmitEmailVerificationResponse extends AcsResponse { + + private String requestId; + + private List existList; + + private List successList; + + private List failList; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getExistList() { + return this.existList; + } + + public void setExistList(List existList) { + this.existList = existList; + } + + public List getSuccessList() { + return this.successList; + } + + public void setSuccessList(List successList) { + this.successList = successList; + } + + public List getFailList() { + return this.failList; + } + + public void setFailList(List failList) { + this.failList = failList; + } + + public static class SendResult { + + private String email; + + private String code; + + private String message; + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + } + + public String getCode() { + return this.code; + } + + public void setCode(String code) { + this.code = code; + } + + public String getMessage() { + return this.message; + } + + public void setMessage(String message) { + this.message = message; + } + } + + @Override + public SubmitEmailVerificationResponse getInstance(UnmarshallerContext context) { + return SubmitEmailVerificationResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/RequestPayDemandRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitOperationAuditInfoRequest.java similarity index 51% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/RequestPayDemandRequest.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitOperationAuditInfoRequest.java index b246b51b8c..e0b74cac5b 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/RequestPayDemandRequest.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitOperationAuditInfoRequest.java @@ -12,7 +12,7 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.RpcAcsRequest; import com.aliyuncs.http.MethodType; @@ -22,20 +22,20 @@ * @author auto create * @version */ -public class RequestPayDemandRequest extends RpcAcsRequest { +public class SubmitOperationAuditInfoRequest extends RpcAcsRequest { private String domainName; - private Integer produceType; + private String auditInfo; - private String message; + private Integer auditType; - private Float price; + private Long id; - private String bizId; - public RequestPayDemandRequest() { - super("Domain", "2018-02-08", "RequestPayDemand", "domain"); + private String lang; + public SubmitOperationAuditInfoRequest() { + super("Domain", "2018-01-29", "SubmitOperationAuditInfo", "domain"); setMethod(MethodType.POST); try { com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap); @@ -54,53 +54,53 @@ public void setDomainName(String domainName) { } } - public Integer getProduceType() { - return this.produceType; + public String getAuditInfo() { + return this.auditInfo; } - public void setProduceType(Integer produceType) { - this.produceType = produceType; - if(produceType != null){ - putQueryParameter("ProduceType", produceType.toString()); + public void setAuditInfo(String auditInfo) { + this.auditInfo = auditInfo; + if(auditInfo != null){ + putQueryParameter("AuditInfo", auditInfo); } } - public String getMessage() { - return this.message; + public Integer getAuditType() { + return this.auditType; } - public void setMessage(String message) { - this.message = message; - if(message != null){ - putQueryParameter("Message", message); + public void setAuditType(Integer auditType) { + this.auditType = auditType; + if(auditType != null){ + putQueryParameter("AuditType", auditType.toString()); } } - public Float getPrice() { - return this.price; + public Long getId() { + return this.id; } - public void setPrice(Float price) { - this.price = price; - if(price != null){ - putQueryParameter("Price", price.toString()); + public void setId(Long id) { + this.id = id; + if(id != null){ + putQueryParameter("Id", id.toString()); } } - public String getBizId() { - return this.bizId; + public String getLang() { + return this.lang; } - public void setBizId(String bizId) { - this.bizId = bizId; - if(bizId != null){ - putQueryParameter("BizId", bizId); + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); } } @Override - public Class getResponseClass() { - return RequestPayDemandResponse.class; + public Class getResponseClass() { + return SubmitOperationAuditInfoResponse.class; } } diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/AcceptDemandResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitOperationAuditInfoResponse.java similarity index 65% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/AcceptDemandResponse.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitOperationAuditInfoResponse.java index 0927439836..49427709a9 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/AcceptDemandResponse.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitOperationAuditInfoResponse.java @@ -12,29 +12,21 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.AcceptDemandResponseUnmarshaller; +import com.aliyuncs.domain.transform.v20180129.SubmitOperationAuditInfoResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ -public class AcceptDemandResponse extends AcsResponse { - - private String bindUrl; +public class SubmitOperationAuditInfoResponse extends AcsResponse { private String requestId; - public String getBindUrl() { - return this.bindUrl; - } - - public void setBindUrl(String bindUrl) { - this.bindUrl = bindUrl; - } + private Long id; public String getRequestId() { return this.requestId; @@ -44,9 +36,17 @@ public void setRequestId(String requestId) { this.requestId = requestId; } + public Long getId() { + return this.id; + } + + public void setId(Long id) { + this.id = id; + } + @Override - public AcceptDemandResponse getInstance(UnmarshallerContext context) { - return AcceptDemandResponseUnmarshaller.unmarshall(this, context); + public SubmitOperationAuditInfoResponse getInstance(UnmarshallerContext context) { + return SubmitOperationAuditInfoResponseUnmarshaller.unmarshall(this, context); } @Override diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitOperationCredentialsRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitOperationCredentialsRequest.java new file mode 100644 index 0000000000..06f3658906 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitOperationCredentialsRequest.java @@ -0,0 +1,106 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class SubmitOperationCredentialsRequest extends RpcAcsRequest { + + + private String credentials; + + private Long auditRecordId; + + private Integer regType; + + private Integer auditType; + + private String lang; + public SubmitOperationCredentialsRequest() { + super("Domain", "2018-01-29", "SubmitOperationCredentials", "domain"); + 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 getCredentials() { + return this.credentials; + } + + public void setCredentials(String credentials) { + this.credentials = credentials; + if(credentials != null){ + putQueryParameter("Credentials", credentials); + } + } + + public Long getAuditRecordId() { + return this.auditRecordId; + } + + public void setAuditRecordId(Long auditRecordId) { + this.auditRecordId = auditRecordId; + if(auditRecordId != null){ + putQueryParameter("AuditRecordId", auditRecordId.toString()); + } + } + + public Integer getRegType() { + return this.regType; + } + + public void setRegType(Integer regType) { + this.regType = regType; + if(regType != null){ + putQueryParameter("RegType", regType.toString()); + } + } + + public Integer getAuditType() { + return this.auditType; + } + + public void setAuditType(Integer auditType) { + this.auditType = auditType; + if(auditType != null){ + putQueryParameter("AuditType", auditType.toString()); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + @Override + public Class getResponseClass() { + return SubmitOperationCredentialsResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitOperationCredentialsResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitOperationCredentialsResponse.java new file mode 100644 index 0000000000..f052b2650a --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/SubmitOperationCredentialsResponse.java @@ -0,0 +1,46 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.SubmitOperationCredentialsResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class SubmitOperationCredentialsResponse extends AcsResponse { + + private String requestId; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + @Override + public SubmitOperationCredentialsResponse getInstance(UnmarshallerContext context) { + return SubmitOperationCredentialsResponseUnmarshaller.unmarshall(this, context); + } + + @Override + public boolean checkShowJsonItemName() { + return false; + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInCheckMailTokenRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInCheckMailTokenRequest.java new file mode 100644 index 0000000000..4d2091358e --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInCheckMailTokenRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class TransferInCheckMailTokenRequest extends RpcAcsRequest { + + + private String token; + + private String userClientIp; + + private String lang; + public TransferInCheckMailTokenRequest() { + super("Domain", "2018-01-29", "TransferInCheckMailToken", "domain"); + 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 getToken() { + return this.token; + } + + public void setToken(String token) { + this.token = token; + if(token != null){ + putQueryParameter("Token", token); + } + } + + 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 getResponseClass() { + return TransferInCheckMailTokenResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInCheckMailTokenResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInCheckMailTokenResponse.java new file mode 100644 index 0000000000..04ff0df970 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInCheckMailTokenResponse.java @@ -0,0 +1,62 @@ +/* + * 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.domain.model.v20180129; + +import java.util.List; +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.TransferInCheckMailTokenResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class TransferInCheckMailTokenResponse extends AcsResponse { + + private String requestId; + + private List successList; + + private List failList; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + public List getSuccessList() { + return this.successList; + } + + public void setSuccessList(List successList) { + this.successList = successList; + } + + public List getFailList() { + return this.failList; + } + + public void setFailList(List failList) { + this.failList = failList; + } + + @Override + public TransferInCheckMailTokenResponse getInstance(UnmarshallerContext context) { + return TransferInCheckMailTokenResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInReenterTransferAuthorizationCodeRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInReenterTransferAuthorizationCodeRequest.java new file mode 100644 index 0000000000..cf4117030b --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInReenterTransferAuthorizationCodeRequest.java @@ -0,0 +1,93 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class TransferInReenterTransferAuthorizationCodeRequest extends RpcAcsRequest { + + + private String domainName; + + private String transferAuthorizationCode; + + private String userClientIp; + + private String lang; + public TransferInReenterTransferAuthorizationCodeRequest() { + super("Domain", "2018-01-29", "TransferInReenterTransferAuthorizationCode", "domain"); + 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 getTransferAuthorizationCode() { + return this.transferAuthorizationCode; + } + + public void setTransferAuthorizationCode(String transferAuthorizationCode) { + this.transferAuthorizationCode = transferAuthorizationCode; + if(transferAuthorizationCode != null){ + putQueryParameter("TransferAuthorizationCode", transferAuthorizationCode); + } + } + + 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 getResponseClass() { + return TransferInReenterTransferAuthorizationCodeResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInReenterTransferAuthorizationCodeResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInReenterTransferAuthorizationCodeResponse.java new file mode 100644 index 0000000000..9506bfdd0b --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInReenterTransferAuthorizationCodeResponse.java @@ -0,0 +1,41 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.TransferInReenterTransferAuthorizationCodeResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class TransferInReenterTransferAuthorizationCodeResponse extends AcsResponse { + + private String requestId; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + @Override + public TransferInReenterTransferAuthorizationCodeResponse getInstance(UnmarshallerContext context) { + return TransferInReenterTransferAuthorizationCodeResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInRefetchWhoisEmailRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInRefetchWhoisEmailRequest.java new file mode 100644 index 0000000000..35957917a3 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInRefetchWhoisEmailRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class TransferInRefetchWhoisEmailRequest extends RpcAcsRequest { + + + private String domainName; + + private String userClientIp; + + private String lang; + public TransferInRefetchWhoisEmailRequest() { + super("Domain", "2018-01-29", "TransferInRefetchWhoisEmail", "domain"); + 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 getResponseClass() { + return TransferInRefetchWhoisEmailResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInRefetchWhoisEmailResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInRefetchWhoisEmailResponse.java new file mode 100644 index 0000000000..bcbe8a6ac3 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInRefetchWhoisEmailResponse.java @@ -0,0 +1,41 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.TransferInRefetchWhoisEmailResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class TransferInRefetchWhoisEmailResponse extends AcsResponse { + + private String requestId; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + @Override + public TransferInRefetchWhoisEmailResponse getInstance(UnmarshallerContext context) { + return TransferInRefetchWhoisEmailResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInResendMailTokenRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInResendMailTokenRequest.java new file mode 100644 index 0000000000..dc1e606ab5 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInResendMailTokenRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class TransferInResendMailTokenRequest extends RpcAcsRequest { + + + private String domainName; + + private String userClientIp; + + private String lang; + public TransferInResendMailTokenRequest() { + super("Domain", "2018-01-29", "TransferInResendMailToken", "domain"); + 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 getResponseClass() { + return TransferInResendMailTokenResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/UpdatePartnerReservePriceResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInResendMailTokenResponse.java similarity index 73% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/UpdatePartnerReservePriceResponse.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInResendMailTokenResponse.java index 8730da96cf..2b25961057 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/UpdatePartnerReservePriceResponse.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/TransferInResendMailTokenResponse.java @@ -12,17 +12,17 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.UpdatePartnerReservePriceResponseUnmarshaller; +import com.aliyuncs.domain.transform.v20180129.TransferInResendMailTokenResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ -public class UpdatePartnerReservePriceResponse extends AcsResponse { +public class TransferInResendMailTokenResponse extends AcsResponse { private String requestId; @@ -35,8 +35,8 @@ public void setRequestId(String requestId) { } @Override - public UpdatePartnerReservePriceResponse getInstance(UnmarshallerContext context) { - return UpdatePartnerReservePriceResponseUnmarshaller.unmarshall(this, context); + public TransferInResendMailTokenResponse getInstance(UnmarshallerContext context) { + return TransferInResendMailTokenResponseUnmarshaller.unmarshall(this, context); } @Override diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/UpdateDomainToDomainGroupRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/UpdateDomainToDomainGroupRequest.java new file mode 100644 index 0000000000..2086cd8228 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/UpdateDomainToDomainGroupRequest.java @@ -0,0 +1,135 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import java.util.List; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class UpdateDomainToDomainGroupRequest extends RpcAcsRequest { + + + private String fileToUpload; + + private Boolean replace; + + private List domainNames; + + private Long domainGroupId; + + private Integer dataSource; + + private String userClientIp; + + private String lang; + public UpdateDomainToDomainGroupRequest() { + super("Domain", "2018-01-29", "UpdateDomainToDomainGroup", "domain"); + 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 getFileToUpload() { + return this.fileToUpload; + } + + public void setFileToUpload(String fileToUpload) { + this.fileToUpload = fileToUpload; + if(fileToUpload != null){ + putBodyParameter("FileToUpload", fileToUpload); + } + } + + public Boolean getReplace() { + return this.replace; + } + + public void setReplace(Boolean replace) { + this.replace = replace; + if(replace != null){ + putQueryParameter("Replace", replace.toString()); + } + } + + public List getDomainNames() { + return this.domainNames; + } + + public void setDomainNames(List domainNames) { + this.domainNames = domainNames; + if (domainNames != null) { + for (int i = 0; i < domainNames.size(); i++) { + putQueryParameter("DomainName." + (i + 1) , domainNames.get(i)); + } + } + } + + public Long getDomainGroupId() { + return this.domainGroupId; + } + + public void setDomainGroupId(Long domainGroupId) { + this.domainGroupId = domainGroupId; + if(domainGroupId != null){ + putQueryParameter("DomainGroupId", domainGroupId.toString()); + } + } + + public Integer getDataSource() { + return this.dataSource; + } + + public void setDataSource(Integer dataSource) { + this.dataSource = dataSource; + if(dataSource != null){ + putQueryParameter("DataSource", dataSource.toString()); + } + } + + 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 getResponseClass() { + return UpdateDomainToDomainGroupResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/UpdateDomainToDomainGroupResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/UpdateDomainToDomainGroupResponse.java new file mode 100644 index 0000000000..f6e37b5029 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/UpdateDomainToDomainGroupResponse.java @@ -0,0 +1,41 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.UpdateDomainToDomainGroupResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class UpdateDomainToDomainGroupResponse extends AcsResponse { + + private String requestId; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + @Override + public UpdateDomainToDomainGroupResponse getInstance(UnmarshallerContext context) { + return UpdateDomainToDomainGroupResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/VerifyContactFieldRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/VerifyContactFieldRequest.java new file mode 100644 index 0000000000..659a8ec334 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/VerifyContactFieldRequest.java @@ -0,0 +1,301 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class VerifyContactFieldRequest extends RpcAcsRequest { + + + private String country; + + private String city; + + private String zhCity; + + private String telExt; + + private String province; + + private String zhRegistrantName; + + private String postalCode; + + private String lang; + + private String email; + + private String zhRegistrantOrganization; + + private String address; + + private String telArea; + + private String zhAddress; + + private String registrantType; + + private String domainName; + + private String telephone; + + private String zhProvince; + + private String registrantOrganization; + + private String userClientIp; + + private String registrantName; + public VerifyContactFieldRequest() { + super("Domain", "2018-01-29", "VerifyContactField", "domain"); + 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 getCountry() { + return this.country; + } + + public void setCountry(String country) { + this.country = country; + if(country != null){ + putQueryParameter("Country", country); + } + } + + public String getCity() { + return this.city; + } + + public void setCity(String city) { + this.city = city; + if(city != null){ + putQueryParameter("City", city); + } + } + + public String getZhCity() { + return this.zhCity; + } + + public void setZhCity(String zhCity) { + this.zhCity = zhCity; + if(zhCity != null){ + putQueryParameter("ZhCity", zhCity); + } + } + + public String getTelExt() { + return this.telExt; + } + + public void setTelExt(String telExt) { + this.telExt = telExt; + if(telExt != null){ + putQueryParameter("TelExt", telExt); + } + } + + public String getProvince() { + return this.province; + } + + public void setProvince(String province) { + this.province = province; + if(province != null){ + putQueryParameter("Province", province); + } + } + + public String getZhRegistrantName() { + return this.zhRegistrantName; + } + + public void setZhRegistrantName(String zhRegistrantName) { + this.zhRegistrantName = zhRegistrantName; + if(zhRegistrantName != null){ + putQueryParameter("ZhRegistrantName", zhRegistrantName); + } + } + + public String getPostalCode() { + return this.postalCode; + } + + public void setPostalCode(String postalCode) { + this.postalCode = postalCode; + if(postalCode != null){ + putQueryParameter("PostalCode", postalCode); + } + } + + public String getLang() { + return this.lang; + } + + public void setLang(String lang) { + this.lang = lang; + if(lang != null){ + putQueryParameter("Lang", lang); + } + } + + public String getEmail() { + return this.email; + } + + public void setEmail(String email) { + this.email = email; + if(email != null){ + putQueryParameter("Email", email); + } + } + + public String getZhRegistrantOrganization() { + return this.zhRegistrantOrganization; + } + + public void setZhRegistrantOrganization(String zhRegistrantOrganization) { + this.zhRegistrantOrganization = zhRegistrantOrganization; + if(zhRegistrantOrganization != null){ + putQueryParameter("ZhRegistrantOrganization", zhRegistrantOrganization); + } + } + + public String getAddress() { + return this.address; + } + + public void setAddress(String address) { + this.address = address; + if(address != null){ + putQueryParameter("Address", address); + } + } + + public String getTelArea() { + return this.telArea; + } + + public void setTelArea(String telArea) { + this.telArea = telArea; + if(telArea != null){ + putQueryParameter("TelArea", telArea); + } + } + + public String getZhAddress() { + return this.zhAddress; + } + + public void setZhAddress(String zhAddress) { + this.zhAddress = zhAddress; + if(zhAddress != null){ + putQueryParameter("ZhAddress", zhAddress); + } + } + + public String getRegistrantType() { + return this.registrantType; + } + + public void setRegistrantType(String registrantType) { + this.registrantType = registrantType; + if(registrantType != null){ + putQueryParameter("RegistrantType", registrantType); + } + } + + public String getDomainName() { + return this.domainName; + } + + public void setDomainName(String domainName) { + this.domainName = domainName; + if(domainName != null){ + putQueryParameter("DomainName", domainName); + } + } + + public String getTelephone() { + return this.telephone; + } + + public void setTelephone(String telephone) { + this.telephone = telephone; + if(telephone != null){ + putQueryParameter("Telephone", telephone); + } + } + + public String getZhProvince() { + return this.zhProvince; + } + + public void setZhProvince(String zhProvince) { + this.zhProvince = zhProvince; + if(zhProvince != null){ + putQueryParameter("ZhProvince", zhProvince); + } + } + + public String getRegistrantOrganization() { + return this.registrantOrganization; + } + + public void setRegistrantOrganization(String registrantOrganization) { + this.registrantOrganization = registrantOrganization; + if(registrantOrganization != null){ + putQueryParameter("RegistrantOrganization", registrantOrganization); + } + } + + public String getUserClientIp() { + return this.userClientIp; + } + + public void setUserClientIp(String userClientIp) { + this.userClientIp = userClientIp; + if(userClientIp != null){ + putQueryParameter("UserClientIp", userClientIp); + } + } + + public String getRegistrantName() { + return this.registrantName; + } + + public void setRegistrantName(String registrantName) { + this.registrantName = registrantName; + if(registrantName != null){ + putQueryParameter("RegistrantName", registrantName); + } + } + + @Override + public Class getResponseClass() { + return VerifyContactFieldResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/VerifyContactFieldResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/VerifyContactFieldResponse.java new file mode 100644 index 0000000000..57765e1548 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/VerifyContactFieldResponse.java @@ -0,0 +1,41 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.AcsResponse; +import com.aliyuncs.domain.transform.v20180129.VerifyContactFieldResponseUnmarshaller; +import com.aliyuncs.transform.UnmarshallerContext; + +/** + * @author auto create + * @version + */ +public class VerifyContactFieldResponse extends AcsResponse { + + private String requestId; + + public String getRequestId() { + return this.requestId; + } + + public void setRequestId(String requestId) { + this.requestId = requestId; + } + + @Override + public VerifyContactFieldResponse getInstance(UnmarshallerContext context) { + return VerifyContactFieldResponseUnmarshaller.unmarshall(this, context); + } +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/VerifyEmailRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/VerifyEmailRequest.java new file mode 100644 index 0000000000..834d513cce --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/VerifyEmailRequest.java @@ -0,0 +1,80 @@ +/* + * 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.domain.model.v20180129; + +import com.aliyuncs.RpcAcsRequest; +import com.aliyuncs.http.MethodType; +import com.aliyuncs.domain.Endpoint; + +/** + * @author auto create + * @version + */ +public class VerifyEmailRequest extends RpcAcsRequest { + + + private String token; + + private String userClientIp; + + private String lang; + public VerifyEmailRequest() { + super("Domain", "2018-01-29", "VerifyEmail", "domain"); + 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 getToken() { + return this.token; + } + + public void setToken(String token) { + this.token = token; + if(token != null){ + putQueryParameter("Token", token); + } + } + + 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 getResponseClass() { + return VerifyEmailResponse.class; + } + +} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/FailDemandResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/VerifyEmailResponse.java similarity index 73% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/FailDemandResponse.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/VerifyEmailResponse.java index 61a7f5c29f..6ce6b0eb94 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/FailDemandResponse.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180129/VerifyEmailResponse.java @@ -12,17 +12,17 @@ * limitations under the License. */ -package com.aliyuncs.domain.model.v20180208; +package com.aliyuncs.domain.model.v20180129; import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.FailDemandResponseUnmarshaller; +import com.aliyuncs.domain.transform.v20180129.VerifyEmailResponseUnmarshaller; import com.aliyuncs.transform.UnmarshallerContext; /** * @author auto create * @version */ -public class FailDemandResponse extends AcsResponse { +public class VerifyEmailResponse extends AcsResponse { private String requestId; @@ -35,8 +35,8 @@ public void setRequestId(String requestId) { } @Override - public FailDemandResponse getInstance(UnmarshallerContext context) { - return FailDemandResponseUnmarshaller.unmarshall(this, context); + public VerifyEmailResponse getInstance(UnmarshallerContext context) { + return VerifyEmailResponseUnmarshaller.unmarshall(this, context); } @Override diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/ChangeAuctionRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/ChangeAuctionRequest.java deleted file mode 100644 index 25fe321de1..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/ChangeAuctionRequest.java +++ /dev/null @@ -1,208 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import com.aliyuncs.RpcAcsRequest; -import java.util.List; -import com.aliyuncs.http.MethodType; -import com.aliyuncs.domain.Endpoint; - -/** - * @author auto create - * @version - */ -public class ChangeAuctionRequest extends RpcAcsRequest { - - - private List auctionLists; - public ChangeAuctionRequest() { - super("Domain", "2018-02-08", "ChangeAuction", "domain"); - 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 getAuctionLists() { - return this.auctionLists; - } - - public void setAuctionLists(List auctionLists) { - this.auctionLists = auctionLists; - if (auctionLists != null) { - for (int depth1 = 0; depth1 < auctionLists.size(); depth1++) { - putBodyParameter("AuctionList." + (depth1 + 1) + ".Winner" , auctionLists.get(depth1).getWinner()); - putBodyParameter("AuctionList." + (depth1 + 1) + ".ReserveRange" , auctionLists.get(depth1).getReserveRange()); - putBodyParameter("AuctionList." + (depth1 + 1) + ".DomainName" , auctionLists.get(depth1).getDomainName()); - putBodyParameter("AuctionList." + (depth1 + 1) + ".EndTime" , auctionLists.get(depth1).getEndTime()); - putBodyParameter("AuctionList." + (depth1 + 1) + ".TimeLeft" , auctionLists.get(depth1).getTimeLeft()); - if (auctionLists.get(depth1).getBidRecordss() != null) { - for (int depth2 = 0; depth2 < auctionLists.get(depth1).getBidRecordss().size(); depth2++) { - putBodyParameter("AuctionList." + (depth1 + 1) + ".BidRecords." + (depth2 + 1) + ".CreateTime" , auctionLists.get(depth1).getBidRecordss().get(depth2).getCreateTime()); - putBodyParameter("AuctionList." + (depth1 + 1) + ".BidRecords." + (depth2 + 1) + ".Price" , auctionLists.get(depth1).getBidRecordss().get(depth2).getPrice()); - putBodyParameter("AuctionList." + (depth1 + 1) + ".BidRecords." + (depth2 + 1) + ".UserId" , auctionLists.get(depth1).getBidRecordss().get(depth2).getUserId()); - } - } - putBodyParameter("AuctionList." + (depth1 + 1) + ".IsReserve" , auctionLists.get(depth1).getIsReserve()); - putBodyParameter("AuctionList." + (depth1 + 1) + ".Status" , auctionLists.get(depth1).getStatus()); - putBodyParameter("AuctionList." + (depth1 + 1) + ".WinnerPrice" , auctionLists.get(depth1).getWinnerPrice()); - putBodyParameter("AuctionList." + (depth1 + 1) + ".ReservePrice" , auctionLists.get(depth1).getReservePrice()); - } - } - } - - public static class AuctionList { - - private String winner; - - private String reserveRange; - - private String domainName; - - private String endTime; - - private Long timeLeft; - - private List bidRecordss; - - private Integer isReserve; - - private String status; - - private Float winnerPrice; - - private Float reservePrice; - - public String getWinner() { - return this.winner; - } - - public void setWinner(String winner) { - this.winner = winner; - } - - public String getReserveRange() { - return this.reserveRange; - } - - public void setReserveRange(String reserveRange) { - this.reserveRange = reserveRange; - } - - public String getDomainName() { - return this.domainName; - } - - public void setDomainName(String domainName) { - this.domainName = domainName; - } - - public String getEndTime() { - return this.endTime; - } - - public void setEndTime(String endTime) { - this.endTime = endTime; - } - - public Long getTimeLeft() { - return this.timeLeft; - } - - public void setTimeLeft(Long timeLeft) { - this.timeLeft = timeLeft; - } - - public List getBidRecordss() { - return this.bidRecordss; - } - - public void setBidRecordss(List bidRecordss) { - this.bidRecordss = bidRecordss; - } - - public Integer getIsReserve() { - return this.isReserve; - } - - public void setIsReserve(Integer isReserve) { - this.isReserve = isReserve; - } - - public String getStatus() { - return this.status; - } - - public void setStatus(String status) { - this.status = status; - } - - public Float getWinnerPrice() { - return this.winnerPrice; - } - - public void setWinnerPrice(Float winnerPrice) { - this.winnerPrice = winnerPrice; - } - - public Float getReservePrice() { - return this.reservePrice; - } - - public void setReservePrice(Float reservePrice) { - this.reservePrice = reservePrice; - } - - public static class BidRecords { - - private String createTime; - - private Float price; - - private String userId; - - public String getCreateTime() { - return this.createTime; - } - - public void setCreateTime(String createTime) { - this.createTime = createTime; - } - - public Float getPrice() { - return this.price; - } - - public void setPrice(Float price) { - this.price = price; - } - - public String getUserId() { - return this.userId; - } - - public void setUserId(String userId) { - this.userId = userId; - } - } - } - - @Override - public Class getResponseClass() { - return ChangeAuctionResponse.class; - } - -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CheckDomainStatusRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CheckDomainStatusRequest.java deleted file mode 100644 index 4612df4beb..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CheckDomainStatusRequest.java +++ /dev/null @@ -1,54 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import com.aliyuncs.RpcAcsRequest; -import com.aliyuncs.http.MethodType; -import com.aliyuncs.domain.Endpoint; - -/** - * @author auto create - * @version - */ -public class CheckDomainStatusRequest extends RpcAcsRequest { - - - private String domain; - public CheckDomainStatusRequest() { - super("Domain", "2018-02-08", "CheckDomainStatus", "domain"); - setMethod(MethodType.GET); - 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 getDomain() { - return this.domain; - } - - public void setDomain(String domain) { - this.domain = domain; - if(domain != null){ - putQueryParameter("Domain", domain); - } - } - - @Override - public Class getResponseClass() { - return CheckDomainStatusResponse.class; - } - -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CheckDomainStatusResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CheckDomainStatusResponse.java deleted file mode 100644 index 0c6cb5b5c6..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CheckDomainStatusResponse.java +++ /dev/null @@ -1,139 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.CheckDomainStatusResponseUnmarshaller; -import com.aliyuncs.transform.UnmarshallerContext; - -/** - * @author auto create - * @version - */ -public class CheckDomainStatusResponse extends AcsResponse { - - private String requestId; - - private Integer httpStatusCode; - - private String errorCode; - - private Boolean success; - - private Module module; - - public String getRequestId() { - return this.requestId; - } - - public void setRequestId(String requestId) { - this.requestId = requestId; - } - - public Integer getHttpStatusCode() { - return this.httpStatusCode; - } - - public void setHttpStatusCode(Integer httpStatusCode) { - this.httpStatusCode = httpStatusCode; - } - - public String getErrorCode() { - return this.errorCode; - } - - public void setErrorCode(String errorCode) { - this.errorCode = errorCode; - } - - public Boolean getSuccess() { - return this.success; - } - - public void setSuccess(Boolean success) { - this.success = success; - } - - public Module getModule() { - return this.module; - } - - public void setModule(Module module) { - this.module = module; - } - - public static class Module { - - private String domain; - - private Float price; - - private Long regDate; - - private Long deadDate; - - private Long endTime; - - public String getDomain() { - return this.domain; - } - - public void setDomain(String domain) { - this.domain = domain; - } - - public Float getPrice() { - return this.price; - } - - public void setPrice(Float price) { - this.price = price; - } - - public Long getRegDate() { - return this.regDate; - } - - public void setRegDate(Long regDate) { - this.regDate = regDate; - } - - public Long getDeadDate() { - return this.deadDate; - } - - public void setDeadDate(Long deadDate) { - this.deadDate = deadDate; - } - - public Long getEndTime() { - return this.endTime; - } - - public void setEndTime(Long endTime) { - this.endTime = endTime; - } - } - - @Override - public CheckDomainStatusResponse getInstance(UnmarshallerContext context) { - return CheckDomainStatusResponseUnmarshaller.unmarshall(this, context); - } - - @Override - public boolean checkShowJsonItemName() { - return false; - } -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CreateFixedPriceSelectedOrderRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CreateFixedPriceSelectedOrderRequest.java deleted file mode 100644 index 472305963f..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CreateFixedPriceSelectedOrderRequest.java +++ /dev/null @@ -1,106 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import com.aliyuncs.RpcAcsRequest; -import com.aliyuncs.http.MethodType; -import com.aliyuncs.domain.Endpoint; - -/** - * @author auto create - * @version - */ -public class CreateFixedPriceSelectedOrderRequest extends RpcAcsRequest { - - - private String code; - - private String contactId; - - private Double expectedPrice; - - private String domainName; - - private String source; - public CreateFixedPriceSelectedOrderRequest() { - super("Domain", "2018-02-08", "CreateFixedPriceSelectedOrder", "domain"); - 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 getCode() { - return this.code; - } - - public void setCode(String code) { - this.code = code; - if(code != null){ - putQueryParameter("Code", code); - } - } - - public String getContactId() { - return this.contactId; - } - - public void setContactId(String contactId) { - this.contactId = contactId; - if(contactId != null){ - putQueryParameter("ContactId", contactId); - } - } - - public Double getExpectedPrice() { - return this.expectedPrice; - } - - public void setExpectedPrice(Double expectedPrice) { - this.expectedPrice = expectedPrice; - if(expectedPrice != null){ - putQueryParameter("ExpectedPrice", expectedPrice.toString()); - } - } - - public String getDomainName() { - return this.domainName; - } - - public void setDomainName(String domainName) { - this.domainName = domainName; - if(domainName != null){ - putQueryParameter("DomainName", domainName); - } - } - - public String getSource() { - return this.source; - } - - public void setSource(String source) { - this.source = source; - if(source != null){ - putQueryParameter("Source", source); - } - } - - @Override - public Class getResponseClass() { - return CreateFixedPriceSelectedOrderResponse.class; - } - -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CreateFixedPriceSelectedOrderResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CreateFixedPriceSelectedOrderResponse.java deleted file mode 100644 index 21d3ccb3a6..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/CreateFixedPriceSelectedOrderResponse.java +++ /dev/null @@ -1,119 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.CreateFixedPriceSelectedOrderResponseUnmarshaller; -import com.aliyuncs.transform.UnmarshallerContext; - -/** - * @author auto create - * @version - */ -public class CreateFixedPriceSelectedOrderResponse extends AcsResponse { - - private String requestId; - - private Integer httpStatusCode; - - private String errorCode; - - private Boolean success; - - private Module module; - - public String getRequestId() { - return this.requestId; - } - - public void setRequestId(String requestId) { - this.requestId = requestId; - } - - public Integer getHttpStatusCode() { - return this.httpStatusCode; - } - - public void setHttpStatusCode(Integer httpStatusCode) { - this.httpStatusCode = httpStatusCode; - } - - public String getErrorCode() { - return this.errorCode; - } - - public void setErrorCode(String errorCode) { - this.errorCode = errorCode; - } - - public Boolean getSuccess() { - return this.success; - } - - public void setSuccess(Boolean success) { - this.success = success; - } - - public Module getModule() { - return this.module; - } - - public void setModule(Module module) { - this.module = module; - } - - public static class Module { - - private String orderNo; - - private String domain; - - private Long price; - - public String getOrderNo() { - return this.orderNo; - } - - public void setOrderNo(String orderNo) { - this.orderNo = orderNo; - } - - public String getDomain() { - return this.domain; - } - - public void setDomain(String domain) { - this.domain = domain; - } - - public Long getPrice() { - return this.price; - } - - public void setPrice(Long price) { - this.price = price; - } - } - - @Override - public CreateFixedPriceSelectedOrderResponse getInstance(UnmarshallerContext context) { - return CreateFixedPriceSelectedOrderResponseUnmarshaller.unmarshall(this, context); - } - - @Override - public boolean checkShowJsonItemName() { - return false; - } -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/GetIntlDomainDownloadUrlRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/GetIntlDomainDownloadUrlRequest.java deleted file mode 100644 index aadc5735ac..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/GetIntlDomainDownloadUrlRequest.java +++ /dev/null @@ -1,41 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import com.aliyuncs.RpcAcsRequest; -import com.aliyuncs.http.MethodType; -import com.aliyuncs.domain.Endpoint; - -/** - * @author auto create - * @version - */ -public class GetIntlDomainDownloadUrlRequest extends RpcAcsRequest { - - public GetIntlDomainDownloadUrlRequest() { - super("Domain", "2018-02-08", "GetIntlDomainDownloadUrl", "domain"); - 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) {} - } - - @Override - public Class getResponseClass() { - return GetIntlDomainDownloadUrlResponse.class; - } - -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/GetIntlDomainDownloadUrlResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/GetIntlDomainDownloadUrlResponse.java deleted file mode 100644 index a35048674f..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/GetIntlDomainDownloadUrlResponse.java +++ /dev/null @@ -1,147 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import java.util.List; -import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.GetIntlDomainDownloadUrlResponseUnmarshaller; -import com.aliyuncs.transform.UnmarshallerContext; - -/** - * @author auto create - * @version - */ -public class GetIntlDomainDownloadUrlResponse extends AcsResponse { - - private String requestId; - - private Integer httpStatusCode; - - private String dynamicCode; - - private String dynamicMessage; - - private String errorMsg; - - private String errorCode; - - private Boolean success; - - private Boolean allowRetry; - - private String appName; - - private String url; - - private List errorArgs; - - public String getRequestId() { - return this.requestId; - } - - public void setRequestId(String requestId) { - this.requestId = requestId; - } - - public Integer getHttpStatusCode() { - return this.httpStatusCode; - } - - public void setHttpStatusCode(Integer httpStatusCode) { - this.httpStatusCode = httpStatusCode; - } - - public String getDynamicCode() { - return this.dynamicCode; - } - - public void setDynamicCode(String dynamicCode) { - this.dynamicCode = dynamicCode; - } - - public String getDynamicMessage() { - return this.dynamicMessage; - } - - public void setDynamicMessage(String dynamicMessage) { - this.dynamicMessage = dynamicMessage; - } - - public String getErrorMsg() { - return this.errorMsg; - } - - public void setErrorMsg(String errorMsg) { - this.errorMsg = errorMsg; - } - - public String getErrorCode() { - return this.errorCode; - } - - public void setErrorCode(String errorCode) { - this.errorCode = errorCode; - } - - public Boolean getSuccess() { - return this.success; - } - - public void setSuccess(Boolean success) { - this.success = success; - } - - public Boolean getAllowRetry() { - return this.allowRetry; - } - - public void setAllowRetry(Boolean allowRetry) { - this.allowRetry = allowRetry; - } - - public String getAppName() { - return this.appName; - } - - public void setAppName(String appName) { - this.appName = appName; - } - - public String getUrl() { - return this.url; - } - - public void setUrl(String url) { - this.url = url; - } - - public List getErrorArgs() { - return this.errorArgs; - } - - public void setErrorArgs(List errorArgs) { - this.errorArgs = errorArgs; - } - - @Override - public GetIntlDomainDownloadUrlResponse getInstance(UnmarshallerContext context) { - return GetIntlDomainDownloadUrlResponseUnmarshaller.unmarshall(this, context); - } - - @Override - public boolean checkShowJsonItemName() { - return false; - } -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/GetReserveDomainUrlRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/GetReserveDomainUrlRequest.java deleted file mode 100644 index 1ebbacf46d..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/GetReserveDomainUrlRequest.java +++ /dev/null @@ -1,41 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import com.aliyuncs.RpcAcsRequest; -import com.aliyuncs.http.MethodType; -import com.aliyuncs.domain.Endpoint; - -/** - * @author auto create - * @version - */ -public class GetReserveDomainUrlRequest extends RpcAcsRequest { - - public GetReserveDomainUrlRequest() { - super("Domain", "2018-02-08", "GetReserveDomainUrl", "domain"); - 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) {} - } - - @Override - public Class getResponseClass() { - return GetReserveDomainUrlResponse.class; - } - -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/PurchaseIntlDomainResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/PurchaseIntlDomainResponse.java deleted file mode 100644 index 74138c8df6..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/PurchaseIntlDomainResponse.java +++ /dev/null @@ -1,147 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import java.util.List; -import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.PurchaseIntlDomainResponseUnmarshaller; -import com.aliyuncs.transform.UnmarshallerContext; - -/** - * @author auto create - * @version - */ -public class PurchaseIntlDomainResponse extends AcsResponse { - - private String requestId; - - private Integer httpStatusCode; - - private String dynamicCode; - - private String dynamicMessage; - - private String errorMsg; - - private String errorCode; - - private Boolean success; - - private Boolean allowRetry; - - private String appName; - - private String auctionId; - - private List errorArgs; - - public String getRequestId() { - return this.requestId; - } - - public void setRequestId(String requestId) { - this.requestId = requestId; - } - - public Integer getHttpStatusCode() { - return this.httpStatusCode; - } - - public void setHttpStatusCode(Integer httpStatusCode) { - this.httpStatusCode = httpStatusCode; - } - - public String getDynamicCode() { - return this.dynamicCode; - } - - public void setDynamicCode(String dynamicCode) { - this.dynamicCode = dynamicCode; - } - - public String getDynamicMessage() { - return this.dynamicMessage; - } - - public void setDynamicMessage(String dynamicMessage) { - this.dynamicMessage = dynamicMessage; - } - - public String getErrorMsg() { - return this.errorMsg; - } - - public void setErrorMsg(String errorMsg) { - this.errorMsg = errorMsg; - } - - public String getErrorCode() { - return this.errorCode; - } - - public void setErrorCode(String errorCode) { - this.errorCode = errorCode; - } - - public Boolean getSuccess() { - return this.success; - } - - public void setSuccess(Boolean success) { - this.success = success; - } - - public Boolean getAllowRetry() { - return this.allowRetry; - } - - public void setAllowRetry(Boolean allowRetry) { - this.allowRetry = allowRetry; - } - - public String getAppName() { - return this.appName; - } - - public void setAppName(String appName) { - this.appName = appName; - } - - public String getAuctionId() { - return this.auctionId; - } - - public void setAuctionId(String auctionId) { - this.auctionId = auctionId; - } - - public List getErrorArgs() { - return this.errorArgs; - } - - public void setErrorArgs(List errorArgs) { - this.errorArgs = errorArgs; - } - - @Override - public PurchaseIntlDomainResponse getInstance(UnmarshallerContext context) { - return PurchaseIntlDomainResponseUnmarshaller.unmarshall(this, context); - } - - @Override - public boolean checkShowJsonItemName() { - return false; - } -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryAuctionDetailRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryAuctionDetailRequest.java deleted file mode 100644 index 08f0fd4320..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryAuctionDetailRequest.java +++ /dev/null @@ -1,54 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import com.aliyuncs.RpcAcsRequest; -import com.aliyuncs.http.MethodType; -import com.aliyuncs.domain.Endpoint; - -/** - * @author auto create - * @version - */ -public class QueryAuctionDetailRequest extends RpcAcsRequest { - - - private String auctionId; - public QueryAuctionDetailRequest() { - super("Domain", "2018-02-08", "QueryAuctionDetail", "domain"); - 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 getAuctionId() { - return this.auctionId; - } - - public void setAuctionId(String auctionId) { - this.auctionId = auctionId; - if(auctionId != null){ - putBodyParameter("AuctionId", auctionId); - } - } - - @Override - public Class getResponseClass() { - return QueryAuctionDetailResponse.class; - } - -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryAuctionDetailResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryAuctionDetailResponse.java deleted file mode 100644 index ccea738b4f..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryAuctionDetailResponse.java +++ /dev/null @@ -1,276 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.QueryAuctionDetailResponseUnmarshaller; -import com.aliyuncs.transform.UnmarshallerContext; - -/** - * @author auto create - * @version - */ -public class QueryAuctionDetailResponse extends AcsResponse { - - private String status; - - private Boolean reserveMet; - - private Float highBid; - - private Long deliveryTime; - - private Float transferInPrice; - - private Float nextValidBid; - - private String produceStatus; - - private String highBidder; - - private String bookedPartner; - - private String currency; - - private String domainName; - - private Float yourCurrentBid; - - private String failCode; - - private Long auctionEndTime; - - private Long bookEndTime; - - private Long payEndTime; - - private String payStatus; - - private String requestId; - - private Float yourMaxBid; - - private Float payPrice; - - private String auctionId; - - private String partnerType; - - private String domainType; - - private Float reservePrice; - - public String getStatus() { - return this.status; - } - - public void setStatus(String status) { - this.status = status; - } - - public Boolean getReserveMet() { - return this.reserveMet; - } - - public void setReserveMet(Boolean reserveMet) { - this.reserveMet = reserveMet; - } - - public Float getHighBid() { - return this.highBid; - } - - public void setHighBid(Float highBid) { - this.highBid = highBid; - } - - public Long getDeliveryTime() { - return this.deliveryTime; - } - - public void setDeliveryTime(Long deliveryTime) { - this.deliveryTime = deliveryTime; - } - - public Float getTransferInPrice() { - return this.transferInPrice; - } - - public void setTransferInPrice(Float transferInPrice) { - this.transferInPrice = transferInPrice; - } - - public Float getNextValidBid() { - return this.nextValidBid; - } - - public void setNextValidBid(Float nextValidBid) { - this.nextValidBid = nextValidBid; - } - - public String getProduceStatus() { - return this.produceStatus; - } - - public void setProduceStatus(String produceStatus) { - this.produceStatus = produceStatus; - } - - public String getHighBidder() { - return this.highBidder; - } - - public void setHighBidder(String highBidder) { - this.highBidder = highBidder; - } - - public String getBookedPartner() { - return this.bookedPartner; - } - - public void setBookedPartner(String bookedPartner) { - this.bookedPartner = bookedPartner; - } - - public String getCurrency() { - return this.currency; - } - - public void setCurrency(String currency) { - this.currency = currency; - } - - public String getDomainName() { - return this.domainName; - } - - public void setDomainName(String domainName) { - this.domainName = domainName; - } - - public Float getYourCurrentBid() { - return this.yourCurrentBid; - } - - public void setYourCurrentBid(Float yourCurrentBid) { - this.yourCurrentBid = yourCurrentBid; - } - - public String getFailCode() { - return this.failCode; - } - - public void setFailCode(String failCode) { - this.failCode = failCode; - } - - public Long getAuctionEndTime() { - return this.auctionEndTime; - } - - public void setAuctionEndTime(Long auctionEndTime) { - this.auctionEndTime = auctionEndTime; - } - - public Long getBookEndTime() { - return this.bookEndTime; - } - - public void setBookEndTime(Long bookEndTime) { - this.bookEndTime = bookEndTime; - } - - public Long getPayEndTime() { - return this.payEndTime; - } - - public void setPayEndTime(Long payEndTime) { - this.payEndTime = payEndTime; - } - - public String getPayStatus() { - return this.payStatus; - } - - public void setPayStatus(String payStatus) { - this.payStatus = payStatus; - } - - public String getRequestId() { - return this.requestId; - } - - public void setRequestId(String requestId) { - this.requestId = requestId; - } - - public Float getYourMaxBid() { - return this.yourMaxBid; - } - - public void setYourMaxBid(Float yourMaxBid) { - this.yourMaxBid = yourMaxBid; - } - - public Float getPayPrice() { - return this.payPrice; - } - - public void setPayPrice(Float payPrice) { - this.payPrice = payPrice; - } - - public String getAuctionId() { - return this.auctionId; - } - - public void setAuctionId(String auctionId) { - this.auctionId = auctionId; - } - - public String getPartnerType() { - return this.partnerType; - } - - public void setPartnerType(String partnerType) { - this.partnerType = partnerType; - } - - public String getDomainType() { - return this.domainType; - } - - public void setDomainType(String domainType) { - this.domainType = domainType; - } - - public Float getReservePrice() { - return this.reservePrice; - } - - public void setReservePrice(Float reservePrice) { - this.reservePrice = reservePrice; - } - - @Override - public QueryAuctionDetailResponse getInstance(UnmarshallerContext context) { - return QueryAuctionDetailResponseUnmarshaller.unmarshall(this, context); - } - - @Override - public boolean checkShowJsonItemName() { - return false; - } -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryAuctionsRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryAuctionsRequest.java deleted file mode 100644 index e25f11f7e3..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryAuctionsRequest.java +++ /dev/null @@ -1,106 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import com.aliyuncs.RpcAcsRequest; -import com.aliyuncs.http.MethodType; -import com.aliyuncs.domain.Endpoint; - -/** - * @author auto create - * @version - */ -public class QueryAuctionsRequest extends RpcAcsRequest { - - - private Integer currentPage; - - private Integer pageSize; - - private String statuses; - - private String auctionEndTimeOrder; - - private String status; - public QueryAuctionsRequest() { - super("Domain", "2018-02-08", "QueryAuctions", "domain"); - 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 getCurrentPage() { - return this.currentPage; - } - - public void setCurrentPage(Integer currentPage) { - this.currentPage = currentPage; - if(currentPage != null){ - putBodyParameter("CurrentPage", currentPage.toString()); - } - } - - public Integer getPageSize() { - return this.pageSize; - } - - public void setPageSize(Integer pageSize) { - this.pageSize = pageSize; - if(pageSize != null){ - putBodyParameter("PageSize", pageSize.toString()); - } - } - - public String getStatuses() { - return this.statuses; - } - - public void setStatuses(String statuses) { - this.statuses = statuses; - if(statuses != null){ - putBodyParameter("Statuses", statuses); - } - } - - public String getAuctionEndTimeOrder() { - return this.auctionEndTimeOrder; - } - - public void setAuctionEndTimeOrder(String auctionEndTimeOrder) { - this.auctionEndTimeOrder = auctionEndTimeOrder; - if(auctionEndTimeOrder != null){ - putBodyParameter("AuctionEndTimeOrder", auctionEndTimeOrder); - } - } - - public String getStatus() { - return this.status; - } - - public void setStatus(String status) { - this.status = status; - if(status != null){ - putBodyParameter("Status", status); - } - } - - @Override - public Class getResponseClass() { - return QueryAuctionsResponse.class; - } - -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryAuctionsResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryAuctionsResponse.java deleted file mode 100644 index 30fbf81919..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryAuctionsResponse.java +++ /dev/null @@ -1,350 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import java.util.List; -import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.QueryAuctionsResponseUnmarshaller; -import com.aliyuncs.transform.UnmarshallerContext; - -/** - * @author auto create - * @version - */ -public class QueryAuctionsResponse extends AcsResponse { - - private Integer currentPageNum; - - private Integer totalPageNum; - - private Integer pageSize; - - private String requestId; - - private Integer totalItemNum; - - private List data; - - public Integer getCurrentPageNum() { - return this.currentPageNum; - } - - public void setCurrentPageNum(Integer currentPageNum) { - this.currentPageNum = currentPageNum; - } - - public Integer getTotalPageNum() { - return this.totalPageNum; - } - - public void setTotalPageNum(Integer totalPageNum) { - this.totalPageNum = totalPageNum; - } - - 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 getTotalItemNum() { - return this.totalItemNum; - } - - public void setTotalItemNum(Integer totalItemNum) { - this.totalItemNum = totalItemNum; - } - - public List getData() { - return this.data; - } - - public void setData(List data) { - this.data = data; - } - - public static class AuctionDetail { - - private String status; - - private Boolean reserveMet; - - private Float highBid; - - private Long deliveryTime; - - private Float transferInPrice; - - private Float nextValidBid; - - private String produceStatus; - - private String highBidder; - - private String bookedPartner; - - private String currency; - - private String domainName; - - private Float yourCurrentBid; - - private String failCode; - - private Long auctionEndTime; - - private Long bookEndTime; - - private Long payEndTime; - - private String payStatus; - - private Float yourMaxBid; - - private Float payPrice; - - private String auctionId; - - private String partnerType; - - private String domainType; - - private Long reserveMin; - - private Long reserveMax; - - private Long reservePrice; - - public String getStatus() { - return this.status; - } - - public void setStatus(String status) { - this.status = status; - } - - public Boolean getReserveMet() { - return this.reserveMet; - } - - public void setReserveMet(Boolean reserveMet) { - this.reserveMet = reserveMet; - } - - public Float getHighBid() { - return this.highBid; - } - - public void setHighBid(Float highBid) { - this.highBid = highBid; - } - - public Long getDeliveryTime() { - return this.deliveryTime; - } - - public void setDeliveryTime(Long deliveryTime) { - this.deliveryTime = deliveryTime; - } - - public Float getTransferInPrice() { - return this.transferInPrice; - } - - public void setTransferInPrice(Float transferInPrice) { - this.transferInPrice = transferInPrice; - } - - public Float getNextValidBid() { - return this.nextValidBid; - } - - public void setNextValidBid(Float nextValidBid) { - this.nextValidBid = nextValidBid; - } - - public String getProduceStatus() { - return this.produceStatus; - } - - public void setProduceStatus(String produceStatus) { - this.produceStatus = produceStatus; - } - - public String getHighBidder() { - return this.highBidder; - } - - public void setHighBidder(String highBidder) { - this.highBidder = highBidder; - } - - public String getBookedPartner() { - return this.bookedPartner; - } - - public void setBookedPartner(String bookedPartner) { - this.bookedPartner = bookedPartner; - } - - public String getCurrency() { - return this.currency; - } - - public void setCurrency(String currency) { - this.currency = currency; - } - - public String getDomainName() { - return this.domainName; - } - - public void setDomainName(String domainName) { - this.domainName = domainName; - } - - public Float getYourCurrentBid() { - return this.yourCurrentBid; - } - - public void setYourCurrentBid(Float yourCurrentBid) { - this.yourCurrentBid = yourCurrentBid; - } - - public String getFailCode() { - return this.failCode; - } - - public void setFailCode(String failCode) { - this.failCode = failCode; - } - - public Long getAuctionEndTime() { - return this.auctionEndTime; - } - - public void setAuctionEndTime(Long auctionEndTime) { - this.auctionEndTime = auctionEndTime; - } - - public Long getBookEndTime() { - return this.bookEndTime; - } - - public void setBookEndTime(Long bookEndTime) { - this.bookEndTime = bookEndTime; - } - - public Long getPayEndTime() { - return this.payEndTime; - } - - public void setPayEndTime(Long payEndTime) { - this.payEndTime = payEndTime; - } - - public String getPayStatus() { - return this.payStatus; - } - - public void setPayStatus(String payStatus) { - this.payStatus = payStatus; - } - - public Float getYourMaxBid() { - return this.yourMaxBid; - } - - public void setYourMaxBid(Float yourMaxBid) { - this.yourMaxBid = yourMaxBid; - } - - public Float getPayPrice() { - return this.payPrice; - } - - public void setPayPrice(Float payPrice) { - this.payPrice = payPrice; - } - - public String getAuctionId() { - return this.auctionId; - } - - public void setAuctionId(String auctionId) { - this.auctionId = auctionId; - } - - public String getPartnerType() { - return this.partnerType; - } - - public void setPartnerType(String partnerType) { - this.partnerType = partnerType; - } - - public String getDomainType() { - return this.domainType; - } - - public void setDomainType(String domainType) { - this.domainType = domainType; - } - - public Long getReserveMin() { - return this.reserveMin; - } - - public void setReserveMin(Long reserveMin) { - this.reserveMin = reserveMin; - } - - public Long getReserveMax() { - return this.reserveMax; - } - - public void setReserveMax(Long reserveMax) { - this.reserveMax = reserveMax; - } - - public Long getReservePrice() { - return this.reservePrice; - } - - public void setReservePrice(Long reservePrice) { - this.reservePrice = reservePrice; - } - } - - @Override - public QueryAuctionsResponse getInstance(UnmarshallerContext context) { - return QueryAuctionsResponseUnmarshaller.unmarshall(this, context); - } - - @Override - public boolean checkShowJsonItemName() { - return false; - } -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBidRecordsRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBidRecordsRequest.java deleted file mode 100644 index 2ae516b1c2..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBidRecordsRequest.java +++ /dev/null @@ -1,80 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import com.aliyuncs.RpcAcsRequest; -import com.aliyuncs.http.MethodType; -import com.aliyuncs.domain.Endpoint; - -/** - * @author auto create - * @version - */ -public class QueryBidRecordsRequest extends RpcAcsRequest { - - - private Integer currentPage; - - private String auctionId; - - private Integer pageSize; - public QueryBidRecordsRequest() { - super("Domain", "2018-02-08", "QueryBidRecords", "domain"); - 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 getCurrentPage() { - return this.currentPage; - } - - public void setCurrentPage(Integer currentPage) { - this.currentPage = currentPage; - if(currentPage != null){ - putBodyParameter("CurrentPage", currentPage.toString()); - } - } - - public String getAuctionId() { - return this.auctionId; - } - - public void setAuctionId(String auctionId) { - this.auctionId = auctionId; - if(auctionId != null){ - putBodyParameter("AuctionId", auctionId); - } - } - - public Integer getPageSize() { - return this.pageSize; - } - - public void setPageSize(Integer pageSize) { - this.pageSize = pageSize; - if(pageSize != null){ - putBodyParameter("PageSize", pageSize.toString()); - } - } - - @Override - public Class getResponseClass() { - return QueryBidRecordsResponse.class; - } - -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBidRecordsResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBidRecordsResponse.java deleted file mode 100644 index 51aef77fb1..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBidRecordsResponse.java +++ /dev/null @@ -1,150 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import java.util.List; -import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.QueryBidRecordsResponseUnmarshaller; -import com.aliyuncs.transform.UnmarshallerContext; - -/** - * @author auto create - * @version - */ -public class QueryBidRecordsResponse extends AcsResponse { - - private Integer currentPageNum; - - private Integer totalPageNum; - - private Integer pageSize; - - private String requestId; - - private Integer totalItemNum; - - private List data; - - public Integer getCurrentPageNum() { - return this.currentPageNum; - } - - public void setCurrentPageNum(Integer currentPageNum) { - this.currentPageNum = currentPageNum; - } - - public Integer getTotalPageNum() { - return this.totalPageNum; - } - - public void setTotalPageNum(Integer totalPageNum) { - this.totalPageNum = totalPageNum; - } - - 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 getTotalItemNum() { - return this.totalItemNum; - } - - public void setTotalItemNum(Integer totalItemNum) { - this.totalItemNum = totalItemNum; - } - - public List getData() { - return this.data; - } - - public void setData(List data) { - this.data = data; - } - - public static class BidRecord { - - private String bidder; - - private Long bidTime; - - private Float bid; - - private String currency; - - private String domainName; - - public String getBidder() { - return this.bidder; - } - - public void setBidder(String bidder) { - this.bidder = bidder; - } - - public Long getBidTime() { - return this.bidTime; - } - - public void setBidTime(Long bidTime) { - this.bidTime = bidTime; - } - - public Float getBid() { - return this.bid; - } - - public void setBid(Float bid) { - this.bid = bid; - } - - public String getCurrency() { - return this.currency; - } - - public void setCurrency(String currency) { - this.currency = currency; - } - - public String getDomainName() { - return this.domainName; - } - - public void setDomainName(String domainName) { - this.domainName = domainName; - } - } - - @Override - public QueryBidRecordsResponse getInstance(UnmarshallerContext context) { - return QueryBidRecordsResponseUnmarshaller.unmarshall(this, context); - } - - @Override - public boolean checkShowJsonItemName() { - return false; - } -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBookingDomainInfoResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBookingDomainInfoResponse.java deleted file mode 100644 index 20dfc79bcb..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBookingDomainInfoResponse.java +++ /dev/null @@ -1,116 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.QueryBookingDomainInfoResponseUnmarshaller; -import com.aliyuncs.transform.UnmarshallerContext; - -/** - * @author auto create - * @version - */ -public class QueryBookingDomainInfoResponse extends AcsResponse { - - private Long bookEndTime; - - private String requestId; - - private Float maxBid; - - private Float transferInPrice; - - private Integer auctionId; - - private String currency; - - private String partnerType; - - private String snatchNo; - - public Long getBookEndTime() { - return this.bookEndTime; - } - - public void setBookEndTime(Long bookEndTime) { - this.bookEndTime = bookEndTime; - } - - public String getRequestId() { - return this.requestId; - } - - public void setRequestId(String requestId) { - this.requestId = requestId; - } - - public Float getMaxBid() { - return this.maxBid; - } - - public void setMaxBid(Float maxBid) { - this.maxBid = maxBid; - } - - public Float getTransferInPrice() { - return this.transferInPrice; - } - - public void setTransferInPrice(Float transferInPrice) { - this.transferInPrice = transferInPrice; - } - - public Integer getAuctionId() { - return this.auctionId; - } - - public void setAuctionId(Integer auctionId) { - this.auctionId = auctionId; - } - - public String getCurrency() { - return this.currency; - } - - public void setCurrency(String currency) { - this.currency = currency; - } - - public String getPartnerType() { - return this.partnerType; - } - - public void setPartnerType(String partnerType) { - this.partnerType = partnerType; - } - - public String getSnatchNo() { - return this.snatchNo; - } - - public void setSnatchNo(String snatchNo) { - this.snatchNo = snatchNo; - } - - @Override - public QueryBookingDomainInfoResponse getInstance(UnmarshallerContext context) { - return QueryBookingDomainInfoResponseUnmarshaller.unmarshall(this, context); - } - - @Override - public boolean checkShowJsonItemName() { - return false; - } -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBrokerDemandRecordRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBrokerDemandRecordRequest.java deleted file mode 100644 index 964787d9ca..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBrokerDemandRecordRequest.java +++ /dev/null @@ -1,80 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import com.aliyuncs.RpcAcsRequest; -import com.aliyuncs.http.MethodType; -import com.aliyuncs.domain.Endpoint; - -/** - * @author auto create - * @version - */ -public class QueryBrokerDemandRecordRequest extends RpcAcsRequest { - - - private Integer currentPage; - - private Integer pageSize; - - private String bizId; - public QueryBrokerDemandRecordRequest() { - super("Domain", "2018-02-08", "QueryBrokerDemandRecord", "domain"); - 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 getCurrentPage() { - return this.currentPage; - } - - public void setCurrentPage(Integer currentPage) { - this.currentPage = currentPage; - if(currentPage != null){ - putQueryParameter("CurrentPage", currentPage.toString()); - } - } - - public Integer getPageSize() { - return this.pageSize; - } - - public void setPageSize(Integer pageSize) { - this.pageSize = pageSize; - if(pageSize != null){ - putQueryParameter("PageSize", pageSize.toString()); - } - } - - public String getBizId() { - return this.bizId; - } - - public void setBizId(String bizId) { - this.bizId = bizId; - if(bizId != null){ - putQueryParameter("BizId", bizId); - } - } - - @Override - public Class getResponseClass() { - return QueryBrokerDemandRecordResponse.class; - } - -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBrokerDemandRecordResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBrokerDemandRecordResponse.java deleted file mode 100644 index 9f2704a44d..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBrokerDemandRecordResponse.java +++ /dev/null @@ -1,125 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import java.util.List; -import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.QueryBrokerDemandRecordResponseUnmarshaller; -import com.aliyuncs.transform.UnmarshallerContext; - -/** - * @author auto create - * @version - */ -public class QueryBrokerDemandRecordResponse extends AcsResponse { - - private Integer currentPageNum; - - private Integer pageSize; - - private String requestId; - - private Integer totalPageNum; - - private Integer totalItemNum; - - private List data; - - public Integer getCurrentPageNum() { - return this.currentPageNum; - } - - public void setCurrentPageNum(Integer currentPageNum) { - this.currentPageNum = currentPageNum; - } - - 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 getTotalPageNum() { - return this.totalPageNum; - } - - public void setTotalPageNum(Integer totalPageNum) { - this.totalPageNum = totalPageNum; - } - - public Integer getTotalItemNum() { - return this.totalItemNum; - } - - public void setTotalItemNum(Integer totalItemNum) { - this.totalItemNum = totalItemNum; - } - - public List getData() { - return this.data; - } - - public void setData(List data) { - this.data = data; - } - - public static class BrokerDemandRecord { - - private String description; - - private Long createTime; - - private String bizId; - - public String getDescription() { - return this.description; - } - - public void setDescription(String description) { - this.description = description; - } - - public Long getCreateTime() { - return this.createTime; - } - - public void setCreateTime(Long createTime) { - this.createTime = createTime; - } - - public String getBizId() { - return this.bizId; - } - - public void setBizId(String bizId) { - this.bizId = bizId; - } - } - - @Override - public QueryBrokerDemandRecordResponse getInstance(UnmarshallerContext context) { - return QueryBrokerDemandRecordResponseUnmarshaller.unmarshall(this, context); - } -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBrokerDemandResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBrokerDemandResponse.java deleted file mode 100644 index ea9fa78daf..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryBrokerDemandResponse.java +++ /dev/null @@ -1,300 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import java.util.List; -import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.QueryBrokerDemandResponseUnmarshaller; -import com.aliyuncs.transform.UnmarshallerContext; - -/** - * @author auto create - * @version - */ -public class QueryBrokerDemandResponse extends AcsResponse { - - private Integer currentPageNum; - - private Integer totalPageNum; - - private Integer pageSize; - - private String requestId; - - private Integer totalItemNum; - - private List data; - - public Integer getCurrentPageNum() { - return this.currentPageNum; - } - - public void setCurrentPageNum(Integer currentPageNum) { - this.currentPageNum = currentPageNum; - } - - public Integer getTotalPageNum() { - return this.totalPageNum; - } - - public void setTotalPageNum(Integer totalPageNum) { - this.totalPageNum = totalPageNum; - } - - 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 getTotalItemNum() { - return this.totalItemNum; - } - - public void setTotalItemNum(Integer totalItemNum) { - this.totalItemNum = totalItemNum; - } - - public List getData() { - return this.data; - } - - public void setData(List data) { - this.data = data; - } - - public static class Demand { - - private String status; - - private Float demandPrice; - - private String bizId; - - private String bargainSellerMobile; - - private Long publishTime; - - private Integer produceType; - - private String demandDomain; - - private String description; - - private String mobile; - - private Float servicePayPrice; - - private Float payPrice; - - private Long payTime; - - private Float bargainSellerPrice; - - private Integer orderType; - - private String payDomain; - - private Integer auditStatus; - - private String partnerDomain; - - private Integer purchaseStatus; - - private String email; - - private Float settleBasePrice; - - public String getStatus() { - return this.status; - } - - public void setStatus(String status) { - this.status = status; - } - - public Float getDemandPrice() { - return this.demandPrice; - } - - public void setDemandPrice(Float demandPrice) { - this.demandPrice = demandPrice; - } - - public String getBizId() { - return this.bizId; - } - - public void setBizId(String bizId) { - this.bizId = bizId; - } - - public String getBargainSellerMobile() { - return this.bargainSellerMobile; - } - - public void setBargainSellerMobile(String bargainSellerMobile) { - this.bargainSellerMobile = bargainSellerMobile; - } - - public Long getPublishTime() { - return this.publishTime; - } - - public void setPublishTime(Long publishTime) { - this.publishTime = publishTime; - } - - public Integer getProduceType() { - return this.produceType; - } - - public void setProduceType(Integer produceType) { - this.produceType = produceType; - } - - public String getDemandDomain() { - return this.demandDomain; - } - - public void setDemandDomain(String demandDomain) { - this.demandDomain = demandDomain; - } - - public String getDescription() { - return this.description; - } - - public void setDescription(String description) { - this.description = description; - } - - public String getMobile() { - return this.mobile; - } - - public void setMobile(String mobile) { - this.mobile = mobile; - } - - public Float getServicePayPrice() { - return this.servicePayPrice; - } - - public void setServicePayPrice(Float servicePayPrice) { - this.servicePayPrice = servicePayPrice; - } - - public Float getPayPrice() { - return this.payPrice; - } - - public void setPayPrice(Float payPrice) { - this.payPrice = payPrice; - } - - public Long getPayTime() { - return this.payTime; - } - - public void setPayTime(Long payTime) { - this.payTime = payTime; - } - - public Float getBargainSellerPrice() { - return this.bargainSellerPrice; - } - - public void setBargainSellerPrice(Float bargainSellerPrice) { - this.bargainSellerPrice = bargainSellerPrice; - } - - public Integer getOrderType() { - return this.orderType; - } - - public void setOrderType(Integer orderType) { - this.orderType = orderType; - } - - public String getPayDomain() { - return this.payDomain; - } - - public void setPayDomain(String payDomain) { - this.payDomain = payDomain; - } - - public Integer getAuditStatus() { - return this.auditStatus; - } - - public void setAuditStatus(Integer auditStatus) { - this.auditStatus = auditStatus; - } - - public String getPartnerDomain() { - return this.partnerDomain; - } - - public void setPartnerDomain(String partnerDomain) { - this.partnerDomain = partnerDomain; - } - - public Integer getPurchaseStatus() { - return this.purchaseStatus; - } - - public void setPurchaseStatus(Integer purchaseStatus) { - this.purchaseStatus = purchaseStatus; - } - - public String getEmail() { - return this.email; - } - - public void setEmail(String email) { - this.email = email; - } - - public Float getSettleBasePrice() { - return this.settleBasePrice; - } - - public void setSettleBasePrice(Float settleBasePrice) { - this.settleBasePrice = settleBasePrice; - } - } - - @Override - public QueryBrokerDemandResponse getInstance(UnmarshallerContext context) { - return QueryBrokerDemandResponseUnmarshaller.unmarshall(this, context); - } - - @Override - public boolean checkShowJsonItemName() { - return false; - } -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryDomainTransferStatusResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryDomainTransferStatusResponse.java deleted file mode 100644 index 835dec65a2..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryDomainTransferStatusResponse.java +++ /dev/null @@ -1,80 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import java.util.List; -import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.QueryDomainTransferStatusResponseUnmarshaller; -import com.aliyuncs.transform.UnmarshallerContext; - -/** - * @author auto create - * @version - */ -public class QueryDomainTransferStatusResponse extends AcsResponse { - - private String requestId; - - private List domainTransferStatus; - - public String getRequestId() { - return this.requestId; - } - - public void setRequestId(String requestId) { - this.requestId = requestId; - } - - public List getDomainTransferStatus() { - return this.domainTransferStatus; - } - - public void setDomainTransferStatus(List domainTransferStatus) { - this.domainTransferStatus = domainTransferStatus; - } - - public static class DomainTransferStatusItem { - - private String domainName; - - private String domainStatusDescription; - - public String getDomainName() { - return this.domainName; - } - - public void setDomainName(String domainName) { - this.domainName = domainName; - } - - public String getDomainStatusDescription() { - return this.domainStatusDescription; - } - - public void setDomainStatusDescription(String domainStatusDescription) { - this.domainStatusDescription = domainStatusDescription; - } - } - - @Override - public QueryDomainTransferStatusResponse getInstance(UnmarshallerContext context) { - return QueryDomainTransferStatusResponseUnmarshaller.unmarshall(this, context); - } - - @Override - public boolean checkShowJsonItemName() { - return false; - } -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryPurchasedDomainsRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryPurchasedDomainsRequest.java deleted file mode 100644 index cb5b0c5d1c..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryPurchasedDomainsRequest.java +++ /dev/null @@ -1,158 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import com.aliyuncs.RpcAcsRequest; -import com.aliyuncs.http.MethodType; -import com.aliyuncs.domain.Endpoint; - -/** - * @author auto create - * @version - */ -public class QueryPurchasedDomainsRequest extends RpcAcsRequest { - - - private Boolean updateTimeOrder; - - private String domainName; - - private Integer currentPage; - - private Integer productType; - - private Integer operationStatus; - - private String startOperationTime; - - private Integer pageSize; - - private String endOperationTime; - - private Boolean opTimeOrder; - public QueryPurchasedDomainsRequest() { - super("Domain", "2018-02-08", "QueryPurchasedDomains", "domain"); - 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 Boolean getUpdateTimeOrder() { - return this.updateTimeOrder; - } - - public void setUpdateTimeOrder(Boolean updateTimeOrder) { - this.updateTimeOrder = updateTimeOrder; - if(updateTimeOrder != null){ - putBodyParameter("UpdateTimeOrder", updateTimeOrder.toString()); - } - } - - public String getDomainName() { - return this.domainName; - } - - public void setDomainName(String domainName) { - this.domainName = domainName; - if(domainName != null){ - putBodyParameter("DomainName", domainName); - } - } - - public Integer getCurrentPage() { - return this.currentPage; - } - - public void setCurrentPage(Integer currentPage) { - this.currentPage = currentPage; - if(currentPage != null){ - putBodyParameter("CurrentPage", currentPage.toString()); - } - } - - public Integer getProductType() { - return this.productType; - } - - public void setProductType(Integer productType) { - this.productType = productType; - if(productType != null){ - putBodyParameter("ProductType", productType.toString()); - } - } - - public Integer getOperationStatus() { - return this.operationStatus; - } - - public void setOperationStatus(Integer operationStatus) { - this.operationStatus = operationStatus; - if(operationStatus != null){ - putBodyParameter("OperationStatus", operationStatus.toString()); - } - } - - public String getStartOperationTime() { - return this.startOperationTime; - } - - public void setStartOperationTime(String startOperationTime) { - this.startOperationTime = startOperationTime; - if(startOperationTime != null){ - putBodyParameter("StartOperationTime", startOperationTime); - } - } - - public Integer getPageSize() { - return this.pageSize; - } - - public void setPageSize(Integer pageSize) { - this.pageSize = pageSize; - if(pageSize != null){ - putBodyParameter("PageSize", pageSize.toString()); - } - } - - public String getEndOperationTime() { - return this.endOperationTime; - } - - public void setEndOperationTime(String endOperationTime) { - this.endOperationTime = endOperationTime; - if(endOperationTime != null){ - putBodyParameter("EndOperationTime", endOperationTime); - } - } - - public Boolean getOpTimeOrder() { - return this.opTimeOrder; - } - - public void setOpTimeOrder(Boolean opTimeOrder) { - this.opTimeOrder = opTimeOrder; - if(opTimeOrder != null){ - putBodyParameter("OpTimeOrder", opTimeOrder.toString()); - } - } - - @Override - public Class getResponseClass() { - return QueryPurchasedDomainsResponse.class; - } - -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryPurchasedDomainsResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryPurchasedDomainsResponse.java deleted file mode 100644 index b2da0f71ee..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/QueryPurchasedDomainsResponse.java +++ /dev/null @@ -1,160 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import java.util.List; -import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.QueryPurchasedDomainsResponseUnmarshaller; -import com.aliyuncs.transform.UnmarshallerContext; - -/** - * @author auto create - * @version - */ -public class QueryPurchasedDomainsResponse extends AcsResponse { - - private String requestId; - - private Integer totalItemNum; - - private Integer currentPageNum; - - private Integer pageSize; - - private Integer totalPageNum; - - private List data; - - public String getRequestId() { - return this.requestId; - } - - public void setRequestId(String requestId) { - this.requestId = requestId; - } - - public Integer getTotalItemNum() { - return this.totalItemNum; - } - - public void setTotalItemNum(Integer totalItemNum) { - this.totalItemNum = totalItemNum; - } - - public Integer getCurrentPageNum() { - return this.currentPageNum; - } - - public void setCurrentPageNum(Integer currentPageNum) { - this.currentPageNum = currentPageNum; - } - - public Integer getPageSize() { - return this.pageSize; - } - - public void setPageSize(Integer pageSize) { - this.pageSize = pageSize; - } - - public Integer getTotalPageNum() { - return this.totalPageNum; - } - - public void setTotalPageNum(Integer totalPageNum) { - this.totalPageNum = totalPageNum; - } - - public List getData() { - return this.data; - } - - public void setData(List data) { - this.data = data; - } - - public static class PurchasedDomains { - - private String domainName; - - private String operationTime; - - private String deliveryTime; - - private Double tradeMoney; - - private String productType; - - private String operationStatus; - - public String getDomainName() { - return this.domainName; - } - - public void setDomainName(String domainName) { - this.domainName = domainName; - } - - public String getOperationTime() { - return this.operationTime; - } - - public void setOperationTime(String operationTime) { - this.operationTime = operationTime; - } - - public String getDeliveryTime() { - return this.deliveryTime; - } - - public void setDeliveryTime(String deliveryTime) { - this.deliveryTime = deliveryTime; - } - - public Double getTradeMoney() { - return this.tradeMoney; - } - - public void setTradeMoney(Double tradeMoney) { - this.tradeMoney = tradeMoney; - } - - public String getProductType() { - return this.productType; - } - - public void setProductType(String productType) { - this.productType = productType; - } - - public String getOperationStatus() { - return this.operationStatus; - } - - public void setOperationStatus(String operationStatus) { - this.operationStatus = operationStatus; - } - } - - @Override - public QueryPurchasedDomainsResponse getInstance(UnmarshallerContext context) { - return QueryPurchasedDomainsResponseUnmarshaller.unmarshall(this, context); - } - - @Override - public boolean checkShowJsonItemName() { - return false; - } -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/RefuseDemandRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/RefuseDemandRequest.java deleted file mode 100644 index e172632460..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/RefuseDemandRequest.java +++ /dev/null @@ -1,67 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import com.aliyuncs.RpcAcsRequest; -import com.aliyuncs.http.MethodType; -import com.aliyuncs.domain.Endpoint; - -/** - * @author auto create - * @version - */ -public class RefuseDemandRequest extends RpcAcsRequest { - - - private String message; - - private String bizId; - public RefuseDemandRequest() { - super("Domain", "2018-02-08", "RefuseDemand", "domain"); - 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 getMessage() { - return this.message; - } - - public void setMessage(String message) { - this.message = message; - if(message != null){ - putQueryParameter("Message", message); - } - } - - public String getBizId() { - return this.bizId; - } - - public void setBizId(String bizId) { - this.bizId = bizId; - if(bizId != null){ - putQueryParameter("BizId", bizId); - } - } - - @Override - public Class getResponseClass() { - return RefuseDemandResponse.class; - } - -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/RequestPayDemandResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/RequestPayDemandResponse.java deleted file mode 100644 index 9bc4f28712..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/RequestPayDemandResponse.java +++ /dev/null @@ -1,46 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.RequestPayDemandResponseUnmarshaller; -import com.aliyuncs.transform.UnmarshallerContext; - -/** - * @author auto create - * @version - */ -public class RequestPayDemandResponse extends AcsResponse { - - private String requestId; - - public String getRequestId() { - return this.requestId; - } - - public void setRequestId(String requestId) { - this.requestId = requestId; - } - - @Override - public RequestPayDemandResponse getInstance(UnmarshallerContext context) { - return RequestPayDemandResponseUnmarshaller.unmarshall(this, context); - } - - @Override - public boolean checkShowJsonItemName() { - return false; - } -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/ReserveIntlDomainResponse.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/ReserveIntlDomainResponse.java deleted file mode 100644 index b138cab479..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/ReserveIntlDomainResponse.java +++ /dev/null @@ -1,147 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import java.util.List; -import com.aliyuncs.AcsResponse; -import com.aliyuncs.domain.transform.v20180208.ReserveIntlDomainResponseUnmarshaller; -import com.aliyuncs.transform.UnmarshallerContext; - -/** - * @author auto create - * @version - */ -public class ReserveIntlDomainResponse extends AcsResponse { - - private String requestId; - - private Integer httpStatusCode; - - private String dynamicCode; - - private String dynamicMessage; - - private String errorMsg; - - private String errorCode; - - private Boolean success; - - private Boolean allowRetry; - - private String appName; - - private String auctionId; - - private List errorArgs; - - public String getRequestId() { - return this.requestId; - } - - public void setRequestId(String requestId) { - this.requestId = requestId; - } - - public Integer getHttpStatusCode() { - return this.httpStatusCode; - } - - public void setHttpStatusCode(Integer httpStatusCode) { - this.httpStatusCode = httpStatusCode; - } - - public String getDynamicCode() { - return this.dynamicCode; - } - - public void setDynamicCode(String dynamicCode) { - this.dynamicCode = dynamicCode; - } - - public String getDynamicMessage() { - return this.dynamicMessage; - } - - public void setDynamicMessage(String dynamicMessage) { - this.dynamicMessage = dynamicMessage; - } - - public String getErrorMsg() { - return this.errorMsg; - } - - public void setErrorMsg(String errorMsg) { - this.errorMsg = errorMsg; - } - - public String getErrorCode() { - return this.errorCode; - } - - public void setErrorCode(String errorCode) { - this.errorCode = errorCode; - } - - public Boolean getSuccess() { - return this.success; - } - - public void setSuccess(Boolean success) { - this.success = success; - } - - public Boolean getAllowRetry() { - return this.allowRetry; - } - - public void setAllowRetry(Boolean allowRetry) { - this.allowRetry = allowRetry; - } - - public String getAppName() { - return this.appName; - } - - public void setAppName(String appName) { - this.appName = appName; - } - - public String getAuctionId() { - return this.auctionId; - } - - public void setAuctionId(String auctionId) { - this.auctionId = auctionId; - } - - public List getErrorArgs() { - return this.errorArgs; - } - - public void setErrorArgs(List errorArgs) { - this.errorArgs = errorArgs; - } - - @Override - public ReserveIntlDomainResponse getInstance(UnmarshallerContext context) { - return ReserveIntlDomainResponseUnmarshaller.unmarshall(this, context); - } - - @Override - public boolean checkShowJsonItemName() { - return false; - } -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/SubmitPurchaseInfoRequest.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/SubmitPurchaseInfoRequest.java deleted file mode 100644 index 42c3b88b88..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/model/v20180208/SubmitPurchaseInfoRequest.java +++ /dev/null @@ -1,98 +0,0 @@ -/* - * 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.domain.model.v20180208; - -import com.aliyuncs.RpcAcsRequest; -import java.util.List; -import com.aliyuncs.http.ProtocolType; -import com.aliyuncs.http.MethodType; -import com.aliyuncs.domain.Endpoint; - -/** - * @author auto create - * @version - */ -public class SubmitPurchaseInfoRequest extends RpcAcsRequest { - - - private List purchaseProofss; - - private Double purchasePrice; - - private String purchaseCurrency; - - private String bizId; - public SubmitPurchaseInfoRequest() { - super("Domain", "2018-02-08", "SubmitPurchaseInfo", "domain"); - setProtocol(ProtocolType.HTTPS); - 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 getPurchaseProofss() { - return this.purchaseProofss; - } - - public void setPurchaseProofss(List purchaseProofss) { - this.purchaseProofss = purchaseProofss; - if (purchaseProofss != null) { - for (int i = 0; i < purchaseProofss.size(); i++) { - putBodyParameter("PurchaseProofs." + (i + 1) , purchaseProofss.get(i)); - } - } - } - - public Double getPurchasePrice() { - return this.purchasePrice; - } - - public void setPurchasePrice(Double purchasePrice) { - this.purchasePrice = purchasePrice; - if(purchasePrice != null){ - putBodyParameter("PurchasePrice", purchasePrice.toString()); - } - } - - public String getPurchaseCurrency() { - return this.purchaseCurrency; - } - - public void setPurchaseCurrency(String purchaseCurrency) { - this.purchaseCurrency = purchaseCurrency; - if(purchaseCurrency != null){ - putBodyParameter("PurchaseCurrency", purchaseCurrency); - } - } - - public String getBizId() { - return this.bizId; - } - - public void setBizId(String bizId) { - this.bizId = bizId; - if(bizId != null){ - putBodyParameter("BizId", bizId); - } - } - - @Override - public Class getResponseClass() { - return SubmitPurchaseInfoResponse.class; - } - -} diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/AcknowledgeTaskResultResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/AcknowledgeTaskResultResponseUnmarshaller.java new file mode 100644 index 0000000000..a290f4e146 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/AcknowledgeTaskResultResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.AcknowledgeTaskResultResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class AcknowledgeTaskResultResponseUnmarshaller { + + public static AcknowledgeTaskResultResponse unmarshall(AcknowledgeTaskResultResponse acknowledgeTaskResultResponse, UnmarshallerContext _ctx) { + + acknowledgeTaskResultResponse.setRequestId(_ctx.stringValue("AcknowledgeTaskResultResponse.RequestId")); + acknowledgeTaskResultResponse.setResult(_ctx.integerValue("AcknowledgeTaskResultResponse.Result")); + + return acknowledgeTaskResultResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/BatchFuzzyMatchDomainSensitiveWordResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/BatchFuzzyMatchDomainSensitiveWordResponseUnmarshaller.java new file mode 100644 index 0000000000..ce332eaa78 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/BatchFuzzyMatchDomainSensitiveWordResponseUnmarshaller.java @@ -0,0 +1,53 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.BatchFuzzyMatchDomainSensitiveWordResponse; +import com.aliyuncs.domain.model.v20180129.BatchFuzzyMatchDomainSensitiveWordResponse.SensitiveWordMatchResult; +import com.aliyuncs.domain.model.v20180129.BatchFuzzyMatchDomainSensitiveWordResponse.SensitiveWordMatchResult.MatchedSensitiveWord; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class BatchFuzzyMatchDomainSensitiveWordResponseUnmarshaller { + + public static BatchFuzzyMatchDomainSensitiveWordResponse unmarshall(BatchFuzzyMatchDomainSensitiveWordResponse batchFuzzyMatchDomainSensitiveWordResponse, UnmarshallerContext _ctx) { + + batchFuzzyMatchDomainSensitiveWordResponse.setRequestId(_ctx.stringValue("BatchFuzzyMatchDomainSensitiveWordResponse.RequestId")); + + List sensitiveWordMatchResultList = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("BatchFuzzyMatchDomainSensitiveWordResponse.SensitiveWordMatchResultList.Length"); i++) { + SensitiveWordMatchResult sensitiveWordMatchResult = new SensitiveWordMatchResult(); + sensitiveWordMatchResult.setKeyword(_ctx.stringValue("BatchFuzzyMatchDomainSensitiveWordResponse.SensitiveWordMatchResultList["+ i +"].Keyword")); + sensitiveWordMatchResult.setExist(_ctx.booleanValue("BatchFuzzyMatchDomainSensitiveWordResponse.SensitiveWordMatchResultList["+ i +"].Exist")); + + List matchedSentiveWords = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("BatchFuzzyMatchDomainSensitiveWordResponse.SensitiveWordMatchResultList["+ i +"].MatchedSentiveWords.Length"); j++) { + MatchedSensitiveWord matchedSensitiveWord = new MatchedSensitiveWord(); + matchedSensitiveWord.setWord(_ctx.stringValue("BatchFuzzyMatchDomainSensitiveWordResponse.SensitiveWordMatchResultList["+ i +"].MatchedSentiveWords["+ j +"].Word")); + + matchedSentiveWords.add(matchedSensitiveWord); + } + sensitiveWordMatchResult.setMatchedSentiveWords(matchedSentiveWords); + + sensitiveWordMatchResultList.add(sensitiveWordMatchResult); + } + batchFuzzyMatchDomainSensitiveWordResponse.setSensitiveWordMatchResultList(sensitiveWordMatchResultList); + + return batchFuzzyMatchDomainSensitiveWordResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CancelDomainVerificationResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CancelDomainVerificationResponseUnmarshaller.java new file mode 100644 index 0000000000..06d57d2675 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CancelDomainVerificationResponseUnmarshaller.java @@ -0,0 +1,29 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.CancelDomainVerificationResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class CancelDomainVerificationResponseUnmarshaller { + + public static CancelDomainVerificationResponse unmarshall(CancelDomainVerificationResponse cancelDomainVerificationResponse, UnmarshallerContext _ctx) { + + cancelDomainVerificationResponse.setRequestId(_ctx.stringValue("CancelDomainVerificationResponse.RequestId")); + + return cancelDomainVerificationResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/BidDomainResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CancelOperationAuditResponseUnmarshaller.java similarity index 57% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/BidDomainResponseUnmarshaller.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CancelOperationAuditResponseUnmarshaller.java index 1cbc8d6db9..b218634cb7 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/BidDomainResponseUnmarshaller.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CancelOperationAuditResponseUnmarshaller.java @@ -12,19 +12,18 @@ * limitations under the License. */ -package com.aliyuncs.domain.transform.v20180208; +package com.aliyuncs.domain.transform.v20180129; -import com.aliyuncs.domain.model.v20180208.BidDomainResponse; +import com.aliyuncs.domain.model.v20180129.CancelOperationAuditResponse; import com.aliyuncs.transform.UnmarshallerContext; -public class BidDomainResponseUnmarshaller { +public class CancelOperationAuditResponseUnmarshaller { - public static BidDomainResponse unmarshall(BidDomainResponse bidDomainResponse, UnmarshallerContext _ctx) { + public static CancelOperationAuditResponse unmarshall(CancelOperationAuditResponse cancelOperationAuditResponse, UnmarshallerContext _ctx) { - bidDomainResponse.setRequestId(_ctx.stringValue("BidDomainResponse.RequestId")); - bidDomainResponse.setAuctionId(_ctx.stringValue("BidDomainResponse.AuctionId")); + cancelOperationAuditResponse.setRequestId(_ctx.stringValue("CancelOperationAuditResponse.RequestId")); - return bidDomainResponse; + return cancelOperationAuditResponse; } } \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CancelQualificationVerificationResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CancelQualificationVerificationResponseUnmarshaller.java new file mode 100644 index 0000000000..19cbd889ad --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CancelQualificationVerificationResponseUnmarshaller.java @@ -0,0 +1,29 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.CancelQualificationVerificationResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class CancelQualificationVerificationResponseUnmarshaller { + + public static CancelQualificationVerificationResponse unmarshall(CancelQualificationVerificationResponse cancelQualificationVerificationResponse, UnmarshallerContext _ctx) { + + cancelQualificationVerificationResponse.setRequestId(_ctx.stringValue("CancelQualificationVerificationResponse.RequestId")); + + return cancelQualificationVerificationResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/FailDemandResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CancelTaskResponseUnmarshaller.java similarity index 63% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/FailDemandResponseUnmarshaller.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CancelTaskResponseUnmarshaller.java index 51834b5c41..0a4ee13de1 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/FailDemandResponseUnmarshaller.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CancelTaskResponseUnmarshaller.java @@ -12,18 +12,18 @@ * limitations under the License. */ -package com.aliyuncs.domain.transform.v20180208; +package com.aliyuncs.domain.transform.v20180129; -import com.aliyuncs.domain.model.v20180208.FailDemandResponse; +import com.aliyuncs.domain.model.v20180129.CancelTaskResponse; import com.aliyuncs.transform.UnmarshallerContext; -public class FailDemandResponseUnmarshaller { +public class CancelTaskResponseUnmarshaller { - public static FailDemandResponse unmarshall(FailDemandResponse failDemandResponse, UnmarshallerContext _ctx) { + public static CancelTaskResponse unmarshall(CancelTaskResponse cancelTaskResponse, UnmarshallerContext _ctx) { - failDemandResponse.setRequestId(_ctx.stringValue("FailDemandResponse.RequestId")); + cancelTaskResponse.setRequestId(_ctx.stringValue("CancelTaskResponse.RequestId")); - return failDemandResponse; + return cancelTaskResponse; } } \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/GetReserveDomainUrlResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/ChangeResourceGroupResponseUnmarshaller.java similarity index 54% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/GetReserveDomainUrlResponseUnmarshaller.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/ChangeResourceGroupResponseUnmarshaller.java index 0fd013d163..edd93d5f66 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/GetReserveDomainUrlResponseUnmarshaller.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/ChangeResourceGroupResponseUnmarshaller.java @@ -12,19 +12,19 @@ * limitations under the License. */ -package com.aliyuncs.domain.transform.v20180208; +package com.aliyuncs.domain.transform.v20180129; -import com.aliyuncs.domain.model.v20180208.GetReserveDomainUrlResponse; +import com.aliyuncs.domain.model.v20180129.ChangeResourceGroupResponse; import com.aliyuncs.transform.UnmarshallerContext; -public class GetReserveDomainUrlResponseUnmarshaller { +public class ChangeResourceGroupResponseUnmarshaller { - public static GetReserveDomainUrlResponse unmarshall(GetReserveDomainUrlResponse getReserveDomainUrlResponse, UnmarshallerContext _ctx) { + public static ChangeResourceGroupResponse unmarshall(ChangeResourceGroupResponse changeResourceGroupResponse, UnmarshallerContext _ctx) { - getReserveDomainUrlResponse.setRequestId(_ctx.stringValue("GetReserveDomainUrlResponse.RequestId")); - getReserveDomainUrlResponse.setUrl(_ctx.stringValue("GetReserveDomainUrlResponse.Url")); + changeResourceGroupResponse.setRequestId(_ctx.stringValue("ChangeResourceGroupResponse.RequestId")); + changeResourceGroupResponse.setResult(_ctx.stringValue("ChangeResourceGroupResponse.Result")); - return getReserveDomainUrlResponse; + return changeResourceGroupResponse; } } \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CheckDomainResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CheckDomainResponseUnmarshaller.java new file mode 100644 index 0000000000..f97c26173c --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CheckDomainResponseUnmarshaller.java @@ -0,0 +1,50 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.CheckDomainResponse; +import com.aliyuncs.domain.model.v20180129.CheckDomainResponse.PriceInfo; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class CheckDomainResponseUnmarshaller { + + public static CheckDomainResponse unmarshall(CheckDomainResponse checkDomainResponse, UnmarshallerContext _ctx) { + + checkDomainResponse.setRequestId(_ctx.stringValue("CheckDomainResponse.RequestId")); + checkDomainResponse.setAvail(_ctx.stringValue("CheckDomainResponse.Avail")); + checkDomainResponse.setPrice(_ctx.longValue("CheckDomainResponse.Price")); + checkDomainResponse.setDomainName(_ctx.stringValue("CheckDomainResponse.DomainName")); + checkDomainResponse.setPremium(_ctx.stringValue("CheckDomainResponse.Premium")); + checkDomainResponse.setDynamicCheck(_ctx.booleanValue("CheckDomainResponse.DynamicCheck")); + checkDomainResponse.setReason(_ctx.stringValue("CheckDomainResponse.Reason")); + + List staticPriceInfo = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("CheckDomainResponse.StaticPriceInfo.Length"); i++) { + PriceInfo priceInfo = new PriceInfo(); + priceInfo.setAction(_ctx.stringValue("CheckDomainResponse.StaticPriceInfo["+ i +"].action")); + priceInfo.setMoney(_ctx.doubleValue("CheckDomainResponse.StaticPriceInfo["+ i +"].money")); + priceInfo.setPeriod(_ctx.longValue("CheckDomainResponse.StaticPriceInfo["+ i +"].period")); + + staticPriceInfo.add(priceInfo); + } + checkDomainResponse.setStaticPriceInfo(staticPriceInfo); + + return checkDomainResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CheckDomainSunriseClaimResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CheckDomainSunriseClaimResponseUnmarshaller.java new file mode 100644 index 0000000000..701d1e7936 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CheckDomainSunriseClaimResponseUnmarshaller.java @@ -0,0 +1,31 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.CheckDomainSunriseClaimResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class CheckDomainSunriseClaimResponseUnmarshaller { + + public static CheckDomainSunriseClaimResponse unmarshall(CheckDomainSunriseClaimResponse checkDomainSunriseClaimResponse, UnmarshallerContext _ctx) { + + checkDomainSunriseClaimResponse.setRequestId(_ctx.stringValue("CheckDomainSunriseClaimResponse.RequestId")); + checkDomainSunriseClaimResponse.setClaimKey(_ctx.stringValue("CheckDomainSunriseClaimResponse.ClaimKey")); + checkDomainSunriseClaimResponse.setResult(_ctx.integerValue("CheckDomainSunriseClaimResponse.Result")); + + return checkDomainSunriseClaimResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CheckIntlFixPriceDomainStatusResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CheckIntlFixPriceDomainStatusResponseUnmarshaller.java new file mode 100644 index 0000000000..72eac7caa6 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CheckIntlFixPriceDomainStatusResponseUnmarshaller.java @@ -0,0 +1,40 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.CheckIntlFixPriceDomainStatusResponse; +import com.aliyuncs.domain.model.v20180129.CheckIntlFixPriceDomainStatusResponse.Module; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class CheckIntlFixPriceDomainStatusResponseUnmarshaller { + + public static CheckIntlFixPriceDomainStatusResponse unmarshall(CheckIntlFixPriceDomainStatusResponse checkIntlFixPriceDomainStatusResponse, UnmarshallerContext _ctx) { + + checkIntlFixPriceDomainStatusResponse.setRequestId(_ctx.stringValue("CheckIntlFixPriceDomainStatusResponse.RequestId")); + + Module module = new Module(); + module.setDomain(_ctx.stringValue("CheckIntlFixPriceDomainStatusResponse.Module.Domain")); + module.setPrice(_ctx.longValue("CheckIntlFixPriceDomainStatusResponse.Module.Price")); + module.setCurrency(_ctx.stringValue("CheckIntlFixPriceDomainStatusResponse.Module.Currency")); + module.setRegDate(_ctx.longValue("CheckIntlFixPriceDomainStatusResponse.Module.RegDate")); + module.setDeadDate(_ctx.longValue("CheckIntlFixPriceDomainStatusResponse.Module.DeadDate")); + module.setEndTime(_ctx.longValue("CheckIntlFixPriceDomainStatusResponse.Module.EndTime")); + module.setPremium(_ctx.booleanValue("CheckIntlFixPriceDomainStatusResponse.Module.Premium")); + checkIntlFixPriceDomainStatusResponse.setModule(module); + + return checkIntlFixPriceDomainStatusResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CheckMaxYearOfServerLockResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CheckMaxYearOfServerLockResponseUnmarshaller.java new file mode 100644 index 0000000000..9a4bf10794 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CheckMaxYearOfServerLockResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.CheckMaxYearOfServerLockResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class CheckMaxYearOfServerLockResponseUnmarshaller { + + public static CheckMaxYearOfServerLockResponse unmarshall(CheckMaxYearOfServerLockResponse checkMaxYearOfServerLockResponse, UnmarshallerContext _ctx) { + + checkMaxYearOfServerLockResponse.setRequestId(_ctx.stringValue("CheckMaxYearOfServerLockResponse.RequestId")); + checkMaxYearOfServerLockResponse.setMaxYear(_ctx.integerValue("CheckMaxYearOfServerLockResponse.MaxYear")); + + return checkMaxYearOfServerLockResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CheckProcessingServerLockApplyResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CheckProcessingServerLockApplyResponseUnmarshaller.java new file mode 100644 index 0000000000..04a0768e7a --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CheckProcessingServerLockApplyResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.CheckProcessingServerLockApplyResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class CheckProcessingServerLockApplyResponseUnmarshaller { + + public static CheckProcessingServerLockApplyResponse unmarshall(CheckProcessingServerLockApplyResponse checkProcessingServerLockApplyResponse, UnmarshallerContext _ctx) { + + checkProcessingServerLockApplyResponse.setRequestId(_ctx.stringValue("CheckProcessingServerLockApplyResponse.RequestId")); + checkProcessingServerLockApplyResponse.setExists(_ctx.booleanValue("CheckProcessingServerLockApplyResponse.Exists")); + + return checkProcessingServerLockApplyResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CheckTransferInFeasibilityResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CheckTransferInFeasibilityResponseUnmarshaller.java new file mode 100644 index 0000000000..e4dbc23bce --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CheckTransferInFeasibilityResponseUnmarshaller.java @@ -0,0 +1,33 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.CheckTransferInFeasibilityResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class CheckTransferInFeasibilityResponseUnmarshaller { + + public static CheckTransferInFeasibilityResponse unmarshall(CheckTransferInFeasibilityResponse checkTransferInFeasibilityResponse, UnmarshallerContext _ctx) { + + checkTransferInFeasibilityResponse.setRequestId(_ctx.stringValue("CheckTransferInFeasibilityResponse.RequestId")); + checkTransferInFeasibilityResponse.setCanTransfer(_ctx.booleanValue("CheckTransferInFeasibilityResponse.CanTransfer")); + checkTransferInFeasibilityResponse.setMessage(_ctx.stringValue("CheckTransferInFeasibilityResponse.Message")); + checkTransferInFeasibilityResponse.setProductId(_ctx.stringValue("CheckTransferInFeasibilityResponse.ProductId")); + checkTransferInFeasibilityResponse.setCode(_ctx.stringValue("CheckTransferInFeasibilityResponse.Code")); + + return checkTransferInFeasibilityResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/ConfirmTransferInEmailResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/ConfirmTransferInEmailResponseUnmarshaller.java new file mode 100644 index 0000000000..6a3bea9a74 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/ConfirmTransferInEmailResponseUnmarshaller.java @@ -0,0 +1,44 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.ConfirmTransferInEmailResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class ConfirmTransferInEmailResponseUnmarshaller { + + public static ConfirmTransferInEmailResponse unmarshall(ConfirmTransferInEmailResponse confirmTransferInEmailResponse, UnmarshallerContext _ctx) { + + confirmTransferInEmailResponse.setRequestId(_ctx.stringValue("ConfirmTransferInEmailResponse.RequestId")); + + List successList = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("ConfirmTransferInEmailResponse.SuccessList.Length"); i++) { + successList.add(_ctx.stringValue("ConfirmTransferInEmailResponse.SuccessList["+ i +"]")); + } + confirmTransferInEmailResponse.setSuccessList(successList); + + List failList = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("ConfirmTransferInEmailResponse.FailList.Length"); i++) { + failList.add(_ctx.stringValue("ConfirmTransferInEmailResponse.FailList["+ i +"]")); + } + confirmTransferInEmailResponse.setFailList(failList); + + return confirmTransferInEmailResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CreateIntlFixedPriceDomainOrderResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CreateIntlFixedPriceDomainOrderResponseUnmarshaller.java new file mode 100644 index 0000000000..3e6a13013f --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/CreateIntlFixedPriceDomainOrderResponseUnmarshaller.java @@ -0,0 +1,37 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.CreateIntlFixedPriceDomainOrderResponse; +import com.aliyuncs.domain.model.v20180129.CreateIntlFixedPriceDomainOrderResponse.Module; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class CreateIntlFixedPriceDomainOrderResponseUnmarshaller { + + public static CreateIntlFixedPriceDomainOrderResponse unmarshall(CreateIntlFixedPriceDomainOrderResponse createIntlFixedPriceDomainOrderResponse, UnmarshallerContext _ctx) { + + createIntlFixedPriceDomainOrderResponse.setRequestId(_ctx.stringValue("CreateIntlFixedPriceDomainOrderResponse.RequestId")); + + Module module = new Module(); + module.setDomain(_ctx.stringValue("CreateIntlFixedPriceDomainOrderResponse.Module.Domain")); + module.setOrderNo(_ctx.stringValue("CreateIntlFixedPriceDomainOrderResponse.Module.OrderNo")); + module.setPayPrice(_ctx.longValue("CreateIntlFixedPriceDomainOrderResponse.Module.PayPrice")); + module.setPayUrl(_ctx.stringValue("CreateIntlFixedPriceDomainOrderResponse.Module.PayUrl")); + createIntlFixedPriceDomainOrderResponse.setModule(module); + + return createIntlFixedPriceDomainOrderResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/DeleteContactTemplatesResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/DeleteContactTemplatesResponseUnmarshaller.java new file mode 100644 index 0000000000..785cf34d52 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/DeleteContactTemplatesResponseUnmarshaller.java @@ -0,0 +1,29 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.DeleteContactTemplatesResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class DeleteContactTemplatesResponseUnmarshaller { + + public static DeleteContactTemplatesResponse unmarshall(DeleteContactTemplatesResponse deleteContactTemplatesResponse, UnmarshallerContext _ctx) { + + deleteContactTemplatesResponse.setRequestId(_ctx.stringValue("DeleteContactTemplatesResponse.RequestId")); + + return deleteContactTemplatesResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/RecordDemandResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/DeleteDomainGroupResponseUnmarshaller.java similarity index 61% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/RecordDemandResponseUnmarshaller.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/DeleteDomainGroupResponseUnmarshaller.java index 2c317a3988..c1f45baf34 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/RecordDemandResponseUnmarshaller.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/DeleteDomainGroupResponseUnmarshaller.java @@ -12,18 +12,18 @@ * limitations under the License. */ -package com.aliyuncs.domain.transform.v20180208; +package com.aliyuncs.domain.transform.v20180129; -import com.aliyuncs.domain.model.v20180208.RecordDemandResponse; +import com.aliyuncs.domain.model.v20180129.DeleteDomainGroupResponse; import com.aliyuncs.transform.UnmarshallerContext; -public class RecordDemandResponseUnmarshaller { +public class DeleteDomainGroupResponseUnmarshaller { - public static RecordDemandResponse unmarshall(RecordDemandResponse recordDemandResponse, UnmarshallerContext _ctx) { + public static DeleteDomainGroupResponse unmarshall(DeleteDomainGroupResponse deleteDomainGroupResponse, UnmarshallerContext _ctx) { - recordDemandResponse.setRequestId(_ctx.stringValue("RecordDemandResponse.RequestId")); + deleteDomainGroupResponse.setRequestId(_ctx.stringValue("DeleteDomainGroupResponse.RequestId")); - return recordDemandResponse; + return deleteDomainGroupResponse; } } \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/DeleteEmailVerificationResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/DeleteEmailVerificationResponseUnmarshaller.java new file mode 100644 index 0000000000..a698b717c4 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/DeleteEmailVerificationResponseUnmarshaller.java @@ -0,0 +1,55 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.DeleteEmailVerificationResponse; +import com.aliyuncs.domain.model.v20180129.DeleteEmailVerificationResponse.SendResult; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class DeleteEmailVerificationResponseUnmarshaller { + + public static DeleteEmailVerificationResponse unmarshall(DeleteEmailVerificationResponse deleteEmailVerificationResponse, UnmarshallerContext _ctx) { + + deleteEmailVerificationResponse.setRequestId(_ctx.stringValue("DeleteEmailVerificationResponse.RequestId")); + + List successList = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("DeleteEmailVerificationResponse.SuccessList.Length"); i++) { + SendResult sendResult = new SendResult(); + sendResult.setEmail(_ctx.stringValue("DeleteEmailVerificationResponse.SuccessList["+ i +"].Email")); + sendResult.setCode(_ctx.stringValue("DeleteEmailVerificationResponse.SuccessList["+ i +"].Code")); + sendResult.setMessage(_ctx.stringValue("DeleteEmailVerificationResponse.SuccessList["+ i +"].Message")); + + successList.add(sendResult); + } + deleteEmailVerificationResponse.setSuccessList(successList); + + List failList = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("DeleteEmailVerificationResponse.FailList.Length"); i++) { + SendResult sendResult1 = new SendResult(); + sendResult1.setEmail(_ctx.stringValue("DeleteEmailVerificationResponse.FailList["+ i +"].Email")); + sendResult1.setCode(_ctx.stringValue("DeleteEmailVerificationResponse.FailList["+ i +"].Code")); + sendResult1.setMessage(_ctx.stringValue("DeleteEmailVerificationResponse.FailList["+ i +"].Message")); + + failList.add(sendResult1); + } + deleteEmailVerificationResponse.setFailList(failList); + + return deleteEmailVerificationResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/AcceptDemandResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/DeleteRegistrantProfileResponseUnmarshaller.java similarity index 55% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/AcceptDemandResponseUnmarshaller.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/DeleteRegistrantProfileResponseUnmarshaller.java index d735157769..41d2befde4 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/AcceptDemandResponseUnmarshaller.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/DeleteRegistrantProfileResponseUnmarshaller.java @@ -12,19 +12,18 @@ * limitations under the License. */ -package com.aliyuncs.domain.transform.v20180208; +package com.aliyuncs.domain.transform.v20180129; -import com.aliyuncs.domain.model.v20180208.AcceptDemandResponse; +import com.aliyuncs.domain.model.v20180129.DeleteRegistrantProfileResponse; import com.aliyuncs.transform.UnmarshallerContext; -public class AcceptDemandResponseUnmarshaller { +public class DeleteRegistrantProfileResponseUnmarshaller { - public static AcceptDemandResponse unmarshall(AcceptDemandResponse acceptDemandResponse, UnmarshallerContext _ctx) { + public static DeleteRegistrantProfileResponse unmarshall(DeleteRegistrantProfileResponse deleteRegistrantProfileResponse, UnmarshallerContext _ctx) { - acceptDemandResponse.setRequestId(_ctx.stringValue("AcceptDemandResponse.RequestId")); - acceptDemandResponse.setBindUrl(_ctx.stringValue("AcceptDemandResponse.BindUrl")); + deleteRegistrantProfileResponse.setRequestId(_ctx.stringValue("DeleteRegistrantProfileResponse.RequestId")); - return acceptDemandResponse; + return deleteRegistrantProfileResponse; } } \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/SubmitPurchaseInfoResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/DomainSpecialBizCancelResponseUnmarshaller.java similarity index 62% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/SubmitPurchaseInfoResponseUnmarshaller.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/DomainSpecialBizCancelResponseUnmarshaller.java index ba7d18eeee..c3f69e13ae 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/SubmitPurchaseInfoResponseUnmarshaller.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/DomainSpecialBizCancelResponseUnmarshaller.java @@ -12,17 +12,17 @@ * limitations under the License. */ -package com.aliyuncs.domain.transform.v20180208; +package com.aliyuncs.domain.transform.v20180129; -import com.aliyuncs.domain.model.v20180208.SubmitPurchaseInfoResponse; +import com.aliyuncs.domain.model.v20180129.DomainSpecialBizCancelResponse; import com.aliyuncs.transform.UnmarshallerContext; -public class SubmitPurchaseInfoResponseUnmarshaller { +public class DomainSpecialBizCancelResponseUnmarshaller { - public static SubmitPurchaseInfoResponse unmarshall(SubmitPurchaseInfoResponse submitPurchaseInfoResponse, UnmarshallerContext _ctx) { + public static DomainSpecialBizCancelResponse unmarshall(DomainSpecialBizCancelResponse domainSpecialBizCancelResponse, UnmarshallerContext _ctx) { - return submitPurchaseInfoResponse; + return domainSpecialBizCancelResponse; } } \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/ChangeAuctionResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/EmailVerifiedResponseUnmarshaller.java similarity index 60% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/ChangeAuctionResponseUnmarshaller.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/EmailVerifiedResponseUnmarshaller.java index 7540de79a5..bd71823fcf 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/ChangeAuctionResponseUnmarshaller.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/EmailVerifiedResponseUnmarshaller.java @@ -12,18 +12,18 @@ * limitations under the License. */ -package com.aliyuncs.domain.transform.v20180208; +package com.aliyuncs.domain.transform.v20180129; -import com.aliyuncs.domain.model.v20180208.ChangeAuctionResponse; +import com.aliyuncs.domain.model.v20180129.EmailVerifiedResponse; import com.aliyuncs.transform.UnmarshallerContext; -public class ChangeAuctionResponseUnmarshaller { +public class EmailVerifiedResponseUnmarshaller { - public static ChangeAuctionResponse unmarshall(ChangeAuctionResponse changeAuctionResponse, UnmarshallerContext _ctx) { + public static EmailVerifiedResponse unmarshall(EmailVerifiedResponse emailVerifiedResponse, UnmarshallerContext _ctx) { - changeAuctionResponse.setRequestId(_ctx.stringValue("ChangeAuctionResponse.RequestId")); + emailVerifiedResponse.setRequestId(_ctx.stringValue("EmailVerifiedResponse.RequestId")); - return changeAuctionResponse; + return emailVerifiedResponse; } } \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/FuzzyMatchDomainSensitiveWordResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/FuzzyMatchDomainSensitiveWordResponseUnmarshaller.java new file mode 100644 index 0000000000..ef2b41c894 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/FuzzyMatchDomainSensitiveWordResponseUnmarshaller.java @@ -0,0 +1,44 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.FuzzyMatchDomainSensitiveWordResponse; +import com.aliyuncs.domain.model.v20180129.FuzzyMatchDomainSensitiveWordResponse.MatchedSensitiveWord; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class FuzzyMatchDomainSensitiveWordResponseUnmarshaller { + + public static FuzzyMatchDomainSensitiveWordResponse unmarshall(FuzzyMatchDomainSensitiveWordResponse fuzzyMatchDomainSensitiveWordResponse, UnmarshallerContext _ctx) { + + fuzzyMatchDomainSensitiveWordResponse.setRequestId(_ctx.stringValue("FuzzyMatchDomainSensitiveWordResponse.RequestId")); + fuzzyMatchDomainSensitiveWordResponse.setExist(_ctx.booleanValue("FuzzyMatchDomainSensitiveWordResponse.Exist")); + fuzzyMatchDomainSensitiveWordResponse.setKeyword(_ctx.stringValue("FuzzyMatchDomainSensitiveWordResponse.Keyword")); + + List matchedSentiveWords = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("FuzzyMatchDomainSensitiveWordResponse.MatchedSentiveWords.Length"); i++) { + MatchedSensitiveWord matchedSensitiveWord = new MatchedSensitiveWord(); + matchedSensitiveWord.setWord(_ctx.stringValue("FuzzyMatchDomainSensitiveWordResponse.MatchedSentiveWords["+ i +"].Word")); + + matchedSentiveWords.add(matchedSensitiveWord); + } + fuzzyMatchDomainSensitiveWordResponse.setMatchedSentiveWords(matchedSentiveWords); + + return fuzzyMatchDomainSensitiveWordResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/GetIntlFixPriceDomainListUrlResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/GetIntlFixPriceDomainListUrlResponseUnmarshaller.java new file mode 100644 index 0000000000..a84efcd287 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/GetIntlFixPriceDomainListUrlResponseUnmarshaller.java @@ -0,0 +1,34 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.GetIntlFixPriceDomainListUrlResponse; +import com.aliyuncs.domain.model.v20180129.GetIntlFixPriceDomainListUrlResponse.Module; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class GetIntlFixPriceDomainListUrlResponseUnmarshaller { + + public static GetIntlFixPriceDomainListUrlResponse unmarshall(GetIntlFixPriceDomainListUrlResponse getIntlFixPriceDomainListUrlResponse, UnmarshallerContext _ctx) { + + getIntlFixPriceDomainListUrlResponse.setRequestId(_ctx.stringValue("GetIntlFixPriceDomainListUrlResponse.RequestId")); + + Module module = new Module(); + module.setDownloadUrl(_ctx.stringValue("GetIntlFixPriceDomainListUrlResponse.Module.DownloadUrl")); + getIntlFixPriceDomainListUrlResponse.setModule(module); + + return getIntlFixPriceDomainListUrlResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/GetOperationOssUploadPolicyResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/GetOperationOssUploadPolicyResponseUnmarshaller.java new file mode 100644 index 0000000000..71b9bc9bcc --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/GetOperationOssUploadPolicyResponseUnmarshaller.java @@ -0,0 +1,35 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.GetOperationOssUploadPolicyResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class GetOperationOssUploadPolicyResponseUnmarshaller { + + public static GetOperationOssUploadPolicyResponse unmarshall(GetOperationOssUploadPolicyResponse getOperationOssUploadPolicyResponse, UnmarshallerContext _ctx) { + + getOperationOssUploadPolicyResponse.setRequestId(_ctx.stringValue("GetOperationOssUploadPolicyResponse.RequestId")); + getOperationOssUploadPolicyResponse.setFileDir(_ctx.stringValue("GetOperationOssUploadPolicyResponse.FileDir")); + getOperationOssUploadPolicyResponse.setEncodedPolicy(_ctx.stringValue("GetOperationOssUploadPolicyResponse.EncodedPolicy")); + getOperationOssUploadPolicyResponse.setAccessid(_ctx.stringValue("GetOperationOssUploadPolicyResponse.Accessid")); + getOperationOssUploadPolicyResponse.setSignature(_ctx.stringValue("GetOperationOssUploadPolicyResponse.Signature")); + getOperationOssUploadPolicyResponse.setHost(_ctx.stringValue("GetOperationOssUploadPolicyResponse.Host")); + getOperationOssUploadPolicyResponse.setExpireTime(_ctx.stringValue("GetOperationOssUploadPolicyResponse.ExpireTime")); + + return getOperationOssUploadPolicyResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/GetQualificationUploadPolicyResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/GetQualificationUploadPolicyResponseUnmarshaller.java new file mode 100644 index 0000000000..5a5c3dda87 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/GetQualificationUploadPolicyResponseUnmarshaller.java @@ -0,0 +1,36 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.GetQualificationUploadPolicyResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class GetQualificationUploadPolicyResponseUnmarshaller { + + public static GetQualificationUploadPolicyResponse unmarshall(GetQualificationUploadPolicyResponse getQualificationUploadPolicyResponse, UnmarshallerContext _ctx) { + + getQualificationUploadPolicyResponse.setRequestId(_ctx.stringValue("GetQualificationUploadPolicyResponse.RequestId")); + getQualificationUploadPolicyResponse.setPolicy(_ctx.stringValue("GetQualificationUploadPolicyResponse.Policy")); + getQualificationUploadPolicyResponse.setExpire(_ctx.stringValue("GetQualificationUploadPolicyResponse.Expire")); + getQualificationUploadPolicyResponse.setAccessid(_ctx.stringValue("GetQualificationUploadPolicyResponse.Accessid")); + getQualificationUploadPolicyResponse.setSignature(_ctx.stringValue("GetQualificationUploadPolicyResponse.Signature")); + getQualificationUploadPolicyResponse.setHost(_ctx.stringValue("GetQualificationUploadPolicyResponse.Host")); + getQualificationUploadPolicyResponse.setPrefix(_ctx.stringValue("GetQualificationUploadPolicyResponse.Prefix")); + getQualificationUploadPolicyResponse.setDir(_ctx.stringValue("GetQualificationUploadPolicyResponse.Dir")); + + return getQualificationUploadPolicyResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/ListEmailVerificationResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/ListEmailVerificationResponseUnmarshaller.java new file mode 100644 index 0000000000..39868f3905 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/ListEmailVerificationResponseUnmarshaller.java @@ -0,0 +1,57 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.ListEmailVerificationResponse; +import com.aliyuncs.domain.model.v20180129.ListEmailVerificationResponse.EmailVerification; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class ListEmailVerificationResponseUnmarshaller { + + public static ListEmailVerificationResponse unmarshall(ListEmailVerificationResponse listEmailVerificationResponse, UnmarshallerContext _ctx) { + + listEmailVerificationResponse.setRequestId(_ctx.stringValue("ListEmailVerificationResponse.RequestId")); + listEmailVerificationResponse.setPrePage(_ctx.booleanValue("ListEmailVerificationResponse.PrePage")); + listEmailVerificationResponse.setCurrentPageNum(_ctx.integerValue("ListEmailVerificationResponse.CurrentPageNum")); + listEmailVerificationResponse.setPageSize(_ctx.integerValue("ListEmailVerificationResponse.PageSize")); + listEmailVerificationResponse.setTotalPageNum(_ctx.integerValue("ListEmailVerificationResponse.TotalPageNum")); + listEmailVerificationResponse.setTotalItemNum(_ctx.integerValue("ListEmailVerificationResponse.TotalItemNum")); + listEmailVerificationResponse.setNextPage(_ctx.booleanValue("ListEmailVerificationResponse.NextPage")); + + List data = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("ListEmailVerificationResponse.Data.Length"); i++) { + EmailVerification emailVerification = new EmailVerification(); + emailVerification.setVerificationTime(_ctx.stringValue("ListEmailVerificationResponse.Data["+ i +"].VerificationTime")); + emailVerification.setEmail(_ctx.stringValue("ListEmailVerificationResponse.Data["+ i +"].Email")); + emailVerification.setEmailVerificationNo(_ctx.stringValue("ListEmailVerificationResponse.Data["+ i +"].EmailVerificationNo")); + emailVerification.setUserId(_ctx.stringValue("ListEmailVerificationResponse.Data["+ i +"].UserId")); + emailVerification.setGmtCreate(_ctx.stringValue("ListEmailVerificationResponse.Data["+ i +"].GmtCreate")); + emailVerification.setVerificationStatus(_ctx.integerValue("ListEmailVerificationResponse.Data["+ i +"].VerificationStatus")); + emailVerification.setTokenSendTime(_ctx.stringValue("ListEmailVerificationResponse.Data["+ i +"].TokenSendTime")); + emailVerification.setSendIp(_ctx.stringValue("ListEmailVerificationResponse.Data["+ i +"].SendIp")); + emailVerification.setGmtModified(_ctx.stringValue("ListEmailVerificationResponse.Data["+ i +"].GmtModified")); + emailVerification.setConfirmIp(_ctx.stringValue("ListEmailVerificationResponse.Data["+ i +"].ConfirmIp")); + + data.add(emailVerification); + } + listEmailVerificationResponse.setData(data); + + return listEmailVerificationResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/ListServerLockResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/ListServerLockResponseUnmarshaller.java new file mode 100644 index 0000000000..86cd5b301b --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/ListServerLockResponseUnmarshaller.java @@ -0,0 +1,57 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.ListServerLockResponse; +import com.aliyuncs.domain.model.v20180129.ListServerLockResponse.QueryTransferInResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class ListServerLockResponseUnmarshaller { + + public static ListServerLockResponse unmarshall(ListServerLockResponse listServerLockResponse, UnmarshallerContext _ctx) { + + listServerLockResponse.setRequestId(_ctx.stringValue("ListServerLockResponse.RequestId")); + listServerLockResponse.setPrePage(_ctx.booleanValue("ListServerLockResponse.PrePage")); + listServerLockResponse.setCurrentPageNum(_ctx.integerValue("ListServerLockResponse.CurrentPageNum")); + listServerLockResponse.setPageSize(_ctx.integerValue("ListServerLockResponse.PageSize")); + listServerLockResponse.setTotalPageNum(_ctx.integerValue("ListServerLockResponse.TotalPageNum")); + listServerLockResponse.setTotalItemNum(_ctx.integerValue("ListServerLockResponse.TotalItemNum")); + listServerLockResponse.setNextPage(_ctx.booleanValue("ListServerLockResponse.NextPage")); + + List data = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("ListServerLockResponse.Data.Length"); i++) { + QueryTransferInResponse queryTransferInResponse = new QueryTransferInResponse(); + queryTransferInResponse.setServerLockStatus(_ctx.stringValue("ListServerLockResponse.Data["+ i +"].ServerLockStatus")); + queryTransferInResponse.setLockInstanceId(_ctx.stringValue("ListServerLockResponse.Data["+ i +"].LockInstanceId")); + queryTransferInResponse.setUserId(_ctx.stringValue("ListServerLockResponse.Data["+ i +"].UserId")); + queryTransferInResponse.setGmtCreate(_ctx.stringValue("ListServerLockResponse.Data["+ i +"].GmtCreate")); + queryTransferInResponse.setExpireDate(_ctx.stringValue("ListServerLockResponse.Data["+ i +"].ExpireDate")); + queryTransferInResponse.setStartDate(_ctx.stringValue("ListServerLockResponse.Data["+ i +"].StartDate")); + queryTransferInResponse.setLockProductId(_ctx.stringValue("ListServerLockResponse.Data["+ i +"].LockProductId")); + queryTransferInResponse.setDomainInstanceId(_ctx.stringValue("ListServerLockResponse.Data["+ i +"].DomainInstanceId")); + queryTransferInResponse.setGmtModified(_ctx.stringValue("ListServerLockResponse.Data["+ i +"].GmtModified")); + queryTransferInResponse.setDomainName(_ctx.stringValue("ListServerLockResponse.Data["+ i +"].DomainName")); + + data.add(queryTransferInResponse); + } + listServerLockResponse.setData(data); + + return listServerLockResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/LookupTmchNoticeResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/LookupTmchNoticeResponseUnmarshaller.java new file mode 100644 index 0000000000..630721132a --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/LookupTmchNoticeResponseUnmarshaller.java @@ -0,0 +1,118 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.LookupTmchNoticeResponse; +import com.aliyuncs.domain.model.v20180129.LookupTmchNoticeResponse.Claim; +import com.aliyuncs.domain.model.v20180129.LookupTmchNoticeResponse.Claim.ClassDesc; +import com.aliyuncs.domain.model.v20180129.LookupTmchNoticeResponse.Claim.Contact; +import com.aliyuncs.domain.model.v20180129.LookupTmchNoticeResponse.Claim.Contact.Addr; +import com.aliyuncs.domain.model.v20180129.LookupTmchNoticeResponse.Claim.Holder; +import com.aliyuncs.domain.model.v20180129.LookupTmchNoticeResponse.Claim.Holder.Addr1; +import com.aliyuncs.domain.model.v20180129.LookupTmchNoticeResponse.Claim.JurDesc; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class LookupTmchNoticeResponseUnmarshaller { + + public static LookupTmchNoticeResponse unmarshall(LookupTmchNoticeResponse lookupTmchNoticeResponse, UnmarshallerContext _ctx) { + + lookupTmchNoticeResponse.setRequestId(_ctx.stringValue("LookupTmchNoticeResponse.RequestId")); + lookupTmchNoticeResponse.setLabel(_ctx.stringValue("LookupTmchNoticeResponse.Label")); + lookupTmchNoticeResponse.setId(_ctx.longValue("LookupTmchNoticeResponse.Id")); + lookupTmchNoticeResponse.setNotBefore(_ctx.stringValue("LookupTmchNoticeResponse.NotBefore")); + lookupTmchNoticeResponse.setNotAfter(_ctx.stringValue("LookupTmchNoticeResponse.NotAfter")); + + List claims = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("LookupTmchNoticeResponse.Claims.Length"); i++) { + Claim claim = new Claim(); + claim.setGoodsAndServices(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].GoodsAndServices")); + claim.setMarkName(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].MarkName")); + + JurDesc jurDesc = new JurDesc(); + jurDesc.setJurCC(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].JurDesc.JurCC")); + jurDesc.setDesc(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].JurDesc.Desc")); + claim.setJurDesc(jurDesc); + + List contacts = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("LookupTmchNoticeResponse.Claims["+ i +"].Contacts.Length"); j++) { + Contact contact = new Contact(); + contact.setType(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].Contacts["+ j +"].Type")); + contact.setVoice(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].Contacts["+ j +"].Voice")); + contact.setEmail(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].Contacts["+ j +"].Email")); + contact.setFax(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].Contacts["+ j +"].Fax")); + contact.setOrg(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].Contacts["+ j +"].Org")); + contact.setName(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].Contacts["+ j +"].Name")); + + Addr addr = new Addr(); + addr.setCc(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].Contacts["+ j +"].Addr.Cc")); + addr.setSp(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].Contacts["+ j +"].Addr.Sp")); + addr.setPc(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].Contacts["+ j +"].Addr.Pc")); + addr.setCity(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].Contacts["+ j +"].Addr.City")); + + List street = new ArrayList(); + for (int k = 0; k < _ctx.lengthValue("LookupTmchNoticeResponse.Claims["+ i +"].Contacts["+ j +"].Addr.Street.Length"); k++) { + street.add(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].Contacts["+ j +"].Addr.Street["+ k +"]")); + } + addr.setStreet(street); + contact.setAddr(addr); + + contacts.add(contact); + } + claim.setContacts(contacts); + + List classDescs = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("LookupTmchNoticeResponse.Claims["+ i +"].ClassDescs.Length"); j++) { + ClassDesc classDesc = new ClassDesc(); + classDesc.setClassNum(_ctx.integerValue("LookupTmchNoticeResponse.Claims["+ i +"].ClassDescs["+ j +"].ClassNum")); + classDesc.setDesc(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].ClassDescs["+ j +"].Desc")); + + classDescs.add(classDesc); + } + claim.setClassDescs(classDescs); + + List holders = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("LookupTmchNoticeResponse.Claims["+ i +"].Holders.Length"); j++) { + Holder holder = new Holder(); + holder.setEntitlement(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].Holders["+ j +"].Entitlement")); + holder.setOrg(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].Holders["+ j +"].Org")); + + Addr1 addr1 = new Addr1(); + addr1.setCc(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].Holders["+ j +"].Addr.Cc")); + addr1.setSp(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].Holders["+ j +"].Addr.Sp")); + addr1.setPc(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].Holders["+ j +"].Addr.Pc")); + addr1.setCity(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].Holders["+ j +"].Addr.City")); + + List street2 = new ArrayList(); + for (int k = 0; k < _ctx.lengthValue("LookupTmchNoticeResponse.Claims["+ i +"].Holders["+ j +"].Addr.Street.Length"); k++) { + street2.add(_ctx.stringValue("LookupTmchNoticeResponse.Claims["+ i +"].Holders["+ j +"].Addr.Street["+ k +"]")); + } + addr1.setStreet2(street2); + holder.setAddr1(addr1); + + holders.add(holder); + } + claim.setHolders(holders); + + claims.add(claim); + } + lookupTmchNoticeResponse.setClaims(claims); + + return lookupTmchNoticeResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/PollTaskResultResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/PollTaskResultResponseUnmarshaller.java new file mode 100644 index 0000000000..646d5f00a0 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/PollTaskResultResponseUnmarshaller.java @@ -0,0 +1,60 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.PollTaskResultResponse; +import com.aliyuncs.domain.model.v20180129.PollTaskResultResponse.TaskDetail; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class PollTaskResultResponseUnmarshaller { + + public static PollTaskResultResponse unmarshall(PollTaskResultResponse pollTaskResultResponse, UnmarshallerContext _ctx) { + + pollTaskResultResponse.setRequestId(_ctx.stringValue("PollTaskResultResponse.RequestId")); + pollTaskResultResponse.setPrePage(_ctx.booleanValue("PollTaskResultResponse.PrePage")); + pollTaskResultResponse.setCurrentPageNum(_ctx.integerValue("PollTaskResultResponse.CurrentPageNum")); + pollTaskResultResponse.setPageSize(_ctx.integerValue("PollTaskResultResponse.PageSize")); + pollTaskResultResponse.setTotalPageNum(_ctx.integerValue("PollTaskResultResponse.TotalPageNum")); + pollTaskResultResponse.setTotalItemNum(_ctx.integerValue("PollTaskResultResponse.TotalItemNum")); + pollTaskResultResponse.setNextPage(_ctx.booleanValue("PollTaskResultResponse.NextPage")); + + List data = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("PollTaskResultResponse.Data.Length"); i++) { + TaskDetail taskDetail = new TaskDetail(); + taskDetail.setUpdateTime(_ctx.stringValue("PollTaskResultResponse.Data["+ i +"].UpdateTime")); + taskDetail.setTaskDetailNo(_ctx.stringValue("PollTaskResultResponse.Data["+ i +"].TaskDetailNo")); + taskDetail.setCreateTime(_ctx.stringValue("PollTaskResultResponse.Data["+ i +"].CreateTime")); + taskDetail.setInstanceId(_ctx.stringValue("PollTaskResultResponse.Data["+ i +"].InstanceId")); + taskDetail.setDomainName(_ctx.stringValue("PollTaskResultResponse.Data["+ i +"].DomainName")); + taskDetail.setTaskType(_ctx.stringValue("PollTaskResultResponse.Data["+ i +"].TaskType")); + taskDetail.setTaskNo(_ctx.stringValue("PollTaskResultResponse.Data["+ i +"].TaskNo")); + taskDetail.setTaskResult(_ctx.stringValue("PollTaskResultResponse.Data["+ i +"].TaskResult")); + taskDetail.setTaskStatusCode(_ctx.integerValue("PollTaskResultResponse.Data["+ i +"].TaskStatusCode")); + taskDetail.setTaskStatus(_ctx.stringValue("PollTaskResultResponse.Data["+ i +"].TaskStatus")); + taskDetail.setTaskTypeDescription(_ctx.stringValue("PollTaskResultResponse.Data["+ i +"].TaskTypeDescription")); + taskDetail.setTryCount(_ctx.integerValue("PollTaskResultResponse.Data["+ i +"].TryCount")); + taskDetail.setErrorMsg(_ctx.stringValue("PollTaskResultResponse.Data["+ i +"].ErrorMsg")); + + data.add(taskDetail); + } + pollTaskResultResponse.setData(data); + + return pollTaskResultResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryAdvancedDomainListResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryAdvancedDomainListResponseUnmarshaller.java new file mode 100644 index 0000000000..00fb93cecf --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryAdvancedDomainListResponseUnmarshaller.java @@ -0,0 +1,85 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryAdvancedDomainListResponse; +import com.aliyuncs.domain.model.v20180129.QueryAdvancedDomainListResponse.Domain; +import com.aliyuncs.domain.model.v20180129.QueryAdvancedDomainListResponse.Domain.TagItem; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryAdvancedDomainListResponseUnmarshaller { + + public static QueryAdvancedDomainListResponse unmarshall(QueryAdvancedDomainListResponse queryAdvancedDomainListResponse, UnmarshallerContext _ctx) { + + queryAdvancedDomainListResponse.setRequestId(_ctx.stringValue("QueryAdvancedDomainListResponse.RequestId")); + queryAdvancedDomainListResponse.setPrePage(_ctx.booleanValue("QueryAdvancedDomainListResponse.PrePage")); + queryAdvancedDomainListResponse.setCurrentPageNum(_ctx.integerValue("QueryAdvancedDomainListResponse.CurrentPageNum")); + queryAdvancedDomainListResponse.setPageSize(_ctx.integerValue("QueryAdvancedDomainListResponse.PageSize")); + queryAdvancedDomainListResponse.setTotalPageNum(_ctx.integerValue("QueryAdvancedDomainListResponse.TotalPageNum")); + queryAdvancedDomainListResponse.setTotalItemNum(_ctx.integerValue("QueryAdvancedDomainListResponse.TotalItemNum")); + queryAdvancedDomainListResponse.setNextPage(_ctx.booleanValue("QueryAdvancedDomainListResponse.NextPage")); + + List data = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryAdvancedDomainListResponse.Data.Length"); i++) { + Domain domain = new Domain(); + domain.setDomainAuditStatus(_ctx.stringValue("QueryAdvancedDomainListResponse.Data["+ i +"].DomainAuditStatus")); + domain.setDomainGroupId(_ctx.stringValue("QueryAdvancedDomainListResponse.Data["+ i +"].DomainGroupId")); + domain.setRemark(_ctx.stringValue("QueryAdvancedDomainListResponse.Data["+ i +"].Remark")); + domain.setDomainGroupName(_ctx.stringValue("QueryAdvancedDomainListResponse.Data["+ i +"].DomainGroupName")); + domain.setZhRegistrantOrganization(_ctx.stringValue("QueryAdvancedDomainListResponse.Data["+ i +"].ZhRegistrantOrganization")); + domain.setRegistrantOrganization(_ctx.stringValue("QueryAdvancedDomainListResponse.Data["+ i +"].RegistrantOrganization")); + domain.setRegistrationDate(_ctx.stringValue("QueryAdvancedDomainListResponse.Data["+ i +"].RegistrationDate")); + domain.setInstanceId(_ctx.stringValue("QueryAdvancedDomainListResponse.Data["+ i +"].InstanceId")); + domain.setDomainName(_ctx.stringValue("QueryAdvancedDomainListResponse.Data["+ i +"].DomainName")); + domain.setExpirationDateStatus(_ctx.stringValue("QueryAdvancedDomainListResponse.Data["+ i +"].ExpirationDateStatus")); + domain.setExpirationDate(_ctx.stringValue("QueryAdvancedDomainListResponse.Data["+ i +"].ExpirationDate")); + domain.setEmail(_ctx.stringValue("QueryAdvancedDomainListResponse.Data["+ i +"].Email")); + domain.setRegistrantType(_ctx.stringValue("QueryAdvancedDomainListResponse.Data["+ i +"].RegistrantType")); + domain.setExpirationDateLong(_ctx.longValue("QueryAdvancedDomainListResponse.Data["+ i +"].ExpirationDateLong")); + domain.setExpirationCurrDateDiff(_ctx.integerValue("QueryAdvancedDomainListResponse.Data["+ i +"].ExpirationCurrDateDiff")); + domain.setPremium(_ctx.booleanValue("QueryAdvancedDomainListResponse.Data["+ i +"].Premium")); + domain.setRegistrationDateLong(_ctx.longValue("QueryAdvancedDomainListResponse.Data["+ i +"].RegistrationDateLong")); + domain.setProductId(_ctx.stringValue("QueryAdvancedDomainListResponse.Data["+ i +"].ProductId")); + domain.setDomainStatus(_ctx.stringValue("QueryAdvancedDomainListResponse.Data["+ i +"].DomainStatus")); + domain.setDomainType(_ctx.stringValue("QueryAdvancedDomainListResponse.Data["+ i +"].DomainType")); + domain.setResourceGroupId(_ctx.stringValue("QueryAdvancedDomainListResponse.Data["+ i +"].ResourceGroupId")); + + List dnsList = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("QueryAdvancedDomainListResponse.Data["+ i +"].DnsList.Length"); j++) { + dnsList.add(_ctx.stringValue("QueryAdvancedDomainListResponse.Data["+ i +"].DnsList["+ j +"]")); + } + domain.setDnsList(dnsList); + + List tag = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("QueryAdvancedDomainListResponse.Data["+ i +"].Tag.Length"); j++) { + TagItem tagItem = new TagItem(); + tagItem.setKey(_ctx.stringValue("QueryAdvancedDomainListResponse.Data["+ i +"].Tag["+ j +"].Key")); + tagItem.setValue(_ctx.stringValue("QueryAdvancedDomainListResponse.Data["+ i +"].Tag["+ j +"].Value")); + + tag.add(tagItem); + } + domain.setTag(tag); + + data.add(domain); + } + queryAdvancedDomainListResponse.setData(data); + + return queryAdvancedDomainListResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryArtExtensionResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryArtExtensionResponseUnmarshaller.java new file mode 100644 index 0000000000..aaad39ab6c --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryArtExtensionResponseUnmarshaller.java @@ -0,0 +1,39 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.QueryArtExtensionResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryArtExtensionResponseUnmarshaller { + + public static QueryArtExtensionResponse unmarshall(QueryArtExtensionResponse queryArtExtensionResponse, UnmarshallerContext _ctx) { + + queryArtExtensionResponse.setRequestId(_ctx.stringValue("QueryArtExtensionResponse.RequestId")); + queryArtExtensionResponse.setObjectType(_ctx.stringValue("QueryArtExtensionResponse.ObjectType")); + queryArtExtensionResponse.setMaterialsAndTechniques(_ctx.stringValue("QueryArtExtensionResponse.MaterialsAndTechniques")); + queryArtExtensionResponse.setInscriptionsAndMarkings(_ctx.stringValue("QueryArtExtensionResponse.InscriptionsAndMarkings")); + queryArtExtensionResponse.setReference(_ctx.stringValue("QueryArtExtensionResponse.Reference")); + queryArtExtensionResponse.setDateOrPeriod(_ctx.stringValue("QueryArtExtensionResponse.DateOrPeriod")); + queryArtExtensionResponse.setDimensions(_ctx.stringValue("QueryArtExtensionResponse.Dimensions")); + queryArtExtensionResponse.setTitle(_ctx.stringValue("QueryArtExtensionResponse.Title")); + queryArtExtensionResponse.setFeatures(_ctx.stringValue("QueryArtExtensionResponse.Features")); + queryArtExtensionResponse.setSubject(_ctx.stringValue("QueryArtExtensionResponse.Subject")); + queryArtExtensionResponse.setMaker(_ctx.stringValue("QueryArtExtensionResponse.Maker")); + + return queryArtExtensionResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryChangeLogListResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryChangeLogListResponseUnmarshaller.java new file mode 100644 index 0000000000..96b4e4ff57 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryChangeLogListResponseUnmarshaller.java @@ -0,0 +1,54 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryChangeLogListResponse; +import com.aliyuncs.domain.model.v20180129.QueryChangeLogListResponse.ChangeLog; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryChangeLogListResponseUnmarshaller { + + public static QueryChangeLogListResponse unmarshall(QueryChangeLogListResponse queryChangeLogListResponse, UnmarshallerContext _ctx) { + + queryChangeLogListResponse.setRequestId(_ctx.stringValue("QueryChangeLogListResponse.RequestId")); + queryChangeLogListResponse.setPrePage(_ctx.booleanValue("QueryChangeLogListResponse.PrePage")); + queryChangeLogListResponse.setCurrentPageNum(_ctx.integerValue("QueryChangeLogListResponse.CurrentPageNum")); + queryChangeLogListResponse.setPageSize(_ctx.integerValue("QueryChangeLogListResponse.PageSize")); + queryChangeLogListResponse.setTotalPageNum(_ctx.integerValue("QueryChangeLogListResponse.TotalPageNum")); + queryChangeLogListResponse.setResultLimit(_ctx.booleanValue("QueryChangeLogListResponse.ResultLimit")); + queryChangeLogListResponse.setTotalItemNum(_ctx.integerValue("QueryChangeLogListResponse.TotalItemNum")); + queryChangeLogListResponse.setNextPage(_ctx.booleanValue("QueryChangeLogListResponse.NextPage")); + + List data = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryChangeLogListResponse.Data.Length"); i++) { + ChangeLog changeLog = new ChangeLog(); + changeLog.setOperation(_ctx.stringValue("QueryChangeLogListResponse.Data["+ i +"].Operation")); + changeLog.setTime(_ctx.stringValue("QueryChangeLogListResponse.Data["+ i +"].Time")); + changeLog.setResult(_ctx.stringValue("QueryChangeLogListResponse.Data["+ i +"].Result")); + changeLog.setDomainName(_ctx.stringValue("QueryChangeLogListResponse.Data["+ i +"].DomainName")); + changeLog.setOperationIPAddress(_ctx.stringValue("QueryChangeLogListResponse.Data["+ i +"].OperationIPAddress")); + changeLog.setDetails(_ctx.stringValue("QueryChangeLogListResponse.Data["+ i +"].Details")); + + data.add(changeLog); + } + queryChangeLogListResponse.setData(data); + + return queryChangeLogListResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryContactInfoResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryContactInfoResponseUnmarshaller.java new file mode 100644 index 0000000000..a3c8531049 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryContactInfoResponseUnmarshaller.java @@ -0,0 +1,46 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.QueryContactInfoResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryContactInfoResponseUnmarshaller { + + public static QueryContactInfoResponse unmarshall(QueryContactInfoResponse queryContactInfoResponse, UnmarshallerContext _ctx) { + + queryContactInfoResponse.setRequestId(_ctx.stringValue("QueryContactInfoResponse.RequestId")); + queryContactInfoResponse.setZhProvince(_ctx.stringValue("QueryContactInfoResponse.ZhProvince")); + queryContactInfoResponse.setEmail(_ctx.stringValue("QueryContactInfoResponse.Email")); + queryContactInfoResponse.setTelephone(_ctx.stringValue("QueryContactInfoResponse.Telephone")); + queryContactInfoResponse.setAddress(_ctx.stringValue("QueryContactInfoResponse.Address")); + queryContactInfoResponse.setPostalCode(_ctx.stringValue("QueryContactInfoResponse.PostalCode")); + queryContactInfoResponse.setZhRegistrantName(_ctx.stringValue("QueryContactInfoResponse.ZhRegistrantName")); + queryContactInfoResponse.setCity(_ctx.stringValue("QueryContactInfoResponse.City")); + queryContactInfoResponse.setCreateDate(_ctx.stringValue("QueryContactInfoResponse.CreateDate")); + queryContactInfoResponse.setProvince(_ctx.stringValue("QueryContactInfoResponse.Province")); + queryContactInfoResponse.setZhCity(_ctx.stringValue("QueryContactInfoResponse.ZhCity")); + queryContactInfoResponse.setRegistrantName(_ctx.stringValue("QueryContactInfoResponse.RegistrantName")); + queryContactInfoResponse.setZhRegistrantOrganization(_ctx.stringValue("QueryContactInfoResponse.ZhRegistrantOrganization")); + queryContactInfoResponse.setCountry(_ctx.stringValue("QueryContactInfoResponse.Country")); + queryContactInfoResponse.setRegistrantOrganization(_ctx.stringValue("QueryContactInfoResponse.RegistrantOrganization")); + queryContactInfoResponse.setTelExt(_ctx.stringValue("QueryContactInfoResponse.TelExt")); + queryContactInfoResponse.setTelArea(_ctx.stringValue("QueryContactInfoResponse.TelArea")); + queryContactInfoResponse.setZhAddress(_ctx.stringValue("QueryContactInfoResponse.ZhAddress")); + + return queryContactInfoResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDSRecordResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDSRecordResponseUnmarshaller.java new file mode 100644 index 0000000000..dd7a25188e --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDSRecordResponseUnmarshaller.java @@ -0,0 +1,45 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryDSRecordResponse; +import com.aliyuncs.domain.model.v20180129.QueryDSRecordResponse.DSRecord; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryDSRecordResponseUnmarshaller { + + public static QueryDSRecordResponse unmarshall(QueryDSRecordResponse queryDSRecordResponse, UnmarshallerContext _ctx) { + + queryDSRecordResponse.setRequestId(_ctx.stringValue("QueryDSRecordResponse.RequestId")); + + List dSRecordList = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryDSRecordResponse.DSRecordList.Length"); i++) { + DSRecord dSRecord = new DSRecord(); + dSRecord.setDigestType(_ctx.integerValue("QueryDSRecordResponse.DSRecordList["+ i +"].DigestType")); + dSRecord.setDigest(_ctx.stringValue("QueryDSRecordResponse.DSRecordList["+ i +"].Digest")); + dSRecord.setAlgorithm(_ctx.integerValue("QueryDSRecordResponse.DSRecordList["+ i +"].Algorithm")); + dSRecord.setKeyTag(_ctx.integerValue("QueryDSRecordResponse.DSRecordList["+ i +"].KeyTag")); + + dSRecordList.add(dSRecord); + } + queryDSRecordResponse.setDSRecordList(dSRecordList); + + return queryDSRecordResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDnsHostResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDnsHostResponseUnmarshaller.java new file mode 100644 index 0000000000..629071c714 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDnsHostResponseUnmarshaller.java @@ -0,0 +1,48 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryDnsHostResponse; +import com.aliyuncs.domain.model.v20180129.QueryDnsHostResponse.DnsHost; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryDnsHostResponseUnmarshaller { + + public static QueryDnsHostResponse unmarshall(QueryDnsHostResponse queryDnsHostResponse, UnmarshallerContext _ctx) { + + queryDnsHostResponse.setRequestId(_ctx.stringValue("QueryDnsHostResponse.RequestId")); + + List dnsHostList = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryDnsHostResponse.DnsHostList.Length"); i++) { + DnsHost dnsHost = new DnsHost(); + dnsHost.setDnsName(_ctx.stringValue("QueryDnsHostResponse.DnsHostList["+ i +"].DnsName")); + + List ipList = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("QueryDnsHostResponse.DnsHostList["+ i +"].IpList.Length"); j++) { + ipList.add(_ctx.stringValue("QueryDnsHostResponse.DnsHostList["+ i +"].IpList["+ j +"]")); + } + dnsHost.setIpList(ipList); + + dnsHostList.add(dnsHost); + } + queryDnsHostResponse.setDnsHostList(dnsHostList); + + return queryDnsHostResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainAdminDivisionResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainAdminDivisionResponseUnmarshaller.java new file mode 100644 index 0000000000..05fd967c72 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainAdminDivisionResponseUnmarshaller.java @@ -0,0 +1,52 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryDomainAdminDivisionResponse; +import com.aliyuncs.domain.model.v20180129.QueryDomainAdminDivisionResponse.AdminDivision; +import com.aliyuncs.domain.model.v20180129.QueryDomainAdminDivisionResponse.AdminDivision.ChildrenItem; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryDomainAdminDivisionResponseUnmarshaller { + + public static QueryDomainAdminDivisionResponse unmarshall(QueryDomainAdminDivisionResponse queryDomainAdminDivisionResponse, UnmarshallerContext _ctx) { + + queryDomainAdminDivisionResponse.setRequestId(_ctx.stringValue("QueryDomainAdminDivisionResponse.RequestId")); + + List adminDivisions = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryDomainAdminDivisionResponse.AdminDivisions.Length"); i++) { + AdminDivision adminDivision = new AdminDivision(); + adminDivision.setDivisionName(_ctx.stringValue("QueryDomainAdminDivisionResponse.AdminDivisions["+ i +"].DivisionName")); + + List children = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("QueryDomainAdminDivisionResponse.AdminDivisions["+ i +"].Children.Length"); j++) { + ChildrenItem childrenItem = new ChildrenItem(); + childrenItem.setChildDivisionName(_ctx.stringValue("QueryDomainAdminDivisionResponse.AdminDivisions["+ i +"].Children["+ j +"].ChildDivisionName")); + + children.add(childrenItem); + } + adminDivision.setChildren(children); + + adminDivisions.add(adminDivision); + } + queryDomainAdminDivisionResponse.setAdminDivisions(adminDivisions); + + return queryDomainAdminDivisionResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainByDomainNameResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainByDomainNameResponseUnmarshaller.java new file mode 100644 index 0000000000..663f9c7ab1 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainByDomainNameResponseUnmarshaller.java @@ -0,0 +1,80 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryDomainByDomainNameResponse; +import com.aliyuncs.domain.model.v20180129.QueryDomainByDomainNameResponse.TagItem; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryDomainByDomainNameResponseUnmarshaller { + + public static QueryDomainByDomainNameResponse unmarshall(QueryDomainByDomainNameResponse queryDomainByDomainNameResponse, UnmarshallerContext _ctx) { + + queryDomainByDomainNameResponse.setRequestId(_ctx.stringValue("QueryDomainByDomainNameResponse.RequestId")); + queryDomainByDomainNameResponse.setEmail(_ctx.stringValue("QueryDomainByDomainNameResponse.Email")); + queryDomainByDomainNameResponse.setRegistrationDate(_ctx.stringValue("QueryDomainByDomainNameResponse.RegistrationDate")); + queryDomainByDomainNameResponse.setRegistrationDateLong(_ctx.longValue("QueryDomainByDomainNameResponse.RegistrationDateLong")); + queryDomainByDomainNameResponse.setRealNameStatus(_ctx.stringValue("QueryDomainByDomainNameResponse.RealNameStatus")); + queryDomainByDomainNameResponse.setPremium(_ctx.booleanValue("QueryDomainByDomainNameResponse.Premium")); + queryDomainByDomainNameResponse.setDomainNameVerificationStatus(_ctx.stringValue("QueryDomainByDomainNameResponse.DomainNameVerificationStatus")); + queryDomainByDomainNameResponse.setExpirationDateLong(_ctx.longValue("QueryDomainByDomainNameResponse.ExpirationDateLong")); + queryDomainByDomainNameResponse.setTransferOutStatus(_ctx.stringValue("QueryDomainByDomainNameResponse.TransferOutStatus")); + queryDomainByDomainNameResponse.setZhRegistrantOrganization(_ctx.stringValue("QueryDomainByDomainNameResponse.ZhRegistrantOrganization")); + queryDomainByDomainNameResponse.setEmailVerificationClientHold(_ctx.booleanValue("QueryDomainByDomainNameResponse.EmailVerificationClientHold")); + queryDomainByDomainNameResponse.setEmailVerificationStatus(_ctx.integerValue("QueryDomainByDomainNameResponse.EmailVerificationStatus")); + queryDomainByDomainNameResponse.setRegistrantOrganization(_ctx.stringValue("QueryDomainByDomainNameResponse.RegistrantOrganization")); + queryDomainByDomainNameResponse.setTransferProhibitionLock(_ctx.stringValue("QueryDomainByDomainNameResponse.TransferProhibitionLock")); + queryDomainByDomainNameResponse.setDomainNameProxyService(_ctx.booleanValue("QueryDomainByDomainNameResponse.DomainNameProxyService")); + queryDomainByDomainNameResponse.setRegistrantType(_ctx.stringValue("QueryDomainByDomainNameResponse.RegistrantType")); + queryDomainByDomainNameResponse.setRegistrantUpdatingStatus(_ctx.stringValue("QueryDomainByDomainNameResponse.RegistrantUpdatingStatus")); + queryDomainByDomainNameResponse.setDomainName(_ctx.stringValue("QueryDomainByDomainNameResponse.DomainName")); + queryDomainByDomainNameResponse.setInstanceId(_ctx.stringValue("QueryDomainByDomainNameResponse.InstanceId")); + queryDomainByDomainNameResponse.setZhRegistrantName(_ctx.stringValue("QueryDomainByDomainNameResponse.ZhRegistrantName")); + queryDomainByDomainNameResponse.setExpirationDate(_ctx.stringValue("QueryDomainByDomainNameResponse.ExpirationDate")); + queryDomainByDomainNameResponse.setRegistrantName(_ctx.stringValue("QueryDomainByDomainNameResponse.RegistrantName")); + queryDomainByDomainNameResponse.setUserId(_ctx.stringValue("QueryDomainByDomainNameResponse.UserId")); + queryDomainByDomainNameResponse.setUpdateProhibitionLock(_ctx.stringValue("QueryDomainByDomainNameResponse.UpdateProhibitionLock")); + queryDomainByDomainNameResponse.setDomainGroupId(_ctx.longValue("QueryDomainByDomainNameResponse.DomainGroupId")); + queryDomainByDomainNameResponse.setRemark(_ctx.stringValue("QueryDomainByDomainNameResponse.Remark")); + queryDomainByDomainNameResponse.setDomainGroupName(_ctx.stringValue("QueryDomainByDomainNameResponse.DomainGroupName")); + queryDomainByDomainNameResponse.setExpirationDateStatus(_ctx.stringValue("QueryDomainByDomainNameResponse.ExpirationDateStatus")); + queryDomainByDomainNameResponse.setExpirationCurrDateDiff(_ctx.integerValue("QueryDomainByDomainNameResponse.ExpirationCurrDateDiff")); + queryDomainByDomainNameResponse.setDomainType(_ctx.stringValue("QueryDomainByDomainNameResponse.DomainType")); + queryDomainByDomainNameResponse.setDomainStatus(_ctx.stringValue("QueryDomainByDomainNameResponse.DomainStatus")); + queryDomainByDomainNameResponse.setResourceGroupId(_ctx.stringValue("QueryDomainByDomainNameResponse.ResourceGroupId")); + + List dnsList = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryDomainByDomainNameResponse.DnsList.Length"); i++) { + dnsList.add(_ctx.stringValue("QueryDomainByDomainNameResponse.DnsList["+ i +"]")); + } + queryDomainByDomainNameResponse.setDnsList(dnsList); + + List tag = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryDomainByDomainNameResponse.Tag.Length"); i++) { + TagItem tagItem = new TagItem(); + tagItem.setKey(_ctx.stringValue("QueryDomainByDomainNameResponse.Tag["+ i +"].Key")); + tagItem.setVaue(_ctx.stringValue("QueryDomainByDomainNameResponse.Tag["+ i +"].Vaue")); + + tag.add(tagItem); + } + queryDomainByDomainNameResponse.setTag(tag); + + return queryDomainByDomainNameResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainByInstanceIdResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainByInstanceIdResponseUnmarshaller.java new file mode 100644 index 0000000000..69f99d45e2 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainByInstanceIdResponseUnmarshaller.java @@ -0,0 +1,80 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryDomainByInstanceIdResponse; +import com.aliyuncs.domain.model.v20180129.QueryDomainByInstanceIdResponse.TagItem; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryDomainByInstanceIdResponseUnmarshaller { + + public static QueryDomainByInstanceIdResponse unmarshall(QueryDomainByInstanceIdResponse queryDomainByInstanceIdResponse, UnmarshallerContext _ctx) { + + queryDomainByInstanceIdResponse.setRequestId(_ctx.stringValue("QueryDomainByInstanceIdResponse.RequestId")); + queryDomainByInstanceIdResponse.setEmail(_ctx.stringValue("QueryDomainByInstanceIdResponse.Email")); + queryDomainByInstanceIdResponse.setRegistrationDate(_ctx.stringValue("QueryDomainByInstanceIdResponse.RegistrationDate")); + queryDomainByInstanceIdResponse.setRegistrationDateLong(_ctx.longValue("QueryDomainByInstanceIdResponse.RegistrationDateLong")); + queryDomainByInstanceIdResponse.setRealNameStatus(_ctx.stringValue("QueryDomainByInstanceIdResponse.RealNameStatus")); + queryDomainByInstanceIdResponse.setPremium(_ctx.booleanValue("QueryDomainByInstanceIdResponse.Premium")); + queryDomainByInstanceIdResponse.setDomainNameVerificationStatus(_ctx.stringValue("QueryDomainByInstanceIdResponse.DomainNameVerificationStatus")); + queryDomainByInstanceIdResponse.setExpirationDateLong(_ctx.longValue("QueryDomainByInstanceIdResponse.ExpirationDateLong")); + queryDomainByInstanceIdResponse.setTransferOutStatus(_ctx.stringValue("QueryDomainByInstanceIdResponse.TransferOutStatus")); + queryDomainByInstanceIdResponse.setZhRegistrantOrganization(_ctx.stringValue("QueryDomainByInstanceIdResponse.ZhRegistrantOrganization")); + queryDomainByInstanceIdResponse.setEmailVerificationClientHold(_ctx.booleanValue("QueryDomainByInstanceIdResponse.EmailVerificationClientHold")); + queryDomainByInstanceIdResponse.setEmailVerificationStatus(_ctx.integerValue("QueryDomainByInstanceIdResponse.EmailVerificationStatus")); + queryDomainByInstanceIdResponse.setRegistrantOrganization(_ctx.stringValue("QueryDomainByInstanceIdResponse.RegistrantOrganization")); + queryDomainByInstanceIdResponse.setTransferProhibitionLock(_ctx.stringValue("QueryDomainByInstanceIdResponse.TransferProhibitionLock")); + queryDomainByInstanceIdResponse.setDomainNameProxyService(_ctx.booleanValue("QueryDomainByInstanceIdResponse.DomainNameProxyService")); + queryDomainByInstanceIdResponse.setRegistrantType(_ctx.stringValue("QueryDomainByInstanceIdResponse.RegistrantType")); + queryDomainByInstanceIdResponse.setRegistrantUpdatingStatus(_ctx.stringValue("QueryDomainByInstanceIdResponse.RegistrantUpdatingStatus")); + queryDomainByInstanceIdResponse.setDomainName(_ctx.stringValue("QueryDomainByInstanceIdResponse.DomainName")); + queryDomainByInstanceIdResponse.setInstanceId(_ctx.stringValue("QueryDomainByInstanceIdResponse.InstanceId")); + queryDomainByInstanceIdResponse.setZhRegistrantName(_ctx.stringValue("QueryDomainByInstanceIdResponse.ZhRegistrantName")); + queryDomainByInstanceIdResponse.setExpirationDate(_ctx.stringValue("QueryDomainByInstanceIdResponse.ExpirationDate")); + queryDomainByInstanceIdResponse.setRegistrantName(_ctx.stringValue("QueryDomainByInstanceIdResponse.RegistrantName")); + queryDomainByInstanceIdResponse.setUserId(_ctx.stringValue("QueryDomainByInstanceIdResponse.UserId")); + queryDomainByInstanceIdResponse.setUpdateProhibitionLock(_ctx.stringValue("QueryDomainByInstanceIdResponse.UpdateProhibitionLock")); + queryDomainByInstanceIdResponse.setDomainGroupId(_ctx.longValue("QueryDomainByInstanceIdResponse.DomainGroupId")); + queryDomainByInstanceIdResponse.setRemark(_ctx.stringValue("QueryDomainByInstanceIdResponse.Remark")); + queryDomainByInstanceIdResponse.setDomainGroupName(_ctx.stringValue("QueryDomainByInstanceIdResponse.DomainGroupName")); + queryDomainByInstanceIdResponse.setExpirationDateStatus(_ctx.stringValue("QueryDomainByInstanceIdResponse.ExpirationDateStatus")); + queryDomainByInstanceIdResponse.setExpirationCurrDateDiff(_ctx.integerValue("QueryDomainByInstanceIdResponse.ExpirationCurrDateDiff")); + queryDomainByInstanceIdResponse.setDomainType(_ctx.stringValue("QueryDomainByInstanceIdResponse.DomainType")); + queryDomainByInstanceIdResponse.setDomainStatus(_ctx.stringValue("QueryDomainByInstanceIdResponse.DomainStatus")); + queryDomainByInstanceIdResponse.setResourceGroupId(_ctx.stringValue("QueryDomainByInstanceIdResponse.ResourceGroupId")); + + List dnsList = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryDomainByInstanceIdResponse.DnsList.Length"); i++) { + dnsList.add(_ctx.stringValue("QueryDomainByInstanceIdResponse.DnsList["+ i +"]")); + } + queryDomainByInstanceIdResponse.setDnsList(dnsList); + + List tag = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryDomainByInstanceIdResponse.Tag.Length"); i++) { + TagItem tagItem = new TagItem(); + tagItem.setKey(_ctx.stringValue("QueryDomainByInstanceIdResponse.Tag["+ i +"].Key")); + tagItem.setValue(_ctx.stringValue("QueryDomainByInstanceIdResponse.Tag["+ i +"].Value")); + + tag.add(tagItem); + } + queryDomainByInstanceIdResponse.setTag(tag); + + return queryDomainByInstanceIdResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainGroupListResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainGroupListResponseUnmarshaller.java new file mode 100644 index 0000000000..a0bd09ffcc --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainGroupListResponseUnmarshaller.java @@ -0,0 +1,48 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryDomainGroupListResponse; +import com.aliyuncs.domain.model.v20180129.QueryDomainGroupListResponse.DomainGroup; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryDomainGroupListResponseUnmarshaller { + + public static QueryDomainGroupListResponse unmarshall(QueryDomainGroupListResponse queryDomainGroupListResponse, UnmarshallerContext _ctx) { + + queryDomainGroupListResponse.setRequestId(_ctx.stringValue("QueryDomainGroupListResponse.RequestId")); + + List data = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryDomainGroupListResponse.Data.Length"); i++) { + DomainGroup domainGroup = new DomainGroup(); + domainGroup.setBeingDeleted(_ctx.booleanValue("QueryDomainGroupListResponse.Data["+ i +"].BeingDeleted")); + domainGroup.setDomainGroupStatus(_ctx.stringValue("QueryDomainGroupListResponse.Data["+ i +"].DomainGroupStatus")); + domainGroup.setDomainGroupId(_ctx.stringValue("QueryDomainGroupListResponse.Data["+ i +"].DomainGroupId")); + domainGroup.setDomainGroupName(_ctx.stringValue("QueryDomainGroupListResponse.Data["+ i +"].DomainGroupName")); + domainGroup.setModificationDate(_ctx.stringValue("QueryDomainGroupListResponse.Data["+ i +"].ModificationDate")); + domainGroup.setTotalNumber(_ctx.integerValue("QueryDomainGroupListResponse.Data["+ i +"].TotalNumber")); + domainGroup.setCreationDate(_ctx.stringValue("QueryDomainGroupListResponse.Data["+ i +"].CreationDate")); + + data.add(domainGroup); + } + queryDomainGroupListResponse.setData(data); + + return queryDomainGroupListResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainListResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainListResponseUnmarshaller.java new file mode 100644 index 0000000000..d5d3ef876f --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainListResponseUnmarshaller.java @@ -0,0 +1,78 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryDomainListResponse; +import com.aliyuncs.domain.model.v20180129.QueryDomainListResponse.Domain; +import com.aliyuncs.domain.model.v20180129.QueryDomainListResponse.Domain.TagItem; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryDomainListResponseUnmarshaller { + + public static QueryDomainListResponse unmarshall(QueryDomainListResponse queryDomainListResponse, UnmarshallerContext _ctx) { + + queryDomainListResponse.setRequestId(_ctx.stringValue("QueryDomainListResponse.RequestId")); + queryDomainListResponse.setPrePage(_ctx.booleanValue("QueryDomainListResponse.PrePage")); + queryDomainListResponse.setCurrentPageNum(_ctx.integerValue("QueryDomainListResponse.CurrentPageNum")); + queryDomainListResponse.setPageSize(_ctx.integerValue("QueryDomainListResponse.PageSize")); + queryDomainListResponse.setTotalPageNum(_ctx.integerValue("QueryDomainListResponse.TotalPageNum")); + queryDomainListResponse.setTotalItemNum(_ctx.integerValue("QueryDomainListResponse.TotalItemNum")); + queryDomainListResponse.setNextPage(_ctx.booleanValue("QueryDomainListResponse.NextPage")); + + List data = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryDomainListResponse.Data.Length"); i++) { + Domain domain = new Domain(); + domain.setDomainAuditStatus(_ctx.stringValue("QueryDomainListResponse.Data["+ i +"].DomainAuditStatus")); + domain.setDomainGroupId(_ctx.stringValue("QueryDomainListResponse.Data["+ i +"].DomainGroupId")); + domain.setRemark(_ctx.stringValue("QueryDomainListResponse.Data["+ i +"].Remark")); + domain.setDomainGroupName(_ctx.stringValue("QueryDomainListResponse.Data["+ i +"].DomainGroupName")); + domain.setRegistrationDate(_ctx.stringValue("QueryDomainListResponse.Data["+ i +"].RegistrationDate")); + domain.setInstanceId(_ctx.stringValue("QueryDomainListResponse.Data["+ i +"].InstanceId")); + domain.setDomainName(_ctx.stringValue("QueryDomainListResponse.Data["+ i +"].DomainName")); + domain.setExpirationDateStatus(_ctx.stringValue("QueryDomainListResponse.Data["+ i +"].ExpirationDateStatus")); + domain.setExpirationDate(_ctx.stringValue("QueryDomainListResponse.Data["+ i +"].ExpirationDate")); + domain.setRegistrantType(_ctx.stringValue("QueryDomainListResponse.Data["+ i +"].RegistrantType")); + domain.setExpirationDateLong(_ctx.longValue("QueryDomainListResponse.Data["+ i +"].ExpirationDateLong")); + domain.setExpirationCurrDateDiff(_ctx.integerValue("QueryDomainListResponse.Data["+ i +"].ExpirationCurrDateDiff")); + domain.setPremium(_ctx.booleanValue("QueryDomainListResponse.Data["+ i +"].Premium")); + domain.setRegistrationDateLong(_ctx.longValue("QueryDomainListResponse.Data["+ i +"].RegistrationDateLong")); + domain.setProductId(_ctx.stringValue("QueryDomainListResponse.Data["+ i +"].ProductId")); + domain.setDomainStatus(_ctx.stringValue("QueryDomainListResponse.Data["+ i +"].DomainStatus")); + domain.setDomainType(_ctx.stringValue("QueryDomainListResponse.Data["+ i +"].DomainType")); + domain.setResourceGroupId(_ctx.stringValue("QueryDomainListResponse.Data["+ i +"].ResourceGroupId")); + domain.setCcompany(_ctx.stringValue("QueryDomainListResponse.Data["+ i +"].Ccompany")); + domain.setChgholderStatus(_ctx.stringValue("QueryDomainListResponse.Data["+ i +"].ChgholderStatus")); + + List tag = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("QueryDomainListResponse.Data["+ i +"].Tag.Length"); j++) { + TagItem tagItem = new TagItem(); + tagItem.setKey(_ctx.stringValue("QueryDomainListResponse.Data["+ i +"].Tag["+ j +"].Key")); + tagItem.setValue(_ctx.stringValue("QueryDomainListResponse.Data["+ i +"].Tag["+ j +"].Value")); + + tag.add(tagItem); + } + domain.setTag(tag); + + data.add(domain); + } + queryDomainListResponse.setData(data); + + return queryDomainListResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainRealNameVerificationInfoResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainRealNameVerificationInfoResponseUnmarshaller.java new file mode 100644 index 0000000000..675391205f --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainRealNameVerificationInfoResponseUnmarshaller.java @@ -0,0 +1,36 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.QueryDomainRealNameVerificationInfoResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryDomainRealNameVerificationInfoResponseUnmarshaller { + + public static QueryDomainRealNameVerificationInfoResponse unmarshall(QueryDomainRealNameVerificationInfoResponse queryDomainRealNameVerificationInfoResponse, UnmarshallerContext _ctx) { + + queryDomainRealNameVerificationInfoResponse.setRequestId(_ctx.stringValue("QueryDomainRealNameVerificationInfoResponse.RequestId")); + queryDomainRealNameVerificationInfoResponse.setIdentityCredentialType(_ctx.stringValue("QueryDomainRealNameVerificationInfoResponse.IdentityCredentialType")); + queryDomainRealNameVerificationInfoResponse.setInstanceId(_ctx.stringValue("QueryDomainRealNameVerificationInfoResponse.InstanceId")); + queryDomainRealNameVerificationInfoResponse.setDomainName(_ctx.stringValue("QueryDomainRealNameVerificationInfoResponse.DomainName")); + queryDomainRealNameVerificationInfoResponse.setIdentityCredential(_ctx.stringValue("QueryDomainRealNameVerificationInfoResponse.IdentityCredential")); + queryDomainRealNameVerificationInfoResponse.setSubmissionDate(_ctx.stringValue("QueryDomainRealNameVerificationInfoResponse.SubmissionDate")); + queryDomainRealNameVerificationInfoResponse.setIdentityCredentialNo(_ctx.stringValue("QueryDomainRealNameVerificationInfoResponse.IdentityCredentialNo")); + queryDomainRealNameVerificationInfoResponse.setIdentityCredentialUrl(_ctx.stringValue("QueryDomainRealNameVerificationInfoResponse.IdentityCredentialUrl")); + + return queryDomainRealNameVerificationInfoResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainSpecialBizDetailResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainSpecialBizDetailResponseUnmarshaller.java new file mode 100644 index 0000000000..b4dbd1988f --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainSpecialBizDetailResponseUnmarshaller.java @@ -0,0 +1,126 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryDomainSpecialBizDetailResponse; +import com.aliyuncs.domain.model.v20180129.QueryDomainSpecialBizDetailResponse.Module; +import com.aliyuncs.domain.model.v20180129.QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact; +import com.aliyuncs.domain.model.v20180129.QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizCredential; +import com.aliyuncs.domain.model.v20180129.QueryDomainSpecialBizDetailResponse.Module.DomainSpecialOrderResult; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryDomainSpecialBizDetailResponseUnmarshaller { + + public static QueryDomainSpecialBizDetailResponse unmarshall(QueryDomainSpecialBizDetailResponse queryDomainSpecialBizDetailResponse, UnmarshallerContext _ctx) { + + queryDomainSpecialBizDetailResponse.setRequestId(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.RequestId")); + queryDomainSpecialBizDetailResponse.setHttpStatusCode(_ctx.integerValue("QueryDomainSpecialBizDetailResponse.HttpStatusCode")); + queryDomainSpecialBizDetailResponse.setDynamicCode(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.DynamicCode")); + queryDomainSpecialBizDetailResponse.setDynamicMessage(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.DynamicMessage")); + queryDomainSpecialBizDetailResponse.setSynchro(_ctx.booleanValue("QueryDomainSpecialBizDetailResponse.Synchro")); + queryDomainSpecialBizDetailResponse.setErrorMsg(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.ErrorMsg")); + queryDomainSpecialBizDetailResponse.setErrorCode(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.ErrorCode")); + queryDomainSpecialBizDetailResponse.setSuccess(_ctx.booleanValue("QueryDomainSpecialBizDetailResponse.Success")); + queryDomainSpecialBizDetailResponse.setAllowRetry(_ctx.booleanValue("QueryDomainSpecialBizDetailResponse.AllowRetry")); + queryDomainSpecialBizDetailResponse.setAppName(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.AppName")); + + List errorArgs = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryDomainSpecialBizDetailResponse.ErrorArgs.Length"); i++) { + errorArgs.add(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.ErrorArgs["+ i +"]")); + } + queryDomainSpecialBizDetailResponse.setErrorArgs(errorArgs); + + Module module = new Module(); + module.setId(_ctx.longValue("QueryDomainSpecialBizDetailResponse.Module.Id")); + module.setGmtCreate(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.GmtCreate")); + module.setGmtModified(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.GmtModified")); + module.setBizName(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.BizName")); + module.setBizNo(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.BizNo")); + module.setDomainName(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainName")); + module.setSaleId(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.SaleId")); + module.setUserId(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.UserId")); + module.setProductId(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.ProductId")); + module.setBizType(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.BizType")); + module.setBizStatus(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.BizStatus")); + module.setStatus(_ctx.integerValue("QueryDomainSpecialBizDetailResponse.Module.Status")); + module.setStatusDesc(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.StatusDesc")); + module.setAuditMsg(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.AuditMsg")); + module.setOrderId(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.OrderId")); + module.setUpdateTime(_ctx.longValue("QueryDomainSpecialBizDetailResponse.Module.UpdateTime")); + module.setCreateTime(_ctx.longValue("QueryDomainSpecialBizDetailResponse.Module.CreateTime")); + + DomainSpecialBizContact domainSpecialBizContact = new DomainSpecialBizContact(); + domainSpecialBizContact.setBizId(_ctx.longValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.BizId")); + domainSpecialBizContact.setRegType(_ctx.integerValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.RegType")); + domainSpecialBizContact.setCCompany(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.CCompany")); + domainSpecialBizContact.setECompany(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.ECompany")); + domainSpecialBizContact.setCName(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.CName")); + domainSpecialBizContact.setEName(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.EName")); + domainSpecialBizContact.setCCountry(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.CCountry")); + domainSpecialBizContact.setCProvince(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.CProvince")); + domainSpecialBizContact.setEProvince(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.EProvince")); + domainSpecialBizContact.setCCity(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.CCity")); + domainSpecialBizContact.setECity(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.ECity")); + domainSpecialBizContact.setCVenu(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.CVenu")); + domainSpecialBizContact.setEVenu(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.EVenu")); + domainSpecialBizContact.setPostalcode(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.Postalcode")); + domainSpecialBizContact.setEmail(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.Email")); + domainSpecialBizContact.setTelArea(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.TelArea")); + domainSpecialBizContact.setTelMain(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.TelMain")); + domainSpecialBizContact.setTelExt(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.TelExt")); + domainSpecialBizContact.setFaxArea(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.FaxArea")); + domainSpecialBizContact.setFaxMain(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.FaxMain")); + domainSpecialBizContact.setFaxExt(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.FaxExt")); + domainSpecialBizContact.setMobile(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.Mobile")); + domainSpecialBizContact.setExtend(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.Extend")); + domainSpecialBizContact.setVspContactId(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.VspContactId")); + domainSpecialBizContact.setRegistrantId(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizContact.RegistrantId")); + module.setDomainSpecialBizContact(domainSpecialBizContact); + + DomainSpecialOrderResult domainSpecialOrderResult = new DomainSpecialOrderResult(); + domainSpecialOrderResult.setSaleId(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialOrderResult.SaleId")); + domainSpecialOrderResult.setOrderId(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialOrderResult.OrderId")); + domainSpecialOrderResult.setSubOrderId(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialOrderResult.SubOrderId")); + domainSpecialOrderResult.setActionType(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialOrderResult.ActionType")); + domainSpecialOrderResult.setOrderAmount(_ctx.doubleValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialOrderResult.OrderAmount")); + domainSpecialOrderResult.setOrderCurrency(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialOrderResult.OrderCurrency")); + domainSpecialOrderResult.setOrderTime(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialOrderResult.OrderTime")); + domainSpecialOrderResult.setOrderYear(_ctx.integerValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialOrderResult.OrderYear")); + domainSpecialOrderResult.setOrderStatus(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialOrderResult.OrderStatus")); + module.setDomainSpecialOrderResult(domainSpecialOrderResult); + + List domainSpecialBizCredentials = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizCredentials.Length"); i++) { + DomainSpecialBizCredential domainSpecialBizCredential = new DomainSpecialBizCredential(); + domainSpecialBizCredential.setDomainName(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizCredentials["+ i +"].DomainName")); + domainSpecialBizCredential.setSaleId(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizCredentials["+ i +"].SaleId")); + domainSpecialBizCredential.setBizId(_ctx.longValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizCredentials["+ i +"].BizId")); + domainSpecialBizCredential.setCredentialNo(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizCredentials["+ i +"].CredentialNo")); + domainSpecialBizCredential.setCredentialType(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizCredentials["+ i +"].CredentialType")); + domainSpecialBizCredential.setCredentialUrl(_ctx.stringValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizCredentials["+ i +"].CredentialUrl")); + domainSpecialBizCredential.setHolderCert(_ctx.integerValue("QueryDomainSpecialBizDetailResponse.Module.DomainSpecialBizCredentials["+ i +"].HolderCert")); + + domainSpecialBizCredentials.add(domainSpecialBizCredential); + } + module.setDomainSpecialBizCredentials(domainSpecialBizCredentials); + queryDomainSpecialBizDetailResponse.setModule(module); + + return queryDomainSpecialBizDetailResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainSpecialBizInfoByDomainResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainSpecialBizInfoByDomainResponseUnmarshaller.java new file mode 100644 index 0000000000..516e6de7cd --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainSpecialBizInfoByDomainResponseUnmarshaller.java @@ -0,0 +1,113 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryDomainSpecialBizInfoByDomainResponse; +import com.aliyuncs.domain.model.v20180129.QueryDomainSpecialBizInfoByDomainResponse.Module; +import com.aliyuncs.domain.model.v20180129.QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact; +import com.aliyuncs.domain.model.v20180129.QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizCredential; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryDomainSpecialBizInfoByDomainResponseUnmarshaller { + + public static QueryDomainSpecialBizInfoByDomainResponse unmarshall(QueryDomainSpecialBizInfoByDomainResponse queryDomainSpecialBizInfoByDomainResponse, UnmarshallerContext _ctx) { + + queryDomainSpecialBizInfoByDomainResponse.setRequestId(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.RequestId")); + queryDomainSpecialBizInfoByDomainResponse.setHttpStatusCode(_ctx.integerValue("QueryDomainSpecialBizInfoByDomainResponse.HttpStatusCode")); + queryDomainSpecialBizInfoByDomainResponse.setDynamicCode(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.DynamicCode")); + queryDomainSpecialBizInfoByDomainResponse.setDynamicMessage(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.DynamicMessage")); + queryDomainSpecialBizInfoByDomainResponse.setSynchro(_ctx.booleanValue("QueryDomainSpecialBizInfoByDomainResponse.Synchro")); + queryDomainSpecialBizInfoByDomainResponse.setErrorMsg(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.ErrorMsg")); + queryDomainSpecialBizInfoByDomainResponse.setErrorCode(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.ErrorCode")); + queryDomainSpecialBizInfoByDomainResponse.setSuccess(_ctx.booleanValue("QueryDomainSpecialBizInfoByDomainResponse.Success")); + queryDomainSpecialBizInfoByDomainResponse.setAllowRetry(_ctx.booleanValue("QueryDomainSpecialBizInfoByDomainResponse.AllowRetry")); + queryDomainSpecialBizInfoByDomainResponse.setAppName(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.AppName")); + + List errorArgs = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryDomainSpecialBizInfoByDomainResponse.ErrorArgs.Length"); i++) { + errorArgs.add(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.ErrorArgs["+ i +"]")); + } + queryDomainSpecialBizInfoByDomainResponse.setErrorArgs(errorArgs); + + Module module = new Module(); + module.setId(_ctx.longValue("QueryDomainSpecialBizInfoByDomainResponse.Module.Id")); + module.setGmtCreate(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.GmtCreate")); + module.setGmtModified(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.GmtModified")); + module.setBizName(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.BizName")); + module.setBizNo(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.BizNo")); + module.setDomainName(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainName")); + module.setSaleId(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.SaleId")); + module.setUserId(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.UserId")); + module.setProductId(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.ProductId")); + module.setBizType(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.BizType")); + module.setBizStatus(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.BizStatus")); + module.setStatus(_ctx.integerValue("QueryDomainSpecialBizInfoByDomainResponse.Module.Status")); + module.setStatusDesc(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.StatusDesc")); + module.setAuditMsg(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.AuditMsg")); + module.setOrderId(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.OrderId")); + module.setUpdateTime(_ctx.longValue("QueryDomainSpecialBizInfoByDomainResponse.Module.UpdateTime")); + module.setCreateTime(_ctx.longValue("QueryDomainSpecialBizInfoByDomainResponse.Module.CreateTime")); + + DomainSpecialBizContact domainSpecialBizContact = new DomainSpecialBizContact(); + domainSpecialBizContact.setBizId(_ctx.longValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.BizId")); + domainSpecialBizContact.setRegType(_ctx.integerValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.RegType")); + domainSpecialBizContact.setCCompany(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.CCompany")); + domainSpecialBizContact.setECompany(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.ECompany")); + domainSpecialBizContact.setCName(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.CName")); + domainSpecialBizContact.setEName(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.EName")); + domainSpecialBizContact.setCCountry(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.CCountry")); + domainSpecialBizContact.setCProvince(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.CProvince")); + domainSpecialBizContact.setEProvince(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.EProvince")); + domainSpecialBizContact.setCCity(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.CCity")); + domainSpecialBizContact.setECity(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.ECity")); + domainSpecialBizContact.setCVenu(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.CVenu")); + domainSpecialBizContact.setEVenu(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.EVenu")); + domainSpecialBizContact.setPostalcode(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.Postalcode")); + domainSpecialBizContact.setEmail(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.Email")); + domainSpecialBizContact.setTelArea(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.TelArea")); + domainSpecialBizContact.setTelMain(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.TelMain")); + domainSpecialBizContact.setTelExt(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.TelExt")); + domainSpecialBizContact.setFaxArea(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.FaxArea")); + domainSpecialBizContact.setFaxMain(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.FaxMain")); + domainSpecialBizContact.setFaxExt(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.FaxExt")); + domainSpecialBizContact.setMobile(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.Mobile")); + domainSpecialBizContact.setExtend(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.Extend")); + domainSpecialBizContact.setVspContactId(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.VspContactId")); + domainSpecialBizContact.setRegistrantId(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizContact.RegistrantId")); + module.setDomainSpecialBizContact(domainSpecialBizContact); + + List domainSpecialBizCredentials = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizCredentials.Length"); i++) { + DomainSpecialBizCredential domainSpecialBizCredential = new DomainSpecialBizCredential(); + domainSpecialBizCredential.setDomainName(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizCredentials["+ i +"].DomainName")); + domainSpecialBizCredential.setSaleId(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizCredentials["+ i +"].SaleId")); + domainSpecialBizCredential.setBizId(_ctx.longValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizCredentials["+ i +"].BizId")); + domainSpecialBizCredential.setCredentialNo(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizCredentials["+ i +"].CredentialNo")); + domainSpecialBizCredential.setCredentialType(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizCredentials["+ i +"].CredentialType")); + domainSpecialBizCredential.setCredentialUrl(_ctx.stringValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizCredentials["+ i +"].CredentialUrl")); + domainSpecialBizCredential.setHolderCert(_ctx.integerValue("QueryDomainSpecialBizInfoByDomainResponse.Module.DomainSpecialBizCredentials["+ i +"].HolderCert")); + + domainSpecialBizCredentials.add(domainSpecialBizCredential); + } + module.setDomainSpecialBizCredentials(domainSpecialBizCredentials); + queryDomainSpecialBizInfoByDomainResponse.setModule(module); + + return queryDomainSpecialBizInfoByDomainResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainSuffixResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainSuffixResponseUnmarshaller.java new file mode 100644 index 0000000000..2c471d5b39 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryDomainSuffixResponseUnmarshaller.java @@ -0,0 +1,38 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryDomainSuffixResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryDomainSuffixResponseUnmarshaller { + + public static QueryDomainSuffixResponse unmarshall(QueryDomainSuffixResponse queryDomainSuffixResponse, UnmarshallerContext _ctx) { + + queryDomainSuffixResponse.setRequestId(_ctx.stringValue("QueryDomainSuffixResponse.RequestId")); + + List suffixList = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryDomainSuffixResponse.SuffixList.Length"); i++) { + suffixList.add(_ctx.stringValue("QueryDomainSuffixResponse.SuffixList["+ i +"]")); + } + queryDomainSuffixResponse.setSuffixList(suffixList); + + return queryDomainSuffixResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryEmailVerificationResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryEmailVerificationResponseUnmarshaller.java new file mode 100644 index 0000000000..234254eaec --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryEmailVerificationResponseUnmarshaller.java @@ -0,0 +1,39 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.QueryEmailVerificationResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryEmailVerificationResponseUnmarshaller { + + public static QueryEmailVerificationResponse unmarshall(QueryEmailVerificationResponse queryEmailVerificationResponse, UnmarshallerContext _ctx) { + + queryEmailVerificationResponse.setRequestId(_ctx.stringValue("QueryEmailVerificationResponse.RequestId")); + queryEmailVerificationResponse.setVerificationStatus(_ctx.integerValue("QueryEmailVerificationResponse.VerificationStatus")); + queryEmailVerificationResponse.setGmtCreate(_ctx.stringValue("QueryEmailVerificationResponse.GmtCreate")); + queryEmailVerificationResponse.setEmail(_ctx.stringValue("QueryEmailVerificationResponse.Email")); + queryEmailVerificationResponse.setEmailVerificationNo(_ctx.stringValue("QueryEmailVerificationResponse.EmailVerificationNo")); + queryEmailVerificationResponse.setConfirmIp(_ctx.stringValue("QueryEmailVerificationResponse.ConfirmIp")); + queryEmailVerificationResponse.setUserId(_ctx.stringValue("QueryEmailVerificationResponse.UserId")); + queryEmailVerificationResponse.setGmtModified(_ctx.stringValue("QueryEmailVerificationResponse.GmtModified")); + queryEmailVerificationResponse.setSendIp(_ctx.stringValue("QueryEmailVerificationResponse.SendIp")); + queryEmailVerificationResponse.setVerificationTime(_ctx.stringValue("QueryEmailVerificationResponse.VerificationTime")); + queryEmailVerificationResponse.setTokenSendTime(_ctx.stringValue("QueryEmailVerificationResponse.TokenSendTime")); + + return queryEmailVerificationResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryEnsAssociationResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryEnsAssociationResponseUnmarshaller.java new file mode 100644 index 0000000000..804f03eed9 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryEnsAssociationResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.QueryEnsAssociationResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryEnsAssociationResponseUnmarshaller { + + public static QueryEnsAssociationResponse unmarshall(QueryEnsAssociationResponse queryEnsAssociationResponse, UnmarshallerContext _ctx) { + + queryEnsAssociationResponse.setRequestId(_ctx.stringValue("QueryEnsAssociationResponse.RequestId")); + queryEnsAssociationResponse.setAddress(_ctx.stringValue("QueryEnsAssociationResponse.Address")); + + return queryEnsAssociationResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryFailReasonForDomainRealNameVerificationResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryFailReasonForDomainRealNameVerificationResponseUnmarshaller.java new file mode 100644 index 0000000000..e7b94ce4e8 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryFailReasonForDomainRealNameVerificationResponseUnmarshaller.java @@ -0,0 +1,44 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryFailReasonForDomainRealNameVerificationResponse; +import com.aliyuncs.domain.model.v20180129.QueryFailReasonForDomainRealNameVerificationResponse.FailRecord; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryFailReasonForDomainRealNameVerificationResponseUnmarshaller { + + public static QueryFailReasonForDomainRealNameVerificationResponse unmarshall(QueryFailReasonForDomainRealNameVerificationResponse queryFailReasonForDomainRealNameVerificationResponse, UnmarshallerContext _ctx) { + + queryFailReasonForDomainRealNameVerificationResponse.setRequestId(_ctx.stringValue("QueryFailReasonForDomainRealNameVerificationResponse.RequestId")); + + List data = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryFailReasonForDomainRealNameVerificationResponse.Data.Length"); i++) { + FailRecord failRecord = new FailRecord(); + failRecord.setDate(_ctx.stringValue("QueryFailReasonForDomainRealNameVerificationResponse.Data["+ i +"].Date")); + failRecord.setFailReason(_ctx.stringValue("QueryFailReasonForDomainRealNameVerificationResponse.Data["+ i +"].FailReason")); + failRecord.setDomainNameVerificationStatus(_ctx.stringValue("QueryFailReasonForDomainRealNameVerificationResponse.Data["+ i +"].DomainNameVerificationStatus")); + + data.add(failRecord); + } + queryFailReasonForDomainRealNameVerificationResponse.setData(data); + + return queryFailReasonForDomainRealNameVerificationResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryFailReasonForRegistrantProfileRealNameVerificationResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryFailReasonForRegistrantProfileRealNameVerificationResponseUnmarshaller.java new file mode 100644 index 0000000000..2a276b65b2 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryFailReasonForRegistrantProfileRealNameVerificationResponseUnmarshaller.java @@ -0,0 +1,43 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryFailReasonForRegistrantProfileRealNameVerificationResponse; +import com.aliyuncs.domain.model.v20180129.QueryFailReasonForRegistrantProfileRealNameVerificationResponse.FailRecord; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryFailReasonForRegistrantProfileRealNameVerificationResponseUnmarshaller { + + public static QueryFailReasonForRegistrantProfileRealNameVerificationResponse unmarshall(QueryFailReasonForRegistrantProfileRealNameVerificationResponse queryFailReasonForRegistrantProfileRealNameVerificationResponse, UnmarshallerContext _ctx) { + + queryFailReasonForRegistrantProfileRealNameVerificationResponse.setRequestId(_ctx.stringValue("QueryFailReasonForRegistrantProfileRealNameVerificationResponse.RequestId")); + + List data = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryFailReasonForRegistrantProfileRealNameVerificationResponse.Data.Length"); i++) { + FailRecord failRecord = new FailRecord(); + failRecord.setDate(_ctx.stringValue("QueryFailReasonForRegistrantProfileRealNameVerificationResponse.Data["+ i +"].Date")); + failRecord.setFailReason(_ctx.stringValue("QueryFailReasonForRegistrantProfileRealNameVerificationResponse.Data["+ i +"].FailReason")); + + data.add(failRecord); + } + queryFailReasonForRegistrantProfileRealNameVerificationResponse.setData(data); + + return queryFailReasonForRegistrantProfileRealNameVerificationResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryFailingReasonListForQualificationResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryFailingReasonListForQualificationResponseUnmarshaller.java new file mode 100644 index 0000000000..6136ba5e8f --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryFailingReasonListForQualificationResponseUnmarshaller.java @@ -0,0 +1,43 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryFailingReasonListForQualificationResponse; +import com.aliyuncs.domain.model.v20180129.QueryFailingReasonListForQualificationResponse.FailRecord; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryFailingReasonListForQualificationResponseUnmarshaller { + + public static QueryFailingReasonListForQualificationResponse unmarshall(QueryFailingReasonListForQualificationResponse queryFailingReasonListForQualificationResponse, UnmarshallerContext _ctx) { + + queryFailingReasonListForQualificationResponse.setRequestId(_ctx.stringValue("QueryFailingReasonListForQualificationResponse.RequestId")); + + List data = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryFailingReasonListForQualificationResponse.Data.Length"); i++) { + FailRecord failRecord = new FailRecord(); + failRecord.setDate(_ctx.stringValue("QueryFailingReasonListForQualificationResponse.Data["+ i +"].Date")); + failRecord.setFailReason(_ctx.stringValue("QueryFailingReasonListForQualificationResponse.Data["+ i +"].FailReason")); + + data.add(failRecord); + } + queryFailingReasonListForQualificationResponse.setData(data); + + return queryFailingReasonListForQualificationResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryIntlFixedPriceOrderListResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryIntlFixedPriceOrderListResponseUnmarshaller.java new file mode 100644 index 0000000000..41c733324a --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryIntlFixedPriceOrderListResponseUnmarshaller.java @@ -0,0 +1,57 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryIntlFixedPriceOrderListResponse; +import com.aliyuncs.domain.model.v20180129.QueryIntlFixedPriceOrderListResponse.Module; +import com.aliyuncs.domain.model.v20180129.QueryIntlFixedPriceOrderListResponse.Module.OrderList; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryIntlFixedPriceOrderListResponseUnmarshaller { + + public static QueryIntlFixedPriceOrderListResponse unmarshall(QueryIntlFixedPriceOrderListResponse queryIntlFixedPriceOrderListResponse, UnmarshallerContext _ctx) { + + queryIntlFixedPriceOrderListResponse.setRequestId(_ctx.stringValue("QueryIntlFixedPriceOrderListResponse.RequestId")); + + Module module = new Module(); + module.setTotalItemNum(_ctx.integerValue("QueryIntlFixedPriceOrderListResponse.Module.TotalItemNum")); + module.setCurrentPageNum(_ctx.integerValue("QueryIntlFixedPriceOrderListResponse.Module.CurrentPageNum")); + module.setPageSize(_ctx.integerValue("QueryIntlFixedPriceOrderListResponse.Module.PageSize")); + module.setTotalPageNum(_ctx.integerValue("QueryIntlFixedPriceOrderListResponse.Module.TotalPageNum")); + + List data = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryIntlFixedPriceOrderListResponse.Module.Data.Length"); i++) { + OrderList orderList = new OrderList(); + orderList.setOrderType(_ctx.integerValue("QueryIntlFixedPriceOrderListResponse.Module.Data["+ i +"].OrderType")); + orderList.setBizId(_ctx.stringValue("QueryIntlFixedPriceOrderListResponse.Module.Data["+ i +"].BizId")); + orderList.setUserId(_ctx.stringValue("QueryIntlFixedPriceOrderListResponse.Module.Data["+ i +"].UserId")); + orderList.setStatus(_ctx.integerValue("QueryIntlFixedPriceOrderListResponse.Module.Data["+ i +"].Status")); + orderList.setPrice(_ctx.longValue("QueryIntlFixedPriceOrderListResponse.Module.Data["+ i +"].Price")); + orderList.setDomain(_ctx.stringValue("QueryIntlFixedPriceOrderListResponse.Module.Data["+ i +"].Domain")); + orderList.setCreateTime(_ctx.longValue("QueryIntlFixedPriceOrderListResponse.Module.Data["+ i +"].CreateTime")); + orderList.setUpdateTime(_ctx.longValue("QueryIntlFixedPriceOrderListResponse.Module.Data["+ i +"].UpdateTime")); + + data.add(orderList); + } + module.setData(data); + queryIntlFixedPriceOrderListResponse.setModule(module); + + return queryIntlFixedPriceOrderListResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryLocalEnsAssociationResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryLocalEnsAssociationResponseUnmarshaller.java new file mode 100644 index 0000000000..4ed60d44cc --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryLocalEnsAssociationResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.QueryLocalEnsAssociationResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryLocalEnsAssociationResponseUnmarshaller { + + public static QueryLocalEnsAssociationResponse unmarshall(QueryLocalEnsAssociationResponse queryLocalEnsAssociationResponse, UnmarshallerContext _ctx) { + + queryLocalEnsAssociationResponse.setRequestId(_ctx.stringValue("QueryLocalEnsAssociationResponse.RequestId")); + queryLocalEnsAssociationResponse.setAddress(_ctx.stringValue("QueryLocalEnsAssociationResponse.Address")); + + return queryLocalEnsAssociationResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryOperationAuditInfoDetailResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryOperationAuditInfoDetailResponseUnmarshaller.java new file mode 100644 index 0000000000..4b8261945d --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryOperationAuditInfoDetailResponseUnmarshaller.java @@ -0,0 +1,38 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.QueryOperationAuditInfoDetailResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryOperationAuditInfoDetailResponseUnmarshaller { + + public static QueryOperationAuditInfoDetailResponse unmarshall(QueryOperationAuditInfoDetailResponse queryOperationAuditInfoDetailResponse, UnmarshallerContext _ctx) { + + queryOperationAuditInfoDetailResponse.setRequestId(_ctx.stringValue("QueryOperationAuditInfoDetailResponse.RequestId")); + queryOperationAuditInfoDetailResponse.setAuditInfo(_ctx.stringValue("QueryOperationAuditInfoDetailResponse.AuditInfo")); + queryOperationAuditInfoDetailResponse.setAuditStatus(_ctx.integerValue("QueryOperationAuditInfoDetailResponse.AuditStatus")); + queryOperationAuditInfoDetailResponse.setBusinessName(_ctx.stringValue("QueryOperationAuditInfoDetailResponse.BusinessName")); + queryOperationAuditInfoDetailResponse.setAuditType(_ctx.integerValue("QueryOperationAuditInfoDetailResponse.AuditType")); + queryOperationAuditInfoDetailResponse.setDomainName(_ctx.stringValue("QueryOperationAuditInfoDetailResponse.DomainName")); + queryOperationAuditInfoDetailResponse.setCreateTime(_ctx.longValue("QueryOperationAuditInfoDetailResponse.CreateTime")); + queryOperationAuditInfoDetailResponse.setUpdateTime(_ctx.longValue("QueryOperationAuditInfoDetailResponse.UpdateTime")); + queryOperationAuditInfoDetailResponse.setId(_ctx.stringValue("QueryOperationAuditInfoDetailResponse.Id")); + queryOperationAuditInfoDetailResponse.setRemark(_ctx.stringValue("QueryOperationAuditInfoDetailResponse.Remark")); + + return queryOperationAuditInfoDetailResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryOperationAuditInfoListResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryOperationAuditInfoListResponseUnmarshaller.java new file mode 100644 index 0000000000..98d59dd93d --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryOperationAuditInfoListResponseUnmarshaller.java @@ -0,0 +1,56 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryOperationAuditInfoListResponse; +import com.aliyuncs.domain.model.v20180129.QueryOperationAuditInfoListResponse.OperationAuditRecord; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryOperationAuditInfoListResponseUnmarshaller { + + public static QueryOperationAuditInfoListResponse unmarshall(QueryOperationAuditInfoListResponse queryOperationAuditInfoListResponse, UnmarshallerContext _ctx) { + + queryOperationAuditInfoListResponse.setRequestId(_ctx.stringValue("QueryOperationAuditInfoListResponse.RequestId")); + queryOperationAuditInfoListResponse.setPrePage(_ctx.booleanValue("QueryOperationAuditInfoListResponse.PrePage")); + queryOperationAuditInfoListResponse.setCurrentPageNum(_ctx.integerValue("QueryOperationAuditInfoListResponse.CurrentPageNum")); + queryOperationAuditInfoListResponse.setPageSize(_ctx.integerValue("QueryOperationAuditInfoListResponse.PageSize")); + queryOperationAuditInfoListResponse.setTotalPageNum(_ctx.integerValue("QueryOperationAuditInfoListResponse.TotalPageNum")); + queryOperationAuditInfoListResponse.setTotalItemNum(_ctx.integerValue("QueryOperationAuditInfoListResponse.TotalItemNum")); + queryOperationAuditInfoListResponse.setNextPage(_ctx.booleanValue("QueryOperationAuditInfoListResponse.NextPage")); + + List data = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryOperationAuditInfoListResponse.Data.Length"); i++) { + OperationAuditRecord operationAuditRecord = new OperationAuditRecord(); + operationAuditRecord.setUpdateTime(_ctx.longValue("QueryOperationAuditInfoListResponse.Data["+ i +"].UpdateTime")); + operationAuditRecord.setRemark(_ctx.stringValue("QueryOperationAuditInfoListResponse.Data["+ i +"].Remark")); + operationAuditRecord.setCreateTime(_ctx.longValue("QueryOperationAuditInfoListResponse.Data["+ i +"].CreateTime")); + operationAuditRecord.setAuditType(_ctx.integerValue("QueryOperationAuditInfoListResponse.Data["+ i +"].AuditType")); + operationAuditRecord.setBusinessName(_ctx.stringValue("QueryOperationAuditInfoListResponse.Data["+ i +"].BusinessName")); + operationAuditRecord.setAuditInfo(_ctx.stringValue("QueryOperationAuditInfoListResponse.Data["+ i +"].AuditInfo")); + operationAuditRecord.setDomainName(_ctx.stringValue("QueryOperationAuditInfoListResponse.Data["+ i +"].DomainName")); + operationAuditRecord.setAuditStatus(_ctx.integerValue("QueryOperationAuditInfoListResponse.Data["+ i +"].AuditStatus")); + operationAuditRecord.setId(_ctx.longValue("QueryOperationAuditInfoListResponse.Data["+ i +"].Id")); + + data.add(operationAuditRecord); + } + queryOperationAuditInfoListResponse.setData(data); + + return queryOperationAuditInfoListResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryQualificationDetailResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryQualificationDetailResponseUnmarshaller.java new file mode 100644 index 0000000000..6cb1a42a50 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryQualificationDetailResponseUnmarshaller.java @@ -0,0 +1,46 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryQualificationDetailResponse; +import com.aliyuncs.domain.model.v20180129.QueryQualificationDetailResponse.QualificationCredential; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryQualificationDetailResponseUnmarshaller { + + public static QueryQualificationDetailResponse unmarshall(QueryQualificationDetailResponse queryQualificationDetailResponse, UnmarshallerContext _ctx) { + + queryQualificationDetailResponse.setRequestId(_ctx.stringValue("QueryQualificationDetailResponse.RequestId")); + queryQualificationDetailResponse.setAuditStatus(_ctx.integerValue("QueryQualificationDetailResponse.AuditStatus")); + queryQualificationDetailResponse.setTrackId(_ctx.stringValue("QueryQualificationDetailResponse.TrackId")); + + List credentials = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryQualificationDetailResponse.Credentials.Length"); i++) { + QualificationCredential qualificationCredential = new QualificationCredential(); + qualificationCredential.setCredentialType(_ctx.stringValue("QueryQualificationDetailResponse.Credentials["+ i +"].CredentialType")); + qualificationCredential.setCredentialNo(_ctx.stringValue("QueryQualificationDetailResponse.Credentials["+ i +"].CredentialNo")); + qualificationCredential.setCredentialUrl(_ctx.stringValue("QueryQualificationDetailResponse.Credentials["+ i +"].CredentialUrl")); + + credentials.add(qualificationCredential); + } + queryQualificationDetailResponse.setCredentials(credentials); + + return queryQualificationDetailResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryRegistrantProfileRealNameVerificationInfoResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryRegistrantProfileRealNameVerificationInfoResponseUnmarshaller.java new file mode 100644 index 0000000000..4c124a86c2 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryRegistrantProfileRealNameVerificationInfoResponseUnmarshaller.java @@ -0,0 +1,36 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.QueryRegistrantProfileRealNameVerificationInfoResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryRegistrantProfileRealNameVerificationInfoResponseUnmarshaller { + + public static QueryRegistrantProfileRealNameVerificationInfoResponse unmarshall(QueryRegistrantProfileRealNameVerificationInfoResponse queryRegistrantProfileRealNameVerificationInfoResponse, UnmarshallerContext _ctx) { + + queryRegistrantProfileRealNameVerificationInfoResponse.setRequestId(_ctx.stringValue("QueryRegistrantProfileRealNameVerificationInfoResponse.RequestId")); + queryRegistrantProfileRealNameVerificationInfoResponse.setIdentityCredentialType(_ctx.stringValue("QueryRegistrantProfileRealNameVerificationInfoResponse.IdentityCredentialType")); + queryRegistrantProfileRealNameVerificationInfoResponse.setModificationDate(_ctx.stringValue("QueryRegistrantProfileRealNameVerificationInfoResponse.ModificationDate")); + queryRegistrantProfileRealNameVerificationInfoResponse.setIdentityCredential(_ctx.stringValue("QueryRegistrantProfileRealNameVerificationInfoResponse.IdentityCredential")); + queryRegistrantProfileRealNameVerificationInfoResponse.setSubmissionDate(_ctx.stringValue("QueryRegistrantProfileRealNameVerificationInfoResponse.SubmissionDate")); + queryRegistrantProfileRealNameVerificationInfoResponse.setIdentityCredentialNo(_ctx.stringValue("QueryRegistrantProfileRealNameVerificationInfoResponse.IdentityCredentialNo")); + queryRegistrantProfileRealNameVerificationInfoResponse.setRegistrantProfileId(_ctx.longValue("QueryRegistrantProfileRealNameVerificationInfoResponse.RegistrantProfileId")); + queryRegistrantProfileRealNameVerificationInfoResponse.setIdentityCredentialUrl(_ctx.stringValue("QueryRegistrantProfileRealNameVerificationInfoResponse.IdentityCredentialUrl")); + + return queryRegistrantProfileRealNameVerificationInfoResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryRegistrantProfilesResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryRegistrantProfilesResponseUnmarshaller.java new file mode 100644 index 0000000000..60cedfa930 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryRegistrantProfilesResponseUnmarshaller.java @@ -0,0 +1,74 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryRegistrantProfilesResponse; +import com.aliyuncs.domain.model.v20180129.QueryRegistrantProfilesResponse.RegistrantProfile; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryRegistrantProfilesResponseUnmarshaller { + + public static QueryRegistrantProfilesResponse unmarshall(QueryRegistrantProfilesResponse queryRegistrantProfilesResponse, UnmarshallerContext _ctx) { + + queryRegistrantProfilesResponse.setRequestId(_ctx.stringValue("QueryRegistrantProfilesResponse.RequestId")); + queryRegistrantProfilesResponse.setNextPage(_ctx.booleanValue("QueryRegistrantProfilesResponse.NextPage")); + queryRegistrantProfilesResponse.setTotalItemNum(_ctx.integerValue("QueryRegistrantProfilesResponse.TotalItemNum")); + queryRegistrantProfilesResponse.setPrePage(_ctx.booleanValue("QueryRegistrantProfilesResponse.PrePage")); + queryRegistrantProfilesResponse.setCurrentPageNum(_ctx.integerValue("QueryRegistrantProfilesResponse.CurrentPageNum")); + queryRegistrantProfilesResponse.setTotalPageNum(_ctx.integerValue("QueryRegistrantProfilesResponse.TotalPageNum")); + queryRegistrantProfilesResponse.setPageSize(_ctx.integerValue("QueryRegistrantProfilesResponse.PageSize")); + + List registrantProfiles = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryRegistrantProfilesResponse.RegistrantProfiles.Length"); i++) { + RegistrantProfile registrantProfile = new RegistrantProfile(); + registrantProfile.setTelExt(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].TelExt")); + registrantProfile.setUpdateTime(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].UpdateTime")); + registrantProfile.setZhProvince(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].ZhProvince")); + registrantProfile.setCreateTime(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].CreateTime")); + registrantProfile.setTelephone(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].Telephone")); + registrantProfile.setRegistrantOrganization(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].RegistrantOrganization")); + registrantProfile.setCity(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].City")); + registrantProfile.setZhCity(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].ZhCity")); + registrantProfile.setTelArea(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].TelArea")); + registrantProfile.setAddress(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].Address")); + registrantProfile.setRealNameStatus(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].RealNameStatus")); + registrantProfile.setPostalCode(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].PostalCode")); + registrantProfile.setRegistrantProfileType(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].RegistrantProfileType")); + registrantProfile.setRegistrantProfileId(_ctx.longValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].RegistrantProfileId")); + registrantProfile.setZhRegistrantOrganization(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].ZhRegistrantOrganization")); + registrantProfile.setDefaultRegistrantProfile(_ctx.booleanValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].DefaultRegistrantProfile")); + registrantProfile.setEmail(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].Email")); + registrantProfile.setZhRegistrantName(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].ZhRegistrantName")); + registrantProfile.setRegistrantType(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].RegistrantType")); + registrantProfile.setCountry(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].Country")); + registrantProfile.setRegistrantName(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].RegistrantName")); + registrantProfile.setEmailVerificationStatus(_ctx.integerValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].EmailVerificationStatus")); + registrantProfile.setZhAddress(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].ZhAddress")); + registrantProfile.setProvince(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].Province")); + registrantProfile.setCredentialNo(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].CredentialNo")); + registrantProfile.setCredentialType(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].CredentialType")); + registrantProfile.setRemark(_ctx.stringValue("QueryRegistrantProfilesResponse.RegistrantProfiles["+ i +"].Remark")); + + registrantProfiles.add(registrantProfile); + } + queryRegistrantProfilesResponse.setRegistrantProfiles(registrantProfiles); + + return queryRegistrantProfilesResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryServerLockResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryServerLockResponseUnmarshaller.java new file mode 100644 index 0000000000..fe5d4da187 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryServerLockResponseUnmarshaller.java @@ -0,0 +1,39 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.QueryServerLockResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryServerLockResponseUnmarshaller { + + public static QueryServerLockResponse unmarshall(QueryServerLockResponse queryServerLockResponse, UnmarshallerContext _ctx) { + + queryServerLockResponse.setRequestId(_ctx.stringValue("QueryServerLockResponse.RequestId")); + queryServerLockResponse.setStartDate(_ctx.stringValue("QueryServerLockResponse.StartDate")); + queryServerLockResponse.setGmtCreate(_ctx.stringValue("QueryServerLockResponse.GmtCreate")); + queryServerLockResponse.setExpireDate(_ctx.stringValue("QueryServerLockResponse.ExpireDate")); + queryServerLockResponse.setDomainName(_ctx.stringValue("QueryServerLockResponse.DomainName")); + queryServerLockResponse.setUserId(_ctx.stringValue("QueryServerLockResponse.UserId")); + queryServerLockResponse.setGmtModified(_ctx.stringValue("QueryServerLockResponse.GmtModified")); + queryServerLockResponse.setDomainInstanceId(_ctx.stringValue("QueryServerLockResponse.DomainInstanceId")); + queryServerLockResponse.setLockInstanceId(_ctx.stringValue("QueryServerLockResponse.LockInstanceId")); + queryServerLockResponse.setServerLockStatus(_ctx.integerValue("QueryServerLockResponse.ServerLockStatus")); + queryServerLockResponse.setLockProductId(_ctx.stringValue("QueryServerLockResponse.LockProductId")); + + return queryServerLockResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryTaskDetailHistoryResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryTaskDetailHistoryResponseUnmarshaller.java new file mode 100644 index 0000000000..fbdc3fe4db --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryTaskDetailHistoryResponseUnmarshaller.java @@ -0,0 +1,102 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryTaskDetailHistoryResponse; +import com.aliyuncs.domain.model.v20180129.QueryTaskDetailHistoryResponse.CurrentPageCursor; +import com.aliyuncs.domain.model.v20180129.QueryTaskDetailHistoryResponse.NextPageCursor; +import com.aliyuncs.domain.model.v20180129.QueryTaskDetailHistoryResponse.PrePageCursor; +import com.aliyuncs.domain.model.v20180129.QueryTaskDetailHistoryResponse.TaskDetailHistory; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryTaskDetailHistoryResponseUnmarshaller { + + public static QueryTaskDetailHistoryResponse unmarshall(QueryTaskDetailHistoryResponse queryTaskDetailHistoryResponse, UnmarshallerContext _ctx) { + + queryTaskDetailHistoryResponse.setRequestId(_ctx.stringValue("QueryTaskDetailHistoryResponse.RequestId")); + queryTaskDetailHistoryResponse.setPageSize(_ctx.integerValue("QueryTaskDetailHistoryResponse.PageSize")); + + CurrentPageCursor currentPageCursor = new CurrentPageCursor(); + currentPageCursor.setUpdateTime(_ctx.stringValue("QueryTaskDetailHistoryResponse.CurrentPageCursor.UpdateTime")); + currentPageCursor.setTaskDetailNo(_ctx.stringValue("QueryTaskDetailHistoryResponse.CurrentPageCursor.TaskDetailNo")); + currentPageCursor.setCreateTime(_ctx.stringValue("QueryTaskDetailHistoryResponse.CurrentPageCursor.CreateTime")); + currentPageCursor.setInstanceId(_ctx.stringValue("QueryTaskDetailHistoryResponse.CurrentPageCursor.InstanceId")); + currentPageCursor.setDomainName(_ctx.stringValue("QueryTaskDetailHistoryResponse.CurrentPageCursor.DomainName")); + currentPageCursor.setTaskType(_ctx.stringValue("QueryTaskDetailHistoryResponse.CurrentPageCursor.TaskType")); + currentPageCursor.setTaskNo(_ctx.stringValue("QueryTaskDetailHistoryResponse.CurrentPageCursor.TaskNo")); + currentPageCursor.setTaskStatusCode(_ctx.integerValue("QueryTaskDetailHistoryResponse.CurrentPageCursor.TaskStatusCode")); + currentPageCursor.setTaskStatus(_ctx.stringValue("QueryTaskDetailHistoryResponse.CurrentPageCursor.TaskStatus")); + currentPageCursor.setTaskTypeDescription(_ctx.stringValue("QueryTaskDetailHistoryResponse.CurrentPageCursor.TaskTypeDescription")); + currentPageCursor.setTryCount(_ctx.integerValue("QueryTaskDetailHistoryResponse.CurrentPageCursor.TryCount")); + currentPageCursor.setErrorMsg(_ctx.stringValue("QueryTaskDetailHistoryResponse.CurrentPageCursor.ErrorMsg")); + queryTaskDetailHistoryResponse.setCurrentPageCursor(currentPageCursor); + + PrePageCursor prePageCursor = new PrePageCursor(); + prePageCursor.setUpdateTime(_ctx.stringValue("QueryTaskDetailHistoryResponse.PrePageCursor.UpdateTime")); + prePageCursor.setTaskDetailNo(_ctx.stringValue("QueryTaskDetailHistoryResponse.PrePageCursor.TaskDetailNo")); + prePageCursor.setCreateTime(_ctx.stringValue("QueryTaskDetailHistoryResponse.PrePageCursor.CreateTime")); + prePageCursor.setInstanceId(_ctx.stringValue("QueryTaskDetailHistoryResponse.PrePageCursor.InstanceId")); + prePageCursor.setDomainName(_ctx.stringValue("QueryTaskDetailHistoryResponse.PrePageCursor.DomainName")); + prePageCursor.setTaskType(_ctx.stringValue("QueryTaskDetailHistoryResponse.PrePageCursor.TaskType")); + prePageCursor.setTaskNo(_ctx.stringValue("QueryTaskDetailHistoryResponse.PrePageCursor.TaskNo")); + prePageCursor.setTaskStatusCode(_ctx.integerValue("QueryTaskDetailHistoryResponse.PrePageCursor.TaskStatusCode")); + prePageCursor.setTaskStatus(_ctx.stringValue("QueryTaskDetailHistoryResponse.PrePageCursor.TaskStatus")); + prePageCursor.setTaskTypeDescription(_ctx.stringValue("QueryTaskDetailHistoryResponse.PrePageCursor.TaskTypeDescription")); + prePageCursor.setTryCount(_ctx.integerValue("QueryTaskDetailHistoryResponse.PrePageCursor.TryCount")); + prePageCursor.setErrorMsg(_ctx.stringValue("QueryTaskDetailHistoryResponse.PrePageCursor.ErrorMsg")); + queryTaskDetailHistoryResponse.setPrePageCursor(prePageCursor); + + NextPageCursor nextPageCursor = new NextPageCursor(); + nextPageCursor.setUpdateTime(_ctx.stringValue("QueryTaskDetailHistoryResponse.NextPageCursor.UpdateTime")); + nextPageCursor.setTaskDetailNo(_ctx.stringValue("QueryTaskDetailHistoryResponse.NextPageCursor.TaskDetailNo")); + nextPageCursor.setCreateTime(_ctx.stringValue("QueryTaskDetailHistoryResponse.NextPageCursor.CreateTime")); + nextPageCursor.setInstanceId(_ctx.stringValue("QueryTaskDetailHistoryResponse.NextPageCursor.InstanceId")); + nextPageCursor.setDomainName(_ctx.stringValue("QueryTaskDetailHistoryResponse.NextPageCursor.DomainName")); + nextPageCursor.setTaskType(_ctx.stringValue("QueryTaskDetailHistoryResponse.NextPageCursor.TaskType")); + nextPageCursor.setTaskNo(_ctx.stringValue("QueryTaskDetailHistoryResponse.NextPageCursor.TaskNo")); + nextPageCursor.setTaskStatusCode(_ctx.integerValue("QueryTaskDetailHistoryResponse.NextPageCursor.TaskStatusCode")); + nextPageCursor.setTaskStatus(_ctx.stringValue("QueryTaskDetailHistoryResponse.NextPageCursor.TaskStatus")); + nextPageCursor.setTaskTypeDescription(_ctx.stringValue("QueryTaskDetailHistoryResponse.NextPageCursor.TaskTypeDescription")); + nextPageCursor.setTryCount(_ctx.integerValue("QueryTaskDetailHistoryResponse.NextPageCursor.TryCount")); + nextPageCursor.setErrorMsg(_ctx.stringValue("QueryTaskDetailHistoryResponse.NextPageCursor.ErrorMsg")); + queryTaskDetailHistoryResponse.setNextPageCursor(nextPageCursor); + + List objects = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryTaskDetailHistoryResponse.Objects.Length"); i++) { + TaskDetailHistory taskDetailHistory = new TaskDetailHistory(); + taskDetailHistory.setUpdateTime(_ctx.stringValue("QueryTaskDetailHistoryResponse.Objects["+ i +"].UpdateTime")); + taskDetailHistory.setTaskDetailNo(_ctx.stringValue("QueryTaskDetailHistoryResponse.Objects["+ i +"].TaskDetailNo")); + taskDetailHistory.setCreateTime(_ctx.stringValue("QueryTaskDetailHistoryResponse.Objects["+ i +"].CreateTime")); + taskDetailHistory.setInstanceId(_ctx.stringValue("QueryTaskDetailHistoryResponse.Objects["+ i +"].InstanceId")); + taskDetailHistory.setDomainName(_ctx.stringValue("QueryTaskDetailHistoryResponse.Objects["+ i +"].DomainName")); + taskDetailHistory.setTaskType(_ctx.stringValue("QueryTaskDetailHistoryResponse.Objects["+ i +"].TaskType")); + taskDetailHistory.setTaskNo(_ctx.stringValue("QueryTaskDetailHistoryResponse.Objects["+ i +"].TaskNo")); + taskDetailHistory.setTaskStatusCode(_ctx.integerValue("QueryTaskDetailHistoryResponse.Objects["+ i +"].TaskStatusCode")); + taskDetailHistory.setTaskStatus(_ctx.stringValue("QueryTaskDetailHistoryResponse.Objects["+ i +"].TaskStatus")); + taskDetailHistory.setTaskTypeDescription(_ctx.stringValue("QueryTaskDetailHistoryResponse.Objects["+ i +"].TaskTypeDescription")); + taskDetailHistory.setTryCount(_ctx.integerValue("QueryTaskDetailHistoryResponse.Objects["+ i +"].TryCount")); + taskDetailHistory.setErrorMsg(_ctx.stringValue("QueryTaskDetailHistoryResponse.Objects["+ i +"].ErrorMsg")); + + objects.add(taskDetailHistory); + } + queryTaskDetailHistoryResponse.setObjects(objects); + + return queryTaskDetailHistoryResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryTaskDetailListResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryTaskDetailListResponseUnmarshaller.java new file mode 100644 index 0000000000..742132709b --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryTaskDetailListResponseUnmarshaller.java @@ -0,0 +1,61 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryTaskDetailListResponse; +import com.aliyuncs.domain.model.v20180129.QueryTaskDetailListResponse.TaskDetail; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryTaskDetailListResponseUnmarshaller { + + public static QueryTaskDetailListResponse unmarshall(QueryTaskDetailListResponse queryTaskDetailListResponse, UnmarshallerContext _ctx) { + + queryTaskDetailListResponse.setRequestId(_ctx.stringValue("QueryTaskDetailListResponse.RequestId")); + queryTaskDetailListResponse.setPrePage(_ctx.booleanValue("QueryTaskDetailListResponse.PrePage")); + queryTaskDetailListResponse.setCurrentPageNum(_ctx.integerValue("QueryTaskDetailListResponse.CurrentPageNum")); + queryTaskDetailListResponse.setPageSize(_ctx.integerValue("QueryTaskDetailListResponse.PageSize")); + queryTaskDetailListResponse.setTotalPageNum(_ctx.integerValue("QueryTaskDetailListResponse.TotalPageNum")); + queryTaskDetailListResponse.setTotalItemNum(_ctx.integerValue("QueryTaskDetailListResponse.TotalItemNum")); + queryTaskDetailListResponse.setNextPage(_ctx.booleanValue("QueryTaskDetailListResponse.NextPage")); + + List data = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryTaskDetailListResponse.Data.Length"); i++) { + TaskDetail taskDetail = new TaskDetail(); + taskDetail.setUpdateTime(_ctx.stringValue("QueryTaskDetailListResponse.Data["+ i +"].UpdateTime")); + taskDetail.setTaskDetailNo(_ctx.stringValue("QueryTaskDetailListResponse.Data["+ i +"].TaskDetailNo")); + taskDetail.setCreateTime(_ctx.stringValue("QueryTaskDetailListResponse.Data["+ i +"].CreateTime")); + taskDetail.setInstanceId(_ctx.stringValue("QueryTaskDetailListResponse.Data["+ i +"].InstanceId")); + taskDetail.setDomainName(_ctx.stringValue("QueryTaskDetailListResponse.Data["+ i +"].DomainName")); + taskDetail.setTaskType(_ctx.stringValue("QueryTaskDetailListResponse.Data["+ i +"].TaskType")); + taskDetail.setTaskNo(_ctx.stringValue("QueryTaskDetailListResponse.Data["+ i +"].TaskNo")); + taskDetail.setTaskResult(_ctx.stringValue("QueryTaskDetailListResponse.Data["+ i +"].TaskResult")); + taskDetail.setTaskStatusCode(_ctx.integerValue("QueryTaskDetailListResponse.Data["+ i +"].TaskStatusCode")); + taskDetail.setTaskStatus(_ctx.stringValue("QueryTaskDetailListResponse.Data["+ i +"].TaskStatus")); + taskDetail.setTaskTypeDescription(_ctx.stringValue("QueryTaskDetailListResponse.Data["+ i +"].TaskTypeDescription")); + taskDetail.setTryCount(_ctx.integerValue("QueryTaskDetailListResponse.Data["+ i +"].TryCount")); + taskDetail.setErrorMsg(_ctx.stringValue("QueryTaskDetailListResponse.Data["+ i +"].ErrorMsg")); + taskDetail.setFailReason(_ctx.stringValue("QueryTaskDetailListResponse.Data["+ i +"].FailReason")); + + data.add(taskDetail); + } + queryTaskDetailListResponse.setData(data); + + return queryTaskDetailListResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryTaskInfoHistoryResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryTaskInfoHistoryResponseUnmarshaller.java new file mode 100644 index 0000000000..6276c24d33 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryTaskInfoHistoryResponseUnmarshaller.java @@ -0,0 +1,90 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryTaskInfoHistoryResponse; +import com.aliyuncs.domain.model.v20180129.QueryTaskInfoHistoryResponse.CurrentPageCursor; +import com.aliyuncs.domain.model.v20180129.QueryTaskInfoHistoryResponse.NextPageCursor; +import com.aliyuncs.domain.model.v20180129.QueryTaskInfoHistoryResponse.PrePageCursor; +import com.aliyuncs.domain.model.v20180129.QueryTaskInfoHistoryResponse.TaskInfoHistory; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryTaskInfoHistoryResponseUnmarshaller { + + public static QueryTaskInfoHistoryResponse unmarshall(QueryTaskInfoHistoryResponse queryTaskInfoHistoryResponse, UnmarshallerContext _ctx) { + + queryTaskInfoHistoryResponse.setRequestId(_ctx.stringValue("QueryTaskInfoHistoryResponse.RequestId")); + queryTaskInfoHistoryResponse.setPageSize(_ctx.integerValue("QueryTaskInfoHistoryResponse.PageSize")); + + CurrentPageCursor currentPageCursor = new CurrentPageCursor(); + currentPageCursor.setTaskType(_ctx.stringValue("QueryTaskInfoHistoryResponse.CurrentPageCursor.TaskType")); + currentPageCursor.setTaskNo(_ctx.stringValue("QueryTaskInfoHistoryResponse.CurrentPageCursor.TaskNo")); + currentPageCursor.setTaskStatusCode(_ctx.integerValue("QueryTaskInfoHistoryResponse.CurrentPageCursor.TaskStatusCode")); + currentPageCursor.setTaskStatus(_ctx.stringValue("QueryTaskInfoHistoryResponse.CurrentPageCursor.TaskStatus")); + currentPageCursor.setTaskTypeDescription(_ctx.stringValue("QueryTaskInfoHistoryResponse.CurrentPageCursor.TaskTypeDescription")); + currentPageCursor.setTaskNum(_ctx.integerValue("QueryTaskInfoHistoryResponse.CurrentPageCursor.TaskNum")); + currentPageCursor.setCreateTime(_ctx.stringValue("QueryTaskInfoHistoryResponse.CurrentPageCursor.CreateTime")); + currentPageCursor.setCreateTimeLong(_ctx.longValue("QueryTaskInfoHistoryResponse.CurrentPageCursor.CreateTimeLong")); + currentPageCursor.setClientip(_ctx.stringValue("QueryTaskInfoHistoryResponse.CurrentPageCursor.Clientip")); + queryTaskInfoHistoryResponse.setCurrentPageCursor(currentPageCursor); + + PrePageCursor prePageCursor = new PrePageCursor(); + prePageCursor.setTaskType(_ctx.stringValue("QueryTaskInfoHistoryResponse.PrePageCursor.TaskType")); + prePageCursor.setTaskNo(_ctx.stringValue("QueryTaskInfoHistoryResponse.PrePageCursor.TaskNo")); + prePageCursor.setTaskStatusCode(_ctx.integerValue("QueryTaskInfoHistoryResponse.PrePageCursor.TaskStatusCode")); + prePageCursor.setTaskStatus(_ctx.stringValue("QueryTaskInfoHistoryResponse.PrePageCursor.TaskStatus")); + prePageCursor.setTaskTypeDescription(_ctx.stringValue("QueryTaskInfoHistoryResponse.PrePageCursor.TaskTypeDescription")); + prePageCursor.setTaskNum(_ctx.integerValue("QueryTaskInfoHistoryResponse.PrePageCursor.TaskNum")); + prePageCursor.setCreateTime(_ctx.stringValue("QueryTaskInfoHistoryResponse.PrePageCursor.CreateTime")); + prePageCursor.setCreateTimeLong(_ctx.longValue("QueryTaskInfoHistoryResponse.PrePageCursor.CreateTimeLong")); + prePageCursor.setClientip(_ctx.stringValue("QueryTaskInfoHistoryResponse.PrePageCursor.Clientip")); + queryTaskInfoHistoryResponse.setPrePageCursor(prePageCursor); + + NextPageCursor nextPageCursor = new NextPageCursor(); + nextPageCursor.setTaskType(_ctx.stringValue("QueryTaskInfoHistoryResponse.NextPageCursor.TaskType")); + nextPageCursor.setTaskNo(_ctx.stringValue("QueryTaskInfoHistoryResponse.NextPageCursor.TaskNo")); + nextPageCursor.setTaskStatusCode(_ctx.integerValue("QueryTaskInfoHistoryResponse.NextPageCursor.TaskStatusCode")); + nextPageCursor.setTaskStatus(_ctx.stringValue("QueryTaskInfoHistoryResponse.NextPageCursor.TaskStatus")); + nextPageCursor.setTaskTypeDescription(_ctx.stringValue("QueryTaskInfoHistoryResponse.NextPageCursor.TaskTypeDescription")); + nextPageCursor.setTaskNum(_ctx.integerValue("QueryTaskInfoHistoryResponse.NextPageCursor.TaskNum")); + nextPageCursor.setCreateTime(_ctx.stringValue("QueryTaskInfoHistoryResponse.NextPageCursor.CreateTime")); + nextPageCursor.setCreateTimeLong(_ctx.longValue("QueryTaskInfoHistoryResponse.NextPageCursor.CreateTimeLong")); + nextPageCursor.setClientip(_ctx.stringValue("QueryTaskInfoHistoryResponse.NextPageCursor.Clientip")); + queryTaskInfoHistoryResponse.setNextPageCursor(nextPageCursor); + + List objects = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryTaskInfoHistoryResponse.Objects.Length"); i++) { + TaskInfoHistory taskInfoHistory = new TaskInfoHistory(); + taskInfoHistory.setTaskType(_ctx.stringValue("QueryTaskInfoHistoryResponse.Objects["+ i +"].TaskType")); + taskInfoHistory.setTaskNo(_ctx.stringValue("QueryTaskInfoHistoryResponse.Objects["+ i +"].TaskNo")); + taskInfoHistory.setTaskStatusCode(_ctx.integerValue("QueryTaskInfoHistoryResponse.Objects["+ i +"].TaskStatusCode")); + taskInfoHistory.setTaskStatus(_ctx.stringValue("QueryTaskInfoHistoryResponse.Objects["+ i +"].TaskStatus")); + taskInfoHistory.setTaskTypeDescription(_ctx.stringValue("QueryTaskInfoHistoryResponse.Objects["+ i +"].TaskTypeDescription")); + taskInfoHistory.setTaskNum(_ctx.integerValue("QueryTaskInfoHistoryResponse.Objects["+ i +"].TaskNum")); + taskInfoHistory.setCreateTime(_ctx.stringValue("QueryTaskInfoHistoryResponse.Objects["+ i +"].CreateTime")); + taskInfoHistory.setCreateTimeLong(_ctx.longValue("QueryTaskInfoHistoryResponse.Objects["+ i +"].CreateTimeLong")); + taskInfoHistory.setClientip(_ctx.stringValue("QueryTaskInfoHistoryResponse.Objects["+ i +"].Clientip")); + + objects.add(taskInfoHistory); + } + queryTaskInfoHistoryResponse.setObjects(objects); + + return queryTaskInfoHistoryResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryTaskListResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryTaskListResponseUnmarshaller.java new file mode 100644 index 0000000000..ee6e528dc6 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryTaskListResponseUnmarshaller.java @@ -0,0 +1,57 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryTaskListResponse; +import com.aliyuncs.domain.model.v20180129.QueryTaskListResponse.TaskInfo; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryTaskListResponseUnmarshaller { + + public static QueryTaskListResponse unmarshall(QueryTaskListResponse queryTaskListResponse, UnmarshallerContext _ctx) { + + queryTaskListResponse.setRequestId(_ctx.stringValue("QueryTaskListResponse.RequestId")); + queryTaskListResponse.setPrePage(_ctx.booleanValue("QueryTaskListResponse.PrePage")); + queryTaskListResponse.setCurrentPageNum(_ctx.integerValue("QueryTaskListResponse.CurrentPageNum")); + queryTaskListResponse.setPageSize(_ctx.integerValue("QueryTaskListResponse.PageSize")); + queryTaskListResponse.setTotalPageNum(_ctx.integerValue("QueryTaskListResponse.TotalPageNum")); + queryTaskListResponse.setTotalItemNum(_ctx.integerValue("QueryTaskListResponse.TotalItemNum")); + queryTaskListResponse.setNextPage(_ctx.booleanValue("QueryTaskListResponse.NextPage")); + + List data = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryTaskListResponse.Data.Length"); i++) { + TaskInfo taskInfo = new TaskInfo(); + taskInfo.setTaskType(_ctx.stringValue("QueryTaskListResponse.Data["+ i +"].TaskType")); + taskInfo.setTaskCancelStatus(_ctx.stringValue("QueryTaskListResponse.Data["+ i +"].TaskCancelStatus")); + taskInfo.setTaskNo(_ctx.stringValue("QueryTaskListResponse.Data["+ i +"].TaskNo")); + taskInfo.setTaskCancelStatusCode(_ctx.integerValue("QueryTaskListResponse.Data["+ i +"].TaskCancelStatusCode")); + taskInfo.setTaskStatusCode(_ctx.integerValue("QueryTaskListResponse.Data["+ i +"].TaskStatusCode")); + taskInfo.setTaskStatus(_ctx.stringValue("QueryTaskListResponse.Data["+ i +"].TaskStatus")); + taskInfo.setTaskTypeDescription(_ctx.stringValue("QueryTaskListResponse.Data["+ i +"].TaskTypeDescription")); + taskInfo.setTaskNum(_ctx.integerValue("QueryTaskListResponse.Data["+ i +"].TaskNum")); + taskInfo.setCreateTime(_ctx.stringValue("QueryTaskListResponse.Data["+ i +"].CreateTime")); + taskInfo.setClientip(_ctx.stringValue("QueryTaskListResponse.Data["+ i +"].Clientip")); + + data.add(taskInfo); + } + queryTaskListResponse.setData(data); + + return queryTaskListResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryTransferInByInstanceIdResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryTransferInByInstanceIdResponseUnmarshaller.java new file mode 100644 index 0000000000..77534d5b2f --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryTransferInByInstanceIdResponseUnmarshaller.java @@ -0,0 +1,50 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.QueryTransferInByInstanceIdResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryTransferInByInstanceIdResponseUnmarshaller { + + public static QueryTransferInByInstanceIdResponse unmarshall(QueryTransferInByInstanceIdResponse queryTransferInByInstanceIdResponse, UnmarshallerContext _ctx) { + + queryTransferInByInstanceIdResponse.setRequestId(_ctx.stringValue("QueryTransferInByInstanceIdResponse.RequestId")); + queryTransferInByInstanceIdResponse.setStatus(_ctx.integerValue("QueryTransferInByInstanceIdResponse.Status")); + queryTransferInByInstanceIdResponse.setTransferAuthorizationCodeSubmissionDate(_ctx.stringValue("QueryTransferInByInstanceIdResponse.TransferAuthorizationCodeSubmissionDate")); + queryTransferInByInstanceIdResponse.setEmail(_ctx.stringValue("QueryTransferInByInstanceIdResponse.Email")); + queryTransferInByInstanceIdResponse.setProgressBarType(_ctx.integerValue("QueryTransferInByInstanceIdResponse.ProgressBarType")); + queryTransferInByInstanceIdResponse.setInstanceId(_ctx.stringValue("QueryTransferInByInstanceIdResponse.InstanceId")); + queryTransferInByInstanceIdResponse.setDomainName(_ctx.stringValue("QueryTransferInByInstanceIdResponse.DomainName")); + queryTransferInByInstanceIdResponse.setSubmissionDateLong(_ctx.longValue("QueryTransferInByInstanceIdResponse.SubmissionDateLong")); + queryTransferInByInstanceIdResponse.setSubmissionDate(_ctx.stringValue("QueryTransferInByInstanceIdResponse.SubmissionDate")); + queryTransferInByInstanceIdResponse.setSimpleTransferInStatus(_ctx.stringValue("QueryTransferInByInstanceIdResponse.SimpleTransferInStatus")); + queryTransferInByInstanceIdResponse.setTransferAuthorizationCodeSubmissionDateLong(_ctx.longValue("QueryTransferInByInstanceIdResponse.TransferAuthorizationCodeSubmissionDateLong")); + queryTransferInByInstanceIdResponse.setExpirationDateLong(_ctx.longValue("QueryTransferInByInstanceIdResponse.ExpirationDateLong")); + queryTransferInByInstanceIdResponse.setExpirationDate(_ctx.stringValue("QueryTransferInByInstanceIdResponse.ExpirationDate")); + queryTransferInByInstanceIdResponse.setNeedMailCheck(_ctx.booleanValue("QueryTransferInByInstanceIdResponse.NeedMailCheck")); + queryTransferInByInstanceIdResponse.setUserId(_ctx.stringValue("QueryTransferInByInstanceIdResponse.UserId")); + queryTransferInByInstanceIdResponse.setModificationDate(_ctx.stringValue("QueryTransferInByInstanceIdResponse.ModificationDate")); + queryTransferInByInstanceIdResponse.setResultDateLong(_ctx.longValue("QueryTransferInByInstanceIdResponse.ResultDateLong")); + queryTransferInByInstanceIdResponse.setResultMsg(_ctx.stringValue("QueryTransferInByInstanceIdResponse.ResultMsg")); + queryTransferInByInstanceIdResponse.setWhoisMailStatus(_ctx.booleanValue("QueryTransferInByInstanceIdResponse.WhoisMailStatus")); + queryTransferInByInstanceIdResponse.setModificationDateLong(_ctx.longValue("QueryTransferInByInstanceIdResponse.ModificationDateLong")); + queryTransferInByInstanceIdResponse.setResultCode(_ctx.stringValue("QueryTransferInByInstanceIdResponse.ResultCode")); + queryTransferInByInstanceIdResponse.setResultDate(_ctx.stringValue("QueryTransferInByInstanceIdResponse.ResultDate")); + + return queryTransferInByInstanceIdResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryTransferInListResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryTransferInListResponseUnmarshaller.java new file mode 100644 index 0000000000..cada1c4f30 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryTransferInListResponseUnmarshaller.java @@ -0,0 +1,68 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.QueryTransferInListResponse; +import com.aliyuncs.domain.model.v20180129.QueryTransferInListResponse.TransferInInfo; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryTransferInListResponseUnmarshaller { + + public static QueryTransferInListResponse unmarshall(QueryTransferInListResponse queryTransferInListResponse, UnmarshallerContext _ctx) { + + queryTransferInListResponse.setRequestId(_ctx.stringValue("QueryTransferInListResponse.RequestId")); + queryTransferInListResponse.setPrePage(_ctx.booleanValue("QueryTransferInListResponse.PrePage")); + queryTransferInListResponse.setCurrentPageNum(_ctx.integerValue("QueryTransferInListResponse.CurrentPageNum")); + queryTransferInListResponse.setPageSize(_ctx.integerValue("QueryTransferInListResponse.PageSize")); + queryTransferInListResponse.setTotalPageNum(_ctx.integerValue("QueryTransferInListResponse.TotalPageNum")); + queryTransferInListResponse.setTotalItemNum(_ctx.integerValue("QueryTransferInListResponse.TotalItemNum")); + queryTransferInListResponse.setNextPage(_ctx.booleanValue("QueryTransferInListResponse.NextPage")); + + List data = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("QueryTransferInListResponse.Data.Length"); i++) { + TransferInInfo transferInInfo = new TransferInInfo(); + transferInInfo.setStatus(_ctx.integerValue("QueryTransferInListResponse.Data["+ i +"].Status")); + transferInInfo.setUserId(_ctx.stringValue("QueryTransferInListResponse.Data["+ i +"].UserId")); + transferInInfo.setModificationDate(_ctx.stringValue("QueryTransferInListResponse.Data["+ i +"].ModificationDate")); + transferInInfo.setTransferAuthorizationCodeSubmissionDateLong(_ctx.longValue("QueryTransferInListResponse.Data["+ i +"].TransferAuthorizationCodeSubmissionDateLong")); + transferInInfo.setSubmissionDateLong(_ctx.longValue("QueryTransferInListResponse.Data["+ i +"].SubmissionDateLong")); + transferInInfo.setResultCode(_ctx.stringValue("QueryTransferInListResponse.Data["+ i +"].ResultCode")); + transferInInfo.setNeedMailCheck(_ctx.booleanValue("QueryTransferInListResponse.Data["+ i +"].NeedMailCheck")); + transferInInfo.setModificationDateLong(_ctx.longValue("QueryTransferInListResponse.Data["+ i +"].ModificationDateLong")); + transferInInfo.setInstanceId(_ctx.stringValue("QueryTransferInListResponse.Data["+ i +"].InstanceId")); + transferInInfo.setDomainName(_ctx.stringValue("QueryTransferInListResponse.Data["+ i +"].DomainName")); + transferInInfo.setProgressBarType(_ctx.integerValue("QueryTransferInListResponse.Data["+ i +"].ProgressBarType")); + transferInInfo.setResultMsg(_ctx.stringValue("QueryTransferInListResponse.Data["+ i +"].ResultMsg")); + transferInInfo.setResultDateLong(_ctx.longValue("QueryTransferInListResponse.Data["+ i +"].ResultDateLong")); + transferInInfo.setExpirationDate(_ctx.stringValue("QueryTransferInListResponse.Data["+ i +"].ExpirationDate")); + transferInInfo.setEmail(_ctx.stringValue("QueryTransferInListResponse.Data["+ i +"].Email")); + transferInInfo.setWhoisMailStatus(_ctx.booleanValue("QueryTransferInListResponse.Data["+ i +"].WhoisMailStatus")); + transferInInfo.setTransferAuthorizationCodeSubmissionDate(_ctx.stringValue("QueryTransferInListResponse.Data["+ i +"].TransferAuthorizationCodeSubmissionDate")); + transferInInfo.setSubmissionDate(_ctx.stringValue("QueryTransferInListResponse.Data["+ i +"].SubmissionDate")); + transferInInfo.setExpirationDateLong(_ctx.longValue("QueryTransferInListResponse.Data["+ i +"].ExpirationDateLong")); + transferInInfo.setSimpleTransferInStatus(_ctx.stringValue("QueryTransferInListResponse.Data["+ i +"].SimpleTransferInStatus")); + transferInInfo.setResultDate(_ctx.stringValue("QueryTransferInListResponse.Data["+ i +"].ResultDate")); + + data.add(transferInInfo); + } + queryTransferInListResponse.setData(data); + + return queryTransferInListResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryTransferOutInfoResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryTransferOutInfoResponseUnmarshaller.java new file mode 100644 index 0000000000..ad5c83adcb --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/QueryTransferOutInfoResponseUnmarshaller.java @@ -0,0 +1,36 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.QueryTransferOutInfoResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class QueryTransferOutInfoResponseUnmarshaller { + + public static QueryTransferOutInfoResponse unmarshall(QueryTransferOutInfoResponse queryTransferOutInfoResponse, UnmarshallerContext _ctx) { + + queryTransferOutInfoResponse.setRequestId(_ctx.stringValue("QueryTransferOutInfoResponse.RequestId")); + queryTransferOutInfoResponse.setStatus(_ctx.integerValue("QueryTransferOutInfoResponse.Status")); + queryTransferOutInfoResponse.setEmail(_ctx.stringValue("QueryTransferOutInfoResponse.Email")); + queryTransferOutInfoResponse.setExpirationDate(_ctx.stringValue("QueryTransferOutInfoResponse.ExpirationDate")); + queryTransferOutInfoResponse.setResultMsg(_ctx.stringValue("QueryTransferOutInfoResponse.ResultMsg")); + queryTransferOutInfoResponse.setPendingRequestDate(_ctx.stringValue("QueryTransferOutInfoResponse.PendingRequestDate")); + queryTransferOutInfoResponse.setResultCode(_ctx.stringValue("QueryTransferOutInfoResponse.ResultCode")); + queryTransferOutInfoResponse.setTransferAuthorizationCodeSendDate(_ctx.stringValue("QueryTransferOutInfoResponse.TransferAuthorizationCodeSendDate")); + + return queryTransferOutInfoResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/RefuseDemandResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/RegistrantProfileRealNameVerificationResponseUnmarshaller.java similarity index 50% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/RefuseDemandResponseUnmarshaller.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/RegistrantProfileRealNameVerificationResponseUnmarshaller.java index 2bc795e791..897f5d2d70 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/RefuseDemandResponseUnmarshaller.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/RegistrantProfileRealNameVerificationResponseUnmarshaller.java @@ -12,18 +12,18 @@ * limitations under the License. */ -package com.aliyuncs.domain.transform.v20180208; +package com.aliyuncs.domain.transform.v20180129; -import com.aliyuncs.domain.model.v20180208.RefuseDemandResponse; +import com.aliyuncs.domain.model.v20180129.RegistrantProfileRealNameVerificationResponse; import com.aliyuncs.transform.UnmarshallerContext; -public class RefuseDemandResponseUnmarshaller { +public class RegistrantProfileRealNameVerificationResponseUnmarshaller { - public static RefuseDemandResponse unmarshall(RefuseDemandResponse refuseDemandResponse, UnmarshallerContext _ctx) { + public static RegistrantProfileRealNameVerificationResponse unmarshall(RegistrantProfileRealNameVerificationResponse registrantProfileRealNameVerificationResponse, UnmarshallerContext _ctx) { - refuseDemandResponse.setRequestId(_ctx.stringValue("RefuseDemandResponse.RequestId")); + registrantProfileRealNameVerificationResponse.setRequestId(_ctx.stringValue("RegistrantProfileRealNameVerificationResponse.RequestId")); - return refuseDemandResponse; + return registrantProfileRealNameVerificationResponse; } } \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/ResendEmailVerificationResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/ResendEmailVerificationResponseUnmarshaller.java new file mode 100644 index 0000000000..45b9df24c0 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/ResendEmailVerificationResponseUnmarshaller.java @@ -0,0 +1,55 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.ResendEmailVerificationResponse; +import com.aliyuncs.domain.model.v20180129.ResendEmailVerificationResponse.SendResult; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class ResendEmailVerificationResponseUnmarshaller { + + public static ResendEmailVerificationResponse unmarshall(ResendEmailVerificationResponse resendEmailVerificationResponse, UnmarshallerContext _ctx) { + + resendEmailVerificationResponse.setRequestId(_ctx.stringValue("ResendEmailVerificationResponse.RequestId")); + + List successList = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("ResendEmailVerificationResponse.SuccessList.Length"); i++) { + SendResult sendResult = new SendResult(); + sendResult.setEmail(_ctx.stringValue("ResendEmailVerificationResponse.SuccessList["+ i +"].Email")); + sendResult.setCode(_ctx.stringValue("ResendEmailVerificationResponse.SuccessList["+ i +"].Code")); + sendResult.setMessage(_ctx.stringValue("ResendEmailVerificationResponse.SuccessList["+ i +"].Message")); + + successList.add(sendResult); + } + resendEmailVerificationResponse.setSuccessList(successList); + + List failList = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("ResendEmailVerificationResponse.FailList.Length"); i++) { + SendResult sendResult1 = new SendResult(); + sendResult1.setEmail(_ctx.stringValue("ResendEmailVerificationResponse.FailList["+ i +"].Email")); + sendResult1.setCode(_ctx.stringValue("ResendEmailVerificationResponse.FailList["+ i +"].Code")); + sendResult1.setMessage(_ctx.stringValue("ResendEmailVerificationResponse.FailList["+ i +"].Message")); + + failList.add(sendResult1); + } + resendEmailVerificationResponse.setFailList(failList); + + return resendEmailVerificationResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/RequestPayDemandResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/ResetQualificationVerificationResponseUnmarshaller.java similarity index 53% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/RequestPayDemandResponseUnmarshaller.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/ResetQualificationVerificationResponseUnmarshaller.java index 0708be7161..d47fa6f98e 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/RequestPayDemandResponseUnmarshaller.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/ResetQualificationVerificationResponseUnmarshaller.java @@ -12,18 +12,18 @@ * limitations under the License. */ -package com.aliyuncs.domain.transform.v20180208; +package com.aliyuncs.domain.transform.v20180129; -import com.aliyuncs.domain.model.v20180208.RequestPayDemandResponse; +import com.aliyuncs.domain.model.v20180129.ResetQualificationVerificationResponse; import com.aliyuncs.transform.UnmarshallerContext; -public class RequestPayDemandResponseUnmarshaller { +public class ResetQualificationVerificationResponseUnmarshaller { - public static RequestPayDemandResponse unmarshall(RequestPayDemandResponse requestPayDemandResponse, UnmarshallerContext _ctx) { + public static ResetQualificationVerificationResponse unmarshall(ResetQualificationVerificationResponse resetQualificationVerificationResponse, UnmarshallerContext _ctx) { - requestPayDemandResponse.setRequestId(_ctx.stringValue("RequestPayDemandResponse.RequestId")); + resetQualificationVerificationResponse.setRequestId(_ctx.stringValue("ResetQualificationVerificationResponse.RequestId")); - return requestPayDemandResponse; + return resetQualificationVerificationResponse; } } \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchDomainRemarkResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchDomainRemarkResponseUnmarshaller.java new file mode 100644 index 0000000000..5811def33c --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchDomainRemarkResponseUnmarshaller.java @@ -0,0 +1,29 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveBatchDomainRemarkResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveBatchDomainRemarkResponseUnmarshaller { + + public static SaveBatchDomainRemarkResponse unmarshall(SaveBatchDomainRemarkResponse saveBatchDomainRemarkResponse, UnmarshallerContext _ctx) { + + saveBatchDomainRemarkResponse.setRequestId(_ctx.stringValue("SaveBatchDomainRemarkResponse.RequestId")); + + return saveBatchDomainRemarkResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForApplyQuickTransferOutOpenlyResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForApplyQuickTransferOutOpenlyResponseUnmarshaller.java new file mode 100644 index 0000000000..119d444f42 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForApplyQuickTransferOutOpenlyResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveBatchTaskForApplyQuickTransferOutOpenlyResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveBatchTaskForApplyQuickTransferOutOpenlyResponseUnmarshaller { + + public static SaveBatchTaskForApplyQuickTransferOutOpenlyResponse unmarshall(SaveBatchTaskForApplyQuickTransferOutOpenlyResponse saveBatchTaskForApplyQuickTransferOutOpenlyResponse, UnmarshallerContext _ctx) { + + saveBatchTaskForApplyQuickTransferOutOpenlyResponse.setRequestId(_ctx.stringValue("SaveBatchTaskForApplyQuickTransferOutOpenlyResponse.RequestId")); + saveBatchTaskForApplyQuickTransferOutOpenlyResponse.setTaskNo(_ctx.stringValue("SaveBatchTaskForApplyQuickTransferOutOpenlyResponse.TaskNo")); + + return saveBatchTaskForApplyQuickTransferOutOpenlyResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForCreatingOrderActivateResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForCreatingOrderActivateResponseUnmarshaller.java new file mode 100644 index 0000000000..f0b25c7300 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForCreatingOrderActivateResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveBatchTaskForCreatingOrderActivateResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveBatchTaskForCreatingOrderActivateResponseUnmarshaller { + + public static SaveBatchTaskForCreatingOrderActivateResponse unmarshall(SaveBatchTaskForCreatingOrderActivateResponse saveBatchTaskForCreatingOrderActivateResponse, UnmarshallerContext _ctx) { + + saveBatchTaskForCreatingOrderActivateResponse.setRequestId(_ctx.stringValue("SaveBatchTaskForCreatingOrderActivateResponse.RequestId")); + saveBatchTaskForCreatingOrderActivateResponse.setTaskNo(_ctx.stringValue("SaveBatchTaskForCreatingOrderActivateResponse.TaskNo")); + + return saveBatchTaskForCreatingOrderActivateResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForCreatingOrderRedeemResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForCreatingOrderRedeemResponseUnmarshaller.java new file mode 100644 index 0000000000..dcea40bc85 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForCreatingOrderRedeemResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveBatchTaskForCreatingOrderRedeemResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveBatchTaskForCreatingOrderRedeemResponseUnmarshaller { + + public static SaveBatchTaskForCreatingOrderRedeemResponse unmarshall(SaveBatchTaskForCreatingOrderRedeemResponse saveBatchTaskForCreatingOrderRedeemResponse, UnmarshallerContext _ctx) { + + saveBatchTaskForCreatingOrderRedeemResponse.setRequestId(_ctx.stringValue("SaveBatchTaskForCreatingOrderRedeemResponse.RequestId")); + saveBatchTaskForCreatingOrderRedeemResponse.setTaskNo(_ctx.stringValue("SaveBatchTaskForCreatingOrderRedeemResponse.TaskNo")); + + return saveBatchTaskForCreatingOrderRedeemResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForCreatingOrderRenewResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForCreatingOrderRenewResponseUnmarshaller.java new file mode 100644 index 0000000000..fafba1efcf --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForCreatingOrderRenewResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveBatchTaskForCreatingOrderRenewResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveBatchTaskForCreatingOrderRenewResponseUnmarshaller { + + public static SaveBatchTaskForCreatingOrderRenewResponse unmarshall(SaveBatchTaskForCreatingOrderRenewResponse saveBatchTaskForCreatingOrderRenewResponse, UnmarshallerContext _ctx) { + + saveBatchTaskForCreatingOrderRenewResponse.setRequestId(_ctx.stringValue("SaveBatchTaskForCreatingOrderRenewResponse.RequestId")); + saveBatchTaskForCreatingOrderRenewResponse.setTaskNo(_ctx.stringValue("SaveBatchTaskForCreatingOrderRenewResponse.TaskNo")); + + return saveBatchTaskForCreatingOrderRenewResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForCreatingOrderTransferResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForCreatingOrderTransferResponseUnmarshaller.java new file mode 100644 index 0000000000..a941af3b0b --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForCreatingOrderTransferResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveBatchTaskForCreatingOrderTransferResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveBatchTaskForCreatingOrderTransferResponseUnmarshaller { + + public static SaveBatchTaskForCreatingOrderTransferResponse unmarshall(SaveBatchTaskForCreatingOrderTransferResponse saveBatchTaskForCreatingOrderTransferResponse, UnmarshallerContext _ctx) { + + saveBatchTaskForCreatingOrderTransferResponse.setRequestId(_ctx.stringValue("SaveBatchTaskForCreatingOrderTransferResponse.RequestId")); + saveBatchTaskForCreatingOrderTransferResponse.setTaskNo(_ctx.stringValue("SaveBatchTaskForCreatingOrderTransferResponse.TaskNo")); + + return saveBatchTaskForCreatingOrderTransferResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForDomainNameProxyServiceResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForDomainNameProxyServiceResponseUnmarshaller.java new file mode 100644 index 0000000000..afc25daf1c --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForDomainNameProxyServiceResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveBatchTaskForDomainNameProxyServiceResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveBatchTaskForDomainNameProxyServiceResponseUnmarshaller { + + public static SaveBatchTaskForDomainNameProxyServiceResponse unmarshall(SaveBatchTaskForDomainNameProxyServiceResponse saveBatchTaskForDomainNameProxyServiceResponse, UnmarshallerContext _ctx) { + + saveBatchTaskForDomainNameProxyServiceResponse.setRequestId(_ctx.stringValue("SaveBatchTaskForDomainNameProxyServiceResponse.RequestId")); + saveBatchTaskForDomainNameProxyServiceResponse.setTaskNo(_ctx.stringValue("SaveBatchTaskForDomainNameProxyServiceResponse.TaskNo")); + + return saveBatchTaskForDomainNameProxyServiceResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForGenerateDomainCertificateResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForGenerateDomainCertificateResponseUnmarshaller.java new file mode 100644 index 0000000000..4ce02056d4 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForGenerateDomainCertificateResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveBatchTaskForGenerateDomainCertificateResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveBatchTaskForGenerateDomainCertificateResponseUnmarshaller { + + public static SaveBatchTaskForGenerateDomainCertificateResponse unmarshall(SaveBatchTaskForGenerateDomainCertificateResponse saveBatchTaskForGenerateDomainCertificateResponse, UnmarshallerContext _ctx) { + + saveBatchTaskForGenerateDomainCertificateResponse.setRequestId(_ctx.stringValue("SaveBatchTaskForGenerateDomainCertificateResponse.RequestId")); + saveBatchTaskForGenerateDomainCertificateResponse.setTaskNo(_ctx.stringValue("SaveBatchTaskForGenerateDomainCertificateResponse.TaskNo")); + + return saveBatchTaskForGenerateDomainCertificateResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForModifyingDomainDnsResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForModifyingDomainDnsResponseUnmarshaller.java new file mode 100644 index 0000000000..ab992f75e6 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForModifyingDomainDnsResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveBatchTaskForModifyingDomainDnsResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveBatchTaskForModifyingDomainDnsResponseUnmarshaller { + + public static SaveBatchTaskForModifyingDomainDnsResponse unmarshall(SaveBatchTaskForModifyingDomainDnsResponse saveBatchTaskForModifyingDomainDnsResponse, UnmarshallerContext _ctx) { + + saveBatchTaskForModifyingDomainDnsResponse.setRequestId(_ctx.stringValue("SaveBatchTaskForModifyingDomainDnsResponse.RequestId")); + saveBatchTaskForModifyingDomainDnsResponse.setTaskNo(_ctx.stringValue("SaveBatchTaskForModifyingDomainDnsResponse.TaskNo")); + + return saveBatchTaskForModifyingDomainDnsResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForReserveDropListDomainResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForReserveDropListDomainResponseUnmarshaller.java new file mode 100644 index 0000000000..1c81bb62c4 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForReserveDropListDomainResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveBatchTaskForReserveDropListDomainResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveBatchTaskForReserveDropListDomainResponseUnmarshaller { + + public static SaveBatchTaskForReserveDropListDomainResponse unmarshall(SaveBatchTaskForReserveDropListDomainResponse saveBatchTaskForReserveDropListDomainResponse, UnmarshallerContext _ctx) { + + saveBatchTaskForReserveDropListDomainResponse.setRequestId(_ctx.stringValue("SaveBatchTaskForReserveDropListDomainResponse.RequestId")); + saveBatchTaskForReserveDropListDomainResponse.setTaskNo(_ctx.stringValue("SaveBatchTaskForReserveDropListDomainResponse.TaskNo")); + + return saveBatchTaskForReserveDropListDomainResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForTransferOutByAuthorizationCodeResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForTransferOutByAuthorizationCodeResponseUnmarshaller.java new file mode 100644 index 0000000000..e8447cdf0a --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForTransferOutByAuthorizationCodeResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveBatchTaskForTransferOutByAuthorizationCodeResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveBatchTaskForTransferOutByAuthorizationCodeResponseUnmarshaller { + + public static SaveBatchTaskForTransferOutByAuthorizationCodeResponse unmarshall(SaveBatchTaskForTransferOutByAuthorizationCodeResponse saveBatchTaskForTransferOutByAuthorizationCodeResponse, UnmarshallerContext _ctx) { + + saveBatchTaskForTransferOutByAuthorizationCodeResponse.setRequestId(_ctx.stringValue("SaveBatchTaskForTransferOutByAuthorizationCodeResponse.RequestId")); + saveBatchTaskForTransferOutByAuthorizationCodeResponse.setTaskNo(_ctx.stringValue("SaveBatchTaskForTransferOutByAuthorizationCodeResponse.TaskNo")); + + return saveBatchTaskForTransferOutByAuthorizationCodeResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForTransferProhibitionLockResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForTransferProhibitionLockResponseUnmarshaller.java new file mode 100644 index 0000000000..dd9c3285ef --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForTransferProhibitionLockResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveBatchTaskForTransferProhibitionLockResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveBatchTaskForTransferProhibitionLockResponseUnmarshaller { + + public static SaveBatchTaskForTransferProhibitionLockResponse unmarshall(SaveBatchTaskForTransferProhibitionLockResponse saveBatchTaskForTransferProhibitionLockResponse, UnmarshallerContext _ctx) { + + saveBatchTaskForTransferProhibitionLockResponse.setRequestId(_ctx.stringValue("SaveBatchTaskForTransferProhibitionLockResponse.RequestId")); + saveBatchTaskForTransferProhibitionLockResponse.setTaskNo(_ctx.stringValue("SaveBatchTaskForTransferProhibitionLockResponse.TaskNo")); + + return saveBatchTaskForTransferProhibitionLockResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForUpdateProhibitionLockResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForUpdateProhibitionLockResponseUnmarshaller.java new file mode 100644 index 0000000000..6adcd182ec --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForUpdateProhibitionLockResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveBatchTaskForUpdateProhibitionLockResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveBatchTaskForUpdateProhibitionLockResponseUnmarshaller { + + public static SaveBatchTaskForUpdateProhibitionLockResponse unmarshall(SaveBatchTaskForUpdateProhibitionLockResponse saveBatchTaskForUpdateProhibitionLockResponse, UnmarshallerContext _ctx) { + + saveBatchTaskForUpdateProhibitionLockResponse.setRequestId(_ctx.stringValue("SaveBatchTaskForUpdateProhibitionLockResponse.RequestId")); + saveBatchTaskForUpdateProhibitionLockResponse.setTaskNo(_ctx.stringValue("SaveBatchTaskForUpdateProhibitionLockResponse.TaskNo")); + + return saveBatchTaskForUpdateProhibitionLockResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForUpdatingContactInfoByNewContactResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForUpdatingContactInfoByNewContactResponseUnmarshaller.java new file mode 100644 index 0000000000..b2cce17d60 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForUpdatingContactInfoByNewContactResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveBatchTaskForUpdatingContactInfoByNewContactResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveBatchTaskForUpdatingContactInfoByNewContactResponseUnmarshaller { + + public static SaveBatchTaskForUpdatingContactInfoByNewContactResponse unmarshall(SaveBatchTaskForUpdatingContactInfoByNewContactResponse saveBatchTaskForUpdatingContactInfoByNewContactResponse, UnmarshallerContext _ctx) { + + saveBatchTaskForUpdatingContactInfoByNewContactResponse.setRequestId(_ctx.stringValue("SaveBatchTaskForUpdatingContactInfoByNewContactResponse.RequestId")); + saveBatchTaskForUpdatingContactInfoByNewContactResponse.setTaskNo(_ctx.stringValue("SaveBatchTaskForUpdatingContactInfoByNewContactResponse.TaskNo")); + + return saveBatchTaskForUpdatingContactInfoByNewContactResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdResponseUnmarshaller.java new file mode 100644 index 0000000000..9280103b54 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdResponseUnmarshaller { + + public static SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdResponse unmarshall(SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdResponse saveBatchTaskForUpdatingContactInfoByRegistrantProfileIdResponse, UnmarshallerContext _ctx) { + + saveBatchTaskForUpdatingContactInfoByRegistrantProfileIdResponse.setRequestId(_ctx.stringValue("SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdResponse.RequestId")); + saveBatchTaskForUpdatingContactInfoByRegistrantProfileIdResponse.setTaskNo(_ctx.stringValue("SaveBatchTaskForUpdatingContactInfoByRegistrantProfileIdResponse.TaskNo")); + + return saveBatchTaskForUpdatingContactInfoByRegistrantProfileIdResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveDomainGroupResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveDomainGroupResponseUnmarshaller.java new file mode 100644 index 0000000000..c5fa761e58 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveDomainGroupResponseUnmarshaller.java @@ -0,0 +1,36 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveDomainGroupResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveDomainGroupResponseUnmarshaller { + + public static SaveDomainGroupResponse unmarshall(SaveDomainGroupResponse saveDomainGroupResponse, UnmarshallerContext _ctx) { + + saveDomainGroupResponse.setRequestId(_ctx.stringValue("SaveDomainGroupResponse.RequestId")); + saveDomainGroupResponse.setBeingDeleted(_ctx.booleanValue("SaveDomainGroupResponse.BeingDeleted")); + saveDomainGroupResponse.setCreationDate(_ctx.stringValue("SaveDomainGroupResponse.CreationDate")); + saveDomainGroupResponse.setDomainGroupName(_ctx.stringValue("SaveDomainGroupResponse.DomainGroupName")); + saveDomainGroupResponse.setModificationDate(_ctx.stringValue("SaveDomainGroupResponse.ModificationDate")); + saveDomainGroupResponse.setDomainGroupStatus(_ctx.stringValue("SaveDomainGroupResponse.DomainGroupStatus")); + saveDomainGroupResponse.setDomainGroupId(_ctx.longValue("SaveDomainGroupResponse.DomainGroupId")); + saveDomainGroupResponse.setTotalNumber(_ctx.integerValue("SaveDomainGroupResponse.TotalNumber")); + + return saveDomainGroupResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveRegistrantProfileRealNameVerificationResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveRegistrantProfileRealNameVerificationResponseUnmarshaller.java new file mode 100644 index 0000000000..66dcdbe4ce --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveRegistrantProfileRealNameVerificationResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveRegistrantProfileRealNameVerificationResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveRegistrantProfileRealNameVerificationResponseUnmarshaller { + + public static SaveRegistrantProfileRealNameVerificationResponse unmarshall(SaveRegistrantProfileRealNameVerificationResponse saveRegistrantProfileRealNameVerificationResponse, UnmarshallerContext _ctx) { + + saveRegistrantProfileRealNameVerificationResponse.setRequestId(_ctx.stringValue("SaveRegistrantProfileRealNameVerificationResponse.RequestId")); + saveRegistrantProfileRealNameVerificationResponse.setRegistrantProfileId(_ctx.longValue("SaveRegistrantProfileRealNameVerificationResponse.RegistrantProfileId")); + + return saveRegistrantProfileRealNameVerificationResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveRegistrantProfileResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveRegistrantProfileResponseUnmarshaller.java new file mode 100644 index 0000000000..04b3c142e0 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveRegistrantProfileResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveRegistrantProfileResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveRegistrantProfileResponseUnmarshaller { + + public static SaveRegistrantProfileResponse unmarshall(SaveRegistrantProfileResponse saveRegistrantProfileResponse, UnmarshallerContext _ctx) { + + saveRegistrantProfileResponse.setRequestId(_ctx.stringValue("SaveRegistrantProfileResponse.RequestId")); + saveRegistrantProfileResponse.setRegistrantProfileId(_ctx.longValue("SaveRegistrantProfileResponse.RegistrantProfileId")); + + return saveRegistrantProfileResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForAddingDSRecordResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForAddingDSRecordResponseUnmarshaller.java new file mode 100644 index 0000000000..b2100dfbe8 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForAddingDSRecordResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForAddingDSRecordResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForAddingDSRecordResponseUnmarshaller { + + public static SaveSingleTaskForAddingDSRecordResponse unmarshall(SaveSingleTaskForAddingDSRecordResponse saveSingleTaskForAddingDSRecordResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForAddingDSRecordResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForAddingDSRecordResponse.RequestId")); + saveSingleTaskForAddingDSRecordResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForAddingDSRecordResponse.TaskNo")); + + return saveSingleTaskForAddingDSRecordResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForApplyQuickTransferOutOpenlyResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForApplyQuickTransferOutOpenlyResponseUnmarshaller.java new file mode 100644 index 0000000000..e88f1e6861 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForApplyQuickTransferOutOpenlyResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForApplyQuickTransferOutOpenlyResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForApplyQuickTransferOutOpenlyResponseUnmarshaller { + + public static SaveSingleTaskForApplyQuickTransferOutOpenlyResponse unmarshall(SaveSingleTaskForApplyQuickTransferOutOpenlyResponse saveSingleTaskForApplyQuickTransferOutOpenlyResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForApplyQuickTransferOutOpenlyResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForApplyQuickTransferOutOpenlyResponse.RequestId")); + saveSingleTaskForApplyQuickTransferOutOpenlyResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForApplyQuickTransferOutOpenlyResponse.TaskNo")); + + return saveSingleTaskForApplyQuickTransferOutOpenlyResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForApprovingTransferOutResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForApprovingTransferOutResponseUnmarshaller.java new file mode 100644 index 0000000000..10232cb6a1 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForApprovingTransferOutResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForApprovingTransferOutResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForApprovingTransferOutResponseUnmarshaller { + + public static SaveSingleTaskForApprovingTransferOutResponse unmarshall(SaveSingleTaskForApprovingTransferOutResponse saveSingleTaskForApprovingTransferOutResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForApprovingTransferOutResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForApprovingTransferOutResponse.RequestId")); + saveSingleTaskForApprovingTransferOutResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForApprovingTransferOutResponse.TaskNo")); + + return saveSingleTaskForApprovingTransferOutResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForAssociatingEnsResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForAssociatingEnsResponseUnmarshaller.java new file mode 100644 index 0000000000..f6173b3482 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForAssociatingEnsResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForAssociatingEnsResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForAssociatingEnsResponseUnmarshaller { + + public static SaveSingleTaskForAssociatingEnsResponse unmarshall(SaveSingleTaskForAssociatingEnsResponse saveSingleTaskForAssociatingEnsResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForAssociatingEnsResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForAssociatingEnsResponse.RequestId")); + saveSingleTaskForAssociatingEnsResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForAssociatingEnsResponse.TaskNo")); + + return saveSingleTaskForAssociatingEnsResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForCancelingTransferInResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForCancelingTransferInResponseUnmarshaller.java new file mode 100644 index 0000000000..137180cb39 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForCancelingTransferInResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForCancelingTransferInResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForCancelingTransferInResponseUnmarshaller { + + public static SaveSingleTaskForCancelingTransferInResponse unmarshall(SaveSingleTaskForCancelingTransferInResponse saveSingleTaskForCancelingTransferInResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForCancelingTransferInResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForCancelingTransferInResponse.RequestId")); + saveSingleTaskForCancelingTransferInResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForCancelingTransferInResponse.TaskNo")); + + return saveSingleTaskForCancelingTransferInResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForCancelingTransferOutResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForCancelingTransferOutResponseUnmarshaller.java new file mode 100644 index 0000000000..16c2937f82 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForCancelingTransferOutResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForCancelingTransferOutResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForCancelingTransferOutResponseUnmarshaller { + + public static SaveSingleTaskForCancelingTransferOutResponse unmarshall(SaveSingleTaskForCancelingTransferOutResponse saveSingleTaskForCancelingTransferOutResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForCancelingTransferOutResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForCancelingTransferOutResponse.RequestId")); + saveSingleTaskForCancelingTransferOutResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForCancelingTransferOutResponse.TaskNo")); + + return saveSingleTaskForCancelingTransferOutResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForCreatingDnsHostResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForCreatingDnsHostResponseUnmarshaller.java new file mode 100644 index 0000000000..c005a9d361 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForCreatingDnsHostResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForCreatingDnsHostResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForCreatingDnsHostResponseUnmarshaller { + + public static SaveSingleTaskForCreatingDnsHostResponse unmarshall(SaveSingleTaskForCreatingDnsHostResponse saveSingleTaskForCreatingDnsHostResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForCreatingDnsHostResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForCreatingDnsHostResponse.RequestId")); + saveSingleTaskForCreatingDnsHostResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForCreatingDnsHostResponse.TaskNo")); + + return saveSingleTaskForCreatingDnsHostResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForCreatingOrderActivateResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForCreatingOrderActivateResponseUnmarshaller.java new file mode 100644 index 0000000000..5299bae26e --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForCreatingOrderActivateResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForCreatingOrderActivateResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForCreatingOrderActivateResponseUnmarshaller { + + public static SaveSingleTaskForCreatingOrderActivateResponse unmarshall(SaveSingleTaskForCreatingOrderActivateResponse saveSingleTaskForCreatingOrderActivateResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForCreatingOrderActivateResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForCreatingOrderActivateResponse.RequestId")); + saveSingleTaskForCreatingOrderActivateResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForCreatingOrderActivateResponse.TaskNo")); + + return saveSingleTaskForCreatingOrderActivateResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForCreatingOrderRedeemResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForCreatingOrderRedeemResponseUnmarshaller.java new file mode 100644 index 0000000000..bf479d8b70 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForCreatingOrderRedeemResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForCreatingOrderRedeemResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForCreatingOrderRedeemResponseUnmarshaller { + + public static SaveSingleTaskForCreatingOrderRedeemResponse unmarshall(SaveSingleTaskForCreatingOrderRedeemResponse saveSingleTaskForCreatingOrderRedeemResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForCreatingOrderRedeemResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForCreatingOrderRedeemResponse.RequestId")); + saveSingleTaskForCreatingOrderRedeemResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForCreatingOrderRedeemResponse.TaskNo")); + + return saveSingleTaskForCreatingOrderRedeemResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForCreatingOrderRenewResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForCreatingOrderRenewResponseUnmarshaller.java new file mode 100644 index 0000000000..330fbfc3bb --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForCreatingOrderRenewResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForCreatingOrderRenewResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForCreatingOrderRenewResponseUnmarshaller { + + public static SaveSingleTaskForCreatingOrderRenewResponse unmarshall(SaveSingleTaskForCreatingOrderRenewResponse saveSingleTaskForCreatingOrderRenewResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForCreatingOrderRenewResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForCreatingOrderRenewResponse.RequestId")); + saveSingleTaskForCreatingOrderRenewResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForCreatingOrderRenewResponse.TaskNo")); + + return saveSingleTaskForCreatingOrderRenewResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForCreatingOrderTransferResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForCreatingOrderTransferResponseUnmarshaller.java new file mode 100644 index 0000000000..46ba4aef44 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForCreatingOrderTransferResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForCreatingOrderTransferResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForCreatingOrderTransferResponseUnmarshaller { + + public static SaveSingleTaskForCreatingOrderTransferResponse unmarshall(SaveSingleTaskForCreatingOrderTransferResponse saveSingleTaskForCreatingOrderTransferResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForCreatingOrderTransferResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForCreatingOrderTransferResponse.RequestId")); + saveSingleTaskForCreatingOrderTransferResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForCreatingOrderTransferResponse.TaskNo")); + + return saveSingleTaskForCreatingOrderTransferResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForDeletingDSRecordResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForDeletingDSRecordResponseUnmarshaller.java new file mode 100644 index 0000000000..17cb7c50b2 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForDeletingDSRecordResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForDeletingDSRecordResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForDeletingDSRecordResponseUnmarshaller { + + public static SaveSingleTaskForDeletingDSRecordResponse unmarshall(SaveSingleTaskForDeletingDSRecordResponse saveSingleTaskForDeletingDSRecordResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForDeletingDSRecordResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForDeletingDSRecordResponse.RequestId")); + saveSingleTaskForDeletingDSRecordResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForDeletingDSRecordResponse.TaskNo")); + + return saveSingleTaskForDeletingDSRecordResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForDeletingDnsHostResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForDeletingDnsHostResponseUnmarshaller.java new file mode 100644 index 0000000000..eb7580ccfe --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForDeletingDnsHostResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForDeletingDnsHostResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForDeletingDnsHostResponseUnmarshaller { + + public static SaveSingleTaskForDeletingDnsHostResponse unmarshall(SaveSingleTaskForDeletingDnsHostResponse saveSingleTaskForDeletingDnsHostResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForDeletingDnsHostResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForDeletingDnsHostResponse.RequestId")); + saveSingleTaskForDeletingDnsHostResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForDeletingDnsHostResponse.TaskNo")); + + return saveSingleTaskForDeletingDnsHostResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForDisassociatingEnsResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForDisassociatingEnsResponseUnmarshaller.java new file mode 100644 index 0000000000..288c000072 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForDisassociatingEnsResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForDisassociatingEnsResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForDisassociatingEnsResponseUnmarshaller { + + public static SaveSingleTaskForDisassociatingEnsResponse unmarshall(SaveSingleTaskForDisassociatingEnsResponse saveSingleTaskForDisassociatingEnsResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForDisassociatingEnsResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForDisassociatingEnsResponse.RequestId")); + saveSingleTaskForDisassociatingEnsResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForDisassociatingEnsResponse.TaskNo")); + + return saveSingleTaskForDisassociatingEnsResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForDomainNameProxyServiceResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForDomainNameProxyServiceResponseUnmarshaller.java new file mode 100644 index 0000000000..d83c30a676 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForDomainNameProxyServiceResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForDomainNameProxyServiceResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForDomainNameProxyServiceResponseUnmarshaller { + + public static SaveSingleTaskForDomainNameProxyServiceResponse unmarshall(SaveSingleTaskForDomainNameProxyServiceResponse saveSingleTaskForDomainNameProxyServiceResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForDomainNameProxyServiceResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForDomainNameProxyServiceResponse.RequestId")); + saveSingleTaskForDomainNameProxyServiceResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForDomainNameProxyServiceResponse.TaskNo")); + + return saveSingleTaskForDomainNameProxyServiceResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForGenerateDomainCertificateResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForGenerateDomainCertificateResponseUnmarshaller.java new file mode 100644 index 0000000000..c092d0ae9e --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForGenerateDomainCertificateResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForGenerateDomainCertificateResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForGenerateDomainCertificateResponseUnmarshaller { + + public static SaveSingleTaskForGenerateDomainCertificateResponse unmarshall(SaveSingleTaskForGenerateDomainCertificateResponse saveSingleTaskForGenerateDomainCertificateResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForGenerateDomainCertificateResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForGenerateDomainCertificateResponse.RequestId")); + saveSingleTaskForGenerateDomainCertificateResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForGenerateDomainCertificateResponse.TaskNo")); + + return saveSingleTaskForGenerateDomainCertificateResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForModifyingDSRecordResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForModifyingDSRecordResponseUnmarshaller.java new file mode 100644 index 0000000000..86ec499f31 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForModifyingDSRecordResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForModifyingDSRecordResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForModifyingDSRecordResponseUnmarshaller { + + public static SaveSingleTaskForModifyingDSRecordResponse unmarshall(SaveSingleTaskForModifyingDSRecordResponse saveSingleTaskForModifyingDSRecordResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForModifyingDSRecordResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForModifyingDSRecordResponse.RequestId")); + saveSingleTaskForModifyingDSRecordResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForModifyingDSRecordResponse.TaskNo")); + + return saveSingleTaskForModifyingDSRecordResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForModifyingDnsHostResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForModifyingDnsHostResponseUnmarshaller.java new file mode 100644 index 0000000000..8935cc3008 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForModifyingDnsHostResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForModifyingDnsHostResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForModifyingDnsHostResponseUnmarshaller { + + public static SaveSingleTaskForModifyingDnsHostResponse unmarshall(SaveSingleTaskForModifyingDnsHostResponse saveSingleTaskForModifyingDnsHostResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForModifyingDnsHostResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForModifyingDnsHostResponse.RequestId")); + saveSingleTaskForModifyingDnsHostResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForModifyingDnsHostResponse.TaskNo")); + + return saveSingleTaskForModifyingDnsHostResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForQueryingTransferAuthorizationCodeResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForQueryingTransferAuthorizationCodeResponseUnmarshaller.java new file mode 100644 index 0000000000..8bdcd5d6d4 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForQueryingTransferAuthorizationCodeResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForQueryingTransferAuthorizationCodeResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForQueryingTransferAuthorizationCodeResponseUnmarshaller { + + public static SaveSingleTaskForQueryingTransferAuthorizationCodeResponse unmarshall(SaveSingleTaskForQueryingTransferAuthorizationCodeResponse saveSingleTaskForQueryingTransferAuthorizationCodeResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForQueryingTransferAuthorizationCodeResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForQueryingTransferAuthorizationCodeResponse.RequestId")); + saveSingleTaskForQueryingTransferAuthorizationCodeResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForQueryingTransferAuthorizationCodeResponse.TaskNo")); + + return saveSingleTaskForQueryingTransferAuthorizationCodeResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForReserveDropListDomainResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForReserveDropListDomainResponseUnmarshaller.java new file mode 100644 index 0000000000..1d02a51000 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForReserveDropListDomainResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForReserveDropListDomainResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForReserveDropListDomainResponseUnmarshaller { + + public static SaveSingleTaskForReserveDropListDomainResponse unmarshall(SaveSingleTaskForReserveDropListDomainResponse saveSingleTaskForReserveDropListDomainResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForReserveDropListDomainResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForReserveDropListDomainResponse.RequestId")); + saveSingleTaskForReserveDropListDomainResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForReserveDropListDomainResponse.TaskNo")); + + return saveSingleTaskForReserveDropListDomainResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForSaveArtExtensionResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForSaveArtExtensionResponseUnmarshaller.java new file mode 100644 index 0000000000..db5f3bcf1d --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForSaveArtExtensionResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForSaveArtExtensionResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForSaveArtExtensionResponseUnmarshaller { + + public static SaveSingleTaskForSaveArtExtensionResponse unmarshall(SaveSingleTaskForSaveArtExtensionResponse saveSingleTaskForSaveArtExtensionResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForSaveArtExtensionResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForSaveArtExtensionResponse.RequestId")); + saveSingleTaskForSaveArtExtensionResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForSaveArtExtensionResponse.TaskNo")); + + return saveSingleTaskForSaveArtExtensionResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForSynchronizingDSRecordResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForSynchronizingDSRecordResponseUnmarshaller.java new file mode 100644 index 0000000000..97acfb438b --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForSynchronizingDSRecordResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForSynchronizingDSRecordResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForSynchronizingDSRecordResponseUnmarshaller { + + public static SaveSingleTaskForSynchronizingDSRecordResponse unmarshall(SaveSingleTaskForSynchronizingDSRecordResponse saveSingleTaskForSynchronizingDSRecordResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForSynchronizingDSRecordResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForSynchronizingDSRecordResponse.RequestId")); + saveSingleTaskForSynchronizingDSRecordResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForSynchronizingDSRecordResponse.TaskNo")); + + return saveSingleTaskForSynchronizingDSRecordResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForSynchronizingDnsHostResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForSynchronizingDnsHostResponseUnmarshaller.java new file mode 100644 index 0000000000..58c523d6e3 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForSynchronizingDnsHostResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForSynchronizingDnsHostResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForSynchronizingDnsHostResponseUnmarshaller { + + public static SaveSingleTaskForSynchronizingDnsHostResponse unmarshall(SaveSingleTaskForSynchronizingDnsHostResponse saveSingleTaskForSynchronizingDnsHostResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForSynchronizingDnsHostResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForSynchronizingDnsHostResponse.RequestId")); + saveSingleTaskForSynchronizingDnsHostResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForSynchronizingDnsHostResponse.TaskNo")); + + return saveSingleTaskForSynchronizingDnsHostResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForTransferOutByAuthorizationCodeResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForTransferOutByAuthorizationCodeResponseUnmarshaller.java new file mode 100644 index 0000000000..9be594e486 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForTransferOutByAuthorizationCodeResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForTransferOutByAuthorizationCodeResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForTransferOutByAuthorizationCodeResponseUnmarshaller { + + public static SaveSingleTaskForTransferOutByAuthorizationCodeResponse unmarshall(SaveSingleTaskForTransferOutByAuthorizationCodeResponse saveSingleTaskForTransferOutByAuthorizationCodeResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForTransferOutByAuthorizationCodeResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForTransferOutByAuthorizationCodeResponse.RequestId")); + saveSingleTaskForTransferOutByAuthorizationCodeResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForTransferOutByAuthorizationCodeResponse.TaskNo")); + + return saveSingleTaskForTransferOutByAuthorizationCodeResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForTransferProhibitionLockResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForTransferProhibitionLockResponseUnmarshaller.java new file mode 100644 index 0000000000..fcdbc144f8 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForTransferProhibitionLockResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForTransferProhibitionLockResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForTransferProhibitionLockResponseUnmarshaller { + + public static SaveSingleTaskForTransferProhibitionLockResponse unmarshall(SaveSingleTaskForTransferProhibitionLockResponse saveSingleTaskForTransferProhibitionLockResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForTransferProhibitionLockResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForTransferProhibitionLockResponse.RequestId")); + saveSingleTaskForTransferProhibitionLockResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForTransferProhibitionLockResponse.TaskNo")); + + return saveSingleTaskForTransferProhibitionLockResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForUpdateProhibitionLockResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForUpdateProhibitionLockResponseUnmarshaller.java new file mode 100644 index 0000000000..2dd87499e4 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForUpdateProhibitionLockResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForUpdateProhibitionLockResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForUpdateProhibitionLockResponseUnmarshaller { + + public static SaveSingleTaskForUpdateProhibitionLockResponse unmarshall(SaveSingleTaskForUpdateProhibitionLockResponse saveSingleTaskForUpdateProhibitionLockResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForUpdateProhibitionLockResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForUpdateProhibitionLockResponse.RequestId")); + saveSingleTaskForUpdateProhibitionLockResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForUpdateProhibitionLockResponse.TaskNo")); + + return saveSingleTaskForUpdateProhibitionLockResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForUpdatingContactInfoResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForUpdatingContactInfoResponseUnmarshaller.java new file mode 100644 index 0000000000..5e98c184a3 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveSingleTaskForUpdatingContactInfoResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveSingleTaskForUpdatingContactInfoResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveSingleTaskForUpdatingContactInfoResponseUnmarshaller { + + public static SaveSingleTaskForUpdatingContactInfoResponse unmarshall(SaveSingleTaskForUpdatingContactInfoResponse saveSingleTaskForUpdatingContactInfoResponse, UnmarshallerContext _ctx) { + + saveSingleTaskForUpdatingContactInfoResponse.setRequestId(_ctx.stringValue("SaveSingleTaskForUpdatingContactInfoResponse.RequestId")); + saveSingleTaskForUpdatingContactInfoResponse.setTaskNo(_ctx.stringValue("SaveSingleTaskForUpdatingContactInfoResponse.TaskNo")); + + return saveSingleTaskForUpdatingContactInfoResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveTaskForSubmittingDomainDeleteResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveTaskForSubmittingDomainDeleteResponseUnmarshaller.java new file mode 100644 index 0000000000..4ec94f29b0 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveTaskForSubmittingDomainDeleteResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveTaskForSubmittingDomainDeleteResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveTaskForSubmittingDomainDeleteResponseUnmarshaller { + + public static SaveTaskForSubmittingDomainDeleteResponse unmarshall(SaveTaskForSubmittingDomainDeleteResponse saveTaskForSubmittingDomainDeleteResponse, UnmarshallerContext _ctx) { + + saveTaskForSubmittingDomainDeleteResponse.setRequestId(_ctx.stringValue("SaveTaskForSubmittingDomainDeleteResponse.RequestId")); + saveTaskForSubmittingDomainDeleteResponse.setTaskNo(_ctx.stringValue("SaveTaskForSubmittingDomainDeleteResponse.TaskNo")); + + return saveTaskForSubmittingDomainDeleteResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialResponseUnmarshaller.java new file mode 100644 index 0000000000..bb13166467 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialResponseUnmarshaller { + + public static SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialResponse unmarshall(SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialResponse saveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialResponse, UnmarshallerContext _ctx) { + + saveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialResponse.setRequestId(_ctx.stringValue("SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialResponse.RequestId")); + saveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialResponse.setTaskNo(_ctx.stringValue("SaveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialResponse.TaskNo")); + + return saveTaskForSubmittingDomainRealNameVerificationByIdentityCredentialResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDResponseUnmarshaller.java new file mode 100644 index 0000000000..ce9d0956ca --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDResponseUnmarshaller { + + public static SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDResponse unmarshall(SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDResponse saveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDResponse, UnmarshallerContext _ctx) { + + saveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDResponse.setRequestId(_ctx.stringValue("SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDResponse.RequestId")); + saveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDResponse.setTaskNo(_ctx.stringValue("SaveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDResponse.TaskNo")); + + return saveTaskForSubmittingDomainRealNameVerificationByRegistrantProfileIDResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveTaskForUpdatingRegistrantInfoByIdentityCredentialResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveTaskForUpdatingRegistrantInfoByIdentityCredentialResponseUnmarshaller.java new file mode 100644 index 0000000000..a4f1fe26b8 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveTaskForUpdatingRegistrantInfoByIdentityCredentialResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveTaskForUpdatingRegistrantInfoByIdentityCredentialResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveTaskForUpdatingRegistrantInfoByIdentityCredentialResponseUnmarshaller { + + public static SaveTaskForUpdatingRegistrantInfoByIdentityCredentialResponse unmarshall(SaveTaskForUpdatingRegistrantInfoByIdentityCredentialResponse saveTaskForUpdatingRegistrantInfoByIdentityCredentialResponse, UnmarshallerContext _ctx) { + + saveTaskForUpdatingRegistrantInfoByIdentityCredentialResponse.setRequestId(_ctx.stringValue("SaveTaskForUpdatingRegistrantInfoByIdentityCredentialResponse.RequestId")); + saveTaskForUpdatingRegistrantInfoByIdentityCredentialResponse.setTaskNo(_ctx.stringValue("SaveTaskForUpdatingRegistrantInfoByIdentityCredentialResponse.TaskNo")); + + return saveTaskForUpdatingRegistrantInfoByIdentityCredentialResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDResponseUnmarshaller.java new file mode 100644 index 0000000000..539bc05190 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDResponseUnmarshaller { + + public static SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDResponse unmarshall(SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDResponse saveTaskForUpdatingRegistrantInfoByRegistrantProfileIDResponse, UnmarshallerContext _ctx) { + + saveTaskForUpdatingRegistrantInfoByRegistrantProfileIDResponse.setRequestId(_ctx.stringValue("SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDResponse.RequestId")); + saveTaskForUpdatingRegistrantInfoByRegistrantProfileIDResponse.setTaskNo(_ctx.stringValue("SaveTaskForUpdatingRegistrantInfoByRegistrantProfileIDResponse.TaskNo")); + + return saveTaskForUpdatingRegistrantInfoByRegistrantProfileIDResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/ScrollDomainListResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/ScrollDomainListResponseUnmarshaller.java new file mode 100644 index 0000000000..f02d322818 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/ScrollDomainListResponseUnmarshaller.java @@ -0,0 +1,82 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.ScrollDomainListResponse; +import com.aliyuncs.domain.model.v20180129.ScrollDomainListResponse.Domain; +import com.aliyuncs.domain.model.v20180129.ScrollDomainListResponse.Domain.TagItem; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class ScrollDomainListResponseUnmarshaller { + + public static ScrollDomainListResponse unmarshall(ScrollDomainListResponse scrollDomainListResponse, UnmarshallerContext _ctx) { + + scrollDomainListResponse.setRequestId(_ctx.stringValue("ScrollDomainListResponse.RequestId")); + scrollDomainListResponse.setPageSize(_ctx.integerValue("ScrollDomainListResponse.PageSize")); + scrollDomainListResponse.setScrollId(_ctx.stringValue("ScrollDomainListResponse.ScrollId")); + scrollDomainListResponse.setTotalItemNum(_ctx.integerValue("ScrollDomainListResponse.TotalItemNum")); + + List data = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("ScrollDomainListResponse.Data.Length"); i++) { + Domain domain = new Domain(); + domain.setDomainAuditStatus(_ctx.stringValue("ScrollDomainListResponse.Data["+ i +"].DomainAuditStatus")); + domain.setDomainGroupId(_ctx.stringValue("ScrollDomainListResponse.Data["+ i +"].DomainGroupId")); + domain.setRemark(_ctx.stringValue("ScrollDomainListResponse.Data["+ i +"].Remark")); + domain.setDomainGroupName(_ctx.stringValue("ScrollDomainListResponse.Data["+ i +"].DomainGroupName")); + domain.setZhRegistrantOrganization(_ctx.stringValue("ScrollDomainListResponse.Data["+ i +"].ZhRegistrantOrganization")); + domain.setRegistrantOrganization(_ctx.stringValue("ScrollDomainListResponse.Data["+ i +"].RegistrantOrganization")); + domain.setRegistrationDate(_ctx.stringValue("ScrollDomainListResponse.Data["+ i +"].RegistrationDate")); + domain.setInstanceId(_ctx.stringValue("ScrollDomainListResponse.Data["+ i +"].InstanceId")); + domain.setDomainName(_ctx.stringValue("ScrollDomainListResponse.Data["+ i +"].DomainName")); + domain.setExpirationDateStatus(_ctx.stringValue("ScrollDomainListResponse.Data["+ i +"].ExpirationDateStatus")); + domain.setExpirationDate(_ctx.stringValue("ScrollDomainListResponse.Data["+ i +"].ExpirationDate")); + domain.setEmail(_ctx.stringValue("ScrollDomainListResponse.Data["+ i +"].Email")); + domain.setRegistrantType(_ctx.stringValue("ScrollDomainListResponse.Data["+ i +"].RegistrantType")); + domain.setExpirationDateLong(_ctx.longValue("ScrollDomainListResponse.Data["+ i +"].ExpirationDateLong")); + domain.setExpirationCurrDateDiff(_ctx.integerValue("ScrollDomainListResponse.Data["+ i +"].ExpirationCurrDateDiff")); + domain.setPremium(_ctx.booleanValue("ScrollDomainListResponse.Data["+ i +"].Premium")); + domain.setRegistrationDateLong(_ctx.longValue("ScrollDomainListResponse.Data["+ i +"].RegistrationDateLong")); + domain.setProductId(_ctx.stringValue("ScrollDomainListResponse.Data["+ i +"].ProductId")); + domain.setDomainStatus(_ctx.stringValue("ScrollDomainListResponse.Data["+ i +"].DomainStatus")); + domain.setDomainType(_ctx.stringValue("ScrollDomainListResponse.Data["+ i +"].DomainType")); + domain.setResourceGroupId(_ctx.stringValue("ScrollDomainListResponse.Data["+ i +"].ResourceGroupId")); + + List dnsList = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("ScrollDomainListResponse.Data["+ i +"].DnsList.Length"); j++) { + dnsList.add(_ctx.stringValue("ScrollDomainListResponse.Data["+ i +"].DnsList["+ j +"]")); + } + domain.setDnsList(dnsList); + + List tag = new ArrayList(); + for (int j = 0; j < _ctx.lengthValue("ScrollDomainListResponse.Data["+ i +"].Tag.Length"); j++) { + TagItem tagItem = new TagItem(); + tagItem.setKey(_ctx.stringValue("ScrollDomainListResponse.Data["+ i +"].Tag["+ j +"].Key")); + tagItem.setValue(_ctx.stringValue("ScrollDomainListResponse.Data["+ i +"].Tag["+ j +"].Value")); + + tag.add(tagItem); + } + domain.setTag(tag); + + data.add(domain); + } + scrollDomainListResponse.setData(data); + + return scrollDomainListResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SetDefaultRegistrantProfileResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SetDefaultRegistrantProfileResponseUnmarshaller.java new file mode 100644 index 0000000000..8cddb55e5d --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SetDefaultRegistrantProfileResponseUnmarshaller.java @@ -0,0 +1,29 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SetDefaultRegistrantProfileResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SetDefaultRegistrantProfileResponseUnmarshaller { + + public static SetDefaultRegistrantProfileResponse unmarshall(SetDefaultRegistrantProfileResponse setDefaultRegistrantProfileResponse, UnmarshallerContext _ctx) { + + setDefaultRegistrantProfileResponse.setRequestId(_ctx.stringValue("SetDefaultRegistrantProfileResponse.RequestId")); + + return setDefaultRegistrantProfileResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SetupDomainAutoRenewResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SetupDomainAutoRenewResponseUnmarshaller.java new file mode 100644 index 0000000000..8a8bb851d0 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SetupDomainAutoRenewResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SetupDomainAutoRenewResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SetupDomainAutoRenewResponseUnmarshaller { + + public static SetupDomainAutoRenewResponse unmarshall(SetupDomainAutoRenewResponse setupDomainAutoRenewResponse, UnmarshallerContext _ctx) { + + setupDomainAutoRenewResponse.setRequestId(_ctx.stringValue("SetupDomainAutoRenewResponse.RequestId")); + setupDomainAutoRenewResponse.setResult(_ctx.booleanValue("SetupDomainAutoRenewResponse.Result")); + + return setupDomainAutoRenewResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SubmitDomainSpecialBizCredentialsResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SubmitDomainSpecialBizCredentialsResponseUnmarshaller.java new file mode 100644 index 0000000000..ca7c5328f3 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SubmitDomainSpecialBizCredentialsResponseUnmarshaller.java @@ -0,0 +1,28 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SubmitDomainSpecialBizCredentialsResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SubmitDomainSpecialBizCredentialsResponseUnmarshaller { + + public static SubmitDomainSpecialBizCredentialsResponse unmarshall(SubmitDomainSpecialBizCredentialsResponse submitDomainSpecialBizCredentialsResponse, UnmarshallerContext _ctx) { + + + return submitDomainSpecialBizCredentialsResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SubmitEmailVerificationResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SubmitEmailVerificationResponseUnmarshaller.java new file mode 100644 index 0000000000..8bd2b28a03 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SubmitEmailVerificationResponseUnmarshaller.java @@ -0,0 +1,66 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.SubmitEmailVerificationResponse; +import com.aliyuncs.domain.model.v20180129.SubmitEmailVerificationResponse.SendResult; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SubmitEmailVerificationResponseUnmarshaller { + + public static SubmitEmailVerificationResponse unmarshall(SubmitEmailVerificationResponse submitEmailVerificationResponse, UnmarshallerContext _ctx) { + + submitEmailVerificationResponse.setRequestId(_ctx.stringValue("SubmitEmailVerificationResponse.RequestId")); + + List existList = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("SubmitEmailVerificationResponse.ExistList.Length"); i++) { + SendResult sendResult = new SendResult(); + sendResult.setEmail(_ctx.stringValue("SubmitEmailVerificationResponse.ExistList["+ i +"].Email")); + sendResult.setCode(_ctx.stringValue("SubmitEmailVerificationResponse.ExistList["+ i +"].Code")); + sendResult.setMessage(_ctx.stringValue("SubmitEmailVerificationResponse.ExistList["+ i +"].Message")); + + existList.add(sendResult); + } + submitEmailVerificationResponse.setExistList(existList); + + List successList = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("SubmitEmailVerificationResponse.SuccessList.Length"); i++) { + SendResult sendResult1 = new SendResult(); + sendResult1.setEmail(_ctx.stringValue("SubmitEmailVerificationResponse.SuccessList["+ i +"].Email")); + sendResult1.setCode(_ctx.stringValue("SubmitEmailVerificationResponse.SuccessList["+ i +"].Code")); + sendResult1.setMessage(_ctx.stringValue("SubmitEmailVerificationResponse.SuccessList["+ i +"].Message")); + + successList.add(sendResult1); + } + submitEmailVerificationResponse.setSuccessList(successList); + + List failList = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("SubmitEmailVerificationResponse.FailList.Length"); i++) { + SendResult sendResult2 = new SendResult(); + sendResult2.setEmail(_ctx.stringValue("SubmitEmailVerificationResponse.FailList["+ i +"].Email")); + sendResult2.setCode(_ctx.stringValue("SubmitEmailVerificationResponse.FailList["+ i +"].Code")); + sendResult2.setMessage(_ctx.stringValue("SubmitEmailVerificationResponse.FailList["+ i +"].Message")); + + failList.add(sendResult2); + } + submitEmailVerificationResponse.setFailList(failList); + + return submitEmailVerificationResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SubmitOperationAuditInfoResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SubmitOperationAuditInfoResponseUnmarshaller.java new file mode 100644 index 0000000000..37db1e683a --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SubmitOperationAuditInfoResponseUnmarshaller.java @@ -0,0 +1,30 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SubmitOperationAuditInfoResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SubmitOperationAuditInfoResponseUnmarshaller { + + public static SubmitOperationAuditInfoResponse unmarshall(SubmitOperationAuditInfoResponse submitOperationAuditInfoResponse, UnmarshallerContext _ctx) { + + submitOperationAuditInfoResponse.setRequestId(_ctx.stringValue("SubmitOperationAuditInfoResponse.RequestId")); + submitOperationAuditInfoResponse.setId(_ctx.longValue("SubmitOperationAuditInfoResponse.Id")); + + return submitOperationAuditInfoResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SubmitOperationCredentialsResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SubmitOperationCredentialsResponseUnmarshaller.java new file mode 100644 index 0000000000..3ea0f9ec6b --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/SubmitOperationCredentialsResponseUnmarshaller.java @@ -0,0 +1,29 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.SubmitOperationCredentialsResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class SubmitOperationCredentialsResponseUnmarshaller { + + public static SubmitOperationCredentialsResponse unmarshall(SubmitOperationCredentialsResponse submitOperationCredentialsResponse, UnmarshallerContext _ctx) { + + submitOperationCredentialsResponse.setRequestId(_ctx.stringValue("SubmitOperationCredentialsResponse.RequestId")); + + return submitOperationCredentialsResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/TransferInCheckMailTokenResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/TransferInCheckMailTokenResponseUnmarshaller.java new file mode 100644 index 0000000000..0f871a19b5 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/TransferInCheckMailTokenResponseUnmarshaller.java @@ -0,0 +1,44 @@ +/* + * 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.domain.transform.v20180129; + +import java.util.ArrayList; +import java.util.List; + +import com.aliyuncs.domain.model.v20180129.TransferInCheckMailTokenResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class TransferInCheckMailTokenResponseUnmarshaller { + + public static TransferInCheckMailTokenResponse unmarshall(TransferInCheckMailTokenResponse transferInCheckMailTokenResponse, UnmarshallerContext _ctx) { + + transferInCheckMailTokenResponse.setRequestId(_ctx.stringValue("TransferInCheckMailTokenResponse.RequestId")); + + List successList = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("TransferInCheckMailTokenResponse.SuccessList.Length"); i++) { + successList.add(_ctx.stringValue("TransferInCheckMailTokenResponse.SuccessList["+ i +"]")); + } + transferInCheckMailTokenResponse.setSuccessList(successList); + + List failList = new ArrayList(); + for (int i = 0; i < _ctx.lengthValue("TransferInCheckMailTokenResponse.FailList.Length"); i++) { + failList.add(_ctx.stringValue("TransferInCheckMailTokenResponse.FailList["+ i +"]")); + } + transferInCheckMailTokenResponse.setFailList(failList); + + return transferInCheckMailTokenResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/TransferInReenterTransferAuthorizationCodeResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/TransferInReenterTransferAuthorizationCodeResponseUnmarshaller.java new file mode 100644 index 0000000000..f99b82e10a --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/TransferInReenterTransferAuthorizationCodeResponseUnmarshaller.java @@ -0,0 +1,29 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.TransferInReenterTransferAuthorizationCodeResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class TransferInReenterTransferAuthorizationCodeResponseUnmarshaller { + + public static TransferInReenterTransferAuthorizationCodeResponse unmarshall(TransferInReenterTransferAuthorizationCodeResponse transferInReenterTransferAuthorizationCodeResponse, UnmarshallerContext _ctx) { + + transferInReenterTransferAuthorizationCodeResponse.setRequestId(_ctx.stringValue("TransferInReenterTransferAuthorizationCodeResponse.RequestId")); + + return transferInReenterTransferAuthorizationCodeResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/TransferInRefetchWhoisEmailResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/TransferInRefetchWhoisEmailResponseUnmarshaller.java new file mode 100644 index 0000000000..3b8d206b02 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/TransferInRefetchWhoisEmailResponseUnmarshaller.java @@ -0,0 +1,29 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.TransferInRefetchWhoisEmailResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class TransferInRefetchWhoisEmailResponseUnmarshaller { + + public static TransferInRefetchWhoisEmailResponse unmarshall(TransferInRefetchWhoisEmailResponse transferInRefetchWhoisEmailResponse, UnmarshallerContext _ctx) { + + transferInRefetchWhoisEmailResponse.setRequestId(_ctx.stringValue("TransferInRefetchWhoisEmailResponse.RequestId")); + + return transferInRefetchWhoisEmailResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/UpdatePartnerReservePriceResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/TransferInResendMailTokenResponseUnmarshaller.java similarity index 57% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/UpdatePartnerReservePriceResponseUnmarshaller.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/TransferInResendMailTokenResponseUnmarshaller.java index d470e12d6f..a4ab8e305d 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/UpdatePartnerReservePriceResponseUnmarshaller.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/TransferInResendMailTokenResponseUnmarshaller.java @@ -12,18 +12,18 @@ * limitations under the License. */ -package com.aliyuncs.domain.transform.v20180208; +package com.aliyuncs.domain.transform.v20180129; -import com.aliyuncs.domain.model.v20180208.UpdatePartnerReservePriceResponse; +import com.aliyuncs.domain.model.v20180129.TransferInResendMailTokenResponse; import com.aliyuncs.transform.UnmarshallerContext; -public class UpdatePartnerReservePriceResponseUnmarshaller { +public class TransferInResendMailTokenResponseUnmarshaller { - public static UpdatePartnerReservePriceResponse unmarshall(UpdatePartnerReservePriceResponse updatePartnerReservePriceResponse, UnmarshallerContext _ctx) { + public static TransferInResendMailTokenResponse unmarshall(TransferInResendMailTokenResponse transferInResendMailTokenResponse, UnmarshallerContext _ctx) { - updatePartnerReservePriceResponse.setRequestId(_ctx.stringValue("UpdatePartnerReservePriceResponse.RequestId")); + transferInResendMailTokenResponse.setRequestId(_ctx.stringValue("TransferInResendMailTokenResponse.RequestId")); - return updatePartnerReservePriceResponse; + return transferInResendMailTokenResponse; } } \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/UpdateDomainToDomainGroupResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/UpdateDomainToDomainGroupResponseUnmarshaller.java new file mode 100644 index 0000000000..f6e7c67bf9 --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/UpdateDomainToDomainGroupResponseUnmarshaller.java @@ -0,0 +1,29 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.UpdateDomainToDomainGroupResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class UpdateDomainToDomainGroupResponseUnmarshaller { + + public static UpdateDomainToDomainGroupResponse unmarshall(UpdateDomainToDomainGroupResponse updateDomainToDomainGroupResponse, UnmarshallerContext _ctx) { + + updateDomainToDomainGroupResponse.setRequestId(_ctx.stringValue("UpdateDomainToDomainGroupResponse.RequestId")); + + return updateDomainToDomainGroupResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/VerifyContactFieldResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/VerifyContactFieldResponseUnmarshaller.java new file mode 100644 index 0000000000..97a8012eff --- /dev/null +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/VerifyContactFieldResponseUnmarshaller.java @@ -0,0 +1,29 @@ +/* + * 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.domain.transform.v20180129; + +import com.aliyuncs.domain.model.v20180129.VerifyContactFieldResponse; +import com.aliyuncs.transform.UnmarshallerContext; + + +public class VerifyContactFieldResponseUnmarshaller { + + public static VerifyContactFieldResponse unmarshall(VerifyContactFieldResponse verifyContactFieldResponse, UnmarshallerContext _ctx) { + + verifyContactFieldResponse.setRequestId(_ctx.stringValue("VerifyContactFieldResponse.RequestId")); + + return verifyContactFieldResponse; + } +} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/FinishDemandResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/VerifyEmailResponseUnmarshaller.java similarity index 60% rename from aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/FinishDemandResponseUnmarshaller.java rename to aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/VerifyEmailResponseUnmarshaller.java index adc225725b..a0b33f8d55 100644 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/FinishDemandResponseUnmarshaller.java +++ b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180129/VerifyEmailResponseUnmarshaller.java @@ -12,18 +12,18 @@ * limitations under the License. */ -package com.aliyuncs.domain.transform.v20180208; +package com.aliyuncs.domain.transform.v20180129; -import com.aliyuncs.domain.model.v20180208.FinishDemandResponse; +import com.aliyuncs.domain.model.v20180129.VerifyEmailResponse; import com.aliyuncs.transform.UnmarshallerContext; -public class FinishDemandResponseUnmarshaller { +public class VerifyEmailResponseUnmarshaller { - public static FinishDemandResponse unmarshall(FinishDemandResponse finishDemandResponse, UnmarshallerContext _ctx) { + public static VerifyEmailResponse unmarshall(VerifyEmailResponse verifyEmailResponse, UnmarshallerContext _ctx) { - finishDemandResponse.setRequestId(_ctx.stringValue("FinishDemandResponse.RequestId")); + verifyEmailResponse.setRequestId(_ctx.stringValue("VerifyEmailResponse.RequestId")); - return finishDemandResponse; + return verifyEmailResponse; } } \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/CheckDomainStatusResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/CheckDomainStatusResponseUnmarshaller.java deleted file mode 100644 index 8d5381e3f4..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/CheckDomainStatusResponseUnmarshaller.java +++ /dev/null @@ -1,41 +0,0 @@ -/* - * 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.domain.transform.v20180208; - -import com.aliyuncs.domain.model.v20180208.CheckDomainStatusResponse; -import com.aliyuncs.domain.model.v20180208.CheckDomainStatusResponse.Module; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class CheckDomainStatusResponseUnmarshaller { - - public static CheckDomainStatusResponse unmarshall(CheckDomainStatusResponse checkDomainStatusResponse, UnmarshallerContext _ctx) { - - checkDomainStatusResponse.setRequestId(_ctx.stringValue("CheckDomainStatusResponse.RequestId")); - checkDomainStatusResponse.setHttpStatusCode(_ctx.integerValue("CheckDomainStatusResponse.HttpStatusCode")); - checkDomainStatusResponse.setErrorCode(_ctx.stringValue("CheckDomainStatusResponse.ErrorCode")); - checkDomainStatusResponse.setSuccess(_ctx.booleanValue("CheckDomainStatusResponse.Success")); - - Module module = new Module(); - module.setDomain(_ctx.stringValue("CheckDomainStatusResponse.Module.Domain")); - module.setPrice(_ctx.floatValue("CheckDomainStatusResponse.Module.Price")); - module.setRegDate(_ctx.longValue("CheckDomainStatusResponse.Module.RegDate")); - module.setDeadDate(_ctx.longValue("CheckDomainStatusResponse.Module.DeadDate")); - module.setEndTime(_ctx.longValue("CheckDomainStatusResponse.Module.EndTime")); - checkDomainStatusResponse.setModule(module); - - return checkDomainStatusResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/CheckSelectedDomainStatusResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/CheckSelectedDomainStatusResponseUnmarshaller.java deleted file mode 100644 index 2080712411..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/CheckSelectedDomainStatusResponseUnmarshaller.java +++ /dev/null @@ -1,42 +0,0 @@ -/* - * 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.domain.transform.v20180208; - -import com.aliyuncs.domain.model.v20180208.CheckSelectedDomainStatusResponse; -import com.aliyuncs.domain.model.v20180208.CheckSelectedDomainStatusResponse.Module; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class CheckSelectedDomainStatusResponseUnmarshaller { - - public static CheckSelectedDomainStatusResponse unmarshall(CheckSelectedDomainStatusResponse checkSelectedDomainStatusResponse, UnmarshallerContext _ctx) { - - checkSelectedDomainStatusResponse.setRequestId(_ctx.stringValue("CheckSelectedDomainStatusResponse.RequestId")); - checkSelectedDomainStatusResponse.setErrorCode(_ctx.stringValue("CheckSelectedDomainStatusResponse.ErrorCode")); - checkSelectedDomainStatusResponse.setSuccess(_ctx.booleanValue("CheckSelectedDomainStatusResponse.Success")); - checkSelectedDomainStatusResponse.setHttpStatusCode(_ctx.integerValue("CheckSelectedDomainStatusResponse.HttpStatusCode")); - - Module module = new Module(); - module.setDomain(_ctx.stringValue("CheckSelectedDomainStatusResponse.Module.Domain")); - module.setPrice(_ctx.doubleValue("CheckSelectedDomainStatusResponse.Module.Price")); - module.setRegDate(_ctx.longValue("CheckSelectedDomainStatusResponse.Module.RegDate")); - module.setDeadDate(_ctx.longValue("CheckSelectedDomainStatusResponse.Module.DeadDate")); - module.setEndTime(_ctx.longValue("CheckSelectedDomainStatusResponse.Module.EndTime")); - module.setPremium(_ctx.booleanValue("CheckSelectedDomainStatusResponse.Module.Premium")); - checkSelectedDomainStatusResponse.setModule(module); - - return checkSelectedDomainStatusResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/CreateFixedPriceDemandOrderResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/CreateFixedPriceDemandOrderResponseUnmarshaller.java deleted file mode 100644 index 516ed21f23..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/CreateFixedPriceDemandOrderResponseUnmarshaller.java +++ /dev/null @@ -1,39 +0,0 @@ -/* - * 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.domain.transform.v20180208; - -import com.aliyuncs.domain.model.v20180208.CreateFixedPriceDemandOrderResponse; -import com.aliyuncs.domain.model.v20180208.CreateFixedPriceDemandOrderResponse.Module; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class CreateFixedPriceDemandOrderResponseUnmarshaller { - - public static CreateFixedPriceDemandOrderResponse unmarshall(CreateFixedPriceDemandOrderResponse createFixedPriceDemandOrderResponse, UnmarshallerContext _ctx) { - - createFixedPriceDemandOrderResponse.setRequestId(_ctx.stringValue("CreateFixedPriceDemandOrderResponse.RequestId")); - createFixedPriceDemandOrderResponse.setHttpStatusCode(_ctx.integerValue("CreateFixedPriceDemandOrderResponse.HttpStatusCode")); - createFixedPriceDemandOrderResponse.setErrorCode(_ctx.stringValue("CreateFixedPriceDemandOrderResponse.ErrorCode")); - createFixedPriceDemandOrderResponse.setSuccess(_ctx.booleanValue("CreateFixedPriceDemandOrderResponse.Success")); - - Module module = new Module(); - module.setOrderNo(_ctx.stringValue("CreateFixedPriceDemandOrderResponse.Module.OrderNo")); - module.setPrice(_ctx.longValue("CreateFixedPriceDemandOrderResponse.Module.Price")); - module.setDomain(_ctx.stringValue("CreateFixedPriceDemandOrderResponse.Module.Domain")); - createFixedPriceDemandOrderResponse.setModule(module); - - return createFixedPriceDemandOrderResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/CreateFixedPriceSelectedOrderResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/CreateFixedPriceSelectedOrderResponseUnmarshaller.java deleted file mode 100644 index 9033b4e7d1..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/CreateFixedPriceSelectedOrderResponseUnmarshaller.java +++ /dev/null @@ -1,39 +0,0 @@ -/* - * 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.domain.transform.v20180208; - -import com.aliyuncs.domain.model.v20180208.CreateFixedPriceSelectedOrderResponse; -import com.aliyuncs.domain.model.v20180208.CreateFixedPriceSelectedOrderResponse.Module; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class CreateFixedPriceSelectedOrderResponseUnmarshaller { - - public static CreateFixedPriceSelectedOrderResponse unmarshall(CreateFixedPriceSelectedOrderResponse createFixedPriceSelectedOrderResponse, UnmarshallerContext _ctx) { - - createFixedPriceSelectedOrderResponse.setRequestId(_ctx.stringValue("CreateFixedPriceSelectedOrderResponse.RequestId")); - createFixedPriceSelectedOrderResponse.setHttpStatusCode(_ctx.integerValue("CreateFixedPriceSelectedOrderResponse.HttpStatusCode")); - createFixedPriceSelectedOrderResponse.setErrorCode(_ctx.stringValue("CreateFixedPriceSelectedOrderResponse.ErrorCode")); - createFixedPriceSelectedOrderResponse.setSuccess(_ctx.booleanValue("CreateFixedPriceSelectedOrderResponse.Success")); - - Module module = new Module(); - module.setOrderNo(_ctx.stringValue("CreateFixedPriceSelectedOrderResponse.Module.OrderNo")); - module.setDomain(_ctx.stringValue("CreateFixedPriceSelectedOrderResponse.Module.Domain")); - module.setPrice(_ctx.longValue("CreateFixedPriceSelectedOrderResponse.Module.Price")); - createFixedPriceSelectedOrderResponse.setModule(module); - - return createFixedPriceSelectedOrderResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/GetIntlDomainDownloadUrlResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/GetIntlDomainDownloadUrlResponseUnmarshaller.java deleted file mode 100644 index 617956b282..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/GetIntlDomainDownloadUrlResponseUnmarshaller.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * 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.domain.transform.v20180208; - -import java.util.ArrayList; -import java.util.List; - -import com.aliyuncs.domain.model.v20180208.GetIntlDomainDownloadUrlResponse; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class GetIntlDomainDownloadUrlResponseUnmarshaller { - - public static GetIntlDomainDownloadUrlResponse unmarshall(GetIntlDomainDownloadUrlResponse getIntlDomainDownloadUrlResponse, UnmarshallerContext _ctx) { - - getIntlDomainDownloadUrlResponse.setRequestId(_ctx.stringValue("GetIntlDomainDownloadUrlResponse.RequestId")); - getIntlDomainDownloadUrlResponse.setHttpStatusCode(_ctx.integerValue("GetIntlDomainDownloadUrlResponse.HttpStatusCode")); - getIntlDomainDownloadUrlResponse.setDynamicCode(_ctx.stringValue("GetIntlDomainDownloadUrlResponse.DynamicCode")); - getIntlDomainDownloadUrlResponse.setDynamicMessage(_ctx.stringValue("GetIntlDomainDownloadUrlResponse.DynamicMessage")); - getIntlDomainDownloadUrlResponse.setErrorMsg(_ctx.stringValue("GetIntlDomainDownloadUrlResponse.ErrorMsg")); - getIntlDomainDownloadUrlResponse.setErrorCode(_ctx.stringValue("GetIntlDomainDownloadUrlResponse.ErrorCode")); - getIntlDomainDownloadUrlResponse.setSuccess(_ctx.booleanValue("GetIntlDomainDownloadUrlResponse.Success")); - getIntlDomainDownloadUrlResponse.setAllowRetry(_ctx.booleanValue("GetIntlDomainDownloadUrlResponse.AllowRetry")); - getIntlDomainDownloadUrlResponse.setAppName(_ctx.stringValue("GetIntlDomainDownloadUrlResponse.AppName")); - getIntlDomainDownloadUrlResponse.setUrl(_ctx.stringValue("GetIntlDomainDownloadUrlResponse.Url")); - - List errorArgs = new ArrayList(); - for (int i = 0; i < _ctx.lengthValue("GetIntlDomainDownloadUrlResponse.ErrorArgs.Length"); i++) { - errorArgs.add(_ctx.stringValue("GetIntlDomainDownloadUrlResponse.ErrorArgs["+ i +"]")); - } - getIntlDomainDownloadUrlResponse.setErrorArgs(errorArgs); - - return getIntlDomainDownloadUrlResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/PurchaseIntlDomainResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/PurchaseIntlDomainResponseUnmarshaller.java deleted file mode 100644 index 76554fbd8e..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/PurchaseIntlDomainResponseUnmarshaller.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * 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.domain.transform.v20180208; - -import java.util.ArrayList; -import java.util.List; - -import com.aliyuncs.domain.model.v20180208.PurchaseIntlDomainResponse; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class PurchaseIntlDomainResponseUnmarshaller { - - public static PurchaseIntlDomainResponse unmarshall(PurchaseIntlDomainResponse purchaseIntlDomainResponse, UnmarshallerContext _ctx) { - - purchaseIntlDomainResponse.setRequestId(_ctx.stringValue("PurchaseIntlDomainResponse.RequestId")); - purchaseIntlDomainResponse.setHttpStatusCode(_ctx.integerValue("PurchaseIntlDomainResponse.HttpStatusCode")); - purchaseIntlDomainResponse.setDynamicCode(_ctx.stringValue("PurchaseIntlDomainResponse.DynamicCode")); - purchaseIntlDomainResponse.setDynamicMessage(_ctx.stringValue("PurchaseIntlDomainResponse.DynamicMessage")); - purchaseIntlDomainResponse.setErrorMsg(_ctx.stringValue("PurchaseIntlDomainResponse.ErrorMsg")); - purchaseIntlDomainResponse.setErrorCode(_ctx.stringValue("PurchaseIntlDomainResponse.ErrorCode")); - purchaseIntlDomainResponse.setSuccess(_ctx.booleanValue("PurchaseIntlDomainResponse.Success")); - purchaseIntlDomainResponse.setAllowRetry(_ctx.booleanValue("PurchaseIntlDomainResponse.AllowRetry")); - purchaseIntlDomainResponse.setAppName(_ctx.stringValue("PurchaseIntlDomainResponse.AppName")); - purchaseIntlDomainResponse.setAuctionId(_ctx.stringValue("PurchaseIntlDomainResponse.AuctionId")); - - List errorArgs = new ArrayList(); - for (int i = 0; i < _ctx.lengthValue("PurchaseIntlDomainResponse.ErrorArgs.Length"); i++) { - errorArgs.add(_ctx.stringValue("PurchaseIntlDomainResponse.ErrorArgs["+ i +"]")); - } - purchaseIntlDomainResponse.setErrorArgs(errorArgs); - - return purchaseIntlDomainResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryAuctionDetailResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryAuctionDetailResponseUnmarshaller.java deleted file mode 100644 index f31ff098f4..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryAuctionDetailResponseUnmarshaller.java +++ /dev/null @@ -1,52 +0,0 @@ -/* - * 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.domain.transform.v20180208; - -import com.aliyuncs.domain.model.v20180208.QueryAuctionDetailResponse; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class QueryAuctionDetailResponseUnmarshaller { - - public static QueryAuctionDetailResponse unmarshall(QueryAuctionDetailResponse queryAuctionDetailResponse, UnmarshallerContext _ctx) { - - queryAuctionDetailResponse.setRequestId(_ctx.stringValue("QueryAuctionDetailResponse.RequestId")); - queryAuctionDetailResponse.setStatus(_ctx.stringValue("QueryAuctionDetailResponse.Status")); - queryAuctionDetailResponse.setReserveMet(_ctx.booleanValue("QueryAuctionDetailResponse.ReserveMet")); - queryAuctionDetailResponse.setHighBid(_ctx.floatValue("QueryAuctionDetailResponse.HighBid")); - queryAuctionDetailResponse.setDeliveryTime(_ctx.longValue("QueryAuctionDetailResponse.DeliveryTime")); - queryAuctionDetailResponse.setTransferInPrice(_ctx.floatValue("QueryAuctionDetailResponse.TransferInPrice")); - queryAuctionDetailResponse.setNextValidBid(_ctx.floatValue("QueryAuctionDetailResponse.NextValidBid")); - queryAuctionDetailResponse.setProduceStatus(_ctx.stringValue("QueryAuctionDetailResponse.ProduceStatus")); - queryAuctionDetailResponse.setHighBidder(_ctx.stringValue("QueryAuctionDetailResponse.HighBidder")); - queryAuctionDetailResponse.setBookedPartner(_ctx.stringValue("QueryAuctionDetailResponse.BookedPartner")); - queryAuctionDetailResponse.setCurrency(_ctx.stringValue("QueryAuctionDetailResponse.Currency")); - queryAuctionDetailResponse.setDomainName(_ctx.stringValue("QueryAuctionDetailResponse.DomainName")); - queryAuctionDetailResponse.setYourCurrentBid(_ctx.floatValue("QueryAuctionDetailResponse.YourCurrentBid")); - queryAuctionDetailResponse.setFailCode(_ctx.stringValue("QueryAuctionDetailResponse.FailCode")); - queryAuctionDetailResponse.setAuctionEndTime(_ctx.longValue("QueryAuctionDetailResponse.AuctionEndTime")); - queryAuctionDetailResponse.setBookEndTime(_ctx.longValue("QueryAuctionDetailResponse.BookEndTime")); - queryAuctionDetailResponse.setPayEndTime(_ctx.longValue("QueryAuctionDetailResponse.PayEndTime")); - queryAuctionDetailResponse.setPayStatus(_ctx.stringValue("QueryAuctionDetailResponse.PayStatus")); - queryAuctionDetailResponse.setYourMaxBid(_ctx.floatValue("QueryAuctionDetailResponse.YourMaxBid")); - queryAuctionDetailResponse.setPayPrice(_ctx.floatValue("QueryAuctionDetailResponse.PayPrice")); - queryAuctionDetailResponse.setAuctionId(_ctx.stringValue("QueryAuctionDetailResponse.AuctionId")); - queryAuctionDetailResponse.setPartnerType(_ctx.stringValue("QueryAuctionDetailResponse.PartnerType")); - queryAuctionDetailResponse.setDomainType(_ctx.stringValue("QueryAuctionDetailResponse.DomainType")); - queryAuctionDetailResponse.setReservePrice(_ctx.floatValue("QueryAuctionDetailResponse.ReservePrice")); - - return queryAuctionDetailResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryAuctionsResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryAuctionsResponseUnmarshaller.java deleted file mode 100644 index d14e3ccfef..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryAuctionsResponseUnmarshaller.java +++ /dev/null @@ -1,70 +0,0 @@ -/* - * 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.domain.transform.v20180208; - -import java.util.ArrayList; -import java.util.List; - -import com.aliyuncs.domain.model.v20180208.QueryAuctionsResponse; -import com.aliyuncs.domain.model.v20180208.QueryAuctionsResponse.AuctionDetail; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class QueryAuctionsResponseUnmarshaller { - - public static QueryAuctionsResponse unmarshall(QueryAuctionsResponse queryAuctionsResponse, UnmarshallerContext _ctx) { - - queryAuctionsResponse.setRequestId(_ctx.stringValue("QueryAuctionsResponse.RequestId")); - queryAuctionsResponse.setCurrentPageNum(_ctx.integerValue("QueryAuctionsResponse.CurrentPageNum")); - queryAuctionsResponse.setTotalPageNum(_ctx.integerValue("QueryAuctionsResponse.TotalPageNum")); - queryAuctionsResponse.setPageSize(_ctx.integerValue("QueryAuctionsResponse.PageSize")); - queryAuctionsResponse.setTotalItemNum(_ctx.integerValue("QueryAuctionsResponse.TotalItemNum")); - - List data = new ArrayList(); - for (int i = 0; i < _ctx.lengthValue("QueryAuctionsResponse.Data.Length"); i++) { - AuctionDetail auctionDetail = new AuctionDetail(); - auctionDetail.setStatus(_ctx.stringValue("QueryAuctionsResponse.Data["+ i +"].Status")); - auctionDetail.setReserveMet(_ctx.booleanValue("QueryAuctionsResponse.Data["+ i +"].ReserveMet")); - auctionDetail.setHighBid(_ctx.floatValue("QueryAuctionsResponse.Data["+ i +"].HighBid")); - auctionDetail.setDeliveryTime(_ctx.longValue("QueryAuctionsResponse.Data["+ i +"].DeliveryTime")); - auctionDetail.setTransferInPrice(_ctx.floatValue("QueryAuctionsResponse.Data["+ i +"].TransferInPrice")); - auctionDetail.setNextValidBid(_ctx.floatValue("QueryAuctionsResponse.Data["+ i +"].NextValidBid")); - auctionDetail.setProduceStatus(_ctx.stringValue("QueryAuctionsResponse.Data["+ i +"].ProduceStatus")); - auctionDetail.setHighBidder(_ctx.stringValue("QueryAuctionsResponse.Data["+ i +"].HighBidder")); - auctionDetail.setBookedPartner(_ctx.stringValue("QueryAuctionsResponse.Data["+ i +"].BookedPartner")); - auctionDetail.setCurrency(_ctx.stringValue("QueryAuctionsResponse.Data["+ i +"].Currency")); - auctionDetail.setDomainName(_ctx.stringValue("QueryAuctionsResponse.Data["+ i +"].DomainName")); - auctionDetail.setYourCurrentBid(_ctx.floatValue("QueryAuctionsResponse.Data["+ i +"].YourCurrentBid")); - auctionDetail.setFailCode(_ctx.stringValue("QueryAuctionsResponse.Data["+ i +"].FailCode")); - auctionDetail.setAuctionEndTime(_ctx.longValue("QueryAuctionsResponse.Data["+ i +"].AuctionEndTime")); - auctionDetail.setBookEndTime(_ctx.longValue("QueryAuctionsResponse.Data["+ i +"].BookEndTime")); - auctionDetail.setPayEndTime(_ctx.longValue("QueryAuctionsResponse.Data["+ i +"].PayEndTime")); - auctionDetail.setPayStatus(_ctx.stringValue("QueryAuctionsResponse.Data["+ i +"].PayStatus")); - auctionDetail.setYourMaxBid(_ctx.floatValue("QueryAuctionsResponse.Data["+ i +"].YourMaxBid")); - auctionDetail.setPayPrice(_ctx.floatValue("QueryAuctionsResponse.Data["+ i +"].PayPrice")); - auctionDetail.setAuctionId(_ctx.stringValue("QueryAuctionsResponse.Data["+ i +"].AuctionId")); - auctionDetail.setPartnerType(_ctx.stringValue("QueryAuctionsResponse.Data["+ i +"].PartnerType")); - auctionDetail.setDomainType(_ctx.stringValue("QueryAuctionsResponse.Data["+ i +"].DomainType")); - auctionDetail.setReserveMin(_ctx.longValue("QueryAuctionsResponse.Data["+ i +"].ReserveMin")); - auctionDetail.setReserveMax(_ctx.longValue("QueryAuctionsResponse.Data["+ i +"].ReserveMax")); - auctionDetail.setReservePrice(_ctx.longValue("QueryAuctionsResponse.Data["+ i +"].ReservePrice")); - - data.add(auctionDetail); - } - queryAuctionsResponse.setData(data); - - return queryAuctionsResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryBidRecordsResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryBidRecordsResponseUnmarshaller.java deleted file mode 100644 index 199cac5dbe..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryBidRecordsResponseUnmarshaller.java +++ /dev/null @@ -1,50 +0,0 @@ -/* - * 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.domain.transform.v20180208; - -import java.util.ArrayList; -import java.util.List; - -import com.aliyuncs.domain.model.v20180208.QueryBidRecordsResponse; -import com.aliyuncs.domain.model.v20180208.QueryBidRecordsResponse.BidRecord; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class QueryBidRecordsResponseUnmarshaller { - - public static QueryBidRecordsResponse unmarshall(QueryBidRecordsResponse queryBidRecordsResponse, UnmarshallerContext _ctx) { - - queryBidRecordsResponse.setRequestId(_ctx.stringValue("QueryBidRecordsResponse.RequestId")); - queryBidRecordsResponse.setCurrentPageNum(_ctx.integerValue("QueryBidRecordsResponse.CurrentPageNum")); - queryBidRecordsResponse.setTotalPageNum(_ctx.integerValue("QueryBidRecordsResponse.TotalPageNum")); - queryBidRecordsResponse.setPageSize(_ctx.integerValue("QueryBidRecordsResponse.PageSize")); - queryBidRecordsResponse.setTotalItemNum(_ctx.integerValue("QueryBidRecordsResponse.TotalItemNum")); - - List data = new ArrayList(); - for (int i = 0; i < _ctx.lengthValue("QueryBidRecordsResponse.Data.Length"); i++) { - BidRecord bidRecord = new BidRecord(); - bidRecord.setBidder(_ctx.stringValue("QueryBidRecordsResponse.Data["+ i +"].Bidder")); - bidRecord.setBidTime(_ctx.longValue("QueryBidRecordsResponse.Data["+ i +"].BidTime")); - bidRecord.setBid(_ctx.floatValue("QueryBidRecordsResponse.Data["+ i +"].Bid")); - bidRecord.setCurrency(_ctx.stringValue("QueryBidRecordsResponse.Data["+ i +"].Currency")); - bidRecord.setDomainName(_ctx.stringValue("QueryBidRecordsResponse.Data["+ i +"].DomainName")); - - data.add(bidRecord); - } - queryBidRecordsResponse.setData(data); - - return queryBidRecordsResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryBookingDomainInfoResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryBookingDomainInfoResponseUnmarshaller.java deleted file mode 100644 index e473f98a66..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryBookingDomainInfoResponseUnmarshaller.java +++ /dev/null @@ -1,36 +0,0 @@ -/* - * 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.domain.transform.v20180208; - -import com.aliyuncs.domain.model.v20180208.QueryBookingDomainInfoResponse; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class QueryBookingDomainInfoResponseUnmarshaller { - - public static QueryBookingDomainInfoResponse unmarshall(QueryBookingDomainInfoResponse queryBookingDomainInfoResponse, UnmarshallerContext _ctx) { - - queryBookingDomainInfoResponse.setRequestId(_ctx.stringValue("QueryBookingDomainInfoResponse.RequestId")); - queryBookingDomainInfoResponse.setBookEndTime(_ctx.longValue("QueryBookingDomainInfoResponse.BookEndTime")); - queryBookingDomainInfoResponse.setMaxBid(_ctx.floatValue("QueryBookingDomainInfoResponse.MaxBid")); - queryBookingDomainInfoResponse.setTransferInPrice(_ctx.floatValue("QueryBookingDomainInfoResponse.TransferInPrice")); - queryBookingDomainInfoResponse.setAuctionId(_ctx.integerValue("QueryBookingDomainInfoResponse.AuctionId")); - queryBookingDomainInfoResponse.setCurrency(_ctx.stringValue("QueryBookingDomainInfoResponse.Currency")); - queryBookingDomainInfoResponse.setPartnerType(_ctx.stringValue("QueryBookingDomainInfoResponse.PartnerType")); - queryBookingDomainInfoResponse.setSnatchNo(_ctx.stringValue("QueryBookingDomainInfoResponse.SnatchNo")); - - return queryBookingDomainInfoResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryBrokerDemandRecordResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryBrokerDemandRecordResponseUnmarshaller.java deleted file mode 100644 index c870bdd3cf..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryBrokerDemandRecordResponseUnmarshaller.java +++ /dev/null @@ -1,48 +0,0 @@ -/* - * 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.domain.transform.v20180208; - -import java.util.ArrayList; -import java.util.List; - -import com.aliyuncs.domain.model.v20180208.QueryBrokerDemandRecordResponse; -import com.aliyuncs.domain.model.v20180208.QueryBrokerDemandRecordResponse.BrokerDemandRecord; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class QueryBrokerDemandRecordResponseUnmarshaller { - - public static QueryBrokerDemandRecordResponse unmarshall(QueryBrokerDemandRecordResponse queryBrokerDemandRecordResponse, UnmarshallerContext _ctx) { - - queryBrokerDemandRecordResponse.setRequestId(_ctx.stringValue("QueryBrokerDemandRecordResponse.RequestId")); - queryBrokerDemandRecordResponse.setCurrentPageNum(_ctx.integerValue("QueryBrokerDemandRecordResponse.CurrentPageNum")); - queryBrokerDemandRecordResponse.setPageSize(_ctx.integerValue("QueryBrokerDemandRecordResponse.PageSize")); - queryBrokerDemandRecordResponse.setTotalPageNum(_ctx.integerValue("QueryBrokerDemandRecordResponse.TotalPageNum")); - queryBrokerDemandRecordResponse.setTotalItemNum(_ctx.integerValue("QueryBrokerDemandRecordResponse.TotalItemNum")); - - List data = new ArrayList(); - for (int i = 0; i < _ctx.lengthValue("QueryBrokerDemandRecordResponse.Data.Length"); i++) { - BrokerDemandRecord brokerDemandRecord = new BrokerDemandRecord(); - brokerDemandRecord.setDescription(_ctx.stringValue("QueryBrokerDemandRecordResponse.Data["+ i +"].Description")); - brokerDemandRecord.setCreateTime(_ctx.longValue("QueryBrokerDemandRecordResponse.Data["+ i +"].CreateTime")); - brokerDemandRecord.setBizId(_ctx.stringValue("QueryBrokerDemandRecordResponse.Data["+ i +"].BizId")); - - data.add(brokerDemandRecord); - } - queryBrokerDemandRecordResponse.setData(data); - - return queryBrokerDemandRecordResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryBrokerDemandResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryBrokerDemandResponseUnmarshaller.java deleted file mode 100644 index 1a4ecefb52..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryBrokerDemandResponseUnmarshaller.java +++ /dev/null @@ -1,65 +0,0 @@ -/* - * 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.domain.transform.v20180208; - -import java.util.ArrayList; -import java.util.List; - -import com.aliyuncs.domain.model.v20180208.QueryBrokerDemandResponse; -import com.aliyuncs.domain.model.v20180208.QueryBrokerDemandResponse.Demand; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class QueryBrokerDemandResponseUnmarshaller { - - public static QueryBrokerDemandResponse unmarshall(QueryBrokerDemandResponse queryBrokerDemandResponse, UnmarshallerContext _ctx) { - - queryBrokerDemandResponse.setRequestId(_ctx.stringValue("QueryBrokerDemandResponse.RequestId")); - queryBrokerDemandResponse.setCurrentPageNum(_ctx.integerValue("QueryBrokerDemandResponse.CurrentPageNum")); - queryBrokerDemandResponse.setTotalPageNum(_ctx.integerValue("QueryBrokerDemandResponse.TotalPageNum")); - queryBrokerDemandResponse.setPageSize(_ctx.integerValue("QueryBrokerDemandResponse.PageSize")); - queryBrokerDemandResponse.setTotalItemNum(_ctx.integerValue("QueryBrokerDemandResponse.TotalItemNum")); - - List data = new ArrayList(); - for (int i = 0; i < _ctx.lengthValue("QueryBrokerDemandResponse.Data.Length"); i++) { - Demand demand = new Demand(); - demand.setStatus(_ctx.stringValue("QueryBrokerDemandResponse.Data["+ i +"].Status")); - demand.setDemandPrice(_ctx.floatValue("QueryBrokerDemandResponse.Data["+ i +"].DemandPrice")); - demand.setBizId(_ctx.stringValue("QueryBrokerDemandResponse.Data["+ i +"].BizId")); - demand.setBargainSellerMobile(_ctx.stringValue("QueryBrokerDemandResponse.Data["+ i +"].BargainSellerMobile")); - demand.setPublishTime(_ctx.longValue("QueryBrokerDemandResponse.Data["+ i +"].PublishTime")); - demand.setProduceType(_ctx.integerValue("QueryBrokerDemandResponse.Data["+ i +"].ProduceType")); - demand.setDemandDomain(_ctx.stringValue("QueryBrokerDemandResponse.Data["+ i +"].DemandDomain")); - demand.setDescription(_ctx.stringValue("QueryBrokerDemandResponse.Data["+ i +"].Description")); - demand.setMobile(_ctx.stringValue("QueryBrokerDemandResponse.Data["+ i +"].Mobile")); - demand.setServicePayPrice(_ctx.floatValue("QueryBrokerDemandResponse.Data["+ i +"].ServicePayPrice")); - demand.setPayPrice(_ctx.floatValue("QueryBrokerDemandResponse.Data["+ i +"].PayPrice")); - demand.setPayTime(_ctx.longValue("QueryBrokerDemandResponse.Data["+ i +"].PayTime")); - demand.setBargainSellerPrice(_ctx.floatValue("QueryBrokerDemandResponse.Data["+ i +"].BargainSellerPrice")); - demand.setOrderType(_ctx.integerValue("QueryBrokerDemandResponse.Data["+ i +"].OrderType")); - demand.setPayDomain(_ctx.stringValue("QueryBrokerDemandResponse.Data["+ i +"].PayDomain")); - demand.setAuditStatus(_ctx.integerValue("QueryBrokerDemandResponse.Data["+ i +"].AuditStatus")); - demand.setPartnerDomain(_ctx.stringValue("QueryBrokerDemandResponse.Data["+ i +"].PartnerDomain")); - demand.setPurchaseStatus(_ctx.integerValue("QueryBrokerDemandResponse.Data["+ i +"].PurchaseStatus")); - demand.setEmail(_ctx.stringValue("QueryBrokerDemandResponse.Data["+ i +"].Email")); - demand.setSettleBasePrice(_ctx.floatValue("QueryBrokerDemandResponse.Data["+ i +"].SettleBasePrice")); - - data.add(demand); - } - queryBrokerDemandResponse.setData(data); - - return queryBrokerDemandResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryDomainTransferStatusResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryDomainTransferStatusResponseUnmarshaller.java deleted file mode 100644 index 6f1f6a02b7..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryDomainTransferStatusResponseUnmarshaller.java +++ /dev/null @@ -1,43 +0,0 @@ -/* - * 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.domain.transform.v20180208; - -import java.util.ArrayList; -import java.util.List; - -import com.aliyuncs.domain.model.v20180208.QueryDomainTransferStatusResponse; -import com.aliyuncs.domain.model.v20180208.QueryDomainTransferStatusResponse.DomainTransferStatusItem; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class QueryDomainTransferStatusResponseUnmarshaller { - - public static QueryDomainTransferStatusResponse unmarshall(QueryDomainTransferStatusResponse queryDomainTransferStatusResponse, UnmarshallerContext _ctx) { - - queryDomainTransferStatusResponse.setRequestId(_ctx.stringValue("QueryDomainTransferStatusResponse.RequestId")); - - List domainTransferStatus = new ArrayList(); - for (int i = 0; i < _ctx.lengthValue("QueryDomainTransferStatusResponse.DomainTransferStatus.Length"); i++) { - DomainTransferStatusItem domainTransferStatusItem = new DomainTransferStatusItem(); - domainTransferStatusItem.setDomainName(_ctx.stringValue("QueryDomainTransferStatusResponse.DomainTransferStatus["+ i +"].DomainName")); - domainTransferStatusItem.setDomainStatusDescription(_ctx.stringValue("QueryDomainTransferStatusResponse.DomainTransferStatus["+ i +"].DomainStatusDescription")); - - domainTransferStatus.add(domainTransferStatusItem); - } - queryDomainTransferStatusResponse.setDomainTransferStatus(domainTransferStatus); - - return queryDomainTransferStatusResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryExchangeRateResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryExchangeRateResponseUnmarshaller.java deleted file mode 100644 index e1b0c726b6..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryExchangeRateResponseUnmarshaller.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - * 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.domain.transform.v20180208; - -import com.aliyuncs.domain.model.v20180208.QueryExchangeRateResponse; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class QueryExchangeRateResponseUnmarshaller { - - public static QueryExchangeRateResponse unmarshall(QueryExchangeRateResponse queryExchangeRateResponse, UnmarshallerContext _ctx) { - - queryExchangeRateResponse.setRequestId(_ctx.stringValue("QueryExchangeRateResponse.RequestId")); - queryExchangeRateResponse.setExchangeRate(_ctx.doubleValue("QueryExchangeRateResponse.ExchangeRate")); - - return queryExchangeRateResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryPurchasedDomainsResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryPurchasedDomainsResponseUnmarshaller.java deleted file mode 100644 index 709037a39b..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/QueryPurchasedDomainsResponseUnmarshaller.java +++ /dev/null @@ -1,51 +0,0 @@ -/* - * 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.domain.transform.v20180208; - -import java.util.ArrayList; -import java.util.List; - -import com.aliyuncs.domain.model.v20180208.QueryPurchasedDomainsResponse; -import com.aliyuncs.domain.model.v20180208.QueryPurchasedDomainsResponse.PurchasedDomains; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class QueryPurchasedDomainsResponseUnmarshaller { - - public static QueryPurchasedDomainsResponse unmarshall(QueryPurchasedDomainsResponse queryPurchasedDomainsResponse, UnmarshallerContext _ctx) { - - queryPurchasedDomainsResponse.setRequestId(_ctx.stringValue("QueryPurchasedDomainsResponse.RequestId")); - queryPurchasedDomainsResponse.setTotalItemNum(_ctx.integerValue("QueryPurchasedDomainsResponse.TotalItemNum")); - queryPurchasedDomainsResponse.setCurrentPageNum(_ctx.integerValue("QueryPurchasedDomainsResponse.CurrentPageNum")); - queryPurchasedDomainsResponse.setPageSize(_ctx.integerValue("QueryPurchasedDomainsResponse.PageSize")); - queryPurchasedDomainsResponse.setTotalPageNum(_ctx.integerValue("QueryPurchasedDomainsResponse.TotalPageNum")); - - List data = new ArrayList(); - for (int i = 0; i < _ctx.lengthValue("QueryPurchasedDomainsResponse.Data.Length"); i++) { - PurchasedDomains purchasedDomains = new PurchasedDomains(); - purchasedDomains.setDomainName(_ctx.stringValue("QueryPurchasedDomainsResponse.Data["+ i +"].DomainName")); - purchasedDomains.setOperationTime(_ctx.stringValue("QueryPurchasedDomainsResponse.Data["+ i +"].OperationTime")); - purchasedDomains.setDeliveryTime(_ctx.stringValue("QueryPurchasedDomainsResponse.Data["+ i +"].DeliveryTime")); - purchasedDomains.setTradeMoney(_ctx.doubleValue("QueryPurchasedDomainsResponse.Data["+ i +"].TradeMoney")); - purchasedDomains.setProductType(_ctx.stringValue("QueryPurchasedDomainsResponse.Data["+ i +"].ProductType")); - purchasedDomains.setOperationStatus(_ctx.stringValue("QueryPurchasedDomainsResponse.Data["+ i +"].OperationStatus")); - - data.add(purchasedDomains); - } - queryPurchasedDomainsResponse.setData(data); - - return queryPurchasedDomainsResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/ReserveDomainResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/ReserveDomainResponseUnmarshaller.java deleted file mode 100644 index 519e922894..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/ReserveDomainResponseUnmarshaller.java +++ /dev/null @@ -1,30 +0,0 @@ -/* - * 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.domain.transform.v20180208; - -import com.aliyuncs.domain.model.v20180208.ReserveDomainResponse; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class ReserveDomainResponseUnmarshaller { - - public static ReserveDomainResponse unmarshall(ReserveDomainResponse reserveDomainResponse, UnmarshallerContext _ctx) { - - reserveDomainResponse.setRequestId(_ctx.stringValue("ReserveDomainResponse.RequestId")); - reserveDomainResponse.setAuctionId(_ctx.stringValue("ReserveDomainResponse.AuctionId")); - - return reserveDomainResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/ReserveIntlDomainResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/ReserveIntlDomainResponseUnmarshaller.java deleted file mode 100644 index 98f9745a6c..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/ReserveIntlDomainResponseUnmarshaller.java +++ /dev/null @@ -1,47 +0,0 @@ -/* - * 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.domain.transform.v20180208; - -import java.util.ArrayList; -import java.util.List; - -import com.aliyuncs.domain.model.v20180208.ReserveIntlDomainResponse; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class ReserveIntlDomainResponseUnmarshaller { - - public static ReserveIntlDomainResponse unmarshall(ReserveIntlDomainResponse reserveIntlDomainResponse, UnmarshallerContext _ctx) { - - reserveIntlDomainResponse.setRequestId(_ctx.stringValue("ReserveIntlDomainResponse.RequestId")); - reserveIntlDomainResponse.setHttpStatusCode(_ctx.integerValue("ReserveIntlDomainResponse.HttpStatusCode")); - reserveIntlDomainResponse.setDynamicCode(_ctx.stringValue("ReserveIntlDomainResponse.DynamicCode")); - reserveIntlDomainResponse.setDynamicMessage(_ctx.stringValue("ReserveIntlDomainResponse.DynamicMessage")); - reserveIntlDomainResponse.setErrorMsg(_ctx.stringValue("ReserveIntlDomainResponse.ErrorMsg")); - reserveIntlDomainResponse.setErrorCode(_ctx.stringValue("ReserveIntlDomainResponse.ErrorCode")); - reserveIntlDomainResponse.setSuccess(_ctx.booleanValue("ReserveIntlDomainResponse.Success")); - reserveIntlDomainResponse.setAllowRetry(_ctx.booleanValue("ReserveIntlDomainResponse.AllowRetry")); - reserveIntlDomainResponse.setAppName(_ctx.stringValue("ReserveIntlDomainResponse.AppName")); - reserveIntlDomainResponse.setAuctionId(_ctx.stringValue("ReserveIntlDomainResponse.AuctionId")); - - List errorArgs = new ArrayList(); - for (int i = 0; i < _ctx.lengthValue("ReserveIntlDomainResponse.ErrorArgs.Length"); i++) { - errorArgs.add(_ctx.stringValue("ReserveIntlDomainResponse.ErrorArgs["+ i +"]")); - } - reserveIntlDomainResponse.setErrorArgs(errorArgs); - - return reserveIntlDomainResponse; - } -} \ No newline at end of file diff --git a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/SelectedDomainListResponseUnmarshaller.java b/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/SelectedDomainListResponseUnmarshaller.java deleted file mode 100644 index 4922e5175d..0000000000 --- a/aliyun-java-sdk-domain/src/main/java/com/aliyuncs/domain/transform/v20180208/SelectedDomainListResponseUnmarshaller.java +++ /dev/null @@ -1,36 +0,0 @@ -/* - * 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.domain.transform.v20180208; - -import com.aliyuncs.domain.model.v20180208.SelectedDomainListResponse; -import com.aliyuncs.domain.model.v20180208.SelectedDomainListResponse.Module; -import com.aliyuncs.transform.UnmarshallerContext; - - -public class SelectedDomainListResponseUnmarshaller { - - public static SelectedDomainListResponse unmarshall(SelectedDomainListResponse selectedDomainListResponse, UnmarshallerContext _ctx) { - - selectedDomainListResponse.setRequestId(_ctx.stringValue("SelectedDomainListResponse.RequestId")); - selectedDomainListResponse.setSuccess(_ctx.booleanValue("SelectedDomainListResponse.Success")); - selectedDomainListResponse.setErrorCode(_ctx.stringValue("SelectedDomainListResponse.ErrorCode")); - - Module module = new Module(); - module.setDownloadUrl(_ctx.stringValue("SelectedDomainListResponse.Module.DownloadUrl")); - selectedDomainListResponse.setModule(module); - - return selectedDomainListResponse; - } -} \ No newline at end of file