Skip to content

Commit 472b563

Browse files
committed
Generated 2020-10-28 for mPaaS.
1 parent d353600 commit 472b563

File tree

339 files changed

+23978
-835
lines changed

Some content is hidden

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

339 files changed

+23978
-835
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-11-14 Version: 3.0.24
2+
- Generated 2020-10-28 for `mPaaS`.
3+
14
2025-08-25 Version: 2.1.12
25
- Generated 2020-07-10 for `mPaaS`.
36

aliyun-java-sdk-mpaas/pom.xml

Lines changed: 2 additions & 3 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>2.1.12</version>
7+
<version>3.0.24</version>
88
<name>aliyun-java-sdk-mpaas</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
@@ -105,12 +105,11 @@ http://www.aliyun.com</description>
105105
<plugin>
106106
<groupId>org.sonatype.central</groupId>
107107
<artifactId>central-publishing-maven-plugin</artifactId>
108-
<version>0.8.0</version>
108+
<version>0.9.0</version>
109109
<extensions>true</extensions>
110110
<configuration>
111111
<publishingServerId>central</publishingServerId>
112112
<autoPublish>true</autoPublish>
113-
<waitUntil>published</waitUntil>
114113
</configuration>
115114
</plugin>
116115
</plugins>
Lines changed: 93 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,93 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.mpaas.model.v20201028;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.MethodType;
19+
import com.aliyuncs.mpaas.Endpoint;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class AddMdsMiniConfigRequest extends RpcAcsRequest<AddMdsMiniConfigResponse> {
26+
27+
28+
private String mpaasMappcenterMiniConfigAddJsonStr;
29+
30+
private String tenantId;
31+
32+
private String appId;
33+
34+
private String workspaceId;
35+
public AddMdsMiniConfigRequest() {
36+
super("mPaaS", "2020-10-28", "AddMdsMiniConfig", "mpaas");
37+
setMethod(MethodType.POST);
38+
try {
39+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
40+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
41+
} catch (Exception e) {}
42+
}
43+
44+
public String getMpaasMappcenterMiniConfigAddJsonStr() {
45+
return this.mpaasMappcenterMiniConfigAddJsonStr;
46+
}
47+
48+
public void setMpaasMappcenterMiniConfigAddJsonStr(String mpaasMappcenterMiniConfigAddJsonStr) {
49+
this.mpaasMappcenterMiniConfigAddJsonStr = mpaasMappcenterMiniConfigAddJsonStr;
50+
if(mpaasMappcenterMiniConfigAddJsonStr != null){
51+
putBodyParameter("MpaasMappcenterMiniConfigAddJsonStr", mpaasMappcenterMiniConfigAddJsonStr);
52+
}
53+
}
54+
55+
public String getTenantId() {
56+
return this.tenantId;
57+
}
58+
59+
public void setTenantId(String tenantId) {
60+
this.tenantId = tenantId;
61+
if(tenantId != null){
62+
putBodyParameter("TenantId", tenantId);
63+
}
64+
}
65+
66+
public String getAppId() {
67+
return this.appId;
68+
}
69+
70+
public void setAppId(String appId) {
71+
this.appId = appId;
72+
if(appId != null){
73+
putBodyParameter("AppId", appId);
74+
}
75+
}
76+
77+
public String getWorkspaceId() {
78+
return this.workspaceId;
79+
}
80+
81+
public void setWorkspaceId(String workspaceId) {
82+
this.workspaceId = workspaceId;
83+
if(workspaceId != null){
84+
putBodyParameter("WorkspaceId", workspaceId);
85+
}
86+
}
87+
88+
@Override
89+
public Class<AddMdsMiniConfigResponse> getResponseClass() {
90+
return AddMdsMiniConfigResponse.class;
91+
}
92+
93+
}
Lines changed: 152 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,152 @@
1+
/*
2+
* Licensed under the Apache License, Version 2.0 (the "License");
3+
* you may not use this file except in compliance with the License.
4+
* You may obtain a copy of the License at
5+
*
6+
* http://www.apache.org/licenses/LICENSE-2.0
7+
*
8+
* Unless required by applicable law or agreed to in writing, software
9+
* distributed under the License is distributed on an "AS IS" BASIS,
10+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
* See the License for the specific language governing permissions and
12+
* limitations under the License.
13+
*/
14+
15+
package com.aliyuncs.mpaas.model.v20201028;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.mpaas.transform.v20201028.AddMdsMiniConfigResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class AddMdsMiniConfigResponse extends AcsResponse {
26+
27+
private String resultMessage;
28+
29+
private String resultCode;
30+
31+
private String requestId;
32+
33+
private ResultContent resultContent;
34+
35+
public String getResultMessage() {
36+
return this.resultMessage;
37+
}
38+
39+
public void setResultMessage(String resultMessage) {
40+
this.resultMessage = resultMessage;
41+
}
42+
43+
public String getResultCode() {
44+
return this.resultCode;
45+
}
46+
47+
public void setResultCode(String resultCode) {
48+
this.resultCode = resultCode;
49+
}
50+
51+
public String getRequestId() {
52+
return this.requestId;
53+
}
54+
55+
public void setRequestId(String requestId) {
56+
this.requestId = requestId;
57+
}
58+
59+
public ResultContent getResultContent() {
60+
return this.resultContent;
61+
}
62+
63+
public void setResultContent(ResultContent resultContent) {
64+
this.resultContent = resultContent;
65+
}
66+
67+
public static class ResultContent {
68+
69+
private String requestId;
70+
71+
private Data data;
72+
73+
public String getRequestId() {
74+
return this.requestId;
75+
}
76+
77+
public void setRequestId(String requestId) {
78+
this.requestId = requestId;
79+
}
80+
81+
public Data getData() {
82+
return this.data;
83+
}
84+
85+
public void setData(Data data) {
86+
this.data = data;
87+
}
88+
89+
public static class Data {
90+
91+
private String requestId;
92+
93+
private Boolean success;
94+
95+
private String errorCode;
96+
97+
private String content;
98+
99+
private String resultMsg;
100+
101+
public String getRequestId() {
102+
return this.requestId;
103+
}
104+
105+
public void setRequestId(String requestId) {
106+
this.requestId = requestId;
107+
}
108+
109+
public Boolean getSuccess() {
110+
return this.success;
111+
}
112+
113+
public void setSuccess(Boolean success) {
114+
this.success = success;
115+
}
116+
117+
public String getErrorCode() {
118+
return this.errorCode;
119+
}
120+
121+
public void setErrorCode(String errorCode) {
122+
this.errorCode = errorCode;
123+
}
124+
125+
public String getContent() {
126+
return this.content;
127+
}
128+
129+
public void setContent(String content) {
130+
this.content = content;
131+
}
132+
133+
public String getResultMsg() {
134+
return this.resultMsg;
135+
}
136+
137+
public void setResultMsg(String resultMsg) {
138+
this.resultMsg = resultMsg;
139+
}
140+
}
141+
}
142+
143+
@Override
144+
public AddMdsMiniConfigResponse getInstance(UnmarshallerContext context) {
145+
return AddMdsMiniConfigResponseUnmarshaller.unmarshall(this, context);
146+
}
147+
148+
@Override
149+
public boolean checkShowJsonItemName() {
150+
return false;
151+
}
152+
}
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.v20200710;
15+
package com.aliyuncs.mpaas.model.v20201028;
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-07-10", "CancelPushScheduler", "mpaas");
38+
super("mPaaS", "2020-10-28", "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.v20200710;
15+
package com.aliyuncs.mpaas.model.v20201028;
1616

1717
import com.aliyuncs.AcsResponse;
18-
import com.aliyuncs.mpaas.transform.v20200710.CancelPushSchedulerResponseUnmarshaller;
18+
import com.aliyuncs.mpaas.transform.v20201028.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.v20200710;
15+
package com.aliyuncs.mpaas.model.v20201028;
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-07-10", "ChangeMcubeMiniTaskStatus", "mpaas");
42+
super("mPaaS", "2020-10-28", "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.v20200710;
15+
package com.aliyuncs.mpaas.model.v20201028;
1616

1717
import com.aliyuncs.AcsResponse;
18-
import com.aliyuncs.mpaas.transform.v20200710.ChangeMcubeMiniTaskStatusResponseUnmarshaller;
18+
import com.aliyuncs.mpaas.transform.v20201028.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.v20200710;
15+
package com.aliyuncs.mpaas.model.v20201028;
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-07-10", "ChangeMcubeNebulaTaskStatus", "mpaas");
42+
super("mPaaS", "2020-10-28", "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.v20200710;
15+
package com.aliyuncs.mpaas.model.v20201028;
1616

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

2121
/**

0 commit comments

Comments
 (0)