Skip to content

Commit 0f297f6

Browse files
committed
Generated 2016-11-01 for live.
1 parent a8129b9 commit 0f297f6

12 files changed

+161
-48
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-12-02 Version: 3.9.74
2+
- Generated 2016-11-01 for `live`.
3+
14
2025-10-29 Version: 3.9.73
25
- Generated 2016-11-01 for `live`.
36

aliyun-java-sdk-live/pom.xml

Lines changed: 2 additions & 3 deletions
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.73</version>
7+
<version>3.9.74</version>
88
<name>aliyun-java-sdk-live</name>
99
<url>http://www.aliyun.com</url>
1010
<description>Aliyun Open API SDK for Java
@@ -105,12 +105,11 @@ http://www.aliyun.com</description>
105105
<plugin>
106106
<groupId>org.sonatype.central</groupId>
107107
<artifactId>central-publishing-maven-plugin</artifactId>
108-
<version>0.8.0</version>
108+
<version>0.9.0</version>
109109
<extensions>true</extensions>
110110
<configuration>
111111
<publishingServerId>central</publishingServerId>
112112
<autoPublish>true</autoPublish>
113-
<waitUntil>published</waitUntil>
114113
</configuration>
115114
</plugin>
116115
</plugins>

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

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ public class AddLiveRecordNotifyConfigRequest extends RpcAcsRequest<AddLiveRecor
2727

2828
private String onDemandUrl;
2929

30+
private Boolean notifyReqAuth;
31+
3032
private String securityToken;
3133

3234
private String notifyUrl;
@@ -35,7 +37,9 @@ public class AddLiveRecordNotifyConfigRequest extends RpcAcsRequest<AddLiveRecor
3537

3638
private String domainName;
3739

38-
private Long ownerId;
40+
private Long ownerId;
41+
42+
private String notifyAuthKey;
3943
public AddLiveRecordNotifyConfigRequest() {
4044
super("live", "2016-11-01", "AddLiveRecordNotifyConfig", "live");
4145
setMethod(MethodType.POST);
@@ -56,6 +60,17 @@ public void setOnDemandUrl(String onDemandUrl) {
5660
}
5761
}
5862

63+
public Boolean getNotifyReqAuth() {
64+
return this.notifyReqAuth;
65+
}
66+
67+
public void setNotifyReqAuth(Boolean notifyReqAuth) {
68+
this.notifyReqAuth = notifyReqAuth;
69+
if(notifyReqAuth != null){
70+
putQueryParameter("NotifyReqAuth", notifyReqAuth.toString());
71+
}
72+
}
73+
5974
public String getSecurityToken() {
6075
return this.securityToken;
6176
}
@@ -109,6 +124,17 @@ public void setOwnerId(Long ownerId) {
109124
if(ownerId != null){
110125
putQueryParameter("OwnerId", ownerId.toString());
111126
}
127+
}
128+
129+
public String getNotifyAuthKey() {
130+
return this.notifyAuthKey;
131+
}
132+
133+
public void setNotifyAuthKey(String notifyAuthKey) {
134+
this.notifyAuthKey = notifyAuthKey;
135+
if(notifyAuthKey != null){
136+
putQueryParameter("NotifyAuthKey", notifyAuthKey);
137+
}
112138
}
113139

114140
@Override

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

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -25,13 +25,13 @@
2525
public class DeleteLiveDomainRequest extends RpcAcsRequest<DeleteLiveDomainResponse> {
2626

2727

28+
private String securityToken;
29+
2830
private String ownerAccount;
2931

3032
private String domainName;
3133

32-
private Long ownerId;
33-
34-
private String securityToken;
34+
private Long ownerId;
3535
public DeleteLiveDomainRequest() {
3636
super("live", "2016-11-01", "DeleteLiveDomain", "live");
3737
setMethod(MethodType.POST);
@@ -41,6 +41,17 @@ public DeleteLiveDomainRequest() {
4141
} catch (Exception e) {}
4242
}
4343

44+
public String getSecurityToken() {
45+
return this.securityToken;
46+
}
47+
48+
public void setSecurityToken(String securityToken) {
49+
this.securityToken = securityToken;
50+
if(securityToken != null){
51+
putQueryParameter("SecurityToken", securityToken);
52+
}
53+
}
54+
4455
public String getOwnerAccount() {
4556
return this.ownerAccount;
4657
}
@@ -72,17 +83,6 @@ public void setOwnerId(Long ownerId) {
7283
if(ownerId != null){
7384
putQueryParameter("OwnerId", ownerId.toString());
7485
}
75-
}
76-
77-
public String getSecurityToken() {
78-
return this.securityToken;
79-
}
80-
81-
public void setSecurityToken(String securityToken) {
82-
this.securityToken = securityToken;
83-
if(securityToken != null){
84-
putQueryParameter("SecurityToken", securityToken);
85-
}
8686
}
8787

8888
@Override

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

Lines changed: 30 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -46,28 +46,32 @@ public void setLiveRecordNotifyConfig(LiveRecordNotifyConfig liveRecordNotifyCon
4646

4747
public static class LiveRecordNotifyConfig {
4848

49-
private Boolean needStatusNotify;
49+
private Boolean notifyReqAuth;
5050

51-
private String onDemandUrl;
51+
private String notifyAuthKey;
5252

5353
private String domainName;
5454

5555
private String notifyUrl;
5656

57-
public Boolean getNeedStatusNotify() {
58-
return this.needStatusNotify;
57+
private Boolean needStatusNotify;
58+
59+
private String onDemandUrl;
60+
61+
public Boolean getNotifyReqAuth() {
62+
return this.notifyReqAuth;
5963
}
6064

61-
public void setNeedStatusNotify(Boolean needStatusNotify) {
62-
this.needStatusNotify = needStatusNotify;
65+
public void setNotifyReqAuth(Boolean notifyReqAuth) {
66+
this.notifyReqAuth = notifyReqAuth;
6367
}
6468

65-
public String getOnDemandUrl() {
66-
return this.onDemandUrl;
69+
public String getNotifyAuthKey() {
70+
return this.notifyAuthKey;
6771
}
6872

69-
public void setOnDemandUrl(String onDemandUrl) {
70-
this.onDemandUrl = onDemandUrl;
73+
public void setNotifyAuthKey(String notifyAuthKey) {
74+
this.notifyAuthKey = notifyAuthKey;
7175
}
7276

7377
public String getDomainName() {
@@ -85,6 +89,22 @@ public String getNotifyUrl() {
8589
public void setNotifyUrl(String notifyUrl) {
8690
this.notifyUrl = notifyUrl;
8791
}
92+
93+
public Boolean getNeedStatusNotify() {
94+
return this.needStatusNotify;
95+
}
96+
97+
public void setNeedStatusNotify(Boolean needStatusNotify) {
98+
this.needStatusNotify = needStatusNotify;
99+
}
100+
101+
public String getOnDemandUrl() {
102+
return this.onDemandUrl;
103+
}
104+
105+
public void setOnDemandUrl(String onDemandUrl) {
106+
this.onDemandUrl = onDemandUrl;
107+
}
88108
}
89109

90110
@Override

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

Lines changed: 15 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -123,10 +123,12 @@ public static class Callback {
123123

124124
private String notifyUrl;
125125

126-
private String notifyResponse;
126+
private String notifyHeader;
127127

128128
private String streamName;
129129

130+
private String notifyResponse;
131+
130132
public String getAppName() {
131133
return this.appName;
132134
}
@@ -191,12 +193,12 @@ public void setNotifyUrl(String notifyUrl) {
191193
this.notifyUrl = notifyUrl;
192194
}
193195

194-
public String getNotifyResponse() {
195-
return this.notifyResponse;
196+
public String getNotifyHeader() {
197+
return this.notifyHeader;
196198
}
197199

198-
public void setNotifyResponse(String notifyResponse) {
199-
this.notifyResponse = notifyResponse;
200+
public void setNotifyHeader(String notifyHeader) {
201+
this.notifyHeader = notifyHeader;
200202
}
201203

202204
public String getStreamName() {
@@ -206,6 +208,14 @@ public String getStreamName() {
206208
public void setStreamName(String streamName) {
207209
this.streamName = streamName;
208210
}
211+
212+
public String getNotifyResponse() {
213+
return this.notifyResponse;
214+
}
215+
216+
public void setNotifyResponse(String notifyResponse) {
217+
this.notifyResponse = notifyResponse;
218+
}
209219
}
210220

211221
@Override

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

Lines changed: 20 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -99,14 +99,16 @@ public static class LiveStreamNotifyRecordsInfo {
9999

100100
private String notifyContent;
101101

102-
private String notifyResponse;
103-
104102
private String notifyUrl;
105103

106104
private String notifyResult;
107105

108106
private String appName;
109107

108+
private String notifyResponse;
109+
110+
private String notifyHeader;
111+
110112
public String getNotifyType() {
111113
return this.notifyType;
112114
}
@@ -155,14 +157,6 @@ public void setNotifyContent(String notifyContent) {
155157
this.notifyContent = notifyContent;
156158
}
157159

158-
public String getNotifyResponse() {
159-
return this.notifyResponse;
160-
}
161-
162-
public void setNotifyResponse(String notifyResponse) {
163-
this.notifyResponse = notifyResponse;
164-
}
165-
166160
public String getNotifyUrl() {
167161
return this.notifyUrl;
168162
}
@@ -186,6 +180,22 @@ public String getAppName() {
186180
public void setAppName(String appName) {
187181
this.appName = appName;
188182
}
183+
184+
public String getNotifyResponse() {
185+
return this.notifyResponse;
186+
}
187+
188+
public void setNotifyResponse(String notifyResponse) {
189+
this.notifyResponse = notifyResponse;
190+
}
191+
192+
public String getNotifyHeader() {
193+
return this.notifyHeader;
194+
}
195+
196+
public void setNotifyHeader(String notifyHeader) {
197+
this.notifyHeader = notifyHeader;
198+
}
189199
}
190200

191201
@Override

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

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ public class StartRtcCloudRecordingRequest extends RpcAcsRequest<StartRtcCloudRe
4545
@SerializedName("mixTranscodeParams")
4646
private MixTranscodeParams mixTranscodeParams;
4747

48+
private List<String> notifyFileUploadedFormats;
49+
4850
private String notifyAuthKey;
4951

5052
private String appId;
@@ -129,6 +131,19 @@ public void setMixTranscodeParams(MixTranscodeParams mixTranscodeParams) {
129131
}
130132
}
131133

134+
public List<String> getNotifyFileUploadedFormats() {
135+
return this.notifyFileUploadedFormats;
136+
}
137+
138+
public void setNotifyFileUploadedFormats(List<String> notifyFileUploadedFormats) {
139+
this.notifyFileUploadedFormats = notifyFileUploadedFormats;
140+
if (notifyFileUploadedFormats != null) {
141+
for (int i = 0; i < notifyFileUploadedFormats.size(); i++) {
142+
putQueryParameter("NotifyFileUploadedFormat." + (i + 1) , notifyFileUploadedFormats.get(i));
143+
}
144+
}
145+
}
146+
132147
public String getNotifyAuthKey() {
133148
return this.notifyAuthKey;
134149
}

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

Lines changed: 27 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,8 @@ public class UpdateLiveRecordNotifyConfigRequest extends RpcAcsRequest<UpdateLiv
2727

2828
private String onDemandUrl;
2929

30+
private Boolean notifyReqAuth;
31+
3032
private String securityToken;
3133

3234
private String notifyUrl;
@@ -35,7 +37,9 @@ public class UpdateLiveRecordNotifyConfigRequest extends RpcAcsRequest<UpdateLiv
3537

3638
private String domainName;
3739

38-
private Long ownerId;
40+
private Long ownerId;
41+
42+
private String notifyAuthKey;
3943
public UpdateLiveRecordNotifyConfigRequest() {
4044
super("live", "2016-11-01", "UpdateLiveRecordNotifyConfig", "live");
4145
setMethod(MethodType.POST);
@@ -56,6 +60,17 @@ public void setOnDemandUrl(String onDemandUrl) {
5660
}
5761
}
5862

63+
public Boolean getNotifyReqAuth() {
64+
return this.notifyReqAuth;
65+
}
66+
67+
public void setNotifyReqAuth(Boolean notifyReqAuth) {
68+
this.notifyReqAuth = notifyReqAuth;
69+
if(notifyReqAuth != null){
70+
putQueryParameter("NotifyReqAuth", notifyReqAuth.toString());
71+
}
72+
}
73+
5974
public String getSecurityToken() {
6075
return this.securityToken;
6176
}
@@ -109,6 +124,17 @@ public void setOwnerId(Long ownerId) {
109124
if(ownerId != null){
110125
putQueryParameter("OwnerId", ownerId.toString());
111126
}
127+
}
128+
129+
public String getNotifyAuthKey() {
130+
return this.notifyAuthKey;
131+
}
132+
133+
public void setNotifyAuthKey(String notifyAuthKey) {
134+
this.notifyAuthKey = notifyAuthKey;
135+
if(notifyAuthKey != null){
136+
putQueryParameter("NotifyAuthKey", notifyAuthKey);
137+
}
112138
}
113139

114140
@Override

0 commit comments

Comments
 (0)