Skip to content

Commit a8b8059

Browse files
committed
Generated java-async 2022-02-22 for Ess.
1 parent 43e40b5 commit a8b8059

File tree

253 files changed

+6140
-4791
lines changed

Some content is hidden

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

253 files changed

+6140
-4791
lines changed

ess-20220222/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-05-16 Version: 1.0.12
2+
- Generated java-async 2022-02-22 for Ess.
3+
14
2024-04-23 Version: 1.0.11
25
- Generated java-async 2022-02-22 for Ess.
36

ess-20220222/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-ess20220222</artifactId>
6-
<version>1.0.11</version>
6+
<version>1.0.12</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-ess20220222</name>
99
<description>Alibaba Cloud Ess (20220222) Async SDK for Java

ess-20220222/src/main/java/com/aliyun/sdk/service/ess20220222/AsyncClient.java

Lines changed: 135 additions & 24 deletions
Large diffs are not rendered by default.

ess-20220222/src/main/java/com/aliyun/sdk/service/ess20220222/DefaultAsyncClient.java

Lines changed: 147 additions & 24 deletions
Large diffs are not rendered by default.

ess-20220222/src/main/java/com/aliyun/sdk/service/ess20220222/models/ApplyEciScalingConfigurationRequest.java

Lines changed: 17 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// This file is auto-generated, don't edit it. Thanks.
22
package com.aliyun.sdk.service.ess20220222.models;
33

4-
import com.aliyun.core.annotation.*;
54
import darabonba.core.RequestModel;
65
import darabonba.core.TeaModel;
76
import com.aliyun.sdk.gateway.pop.models.*;
@@ -12,26 +11,26 @@
1211
* <p>ApplyEciScalingConfigurationRequest</p>
1312
*/
1413
public class ApplyEciScalingConfigurationRequest extends Request {
15-
@Query
16-
@NameInMap("Content")
17-
@Validation(required = true)
14+
@com.aliyun.core.annotation.Query
15+
@com.aliyun.core.annotation.NameInMap("Content")
16+
@com.aliyun.core.annotation.Validation(required = true)
1817
private String content;
1918

20-
@Query
21-
@NameInMap("Format")
19+
@com.aliyun.core.annotation.Query
20+
@com.aliyun.core.annotation.NameInMap("Format")
2221
private String format;
2322

24-
@Query
25-
@NameInMap("RegionId")
23+
@com.aliyun.core.annotation.Query
24+
@com.aliyun.core.annotation.NameInMap("RegionId")
2625
private String regionId;
2726

28-
@Query
29-
@NameInMap("ScalingConfigurationId")
27+
@com.aliyun.core.annotation.Query
28+
@com.aliyun.core.annotation.NameInMap("ScalingConfigurationId")
3029
private String scalingConfigurationId;
3130

32-
@Query
33-
@NameInMap("ScalingGroupId")
34-
@Validation(required = true)
31+
@com.aliyun.core.annotation.Query
32+
@com.aliyun.core.annotation.NameInMap("ScalingGroupId")
33+
@com.aliyun.core.annotation.Validation(required = true)
3534
private String scalingGroupId;
3635

3736
private ApplyEciScalingConfigurationRequest(Builder builder) {
@@ -112,7 +111,7 @@ private Builder(ApplyEciScalingConfigurationRequest request) {
112111
}
113112

114113
/**
115-
* Content.
114+
* The content of the configuration file.
116115
*/
117116
public Builder content(String content) {
118117
this.putQueryParameter("Content", content);
@@ -121,7 +120,7 @@ public Builder content(String content) {
121120
}
122121

123122
/**
124-
* Format.
123+
* Optional. The format of the configuration file. Default value: YAML. Set the value to YAML.
125124
*/
126125
public Builder format(String format) {
127126
this.putQueryParameter("Format", format);
@@ -130,7 +129,7 @@ public Builder format(String format) {
130129
}
131130

132131
/**
133-
* RegionId.
132+
* The region ID.
134133
*/
135134
public Builder regionId(String regionId) {
136135
this.putQueryParameter("RegionId", regionId);
@@ -139,7 +138,7 @@ public Builder regionId(String regionId) {
139138
}
140139

141140
/**
142-
* ScalingConfigurationId.
141+
* The ID of the scaling configuration that you want to update. If you want to update a scaling configuration based on the value of Content, you must specify ScalingConfigurationId. If you want to create a scaling configuration based on the value of Content, you can leave ScalingConfigurationId empty.
143142
*/
144143
public Builder scalingConfigurationId(String scalingConfigurationId) {
145144
this.putQueryParameter("ScalingConfigurationId", scalingConfigurationId);
@@ -148,7 +147,7 @@ public Builder scalingConfigurationId(String scalingConfigurationId) {
148147
}
149148

150149
/**
151-
* ScalingGroupId.
150+
* The ID of the scaling group.
152151
*/
153152
public Builder scalingGroupId(String scalingGroupId) {
154153
this.putQueryParameter("ScalingGroupId", scalingGroupId);

ess-20220222/src/main/java/com/aliyun/sdk/service/ess20220222/models/ApplyEciScalingConfigurationResponse.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// This file is auto-generated, don't edit it. Thanks.
22
package com.aliyun.sdk.service.ess20220222.models;
33

4-
import com.aliyun.core.annotation.*;
54
import darabonba.core.RequestModel;
65
import darabonba.core.TeaModel;
76
import com.aliyun.sdk.gateway.pop.models.*;
@@ -12,13 +11,13 @@
1211
* <p>ApplyEciScalingConfigurationResponse</p>
1312
*/
1413
public class ApplyEciScalingConfigurationResponse extends Response {
15-
@NameInMap("headers")
14+
@com.aliyun.core.annotation.NameInMap("headers")
1615
private java.util.Map < String, String > headers;
1716

18-
@NameInMap("statusCode")
17+
@com.aliyun.core.annotation.NameInMap("statusCode")
1918
private Integer statusCode;
2019

21-
@NameInMap("body")
20+
@com.aliyun.core.annotation.NameInMap("body")
2221
private ApplyEciScalingConfigurationResponseBody body;
2322

2423
private ApplyEciScalingConfigurationResponse(BuilderImpl builder) {

ess-20220222/src/main/java/com/aliyun/sdk/service/ess20220222/models/ApplyEciScalingConfigurationResponseBody.java

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// This file is auto-generated, don't edit it. Thanks.
22
package com.aliyun.sdk.service.ess20220222.models;
33

4-
import com.aliyun.core.annotation.*;
54
import darabonba.core.RequestModel;
65
import darabonba.core.TeaModel;
76
import com.aliyun.sdk.gateway.pop.models.*;
@@ -12,10 +11,10 @@
1211
* <p>ApplyEciScalingConfigurationResponseBody</p>
1312
*/
1413
public class ApplyEciScalingConfigurationResponseBody extends TeaModel {
15-
@NameInMap("RequestId")
14+
@com.aliyun.core.annotation.NameInMap("RequestId")
1615
private String requestId;
1716

18-
@NameInMap("ScalingConfigurationId")
17+
@com.aliyun.core.annotation.NameInMap("ScalingConfigurationId")
1918
private String scalingConfigurationId;
2019

2120
private ApplyEciScalingConfigurationResponseBody(Builder builder) {
@@ -50,15 +49,15 @@ public static final class Builder {
5049
private String scalingConfigurationId;
5150

5251
/**
53-
* RequestId.
52+
* The request ID.
5453
*/
5554
public Builder requestId(String requestId) {
5655
this.requestId = requestId;
5756
return this;
5857
}
5958

6059
/**
61-
* ScalingConfigurationId.
60+
* The ID of the scaling configuration.
6261
*/
6362
public Builder scalingConfigurationId(String scalingConfigurationId) {
6463
this.scalingConfigurationId = scalingConfigurationId;

ess-20220222/src/main/java/com/aliyun/sdk/service/ess20220222/models/ApplyScalingGroupRequest.java

Lines changed: 8 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// This file is auto-generated, don't edit it. Thanks.
22
package com.aliyun.sdk.service.ess20220222.models;
33

4-
import com.aliyun.core.annotation.*;
54
import darabonba.core.RequestModel;
65
import darabonba.core.TeaModel;
76
import com.aliyun.sdk.gateway.pop.models.*;
@@ -12,17 +11,17 @@
1211
* <p>ApplyScalingGroupRequest</p>
1312
*/
1413
public class ApplyScalingGroupRequest extends Request {
15-
@Query
16-
@NameInMap("Content")
17-
@Validation(required = true)
14+
@com.aliyun.core.annotation.Query
15+
@com.aliyun.core.annotation.NameInMap("Content")
16+
@com.aliyun.core.annotation.Validation(required = true)
1817
private String content;
1918

20-
@Query
21-
@NameInMap("Format")
19+
@com.aliyun.core.annotation.Query
20+
@com.aliyun.core.annotation.NameInMap("Format")
2221
private String format;
2322

24-
@Query
25-
@NameInMap("RegionId")
23+
@com.aliyun.core.annotation.Query
24+
@com.aliyun.core.annotation.NameInMap("RegionId")
2625
private String regionId;
2726

2827
private ApplyScalingGroupRequest(Builder builder) {
@@ -83,7 +82,7 @@ private Builder(ApplyScalingGroupRequest request) {
8382
}
8483

8584
/**
86-
* Content.
85+
* The content of the configuration file.
8786
*/
8887
public Builder content(String content) {
8988
this.putQueryParameter("Content", content);

ess-20220222/src/main/java/com/aliyun/sdk/service/ess20220222/models/ApplyScalingGroupResponse.java

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// This file is auto-generated, don't edit it. Thanks.
22
package com.aliyun.sdk.service.ess20220222.models;
33

4-
import com.aliyun.core.annotation.*;
54
import darabonba.core.RequestModel;
65
import darabonba.core.TeaModel;
76
import com.aliyun.sdk.gateway.pop.models.*;
@@ -12,13 +11,13 @@
1211
* <p>ApplyScalingGroupResponse</p>
1312
*/
1413
public class ApplyScalingGroupResponse extends Response {
15-
@NameInMap("headers")
14+
@com.aliyun.core.annotation.NameInMap("headers")
1615
private java.util.Map < String, String > headers;
1716

18-
@NameInMap("statusCode")
17+
@com.aliyun.core.annotation.NameInMap("statusCode")
1918
private Integer statusCode;
2019

21-
@NameInMap("body")
20+
@com.aliyun.core.annotation.NameInMap("body")
2221
private ApplyScalingGroupResponseBody body;
2322

2423
private ApplyScalingGroupResponse(BuilderImpl builder) {

ess-20220222/src/main/java/com/aliyun/sdk/service/ess20220222/models/ApplyScalingGroupResponseBody.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
// This file is auto-generated, don't edit it. Thanks.
22
package com.aliyun.sdk.service.ess20220222.models;
33

4-
import com.aliyun.core.annotation.*;
54
import darabonba.core.RequestModel;
65
import darabonba.core.TeaModel;
76
import com.aliyun.sdk.gateway.pop.models.*;
@@ -12,10 +11,10 @@
1211
* <p>ApplyScalingGroupResponseBody</p>
1312
*/
1413
public class ApplyScalingGroupResponseBody extends TeaModel {
15-
@NameInMap("RequestId")
14+
@com.aliyun.core.annotation.NameInMap("RequestId")
1615
private String requestId;
1716

18-
@NameInMap("ScalingGroupId")
17+
@com.aliyun.core.annotation.NameInMap("ScalingGroupId")
1918
private String scalingGroupId;
2019

2120
private ApplyScalingGroupResponseBody(Builder builder) {

0 commit comments

Comments
 (0)