Skip to content

Commit 5cb0c9d

Browse files
committed
Generated java-async 2017-09-12 for Cbn.
1 parent 9009689 commit 5cb0c9d

6 files changed

Lines changed: 100 additions & 4 deletions

File tree

cbn-20170912/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: 1.0.38
2+
- Generated java-async 2017-09-12 for Cbn.
3+
14
2026-05-12 Version: 1.0.37
25
- Generated java-async 2017-09-12 for Cbn.
36

cbn-20170912/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-cbn20170912</artifactId>
6-
<version>1.0.37</version>
6+
<version>1.0.38</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-cbn20170912</name>
99
<description>Alibaba Cloud Cbn (20170912) 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>

cbn-20170912/src/main/java/com/aliyun/sdk/service/cbn20170912/DefaultAsyncClient.java

Lines changed: 32 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,38 @@ protected DefaultAsyncClient(ClientConfiguration configuration) {
2929
this.handler = new TeaAsyncHandler(configuration);
3030
this.product = "Cbn";
3131
this.version = "2017-09-12";
32-
this.endpointRule = "central";
33-
this.endpointMap = new java.util.HashMap<>();
32+
this.endpointRule = "regional";
33+
this.endpointMap = CommonUtil.buildMap(
34+
new TeaPair("us-west-1", "cbn.aliyuncs.com"),
35+
new TeaPair("us-east-1", "cbn.aliyuncs.com"),
36+
new TeaPair("na-south-1", "cbn.aliyuncs.com"),
37+
new TeaPair("me-central-1", "cbn.aliyuncs.com"),
38+
new TeaPair("eu-west-1", "cbn.aliyuncs.com"),
39+
new TeaPair("eu-central-1", "cbn.aliyuncs.com"),
40+
new TeaPair("cn-zhangjiakou", "cbn.aliyuncs.com"),
41+
new TeaPair("cn-wulanchabu", "cbn.aliyuncs.com"),
42+
new TeaPair("cn-shenzhen-finance-1", "cbn.aliyuncs.com"),
43+
new TeaPair("cn-shenzhen", "cbn.aliyuncs.com"),
44+
new TeaPair("cn-shanghai-finance-1", "cbn.aliyuncs.com"),
45+
new TeaPair("cn-shanghai", "cbn.aliyuncs.com"),
46+
new TeaPair("cn-qingdao", "cbn.aliyuncs.com"),
47+
new TeaPair("cn-north-2-gov-1", "cbn.aliyuncs.com"),
48+
new TeaPair("cn-huhehaote", "cbn.aliyuncs.com"),
49+
new TeaPair("cn-hongkong", "cbn.aliyuncs.com"),
50+
new TeaPair("cn-heyuan", "cbn.aliyuncs.com"),
51+
new TeaPair("cn-hangzhou", "cbn.aliyuncs.com"),
52+
new TeaPair("cn-guangzhou", "cbn.aliyuncs.com"),
53+
new TeaPair("cn-chengdu", "cbn.aliyuncs.com"),
54+
new TeaPair("cn-beijing-finance-1", "cbn.aliyuncs.com"),
55+
new TeaPair("cn-beijing", "cbn.aliyuncs.com"),
56+
new TeaPair("ap-southeast-6", "cbn.aliyuncs.com"),
57+
new TeaPair("ap-southeast-5", "cbn.aliyuncs.com"),
58+
new TeaPair("ap-southeast-3", "cbn.aliyuncs.com"),
59+
new TeaPair("ap-southeast-2", "cbn.aliyuncs.com"),
60+
new TeaPair("ap-southeast-1", "cbn.aliyuncs.com"),
61+
new TeaPair("ap-south-1", "cbn.aliyuncs.com"),
62+
new TeaPair("ap-northeast-1", "cbn.aliyuncs.com")
63+
);
3464
this.REQUEST = TeaRequest.create().setProduct(product).setEndpointRule(endpointRule).setEndpointMap(endpointMap).setVersion(version);
3565
}
3666

cbn-20170912/src/main/java/com/aliyun/sdk/service/cbn20170912/models/CreateTransitRouterMulticastDomainRequest.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -390,8 +390,12 @@ public static class Options extends TeaModel {
390390
@com.aliyun.core.annotation.NameInMap("Igmpv2Support")
391391
private String igmpv2Support;
392392

393+
@com.aliyun.core.annotation.NameInMap("StrictSourceControl")
394+
private String strictSourceControl;
395+
393396
private Options(Builder builder) {
394397
this.igmpv2Support = builder.igmpv2Support;
398+
this.strictSourceControl = builder.strictSourceControl;
395399
}
396400

397401
public static Builder builder() {
@@ -409,14 +413,23 @@ public String getIgmpv2Support() {
409413
return this.igmpv2Support;
410414
}
411415

416+
/**
417+
* @return strictSourceControl
418+
*/
419+
public String getStrictSourceControl() {
420+
return this.strictSourceControl;
421+
}
422+
412423
public static final class Builder {
413424
private String igmpv2Support;
425+
private String strictSourceControl;
414426

415427
private Builder() {
416428
}
417429

418430
private Builder(Options model) {
419431
this.igmpv2Support = model.igmpv2Support;
432+
this.strictSourceControl = model.strictSourceControl;
420433
}
421434

422435
/**
@@ -440,6 +453,14 @@ public Builder igmpv2Support(String igmpv2Support) {
440453
return this;
441454
}
442455

456+
/**
457+
* StrictSourceControl.
458+
*/
459+
public Builder strictSourceControl(String strictSourceControl) {
460+
this.strictSourceControl = strictSourceControl;
461+
return this;
462+
}
463+
443464
public Options build() {
444465
return new Options(this);
445466
}

cbn-20170912/src/main/java/com/aliyun/sdk/service/cbn20170912/models/ListTransitRouterMulticastDomainsResponseBody.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -177,8 +177,12 @@ public static class Options extends TeaModel {
177177
@com.aliyun.core.annotation.NameInMap("Igmpv2Support")
178178
private String igmpv2Support;
179179

180+
@com.aliyun.core.annotation.NameInMap("StrictSourceControl")
181+
private String strictSourceControl;
182+
180183
private Options(Builder builder) {
181184
this.igmpv2Support = builder.igmpv2Support;
185+
this.strictSourceControl = builder.strictSourceControl;
182186
}
183187

184188
public static Builder builder() {
@@ -196,14 +200,23 @@ public String getIgmpv2Support() {
196200
return this.igmpv2Support;
197201
}
198202

203+
/**
204+
* @return strictSourceControl
205+
*/
206+
public String getStrictSourceControl() {
207+
return this.strictSourceControl;
208+
}
209+
199210
public static final class Builder {
200211
private String igmpv2Support;
212+
private String strictSourceControl;
201213

202214
private Builder() {
203215
}
204216

205217
private Builder(Options model) {
206218
this.igmpv2Support = model.igmpv2Support;
219+
this.strictSourceControl = model.strictSourceControl;
207220
}
208221

209222
/**
@@ -217,6 +230,14 @@ public Builder igmpv2Support(String igmpv2Support) {
217230
return this;
218231
}
219232

233+
/**
234+
* StrictSourceControl.
235+
*/
236+
public Builder strictSourceControl(String strictSourceControl) {
237+
this.strictSourceControl = strictSourceControl;
238+
return this;
239+
}
240+
220241
public Options build() {
221242
return new Options(this);
222243
}

cbn-20170912/src/main/java/com/aliyun/sdk/service/cbn20170912/models/ModifyTransitRouterMulticastDomainRequest.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -315,8 +315,12 @@ public static class Options extends TeaModel {
315315
@com.aliyun.core.annotation.NameInMap("Igmpv2Support")
316316
private String igmpv2Support;
317317

318+
@com.aliyun.core.annotation.NameInMap("StrictSourceControl")
319+
private String strictSourceControl;
320+
318321
private Options(Builder builder) {
319322
this.igmpv2Support = builder.igmpv2Support;
323+
this.strictSourceControl = builder.strictSourceControl;
320324
}
321325

322326
public static Builder builder() {
@@ -334,14 +338,23 @@ public String getIgmpv2Support() {
334338
return this.igmpv2Support;
335339
}
336340

341+
/**
342+
* @return strictSourceControl
343+
*/
344+
public String getStrictSourceControl() {
345+
return this.strictSourceControl;
346+
}
347+
337348
public static final class Builder {
338349
private String igmpv2Support;
350+
private String strictSourceControl;
339351

340352
private Builder() {
341353
}
342354

343355
private Builder(Options model) {
344356
this.igmpv2Support = model.igmpv2Support;
357+
this.strictSourceControl = model.strictSourceControl;
345358
}
346359

347360
/**
@@ -361,6 +374,14 @@ public Builder igmpv2Support(String igmpv2Support) {
361374
return this;
362375
}
363376

377+
/**
378+
* StrictSourceControl.
379+
*/
380+
public Builder strictSourceControl(String strictSourceControl) {
381+
this.strictSourceControl = strictSourceControl;
382+
return this;
383+
}
384+
364385
public Options build() {
365386
return new Options(this);
366387
}

0 commit comments

Comments
 (0)