Skip to content

Commit a623069

Browse files
committed
Generated 2016-11-01 for live.
1 parent f42335f commit a623069

24 files changed

+1570
-45
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+
2025-05-12 Version: 3.9.66
2+
- Generated 2016-11-01 for `live`.
3+
14
2025-03-27 Version: 3.9.65
25
- Generated 2016-11-01 for `live`.
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.65</version>
7+
<version>3.9.66</version>
88
<name>aliyun-java-sdk-live</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java

aliyun-java-sdk-live/src/main/java/com/aliyuncs/live/model/v20161101/CreateLivePullToPushRequest.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public class CreateLivePullToPushRequest extends RpcAcsRequest<CreateLivePullToP
6262
public CreateLivePullToPushRequest() {
6363
super("live", "2016-11-01", "CreateLivePullToPush", "live");
6464
setProtocol(ProtocolType.HTTPS);
65-
setMethod(MethodType.GET);
65+
setMethod(MethodType.POST);
6666
try {
6767
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
6868
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);

aliyun-java-sdk-live/src/main/java/com/aliyuncs/live/model/v20161101/DescribeLivePullToPushListResponse.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -183,6 +183,8 @@ public static class TaskInfo {
183183

184184
private Integer retryInterval;
185185

186+
private Integer repeatNumber;
187+
186188
private List<String> sourceUrls;
187189

188190
public String getTaskId() {
@@ -281,6 +283,14 @@ public void setRetryInterval(Integer retryInterval) {
281283
this.retryInterval = retryInterval;
282284
}
283285

286+
public Integer getRepeatNumber() {
287+
return this.repeatNumber;
288+
}
289+
290+
public void setRepeatNumber(Integer repeatNumber) {
291+
this.repeatNumber = repeatNumber;
292+
}
293+
284294
public List<String> getSourceUrls() {
285295
return this.sourceUrls;
286296
}

aliyun-java-sdk-live/src/main/java/com/aliyuncs/live/model/v20161101/DescribeLivePullToPushResponse.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -161,6 +161,8 @@ public static class TaskInfo {
161161

162162
private Integer retryInterval;
163163

164+
private Integer repeatNumber;
165+
164166
private List<String> sourceUrls;
165167

166168
public String getTaskId() {
@@ -259,6 +261,14 @@ public void setRetryInterval(Integer retryInterval) {
259261
this.retryInterval = retryInterval;
260262
}
261263

264+
public Integer getRepeatNumber() {
265+
return this.repeatNumber;
266+
}
267+
268+
public void setRepeatNumber(Integer repeatNumber) {
269+
this.repeatNumber = repeatNumber;
270+
}
271+
262272
public List<String> getSourceUrls() {
263273
return this.sourceUrls;
264274
}

aliyun-java-sdk-live/src/main/java/com/aliyuncs/live/model/v20161101/DescribeLiveStreamTranscodeStreamNumRequest.java

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,9 @@ public class DescribeLiveStreamTranscodeStreamNumRequest extends RpcAcsRequest<D
2727

2828
private String domainName;
2929

30-
private Long ownerId;
30+
private Long ownerId;
31+
32+
private String splitType;
3133
public DescribeLiveStreamTranscodeStreamNumRequest() {
3234
super("live", "2016-11-01", "DescribeLiveStreamTranscodeStreamNum", "live");
3335
setMethod(MethodType.POST);
@@ -57,6 +59,17 @@ public void setOwnerId(Long ownerId) {
5759
if(ownerId != null){
5860
putQueryParameter("OwnerId", ownerId.toString());
5961
}
62+
}
63+
64+
public String getSplitType() {
65+
return this.splitType;
66+
}
67+
68+
public void setSplitType(String splitType) {
69+
this.splitType = splitType;
70+
if(splitType != null){
71+
putQueryParameter("SplitType", splitType);
72+
}
6073
}
6174

6275
@Override

aliyun-java-sdk-live/src/main/java/com/aliyuncs/live/model/v20161101/DescribeLiveStreamTranscodeStreamNumResponse.java

Lines changed: 40 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,8 @@
1313
*/
1414

1515
package com.aliyuncs.live.model.v20161101;
16-
16+
17+
import java.util.List;
1718
import com.aliyuncs.AcsResponse;
1819
import com.aliyuncs.live.transform.v20161101.DescribeLiveStreamTranscodeStreamNumResponseUnmarshaller;
1920
import com.aliyuncs.transform.UnmarshallerContext;
@@ -34,6 +35,8 @@ public class DescribeLiveStreamTranscodeStreamNumResponse extends AcsResponse {
3435

3536
private Long total;
3637

38+
private List<Transcode_details> transcodeStreamCountDetails;
39+
3740
public Long getUntranscodeNumber() {
3841
return this.untranscodeNumber;
3942
}
@@ -74,8 +77,44 @@ public void setTotal(Long total) {
7477
this.total = total;
7578
}
7679

80+
public List<Transcode_details> getTranscodeStreamCountDetails() {
81+
return this.transcodeStreamCountDetails;
82+
}
83+
84+
public void setTranscodeStreamCountDetails(List<Transcode_details> transcodeStreamCountDetails) {
85+
this.transcodeStreamCountDetails = transcodeStreamCountDetails;
86+
}
87+
88+
public static class Transcode_details {
89+
90+
private String template;
91+
92+
private Integer count;
93+
94+
public String getTemplate() {
95+
return this.template;
96+
}
97+
98+
public void setTemplate(String template) {
99+
this.template = template;
100+
}
101+
102+
public Integer getCount() {
103+
return this.count;
104+
}
105+
106+
public void setCount(Integer count) {
107+
this.count = count;
108+
}
109+
}
110+
77111
@Override
78112
public DescribeLiveStreamTranscodeStreamNumResponse getInstance(UnmarshallerContext context) {
79113
return DescribeLiveStreamTranscodeStreamNumResponseUnmarshaller.unmarshall(this, context);
80114
}
115+
116+
@Override
117+
public boolean checkShowJsonItemName() {
118+
return false;
119+
}
81120
}

aliyun-java-sdk-live/src/main/java/com/aliyuncs/live/model/v20161101/DescribeLiveStreamsNotifyUrlConfigRequest.java

Lines changed: 0 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -25,8 +25,6 @@
2525
public class DescribeLiveStreamsNotifyUrlConfigRequest extends RpcAcsRequest<DescribeLiveStreamsNotifyUrlConfigResponse> {
2626

2727

28-
private String notifyType;
29-
3028
private String domainName;
3129

3230
private Long ownerId;
@@ -39,17 +37,6 @@ public DescribeLiveStreamsNotifyUrlConfigRequest() {
3937
} catch (Exception e) {}
4038
}
4139

42-
public String getNotifyType() {
43-
return this.notifyType;
44-
}
45-
46-
public void setNotifyType(String notifyType) {
47-
this.notifyType = notifyType;
48-
if(notifyType != null){
49-
putQueryParameter("NotifyType", notifyType);
50-
}
51-
}
52-
5340
public String getDomainName() {
5441
return this.domainName;
5542
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
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.ProtocolType;
19+
import com.aliyuncs.http.MethodType;
20+
import com.aliyuncs.live.Endpoint;
21+
22+
/**
23+
* @author auto create
24+
* @version
25+
*/
26+
public class DescribeRtcCloudRecordingFilesRequest extends RpcAcsRequest<DescribeRtcCloudRecordingFilesResponse> {
27+
28+
29+
private String taskId;
30+
public DescribeRtcCloudRecordingFilesRequest() {
31+
super("live", "2016-11-01", "DescribeRtcCloudRecordingFiles", "live");
32+
setProtocol(ProtocolType.HTTPS);
33+
setMethod(MethodType.POST);
34+
try {
35+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointMap").set(this, Endpoint.endpointMap);
36+
com.aliyuncs.AcsRequest.class.getDeclaredField("productEndpointRegional").set(this, Endpoint.endpointRegionalType);
37+
} catch (Exception e) {}
38+
}
39+
40+
public String getTaskId() {
41+
return this.taskId;
42+
}
43+
44+
public void setTaskId(String taskId) {
45+
this.taskId = taskId;
46+
if(taskId != null){
47+
putQueryParameter("TaskId", taskId);
48+
}
49+
}
50+
51+
@Override
52+
public Class<DescribeRtcCloudRecordingFilesResponse> getResponseClass() {
53+
return DescribeRtcCloudRecordingFilesResponse.class;
54+
}
55+
56+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,123 @@
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 java.util.List;
18+
import com.aliyuncs.AcsResponse;
19+
import com.aliyuncs.live.transform.v20161101.DescribeRtcCloudRecordingFilesResponseUnmarshaller;
20+
import com.aliyuncs.transform.UnmarshallerContext;
21+
22+
/**
23+
* @author auto create
24+
* @version
25+
*/
26+
public class DescribeRtcCloudRecordingFilesResponse extends AcsResponse {
27+
28+
private String requestId;
29+
30+
private TaskInfo taskInfo;
31+
32+
public String getRequestId() {
33+
return this.requestId;
34+
}
35+
36+
public void setRequestId(String requestId) {
37+
this.requestId = requestId;
38+
}
39+
40+
public TaskInfo getTaskInfo() {
41+
return this.taskInfo;
42+
}
43+
44+
public void setTaskInfo(TaskInfo taskInfo) {
45+
this.taskInfo = taskInfo;
46+
}
47+
48+
public static class TaskInfo {
49+
50+
private String taskId;
51+
52+
private String status;
53+
54+
private RecordFileList recordFileList;
55+
56+
public String getTaskId() {
57+
return this.taskId;
58+
}
59+
60+
public void setTaskId(String taskId) {
61+
this.taskId = taskId;
62+
}
63+
64+
public String getStatus() {
65+
return this.status;
66+
}
67+
68+
public void setStatus(String status) {
69+
this.status = status;
70+
}
71+
72+
public RecordFileList getRecordFileList() {
73+
return this.recordFileList;
74+
}
75+
76+
public void setRecordFileList(RecordFileList recordFileList) {
77+
this.recordFileList = recordFileList;
78+
}
79+
80+
public static class RecordFileList {
81+
82+
private List<String> mp3FileList;
83+
84+
private List<String> mp4FileList;
85+
86+
private List<String> hlsFileList;
87+
88+
public List<String> getMp3FileList() {
89+
return this.mp3FileList;
90+
}
91+
92+
public void setMp3FileList(List<String> mp3FileList) {
93+
this.mp3FileList = mp3FileList;
94+
}
95+
96+
public List<String> getMp4FileList() {
97+
return this.mp4FileList;
98+
}
99+
100+
public void setMp4FileList(List<String> mp4FileList) {
101+
this.mp4FileList = mp4FileList;
102+
}
103+
104+
public List<String> getHlsFileList() {
105+
return this.hlsFileList;
106+
}
107+
108+
public void setHlsFileList(List<String> hlsFileList) {
109+
this.hlsFileList = hlsFileList;
110+
}
111+
}
112+
}
113+
114+
@Override
115+
public DescribeRtcCloudRecordingFilesResponse getInstance(UnmarshallerContext context) {
116+
return DescribeRtcCloudRecordingFilesResponseUnmarshaller.unmarshall(this, context);
117+
}
118+
119+
@Override
120+
public boolean checkShowJsonItemName() {
121+
return false;
122+
}
123+
}

0 commit comments

Comments
 (0)