Skip to content

Commit f686da3

Browse files
committed
Generated 2025-04-29 for WebsiteBuild.
1 parent 8fe799a commit f686da3

8 files changed

Lines changed: 472 additions & 3 deletions

File tree

aliyun-java-sdk-websitebuild/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2026-01-19 Version: 1.0.14
2+
- Generated 2025-04-29 for `WebsiteBuild`.
3+
14
2026-01-15 Version: 1.0.13
25
- Generated 2025-04-29 for `WebsiteBuild`.
36

aliyun-java-sdk-websitebuild/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-websitebuild</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.0.13</version>
7+
<version>1.0.14</version>
88
<name>aliyun-java-sdk-websitebuild</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java

aliyun-java-sdk-websitebuild/src/main/java/com/aliyuncs/websitebuild/model/v20250429/CreateAppInstanceRequest.java

Lines changed: 55 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,9 @@
1515
package com.aliyuncs.websitebuild.model.v20250429;
1616

1717
import com.aliyuncs.RpcAcsRequest;
18+
import java.util.List;
19+
import com.google.gson.Gson;
20+
import com.google.gson.annotations.SerializedName;
1821
import com.aliyuncs.http.ProtocolType;
1922
import com.aliyuncs.http.MethodType;
2023

@@ -29,12 +32,17 @@ public class CreateAppInstanceRequest extends RpcAcsRequest<CreateAppInstanceRes
2932

3033
private Integer duration;
3134

35+
private String resourceGroupId;
36+
3237
private String siteVersion;
3338

3439
private String deployArea;
3540

3641
private Integer quantity;
3742

43+
@SerializedName("tags")
44+
private List<Tags> tags;
45+
3846
private String extend;
3947

4048
private Boolean autoRenew;
@@ -72,6 +80,17 @@ public void setDuration(Integer duration) {
7280
}
7381
}
7482

83+
public String getResourceGroupId() {
84+
return this.resourceGroupId;
85+
}
86+
87+
public void setResourceGroupId(String resourceGroupId) {
88+
this.resourceGroupId = resourceGroupId;
89+
if(resourceGroupId != null){
90+
putBodyParameter("ResourceGroupId", resourceGroupId);
91+
}
92+
}
93+
7594
public String getSiteVersion() {
7695
return this.siteVersion;
7796
}
@@ -105,6 +124,17 @@ public void setQuantity(Integer quantity) {
105124
}
106125
}
107126

127+
public List<Tags> getTags() {
128+
return this.tags;
129+
}
130+
131+
public void setTags(List<Tags> tags) {
132+
this.tags = tags;
133+
if (tags != null) {
134+
putBodyParameter("Tags" , new Gson().toJson(tags));
135+
}
136+
}
137+
108138
public String getExtend() {
109139
return this.extend;
110140
}
@@ -158,6 +188,31 @@ public void setPaymentType(String paymentType) {
158188
if(paymentType != null){
159189
putQueryParameter("PaymentType", paymentType);
160190
}
191+
}
192+
193+
public static class Tags {
194+
195+
@SerializedName("TagValue")
196+
private String tagValue;
197+
198+
@SerializedName("TagKey")
199+
private String tagKey;
200+
201+
public String getTagValue() {
202+
return this.tagValue;
203+
}
204+
205+
public void setTagValue(String tagValue) {
206+
this.tagValue = tagValue;
207+
}
208+
209+
public String getTagKey() {
210+
return this.tagKey;
211+
}
212+
213+
public void setTagKey(String tagKey) {
214+
this.tagKey = tagKey;
215+
}
161216
}
162217

163218
@Override

aliyun-java-sdk-websitebuild/src/main/java/com/aliyuncs/websitebuild/model/v20250429/GetAppInstanceResponse.java

Lines changed: 169 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -187,14 +187,20 @@ public static class Module {
187187

188188
private String sourceType;
189189

190+
private String resourceGroupId;
191+
190192
private List<AiStaffListItem> aiStaffList;
191193

192194
private List<AppServiceListItem> appServiceList;
193195

196+
private List<TagsItem> tags;
197+
194198
private Profile profile;
195199

196200
private AppOperationAddress appOperationAddress;
197201

202+
private PartnerDetail partnerDetail;
203+
198204
public String getCreateTime() {
199205
return this.createTime;
200206
}
@@ -395,6 +401,14 @@ public void setSourceType(String sourceType) {
395401
this.sourceType = sourceType;
396402
}
397403

404+
public String getResourceGroupId() {
405+
return this.resourceGroupId;
406+
}
407+
408+
public void setResourceGroupId(String resourceGroupId) {
409+
this.resourceGroupId = resourceGroupId;
410+
}
411+
398412
public List<AiStaffListItem> getAiStaffList() {
399413
return this.aiStaffList;
400414
}
@@ -411,6 +425,14 @@ public void setAppServiceList(List<AppServiceListItem> appServiceList) {
411425
this.appServiceList = appServiceList;
412426
}
413427

428+
public List<TagsItem> getTags() {
429+
return this.tags;
430+
}
431+
432+
public void setTags(List<TagsItem> tags) {
433+
this.tags = tags;
434+
}
435+
414436
public Profile getProfile() {
415437
return this.profile;
416438
}
@@ -427,6 +449,14 @@ public void setAppOperationAddress(AppOperationAddress appOperationAddress) {
427449
this.appOperationAddress = appOperationAddress;
428450
}
429451

452+
public PartnerDetail getPartnerDetail() {
453+
return this.partnerDetail;
454+
}
455+
456+
public void setPartnerDetail(PartnerDetail partnerDetail) {
457+
this.partnerDetail = partnerDetail;
458+
}
459+
430460
public static class AiStaffListItem {
431461

432462
private String staffId;
@@ -762,6 +792,29 @@ public void setEnable(Boolean enable) {
762792
}
763793
}
764794

795+
public static class TagsItem {
796+
797+
private String tagKey;
798+
799+
private String tagValue;
800+
801+
public String getTagKey() {
802+
return this.tagKey;
803+
}
804+
805+
public void setTagKey(String tagKey) {
806+
this.tagKey = tagKey;
807+
}
808+
809+
public String getTagValue() {
810+
return this.tagValue;
811+
}
812+
813+
public void setTagValue(String tagValue) {
814+
this.tagValue = tagValue;
815+
}
816+
}
817+
765818
public static class Profile {
766819

767820
private String commodityCode;
@@ -980,6 +1033,122 @@ public void setEnable(Boolean enable) {
9801033
}
9811034
}
9821035
}
1036+
1037+
public static class PartnerDetail {
1038+
1039+
private String status;
1040+
1041+
private String partnerId;
1042+
1043+
private BindData bindData;
1044+
1045+
public String getStatus() {
1046+
return this.status;
1047+
}
1048+
1049+
public void setStatus(String status) {
1050+
this.status = status;
1051+
}
1052+
1053+
public String getPartnerId() {
1054+
return this.partnerId;
1055+
}
1056+
1057+
public void setPartnerId(String partnerId) {
1058+
this.partnerId = partnerId;
1059+
}
1060+
1061+
public BindData getBindData() {
1062+
return this.bindData;
1063+
}
1064+
1065+
public void setBindData(BindData bindData) {
1066+
this.bindData = bindData;
1067+
}
1068+
1069+
public static class BindData {
1070+
1071+
private String id;
1072+
1073+
private String gmtCreate;
1074+
1075+
private String gmtModified;
1076+
1077+
private String partnerId;
1078+
1079+
private String userId;
1080+
1081+
private String parentPk;
1082+
1083+
private String mobile;
1084+
1085+
private String bizId;
1086+
1087+
public String getId() {
1088+
return this.id;
1089+
}
1090+
1091+
public void setId(String id) {
1092+
this.id = id;
1093+
}
1094+
1095+
public String getGmtCreate() {
1096+
return this.gmtCreate;
1097+
}
1098+
1099+
public void setGmtCreate(String gmtCreate) {
1100+
this.gmtCreate = gmtCreate;
1101+
}
1102+
1103+
public String getGmtModified() {
1104+
return this.gmtModified;
1105+
}
1106+
1107+
public void setGmtModified(String gmtModified) {
1108+
this.gmtModified = gmtModified;
1109+
}
1110+
1111+
public String getPartnerId() {
1112+
return this.partnerId;
1113+
}
1114+
1115+
public void setPartnerId(String partnerId) {
1116+
this.partnerId = partnerId;
1117+
}
1118+
1119+
public String getUserId() {
1120+
return this.userId;
1121+
}
1122+
1123+
public void setUserId(String userId) {
1124+
this.userId = userId;
1125+
}
1126+
1127+
public String getParentPk() {
1128+
return this.parentPk;
1129+
}
1130+
1131+
public void setParentPk(String parentPk) {
1132+
this.parentPk = parentPk;
1133+
}
1134+
1135+
public String getMobile() {
1136+
return this.mobile;
1137+
}
1138+
1139+
public void setMobile(String mobile) {
1140+
this.mobile = mobile;
1141+
}
1142+
1143+
public String getBizId() {
1144+
return this.bizId;
1145+
}
1146+
1147+
public void setBizId(String bizId) {
1148+
this.bizId = bizId;
1149+
}
1150+
}
1151+
}
9831152
}
9841153

9851154
@Override

0 commit comments

Comments
 (0)