Skip to content

Commit 6706b83

Browse files
committed
Generated java-async 2024-03-30 for Cms.
1 parent a0ffae0 commit 6706b83

File tree

5 files changed

+69
-1
lines changed

5 files changed

+69
-1
lines changed

cms-20240330/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-10-15 Version: 3.0.6
2+
- Generated java-async 2024-03-30 for Cms.
3+
14
2025-10-13 Version: 3.0.4
25
- Generated java-async 2024-03-30 for Cms.
36

cms-20240330/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>alibabacloud-cms20240330</artifactId>
6-
<version>3.0.4</version>
6+
<version>3.0.6</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-cms20240330</name>
99
<description>Alibaba Cloud Cms (20240330) Async SDK for Java

cms-20240330/src/main/java/com/aliyun/sdk/service/cms20240330/models/ListIntegrationPoliciesRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,10 @@ public class ListIntegrationPoliciesRequest extends Request {
2121
@com.aliyun.core.annotation.NameInMap("addonName")
2222
private String addonName;
2323

24+
@com.aliyun.core.annotation.Query
25+
@com.aliyun.core.annotation.NameInMap("bindResourceId")
26+
private String bindResourceId;
27+
2428
@com.aliyun.core.annotation.Query
2529
@com.aliyun.core.annotation.NameInMap("entityGroupIds")
2630
private String entityGroupIds;
@@ -72,6 +76,7 @@ public class ListIntegrationPoliciesRequest extends Request {
7276
private ListIntegrationPoliciesRequest(Builder builder) {
7377
super(builder);
7478
this.addonName = builder.addonName;
79+
this.bindResourceId = builder.bindResourceId;
7580
this.entityGroupIds = builder.entityGroupIds;
7681
this.filterRegionIds = builder.filterRegionIds;
7782
this.maxResults = builder.maxResults;
@@ -106,6 +111,13 @@ public String getAddonName() {
106111
return this.addonName;
107112
}
108113

114+
/**
115+
* @return bindResourceId
116+
*/
117+
public String getBindResourceId() {
118+
return this.bindResourceId;
119+
}
120+
109121
/**
110122
* @return entityGroupIds
111123
*/
@@ -192,6 +204,7 @@ public String getWorkspace() {
192204

193205
public static final class Builder extends Request.Builder<ListIntegrationPoliciesRequest, Builder> {
194206
private String addonName;
207+
private String bindResourceId;
195208
private String entityGroupIds;
196209
private String filterRegionIds;
197210
private Integer maxResults;
@@ -212,6 +225,7 @@ private Builder() {
212225
private Builder(ListIntegrationPoliciesRequest request) {
213226
super(request);
214227
this.addonName = request.addonName;
228+
this.bindResourceId = request.bindResourceId;
215229
this.entityGroupIds = request.entityGroupIds;
216230
this.filterRegionIds = request.filterRegionIds;
217231
this.maxResults = request.maxResults;
@@ -235,6 +249,15 @@ public Builder addonName(String addonName) {
235249
return this;
236250
}
237251

252+
/**
253+
* bindResourceId.
254+
*/
255+
public Builder bindResourceId(String bindResourceId) {
256+
this.putQueryParameter("bindResourceId", bindResourceId);
257+
this.bindResourceId = bindResourceId;
258+
return this;
259+
}
260+
238261
/**
239262
* entityGroupIds.
240263
*/

cms-20240330/src/main/java/com/aliyun/sdk/service/cms20240330/models/ListIntegrationPoliciesResponseBody.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1160,13 +1160,17 @@ public EntityGroup build() {
11601160
* <p>ListIntegrationPoliciesResponseBody</p>
11611161
*/
11621162
public static class ManagedInfo extends TeaModel {
1163+
@com.aliyun.core.annotation.NameInMap("eniId")
1164+
private String eniId;
1165+
11631166
@com.aliyun.core.annotation.NameInMap("securityGroupId")
11641167
private String securityGroupId;
11651168

11661169
@com.aliyun.core.annotation.NameInMap("vswitchId")
11671170
private String vswitchId;
11681171

11691172
private ManagedInfo(Builder builder) {
1173+
this.eniId = builder.eniId;
11701174
this.securityGroupId = builder.securityGroupId;
11711175
this.vswitchId = builder.vswitchId;
11721176
}
@@ -1179,6 +1183,13 @@ public static ManagedInfo create() {
11791183
return builder().build();
11801184
}
11811185

1186+
/**
1187+
* @return eniId
1188+
*/
1189+
public String getEniId() {
1190+
return this.eniId;
1191+
}
1192+
11821193
/**
11831194
* @return securityGroupId
11841195
*/
@@ -1194,17 +1205,27 @@ public String getVswitchId() {
11941205
}
11951206

11961207
public static final class Builder {
1208+
private String eniId;
11971209
private String securityGroupId;
11981210
private String vswitchId;
11991211

12001212
private Builder() {
12011213
}
12021214

12031215
private Builder(ManagedInfo model) {
1216+
this.eniId = model.eniId;
12041217
this.securityGroupId = model.securityGroupId;
12051218
this.vswitchId = model.vswitchId;
12061219
}
12071220

1221+
/**
1222+
* eniId.
1223+
*/
1224+
public Builder eniId(String eniId) {
1225+
this.eniId = eniId;
1226+
return this;
1227+
}
1228+
12081229
/**
12091230
* securityGroupId.
12101231
*/

cms-20240330/src/main/java/com/aliyun/sdk/service/cms20240330/models/ListIntegrationPolicyDashboardsResponseBody.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -122,6 +122,9 @@ public static class Dashboards extends TeaModel {
122122
@com.aliyun.core.annotation.NameInMap("folderUid")
123123
private String folderUid;
124124

125+
@com.aliyun.core.annotation.NameInMap("name")
126+
private String name;
127+
125128
@com.aliyun.core.annotation.NameInMap("region")
126129
private String region;
127130

@@ -139,6 +142,7 @@ public static class Dashboards extends TeaModel {
139142

140143
private Dashboards(Builder builder) {
141144
this.folderUid = builder.folderUid;
145+
this.name = builder.name;
142146
this.region = builder.region;
143147
this.tags = builder.tags;
144148
this.title = builder.title;
@@ -161,6 +165,13 @@ public String getFolderUid() {
161165
return this.folderUid;
162166
}
163167

168+
/**
169+
* @return name
170+
*/
171+
public String getName() {
172+
return this.name;
173+
}
174+
164175
/**
165176
* @return region
166177
*/
@@ -198,6 +209,7 @@ public String getUrl() {
198209

199210
public static final class Builder {
200211
private String folderUid;
212+
private String name;
201213
private String region;
202214
private java.util.List<String> tags;
203215
private String title;
@@ -209,6 +221,7 @@ private Builder() {
209221

210222
private Builder(Dashboards model) {
211223
this.folderUid = model.folderUid;
224+
this.name = model.name;
212225
this.region = model.region;
213226
this.tags = model.tags;
214227
this.title = model.title;
@@ -224,6 +237,14 @@ public Builder folderUid(String folderUid) {
224237
return this;
225238
}
226239

240+
/**
241+
* name.
242+
*/
243+
public Builder name(String name) {
244+
this.name = name;
245+
return this;
246+
}
247+
227248
/**
228249
* region.
229250
*/

0 commit comments

Comments
 (0)