Skip to content

Commit

Permalink
Supported modification of securityGroupId for UpdateElasticNetworkInt…
Browse files Browse the repository at this point in the history
…erface API.
  • Loading branch information
sdk-team committed Jun 18, 2024
1 parent 2f9f9fd commit b2a132f
Show file tree
Hide file tree
Showing 34 changed files with 296 additions and 24 deletions.
3 changes: 3 additions & 0 deletions aliyun-java-sdk-eflo/ChangeLog.txt
Original file line number Diff line number Diff line change
@@ -1,3 +1,6 @@
2024-06-18 Version: 1.0.14
- Supported modification of securityGroupId for UpdateElasticNetworkInterface API.

2024-06-03 Version: 1.0.13
- Supported gateway for hdeni api.

Expand Down
2 changes: 1 addition & 1 deletion aliyun-java-sdk-eflo/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<groupId>com.aliyun</groupId>
<artifactId>aliyun-java-sdk-eflo</artifactId>
<packaging>jar</packaging>
<version>1.0.13</version>
<version>1.0.14</version>
<name>aliyun-java-sdk-eflo</name>
<url>http://www.aliyun.com</url>
<description>Aliyun Open API SDK for Java
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,9 @@ public class CreateErRequest extends RpcAcsRequest<CreateErResponse> {

private String erName;

private String masterZoneId;
private String masterZoneId;

private String resourceGroupId;
public CreateErRequest() {
super("eflo", "2022-05-30", "CreateEr", "eflo");
setMethod(MethodType.POST);
Expand Down Expand Up @@ -65,6 +67,17 @@ public void setMasterZoneId(String masterZoneId) {
if(masterZoneId != null){
putBodyParameter("MasterZoneId", masterZoneId);
}
}

public String getResourceGroupId() {
return this.resourceGroupId;
}

public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putBodyParameter("ResourceGroupId", resourceGroupId);
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,8 @@ public static class Content {

private String resourceTenantId;

private String resourceGroupId;

public String getCreateTime() {
return this.createTime;
}
Expand Down Expand Up @@ -215,6 +217,14 @@ public String getResourceTenantId() {
public void setResourceTenantId(String resourceTenantId) {
this.resourceTenantId = resourceTenantId;
}

public String getResourceGroupId() {
return this.resourceGroupId;
}

public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ public static class Content {

private String description;

private String resourceGroupId;

private List<ErAttachment> erAttachments;

private List<ErRouteMap> erRouteMaps;
Expand Down Expand Up @@ -173,6 +175,14 @@ public void setDescription(String description) {
this.description = description;
}

public String getResourceGroupId() {
return this.resourceGroupId;
}

public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}

public List<ErAttachment> getErAttachments() {
return this.erAttachments;
}
Expand Down Expand Up @@ -229,6 +239,8 @@ public static class ErAttachment {

private String resourceTenantId;

private String resourceGroupId;

public String getCreateTime() {
return this.createTime;
}
Expand Down Expand Up @@ -348,6 +360,14 @@ public String getResourceTenantId() {
public void setResourceTenantId(String resourceTenantId) {
this.resourceTenantId = resourceTenantId;
}

public String getResourceGroupId() {
return this.resourceGroupId;
}

public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}
}

public static class ErRouteMap {
Expand All @@ -364,8 +384,6 @@ public static class ErRouteMap {

private String status;

private String erRouteMapName;

private String erRouteMapId;

private String erId;
Expand Down Expand Up @@ -394,6 +412,10 @@ public static class ErRouteMap {

private String receptionInstanceOwner;

private String resourceGroupId;

private String erRouteMapName;

public String getRegionId() {
return this.regionId;
}
Expand Down Expand Up @@ -442,14 +464,6 @@ public void setStatus(String status) {
this.status = status;
}

public String getErRouteMapName() {
return this.erRouteMapName;
}

public void setErRouteMapName(String erRouteMapName) {
this.erRouteMapName = erRouteMapName;
}

public String getErRouteMapId() {
return this.erRouteMapId;
}
Expand Down Expand Up @@ -561,6 +575,22 @@ public String getReceptionInstanceOwner() {
public void setReceptionInstanceOwner(String receptionInstanceOwner) {
this.receptionInstanceOwner = receptionInstanceOwner;
}

public String getResourceGroupId() {
return this.resourceGroupId;
}

public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}

public String getErRouteMapName() {
return this.erRouteMapName;
}

public void setErRouteMapName(String erRouteMapName) {
this.erRouteMapName = erRouteMapName;
}
}

public static class ErRouteEntry {
Expand All @@ -587,6 +617,8 @@ public static class ErRouteEntry {

private String gmtModified;

private String resourceGroupId;

public String getErId() {
return this.erId;
}
Expand Down Expand Up @@ -674,6 +706,14 @@ public String getGmtModified() {
public void setGmtModified(String gmtModified) {
this.gmtModified = gmtModified;
}

public String getResourceGroupId() {
return this.resourceGroupId;
}

public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ public static class Content {

private String gmtModified;

private String resourceGroupId;

public String getRegionId() {
return this.regionId;
}
Expand Down Expand Up @@ -165,6 +167,14 @@ public String getGmtModified() {
public void setGmtModified(String gmtModified) {
this.gmtModified = gmtModified;
}

public String getResourceGroupId() {
return this.resourceGroupId;
}

public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -78,8 +78,6 @@ public static class Content {

private String status;

private String erRouteMapName;

private String erRouteMapId;

private String erId;
Expand Down Expand Up @@ -108,6 +106,10 @@ public static class Content {

private String receptionInstanceOwner;

private String resourceGroupId;

private String erRouteMapName;

public String getRegionId() {
return this.regionId;
}
Expand Down Expand Up @@ -156,14 +158,6 @@ public void setStatus(String status) {
this.status = status;
}

public String getErRouteMapName() {
return this.erRouteMapName;
}

public void setErRouteMapName(String erRouteMapName) {
this.erRouteMapName = erRouteMapName;
}

public String getErRouteMapId() {
return this.erRouteMapId;
}
Expand Down Expand Up @@ -275,6 +269,22 @@ public String getReceptionInstanceOwner() {
public void setReceptionInstanceOwner(String receptionInstanceOwner) {
this.receptionInstanceOwner = receptionInstanceOwner;
}

public String getResourceGroupId() {
return this.resourceGroupId;
}

public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}

public String getErRouteMapName() {
return this.erRouteMapName;
}

public void setErRouteMapName(String erRouteMapName) {
this.erRouteMapName = erRouteMapName;
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ public static class Content {

private String message;

private String resourceGroupId;

public String getRegionId() {
return this.regionId;
}
Expand Down Expand Up @@ -175,6 +177,14 @@ public String getMessage() {
public void setMessage(String message) {
this.message = message;
}

public String getResourceGroupId() {
return this.resourceGroupId;
}

public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ public static class Content {

private String gmtModified;

private String resourceGroupId;

public String getRegionId() {
return this.regionId;
}
Expand Down Expand Up @@ -165,6 +167,14 @@ public String getGmtModified() {
public void setGmtModified(String gmtModified) {
this.gmtModified = gmtModified;
}

public String getResourceGroupId() {
return this.resourceGroupId;
}

public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}
}

@Override
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ public class ListErAttachmentsRequest extends RpcAcsRequest<ListErAttachmentsRes

private String resourceTenantId;

private String resourceGroupId;

private Boolean autoReceiveAllRoute;

private Integer pageSize;
Expand Down Expand Up @@ -72,6 +74,17 @@ public void setResourceTenantId(String resourceTenantId) {
}
}

public String getResourceGroupId() {
return this.resourceGroupId;
}

public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
if(resourceGroupId != null){
putBodyParameter("ResourceGroupId", resourceGroupId);
}
}

public Boolean getAutoReceiveAllRoute() {
return this.autoReceiveAllRoute;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@ public static class DataItem {

private String resourceTenantId;

private String resourceGroupId;

public String getCreateTime() {
return this.createTime;
}
Expand Down Expand Up @@ -238,6 +240,14 @@ public String getResourceTenantId() {
public void setResourceTenantId(String resourceTenantId) {
this.resourceTenantId = resourceTenantId;
}

public String getResourceGroupId() {
return this.resourceGroupId;
}

public void setResourceGroupId(String resourceGroupId) {
this.resourceGroupId = resourceGroupId;
}
}
}

Expand Down
Loading

0 comments on commit b2a132f

Please sign in to comment.