Skip to content

Commit b2a132f

Browse files
committed
Supported modification of securityGroupId for UpdateElasticNetworkInterface API.
1 parent 2f9f9fd commit b2a132f

34 files changed

+296
-24
lines changed

aliyun-java-sdk-eflo/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-06-18 Version: 1.0.14
2+
- Supported modification of securityGroupId for UpdateElasticNetworkInterface API.
3+
14
2024-06-03 Version: 1.0.13
25
- Supported gateway for hdeni api.
36

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

aliyun-java-sdk-eflo/src/main/java/com/aliyuncs/eflo/model/v20220530/CreateErRequest.java

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ public class CreateErRequest extends RpcAcsRequest<CreateErResponse> {
2828

2929
private String erName;
3030

31-
private String masterZoneId;
31+
private String masterZoneId;
32+
33+
private String resourceGroupId;
3234
public CreateErRequest() {
3335
super("eflo", "2022-05-30", "CreateEr", "eflo");
3436
setMethod(MethodType.POST);
@@ -65,6 +67,17 @@ public void setMasterZoneId(String masterZoneId) {
6567
if(masterZoneId != null){
6668
putBodyParameter("MasterZoneId", masterZoneId);
6769
}
70+
}
71+
72+
public String getResourceGroupId() {
73+
return this.resourceGroupId;
74+
}
75+
76+
public void setResourceGroupId(String resourceGroupId) {
77+
this.resourceGroupId = resourceGroupId;
78+
if(resourceGroupId != null){
79+
putBodyParameter("ResourceGroupId", resourceGroupId);
80+
}
6881
}
6982

7083
@Override

aliyun-java-sdk-eflo/src/main/java/com/aliyuncs/eflo/model/v20220530/GetErAttachmentResponse.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -96,6 +96,8 @@ public static class Content {
9696

9797
private String resourceTenantId;
9898

99+
private String resourceGroupId;
100+
99101
public String getCreateTime() {
100102
return this.createTime;
101103
}
@@ -215,6 +217,14 @@ public String getResourceTenantId() {
215217
public void setResourceTenantId(String resourceTenantId) {
216218
this.resourceTenantId = resourceTenantId;
217219
}
220+
221+
public String getResourceGroupId() {
222+
return this.resourceGroupId;
223+
}
224+
225+
public void setResourceGroupId(String resourceGroupId) {
226+
this.resourceGroupId = resourceGroupId;
227+
}
218228
}
219229

220230
@Override

aliyun-java-sdk-eflo/src/main/java/com/aliyuncs/eflo/model/v20220530/GetErResponse.java

Lines changed: 50 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,8 @@ public static class Content {
8787

8888
private String description;
8989

90+
private String resourceGroupId;
91+
9092
private List<ErAttachment> erAttachments;
9193

9294
private List<ErRouteMap> erRouteMaps;
@@ -173,6 +175,14 @@ public void setDescription(String description) {
173175
this.description = description;
174176
}
175177

178+
public String getResourceGroupId() {
179+
return this.resourceGroupId;
180+
}
181+
182+
public void setResourceGroupId(String resourceGroupId) {
183+
this.resourceGroupId = resourceGroupId;
184+
}
185+
176186
public List<ErAttachment> getErAttachments() {
177187
return this.erAttachments;
178188
}
@@ -229,6 +239,8 @@ public static class ErAttachment {
229239

230240
private String resourceTenantId;
231241

242+
private String resourceGroupId;
243+
232244
public String getCreateTime() {
233245
return this.createTime;
234246
}
@@ -348,6 +360,14 @@ public String getResourceTenantId() {
348360
public void setResourceTenantId(String resourceTenantId) {
349361
this.resourceTenantId = resourceTenantId;
350362
}
363+
364+
public String getResourceGroupId() {
365+
return this.resourceGroupId;
366+
}
367+
368+
public void setResourceGroupId(String resourceGroupId) {
369+
this.resourceGroupId = resourceGroupId;
370+
}
351371
}
352372

353373
public static class ErRouteMap {
@@ -364,8 +384,6 @@ public static class ErRouteMap {
364384

365385
private String status;
366386

367-
private String erRouteMapName;
368-
369387
private String erRouteMapId;
370388

371389
private String erId;
@@ -394,6 +412,10 @@ public static class ErRouteMap {
394412

395413
private String receptionInstanceOwner;
396414

415+
private String resourceGroupId;
416+
417+
private String erRouteMapName;
418+
397419
public String getRegionId() {
398420
return this.regionId;
399421
}
@@ -442,14 +464,6 @@ public void setStatus(String status) {
442464
this.status = status;
443465
}
444466

445-
public String getErRouteMapName() {
446-
return this.erRouteMapName;
447-
}
448-
449-
public void setErRouteMapName(String erRouteMapName) {
450-
this.erRouteMapName = erRouteMapName;
451-
}
452-
453467
public String getErRouteMapId() {
454468
return this.erRouteMapId;
455469
}
@@ -561,6 +575,22 @@ public String getReceptionInstanceOwner() {
561575
public void setReceptionInstanceOwner(String receptionInstanceOwner) {
562576
this.receptionInstanceOwner = receptionInstanceOwner;
563577
}
578+
579+
public String getResourceGroupId() {
580+
return this.resourceGroupId;
581+
}
582+
583+
public void setResourceGroupId(String resourceGroupId) {
584+
this.resourceGroupId = resourceGroupId;
585+
}
586+
587+
public String getErRouteMapName() {
588+
return this.erRouteMapName;
589+
}
590+
591+
public void setErRouteMapName(String erRouteMapName) {
592+
this.erRouteMapName = erRouteMapName;
593+
}
564594
}
565595

566596
public static class ErRouteEntry {
@@ -587,6 +617,8 @@ public static class ErRouteEntry {
587617

588618
private String gmtModified;
589619

620+
private String resourceGroupId;
621+
590622
public String getErId() {
591623
return this.erId;
592624
}
@@ -674,6 +706,14 @@ public String getGmtModified() {
674706
public void setGmtModified(String gmtModified) {
675707
this.gmtModified = gmtModified;
676708
}
709+
710+
public String getResourceGroupId() {
711+
return this.resourceGroupId;
712+
}
713+
714+
public void setResourceGroupId(String resourceGroupId) {
715+
this.resourceGroupId = resourceGroupId;
716+
}
677717
}
678718
}
679719

aliyun-java-sdk-eflo/src/main/java/com/aliyuncs/eflo/model/v20220530/GetErRouteEntryResponse.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ public static class Content {
8686

8787
private String gmtModified;
8888

89+
private String resourceGroupId;
90+
8991
public String getRegionId() {
9092
return this.regionId;
9193
}
@@ -165,6 +167,14 @@ public String getGmtModified() {
165167
public void setGmtModified(String gmtModified) {
166168
this.gmtModified = gmtModified;
167169
}
170+
171+
public String getResourceGroupId() {
172+
return this.resourceGroupId;
173+
}
174+
175+
public void setResourceGroupId(String resourceGroupId) {
176+
this.resourceGroupId = resourceGroupId;
177+
}
168178
}
169179

170180
@Override

aliyun-java-sdk-eflo/src/main/java/com/aliyuncs/eflo/model/v20220530/GetErRouteMapResponse.java

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,6 @@ public static class Content {
7878

7979
private String status;
8080

81-
private String erRouteMapName;
82-
8381
private String erRouteMapId;
8482

8583
private String erId;
@@ -108,6 +106,10 @@ public static class Content {
108106

109107
private String receptionInstanceOwner;
110108

109+
private String resourceGroupId;
110+
111+
private String erRouteMapName;
112+
111113
public String getRegionId() {
112114
return this.regionId;
113115
}
@@ -156,14 +158,6 @@ public void setStatus(String status) {
156158
this.status = status;
157159
}
158160

159-
public String getErRouteMapName() {
160-
return this.erRouteMapName;
161-
}
162-
163-
public void setErRouteMapName(String erRouteMapName) {
164-
this.erRouteMapName = erRouteMapName;
165-
}
166-
167161
public String getErRouteMapId() {
168162
return this.erRouteMapId;
169163
}
@@ -275,6 +269,22 @@ public String getReceptionInstanceOwner() {
275269
public void setReceptionInstanceOwner(String receptionInstanceOwner) {
276270
this.receptionInstanceOwner = receptionInstanceOwner;
277271
}
272+
273+
public String getResourceGroupId() {
274+
return this.resourceGroupId;
275+
}
276+
277+
public void setResourceGroupId(String resourceGroupId) {
278+
this.resourceGroupId = resourceGroupId;
279+
}
280+
281+
public String getErRouteMapName() {
282+
return this.erRouteMapName;
283+
}
284+
285+
public void setErRouteMapName(String erRouteMapName) {
286+
this.erRouteMapName = erRouteMapName;
287+
}
278288
}
279289

280290
@Override

aliyun-java-sdk-eflo/src/main/java/com/aliyuncs/eflo/model/v20220530/GetVccRouteEntryResponse.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -88,6 +88,8 @@ public static class Content {
8888

8989
private String message;
9090

91+
private String resourceGroupId;
92+
9193
public String getRegionId() {
9294
return this.regionId;
9395
}
@@ -175,6 +177,14 @@ public String getMessage() {
175177
public void setMessage(String message) {
176178
this.message = message;
177179
}
180+
181+
public String getResourceGroupId() {
182+
return this.resourceGroupId;
183+
}
184+
185+
public void setResourceGroupId(String resourceGroupId) {
186+
this.resourceGroupId = resourceGroupId;
187+
}
178188
}
179189

180190
@Override

aliyun-java-sdk-eflo/src/main/java/com/aliyuncs/eflo/model/v20220530/GetVpdRouteEntryResponse.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,8 @@ public static class Content {
8686

8787
private String gmtModified;
8888

89+
private String resourceGroupId;
90+
8991
public String getRegionId() {
9092
return this.regionId;
9193
}
@@ -165,6 +167,14 @@ public String getGmtModified() {
165167
public void setGmtModified(String gmtModified) {
166168
this.gmtModified = gmtModified;
167169
}
170+
171+
public String getResourceGroupId() {
172+
return this.resourceGroupId;
173+
}
174+
175+
public void setResourceGroupId(String resourceGroupId) {
176+
this.resourceGroupId = resourceGroupId;
177+
}
168178
}
169179

170180
@Override

aliyun-java-sdk-eflo/src/main/java/com/aliyuncs/eflo/model/v20220530/ListErAttachmentsRequest.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ public class ListErAttachmentsRequest extends RpcAcsRequest<ListErAttachmentsRes
2828

2929
private String resourceTenantId;
3030

31+
private String resourceGroupId;
32+
3133
private Boolean autoReceiveAllRoute;
3234

3335
private Integer pageSize;
@@ -72,6 +74,17 @@ public void setResourceTenantId(String resourceTenantId) {
7274
}
7375
}
7476

77+
public String getResourceGroupId() {
78+
return this.resourceGroupId;
79+
}
80+
81+
public void setResourceGroupId(String resourceGroupId) {
82+
this.resourceGroupId = resourceGroupId;
83+
if(resourceGroupId != null){
84+
putBodyParameter("ResourceGroupId", resourceGroupId);
85+
}
86+
}
87+
7588
public Boolean getAutoReceiveAllRoute() {
7689
return this.autoReceiveAllRoute;
7790
}

0 commit comments

Comments
 (0)