Skip to content

Commit 1ff4192

Browse files
committed
Generated 2023-01-20 for csas.
1 parent cda2e53 commit 1ff4192

29 files changed

+1928
-1
lines changed

aliyun-java-sdk-csas/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-06-20 Version: 1.0.9
2+
- Generated 2023-01-20 for `csas`.
3+
14
2024-06-11 Version: 1.0.8
25
- Generated 2023-01-20 for `csas`.
36

aliyun-java-sdk-csas/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-csas</artifactId>
66
<packaging>jar</packaging>
7-
<version>1.0.8</version>
7+
<version>1.0.9</version>
88
<name>aliyun-java-sdk-csas</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java

aliyun-java-sdk-csas/src/main/java/com/aliyuncs/csas/model/v20230120/CreatePrivateAccessPolicyRequest.java

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,8 @@ public class CreatePrivateAccessPolicyRequest extends RpcAcsRequest<CreatePrivat
3939

4040
private Integer priority;
4141

42+
private String deviceAttributeAction;
43+
4244
private List<String> applicationIds;
4345

4446
private String userGroupMode;
@@ -142,6 +144,17 @@ public void setPriority(Integer priority) {
142144
}
143145
}
144146

147+
public String getDeviceAttributeAction() {
148+
return this.deviceAttributeAction;
149+
}
150+
151+
public void setDeviceAttributeAction(String deviceAttributeAction) {
152+
this.deviceAttributeAction = deviceAttributeAction;
153+
if(deviceAttributeAction != null){
154+
putBodyParameter("DeviceAttributeAction", deviceAttributeAction);
155+
}
156+
}
157+
145158
public List<String> getApplicationIds() {
146159
return this.applicationIds;
147160
}
Lines changed: 142 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,142 @@
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.csas.model.v20230120;
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 CreateWmBaseImageRequest extends RpcAcsRequest<CreateWmBaseImageResponse> {
26+
27+
28+
private Integer scale;
29+
30+
private String wmInfoUint;
31+
32+
private Long wmInfoSize;
33+
34+
private String wmInfoBytesB64;
35+
36+
private String wmType;
37+
38+
private Integer width;
39+
40+
private Integer opacity;
41+
42+
private Integer height;
43+
public CreateWmBaseImageRequest() {
44+
super("csas", "2023-01-20", "CreateWmBaseImage");
45+
setProtocol(ProtocolType.HTTPS);
46+
setMethod(MethodType.POST);
47+
}
48+
49+
public Integer getScale() {
50+
return this.scale;
51+
}
52+
53+
public void setScale(Integer scale) {
54+
this.scale = scale;
55+
if(scale != null){
56+
putBodyParameter("Scale", scale.toString());
57+
}
58+
}
59+
60+
public String getWmInfoUint() {
61+
return this.wmInfoUint;
62+
}
63+
64+
public void setWmInfoUint(String wmInfoUint) {
65+
this.wmInfoUint = wmInfoUint;
66+
if(wmInfoUint != null){
67+
putBodyParameter("WmInfoUint", wmInfoUint);
68+
}
69+
}
70+
71+
public Long getWmInfoSize() {
72+
return this.wmInfoSize;
73+
}
74+
75+
public void setWmInfoSize(Long wmInfoSize) {
76+
this.wmInfoSize = wmInfoSize;
77+
if(wmInfoSize != null){
78+
putBodyParameter("WmInfoSize", wmInfoSize.toString());
79+
}
80+
}
81+
82+
public String getWmInfoBytesB64() {
83+
return this.wmInfoBytesB64;
84+
}
85+
86+
public void setWmInfoBytesB64(String wmInfoBytesB64) {
87+
this.wmInfoBytesB64 = wmInfoBytesB64;
88+
if(wmInfoBytesB64 != null){
89+
putBodyParameter("WmInfoBytesB64", wmInfoBytesB64);
90+
}
91+
}
92+
93+
public String getWmType() {
94+
return this.wmType;
95+
}
96+
97+
public void setWmType(String wmType) {
98+
this.wmType = wmType;
99+
if(wmType != null){
100+
putBodyParameter("WmType", wmType);
101+
}
102+
}
103+
104+
public Integer getWidth() {
105+
return this.width;
106+
}
107+
108+
public void setWidth(Integer width) {
109+
this.width = width;
110+
if(width != null){
111+
putBodyParameter("Width", width.toString());
112+
}
113+
}
114+
115+
public Integer getOpacity() {
116+
return this.opacity;
117+
}
118+
119+
public void setOpacity(Integer opacity) {
120+
this.opacity = opacity;
121+
if(opacity != null){
122+
putBodyParameter("Opacity", opacity.toString());
123+
}
124+
}
125+
126+
public Integer getHeight() {
127+
return this.height;
128+
}
129+
130+
public void setHeight(Integer height) {
131+
this.height = height;
132+
if(height != null){
133+
putBodyParameter("Height", height.toString());
134+
}
135+
}
136+
137+
@Override
138+
public Class<CreateWmBaseImageResponse> getResponseClass() {
139+
return CreateWmBaseImageResponse.class;
140+
}
141+
142+
}
Lines changed: 89 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,89 @@
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.csas.model.v20230120;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.csas.transform.v20230120.CreateWmBaseImageResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class CreateWmBaseImageResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
private Data data;
30+
31+
public String getRequestId() {
32+
return this.requestId;
33+
}
34+
35+
public void setRequestId(String requestId) {
36+
this.requestId = requestId;
37+
}
38+
39+
public Data getData() {
40+
return this.data;
41+
}
42+
43+
public void setData(Data data) {
44+
this.data = data;
45+
}
46+
47+
public static class Data {
48+
49+
private String imageId;
50+
51+
private String imageUrl;
52+
53+
private Long imageUrlExp;
54+
55+
public String getImageId() {
56+
return this.imageId;
57+
}
58+
59+
public void setImageId(String imageId) {
60+
this.imageId = imageId;
61+
}
62+
63+
public String getImageUrl() {
64+
return this.imageUrl;
65+
}
66+
67+
public void setImageUrl(String imageUrl) {
68+
this.imageUrl = imageUrl;
69+
}
70+
71+
public Long getImageUrlExp() {
72+
return this.imageUrlExp;
73+
}
74+
75+
public void setImageUrlExp(Long imageUrlExp) {
76+
this.imageUrlExp = imageUrlExp;
77+
}
78+
}
79+
80+
@Override
81+
public CreateWmBaseImageResponse getInstance(UnmarshallerContext context) {
82+
return CreateWmBaseImageResponseUnmarshaller.unmarshall(this, context);
83+
}
84+
85+
@Override
86+
public boolean checkShowJsonItemName() {
87+
return false;
88+
}
89+
}

0 commit comments

Comments
 (0)