Skip to content

Commit a36b88c

Browse files
committed
Generated java-async 2014-05-26 for Ecs.
1 parent c72caf7 commit a36b88c

File tree

7 files changed

+119
-1
lines changed

7 files changed

+119
-1
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-06-13 Version: 8.0.10
2+
- Generated java-async 2014-05-26 for Ecs.
3+
14
2025-06-12 Version: 8.0.9
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.0modelVersion>
44
<groupId>com.aliyungroupId>
55
<artifactId>alibabacloud-ecs20140526artifactId>
6-
<version>8.0.9version>
6+
<version>8.0.10version>
77
<packaging>jarpackaging>
88
<name>alibabacloud-ecs20140526name>
99
<description>Alibaba Cloud Ecs (20140526) Async SDK for Java

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

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
*

DescribeDiskDefaultKMSKeyIdRequest

1818
*/
1919
public class DescribeDiskDefaultKMSKeyIdRequest extends Request {
20+
@com.aliyun.core.annotation.Query
21+
@com.aliyun.core.annotation.NameInMap("OwnerId")
22+
private Long ownerId;
23+
2024
@com.aliyun.core.annotation.Query
2125
@com.aliyun.core.annotation.NameInMap("RegionId")
2226
@com.aliyun.core.annotation.Validation(required = true)
@@ -28,6 +32,7 @@ public class DescribeDiskDefaultKMSKeyIdRequest extends Request {
2832

2933
private DescribeDiskDefaultKMSKeyIdRequest(Builder builder) {
3034
super(builder);
35+
this.ownerId = builder.ownerId;
3136
this.regionId = builder.regionId;
3237
this.resourceOwnerId = builder.resourceOwnerId;
3338
}
@@ -45,6 +50,13 @@ public Builder toBuilder() {
4550
return new Builder(this);
4651
}
4752

53+
/**
54+
* @return ownerId
55+
*/
56+
public Long getOwnerId() {
57+
return this.ownerId;
58+
}
59+
4860
/**
4961
* @return regionId
5062
*/
@@ -60,6 +72,7 @@ public Long getResourceOwnerId() {
6072
}
6173

6274
public static final class Builder extends Request.Builder<DescribeDiskDefaultKMSKeyIdRequest, Builder> {
75+
private Long ownerId;
6376
private String regionId;
6477
private Long resourceOwnerId;
6578

@@ -69,10 +82,20 @@ private Builder() {
6982

7083
private Builder(DescribeDiskDefaultKMSKeyIdRequest request) {
7184
super(request);
85+
this.ownerId = request.ownerId;
7286
this.regionId = request.regionId;
7387
this.resourceOwnerId = request.resourceOwnerId;
7488
}
7589

90+
/**
91+
* OwnerId.
92+
*/
93+
public Builder ownerId(Long ownerId) {
94+
this.putQueryParameter("OwnerId", ownerId);
95+
this.ownerId = ownerId;
96+
return this;
97+
}
98+
7699
/**
77100
*

The ID of the region. You can call the DescribeRegions operation to query the most recent region list.

78101
*

This parameter is required.

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

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
*

DescribeDiskEncryptionByDefaultStatusRequest

1818
*/
1919
public class DescribeDiskEncryptionByDefaultStatusRequest extends Request {
20+
@com.aliyun.core.annotation.Query
21+
@com.aliyun.core.annotation.NameInMap("OwnerId")
22+
private Long ownerId;
23+
2024
@com.aliyun.core.annotation.Query
2125
@com.aliyun.core.annotation.NameInMap("RegionId")
2226
@com.aliyun.core.annotation.Validation(required = true)
@@ -28,6 +32,7 @@ public class DescribeDiskEncryptionByDefaultStatusRequest extends Request {
2832

2933
private DescribeDiskEncryptionByDefaultStatusRequest(Builder builder) {
3034
super(builder);
35+
this.ownerId = builder.ownerId;
3136
this.regionId = builder.regionId;
3237
this.resourceOwnerId = builder.resourceOwnerId;
3338
}
@@ -45,6 +50,13 @@ public Builder toBuilder() {
4550
return new Builder(this);
4651
}
4752

53+
/**
54+
* @return ownerId
55+
*/
56+
public Long getOwnerId() {
57+
return this.ownerId;
58+
}
59+
4860
/**
4961
* @return regionId
5062
*/
@@ -60,6 +72,7 @@ public Long getResourceOwnerId() {
6072
}
6173

6274
public static final class Builder extends Request.Builder<DescribeDiskEncryptionByDefaultStatusRequest, Builder> {
75+
private Long ownerId;
6376
private String regionId;
6477
private Long resourceOwnerId;
6578

@@ -69,10 +82,20 @@ private Builder() {
6982

7083
private Builder(DescribeDiskEncryptionByDefaultStatusRequest request) {
7184
super(request);
85+
this.ownerId = request.ownerId;
7286
this.regionId = request.regionId;
7387
this.resourceOwnerId = request.resourceOwnerId;
7488
}
7589

90+
/**
91+
* OwnerId.
92+
*/
93+
public Builder ownerId(Long ownerId) {
94+
this.putQueryParameter("OwnerId", ownerId);
95+
this.ownerId = ownerId;
96+
return this;
97+
}
98+
7699
/**
77100
*

The region ID. You can call the DescribeRegions operation to query the most recent region list.

78101
*

This parameter is required.

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

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
*

DisableDiskEncryptionByDefaultRequest

1818
*/
1919
public class DisableDiskEncryptionByDefaultRequest extends Request {
20+
@com.aliyun.core.annotation.Query
21+
@com.aliyun.core.annotation.NameInMap("OwnerId")
22+
private Long ownerId;
23+
2024
@com.aliyun.core.annotation.Query
2125
@com.aliyun.core.annotation.NameInMap("RegionId")
2226
@com.aliyun.core.annotation.Validation(required = true)
@@ -28,6 +32,7 @@ public class DisableDiskEncryptionByDefaultRequest extends Request {
2832

2933
private DisableDiskEncryptionByDefaultRequest(Builder builder) {
3034
super(builder);
35+
this.ownerId = builder.ownerId;
3136
this.regionId = builder.regionId;
3237
this.resourceOwnerId = builder.resourceOwnerId;
3338
}
@@ -45,6 +50,13 @@ public Builder toBuilder() {
4550
return new Builder(this);
4651
}
4752

53+
/**
54+
* @return ownerId
55+
*/
56+
public Long getOwnerId() {
57+
return this.ownerId;
58+
}
59+
4860
/**
4961
* @return regionId
5062
*/
@@ -60,6 +72,7 @@ public Long getResourceOwnerId() {
6072
}
6173

6274
public static final class Builder extends Request.Builder<DisableDiskEncryptionByDefaultRequest, Builder> {
75+
private Long ownerId;
6376
private String regionId;
6477
private Long resourceOwnerId;
6578

@@ -69,10 +82,20 @@ private Builder() {
6982

7083
private Builder(DisableDiskEncryptionByDefaultRequest request) {
7184
super(request);
85+
this.ownerId = request.ownerId;
7286
this.regionId = request.regionId;
7387
this.resourceOwnerId = request.resourceOwnerId;
7488
}
7589

90+
/**
91+
* OwnerId.
92+
*/
93+
public Builder ownerId(Long ownerId) {
94+
this.putQueryParameter("OwnerId", ownerId);
95+
this.ownerId = ownerId;
96+
return this;
97+
}
98+
7699
/**
77100
*

The ID of the region for which you want to disable Account-level EBS Default Encryption. You can call the DescribeRegions operation to query the most recent region list.

78101
*

This parameter is required.

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

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,10 @@ public class ModifyDiskDefaultKMSKeyIdRequest extends Request {
2222
@com.aliyun.core.annotation.Validation(required = true)
2323
private String KMSKeyId;
2424

25+
@com.aliyun.core.annotation.Query
26+
@com.aliyun.core.annotation.NameInMap("OwnerId")
27+
private Long ownerId;
28+
2529
@com.aliyun.core.annotation.Query
2630
@com.aliyun.core.annotation.NameInMap("RegionId")
2731
@com.aliyun.core.annotation.Validation(required = true)
@@ -34,6 +38,7 @@ public class ModifyDiskDefaultKMSKeyIdRequest extends Request {
3438
private ModifyDiskDefaultKMSKeyIdRequest(Builder builder) {
3539
super(builder);
3640
this.KMSKeyId = builder.KMSKeyId;
41+
this.ownerId = builder.ownerId;
3742
this.regionId = builder.regionId;
3843
this.resourceOwnerId = builder.resourceOwnerId;
3944
}
@@ -58,6 +63,13 @@ public String getKMSKeyId() {
5863
return this.KMSKeyId;
5964
}
6065

66+
/**
67+
* @return ownerId
68+
*/
69+
public Long getOwnerId() {
70+
return this.ownerId;
71+
}
72+
6173
/**
6274
* @return regionId
6375
*/
@@ -74,6 +86,7 @@ public Long getResourceOwnerId() {
7486

7587
public static final class Builder extends Request.Builder<ModifyDiskDefaultKMSKeyIdRequest, Builder> {
7688
private String KMSKeyId;
89+
private Long ownerId;
7790
private String regionId;
7891
private Long resourceOwnerId;
7992

@@ -84,6 +97,7 @@ private Builder() {
8497
private Builder(ModifyDiskDefaultKMSKeyIdRequest request) {
8598
super(request);
8699
this.KMSKeyId = request.KMSKeyId;
100+
this.ownerId = request.ownerId;
87101
this.regionId = request.regionId;
88102
this.resourceOwnerId = request.resourceOwnerId;
89103
}
@@ -101,6 +115,15 @@ public Builder KMSKeyId(String KMSKeyId) {
101115
return this;
102116
}
103117

118+
/**
119+
* OwnerId.
120+
*/
121+
public Builder ownerId(Long ownerId) {
122+
this.putQueryParameter("OwnerId", ownerId);
123+
this.ownerId = ownerId;
124+
return this;
125+
}
126+
104127
/**
105128
*

The region ID. You can call the DescribeRegions operation to query the most recent region list.

106129
*

This parameter is required.

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

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,10 @@
1717
*

ResetDiskDefaultKMSKeyIdRequest

1818
*/
1919
public class ResetDiskDefaultKMSKeyIdRequest extends Request {
20+
@com.aliyun.core.annotation.Query
21+
@com.aliyun.core.annotation.NameInMap("OwnerId")
22+
private Long ownerId;
23+
2024
@com.aliyun.core.annotation.Query
2125
@com.aliyun.core.annotation.NameInMap("RegionId")
2226
@com.aliyun.core.annotation.Validation(required = true)
@@ -28,6 +32,7 @@ public class ResetDiskDefaultKMSKeyIdRequest extends Request {
2832

2933
private ResetDiskDefaultKMSKeyIdRequest(Builder builder) {
3034
super(builder);
35+
this.ownerId = builder.ownerId;
3136
this.regionId = builder.regionId;
3237
this.resourceOwnerId = builder.resourceOwnerId;
3338
}
@@ -45,6 +50,13 @@ public Builder toBuilder() {
4550
return new Builder(this);
4651
}
4752

53+
/**
54+
* @return ownerId
55+
*/
56+
public Long getOwnerId() {
57+
return this.ownerId;
58+
}
59+
4860
/**
4961
* @return regionId
5062
*/
@@ -60,6 +72,7 @@ public Long getResourceOwnerId() {
6072
}
6173

6274
public static final class Builder extends Request.Builder<ResetDiskDefaultKMSKeyIdRequest, Builder> {
75+
private Long ownerId;
6376
private String regionId;
6477
private Long resourceOwnerId;
6578

@@ -69,10 +82,20 @@ private Builder() {
6982

7083
private Builder(ResetDiskDefaultKMSKeyIdRequest request) {
7184
super(request);
85+
this.ownerId = request.ownerId;
7286
this.regionId = request.regionId;
7387
this.resourceOwnerId = request.resourceOwnerId;
7488
}
7589

90+
/**
91+
* OwnerId.
92+
*/
93+
public Builder ownerId(Long ownerId) {
94+
this.putQueryParameter("OwnerId", ownerId);
95+
this.ownerId = ownerId;
96+
return this;
97+
}
98+
7699
/**
77100
*

The ID of the region for which you want to disable Account-level EBS Default Encryption. You can call the DescribeRegions operation to query the most recent region list.

78101
*

This parameter is required.

0 commit comments

Comments
 (0)