Skip to content

Commit db2a752

Browse files
committed
Generated 2025-04-29 for WebsiteBuild.
1 parent bdbca6c commit db2a752

34 files changed

+3828
-54
lines changed

aliyun-java-sdk-websitebuild/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-11-06 Version: 1.0.8
2+
- Generated 2025-04-29 for `WebsiteBuild`.
3+
14
2025-09-12 Version: 1.0.7
25
- Add image search api.
36

aliyun-java-sdk-websitebuild/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-websitebuild</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.0.7</version>
7+
<version>1.0.8</version>
88
<name>aliyun-java-sdk-websitebuild</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
@@ -106,12 +106,11 @@ http://www.aliyun.com</description>
106106
<plugin>
107107
<groupId>org.sonatype.central</groupId>
108108
<artifactId>central-publishing-maven-plugin</artifactId>
109-
<version>0.8.0</version>
109+
<version>0.9.0</version>
110110
<extensions>true</extensions>
111111
<configuration>
112112
<publishingServerId>central</publishingServerId>
113113
<autoPublish>true</autoPublish>
114-
<waitUntil>published</waitUntil>
115114
</configuration>
116115
</plugin>
117116
</plugins>
Lines changed: 90 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,90 @@
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 BindAppDomainRequest extends RpcAcsRequest<BindAppDomainResponse> {
26+
27+
28+
private String domainName;
29+
30+
private String extend;
31+
32+
private String bizId;
33+
34+
private String operateType;
35+
public BindAppDomainRequest() {
36+
super("WebsiteBuild", "2025-04-29", "BindAppDomain");
37+
setProtocol(ProtocolType.HTTPS);
38+
setMethod(MethodType.POST);
39+
}
40+
41+
public String getDomainName() {
42+
return this.domainName;
43+
}
44+
45+
public void setDomainName(String domainName) {
46+
this.domainName = domainName;
47+
if(domainName != null){
48+
putQueryParameter("DomainName", domainName);
49+
}
50+
}
51+
52+
public String getExtend() {
53+
return this.extend;
54+
}
55+
56+
public void setExtend(String extend) {
57+
this.extend = extend;
58+
if(extend != null){
59+
putQueryParameter("Extend", extend);
60+
}
61+
}
62+
63+
public String getBizId() {
64+
return this.bizId;
65+
}
66+
67+
public void setBizId(String bizId) {
68+
this.bizId = bizId;
69+
if(bizId != null){
70+
putQueryParameter("BizId", bizId);
71+
}
72+
}
73+
74+
public String getOperateType() {
75+
return this.operateType;
76+
}
77+
78+
public void setOperateType(String operateType) {
79+
this.operateType = operateType;
80+
if(operateType != null){
81+
putQueryParameter("OperateType", operateType);
82+
}
83+
}
84+
85+
@Override
86+
public Class<BindAppDomainResponse> getResponseClass() {
87+
return BindAppDomainResponse.class;
88+
}
89+
90+
}
Lines changed: 160 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,160 @@
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 java.util.List;
18+
import com.aliyuncs.AcsResponse;
19+
import com.aliyuncs.websitebuild.transform.v20250429.BindAppDomainResponseUnmarshaller;
20+
import com.aliyuncs.transform.UnmarshallerContext;
21+
22+
/**
23+
* @author auto create
24+
* @version
25+
*/
26+
public class BindAppDomainResponse extends AcsResponse {
27+
28+
private String requestId;
29+
30+
private String dynamicCode;
31+
32+
private String dynamicMessage;
33+
34+
private Boolean synchro;
35+
36+
private String accessDeniedDetail;
37+
38+
private String rootErrorMsg;
39+
40+
private String rootErrorCode;
41+
42+
private Boolean allowRetry;
43+
44+
private String appName;
45+
46+
private List<String> errorArgs;
47+
48+
private Module module;
49+
50+
public String getRequestId() {
51+
return this.requestId;
52+
}
53+
54+
public void setRequestId(String requestId) {
55+
this.requestId = requestId;
56+
}
57+
58+
public String getDynamicCode() {
59+
return this.dynamicCode;
60+
}
61+
62+
public void setDynamicCode(String dynamicCode) {
63+
this.dynamicCode = dynamicCode;
64+
}
65+
66+
public String getDynamicMessage() {
67+
return this.dynamicMessage;
68+
}
69+
70+
public void setDynamicMessage(String dynamicMessage) {
71+
this.dynamicMessage = dynamicMessage;
72+
}
73+
74+
public Boolean getSynchro() {
75+
return this.synchro;
76+
}
77+
78+
public void setSynchro(Boolean synchro) {
79+
this.synchro = synchro;
80+
}
81+
82+
public String getAccessDeniedDetail() {
83+
return this.accessDeniedDetail;
84+
}
85+
86+
public void setAccessDeniedDetail(String accessDeniedDetail) {
87+
this.accessDeniedDetail = accessDeniedDetail;
88+
}
89+
90+
public String getRootErrorMsg() {
91+
return this.rootErrorMsg;
92+
}
93+
94+
public void setRootErrorMsg(String rootErrorMsg) {
95+
this.rootErrorMsg = rootErrorMsg;
96+
}
97+
98+
public String getRootErrorCode() {
99+
return this.rootErrorCode;
100+
}
101+
102+
public void setRootErrorCode(String rootErrorCode) {
103+
this.rootErrorCode = rootErrorCode;
104+
}
105+
106+
public Boolean getAllowRetry() {
107+
return this.allowRetry;
108+
}
109+
110+
public void setAllowRetry(Boolean allowRetry) {
111+
this.allowRetry = allowRetry;
112+
}
113+
114+
public String getAppName() {
115+
return this.appName;
116+
}
117+
118+
public void setAppName(String appName) {
119+
this.appName = appName;
120+
}
121+
122+
public List<String> getErrorArgs() {
123+
return this.errorArgs;
124+
}
125+
126+
public void setErrorArgs(List<String> errorArgs) {
127+
this.errorArgs = errorArgs;
128+
}
129+
130+
public Module getModule() {
131+
return this.module;
132+
}
133+
134+
public void setModule(Module module) {
135+
this.module = module;
136+
}
137+
138+
public static class Module {
139+
140+
private Boolean success;
141+
142+
public Boolean getSuccess() {
143+
return this.success;
144+
}
145+
146+
public void setSuccess(Boolean success) {
147+
this.success = success;
148+
}
149+
}
150+
151+
@Override
152+
public BindAppDomainResponse getInstance(UnmarshallerContext context) {
153+
return BindAppDomainResponseUnmarshaller.unmarshall(this, context);
154+
}
155+
156+
@Override
157+
public boolean checkShowJsonItemName() {
158+
return false;
159+
}
160+
}
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 DeleteAppDomainCertificateRequest extends RpcAcsRequest<DeleteAppDomainCertificateResponse> {
26+
27+
28+
private String domainName;
29+
30+
private String bizId;
31+
public DeleteAppDomainCertificateRequest() {
32+
super("WebsiteBuild", "2025-04-29", "DeleteAppDomainCertificate");
33+
setProtocol(ProtocolType.HTTPS);
34+
setMethod(MethodType.POST);
35+
}
36+
37+
public String getDomainName() {
38+
return this.domainName;
39+
}
40+
41+
public void setDomainName(String domainName) {
42+
this.domainName = domainName;
43+
if(domainName != null){
44+
putQueryParameter("DomainName", domainName);
45+
}
46+
}
47+
48+
public String getBizId() {
49+
return this.bizId;
50+
}
51+
52+
public void setBizId(String bizId) {
53+
this.bizId = bizId;
54+
if(bizId != null){
55+
putQueryParameter("BizId", bizId);
56+
}
57+
}
58+
59+
@Override
60+
public Class<DeleteAppDomainCertificateResponse> getResponseClass() {
61+
return DeleteAppDomainCertificateResponse.class;
62+
}
63+
64+
}

0 commit comments

Comments
 (0)