Skip to content

Commit 5ab7f2f

Browse files
committed
Update API ListResourceGroupCapability: add response parameters Body.Capabilities.$.ResourceCenterResourceType.
1 parent 93c4d3d commit 5ab7f2f

34 files changed

+414
-1032
lines changed

resourcemanager-20200331/ChangeLog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2026-02-27 Version: 2.6.1
2+
- Update API ListResourceGroupCapability: add response parameters Body.Capabilities.$.ResourceCenterResourceType.
3+
4+
15
2025-12-15 Version: 2.6.0
26
- Support API ListResourceGroupCapability.
37
- Support API LookupResourceGroupEvents.

resourcemanager-20200331/pom.xml

Lines changed: 3 additions & 2 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>resourcemanager20200331</artifactId>
6-
<version>2.6.0</version>
6+
<version>2.6.1</version>
77
<packaging>jar</packaging>
88
<name>resourcemanager20200331</name>
99
<description>Alibaba Cloud ResourceManager (20200331) SDK for Java
@@ -51,7 +51,7 @@
5151
<dependency>
5252
<groupId>com.aliyun</groupId>
5353
<artifactId>tea</artifactId>
54-
<version>1.3.1</version>
54+
<version>1.4.1</version>
5555
</dependency>
5656
<dependency>
5757
<groupId>com.aliyun</groupId>
@@ -96,6 +96,7 @@
9696
<configuration>
9797
<encoding>UTF-8</encoding>
9898
<doclint>none</doclint>
99+
<maxmemory>2048m</maxmemory>
99100
</configuration>
100101
</plugin>
101102
<plugin>

resourcemanager-20200331/src/main/java/com/aliyun/resourcemanager20200331/Client.java

Lines changed: 178 additions & 56 deletions
Large diffs are not rendered by default.

resourcemanager-20200331/src/main/java/com/aliyun/resourcemanager20200331/models/CreateResourceGroupResponseBody.java

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,25 @@ public CreateResourceGroupResponseBodyResourceGroup getResourceGroup() {
4141
}
4242

4343
public static class CreateResourceGroupResponseBodyResourceGroupRegionStatusesRegionStatus extends TeaModel {
44+
/**
45+
* <p>The region ID.</p>
46+
*
47+
* <strong>example:</strong>
48+
* <p>cn-qingdao</p>
49+
*/
4450
@NameInMap("RegionId")
4551
public String regionId;
4652

53+
/**
54+
* <p>The status of the resource group. Valid values:</p>
55+
* <ul>
56+
* <li>Creating: The resource group is being created.</li>
57+
* <li>OK: The resource group is created.</li>
58+
* </ul>
59+
*
60+
* <strong>example:</strong>
61+
* <p>Creating</p>
62+
*/
4763
@NameInMap("Status")
4864
public String status;
4965

resourcemanager-20200331/src/main/java/com/aliyun/resourcemanager20200331/models/DeleteAccountRequest.java

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

66
public class DeleteAccountRequest extends TeaModel {
7+
/**
8+
* <p>The ID of a check item that you can choose to ignore for the member deletion.</p>
9+
* <p>You can obtain the ID from the response of the <a href="https://help.aliyun.com/document_detail/448775.html">GetAccountDeletionCheckResult</a> operation.</p>
10+
*/
711
@NameInMap("AbandonableCheckId")
812
public java.util.List<String> abandonableCheckId;
913

1014
/**
11-
* <p>The type of the deletion. Valid values:</p>
12-
* <ul>
13-
* <li>0: direct deletion. If the member does not have pay-as-you-go resources that are purchased within the previous 30 days, the system directly deletes the member.</li>
14-
* <li>1: deletion with a silence period. If the member has pay-as-you-go resources that are purchased within the previous 30 days, the member enters a silence period of 45 days. The system starts to delete the member until the silence period ends. For more information about the silence period, see <a href="https://help.aliyun.com/document_detail/446079.html">What is the silence period for member deletion?</a></li>
15-
* </ul>
15+
* <p>The Alibaba Cloud account ID of the member that you want to delete.</p>
1616
* <p>This parameter is required.</p>
1717
*
1818
* <strong>example:</strong>

resourcemanager-20200331/src/main/java/com/aliyun/resourcemanager20200331/models/DeleteAccountResponseBody.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,21 @@
55

66
public class DeleteAccountResponseBody extends TeaModel {
77
/**
8+
* <p>The type of the deletion. Valid values:</p>
9+
* <ul>
10+
* <li>0: Direct deletion. If the member does not have pay-as-you-go resources that are purchased within the previous 30 days, the system directly deletes the member.</li>
11+
* <li>1: Deletion with a silence period. If the member has pay-as-you-go resources that are purchased within the previous 30 days, the member enters a silence period. The system starts to delete the member until the silence period ends. For more information about the silence period, see <a href="https://help.aliyun.com/document_detail/446079.html">What is the silence period for member deletion?</a></li>
12+
* </ul>
13+
*
814
* <strong>example:</strong>
915
* <p>0</p>
1016
*/
1117
@NameInMap("DeletionType")
1218
public String deletionType;
1319

1420
/**
21+
* <p>The request ID.</p>
22+
*
1523
* <strong>example:</strong>
1624
* <p>009429F8-C1C0-5872-B674-A6C2333B9647</p>
1725
*/

resourcemanager-20200331/src/main/java/com/aliyun/resourcemanager20200331/models/DeleteAccountShrinkRequest.java

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

66
public class DeleteAccountShrinkRequest extends TeaModel {
7+
/**
8+
* <p>The ID of a check item that you can choose to ignore for the member deletion.</p>
9+
* <p>You can obtain the ID from the response of the <a href="https://help.aliyun.com/document_detail/448775.html">GetAccountDeletionCheckResult</a> operation.</p>
10+
*/
711
@NameInMap("AbandonableCheckId")
812
public String abandonableCheckIdShrink;
913

1014
/**
11-
* <p>The type of the deletion. Valid values:</p>
12-
* <ul>
13-
* <li>0: direct deletion. If the member does not have pay-as-you-go resources that are purchased within the previous 30 days, the system directly deletes the member.</li>
14-
* <li>1: deletion with a silence period. If the member has pay-as-you-go resources that are purchased within the previous 30 days, the member enters a silence period of 45 days. The system starts to delete the member until the silence period ends. For more information about the silence period, see <a href="https://help.aliyun.com/document_detail/446079.html">What is the silence period for member deletion?</a></li>
15-
* </ul>
15+
* <p>The Alibaba Cloud account ID of the member that you want to delete.</p>
1616
* <p>This parameter is required.</p>
1717
*
1818
* <strong>example:</strong>

resourcemanager-20200331/src/main/java/com/aliyun/resourcemanager20200331/models/DeleteResourceGroupResponseBody.java

Lines changed: 0 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -41,27 +41,9 @@ public DeleteResourceGroupResponseBodyResourceGroup getResourceGroup() {
4141
}
4242

4343
public static class DeleteResourceGroupResponseBodyResourceGroupRegionStatusesRegionStatus extends TeaModel {
44-
/**
45-
* <p>The region ID.</p>
46-
*
47-
* <strong>example:</strong>
48-
* <p>cn-qingdao</p>
49-
*/
5044
@NameInMap("RegionId")
5145
public String regionId;
5246

53-
/**
54-
* <p>The status of the resource group. Valid values:</p>
55-
* <ul>
56-
* <li>Creating: The resource group is being created.</li>
57-
* <li>OK: The resource group is created.</li>
58-
* <li>PendingDelete: The resource group is waiting to be deleted.</li>
59-
* <li>Deleting: The resource group is being deleted.</li>
60-
* </ul>
61-
*
62-
* <strong>example:</strong>
63-
* <p>PendingDelete</p>
64-
*/
6547
@NameInMap("Status")
6648
public String status;
6749

@@ -153,9 +135,6 @@ public static class DeleteResourceGroupResponseBodyResourceGroup extends TeaMode
153135
@NameInMap("Name")
154136
public String name;
155137

156-
/**
157-
* <p>The status of the resource group in all regions.</p>
158-
*/
159138
@NameInMap("RegionStatuses")
160139
public DeleteResourceGroupResponseBodyResourceGroupRegionStatuses regionStatuses;
161140

resourcemanager-20200331/src/main/java/com/aliyun/resourcemanager20200331/models/GetResourceGroupResponseBody.java

Lines changed: 0 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -41,27 +41,9 @@ public GetResourceGroupResponseBodyResourceGroup getResourceGroup() {
4141
}
4242

4343
public static class GetResourceGroupResponseBodyResourceGroupRegionStatusesRegionStatus extends TeaModel {
44-
/**
45-
* <p>The region ID.</p>
46-
*
47-
* <strong>example:</strong>
48-
* <p>cn-qingdao</p>
49-
*/
5044
@NameInMap("RegionId")
5145
public String regionId;
5246

53-
/**
54-
* <p>The status of the resource group. Valid values:</p>
55-
* <ul>
56-
* <li>Creating: The resource group is being created.</li>
57-
* <li>OK: The resource group is created.</li>
58-
* <li>PendingDelete: The resource group is waiting to be deleted.</li>
59-
* <li>Deleting: The resource group is being deleted.</li>
60-
* </ul>
61-
*
62-
* <strong>example:</strong>
63-
* <p>OK</p>
64-
*/
6547
@NameInMap("Status")
6648
public String status;
6749

@@ -108,21 +90,9 @@ public java.util.List<GetResourceGroupResponseBodyResourceGroupRegionStatusesReg
10890
}
10991

11092
public static class GetResourceGroupResponseBodyResourceGroupTagsTag extends TeaModel {
111-
/**
112-
* <p>The tag key.</p>
113-
*
114-
* <strong>example:</strong>
115-
* <p>k1</p>
116-
*/
11793
@NameInMap("TagKey")
11894
public String tagKey;
11995

120-
/**
121-
* <p>The tag value.</p>
122-
*
123-
* <strong>example:</strong>
124-
* <p>v1</p>
125-
*/
12696
@NameInMap("TagValue")
12797
public String tagValue;
12898

@@ -214,9 +184,6 @@ public static class GetResourceGroupResponseBodyResourceGroup extends TeaModel {
214184
@NameInMap("Name")
215185
public String name;
216186

217-
/**
218-
* <p>The status of the resource group in all regions.</p>
219-
*/
220187
@NameInMap("RegionStatuses")
221188
public GetResourceGroupResponseBodyResourceGroupRegionStatuses regionStatuses;
222189

@@ -234,9 +201,6 @@ public static class GetResourceGroupResponseBodyResourceGroup extends TeaModel {
234201
@NameInMap("Status")
235202
public String status;
236203

237-
/**
238-
* <p>The tags that are added to the resource group.</p>
239-
*/
240204
@NameInMap("Tags")
241205
public GetResourceGroupResponseBodyResourceGroupTags tags;
242206

resourcemanager-20200331/src/main/java/com/aliyun/resourcemanager20200331/models/GetServiceLinkedRoleDeletionStatusResponseBody.java

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -84,18 +84,9 @@ public java.util.List<String> getResource() {
8484
}
8585

8686
public static class GetServiceLinkedRoleDeletionStatusResponseBodyReasonRoleUsagesRoleUsage extends TeaModel {
87-
/**
88-
* <p>The region.</p>
89-
*
90-
* <strong>example:</strong>
91-
* <p>global</p>
92-
*/
9387
@NameInMap("Region")
9488
public String region;
9589

96-
/**
97-
* <p>The information about resources.</p>
98-
*/
9990
@NameInMap("Resources")
10091
public GetServiceLinkedRoleDeletionStatusResponseBodyReasonRoleUsagesRoleUsageResources resources;
10192

@@ -151,9 +142,6 @@ public static class GetServiceLinkedRoleDeletionStatusResponseBodyReason extends
151142
@NameInMap("Message")
152143
public String message;
153144

154-
/**
155-
* <p>The information about the resources that the service-linked role can use.</p>
156-
*/
157145
@NameInMap("RoleUsages")
158146
public GetServiceLinkedRoleDeletionStatusResponseBodyReasonRoleUsages roleUsages;
159147

0 commit comments

Comments
 (0)