Skip to content

Commit bfe279e

Browse files
committed
Generated java 2016-07-14 for CloudAPI.
1 parent c788c14 commit bfe279e

File tree

6 files changed

+84
-23
lines changed

6 files changed

+84
-23
lines changed

cloudapi-20160714/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2023-12-28 Version: 3.4.1
2+
- Generated java 2016-07-14 for CloudAPI.
3+
14
2023-12-15 Version: 3.4.0
25
- Generated java 2016-07-14 for CloudAPI.
36

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.4.0</version>
6+
<version>3.4.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/Client.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5624,9 +5624,9 @@ public DescribeIpControlPolicyItemsResponse describeIpControlPolicyItems(Describ
56245624

56255625
/**
56265626
* * This operation is intended for API providers.
5627-
* * This operation is used to query the ACLs in a Region. Region is a system parameter.
5627+
* * This operation is used to query the ACLs in a region. Region is a system parameter.
56285628
* * You can filter the query results by ACL ID, name, or type.
5629-
* * This operation cannot be used to query specific policies. If you want to query specific policies, use the DescribeIpControlPolicyItems operation.
5629+
* * This operation cannot be used to query specific policies. If you want to query specific policies, call the [DescribeIpControlPolicyItems](~~DescribeIpControlPolicyItems~~) operation.
56305630
*
56315631
* @param request DescribeIpControlsRequest
56325632
* @param runtime runtime options for this request RuntimeOptions
@@ -5678,9 +5678,9 @@ public DescribeIpControlsResponse describeIpControlsWithOptions(DescribeIpContro
56785678

56795679
/**
56805680
* * This operation is intended for API providers.
5681-
* * This operation is used to query the ACLs in a Region. Region is a system parameter.
5681+
* * This operation is used to query the ACLs in a region. Region is a system parameter.
56825682
* * You can filter the query results by ACL ID, name, or type.
5683-
* * This operation cannot be used to query specific policies. If you want to query specific policies, use the DescribeIpControlPolicyItems operation.
5683+
* * This operation cannot be used to query specific policies. If you want to query specific policies, call the [DescribeIpControlPolicyItems](~~DescribeIpControlPolicyItems~~) operation.
56845684
*
56855685
* @param request DescribeIpControlsRequest
56865686
* @return DescribeIpControlsResponse

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

Lines changed: 52 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -185,6 +185,47 @@ public String getUserName() {
185185

186186
}
187187

188+
public static class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfigZookeeperConfig extends TeaModel {
189+
@NameInMap("ConnectString")
190+
public String connectString;
191+
192+
@NameInMap("Namespace")
193+
public String namespace;
194+
195+
@NameInMap("ServiceName")
196+
public String serviceName;
197+
198+
public static DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfigZookeeperConfig build(java.util.Map<String, ?> map) throws Exception {
199+
DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfigZookeeperConfig self = new DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfigZookeeperConfig();
200+
return TeaModel.build(map, self);
201+
}
202+
203+
public DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfigZookeeperConfig setConnectString(String connectString) {
204+
this.connectString = connectString;
205+
return this;
206+
}
207+
public String getConnectString() {
208+
return this.connectString;
209+
}
210+
211+
public DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfigZookeeperConfig setNamespace(String namespace) {
212+
this.namespace = namespace;
213+
return this;
214+
}
215+
public String getNamespace() {
216+
return this.namespace;
217+
}
218+
219+
public DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfigZookeeperConfig setServiceName(String serviceName) {
220+
this.serviceName = serviceName;
221+
return this;
222+
}
223+
public String getServiceName() {
224+
return this.serviceName;
225+
}
226+
227+
}
228+
188229
public static class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfig extends TeaModel {
189230
/**
190231
* <p>The Nacos configurations.</p>
@@ -198,6 +239,9 @@ public static class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBacke
198239
@NameInMap("RcType")
199240
public String rcType;
200241

242+
@NameInMap("ZookeeperConfig")
243+
public DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfigZookeeperConfig zookeeperConfig;
244+
201245
public static DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfig build(java.util.Map<String, ?> map) throws Exception {
202246
DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfig self = new DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfig();
203247
return TeaModel.build(map, self);
@@ -219,6 +263,14 @@ public String getRcType() {
219263
return this.rcType;
220264
}
221265

266+
public DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfig setZookeeperConfig(DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfigZookeeperConfig zookeeperConfig) {
267+
this.zookeeperConfig = zookeeperConfig;
268+
return this;
269+
}
270+
public DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigDiscoveryConfigZookeeperConfig getZookeeperConfig() {
271+
return this.zookeeperConfig;
272+
}
273+
222274
}
223275

224276
public static class DescribeBackendInfoResponseBodyBackendInfoBackendModelsBackendConfigEdasConfig extends TeaModel {

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

Lines changed: 12 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,35 @@
44
import com.aliyun.tea.*;
55

66
public class DescribeIpControlsRequest extends TeaModel {
7+
/**
8+
* <p>The ID of the ACL. The ID is unique.</p>
9+
*/
710
@NameInMap("IpControlId")
811
public String ipControlId;
912

13+
/**
14+
* <p>The name of the ACL.</p>
15+
*/
1016
@NameInMap("IpControlName")
1117
public String ipControlName;
1218

1319
/**
14-
* <p>The name of the ACL.</p>
20+
* <p>The type of the ACL. Valid values:</p>
21+
* <br>
22+
* <p>* **ALLOW**: a whitelist</p>
23+
* <p>* **REFUSE**: a blacklist</p>
1524
*/
1625
@NameInMap("IpControlType")
1726
public String ipControlType;
1827

1928
/**
20-
* <p>ACLtest</p>
29+
* <p>The number of the page to return. Pages start from page 1. Default value: 1.</p>
2130
*/
2231
@NameInMap("PageNumber")
2332
public Integer pageNumber;
2433

2534
/**
26-
* <p>The type of the ACL. Valid values:</p>
27-
* <br>
28-
* <p>* **ALLOW**: an IP address whitelist</p>
29-
* <p>* **REFUSE**: an IP address blacklist</p>
35+
* <p>The number of entries to return on each page. Maximum value: 100. Default value: 10.</p>
3036
*/
3137
@NameInMap("PageSize")
3238
public Integer pageSize;

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

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -5,31 +5,31 @@
55

66
public class DescribeIpControlsResponseBody extends TeaModel {
77
/**
8-
* <p>The number of entries returned per page.</p>
8+
* <p>The information about the ACL. The information is an array that consists of IpControlInfo data. The information does not include specific policies.</p>
99
*/
1010
@NameInMap("IpControlInfos")
1111
public DescribeIpControlsResponseBodyIpControlInfos ipControlInfos;
1212

1313
/**
14-
* <p>The number of the page to return. Pages start from page 1. Default value: 1.</p>
14+
* <p>The page number of the returned page.</p>
1515
*/
1616
@NameInMap("PageNumber")
1717
public Integer pageNumber;
1818

1919
/**
20-
* <p>The page number of the returned page.</p>
20+
* <p>The number of entries returned per page.</p>
2121
*/
2222
@NameInMap("PageSize")
2323
public Integer pageSize;
2424

2525
/**
26-
* <p>The number of entries to return on each page. Maximum value: 100. Default value: 10.</p>
26+
* <p>The ID of the request.</p>
2727
*/
2828
@NameInMap("RequestId")
2929
public String requestId;
3030

3131
/**
32-
* <p>The ID of the request.</p>
32+
* <p>The total number of returned entries.</p>
3333
*/
3434
@NameInMap("TotalCount")
3535
public Integer totalCount;
@@ -81,43 +81,43 @@ public Integer getTotalCount() {
8181

8282
public static class DescribeIpControlsResponseBodyIpControlInfosIpControlInfo extends TeaModel {
8383
/**
84-
* <p>The name of the ACL.</p>
84+
* <p>The time when the ACL was created. The time is displayed in UTC.</p>
8585
*/
8686
@NameInMap("CreateTime")
8787
public String createTime;
8888

8989
/**
90-
* <p>The time when the ACL was modified. The time is displayed in UTC.</p>
90+
* <p>The description of the ACL.</p>
9191
*/
9292
@NameInMap("Description")
9393
public String description;
9494

9595
/**
96-
* <p>The total number of returned entries.</p>
96+
* <p>The ID of the ACL.</p>
9797
*/
9898
@NameInMap("IpControlId")
9999
public String ipControlId;
100100

101101
/**
102-
* <p>The type of the ACL.</p>
102+
* <p>The name of the ACL.</p>
103103
*/
104104
@NameInMap("IpControlName")
105105
public String ipControlName;
106106

107107
/**
108-
* <p>The information about the ACL. The information is an array of IpControlInfo data. The information does not include specific policies.</p>
108+
* <p>The type of the ACL.</p>
109109
*/
110110
@NameInMap("IpControlType")
111111
public String ipControlType;
112112

113113
/**
114-
* <p>The ID of the ACL.</p>
114+
* <p>The time when the ACL was modified. The time is displayed in UTC.</p>
115115
*/
116116
@NameInMap("ModifiedTime")
117117
public String modifiedTime;
118118

119119
/**
120-
* <p>The description of the ACL.</p>
120+
* <p>The ID of the region in which the ACL is deployed.</p>
121121
*/
122122
@NameInMap("RegionId")
123123
public String regionId;

0 commit comments

Comments
 (0)