Skip to content

Commit 5bcf489

Browse files
committed
Update API DescribeApi: update response param.
1 parent 71f5686 commit 5bcf489

File tree

5 files changed

+40
-1
lines changed

5 files changed

+40
-1
lines changed

cloudapi-20160714/ChangeLog.txt

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,9 @@
1+
2024-05-27 Version: 3.8.1
2+
- Update API DescribeApi: update response param.
3+
- Update API DescribeApiDoc: update response param.
4+
- Update API DescribeApiHistory: update response param.
5+
6+
17
2024-05-22 Version: 3.8.0
28
- Support API DescribeAppSecurities.
39

cloudapi-20160714/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>cloudapi20160714</artifactId>
6-
<version>3.8.0</version>
6+
<version>3.8.1</version>
77
<packaging>jar</packaging>
88
<name>cloudapi20160714</name>
99
<description>Alibaba Cloud CloudAPI (20160714) SDK for Java

cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/DescribeApiDocResponseBody.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -358,6 +358,9 @@ public static class DescribeApiDocResponseBodyRequestConfig extends TeaModel {
358358
@NameInMap("BodyFormat")
359359
public String bodyFormat;
360360

361+
@NameInMap("EscapePathParam")
362+
public Boolean escapePathParam;
363+
361364
/**
362365
* <p>The description of the request body.</p>
363366
*/
@@ -405,6 +408,14 @@ public String getBodyFormat() {
405408
return this.bodyFormat;
406409
}
407410

411+
public DescribeApiDocResponseBodyRequestConfig setEscapePathParam(Boolean escapePathParam) {
412+
this.escapePathParam = escapePathParam;
413+
return this;
414+
}
415+
public Boolean getEscapePathParam() {
416+
return this.escapePathParam;
417+
}
418+
408419
public DescribeApiDocResponseBodyRequestConfig setPostBodyDescription(String postBodyDescription) {
409420
this.postBodyDescription = postBodyDescription;
410421
return this;

cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/DescribeApiHistoryResponseBody.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -916,6 +916,9 @@ public static class DescribeApiHistoryResponseBodyRequestConfig extends TeaModel
916916
@NameInMap("BodyModel")
917917
public String bodyModel;
918918

919+
@NameInMap("EscapePathParam")
920+
public Boolean escapePathParam;
921+
919922
/**
920923
* <p>The description of the request body.</p>
921924
*/
@@ -971,6 +974,14 @@ public String getBodyModel() {
971974
return this.bodyModel;
972975
}
973976

977+
public DescribeApiHistoryResponseBodyRequestConfig setEscapePathParam(Boolean escapePathParam) {
978+
this.escapePathParam = escapePathParam;
979+
return this;
980+
}
981+
public Boolean getEscapePathParam() {
982+
return this.escapePathParam;
983+
}
984+
974985
public DescribeApiHistoryResponseBodyRequestConfig setPostBodyDescription(String postBodyDescription) {
975986
this.postBodyDescription = postBodyDescription;
976987
return this;

cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/DescribeApiResponseBody.java

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1008,6 +1008,9 @@ public static class DescribeApiResponseBodyRequestConfig extends TeaModel {
10081008
@NameInMap("BodyModel")
10091009
public String bodyModel;
10101010

1011+
@NameInMap("EscapePathParam")
1012+
public Boolean escapePathParam;
1013+
10111014
/**
10121015
* <p>The description of the request body.</p>
10131016
*/
@@ -1059,6 +1062,14 @@ public String getBodyModel() {
10591062
return this.bodyModel;
10601063
}
10611064

1065+
public DescribeApiResponseBodyRequestConfig setEscapePathParam(Boolean escapePathParam) {
1066+
this.escapePathParam = escapePathParam;
1067+
return this;
1068+
}
1069+
public Boolean getEscapePathParam() {
1070+
return this.escapePathParam;
1071+
}
1072+
10621073
public DescribeApiResponseBodyRequestConfig setPostBodyDescription(String postBodyDescription) {
10631074
this.postBodyDescription = postBodyDescription;
10641075
return this;

0 commit comments

Comments
 (0)