Skip to content

Commit 7a8e0ee

Browse files
committed
Generated 2020-07-10 for mPaaS.
1 parent 33ce805 commit 7a8e0ee

File tree

306 files changed

+842
-19447
lines changed

Some content is hidden

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

306 files changed

+842
-19447
lines changed

aliyun-java-sdk-mpaas/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-08-25 Version: 2.1.12
2+
- Generated 2020-07-10 for `mPaaS`.
3+
14
2025-06-03 Version: 3.0.23
25
- Generated 2020-10-28 for `mPaaS`.
36

aliyun-java-sdk-mpaas/pom.xml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-mpaas</artifactId>
66
<packaging>jar</packaging>
7-
<version>3.0.23</version>
7+
<version>2.1.12</version>
88
<name>aliyun-java-sdk-mpaas</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
@@ -103,14 +103,14 @@ http://www.aliyun.com</description>
103103
</executions>
104104
</plugin>
105105
<plugin>
106-
<groupId>org.sonatype.plugins</groupId>
107-
<artifactId>nexus-staging-maven-plugin</artifactId>
108-
<version>1.6.3</version>
106+
<groupId>org.sonatype.central</groupId>
107+
<artifactId>central-publishing-maven-plugin</artifactId>
108+
<version>0.8.0</version>
109109
<extensions>true</extensions>
110110
<configuration>
111-
<serverId>sonatype-nexus-staging</serverId>
112-
<nexusUrl>https://s01.oss.sonatype.org/</nexusUrl>
113-
<autoReleaseAfterClose>true</autoReleaseAfterClose>
111+
<publishingServerId>central</publishingServerId>
112+
<autoPublish>true</autoPublish>
113+
<waitUntil>published</waitUntil>
114114
</configuration>
115115
</plugin>
116116
</plugins>
Lines changed: 20 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* limitations under the License.
1313
*/
1414

15-
package com.aliyuncs.mpaas.model.v20201028;
15+
package com.aliyuncs.mpaas.model.v20200710;
1616

1717
import com.aliyuncs.RpcAcsRequest;
1818
import com.aliyuncs.http.MethodType;
@@ -22,44 +22,44 @@
2222
* @author auto create
2323
* @version
2424
*/
25-
public class QueryMcdpAimRequest extends RpcAcsRequest<QueryMcdpAimResponse> {
25+
public class CancelMpsSchedulerRequest extends RpcAcsRequest<CancelMpsSchedulerResponse> {
2626

2727

28-
private String tenantId;
28+
private Integer type;
2929

30-
private Long id;
30+
private String uniqueIds;
3131

3232
private String appId;
3333

3434
private String workspaceId;
35-
public QueryMcdpAimRequest() {
36-
super("mPaaS", "2020-10-28", "QueryMcdpAim", "mpaas");
35+
public CancelMpsSchedulerRequest() {
36+
super("mPaaS", "2020-07-10", "CancelMpsScheduler", "mpaas");
3737
setMethod(MethodType.POST);
3838
try {
3939
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
4040
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
4141
} catch (Exception e) {}
4242
}
4343

44-
public String getTenantId() {
45-
return this.tenantId;
44+
public Integer getType() {
45+
return this.type;
4646
}
4747

48-
public void setTenantId(String tenantId) {
49-
this.tenantId = tenantId;
50-
if(tenantId != null){
51-
putBodyParameter("TenantId", tenantId);
48+
public void setType(Integer type) {
49+
this.type = type;
50+
if(type != null){
51+
putBodyParameter("Type", type.toString());
5252
}
5353
}
5454

55-
public Long getId() {
56-
return this.id;
55+
public String getUniqueIds() {
56+
return this.uniqueIds;
5757
}
5858

59-
public void setId(Long id) {
60-
this.id = id;
61-
if(id != null){
62-
putBodyParameter("Id", id.toString());
59+
public void setUniqueIds(String uniqueIds) {
60+
this.uniqueIds = uniqueIds;
61+
if(uniqueIds != null){
62+
putBodyParameter("UniqueIds", uniqueIds);
6363
}
6464
}
6565

@@ -86,8 +86,8 @@ public void setWorkspaceId(String workspaceId) {
8686
}
8787

8888
@Override
89-
public Class<QueryMcdpAimResponse> getResponseClass() {
90-
return QueryMcdpAimResponse.class;
89+
public Class<CancelMpsSchedulerResponse> getResponseClass() {
90+
return CancelMpsSchedulerResponse.class;
9191
}
9292

9393
}
Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@
1212
* limitations under the License.
1313
*/
1414

15-
package com.aliyuncs.mpaas.model.v20201028;
15+
package com.aliyuncs.mpaas.model.v20200710;
1616

1717
import com.aliyuncs.AcsResponse;
18-
import com.aliyuncs.mpaas.transform.v20201028.QueryMgsTestreqbodyautogenResponseUnmarshaller;
18+
import com.aliyuncs.mpaas.transform.v20200710.CancelMpsSchedulerResponseUnmarshaller;
1919
import com.aliyuncs.transform.UnmarshallerContext;
2020

2121
/**
2222
* @author auto create
2323
* @version
2424
*/
25-
public class QueryMgsTestreqbodyautogenResponse extends AcsResponse {
25+
public class CancelMpsSchedulerResponse extends AcsResponse {
2626

2727
private String resultMessage;
2828

@@ -65,8 +65,8 @@ public void setResultContent(String resultContent) {
6565
}
6666

6767
@Override
68-
public QueryMgsTestreqbodyautogenResponse getInstance(UnmarshallerContext context) {
69-
return QueryMgsTestreqbodyautogenResponseUnmarshaller.unmarshall(this, context);
68+
public CancelMpsSchedulerResponse getInstance(UnmarshallerContext context) {
69+
return CancelMpsSchedulerResponseUnmarshaller.unmarshall(this, context);
7070
}
7171

7272
@Override
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* limitations under the License.
1313
*/
1414

15-
package com.aliyuncs.mpaas.model.v20201028;
15+
package com.aliyuncs.mpaas.model.v20200710;
1616

1717
import com.aliyuncs.RpcAcsRequest;
1818
import com.aliyuncs.http.MethodType;
@@ -35,7 +35,7 @@ public class CancelPushSchedulerRequest extends RpcAcsRequest<CancelPushSchedule
3535

3636
private String workspaceId;
3737
public CancelPushSchedulerRequest() {
38-
super("mPaaS", "2020-10-28", "CancelPushScheduler", "mpaas");
38+
super("mPaaS", "2020-07-10", "CancelPushScheduler", "mpaas");
3939
setMethod(MethodType.POST);
4040
try {
4141
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
* limitations under the License.
1313
*/
1414

15-
package com.aliyuncs.mpaas.model.v20201028;
15+
package com.aliyuncs.mpaas.model.v20200710;
1616

1717
import com.aliyuncs.AcsResponse;
18-
import com.aliyuncs.mpaas.transform.v20201028.CancelPushSchedulerResponseUnmarshaller;
18+
import com.aliyuncs.mpaas.transform.v20200710.CancelPushSchedulerResponseUnmarshaller;
1919
import com.aliyuncs.transform.UnmarshallerContext;
2020

2121
/**
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* limitations under the License.
1313
*/
1414

15-
package com.aliyuncs.mpaas.model.v20201028;
15+
package com.aliyuncs.mpaas.model.v20200710;
1616

1717
import com.aliyuncs.RpcAcsRequest;
1818
import com.aliyuncs.http.MethodType;
@@ -39,7 +39,7 @@ public class ChangeMcubeMiniTaskStatusRequest extends RpcAcsRequest<ChangeMcubeM
3939

4040
private String workspaceId;
4141
public ChangeMcubeMiniTaskStatusRequest() {
42-
super("mPaaS", "2020-10-28", "ChangeMcubeMiniTaskStatus", "mpaas");
42+
super("mPaaS", "2020-07-10", "ChangeMcubeMiniTaskStatus", "mpaas");
4343
setMethod(MethodType.POST);
4444
try {
4545
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
* limitations under the License.
1313
*/
1414

15-
package com.aliyuncs.mpaas.model.v20201028;
15+
package com.aliyuncs.mpaas.model.v20200710;
1616

1717
import com.aliyuncs.AcsResponse;
18-
import com.aliyuncs.mpaas.transform.v20201028.ChangeMcubeMiniTaskStatusResponseUnmarshaller;
18+
import com.aliyuncs.mpaas.transform.v20200710.ChangeMcubeMiniTaskStatusResponseUnmarshaller;
1919
import com.aliyuncs.transform.UnmarshallerContext;
2020

2121
/**
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* limitations under the License.
1313
*/
1414

15-
package com.aliyuncs.mpaas.model.v20201028;
15+
package com.aliyuncs.mpaas.model.v20200710;
1616

1717
import com.aliyuncs.RpcAcsRequest;
1818
import com.aliyuncs.http.MethodType;
@@ -39,7 +39,7 @@ public class ChangeMcubeNebulaTaskStatusRequest extends RpcAcsRequest<ChangeMcub
3939

4040
private String workspaceId;
4141
public ChangeMcubeNebulaTaskStatusRequest() {
42-
super("mPaaS", "2020-10-28", "ChangeMcubeNebulaTaskStatus", "mpaas");
42+
super("mPaaS", "2020-07-10", "ChangeMcubeNebulaTaskStatus", "mpaas");
4343
setMethod(MethodType.POST);
4444
try {
4545
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,10 +12,10 @@
1212
* limitations under the License.
1313
*/
1414

15-
package com.aliyuncs.mpaas.model.v20201028;
15+
package com.aliyuncs.mpaas.model.v20200710;
1616

1717
import com.aliyuncs.AcsResponse;
18-
import com.aliyuncs.mpaas.transform.v20201028.ChangeMcubeNebulaTaskStatusResponseUnmarshaller;
18+
import com.aliyuncs.mpaas.transform.v20200710.ChangeMcubeNebulaTaskStatusResponseUnmarshaller;
1919
import com.aliyuncs.transform.UnmarshallerContext;
2020

2121
/**

0 commit comments

Comments
 (0)