Skip to content

Commit a2ce765

Browse files
committed
Change visibility of param ActionType in DescribeImageSupportInstanceTypes.
1 parent ea9c856 commit a2ce765

File tree

5,114 files changed

+3799
-10437
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

5,114 files changed

+3799
-10437
lines changed

ecs-20140526/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2023-03-28 Version: 2.0.3
2+
- Change visibility of param ActionType in DescribeImageSupportInstanceTypes.
3+
14
2023-02-13 Version: 2.0.2
25
- Support TagPolicy Verify NoTag.
36
- Fixed bugs for DescribeDemands error code.

ecs-20140526/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0modelVersion>
44
<groupId>com.aliyungroupId>
55
<artifactId>alibabacloud-ecs20140526artifactId>
6-
<version>2.0.2version>
6+
<version>2.0.3version>
77
<packaging>jarpackaging>
88
<name>alibabacloud-ecs20140526name>
99
<description>Alibaba Cloud Ecs (20140526) Async SDK for Java
@@ -41,7 +41,7 @@
4141
<java.version>1.8java.version>
4242
<maven.compiler.source>8maven.compiler.source>
4343
<maven.compiler.target>8maven.compiler.target>
44-
<service.version>0.1.9-betaservice.version>
44+
<service.version>0.1.13-betaservice.version>
4545
properties>
4646
<dependencies>
4747
<dependency>

ecs-20140526/src/main/java/com/aliyun/sdk/service/ecs20140526/AsyncClient.java

Lines changed: 364 additions & 620 deletions
Large diffs are not rendered by default.

ecs-20140526/src/main/java/com/aliyun/sdk/service/ecs20140526/DefaultAsyncClient.java

Lines changed: 382 additions & 638 deletions
Large diffs are not rendered by default.

ecs-20140526/src/main/java/com/aliyun/sdk/service/ecs20140526/models/AcceptInquiredSystemEventRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ public Builder sourceRegionId(String sourceRegionId) {
163163
}
164164

165165
/**
166-
* > This parameter is in invitational preview and is unavailable.
166+
* > This parameter is in invitational preview and is unavailable to general users.
167167
*/
168168
public Builder choice(String choice) {
169169
this.putQueryParameter("Choice", choice);

ecs-20140526/src/main/java/com/aliyun/sdk/service/ecs20140526/models/AssignIpv6AddressesRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,10 @@ public class AssignIpv6AddressesRequest extends Request {
1616
@NameInMap("SourceRegionId")
1717
private String sourceRegionId;
1818

19+
@Query
20+
@NameInMap("ClientToken")
21+
private String clientToken;
22+
1923
@Query
2024
@NameInMap("Ipv6Address")
2125
private java.util.List < String > ipv6Address;
@@ -62,6 +66,7 @@ public class AssignIpv6AddressesRequest extends Request {
6266
private AssignIpv6AddressesRequest(Builder builder) {
6367
super(builder);
6468
this.sourceRegionId = builder.sourceRegionId;
69+
this.clientToken = builder.clientToken;
6570
this.ipv6Address = builder.ipv6Address;
6671
this.ipv6AddressCount = builder.ipv6AddressCount;
6772
this.ipv6Prefix = builder.ipv6Prefix;
@@ -94,6 +99,13 @@ public String getSourceRegionId() {
9499
return this.sourceRegionId;
95100
}
96101

102+
/**
103+
* @return clientToken
104+
*/
105+
public String getClientToken() {
106+
return this.clientToken;
107+
}
108+
97109
/**
98110
* @return ipv6Address
99111
*/
@@ -166,6 +178,7 @@ public Long getResourceOwnerId() {
166178

167179
public static final class Builder extends Request.Builder<AssignIpv6AddressesRequest, Builder> {
168180
private String sourceRegionId;
181+
private String clientToken;
169182
private java.util.List < String > ipv6Address;
170183
private Integer ipv6AddressCount;
171184
private java.util.List < String > ipv6Prefix;
@@ -184,6 +197,7 @@ private Builder() {
184197
private Builder(AssignIpv6AddressesRequest request) {
185198
super(request);
186199
this.sourceRegionId = request.sourceRegionId;
200+
this.clientToken = request.clientToken;
187201
this.ipv6Address = request.ipv6Address;
188202
this.ipv6AddressCount = request.ipv6AddressCount;
189203
this.ipv6Prefix = request.ipv6Prefix;
@@ -205,6 +219,15 @@ public Builder sourceRegionId(String sourceRegionId) {
205219
return this;
206220
}
207221

222+
/**
223+
* ClientToken.
224+
*/
225+
public Builder clientToken(String clientToken) {
226+
this.putQueryParameter("ClientToken", clientToken);
227+
this.clientToken = clientToken;
228+
return this;
229+
}
230+
208231
/**
209232
* IPv6 address N to assign to the ENI. Valid values of N: 1 to 10.
210233
*

ecs-20140526/src/main/java/com/aliyun/sdk/service/ecs20140526/models/AssignPrivateIpAddressesRequest.java

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -220,7 +220,7 @@ public Builder sourceRegionId(String sourceRegionId) {
220220
}
221221

222222
/**
223-
* The client token that is used to ensure the idempotence of the request. You can use the client to generate the value, but you must make sure that it is unique among different requests. The **ClientToken** value can contain only ASCII characters and cannot exceed 64 characters in length. For more information, see [How to ensure idempotence](~~25693~~).
223+
* The client token that is used to ensure the idempotence of the request. You can use the client to generate the value, but you must make sure that the value is unique among different requests. The **ClientToken** value can only contain ASCII characters and cannot exceed 64 characters in length. For more information, see [How to ensure idempotence](~~25693~~).
224224
*/
225225
public Builder clientToken(String clientToken) {
226226
this.putQueryParameter("ClientToken", clientToken);
@@ -229,7 +229,7 @@ public Builder clientToken(String clientToken) {
229229
}
230230

231231
/**
232-
* > This parameter is in invitational preview and is unavailable to general users.
232+
* > This parameter is in invitational preview and is unavailable for general users.
233233
*/
234234
public Builder ipv4Prefix(java.util.List < String > ipv4Prefix) {
235235
this.putQueryParameter("Ipv4Prefix", ipv4Prefix);
@@ -247,7 +247,7 @@ public Builder ipv4PrefixCount(Integer ipv4PrefixCount) {
247247
}
248248

249249
/**
250-
* The ID of the ENI.
250+
* The IDs of the ENIs.
251251
*/
252252
public Builder networkInterfaceId(String networkInterfaceId) {
253253
this.putQueryParameter("NetworkInterfaceId", networkInterfaceId);
@@ -274,11 +274,11 @@ public Builder ownerId(Long ownerId) {
274274
}
275275

276276
/**
277-
* Secondary private IP address N, which is selected from within the CIDR block of the vSwitch that is connected to the ENI. Valid values of N:
277+
* One or more secondary private IP addresses selected from within the CIDR block of the vSwitch that is connected to the ENI. Valid values of N:
278278
*

279279
*
280-
* * When the ENI is in the Available (`Available`) state, the valid values of N are 1 to 32.
281-
* * When the ENI is in the InUse (`InUse`) state, the valid values of N are subject to the instance type. For more information, see [Instance families](~~25378~~).
280+
* * When the ENI is in the`Available` state, the valid values of N are 1 to 32.
281+
* * When the ENI is in the `InUse` state, the valid values of N are subject to the instance type. For more information, see [Instance families](~~25378~~).
282282
*
283283
* To assign secondary private IP addresses to the ENI, you cannot specify the `PrivateIpAddress.N` and `SecondaryPrivateIpAddressCount` parameters at the same time.
284284
*/
@@ -289,7 +289,7 @@ public Builder privateIpAddress(java.util.List < String > privateIpAddress) {
289289
}
290290

291291
/**
292-
* The region ID of the ENI. You can call the [DescribeRegions](~~25609~~) operation to query the most recent region list.
292+
* The region ID of the ENI. You can call the [DescribeRegions](~~25609~~) operation to query the most recent list of regions.
293293
*/
294294
public Builder regionId(String regionId) {
295295
this.putQueryParameter("RegionId", regionId);

ecs-20140526/src/main/java/com/aliyun/sdk/service/ecs20140526/models/AssignPrivateIpAddressesResponseBody.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -204,7 +204,7 @@ public static final class Builder {
204204
private PrivateIpSet privateIpSet;
205205

206206
/**
207-
* > This parameter is in invitational preview and is unavailable to general users.
207+
* > This parameter is in invitational preview and is unavailable for general users.
208208
*/
209209
public Builder ipv4PrefixSet(Ipv4PrefixSet ipv4PrefixSet) {
210210
this.ipv4PrefixSet = ipv4PrefixSet;

0 commit comments

Comments
 (0)