Skip to content

Commit 8ca34ae

Browse files
committed
Generated java-async 2020-04-01 for eventbridge.
1 parent 51bdb53 commit 8ca34ae

File tree

9 files changed

+340
-1
lines changed

9 files changed

+340
-1
lines changed

eventbridge-20200401/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-05-27 Version: 5.0.2
2+
- Generated java-async 2020-04-01 for eventbridge.
3+
14
2025-04-24 Version: 5.0.1
25
- Generated java-async 2020-04-01 for eventbridge.
36

eventbridge-20200401/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-eventbridge20200401</artifactId>
6-
<version>5.0.1</version>
6+
<version>5.0.2</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-eventbridge20200401</name>
99
<description>Alibaba Cloud eventbridge (20200401) Async SDK for Java

eventbridge-20200401/src/main/java/com/aliyun/sdk/service/eventbridge20200401/models/CreateEventStreamingRequest.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -606,12 +606,16 @@ public static class RunOptions extends TeaModel {
606606
@com.aliyun.core.annotation.NameInMap("RetryStrategy")
607607
private RetryStrategy retryStrategy;
608608

609+
@com.aliyun.core.annotation.NameInMap("Throttling")
610+
private Integer throttling;
611+
609612
private RunOptions(Builder builder) {
610613
this.batchWindow = builder.batchWindow;
611614
this.deadLetterQueue = builder.deadLetterQueue;
612615
this.errorsTolerance = builder.errorsTolerance;
613616
this.maximumTasks = builder.maximumTasks;
614617
this.retryStrategy = builder.retryStrategy;
618+
this.throttling = builder.throttling;
615619
}
616620

617621
public static Builder builder() {
@@ -657,12 +661,20 @@ public RetryStrategy getRetryStrategy() {
657661
return this.retryStrategy;
658662
}
659663

664+
/**
665+
* @return throttling
666+
*/
667+
public Integer getThrottling() {
668+
return this.throttling;
669+
}
670+
660671
public static final class Builder {
661672
private BatchWindow batchWindow;
662673
private DeadLetterQueue deadLetterQueue;
663674
private String errorsTolerance;
664675
private Long maximumTasks;
665676
private RetryStrategy retryStrategy;
677+
private Integer throttling;
666678

667679
private Builder() {
668680
}
@@ -673,6 +685,7 @@ private Builder(RunOptions model) {
673685
this.errorsTolerance = model.errorsTolerance;
674686
this.maximumTasks = model.maximumTasks;
675687
this.retryStrategy = model.retryStrategy;
688+
this.throttling = model.throttling;
676689
}
677690

678691
/**
@@ -725,6 +738,14 @@ public Builder retryStrategy(RetryStrategy retryStrategy) {
725738
return this;
726739
}
727740

741+
/**
742+
* Throttling.
743+
*/
744+
public Builder throttling(Integer throttling) {
745+
this.throttling = throttling;
746+
return this;
747+
}
748+
728749
public RunOptions build() {
729750
return new RunOptions(this);
730751
}

eventbridge-20200401/src/main/java/com/aliyun/sdk/service/eventbridge20200401/models/CreateRuleRequest.java

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -273,8 +273,24 @@ public static class DeadLetterQueue extends TeaModel {
273273
@com.aliyun.core.annotation.NameInMap("Arn")
274274
private String arn;
275275

276+
@com.aliyun.core.annotation.NameInMap("Network")
277+
private String network;
278+
279+
@com.aliyun.core.annotation.NameInMap("SecurityGroupId")
280+
private String securityGroupId;
281+
282+
@com.aliyun.core.annotation.NameInMap("VSwitchIds")
283+
private String vSwitchIds;
284+
285+
@com.aliyun.core.annotation.NameInMap("VpcId")
286+
private String vpcId;
287+
276288
private DeadLetterQueue(Builder builder) {
277289
this.arn = builder.arn;
290+
this.network = builder.network;
291+
this.securityGroupId = builder.securityGroupId;
292+
this.vSwitchIds = builder.vSwitchIds;
293+
this.vpcId = builder.vpcId;
278294
}
279295

280296
public static Builder builder() {
@@ -292,14 +308,50 @@ public String getArn() {
292308
return this.arn;
293309
}
294310

311+
/**
312+
* @return network
313+
*/
314+
public String getNetwork() {
315+
return this.network;
316+
}
317+
318+
/**
319+
* @return securityGroupId
320+
*/
321+
public String getSecurityGroupId() {
322+
return this.securityGroupId;
323+
}
324+
325+
/**
326+
* @return vSwitchIds
327+
*/
328+
public String getVSwitchIds() {
329+
return this.vSwitchIds;
330+
}
331+
332+
/**
333+
* @return vpcId
334+
*/
335+
public String getVpcId() {
336+
return this.vpcId;
337+
}
338+
295339
public static final class Builder {
296340
private String arn;
341+
private String network;
342+
private String securityGroupId;
343+
private String vSwitchIds;
344+
private String vpcId;
297345

298346
private Builder() {
299347
}
300348

301349
private Builder(DeadLetterQueue model) {
302350
this.arn = model.arn;
351+
this.network = model.network;
352+
this.securityGroupId = model.securityGroupId;
353+
this.vSwitchIds = model.vSwitchIds;
354+
this.vpcId = model.vpcId;
303355
}
304356

305357
/**
@@ -313,6 +365,38 @@ public Builder arn(String arn) {
313365
return this;
314366
}
315367

368+
/**
369+
* Network.
370+
*/
371+
public Builder network(String network) {
372+
this.network = network;
373+
return this;
374+
}
375+
376+
/**
377+
* SecurityGroupId.
378+
*/
379+
public Builder securityGroupId(String securityGroupId) {
380+
this.securityGroupId = securityGroupId;
381+
return this;
382+
}
383+
384+
/**
385+
* VSwitchIds.
386+
*/
387+
public Builder vSwitchIds(String vSwitchIds) {
388+
this.vSwitchIds = vSwitchIds;
389+
return this;
390+
}
391+
392+
/**
393+
* VpcId.
394+
*/
395+
public Builder vpcId(String vpcId) {
396+
this.vpcId = vpcId;
397+
return this;
398+
}
399+
316400
public DeadLetterQueue build() {
317401
return new DeadLetterQueue(this);
318402
}

eventbridge-20200401/src/main/java/com/aliyun/sdk/service/eventbridge20200401/models/GetEventStreamingResponseBody.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -629,12 +629,16 @@ public static class RunOptions extends TeaModel {
629629
@com.aliyun.core.annotation.NameInMap("RetryStrategy")
630630
private RetryStrategy retryStrategy;
631631

632+
@com.aliyun.core.annotation.NameInMap("Throttling")
633+
private Integer throttling;
634+
632635
private RunOptions(Builder builder) {
633636
this.batchWindow = builder.batchWindow;
634637
this.deadLetterQueue = builder.deadLetterQueue;
635638
this.errorsTolerance = builder.errorsTolerance;
636639
this.maximumTasks = builder.maximumTasks;
637640
this.retryStrategy = builder.retryStrategy;
641+
this.throttling = builder.throttling;
638642
}
639643

640644
public static Builder builder() {
@@ -680,12 +684,20 @@ public RetryStrategy getRetryStrategy() {
680684
return this.retryStrategy;
681685
}
682686

687+
/**
688+
* @return throttling
689+
*/
690+
public Integer getThrottling() {
691+
return this.throttling;
692+
}
693+
683694
public static final class Builder {
684695
private BatchWindow batchWindow;
685696
private DeadLetterQueue deadLetterQueue;
686697
private String errorsTolerance;
687698
private Integer maximumTasks;
688699
private RetryStrategy retryStrategy;
700+
private Integer throttling;
689701

690702
private Builder() {
691703
}
@@ -696,6 +708,7 @@ private Builder(RunOptions model) {
696708
this.errorsTolerance = model.errorsTolerance;
697709
this.maximumTasks = model.maximumTasks;
698710
this.retryStrategy = model.retryStrategy;
711+
this.throttling = model.throttling;
699712
}
700713

701714
/**
@@ -744,6 +757,14 @@ public Builder retryStrategy(RetryStrategy retryStrategy) {
744757
return this;
745758
}
746759

760+
/**
761+
* Throttling.
762+
*/
763+
public Builder throttling(Integer throttling) {
764+
this.throttling = throttling;
765+
return this;
766+
}
767+
747768
public RunOptions build() {
748769
return new RunOptions(this);
749770
}

eventbridge-20200401/src/main/java/com/aliyun/sdk/service/eventbridge20200401/models/GetRuleResponseBody.java

Lines changed: 84 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -227,8 +227,24 @@ public static class DeadLetterQueue extends TeaModel {
227227
@com.aliyun.core.annotation.NameInMap("Arn")
228228
private String arn;
229229

230+
@com.aliyun.core.annotation.NameInMap("Network")
231+
private String network;
232+
233+
@com.aliyun.core.annotation.NameInMap("SecurityGroupId")
234+
private String securityGroupId;
235+
236+
@com.aliyun.core.annotation.NameInMap("VSwitchIds")
237+
private String vSwitchIds;
238+
239+
@com.aliyun.core.annotation.NameInMap("VpcId")
240+
private String vpcId;
241+
230242
private DeadLetterQueue(Builder builder) {
231243
this.arn = builder.arn;
244+
this.network = builder.network;
245+
this.securityGroupId = builder.securityGroupId;
246+
this.vSwitchIds = builder.vSwitchIds;
247+
this.vpcId = builder.vpcId;
232248
}
233249

234250
public static Builder builder() {
@@ -246,14 +262,50 @@ public String getArn() {
246262
return this.arn;
247263
}
248264

265+
/**
266+
* @return network
267+
*/
268+
public String getNetwork() {
269+
return this.network;
270+
}
271+
272+
/**
273+
* @return securityGroupId
274+
*/
275+
public String getSecurityGroupId() {
276+
return this.securityGroupId;
277+
}
278+
279+
/**
280+
* @return vSwitchIds
281+
*/
282+
public String getVSwitchIds() {
283+
return this.vSwitchIds;
284+
}
285+
286+
/**
287+
* @return vpcId
288+
*/
289+
public String getVpcId() {
290+
return this.vpcId;
291+
}
292+
249293
public static final class Builder {
250294
private String arn;
295+
private String network;
296+
private String securityGroupId;
297+
private String vSwitchIds;
298+
private String vpcId;
251299

252300
private Builder() {
253301
}
254302

255303
private Builder(DeadLetterQueue model) {
256304
this.arn = model.arn;
305+
this.network = model.network;
306+
this.securityGroupId = model.securityGroupId;
307+
this.vSwitchIds = model.vSwitchIds;
308+
this.vpcId = model.vpcId;
257309
}
258310

259311
/**
@@ -267,6 +319,38 @@ public Builder arn(String arn) {
267319
return this;
268320
}
269321

322+
/**
323+
* Network.
324+
*/
325+
public Builder network(String network) {
326+
this.network = network;
327+
return this;
328+
}
329+
330+
/**
331+
* SecurityGroupId.
332+
*/
333+
public Builder securityGroupId(String securityGroupId) {
334+
this.securityGroupId = securityGroupId;
335+
return this;
336+
}
337+
338+
/**
339+
* VSwitchIds.
340+
*/
341+
public Builder vSwitchIds(String vSwitchIds) {
342+
this.vSwitchIds = vSwitchIds;
343+
return this;
344+
}
345+
346+
/**
347+
* VpcId.
348+
*/
349+
public Builder vpcId(String vpcId) {
350+
this.vpcId = vpcId;
351+
return this;
352+
}
353+
270354
public DeadLetterQueue build() {
271355
return new DeadLetterQueue(this);
272356
}

0 commit comments

Comments
 (0)