Skip to content

Commit 2f3910f

Browse files
committed
CCC SDK Auto Released By yonghong.lyh,Version:1.0.17
发布日志: 1, Change the implementation of some API
1 parent 747c44e commit 2f3910f

11 files changed

+1017
-1
lines changed

aliyun-java-sdk-ccc/ChangeLog.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2019-05-14 Version: 1.0.17
2+
1, Change the implementation of some API
3+
4+
15
2019-05-07 Version: 1.0.16
26
1, Add new interface
37

aliyun-java-sdk-ccc/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<groupId>com.aliyun</groupId>
44
<artifactId>aliyun-java-sdk-ccc</artifactId>
55
<packaging>jar</packaging>
6-
<version>1.0.16</version>
6+
<version>1.0.17</version>
77
<name>aliyun-java-sdk-ccc</name>
88
<url>http://www.aliyun.com</url>
99
<description>Aliyun Open API SDK for Java
Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
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.ccc.model.v20170705;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
19+
/**
20+
* @author auto create
21+
* @version
22+
*/
23+
public class DownloadCabRecordingRequest extends RpcAcsRequest<DownloadCabRecordingResponse> {
24+
25+
public DownloadCabRecordingRequest() {
26+
super("CCC", "2017-07-05", "DownloadCabRecording");
27+
}
28+
29+
private String instanceId;
30+
31+
private String taskId;
32+
33+
public String getInstanceId() {
34+
return this.instanceId;
35+
}
36+
37+
public void setInstanceId(String instanceId) {
38+
this.instanceId = instanceId;
39+
if(instanceId != null){
40+
putQueryParameter("InstanceId", instanceId);
41+
}
42+
}
43+
44+
public String getTaskId() {
45+
return this.taskId;
46+
}
47+
48+
public void setTaskId(String taskId) {
49+
this.taskId = taskId;
50+
if(taskId != null){
51+
putQueryParameter("TaskId", taskId);
52+
}
53+
}
54+
55+
@Override
56+
public Class<DownloadCabRecordingResponse> getResponseClass() {
57+
return DownloadCabRecordingResponse.class;
58+
}
59+
60+
}
Lines changed: 119 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,119 @@
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.ccc.model.v20170705;
16+
17+
import com.aliyuncs.AcsResponse;
18+
import com.aliyuncs.ccc.transform.v20170705.DownloadCabRecordingResponseUnmarshaller;
19+
import com.aliyuncs.transform.UnmarshallerContext;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class DownloadCabRecordingResponse extends AcsResponse {
26+
27+
private String requestId;
28+
29+
private Boolean success;
30+
31+
private String code;
32+
33+
private String message;
34+
35+
private Integer httpStatusCode;
36+
37+
private MediaDownloadParam mediaDownloadParam;
38+
39+
public String getRequestId() {
40+
return this.requestId;
41+
}
42+
43+
public void setRequestId(String requestId) {
44+
this.requestId = requestId;
45+
}
46+
47+
public Boolean getSuccess() {
48+
return this.success;
49+
}
50+
51+
public void setSuccess(Boolean success) {
52+
this.success = success;
53+
}
54+
55+
public String getCode() {
56+
return this.code;
57+
}
58+
59+
public void setCode(String code) {
60+
this.code = code;
61+
}
62+
63+
public String getMessage() {
64+
return this.message;
65+
}
66+
67+
public void setMessage(String message) {
68+
this.message = message;
69+
}
70+
71+
public Integer getHttpStatusCode() {
72+
return this.httpStatusCode;
73+
}
74+
75+
public void setHttpStatusCode(Integer httpStatusCode) {
76+
this.httpStatusCode = httpStatusCode;
77+
}
78+
79+
public MediaDownloadParam getMediaDownloadParam() {
80+
return this.mediaDownloadParam;
81+
}
82+
83+
public void setMediaDownloadParam(MediaDownloadParam mediaDownloadParam) {
84+
this.mediaDownloadParam = mediaDownloadParam;
85+
}
86+
87+
public static class MediaDownloadParam {
88+
89+
private String signatureUrl;
90+
91+
private String fileName;
92+
93+
public String getSignatureUrl() {
94+
return this.signatureUrl;
95+
}
96+
97+
public void setSignatureUrl(String signatureUrl) {
98+
this.signatureUrl = signatureUrl;
99+
}
100+
101+
public String getFileName() {
102+
return this.fileName;
103+
}
104+
105+
public void setFileName(String fileName) {
106+
this.fileName = fileName;
107+
}
108+
}
109+
110+
@Override
111+
public DownloadCabRecordingResponse getInstance(UnmarshallerContext context) {
112+
return DownloadCabRecordingResponseUnmarshaller.unmarshall(this, context);
113+
}
114+
115+
@Override
116+
public boolean checkShowJsonItemName() {
117+
return false;
118+
}
119+
}
Lines changed: 34 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,34 @@
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.ccc.model.v20170705;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
19+
/**
20+
* @author auto create
21+
* @version
22+
*/
23+
public class ListInstancesOfUserRequest extends RpcAcsRequest<ListInstancesOfUserResponse> {
24+
25+
public ListInstancesOfUserRequest() {
26+
super("CCC", "2017-07-05", "ListInstancesOfUser");
27+
}
28+
29+
@Override
30+
public Class<ListInstancesOfUserResponse> getResponseClass() {
31+
return ListInstancesOfUserResponse.class;
32+
}
33+
34+
}

0 commit comments

Comments
 (0)