Skip to content

Commit cc6acc1

Browse files
committed
Generated java-async 2016-11-01 for live.
1 parent 96802bc commit cc6acc1

File tree

6 files changed

+162
-3
lines changed

6 files changed

+162
-3
lines changed

live-20161101/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-11-04 Version: 2.0.8
2+
- Generated java-async 2016-11-01 for live.
3+
14
2025-10-29 Version: 2.0.7
25
- Generated java-async 2016-11-01 for live.
36

live-20161101/pom.xml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
<modelVersion>4.0.0</modelVersion>
44
<groupId>com.aliyun</groupId>
55
<artifactId>alibabacloud-live20161101</artifactId>
6-
<version>2.0.7</version>
6+
<version>2.0.8</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-live20161101</name>
99
<description>Alibaba Cloud live (20161101) Async SDK for Java
@@ -104,12 +104,11 @@
104104
<plugin>
105105
<groupId>org.sonatype.central</groupId>
106106
<artifactId>central-publishing-maven-plugin</artifactId>
107-
<version>0.8.0</version>
107+
<version>0.9.0</version>
108108
<extensions>true</extensions>
109109
<configuration>
110110
<publishingServerId>central</publishingServerId>
111111
<autoPublish>true</autoPublish>
112-
<waitUntil>published</waitUntil>
113112
</configuration>
114113
</plugin>
115114
</plugins>

live-20161101/src/main/java/com/aliyun/sdk/service/live20161101/models/AddLiveRecordNotifyConfigRequest.java

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,15 @@ public class AddLiveRecordNotifyConfigRequest extends Request {
2626
@com.aliyun.core.annotation.NameInMap("NeedStatusNotify")
2727
private Boolean needStatusNotify;
2828

29+
@com.aliyun.core.annotation.Query
30+
@com.aliyun.core.annotation.NameInMap("NotifyAuthKey")
31+
@com.aliyun.core.annotation.Validation(maxLength = 64, minLength = 16)
32+
private String notifyAuthKey;
33+
34+
@com.aliyun.core.annotation.Query
35+
@com.aliyun.core.annotation.NameInMap("NotifyReqAuth")
36+
private Boolean notifyReqAuth;
37+
2938
@com.aliyun.core.annotation.Query
3039
@com.aliyun.core.annotation.NameInMap("NotifyUrl")
3140
@com.aliyun.core.annotation.Validation(required = true)
@@ -47,6 +56,8 @@ private AddLiveRecordNotifyConfigRequest(Builder builder) {
4756
super(builder);
4857
this.domainName = builder.domainName;
4958
this.needStatusNotify = builder.needStatusNotify;
59+
this.notifyAuthKey = builder.notifyAuthKey;
60+
this.notifyReqAuth = builder.notifyReqAuth;
5061
this.notifyUrl = builder.notifyUrl;
5162
this.onDemandUrl = builder.onDemandUrl;
5263
this.ownerId = builder.ownerId;
@@ -80,6 +91,20 @@ public Boolean getNeedStatusNotify() {
8091
return this.needStatusNotify;
8192
}
8293

94+
/**
95+
* @return notifyAuthKey
96+
*/
97+
public String getNotifyAuthKey() {
98+
return this.notifyAuthKey;
99+
}
100+
101+
/**
102+
* @return notifyReqAuth
103+
*/
104+
public Boolean getNotifyReqAuth() {
105+
return this.notifyReqAuth;
106+
}
107+
83108
/**
84109
* @return notifyUrl
85110
*/
@@ -111,6 +136,8 @@ public String getSecurityToken() {
111136
public static final class Builder extends Request.Builder<AddLiveRecordNotifyConfigRequest, Builder> {
112137
private String domainName;
113138
private Boolean needStatusNotify;
139+
private String notifyAuthKey;
140+
private Boolean notifyReqAuth;
114141
private String notifyUrl;
115142
private String onDemandUrl;
116143
private Long ownerId;
@@ -124,6 +151,8 @@ private Builder(AddLiveRecordNotifyConfigRequest request) {
124151
super(request);
125152
this.domainName = request.domainName;
126153
this.needStatusNotify = request.needStatusNotify;
154+
this.notifyAuthKey = request.notifyAuthKey;
155+
this.notifyReqAuth = request.notifyReqAuth;
127156
this.notifyUrl = request.notifyUrl;
128157
this.onDemandUrl = request.onDemandUrl;
129158
this.ownerId = request.ownerId;
@@ -159,6 +188,24 @@ public Builder needStatusNotify(Boolean needStatusNotify) {
159188
return this;
160189
}
161190

191+
/**
192+
* NotifyAuthKey.
193+
*/
194+
public Builder notifyAuthKey(String notifyAuthKey) {
195+
this.putQueryParameter("NotifyAuthKey", notifyAuthKey);
196+
this.notifyAuthKey = notifyAuthKey;
197+
return this;
198+
}
199+
200+
/**
201+
* NotifyReqAuth.
202+
*/
203+
public Builder notifyReqAuth(Boolean notifyReqAuth) {
204+
this.putQueryParameter("NotifyReqAuth", notifyReqAuth);
205+
this.notifyReqAuth = notifyReqAuth;
206+
return this;
207+
}
208+
162209
/**
163210
* <p>The callback URL that is used to receive notifications about recording events and status.</p>
164211
* <blockquote>

live-20161101/src/main/java/com/aliyun/sdk/service/live20161101/models/DescribeLiveRecordNotifyConfigResponseBody.java

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -104,6 +104,12 @@ public static class LiveRecordNotifyConfig extends TeaModel {
104104
@com.aliyun.core.annotation.NameInMap("NeedStatusNotify")
105105
private Boolean needStatusNotify;
106106

107+
@com.aliyun.core.annotation.NameInMap("NotifyAuthKey")
108+
private String notifyAuthKey;
109+
110+
@com.aliyun.core.annotation.NameInMap("NotifyReqAuth")
111+
private Boolean notifyReqAuth;
112+
107113
@com.aliyun.core.annotation.NameInMap("NotifyUrl")
108114
private String notifyUrl;
109115

@@ -113,6 +119,8 @@ public static class LiveRecordNotifyConfig extends TeaModel {
113119
private LiveRecordNotifyConfig(Builder builder) {
114120
this.domainName = builder.domainName;
115121
this.needStatusNotify = builder.needStatusNotify;
122+
this.notifyAuthKey = builder.notifyAuthKey;
123+
this.notifyReqAuth = builder.notifyReqAuth;
116124
this.notifyUrl = builder.notifyUrl;
117125
this.onDemandUrl = builder.onDemandUrl;
118126
}
@@ -139,6 +147,20 @@ public Boolean getNeedStatusNotify() {
139147
return this.needStatusNotify;
140148
}
141149

150+
/**
151+
* @return notifyAuthKey
152+
*/
153+
public String getNotifyAuthKey() {
154+
return this.notifyAuthKey;
155+
}
156+
157+
/**
158+
* @return notifyReqAuth
159+
*/
160+
public Boolean getNotifyReqAuth() {
161+
return this.notifyReqAuth;
162+
}
163+
142164
/**
143165
* @return notifyUrl
144166
*/
@@ -156,6 +178,8 @@ public String getOnDemandUrl() {
156178
public static final class Builder {
157179
private String domainName;
158180
private Boolean needStatusNotify;
181+
private String notifyAuthKey;
182+
private Boolean notifyReqAuth;
159183
private String notifyUrl;
160184
private String onDemandUrl;
161185

@@ -165,6 +189,8 @@ private Builder() {
165189
private Builder(LiveRecordNotifyConfig model) {
166190
this.domainName = model.domainName;
167191
this.needStatusNotify = model.needStatusNotify;
192+
this.notifyAuthKey = model.notifyAuthKey;
193+
this.notifyReqAuth = model.notifyReqAuth;
168194
this.notifyUrl = model.notifyUrl;
169195
this.onDemandUrl = model.onDemandUrl;
170196
}
@@ -195,6 +221,22 @@ public Builder needStatusNotify(Boolean needStatusNotify) {
195221
return this;
196222
}
197223

224+
/**
225+
* NotifyAuthKey.
226+
*/
227+
public Builder notifyAuthKey(String notifyAuthKey) {
228+
this.notifyAuthKey = notifyAuthKey;
229+
return this;
230+
}
231+
232+
/**
233+
* NotifyReqAuth.
234+
*/
235+
public Builder notifyReqAuth(Boolean notifyReqAuth) {
236+
this.notifyReqAuth = notifyReqAuth;
237+
return this;
238+
}
239+
198240
/**
199241
* <p>The recording callback URL.</p>
200242
*

live-20161101/src/main/java/com/aliyun/sdk/service/live20161101/models/DescribeLiveRecordNotifyRecordsResponseBody.java

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -254,6 +254,9 @@ public static class CallbackList extends TeaModel {
254254
@com.aliyun.core.annotation.NameInMap("NotifyContent")
255255
private String notifyContent;
256256

257+
@com.aliyun.core.annotation.NameInMap("NotifyHeader")
258+
private String notifyHeader;
259+
257260
@com.aliyun.core.annotation.NameInMap("NotifyResponse")
258261
private String notifyResponse;
259262

@@ -277,6 +280,7 @@ private CallbackList(Builder builder) {
277280
this.description = builder.description;
278281
this.domainName = builder.domainName;
279282
this.notifyContent = builder.notifyContent;
283+
this.notifyHeader = builder.notifyHeader;
280284
this.notifyResponse = builder.notifyResponse;
281285
this.notifyResult = builder.notifyResult;
282286
this.notifyTime = builder.notifyTime;
@@ -321,6 +325,13 @@ public String getNotifyContent() {
321325
return this.notifyContent;
322326
}
323327

328+
/**
329+
* @return notifyHeader
330+
*/
331+
public String getNotifyHeader() {
332+
return this.notifyHeader;
333+
}
334+
324335
/**
325336
* @return notifyResponse
326337
*/
@@ -368,6 +379,7 @@ public static final class Builder {
368379
private String description;
369380
private String domainName;
370381
private String notifyContent;
382+
private String notifyHeader;
371383
private String notifyResponse;
372384
private String notifyResult;
373385
private String notifyTime;
@@ -383,6 +395,7 @@ private Builder(CallbackList model) {
383395
this.description = model.description;
384396
this.domainName = model.domainName;
385397
this.notifyContent = model.notifyContent;
398+
this.notifyHeader = model.notifyHeader;
386399
this.notifyResponse = model.notifyResponse;
387400
this.notifyResult = model.notifyResult;
388401
this.notifyTime = model.notifyTime;
@@ -435,6 +448,14 @@ public Builder notifyContent(String notifyContent) {
435448
return this;
436449
}
437450

451+
/**
452+
* NotifyHeader.
453+
*/
454+
public Builder notifyHeader(String notifyHeader) {
455+
this.notifyHeader = notifyHeader;
456+
return this;
457+
}
458+
438459
/**
439460
* NotifyResponse.
440461
*/

live-20161101/src/main/java/com/aliyun/sdk/service/live20161101/models/UpdateLiveRecordNotifyConfigRequest.java

Lines changed: 47 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,15 @@ public class UpdateLiveRecordNotifyConfigRequest extends Request {
2626
@com.aliyun.core.annotation.NameInMap("NeedStatusNotify")
2727
private Boolean needStatusNotify;
2828

29+
@com.aliyun.core.annotation.Query
30+
@com.aliyun.core.annotation.NameInMap("NotifyAuthKey")
31+
@com.aliyun.core.annotation.Validation(maxLength = 64, minLength = 16)
32+
private String notifyAuthKey;
33+
34+
@com.aliyun.core.annotation.Query
35+
@com.aliyun.core.annotation.NameInMap("NotifyReqAuth")
36+
private Boolean notifyReqAuth;
37+
2938
@com.aliyun.core.annotation.Query
3039
@com.aliyun.core.annotation.NameInMap("NotifyUrl")
3140
@com.aliyun.core.annotation.Validation(required = true)
@@ -47,6 +56,8 @@ private UpdateLiveRecordNotifyConfigRequest(Builder builder) {
4756
super(builder);
4857
this.domainName = builder.domainName;
4958
this.needStatusNotify = builder.needStatusNotify;
59+
this.notifyAuthKey = builder.notifyAuthKey;
60+
this.notifyReqAuth = builder.notifyReqAuth;
5061
this.notifyUrl = builder.notifyUrl;
5162
this.onDemandUrl = builder.onDemandUrl;
5263
this.ownerId = builder.ownerId;
@@ -80,6 +91,20 @@ public Boolean getNeedStatusNotify() {
8091
return this.needStatusNotify;
8192
}
8293

94+
/**
95+
* @return notifyAuthKey
96+
*/
97+
public String getNotifyAuthKey() {
98+
return this.notifyAuthKey;
99+
}
100+
101+
/**
102+
* @return notifyReqAuth
103+
*/
104+
public Boolean getNotifyReqAuth() {
105+
return this.notifyReqAuth;
106+
}
107+
83108
/**
84109
* @return notifyUrl
85110
*/
@@ -111,6 +136,8 @@ public String getSecurityToken() {
111136
public static final class Builder extends Request.Builder<UpdateLiveRecordNotifyConfigRequest, Builder> {
112137
private String domainName;
113138
private Boolean needStatusNotify;
139+
private String notifyAuthKey;
140+
private Boolean notifyReqAuth;
114141
private String notifyUrl;
115142
private String onDemandUrl;
116143
private Long ownerId;
@@ -124,6 +151,8 @@ private Builder(UpdateLiveRecordNotifyConfigRequest request) {
124151
super(request);
125152
this.domainName = request.domainName;
126153
this.needStatusNotify = request.needStatusNotify;
154+
this.notifyAuthKey = request.notifyAuthKey;
155+
this.notifyReqAuth = request.notifyReqAuth;
127156
this.notifyUrl = request.notifyUrl;
128157
this.onDemandUrl = request.onDemandUrl;
129158
this.ownerId = request.ownerId;
@@ -159,6 +188,24 @@ public Builder needStatusNotify(Boolean needStatusNotify) {
159188
return this;
160189
}
161190

191+
/**
192+
* NotifyAuthKey.
193+
*/
194+
public Builder notifyAuthKey(String notifyAuthKey) {
195+
this.putQueryParameter("NotifyAuthKey", notifyAuthKey);
196+
this.notifyAuthKey = notifyAuthKey;
197+
return this;
198+
}
199+
200+
/**
201+
* NotifyReqAuth.
202+
*/
203+
public Builder notifyReqAuth(Boolean notifyReqAuth) {
204+
this.putQueryParameter("NotifyReqAuth", notifyReqAuth);
205+
this.notifyReqAuth = notifyReqAuth;
206+
return this;
207+
}
208+
162209
/**
163210
* <p>The callback URL that is used to receive notifications about recording events and status.</p>
164211
* <blockquote>

0 commit comments

Comments
 (0)