Skip to content

Commit 767049a

Browse files
committed
Generated 2022-12-01 for ResourceCenter.
1 parent 15b025c commit 767049a

File tree

37 files changed

+1045
-565
lines changed

37 files changed

+1045
-565
lines changed

aliyun-java-sdk-resourcecenter/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-04-02 Version: 1.0.6
2+
- Generated 2022-12-01 for `ResourceCenter`.
3+
14
2024-10-10 Version: 1.0.5
25
- Generated 2022-12-01 for `ResourceCenter`.
36

aliyun-java-sdk-resourcecenter/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-resourcecenter</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.0.5</version>
7+
<version>1.0.6</version>
88
<name>aliyun-java-sdk-resourcecenter</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
@@ -92,7 +92,7 @@ http://www.aliyun.com</description>
9292
<plugin>
9393
<groupId>org.apache.maven.plugins</groupId>
9494
<artifactId>maven-gpg-plugin</artifactId>
95-
<version>1.5</version>
95+
<version>3.1.0</version>
9696
<executions>
9797
<execution>
9898
<id>sign-artifacts</id>

aliyun-java-sdk-resourcecenter/src/main/java/com/aliyuncs/resourcecenter/model/v20221201/CreateSavedQueryResponse.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,9 @@
2424
*/
2525
public class CreateSavedQueryResponse extends AcsResponse {
2626

27-
private String requestId;
28-
2927
private String queryId;
3028

31-
public String getRequestId() {
32-
return this.requestId;
33-
}
34-
35-
public void setRequestId(String requestId) {
36-
this.requestId = requestId;
37-
}
29+
private String requestId;
3830

3931
public String getQueryId() {
4032
return this.queryId;
@@ -44,6 +36,14 @@ public void setQueryId(String queryId) {
4436
this.queryId = queryId;
4537
}
4638

39+
public String getRequestId() {
40+
return this.requestId;
41+
}
42+
43+
public void setRequestId(String requestId) {
44+
this.requestId = requestId;
45+
}
46+
4747
@Override
4848
public CreateSavedQueryResponse getInstance(UnmarshallerContext context) {
4949
return CreateSavedQueryResponseUnmarshaller.unmarshall(this, context);

aliyun-java-sdk-resourcecenter/src/main/java/com/aliyuncs/resourcecenter/model/v20221201/EnableMultiAccountResourceCenterResponse.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,9 @@
2424
*/
2525
public class EnableMultiAccountResourceCenterResponse extends AcsResponse {
2626

27-
private String status;
28-
2927
private String requestId;
3028

31-
public String getStatus() {
32-
return this.status;
33-
}
34-
35-
public void setStatus(String status) {
36-
this.status = status;
37-
}
29+
private String status;
3830

3931
public String getRequestId() {
4032
return this.requestId;
@@ -44,6 +36,14 @@ public void setRequestId(String requestId) {
4436
this.requestId = requestId;
4537
}
4638

39+
public String getStatus() {
40+
return this.status;
41+
}
42+
43+
public void setStatus(String status) {
44+
this.status = status;
45+
}
46+
4747
@Override
4848
public EnableMultiAccountResourceCenterResponse getInstance(UnmarshallerContext context) {
4949
return EnableMultiAccountResourceCenterResponseUnmarshaller.unmarshall(this, context);

aliyun-java-sdk-resourcecenter/src/main/java/com/aliyuncs/resourcecenter/model/v20221201/EnableResourceCenterResponse.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,17 +24,9 @@
2424
*/
2525
public class EnableResourceCenterResponse extends AcsResponse {
2626

27-
private String status;
28-
2927
private String requestId;
3028

31-
public String getStatus() {
32-
return this.status;
33-
}
34-
35-
public void setStatus(String status) {
36-
this.status = status;
37-
}
29+
private String status;
3830

3931
public String getRequestId() {
4032
return this.requestId;
@@ -44,6 +36,14 @@ public void setRequestId(String requestId) {
4436
this.requestId = requestId;
4537
}
4638

39+
public String getStatus() {
40+
return this.status;
41+
}
42+
43+
public void setStatus(String status) {
44+
this.status = status;
45+
}
46+
4747
@Override
4848
public EnableResourceCenterResponse getInstance(UnmarshallerContext context) {
4949
return EnableResourceCenterResponseUnmarshaller.unmarshall(this, context);

aliyun-java-sdk-resourcecenter/src/main/java/com/aliyuncs/resourcecenter/model/v20221201/GetExampleQueryResponse.java

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -46,20 +46,20 @@ public void setExampleQuery(ExampleQuery exampleQuery) {
4646

4747
public static class ExampleQuery {
4848

49-
private String queryId;
49+
private String description;
5050

5151
private String expression;
5252

5353
private String name;
5454

55-
private String description;
55+
private String queryId;
5656

57-
public String getQueryId() {
58-
return this.queryId;
57+
public String getDescription() {
58+
return this.description;
5959
}
6060

61-
public void setQueryId(String queryId) {
62-
this.queryId = queryId;
61+
public void setDescription(String description) {
62+
this.description = description;
6363
}
6464

6565
public String getExpression() {
@@ -78,12 +78,12 @@ public void setName(String name) {
7878
this.name = name;
7979
}
8080

81-
public String getDescription() {
82-
return this.description;
81+
public String getQueryId() {
82+
return this.queryId;
8383
}
8484

85-
public void setDescription(String description) {
86-
this.description = description;
85+
public void setQueryId(String queryId) {
86+
this.queryId = queryId;
8787
}
8888
}
8989

aliyun-java-sdk-resourcecenter/src/main/java/com/aliyuncs/resourcecenter/model/v20221201/GetMultiAccountResourceCenterServiceStatusResponse.java

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,19 @@
2424
*/
2525
public class GetMultiAccountResourceCenterServiceStatusResponse extends AcsResponse {
2626

27+
private String initialStatus;
28+
2729
private String requestId;
2830

2931
private String serviceStatus;
3032

31-
private String initialStatus;
33+
public String getInitialStatus() {
34+
return this.initialStatus;
35+
}
36+
37+
public void setInitialStatus(String initialStatus) {
38+
this.initialStatus = initialStatus;
39+
}
3240

3341
public String getRequestId() {
3442
return this.requestId;
@@ -46,14 +54,6 @@ public void setServiceStatus(String serviceStatus) {
4654
this.serviceStatus = serviceStatus;
4755
}
4856

49-
public String getInitialStatus() {
50-
return this.initialStatus;
51-
}
52-
53-
public void setInitialStatus(String initialStatus) {
54-
this.initialStatus = initialStatus;
55-
}
56-
5757
@Override
5858
public GetMultiAccountResourceCenterServiceStatusResponse getInstance(UnmarshallerContext context) {
5959
return GetMultiAccountResourceCenterServiceStatusResponseUnmarshaller.unmarshall(this, context);

0 commit comments

Comments
 (0)