Skip to content

Commit fb3058f

Browse files
committed
Update API QueryExportDomainExpireSnatchs: add request parameters DataSources.
1 parent 7e6869b commit fb3058f

5 files changed

Lines changed: 118 additions & 4 deletions

File tree

domain-20180208/ChangeLog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2026-05-13 Version: 0.11.1
2+
- Update API QueryExportDomainExpireSnatchs: add request parameters DataSources.
3+
4+
15
2026-04-29 Version: 0.11.0
26
- Support API UpdateProxyPrice.
37

domain-20180208/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.aliyun</groupId>
55
<artifactId>domain20180208</artifactId>
6-
<version>0.11.0</version>
6+
<version>0.11.1</version>
77
<packaging>jar</packaging>
88
<name>domain20180208</name>
99
<description>Alibaba Cloud Domains (20180208) SDK for Java

domain-20180208/src/main/java/com/aliyun/domain20180208/Client.java

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1344,17 +1344,27 @@ public QueryExportAuctionDetailResponse queryExportAuctionDetail(QueryExportAuct
13441344
* <b>summary</b> :
13451345
* <p>查询导出的抢注域名</p>
13461346
*
1347-
* @param request QueryExportDomainExpireSnatchsRequest
1347+
* @param tmpReq QueryExportDomainExpireSnatchsRequest
13481348
* @param runtime runtime options for this request RuntimeOptions
13491349
* @return QueryExportDomainExpireSnatchsResponse
13501350
*/
1351-
public QueryExportDomainExpireSnatchsResponse queryExportDomainExpireSnatchsWithOptions(QueryExportDomainExpireSnatchsRequest request, com.aliyun.teautil.models.RuntimeOptions runtime) throws Exception {
1352-
com.aliyun.teautil.Common.validateModel(request);
1351+
public QueryExportDomainExpireSnatchsResponse queryExportDomainExpireSnatchsWithOptions(QueryExportDomainExpireSnatchsRequest tmpReq, com.aliyun.teautil.models.RuntimeOptions runtime) throws Exception {
1352+
com.aliyun.teautil.Common.validateModel(tmpReq);
1353+
QueryExportDomainExpireSnatchsShrinkRequest request = new QueryExportDomainExpireSnatchsShrinkRequest();
1354+
com.aliyun.openapiutil.Client.convert(tmpReq, request);
1355+
if (!com.aliyun.teautil.Common.isUnset(tmpReq.dataSources)) {
1356+
request.dataSourcesShrink = com.aliyun.openapiutil.Client.arrayToStringWithSpecifiedStyle(tmpReq.dataSources, "DataSources", "json");
1357+
}
1358+
13531359
java.util.Map<String, Object> query = new java.util.HashMap<>();
13541360
if (!com.aliyun.teautil.Common.isUnset(request.currentId)) {
13551361
query.put("CurrentId", request.currentId);
13561362
}
13571363

1364+
if (!com.aliyun.teautil.Common.isUnset(request.dataSourcesShrink)) {
1365+
query.put("DataSources", request.dataSourcesShrink);
1366+
}
1367+
13581368
if (!com.aliyun.teautil.Common.isUnset(request.maxResults)) {
13591369
query.put("MaxResults", request.maxResults);
13601370
}

domain-20180208/src/main/java/com/aliyun/domain20180208/models/QueryExportDomainExpireSnatchsRequest.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,9 @@ public class QueryExportDomainExpireSnatchsRequest extends TeaModel {
1313
@NameInMap("CurrentId")
1414
public Long currentId;
1515

16+
@NameInMap("DataSources")
17+
public java.util.List<String> dataSources;
18+
1619
/**
1720
* <strong>example:</strong>
1821
* <p>50</p>
@@ -51,6 +54,14 @@ public Long getCurrentId() {
5154
return this.currentId;
5255
}
5356

57+
public QueryExportDomainExpireSnatchsRequest setDataSources(java.util.List<String> dataSources) {
58+
this.dataSources = dataSources;
59+
return this;
60+
}
61+
public java.util.List<String> getDataSources() {
62+
return this.dataSources;
63+
}
64+
5465
public QueryExportDomainExpireSnatchsRequest setMaxResults(Integer maxResults) {
5566
this.maxResults = maxResults;
5667
return this;
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
1+
// This file is auto-generated, don't edit it. Thanks.
2+
package com.aliyun.domain20180208.models;
3+
4+
import com.aliyun.tea.*;
5+
6+
public class QueryExportDomainExpireSnatchsShrinkRequest extends TeaModel {
7+
/**
8+
* <p>This parameter is required.</p>
9+
*
10+
* <strong>example:</strong>
11+
* <p>1</p>
12+
*/
13+
@NameInMap("CurrentId")
14+
public Long currentId;
15+
16+
@NameInMap("DataSources")
17+
public String dataSourcesShrink;
18+
19+
/**
20+
* <strong>example:</strong>
21+
* <p>50</p>
22+
*/
23+
@NameInMap("MaxResults")
24+
public Integer maxResults;
25+
26+
/**
27+
* <p>This parameter is required.</p>
28+
*
29+
* <strong>example:</strong>
30+
* <p>f07b150eadfa1d7a</p>
31+
*/
32+
@NameInMap("NextToken")
33+
public String nextToken;
34+
35+
/**
36+
* <p>This parameter is required.</p>
37+
*
38+
* <strong>example:</strong>
39+
* <p>1</p>
40+
*/
41+
@NameInMap("PageSize")
42+
public Integer pageSize;
43+
44+
public static QueryExportDomainExpireSnatchsShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
45+
QueryExportDomainExpireSnatchsShrinkRequest self = new QueryExportDomainExpireSnatchsShrinkRequest();
46+
return TeaModel.build(map, self);
47+
}
48+
49+
public QueryExportDomainExpireSnatchsShrinkRequest setCurrentId(Long currentId) {
50+
this.currentId = currentId;
51+
return this;
52+
}
53+
public Long getCurrentId() {
54+
return this.currentId;
55+
}
56+
57+
public QueryExportDomainExpireSnatchsShrinkRequest setDataSourcesShrink(String dataSourcesShrink) {
58+
this.dataSourcesShrink = dataSourcesShrink;
59+
return this;
60+
}
61+
public String getDataSourcesShrink() {
62+
return this.dataSourcesShrink;
63+
}
64+
65+
public QueryExportDomainExpireSnatchsShrinkRequest setMaxResults(Integer maxResults) {
66+
this.maxResults = maxResults;
67+
return this;
68+
}
69+
public Integer getMaxResults() {
70+
return this.maxResults;
71+
}
72+
73+
public QueryExportDomainExpireSnatchsShrinkRequest setNextToken(String nextToken) {
74+
this.nextToken = nextToken;
75+
return this;
76+
}
77+
public String getNextToken() {
78+
return this.nextToken;
79+
}
80+
81+
public QueryExportDomainExpireSnatchsShrinkRequest setPageSize(Integer pageSize) {
82+
this.pageSize = pageSize;
83+
return this;
84+
}
85+
public Integer getPageSize() {
86+
return this.pageSize;
87+
}
88+
89+
}

0 commit comments

Comments
 (0)