Skip to content

Commit 4483117

Browse files
committed
Generated 2016-11-01 for live.
1 parent 31b5c5f commit 4483117

14 files changed

+225
-165
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-08-05 Version: 3.9.69
2+
- Generated 2016-11-01 for `live`.
3+
14
2025-07-29 Version: 3.9.68
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.68</version>
7+
<version>3.9.69</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/AddLiveStreamMergeRequest.java

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,6 +35,8 @@ public class AddLiveStreamMergeRequest extends RpcAcsRequest<AddLiveStreamMergeR
3535

3636
private String appName;
3737

38+
private String liveMerger;
39+
3840
private String inStreamName2;
3941

4042
private String streamName;
@@ -45,7 +47,9 @@ public class AddLiveStreamMergeRequest extends RpcAcsRequest<AddLiveStreamMergeR
4547

4648
private String endTime;
4749

48-
private Long ownerId;
50+
private Long ownerId;
51+
52+
private String mergeParameters;
4953
public AddLiveStreamMergeRequest() {
5054
super("live", "2016-11-01", "AddLiveStreamMerge", "live");
5155
setMethod(MethodType.POST);
@@ -110,6 +114,17 @@ public void setAppName(String appName) {
110114
}
111115
}
112116

117+
public String getLiveMerger() {
118+
return this.liveMerger;
119+
}
120+
121+
public void setLiveMerger(String liveMerger) {
122+
this.liveMerger = liveMerger;
123+
if(liveMerger != null){
124+
putQueryParameter("LiveMerger", liveMerger);
125+
}
126+
}
127+
113128
public String getInStreamName2() {
114129
return this.inStreamName2;
115130
}
@@ -174,6 +189,17 @@ public void setOwnerId(Long ownerId) {
174189
if(ownerId != null){
175190
putQueryParameter("OwnerId", ownerId.toString());
176191
}
192+
}
193+
194+
public String getMergeParameters() {
195+
return this.mergeParameters;
196+
}
197+
198+
public void setMergeParameters(String mergeParameters) {
199+
this.mergeParameters = mergeParameters;
200+
if(mergeParameters != null){
201+
putQueryParameter("MergeParameters", mergeParameters);
202+
}
177203
}
178204

179205
@Override

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ public class AddLiveStreamMergeResponse extends AcsResponse {
2626

2727
private String requestId;
2828

29+
private String message;
30+
2931
public String getRequestId() {
3032
return this.requestId;
3133
}
@@ -34,6 +36,14 @@ public void setRequestId(String requestId) {
3436
this.requestId = requestId;
3537
}
3638

39+
public String getMessage() {
40+
return this.message;
41+
}
42+
43+
public void setMessage(String message) {
44+
this.message = message;
45+
}
46+
3747
@Override
3848
public AddLiveStreamMergeResponse getInstance(UnmarshallerContext context) {
3949
return AddLiveStreamMergeResponseUnmarshaller.unmarshall(this, context);

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

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -123,6 +123,8 @@ public static class Callback {
123123

124124
private String notifyUrl;
125125

126+
private String notifyResponse;
127+
126128
private String streamName;
127129

128130
public String getAppName() {
@@ -189,6 +191,14 @@ public void setNotifyUrl(String notifyUrl) {
189191
this.notifyUrl = notifyUrl;
190192
}
191193

194+
public String getNotifyResponse() {
195+
return this.notifyResponse;
196+
}
197+
198+
public void setNotifyResponse(String notifyResponse) {
199+
this.notifyResponse = notifyResponse;
200+
}
201+
192202
public String getStreamName() {
193203
return this.streamName;
194204
}

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

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,10 @@ public static class LiveStreamMerge {
7373

7474
private String streamUsing;
7575

76+
private String liveMerger;
77+
78+
private String mergeParameters;
79+
7680
public String getAppName() {
7781
return this.appName;
7882
}
@@ -176,6 +180,22 @@ public String getStreamUsing() {
176180
public void setStreamUsing(String streamUsing) {
177181
this.streamUsing = streamUsing;
178182
}
183+
184+
public String getLiveMerger() {
185+
return this.liveMerger;
186+
}
187+
188+
public void setLiveMerger(String liveMerger) {
189+
this.liveMerger = liveMerger;
190+
}
191+
192+
public String getMergeParameters() {
193+
return this.mergeParameters;
194+
}
195+
196+
public void setMergeParameters(String mergeParameters) {
197+
this.mergeParameters = mergeParameters;
198+
}
179199
}
180200

181201
@Override

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

Lines changed: 45 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -87,30 +87,32 @@ public void setNotifyRecordsInfo(List<LiveStreamNotifyRecordsInfo> notifyRecords
8787

8888
public static class LiveStreamNotifyRecordsInfo {
8989

90-
private String appName;
90+
private String notifyType;
9191

9292
private String description;
9393

94+
private String streamName;
95+
96+
private String notifyTime;
97+
9498
private String domainName;
9599

96100
private String notifyContent;
97101

98-
private String notifyResult;
99-
100-
private String notifyTime;
101-
102-
private String notifyType;
102+
private String notifyResponse;
103103

104104
private String notifyUrl;
105105

106-
private String streamName;
106+
private String notifyResult;
107107

108-
public String getAppName() {
109-
return this.appName;
108+
private String appName;
109+
110+
public String getNotifyType() {
111+
return this.notifyType;
110112
}
111113

112-
public void setAppName(String appName) {
113-
this.appName = appName;
114+
public void setNotifyType(String notifyType) {
115+
this.notifyType = notifyType;
114116
}
115117

116118
public String getDescription() {
@@ -121,44 +123,44 @@ public void setDescription(String description) {
121123
this.description = description;
122124
}
123125

124-
public String getDomainName() {
125-
return this.domainName;
126+
public String getStreamName() {
127+
return this.streamName;
126128
}
127129

128-
public void setDomainName(String domainName) {
129-
this.domainName = domainName;
130+
public void setStreamName(String streamName) {
131+
this.streamName = streamName;
130132
}
131133

132-
public String getNotifyContent() {
133-
return this.notifyContent;
134+
public String getNotifyTime() {
135+
return this.notifyTime;
134136
}
135137

136-
public void setNotifyContent(String notifyContent) {
137-
this.notifyContent = notifyContent;
138+
public void setNotifyTime(String notifyTime) {
139+
this.notifyTime = notifyTime;
138140
}
139141

140-
public String getNotifyResult() {
141-
return this.notifyResult;
142+
public String getDomainName() {
143+
return this.domainName;
142144
}
143145

144-
public void setNotifyResult(String notifyResult) {
145-
this.notifyResult = notifyResult;
146+
public void setDomainName(String domainName) {
147+
this.domainName = domainName;
146148
}
147149

148-
public String getNotifyTime() {
149-
return this.notifyTime;
150+
public String getNotifyContent() {
151+
return this.notifyContent;
150152
}
151153

152-
public void setNotifyTime(String notifyTime) {
153-
this.notifyTime = notifyTime;
154+
public void setNotifyContent(String notifyContent) {
155+
this.notifyContent = notifyContent;
154156
}
155157

156-
public String getNotifyType() {
157-
return this.notifyType;
158+
public String getNotifyResponse() {
159+
return this.notifyResponse;
158160
}
159161

160-
public void setNotifyType(String notifyType) {
161-
this.notifyType = notifyType;
162+
public void setNotifyResponse(String notifyResponse) {
163+
this.notifyResponse = notifyResponse;
162164
}
163165

164166
public String getNotifyUrl() {
@@ -169,12 +171,20 @@ public void setNotifyUrl(String notifyUrl) {
169171
this.notifyUrl = notifyUrl;
170172
}
171173

172-
public String getStreamName() {
173-
return this.streamName;
174+
public String getNotifyResult() {
175+
return this.notifyResult;
174176
}
175177

176-
public void setStreamName(String streamName) {
177-
this.streamName = streamName;
178+
public void setNotifyResult(String notifyResult) {
179+
this.notifyResult = notifyResult;
180+
}
181+
182+
public String getAppName() {
183+
return this.appName;
184+
}
185+
186+
public void setAppName(String appName) {
187+
this.appName = appName;
178188
}
179189
}
180190

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

Lines changed: 1 addition & 88 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,7 @@
1313
*/
1414

1515
package com.aliyuncs.live.model.v20161101;
16-
17-
import java.util.List;
16+
1817
import com.aliyuncs.AcsResponse;
1918
import com.aliyuncs.live.transform.v20161101.DescribeRtcCloudRecordingFilesResponseUnmarshaller;
2019
import com.aliyuncs.transform.UnmarshallerContext;
@@ -25,92 +24,6 @@
2524
*/
2625
public class DescribeRtcCloudRecordingFilesResponse extends AcsResponse {
2726

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-
11427
@Override
11528
public DescribeRtcCloudRecordingFilesResponse getInstance(UnmarshallerContext context) {
11629
return DescribeRtcCloudRecordingFilesResponseUnmarshaller.unmarshall(this, context);

0 commit comments

Comments
 (0)