Skip to content

Commit c20eb77

Browse files
committed
Update API ModifyApiGroup: add param FilterAppCodeForBackend.
1 parent 18214de commit c20eb77

File tree

60 files changed

+575
-236
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+575
-236
lines changed

Diff for: cloudapi-20160714/ChangeLog.txt

+4
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2024-08-27 Version: 3.10.1
2+
- Update API ModifyApiGroup: add param FilterAppCodeForBackend.
3+
4+
15
2024-08-05 Version: 3.10.0
26
- Support API ExportOAS.
37
- Update API DescribeBackendInfo: update param BackendId.

Diff for: cloudapi-20160714/pom.xml

+3-3
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.10.0</version>
6+
<version>3.10.1</version>
77
<packaging>jar</packaging>
88
<name>cloudapi20160714</name>
99
<description>Alibaba Cloud CloudAPI (20160714) SDK for Java
@@ -41,12 +41,12 @@
4141
<dependency>
4242
<groupId>com.aliyun</groupId>
4343
<artifactId>tea-util</artifactId>
44-
<version>0.2.22</version>
44+
<version>0.2.23</version>
4545
</dependency>
4646
<dependency>
4747
<groupId>com.aliyun</groupId>
4848
<artifactId>tea-openapi</artifactId>
49-
<version>0.3.4</version>
49+
<version>0.3.5</version>
5050
</dependency>
5151
<dependency>
5252
<groupId>com.aliyun</groupId>

Diff for: cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/Client.java

+58-66
Large diffs are not rendered by default.

Diff for: cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/CreateAccessControlListRequest.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,10 @@ public class CreateAccessControlListRequest extends TeaModel {
1515
public String aclName;
1616

1717
/**
18-
* <p>The IP version of the Classic Load Balancer (CLB) instance with which the ACL is associated. Valid values:</p>
18+
* <p>The IP protocol version of the ACL. Valid values:</p>
1919
* <ul>
20-
* <li><strong>ipv4</strong></li>
21-
* <li><strong>ipv6</strong></li>
20+
* <li><strong>IPv4</strong></li>
21+
* <li><strong>IPv6</strong></li>
2222
* </ul>
2323
*
2424
* <strong>example:</strong>

Diff for: cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/CreateAccessControlListResponseBody.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
public class CreateAccessControlListResponseBody extends TeaModel {
77
/**
8-
* <p>The ID of the access control policy.</p>
8+
* <p>The ACL ID.</p>
99
*
1010
* <strong>example:</strong>
1111
* <p>acl-bp1uqwgwmkbutnzq2r59z</p>

Diff for: cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/CreateApiStageVariableRequest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ public class CreateApiStageVariableRequest extends TeaModel {
2828
public String stageId;
2929

3030
/**
31-
* <p>Environmental routing model.</p>
31+
* <p>The routing model of the environment.</p>
3232
*
3333
* <strong>example:</strong>
3434
* <p>{

Diff for: cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/CreateAppCodeRequest.java

+3
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,16 @@
55

66
public class CreateAppCodeRequest extends TeaModel {
77
/**
8+
* <p>The application AppCode.</p>
9+
*
810
* <strong>example:</strong>
911
* <p>3aaf905a0a1f4f0eabc6d891dfa08afc</p>
1012
*/
1113
@NameInMap("AppCode")
1214
public String appCode;
1315

1416
/**
17+
* <p>The application ID.</p>
1518
* <p>This parameter is required.</p>
1619
*
1720
* <strong>example:</strong>

Diff for: cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/CreateAppCodeResponseBody.java

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
public class CreateAppCodeResponseBody extends TeaModel {
77
/**
8+
* <p>The request ID.</p>
9+
*
810
* <strong>example:</strong>
911
* <p>418DAAE7-A0C2-5E9C-ADFF-4CD14A474F88</p>
1012
*/

Diff for: cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/CreateAppKeyRequest.java

+5
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
public class CreateAppKeyRequest extends TeaModel {
77
/**
8+
* <p>The application ID.</p>
89
* <p>This parameter is required.</p>
910
*
1011
* <strong>example:</strong>
@@ -14,13 +15,17 @@ public class CreateAppKeyRequest extends TeaModel {
1415
public String appId;
1516

1617
/**
18+
* <p>The application AppKey.</p>
19+
*
1720
* <strong>example:</strong>
1821
* <p>204203237</p>
1922
*/
2023
@NameInMap("AppKey")
2124
public String appKey;
2225

2326
/**
27+
* <p>The application AppSecret.</p>
28+
*
2429
* <strong>example:</strong>
2530
* <p>6f0a4ad7918a4b41a57fc087d5b066d0</p>
2631
*/

Diff for: cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/CreateAppKeyResponseBody.java

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
public class CreateAppKeyResponseBody extends TeaModel {
77
/**
8+
* <p>The request ID.</p>
9+
*
810
* <strong>example:</strong>
911
* <p>5D524309-6BED-5BB4-A735-F7D9F98B7B88</p>
1012
*/

Diff for: cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/CreateInstanceRequest.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -32,11 +32,11 @@ public class CreateInstanceRequest extends TeaModel {
3232
/**
3333
* <p>The subscription duration of the instance.</p>
3434
* <ul>
35-
* <li>Valid values if PricingCycle is set to <strong>Month</strong>: <strong>1</strong> to <strong>9</strong></li>
36-
* <li>Valid values if PricingCycle is set to <strong>Year</strong>: <strong>1</strong> to <strong>3</strong></li>
35+
* <li>If PricingCycle is set to <strong>Month</strong>, set this parameter to an integer ranges from <strong>1</strong> to <strong>9</strong>.</li>
36+
* <li>If PricingCycle is set to <strong>Year</strong>, set this parameter to an integer ranges from <strong>1</strong> to <strong>3</strong>.</li>
3737
* </ul>
3838
* <blockquote>
39-
* <p> This parameter is available and required only if the ChargeType parameter is set to <strong>PrePaid</strong>.</p>
39+
* <p> This parameter is valid and required only if the ChargeType parameter is set to <strong>PrePaid</strong>.</p>
4040
* </blockquote>
4141
*
4242
* <strong>example:</strong>
@@ -115,7 +115,7 @@ public class CreateInstanceRequest extends TeaModel {
115115
* <li><strong>month</strong></li>
116116
* </ul>
117117
* <blockquote>
118-
* <p> This parameter is available and required only if the ChargeType parameter is set to PrePaid.</p>
118+
* <p> This parameter is required if the ChargeType parameter is set to Prepaid.</p>
119119
* </blockquote>
120120
*
121121
* <strong>example:</strong>

Diff for: cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/DeleteApiStageVariableRequest.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ public class DeleteApiStageVariableRequest extends TeaModel {
1818
public String securityToken;
1919

2020
/**
21-
* <p>The ID of the runtime environment.</p>
21+
* <p>The ID of the environment.</p>
2222
* <p>This parameter is required.</p>
2323
*
2424
* <strong>example:</strong>

Diff for: cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/DeleteAppCodeRequest.java

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
public class DeleteAppCodeRequest extends TeaModel {
77
/**
8+
* <p>The application AppCode.</p>
89
* <p>This parameter is required.</p>
910
*
1011
* <strong>example:</strong>
@@ -14,6 +15,7 @@ public class DeleteAppCodeRequest extends TeaModel {
1415
public String appCode;
1516

1617
/**
18+
* <p>The application ID.</p>
1719
* <p>This parameter is required.</p>
1820
*
1921
* <strong>example:</strong>

Diff for: cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/DeleteAppCodeResponseBody.java

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
public class DeleteAppCodeResponseBody extends TeaModel {
77
/**
8+
* <p>The request ID.</p>
9+
*
810
* <strong>example:</strong>
911
* <p>E8515BA6-81CD-4191-A7CF-C4FCDD3C0D99</p>
1012
*/

Diff for: cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/DeleteAppKeyRequest.java

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55

66
public class DeleteAppKeyRequest extends TeaModel {
77
/**
8+
* <p>The application ID.</p>
89
* <p>This parameter is required.</p>
910
*
1011
* <strong>example:</strong>
@@ -14,6 +15,7 @@ public class DeleteAppKeyRequest extends TeaModel {
1415
public String appId;
1516

1617
/**
18+
* <p>The AppKey of the application. The AppKey is used for calling an API.</p>
1719
* <p>This parameter is required.</p>
1820
*
1921
* <strong>example:</strong>

Diff for: cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/DeleteAppKeyResponseBody.java

+2
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55

66
public class DeleteAppKeyResponseBody extends TeaModel {
77
/**
8+
* <p>The request ID.</p>
9+
*
810
* <strong>example:</strong>
911
* <p>79EF055D-AC00-5161-8F35-6A36AAED7422</p>
1012
*/

Diff for: cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/DeleteBackendModelRequest.java

+1-2
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,12 @@ public class DeleteBackendModelRequest extends TeaModel {
2727
public String securityToken;
2828

2929
/**
30-
* <p>The environment to which the API is published. Valid values:</p>
30+
* <p>The name of the runtime environment. Valid values:</p>
3131
* <ul>
3232
* <li><strong>RELEASE</strong></li>
3333
* <li><strong>PRE</strong></li>
3434
* <li><strong>TEST</strong></li>
3535
* </ul>
36-
* <p>If you do not specify this parameter, APIs in the draft state are returned.</p>
3736
*
3837
* <strong>example:</strong>
3938
* <p>TEST</p>

Diff for: cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/DeleteDomainResponseBody.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
public class DeleteDomainResponseBody extends TeaModel {
77
/**
8-
* <p>The ID of the request.</p>
8+
* <p>The request ID.</p>
99
*
1010
* <strong>example:</strong>
1111
* <p>6EF60BEC-0242-43AF-BB20-270359FB54A7</p>

Diff for: cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/DeleteModelResponseBody.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
public class DeleteModelResponseBody extends TeaModel {
77
/**
8-
* <p>The ID of the request.</p>
8+
* <p>The request ID.</p>
99
*
1010
* <strong>example:</strong>
1111
* <p>4173F95B-360C-460C-9F6C-4A960B904411</p>

Diff for: cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/DescribeAccessControlListAttributeResponseBody.java

+3-3
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ public class DescribeAccessControlListAttributeResponseBody extends TeaModel {
2929
public String aclName;
3030

3131
/**
32-
* <p>The IP version. Valid values: <strong>ipv4</strong> and <strong>ipv6</strong>.</p>
32+
* <p>The IP protocol version. Valid values: <strong>ipv4</strong> and <strong>ipv6</strong>.</p>
3333
*
3434
* <strong>example:</strong>
3535
* <p>ipv4</p>
@@ -93,7 +93,7 @@ public String getRequestId() {
9393

9494
public static class DescribeAccessControlListAttributeResponseBodyAclEntrysAclEntry extends TeaModel {
9595
/**
96-
* <p>The description of an entry.</p>
96+
* <p>The entry description.</p>
9797
*
9898
* <strong>example:</strong>
9999
* <p>default</p>
@@ -102,7 +102,7 @@ public static class DescribeAccessControlListAttributeResponseBodyAclEntrysAclEn
102102
public String aclEntryComment;
103103

104104
/**
105-
* <p>The entries of the access control policy.</p>
105+
* <p>The ACL entry.</p>
106106
*
107107
* <strong>example:</strong>
108108
* <p>192.168.1.0/24</p>

Diff for: cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/DescribeApiDocRequest.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -27,12 +27,12 @@ public class DescribeApiDocRequest extends TeaModel {
2727
public String securityToken;
2828

2929
/**
30-
* <p>The environment to which the API is published. Valid values:</p>
30+
* <p>The environment name. Valid values:</p>
3131
* <ul>
3232
* <li><strong>RELEASE</strong></li>
3333
* <li><strong>TEST</strong></li>
3434
* </ul>
35-
* <p>If this parameter is not specified, the default value is used, which is RELEASE.</p>
35+
* <p>If this parameter is not specified, the default value RELEASE is used.</p>
3636
*
3737
* <strong>example:</strong>
3838
* <p>RELEASE</p>

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

+5-5
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ public class DescribeApiDocResponseBody extends TeaModel {
116116
public String regionId;
117117

118118
/**
119-
* <p>The returned API frontend definition information. It is an array consisting of RequestConfig data.</p>
119+
* <p>The returned API frontend definition. It is an array consisting of RequestConfig data.</p>
120120
*/
121121
@NameInMap("RequestConfig")
122122
public DescribeApiDocResponseBodyRequestConfig requestConfig;
@@ -344,7 +344,7 @@ public static class DescribeApiDocResponseBodyErrorCodeSamplesErrorCodeSample ex
344344
public String code;
345345

346346
/**
347-
* <p>The description of the error code.</p>
347+
* <p>The error description.</p>
348348
*
349349
* <strong>example:</strong>
350350
* <p>Unauthorized</p>
@@ -576,7 +576,7 @@ public static class DescribeApiDocResponseBodyRequestParametersRequestParameter
576576
public String demoValue;
577577

578578
/**
579-
* <p>The description.</p>
579+
* <p>The parameter description.</p>
580580
*
581581
* <strong>example:</strong>
582582
* <p>Parameters</p>
@@ -603,7 +603,7 @@ public static class DescribeApiDocResponseBodyRequestParametersRequestParameter
603603
public String docShow;
604604

605605
/**
606-
* <p>The hash values that can be specified if the <strong>ParameterType</strong> parameter is set to Int, Long, Float, Double, or String. Separate multiple hash values with commas (,). Examples: 1,2,3,4,9 and A,B,C,E,F.</p>
606+
* <p>The hash values that are supported when <strong>ParameterType</strong> is set to Int, Long, Float, Double, or String. Separate values with commas (,). Examples: 1,2,3,4,9 and A,B,C,E,F.</p>
607607
*
608608
* <strong>example:</strong>
609609
* <p>boy,girl</p>
@@ -675,7 +675,7 @@ public static class DescribeApiDocResponseBodyRequestParametersRequestParameter
675675
public String parameterType;
676676

677677
/**
678-
* <p>The regular expression that is used to validate the parameter if the <strong>ParameterType</strong> parameter is set to String.</p>
678+
* <p>The regular expression that is used for parameter validation when <strong>ParameterType</strong> is set to String.</p>
679679
*
680680
* <strong>example:</strong>
681681
* <p>xxx</p>

Diff for: cloudapi-20160714/src/main/java/com/aliyun/cloudapi20160714/models/DescribeApiGroupResponseBody.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -596,7 +596,7 @@ public String getVpcSlbIntranetDomain() {
596596

597597
public static class DescribeApiGroupResponseBodyCustomDomainsDomainItem extends TeaModel {
598598
/**
599-
* <p>Bind runtime environment alias</p>
599+
* <p>The alias of the associated environment.</p>
600600
*
601601
* <strong>example:</strong>
602602
* <p>TEST1</p>

0 commit comments

Comments
 (0)