Skip to content

Commit edba770

Browse files
committed
Generated java-async 2020-02-02 for polardbx.
1 parent 52812cc commit edba770

File tree

3 files changed

+28
-3
lines changed

3 files changed

+28
-3
lines changed

polardbx-20200202/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-11-25 Version: 3.0.6
2+
- Generated java-async 2020-02-02 for polardbx.
3+
14
2025-10-14 Version: 3.0.5
25
- Generated java-async 2020-02-02 for polardbx.
36

polardbx-20200202/pom.xml

Lines changed: 2 additions & 3 deletions
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-polardbx20200202</artifactId>
6-
<version>3.0.5</version>
6+
<version>3.0.6</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-polardbx20200202</name>
99
<description>Alibaba Cloud polardbx (20200202) Async SDK for Java
@@ -104,12 +104,11 @@
104104
<plugin>
105105
<groupId>org.sonatype.central</groupId>
106106
<artifactId>central-publishing-maven-plugin</artifactId>
107-
<version>0.8.0</version>
107+
<version>0.9.0</version>
108108
<extensions>true</extensions>
109109
<configuration>
110110
<publishingServerId>central</publishingServerId>
111111
<autoPublish>true</autoPublish>
112-
<waitUntil>published</waitUntil>
113112
</configuration>
114113
</plugin>
115114
</plugins>

polardbx-20200202/src/main/java/com/aliyun/sdk/service/polardbx20200202/models/DescribeComponentPropetiesRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,16 @@ public class DescribeComponentPropetiesRequest extends Request {
3232
@com.aliyun.core.annotation.Validation(required = true)
3333
private String regionId;
3434

35+
@com.aliyun.core.annotation.Query
36+
@com.aliyun.core.annotation.NameInMap("StorageType")
37+
private String storageType;
38+
3539
private DescribeComponentPropetiesRequest(Builder builder) {
3640
super(builder);
3741
this.commodityCode = builder.commodityCode;
3842
this.componentName = builder.componentName;
3943
this.regionId = builder.regionId;
44+
this.storageType = builder.storageType;
4045
}
4146

4247
public static Builder builder() {
@@ -73,10 +78,18 @@ public String getRegionId() {
7378
return this.regionId;
7479
}
7580

81+
/**
82+
* @return storageType
83+
*/
84+
public String getStorageType() {
85+
return this.storageType;
86+
}
87+
7688
public static final class Builder extends Request.Builder<DescribeComponentPropetiesRequest, Builder> {
7789
private String commodityCode;
7890
private String componentName;
7991
private String regionId;
92+
private String storageType;
8093

8194
private Builder() {
8295
super();
@@ -87,6 +100,7 @@ private Builder(DescribeComponentPropetiesRequest request) {
87100
this.commodityCode = request.commodityCode;
88101
this.componentName = request.componentName;
89102
this.regionId = request.regionId;
103+
this.storageType = request.storageType;
90104
}
91105

92106
/**
@@ -125,6 +139,15 @@ public Builder regionId(String regionId) {
125139
return this;
126140
}
127141

142+
/**
143+
* StorageType.
144+
*/
145+
public Builder storageType(String storageType) {
146+
this.putQueryParameter("StorageType", storageType);
147+
this.storageType = storageType;
148+
return this;
149+
}
150+
128151
@Override
129152
public DescribeComponentPropetiesRequest build() {
130153
return new DescribeComponentPropetiesRequest(this);

0 commit comments

Comments
 (0)