Skip to content

Commit 54a8f89

Browse files
committed
Update API ListAppInstanceDomains: add request parameters DomainKeyword.
1 parent 0a448ca commit 54a8f89

4 files changed

Lines changed: 20 additions & 1 deletion

File tree

websitebuild-20250429/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: 2.20.2
2+
- Update API ListAppInstanceDomains: add request parameters DomainKeyword.
3+
4+
15
2026-04-20 Version: 2.20.1
26
- Update API GetAppInstanceForPartner: add response parameters Body.Module.AppServiceList.$.Profile.UpgradeStatus.
37
- Update API GetAppInstanceForPartner: add response parameters Body.Module.Profile.UpgradeStatus.

websitebuild-20250429/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>websitebuild20250429</artifactId>
6-
<version>2.20.1</version>
6+
<version>2.20.2</version>
77
<packaging>jar</packaging>
88
<name>websitebuild20250429</name>
99
<description>Alibaba Cloud WebsiteBuild (20250429) SDK for Java

websitebuild-20250429/src/main/java/com/aliyun/websitebuild20250429/Client.java

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1943,6 +1943,10 @@ public ListAppInstanceDomainsResponse listAppInstanceDomainsWithOptions(ListAppI
19431943
query.put("BizId", request.bizId);
19441944
}
19451945

1946+
if (!com.aliyun.teautil.Common.isUnset(request.domainKeyword)) {
1947+
query.put("DomainKeyword", request.domainKeyword);
1948+
}
1949+
19461950
if (!com.aliyun.teautil.Common.isUnset(request.maxResults)) {
19471951
query.put("MaxResults", request.maxResults);
19481952
}

websitebuild-20250429/src/main/java/com/aliyun/websitebuild20250429/models/ListAppInstanceDomainsRequest.java

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

16+
@NameInMap("DomainKeyword")
17+
public String domainKeyword;
18+
1619
/**
1720
* <p>Number of results per query.</p>
1821
* <p>Range: 10~100. Default value: 20.</p>
@@ -81,6 +84,14 @@ public String getBizId() {
8184
return this.bizId;
8285
}
8386

87+
public ListAppInstanceDomainsRequest setDomainKeyword(String domainKeyword) {
88+
this.domainKeyword = domainKeyword;
89+
return this;
90+
}
91+
public String getDomainKeyword() {
92+
return this.domainKeyword;
93+
}
94+
8495
public ListAppInstanceDomainsRequest setMaxResults(Integer maxResults) {
8596
this.maxResults = maxResults;
8697
return this;

0 commit comments

Comments
 (0)