Skip to content

Commit 12602bb

Browse files
committed
Generated java-async 2019-11-20 for Ga.
1 parent 2b926ba commit 12602bb

4 files changed

Lines changed: 31 additions & 3 deletions

File tree

ga-20191120/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2026-06-30 Version: 3.0.2
2+
- Generated java-async 2019-11-20 for Ga.
3+
14
2026-04-02 Version: 3.0.1
25
- Generated java-async 2019-11-20 for Ga.
36

ga-20191120/pom.xml

Lines changed: 2 additions & 2 deletions
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-ga20191120</artifactId>
6-
<version>3.0.1</version>
6+
<version>3.0.2</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-ga20191120</name>
99
<description>Alibaba Cloud Ga (20191120) Async SDK for Java
@@ -41,7 +41,7 @@
4141
<java.version>1.8</java.version>
4242
<maven.compiler.source>8</maven.compiler.source>
4343
<maven.compiler.target>8</maven.compiler.target>
44-
<service.version>0.3.5-beta</service.version>
44+
<service.version>0.4.0</service.version>
4545
</properties>
4646
<dependencies>
4747
<dependency>

ga-20191120/src/main/java/com/aliyun/sdk/service/ga20191120/DefaultAsyncClient.java

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,9 @@ protected DefaultAsyncClient(ClientConfiguration configuration) {
3030
this.product = "Ga";
3131
this.version = "2019-11-20";
3232
this.endpointRule = "regional";
33-
this.endpointMap = new java.util.HashMap<>();
33+
this.endpointMap = CommonUtil.buildMap(
34+
new TeaPair("cn-hangzhou", "ga.cn-hangzhou.aliyuncs.com")
35+
);
3436
this.REQUEST = TeaRequest.create().setProduct(product).setEndpointRule(endpointRule).setEndpointMap(endpointMap).setVersion(version);
3537
}
3638

ga-20191120/src/main/java/com/aliyun/sdk/service/ga20191120/models/ListEndpointGroupsRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,10 @@ public class ListEndpointGroupsRequest extends Request {
3030
@com.aliyun.core.annotation.NameInMap("EndpointGroupId")
3131
private String endpointGroupId;
3232

33+
@com.aliyun.core.annotation.Query
34+
@com.aliyun.core.annotation.NameInMap("EndpointGroupRegion")
35+
private String endpointGroupRegion;
36+
3337
@com.aliyun.core.annotation.Query
3438
@com.aliyun.core.annotation.NameInMap("EndpointGroupType")
3539
private String endpointGroupType;
@@ -61,6 +65,7 @@ private ListEndpointGroupsRequest(Builder builder) {
6165
this.acceleratorId = builder.acceleratorId;
6266
this.accessLogSwitch = builder.accessLogSwitch;
6367
this.endpointGroupId = builder.endpointGroupId;
68+
this.endpointGroupRegion = builder.endpointGroupRegion;
6469
this.endpointGroupType = builder.endpointGroupType;
6570
this.listenerId = builder.listenerId;
6671
this.pageNumber = builder.pageNumber;
@@ -103,6 +108,13 @@ public String getEndpointGroupId() {
103108
return this.endpointGroupId;
104109
}
105110

111+
/**
112+
* @return endpointGroupRegion
113+
*/
114+
public String getEndpointGroupRegion() {
115+
return this.endpointGroupRegion;
116+
}
117+
106118
/**
107119
* @return endpointGroupType
108120
*/
@@ -149,6 +161,7 @@ public static final class Builder extends Request.Builder<ListEndpointGroupsRequ
149161
private String acceleratorId;
150162
private String accessLogSwitch;
151163
private String endpointGroupId;
164+
private String endpointGroupRegion;
152165
private String endpointGroupType;
153166
private String listenerId;
154167
private Integer pageNumber;
@@ -165,6 +178,7 @@ private Builder(ListEndpointGroupsRequest request) {
165178
this.acceleratorId = request.acceleratorId;
166179
this.accessLogSwitch = request.accessLogSwitch;
167180
this.endpointGroupId = request.endpointGroupId;
181+
this.endpointGroupRegion = request.endpointGroupRegion;
168182
this.endpointGroupType = request.endpointGroupType;
169183
this.listenerId = request.listenerId;
170184
this.pageNumber = request.pageNumber;
@@ -214,6 +228,15 @@ public Builder endpointGroupId(String endpointGroupId) {
214228
return this;
215229
}
216230

231+
/**
232+
* EndpointGroupRegion.
233+
*/
234+
public Builder endpointGroupRegion(String endpointGroupRegion) {
235+
this.putQueryParameter("EndpointGroupRegion", endpointGroupRegion);
236+
this.endpointGroupRegion = endpointGroupRegion;
237+
return this;
238+
}
239+
217240
/**
218241
* <p>The type of the endpoint group. Valid values: Valid values:</p>
219242
* <ul>

0 commit comments

Comments
 (0)