Skip to content

Commit a48818c

Browse files
committed
Generated 2025-04-29 for WebsiteBuild.
1 parent a2d778c commit a48818c

File tree

5 files changed

+176
-1
lines changed

5 files changed

+176
-1
lines changed
Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-06-12 Version: 1.0.1
2+
- Generated 2025-04-29 for `WebsiteBuild`.
3+
14
2025-05-24 Version: 1.0.0
25
- Generated 2025-04-29 for `WebsiteBuild`.
36

aliyun-java-sdk-websitebuild/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<groupId>com.aliyun</groupId>
55
<artifactId>aliyun-java-sdk-websitebuild</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.0.0</version>
7+
<version>1.0.1</version>
88
<name>aliyun-java-sdk-websitebuild</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
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.websitebuild.model.v20250429;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.ProtocolType;
19+
import com.aliyuncs.http.MethodType;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class OperateAppInstanceForPartnerRequest extends RpcAcsRequest<OperateAppInstanceForPartnerResponse> {
26+
27+
28+
private String extend;
29+
30+
private String operateEvent;
31+
public OperateAppInstanceForPartnerRequest() {
32+
super("WebsiteBuild", "2025-04-29", "OperateAppInstanceForPartner");
33+
setProtocol(ProtocolType.HTTPS);
34+
setMethod(MethodType.POST);
35+
}
36+
37+
public String getExtend() {
38+
return this.extend;
39+
}
40+
41+
public void setExtend(String extend) {
42+
this.extend = extend;
43+
if(extend != null){
44+
putQueryParameter("Extend", extend);
45+
}
46+
}
47+
48+
public String getOperateEvent() {
49+
return this.operateEvent;
50+
}
51+
52+
public void setOperateEvent(String operateEvent) {
53+
this.operateEvent = operateEvent;
54+
if(operateEvent != null){
55+
putQueryParameter("OperateEvent", operateEvent);
56+
}
57+
}
58+
59+
@Override
60+
public Class<OperateAppInstanceForPartnerResponse> getResponseClass() {
61+
return OperateAppInstanceForPartnerResponse.class;
62+
}
63+
64+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,76 @@
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.websitebuild.model.v20250429;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.websitebuild.transform.v20250429.OperateAppInstanceForPartnerResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class OperateAppInstanceForPartnerResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
private String errorMsg;
30+
31+
private String success;
32+
33+
private String errorCode;
34+
35+
public String getRequestId() {
36+
return this.requestId;
37+
}
38+
39+
public void setRequestId(String requestId) {
40+
this.requestId = requestId;
41+
}
42+
43+
public String getErrorMsg() {
44+
return this.errorMsg;
45+
}
46+
47+
public void setErrorMsg(String errorMsg) {
48+
this.errorMsg = errorMsg;
49+
}
50+
51+
public String getSuccess() {
52+
return this.success;
53+
}
54+
55+
public void setSuccess(String success) {
56+
this.success = success;
57+
}
58+
59+
public String getErrorCode() {
60+
return this.errorCode;
61+
}
62+
63+
public void setErrorCode(String errorCode) {
64+
this.errorCode = errorCode;
65+
}
66+
67+
@Override
68+
public OperateAppInstanceForPartnerResponse getInstance(UnmarshallerContext context) {
69+
return OperateAppInstanceForPartnerResponseUnmarshaller.unmarshall(this, context);
70+
}
71+
72+
@Override
73+
public boolean checkShowJsonItemName() {
74+
return false;
75+
}
76+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
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.websitebuild.transform.v20250429;
16+
17+
import com.aliyuncs.websitebuild.model.v20250429.OperateAppInstanceForPartnerResponse;
18+
import com.aliyuncs.transform.UnmarshallerContext;
19+
20+
21+
public class OperateAppInstanceForPartnerResponseUnmarshaller {
22+
23+
public static OperateAppInstanceForPartnerResponse unmarshall(OperateAppInstanceForPartnerResponse operateAppInstanceForPartnerResponse, UnmarshallerContext _ctx) {
24+
25+
operateAppInstanceForPartnerResponse.setRequestId(_ctx.stringValue("OperateAppInstanceForPartnerResponse.RequestId"));
26+
operateAppInstanceForPartnerResponse.setErrorMsg(_ctx.stringValue("OperateAppInstanceForPartnerResponse.ErrorMsg"));
27+
operateAppInstanceForPartnerResponse.setSuccess(_ctx.stringValue("OperateAppInstanceForPartnerResponse.Success"));
28+
operateAppInstanceForPartnerResponse.setErrorCode(_ctx.stringValue("OperateAppInstanceForPartnerResponse.ErrorCode"));
29+
30+
return operateAppInstanceForPartnerResponse;
31+
}
32+
}

0 commit comments

Comments
 (0)