Skip to content

Commit 3c0254e

Browse files
committed
Update API DescribeInstance: add response parameters Body.ProcessStatus.
1 parent c55dddc commit 3c0254e

File tree

3 files changed

+16
-1
lines changed

3 files changed

+16
-1
lines changed

waf-openapi-20211001/ChangeLog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2025-12-05 Version: 6.0.3
2+
- Update API DescribeInstance: add response parameters Body.ProcessStatus.
3+
4+
15
2025-11-25 Version: 6.0.2
26
- Update API CreateCloudResource: add request parameters Redirect.MaxBodySize.
37
- Update API CreateDomain: add request parameters Redirect.MaxBodySize.

waf-openapi-20211001/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>waf_openapi20211001</artifactId>
6-
<version>6.0.2</version>
6+
<version>6.0.3</version>
77
<packaging>jar</packaging>
88
<name>waf_openapi20211001</name>
99
<description>Alibaba Cloud waf-openapi (20211001) SDK for Java

waf-openapi-20211001/src/main/java/com/aliyun/waf_openapi20211001/models/DescribeInstanceResponseBody.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -63,6 +63,9 @@ public class DescribeInstanceResponseBody extends TeaModel {
6363
@NameInMap("PayType")
6464
public String payType;
6565

66+
@NameInMap("ProcessStatus")
67+
public String processStatus;
68+
6669
/**
6770
* <p>The region where the WAF instance resides. Valid values:</p>
6871
* <ul>
@@ -161,6 +164,14 @@ public String getPayType() {
161164
return this.payType;
162165
}
163166

167+
public DescribeInstanceResponseBody setProcessStatus(String processStatus) {
168+
this.processStatus = processStatus;
169+
return this;
170+
}
171+
public String getProcessStatus() {
172+
return this.processStatus;
173+
}
174+
164175
public DescribeInstanceResponseBody setRegionId(String regionId) {
165176
this.regionId = regionId;
166177
return this;

0 commit comments

Comments
 (0)