Skip to content

Commit f6d1d02

Browse files
committed
Update to support new apis.
1 parent dc430b6 commit f6d1d02

File tree

5 files changed

+907
-1
lines changed

5 files changed

+907
-1
lines changed

aliyun-java-sdk-live/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2024-06-18 Version: 3.9.54
2+
- Update to support new apis.
3+
14
2024-06-14 Version: 3.9.53
25
- Update to support new apis.
36

aliyun-java-sdk-live/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-live</artifactId>
66
<packaging>jar</packaging>
7-
<version>3.9.53</version>
7+
<version>3.9.54</version>
88
<name>aliyun-java-sdk-live</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
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.live.model.v20161101;
16+
17+
import com.aliyuncs.RpcAcsRequest;
18+
import com.aliyuncs.http.MethodType;
19+
import com.aliyuncs.live.Endpoint;
20+
21+
/**
22+
* @author auto create
23+
* @version
24+
*/
25+
public class ListRtcMPUTaskDetailRequest extends RpcAcsRequest<ListRtcMPUTaskDetailResponse> {
26+
27+
28+
private Long pageNo;
29+
30+
private String appId;
31+
32+
private Long pageSize;
33+
34+
private String taskId;
35+
public ListRtcMPUTaskDetailRequest() {
36+
super("live", "2016-11-01", "ListRtcMPUTaskDetail", "live");
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 Long getPageNo() {
45+
return this.pageNo;
46+
}
47+
48+
public void setPageNo(Long pageNo) {
49+
this.pageNo = pageNo;
50+
if(pageNo != null){
51+
putQueryParameter("PageNo", pageNo.toString());
52+
}
53+
}
54+
55+
public String getAppId() {
56+
return this.appId;
57+
}
58+
59+
public void setAppId(String appId) {
60+
this.appId = appId;
61+
if(appId != null){
62+
putQueryParameter("AppId", appId);
63+
}
64+
}
65+
66+
public Long getPageSize() {
67+
return this.pageSize;
68+
}
69+
70+
public void setPageSize(Long pageSize) {
71+
this.pageSize = pageSize;
72+
if(pageSize != null){
73+
putQueryParameter("PageSize", pageSize.toString());
74+
}
75+
}
76+
77+
public String getTaskId() {
78+
return this.taskId;
79+
}
80+
81+
public void setTaskId(String taskId) {
82+
this.taskId = taskId;
83+
if(taskId != null){
84+
putQueryParameter("TaskId", taskId);
85+
}
86+
}
87+
88+
@Override
89+
public Class<ListRtcMPUTaskDetailResponse> getResponseClass() {
90+
return ListRtcMPUTaskDetailResponse.class;
91+
}
92+
93+
}

0 commit comments

Comments
 (0)