Skip to content

Commit 332c099

Browse files
committed
Generated java-async 2019-05-31 for mse.
1 parent c76ec3b commit 332c099

File tree

3 files changed

+27
-1
lines changed

3 files changed

+27
-1
lines changed

mse-20190531/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-06-09 Version: 6.0.43
2+
- Generated java-async 2019-05-31 for mse.
3+
14
2025-05-08 Version: 6.0.42
25
- Generated java-async 2019-05-31 for mse.
36

mse-20190531/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-mse20190531</artifactId>
6-
<version>6.0.42</version>
6+
<version>6.0.43</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-mse20190531</name>
99
<description>Alibaba Cloud mse (20190531) Async SDK for Java

mse-20190531/src/main/java/com/aliyun/sdk/service/mse20190531/models/UpdateAclRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,16 @@ public class UpdateAclRequest extends Request {
2929
@com.aliyun.core.annotation.NameInMap("InstanceId")
3030
private String instanceId;
3131

32+
@com.aliyun.core.annotation.Query
33+
@com.aliyun.core.annotation.NameInMap("NetworkType")
34+
private String networkType;
35+
3236
private UpdateAclRequest(Builder builder) {
3337
super(builder);
3438
this.acceptLanguage = builder.acceptLanguage;
3539
this.aclEntryList = builder.aclEntryList;
3640
this.instanceId = builder.instanceId;
41+
this.networkType = builder.networkType;
3742
}
3843

3944
public static Builder builder() {
@@ -70,10 +75,18 @@ public String getInstanceId() {
7075
return this.instanceId;
7176
}
7277

78+
/**
79+
* @return networkType
80+
*/
81+
public String getNetworkType() {
82+
return this.networkType;
83+
}
84+
7385
public static final class Builder extends Request.Builder<UpdateAclRequest, Builder> {
7486
private String acceptLanguage;
7587
private String aclEntryList;
7688
private String instanceId;
89+
private String networkType;
7790

7891
private Builder() {
7992
super();
@@ -84,6 +97,7 @@ private Builder(UpdateAclRequest request) {
8497
this.acceptLanguage = request.acceptLanguage;
8598
this.aclEntryList = request.aclEntryList;
8699
this.instanceId = request.instanceId;
100+
this.networkType = request.networkType;
87101
}
88102

89103
/**
@@ -126,6 +140,15 @@ public Builder instanceId(String instanceId) {
126140
return this;
127141
}
128142

143+
/**
144+
* NetworkType.
145+
*/
146+
public Builder networkType(String networkType) {
147+
this.putQueryParameter("NetworkType", networkType);
148+
this.networkType = networkType;
149+
return this;
150+
}
151+
129152
@Override
130153
public UpdateAclRequest build() {
131154
return new UpdateAclRequest(this);

0 commit comments

Comments
 (0)