Skip to content

Commit 49252d3

Browse files
committed
Generated java-async 2014-05-26 for Ecs.
1 parent 6440f8c commit 49252d3

3 files changed

Lines changed: 46 additions & 1 deletion

File tree

ecs-20140526/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2026-04-24 Version: 8.0.41
2+
- Generated java-async 2014-05-26 for Ecs.
3+
14
2026-04-17 Version: 8.0.40
25
- Generated java-async 2014-05-26 for Ecs.
36

ecs-20140526/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-ecs20140526</artifactId>
6-
<version>8.0.40</version>
6+
<version>8.0.41</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-ecs20140526</name>
99
<description>Alibaba Cloud Ecs (20140526) Async SDK for Java

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

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -309,6 +309,12 @@ public static class ImagePipelineExecutionSet extends TeaModel {
309309
@com.aliyun.core.annotation.NameInMap("CreationTime")
310310
private String creationTime;
311311

312+
@com.aliyun.core.annotation.NameInMap("ErrorCode")
313+
private String errorCode;
314+
315+
@com.aliyun.core.annotation.NameInMap("ErrorInfo")
316+
private String errorInfo;
317+
312318
@com.aliyun.core.annotation.NameInMap("ExecutionId")
313319
private String executionId;
314320

@@ -335,6 +341,8 @@ public static class ImagePipelineExecutionSet extends TeaModel {
335341

336342
private ImagePipelineExecutionSet(Builder builder) {
337343
this.creationTime = builder.creationTime;
344+
this.errorCode = builder.errorCode;
345+
this.errorInfo = builder.errorInfo;
338346
this.executionId = builder.executionId;
339347
this.imageId = builder.imageId;
340348
this.imagePipelineId = builder.imagePipelineId;
@@ -360,6 +368,20 @@ public String getCreationTime() {
360368
return this.creationTime;
361369
}
362370

371+
/**
372+
* @return errorCode
373+
*/
374+
public String getErrorCode() {
375+
return this.errorCode;
376+
}
377+
378+
/**
379+
* @return errorInfo
380+
*/
381+
public String getErrorInfo() {
382+
return this.errorInfo;
383+
}
384+
363385
/**
364386
* @return executionId
365387
*/
@@ -418,6 +440,8 @@ public Tags getTags() {
418440

419441
public static final class Builder {
420442
private String creationTime;
443+
private String errorCode;
444+
private String errorInfo;
421445
private String executionId;
422446
private String imageId;
423447
private String imagePipelineId;
@@ -432,6 +456,8 @@ private Builder() {
432456

433457
private Builder(ImagePipelineExecutionSet model) {
434458
this.creationTime = model.creationTime;
459+
this.errorCode = model.errorCode;
460+
this.errorInfo = model.errorInfo;
435461
this.executionId = model.executionId;
436462
this.imageId = model.imageId;
437463
this.imagePipelineId = model.imagePipelineId;
@@ -453,6 +479,22 @@ public Builder creationTime(String creationTime) {
453479
return this;
454480
}
455481

482+
/**
483+
* ErrorCode.
484+
*/
485+
public Builder errorCode(String errorCode) {
486+
this.errorCode = errorCode;
487+
return this;
488+
}
489+
490+
/**
491+
* ErrorInfo.
492+
*/
493+
public Builder errorInfo(String errorInfo) {
494+
this.errorInfo = errorInfo;
495+
return this;
496+
}
497+
456498
/**
457499
* <p>The data returned.</p>
458500
*

0 commit comments

Comments
 (0)