Skip to content

Commit e4f1846

Browse files
committed
Generated java-async 2021-05-21 for ComputeNestSupplier.
1 parent 941eadf commit e4f1846

File tree

3 files changed

+25
-1
lines changed

3 files changed

+25
-1
lines changed

computenestsupplier-20210521/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-06-16 Version: 5.0.9
2+
- Generated java-async 2021-05-21 for ComputeNestSupplier.
3+
14
2025-05-29 Version: 5.0.8
25
- Generated java-async 2021-05-21 for ComputeNestSupplier.
36

computenestsupplier-20210521/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-computenestsupplier20210521</artifactId>
6-
<version>5.0.8</version>
6+
<version>5.0.9</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-computenestsupplier20210521</name>
99
<description>Alibaba Cloud ComputeNestSupplier (20210521) Async SDK for Java

computenestsupplier-20210521/src/main/java/com/aliyun/sdk/service/computenestsupplier20210521/models/CreateArtifactRequest.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -702,6 +702,9 @@ public static class ArtifactBuildProperty extends TeaModel {
702702
@com.aliyun.core.annotation.NameInMap("SourceImageId")
703703
private String sourceImageId;
704704

705+
@com.aliyun.core.annotation.NameInMap("SystemDiskSize")
706+
private Long systemDiskSize;
707+
705708
private ArtifactBuildProperty(Builder builder) {
706709
this.buildArgs = builder.buildArgs;
707710
this.codeRepo = builder.codeRepo;
@@ -711,6 +714,7 @@ private ArtifactBuildProperty(Builder builder) {
711714
this.regionId = builder.regionId;
712715
this.sourceContainerImage = builder.sourceContainerImage;
713716
this.sourceImageId = builder.sourceImageId;
717+
this.systemDiskSize = builder.systemDiskSize;
714718
}
715719

716720
public static Builder builder() {
@@ -777,6 +781,13 @@ public String getSourceImageId() {
777781
return this.sourceImageId;
778782
}
779783

784+
/**
785+
* @return systemDiskSize
786+
*/
787+
public Long getSystemDiskSize() {
788+
return this.systemDiskSize;
789+
}
790+
780791
public static final class Builder {
781792
private java.util.List<BuildArgs> buildArgs;
782793
private CodeRepo codeRepo;
@@ -786,6 +797,7 @@ public static final class Builder {
786797
private String regionId;
787798
private String sourceContainerImage;
788799
private String sourceImageId;
800+
private Long systemDiskSize;
789801

790802
private Builder() {
791803
}
@@ -799,6 +811,7 @@ private Builder(ArtifactBuildProperty model) {
799811
this.regionId = model.regionId;
800812
this.sourceContainerImage = model.sourceContainerImage;
801813
this.sourceImageId = model.sourceImageId;
814+
this.systemDiskSize = model.systemDiskSize;
802815
}
803816

804817
/**
@@ -920,6 +933,14 @@ public Builder sourceImageId(String sourceImageId) {
920933
return this;
921934
}
922935

936+
/**
937+
* SystemDiskSize.
938+
*/
939+
public Builder systemDiskSize(Long systemDiskSize) {
940+
this.systemDiskSize = systemDiskSize;
941+
return this;
942+
}
943+
923944
public ArtifactBuildProperty build() {
924945
return new ArtifactBuildProperty(this);
925946
}

0 commit comments

Comments
 (0)