Skip to content

Commit 51bdb53

Browse files
committed
Generated java-async 2014-05-26 for Ecs.
1 parent 8fd7faf commit 51bdb53

File tree

7 files changed

+161
-2
lines changed

7 files changed

+161
-2
lines changed

ecs-20140526/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: 8.0.7
2+
- Generated java-async 2014-05-26 for Ecs.
3+
14
2025-05-23 Version: 8.0.6
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.6</version>
6+
<version>8.0.7</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/CreateLaunchTemplateRequest.java

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1581,6 +1581,9 @@ public static class SystemDisk extends TeaModel {
15811581
@com.aliyun.core.annotation.NameInMap("Iops")
15821582
private Integer iops;
15831583

1584+
@com.aliyun.core.annotation.NameInMap("KMSKeyId")
1585+
private String KMSKeyId;
1586+
15841587
@com.aliyun.core.annotation.NameInMap("PerformanceLevel")
15851588
private String performanceLevel;
15861589

@@ -1599,6 +1602,7 @@ private SystemDisk(Builder builder) {
15991602
this.diskName = builder.diskName;
16001603
this.encrypted = builder.encrypted;
16011604
this.iops = builder.iops;
1605+
this.KMSKeyId = builder.KMSKeyId;
16021606
this.performanceLevel = builder.performanceLevel;
16031607
this.provisionedIops = builder.provisionedIops;
16041608
this.size = builder.size;
@@ -1668,6 +1672,13 @@ public Integer getIops() {
16681672
return this.iops;
16691673
}
16701674

1675+
/**
1676+
* @return KMSKeyId
1677+
*/
1678+
public String getKMSKeyId() {
1679+
return this.KMSKeyId;
1680+
}
1681+
16711682
/**
16721683
* @return performanceLevel
16731684
*/
@@ -1698,6 +1709,7 @@ public static final class Builder {
16981709
private String diskName;
16991710
private String encrypted;
17001711
private Integer iops;
1712+
private String KMSKeyId;
17011713
private String performanceLevel;
17021714
private Long provisionedIops;
17031715
private Integer size;
@@ -1714,6 +1726,7 @@ private Builder(SystemDisk model) {
17141726
this.diskName = model.diskName;
17151727
this.encrypted = model.encrypted;
17161728
this.iops = model.iops;
1729+
this.KMSKeyId = model.KMSKeyId;
17171730
this.performanceLevel = model.performanceLevel;
17181731
this.provisionedIops = model.provisionedIops;
17191732
this.size = model.size;
@@ -1835,6 +1848,14 @@ public Builder iops(Integer iops) {
18351848
return this;
18361849
}
18371850

1851+
/**
1852+
* KMSKeyId.
1853+
*/
1854+
public Builder KMSKeyId(String KMSKeyId) {
1855+
this.KMSKeyId = KMSKeyId;
1856+
return this;
1857+
}
1858+
18381859
/**
18391860
* <p>The performance level of the ESSD to use as the system disk. Default value: PL0. Valid values:</p>
18401861
* <ul>
@@ -1922,6 +1943,9 @@ public static class DataDisk extends TeaModel {
19221943
@com.aliyun.core.annotation.NameInMap("Encrypted")
19231944
private String encrypted;
19241945

1946+
@com.aliyun.core.annotation.NameInMap("KMSKeyId")
1947+
private String KMSKeyId;
1948+
19251949
@com.aliyun.core.annotation.NameInMap("PerformanceLevel")
19261950
private String performanceLevel;
19271951

@@ -1943,6 +1967,7 @@ private DataDisk(Builder builder) {
19431967
this.device = builder.device;
19441968
this.diskName = builder.diskName;
19451969
this.encrypted = builder.encrypted;
1970+
this.KMSKeyId = builder.KMSKeyId;
19461971
this.performanceLevel = builder.performanceLevel;
19471972
this.provisionedIops = builder.provisionedIops;
19481973
this.size = builder.size;
@@ -2013,6 +2038,13 @@ public String getEncrypted() {
20132038
return this.encrypted;
20142039
}
20152040

2041+
/**
2042+
* @return KMSKeyId
2043+
*/
2044+
public String getKMSKeyId() {
2045+
return this.KMSKeyId;
2046+
}
2047+
20162048
/**
20172049
* @return performanceLevel
20182050
*/
@@ -2050,6 +2082,7 @@ public static final class Builder {
20502082
private String device;
20512083
private String diskName;
20522084
private String encrypted;
2085+
private String KMSKeyId;
20532086
private String performanceLevel;
20542087
private Long provisionedIops;
20552088
private Integer size;
@@ -2067,6 +2100,7 @@ private Builder(DataDisk model) {
20672100
this.device = model.device;
20682101
this.diskName = model.diskName;
20692102
this.encrypted = model.encrypted;
2103+
this.KMSKeyId = model.KMSKeyId;
20702104
this.performanceLevel = model.performanceLevel;
20712105
this.provisionedIops = model.provisionedIops;
20722106
this.size = model.size;
@@ -2186,6 +2220,14 @@ public Builder encrypted(String encrypted) {
21862220
return this;
21872221
}
21882222

2223+
/**
2224+
* KMSKeyId.
2225+
*/
2226+
public Builder KMSKeyId(String KMSKeyId) {
2227+
this.KMSKeyId = KMSKeyId;
2228+
return this;
2229+
}
2230+
21892231
/**
21902232
* <p>The performance level of the ESSD to use as data disk N. The value of N must be the same as that in <code>DataDisk.N.Category</code> when DataDisk.N.Category is set to cloud_essd. Valid values:</p>
21912233
* <ul>

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

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1547,6 +1547,9 @@ public static class SystemDisk extends TeaModel {
15471547
@com.aliyun.core.annotation.NameInMap("Iops")
15481548
private Integer iops;
15491549

1550+
@com.aliyun.core.annotation.NameInMap("KMSKeyId")
1551+
private String KMSKeyId;
1552+
15501553
@com.aliyun.core.annotation.NameInMap("PerformanceLevel")
15511554
private String performanceLevel;
15521555

@@ -1565,6 +1568,7 @@ private SystemDisk(Builder builder) {
15651568
this.diskName = builder.diskName;
15661569
this.encrypted = builder.encrypted;
15671570
this.iops = builder.iops;
1571+
this.KMSKeyId = builder.KMSKeyId;
15681572
this.performanceLevel = builder.performanceLevel;
15691573
this.provisionedIops = builder.provisionedIops;
15701574
this.size = builder.size;
@@ -1634,6 +1638,13 @@ public Integer getIops() {
16341638
return this.iops;
16351639
}
16361640

1641+
/**
1642+
* @return KMSKeyId
1643+
*/
1644+
public String getKMSKeyId() {
1645+
return this.KMSKeyId;
1646+
}
1647+
16371648
/**
16381649
* @return performanceLevel
16391650
*/
@@ -1664,6 +1675,7 @@ public static final class Builder {
16641675
private String diskName;
16651676
private String encrypted;
16661677
private Integer iops;
1678+
private String KMSKeyId;
16671679
private String performanceLevel;
16681680
private Long provisionedIops;
16691681
private Integer size;
@@ -1680,6 +1692,7 @@ private Builder(SystemDisk model) {
16801692
this.diskName = model.diskName;
16811693
this.encrypted = model.encrypted;
16821694
this.iops = model.iops;
1695+
this.KMSKeyId = model.KMSKeyId;
16831696
this.performanceLevel = model.performanceLevel;
16841697
this.provisionedIops = model.provisionedIops;
16851698
this.size = model.size;
@@ -1801,6 +1814,14 @@ public Builder iops(Integer iops) {
18011814
return this;
18021815
}
18031816

1817+
/**
1818+
* KMSKeyId.
1819+
*/
1820+
public Builder KMSKeyId(String KMSKeyId) {
1821+
this.KMSKeyId = KMSKeyId;
1822+
return this;
1823+
}
1824+
18041825
/**
18051826
* <p>The performance level of the ESSD to be used as the system disk. Default value: PL0. Valid values:</p>
18061827
* <ul>
@@ -1888,6 +1909,9 @@ public static class DataDisk extends TeaModel {
18881909
@com.aliyun.core.annotation.NameInMap("Encrypted")
18891910
private String encrypted;
18901911

1912+
@com.aliyun.core.annotation.NameInMap("KMSKeyId")
1913+
private String KMSKeyId;
1914+
18911915
@com.aliyun.core.annotation.NameInMap("PerformanceLevel")
18921916
private String performanceLevel;
18931917

@@ -1909,6 +1933,7 @@ private DataDisk(Builder builder) {
19091933
this.device = builder.device;
19101934
this.diskName = builder.diskName;
19111935
this.encrypted = builder.encrypted;
1936+
this.KMSKeyId = builder.KMSKeyId;
19121937
this.performanceLevel = builder.performanceLevel;
19131938
this.provisionedIops = builder.provisionedIops;
19141939
this.size = builder.size;
@@ -1979,6 +2004,13 @@ public String getEncrypted() {
19792004
return this.encrypted;
19802005
}
19812006

2007+
/**
2008+
* @return KMSKeyId
2009+
*/
2010+
public String getKMSKeyId() {
2011+
return this.KMSKeyId;
2012+
}
2013+
19822014
/**
19832015
* @return performanceLevel
19842016
*/
@@ -2016,6 +2048,7 @@ public static final class Builder {
20162048
private String device;
20172049
private String diskName;
20182050
private String encrypted;
2051+
private String KMSKeyId;
20192052
private String performanceLevel;
20202053
private Long provisionedIops;
20212054
private Integer size;
@@ -2033,6 +2066,7 @@ private Builder(DataDisk model) {
20332066
this.device = model.device;
20342067
this.diskName = model.diskName;
20352068
this.encrypted = model.encrypted;
2069+
this.KMSKeyId = model.KMSKeyId;
20362070
this.performanceLevel = model.performanceLevel;
20372071
this.provisionedIops = model.provisionedIops;
20382072
this.size = model.size;
@@ -2152,6 +2186,14 @@ public Builder encrypted(String encrypted) {
21522186
return this;
21532187
}
21542188

2189+
/**
2190+
* KMSKeyId.
2191+
*/
2192+
public Builder KMSKeyId(String KMSKeyId) {
2193+
this.KMSKeyId = KMSKeyId;
2194+
return this;
2195+
}
2196+
21552197
/**
21562198
* <p>The performance level of the ESSD to use as data disk N. The value of N must be the same as that in <code>DataDisk.N.Category</code> when DataDisk.N.Category is set to cloud_essd. Valid values:</p>
21572199
* <ul>

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

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,6 +42,10 @@ public class CreateStorageSetRequest extends Request {
4242
@com.aliyun.core.annotation.Validation(required = true)
4343
private String regionId;
4444

45+
@com.aliyun.core.annotation.Query
46+
@com.aliyun.core.annotation.NameInMap("ResourceGroupId")
47+
private String resourceGroupId;
48+
4549
@com.aliyun.core.annotation.Query
4650
@com.aliyun.core.annotation.NameInMap("ResourceOwnerAccount")
4751
private String resourceOwnerAccount;
@@ -71,6 +75,7 @@ private CreateStorageSetRequest(Builder builder) {
7175
this.ownerAccount = builder.ownerAccount;
7276
this.ownerId = builder.ownerId;
7377
this.regionId = builder.regionId;
78+
this.resourceGroupId = builder.resourceGroupId;
7479
this.resourceOwnerAccount = builder.resourceOwnerAccount;
7580
this.resourceOwnerId = builder.resourceOwnerId;
7681
this.storageSetName = builder.storageSetName;
@@ -133,6 +138,13 @@ public String getRegionId() {
133138
return this.regionId;
134139
}
135140

141+
/**
142+
* @return resourceGroupId
143+
*/
144+
public String getResourceGroupId() {
145+
return this.resourceGroupId;
146+
}
147+
136148
/**
137149
* @return resourceOwnerAccount
138150
*/
@@ -175,6 +187,7 @@ public static final class Builder extends Request.Builder<CreateStorageSetReques
175187
private String ownerAccount;
176188
private Long ownerId;
177189
private String regionId;
190+
private String resourceGroupId;
178191
private String resourceOwnerAccount;
179192
private Long resourceOwnerId;
180193
private String storageSetName;
@@ -193,6 +206,7 @@ private Builder(CreateStorageSetRequest request) {
193206
this.ownerAccount = request.ownerAccount;
194207
this.ownerId = request.ownerId;
195208
this.regionId = request.regionId;
209+
this.resourceGroupId = request.resourceGroupId;
196210
this.resourceOwnerAccount = request.resourceOwnerAccount;
197211
this.resourceOwnerId = request.resourceOwnerId;
198212
this.storageSetName = request.storageSetName;
@@ -268,6 +282,15 @@ public Builder regionId(String regionId) {
268282
return this;
269283
}
270284

285+
/**
286+
* ResourceGroupId.
287+
*/
288+
public Builder resourceGroupId(String resourceGroupId) {
289+
this.putQueryParameter("ResourceGroupId", resourceGroupId);
290+
this.resourceGroupId = resourceGroupId;
291+
return this;
292+
}
293+
271294
/**
272295
* ResourceOwnerAccount.
273296
*/

0 commit comments

Comments
 (0)