Skip to content

Commit e12d400

Browse files
committed
Add price info to check domain api
1 parent bea290b commit e12d400

File tree

423 files changed

+32824
-5150
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

423 files changed

+32824
-5150
lines changed

aliyun-java-sdk-domain/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-05-09 Version: 3.15.7
2+
- Add price info to check domain api
3+
14
2024-04-17 Version: 3.15.6
25
- Add SnatchNo For QueryBookingDomainInfo
36

aliyun-java-sdk-domain/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-domain</artifactId>
66
<packaging>jar</packaging>
7-
<version>3.15.6</version>
7+
<version>3.15.7</version>
88
<name>aliyun-java-sdk-domain</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.domain.model.v20180129;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import java.util.List;
19+
import com.aliyuncs.http.MethodType;
20+
import com.aliyuncs.domain.Endpoint;
21+
22+
/**
23+
* @author auto create
24+
* @version
25+
*/
26+
public class AcknowledgeTaskResultRequest extends RpcAcsRequest<AcknowledgeTaskResultResponse> {
27+
28+
29+
private List<String> taskDetailNos;
30+
31+
private String userClientIp;
32+
33+
private String lang;
34+
public AcknowledgeTaskResultRequest() {
35+
super("Domain", "2018-01-29", "AcknowledgeTaskResult", "domain");
36+
setMethod(MethodType.POST);
37+
try {
38+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
39+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
40+
} catch (Exception e) {}
41+
}
42+
43+
public List<String> getTaskDetailNos() {
44+
return this.taskDetailNos;
45+
}
46+
47+
public void setTaskDetailNos(List<String> taskDetailNos) {
48+
this.taskDetailNos = taskDetailNos;
49+
if (taskDetailNos != null) {
50+
for (int i = 0; i < taskDetailNos.size(); i++) {
51+
putQueryParameter("TaskDetailNo." + (i + 1) , taskDetailNos.get(i));
52+
}
53+
}
54+
}
55+
56+
public String getUserClientIp() {
57+
return this.userClientIp;
58+
}
59+
60+
public void setUserClientIp(String userClientIp) {
61+
this.userClientIp = userClientIp;
62+
if(userClientIp != null){
63+
putQueryParameter("UserClientIp", userClientIp);
64+
}
65+
}
66+
67+
public String getLang() {
68+
return this.lang;
69+
}
70+
71+
public void setLang(String lang) {
72+
this.lang = lang;
73+
if(lang != null){
74+
putQueryParameter("Lang", lang);
75+
}
76+
}
77+
78+
@Override
79+
public Class<AcknowledgeTaskResultResponse> getResponseClass() {
80+
return AcknowledgeTaskResultResponse.class;
81+
}
82+
83+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,51 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.domain.model.v20180129;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.domain.transform.v20180129.AcknowledgeTaskResultResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class AcknowledgeTaskResultResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
private Integer result;
30+
31+
public String getRequestId() {
32+
return this.requestId;
33+
}
34+
35+
public void setRequestId(String requestId) {
36+
this.requestId = requestId;
37+
}
38+
39+
public Integer getResult() {
40+
return this.result;
41+
}
42+
43+
public void setResult(Integer result) {
44+
this.result = result;
45+
}
46+
47+
@Override
48+
public AcknowledgeTaskResultResponse getInstance(UnmarshallerContext context) {
49+
return AcknowledgeTaskResultResponseUnmarshaller.unmarshall(this, context);
50+
}
51+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,80 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.domain.model.v20180129;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.MethodType;
19+
import com.aliyuncs.domain.Endpoint;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class BatchFuzzyMatchDomainSensitiveWordRequest extends RpcAcsRequest<BatchFuzzyMatchDomainSensitiveWordResponse> {
26+
27+
28+
private String userClientIp;
29+
30+
private String keyword;
31+
32+
private String lang;
33+
public BatchFuzzyMatchDomainSensitiveWordRequest() {
34+
super("Domain", "2018-01-29", "BatchFuzzyMatchDomainSensitiveWord", "domain");
35+
setMethod(MethodType.POST);
36+
try {
37+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
38+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
39+
} catch (Exception e) {}
40+
}
41+
42+
public String getUserClientIp() {
43+
return this.userClientIp;
44+
}
45+
46+
public void setUserClientIp(String userClientIp) {
47+
this.userClientIp = userClientIp;
48+
if(userClientIp != null){
49+
putQueryParameter("UserClientIp", userClientIp);
50+
}
51+
}
52+
53+
public String getKeyword() {
54+
return this.keyword;
55+
}
56+
57+
public void setKeyword(String keyword) {
58+
this.keyword = keyword;
59+
if(keyword != null){
60+
putQueryParameter("Keyword", keyword);
61+
}
62+
}
63+
64+
public String getLang() {
65+
return this.lang;
66+
}
67+
68+
public void setLang(String lang) {
69+
this.lang = lang;
70+
if(lang != null){
71+
putQueryParameter("Lang", lang);
72+
}
73+
}
74+
75+
@Override
76+
public Class<BatchFuzzyMatchDomainSensitiveWordResponse> getResponseClass() {
77+
return BatchFuzzyMatchDomainSensitiveWordResponse.class;
78+
}
79+
80+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,98 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.domain.model.v20180129;
16+
17+
import java.util.List;
18+
import com.aliyuncs.AcsResponse;
19+
import com.aliyuncs.domain.transform.v20180129.BatchFuzzyMatchDomainSensitiveWordResponseUnmarshaller;
20+
import com.aliyuncs.transform.UnmarshallerContext;
21+
22+
/**
23+
* @author auto create
24+
* @version
25+
*/
26+
public class BatchFuzzyMatchDomainSensitiveWordResponse extends AcsResponse {
27+
28+
private String requestId;
29+
30+
private List<SensitiveWordMatchResult> sensitiveWordMatchResultList;
31+
32+
public String getRequestId() {
33+
return this.requestId;
34+
}
35+
36+
public void setRequestId(String requestId) {
37+
this.requestId = requestId;
38+
}
39+
40+
public List<SensitiveWordMatchResult> getSensitiveWordMatchResultList() {
41+
return this.sensitiveWordMatchResultList;
42+
}
43+
44+
public void setSensitiveWordMatchResultList(List<SensitiveWordMatchResult> sensitiveWordMatchResultList) {
45+
this.sensitiveWordMatchResultList = sensitiveWordMatchResultList;
46+
}
47+
48+
public static class SensitiveWordMatchResult {
49+
50+
private String keyword;
51+
52+
private Boolean exist;
53+
54+
private List<MatchedSensitiveWord> matchedSentiveWords;
55+
56+
public String getKeyword() {
57+
return this.keyword;
58+
}
59+
60+
public void setKeyword(String keyword) {
61+
this.keyword = keyword;
62+
}
63+
64+
public Boolean getExist() {
65+
return this.exist;
66+
}
67+
68+
public void setExist(Boolean exist) {
69+
this.exist = exist;
70+
}
71+
72+
public List<MatchedSensitiveWord> getMatchedSentiveWords() {
73+
return this.matchedSentiveWords;
74+
}
75+
76+
public void setMatchedSentiveWords(List<MatchedSensitiveWord> matchedSentiveWords) {
77+
this.matchedSentiveWords = matchedSentiveWords;
78+
}
79+
80+
public static class MatchedSensitiveWord {
81+
82+
private String word;
83+
84+
public String getWord() {
85+
return this.word;
86+
}
87+
88+
public void setWord(String word) {
89+
this.word = word;
90+
}
91+
}
92+
}
93+
94+
@Override
95+
public BatchFuzzyMatchDomainSensitiveWordResponse getInstance(UnmarshallerContext context) {
96+
return BatchFuzzyMatchDomainSensitiveWordResponseUnmarshaller.unmarshall(this, context);
97+
}
98+
}

0 commit comments

Comments
 (0)