Skip to content

Commit c0b2920

Browse files
committed
Generated java-async 2020-11-09 for ICE.
1 parent 9a78c8b commit c0b2920

File tree

7 files changed

+302
-1
lines changed

7 files changed

+302
-1
lines changed

ice-20201109/ChangeLog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
2025-04-24 Version: 5.0.6
2+
- Generated java-async 2020-11-09 for ICE.
3+
14
2025-04-22 Version: 5.0.5
25
- Generated java-async 2020-11-09 for ICE.
36

ice-20201109/pom.xml

Lines changed: 1 addition & 1 deletion
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-ice20201109</artifactId>
6-
<version>5.0.5</version>
6+
<version>5.0.6</version>
77
<packaging>jar</packaging>
88
<name>alibabacloud-ice20201109</name>
99
<description>Alibaba Cloud ICE (20201109) Async SDK for Java

ice-20201109/src/main/java/com/aliyun/sdk/service/ice20201109/models/DeleteMediaConnectFlowInputRequest.java

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,14 @@ public class DeleteMediaConnectFlowInputRequest extends Request {
2222
@com.aliyun.core.annotation.Validation(required = true)
2323
private String flowId;
2424

25+
@com.aliyun.core.annotation.Query
26+
@com.aliyun.core.annotation.NameInMap("InputName")
27+
private String inputName;
28+
2529
private DeleteMediaConnectFlowInputRequest(Builder builder) {
2630
super(builder);
2731
this.flowId = builder.flowId;
32+
this.inputName = builder.inputName;
2833
}
2934

3035
public static Builder builder() {
@@ -47,8 +52,16 @@ public String getFlowId() {
4752
return this.flowId;
4853
}
4954

55+
/**
56+
* @return inputName
57+
*/
58+
public String getInputName() {
59+
return this.inputName;
60+
}
61+
5062
public static final class Builder extends Request.Builder<DeleteMediaConnectFlowInputRequest, Builder> {
5163
private String flowId;
64+
private String inputName;
5265

5366
private Builder() {
5467
super();
@@ -57,6 +70,7 @@ private Builder() {
5770
private Builder(DeleteMediaConnectFlowInputRequest request) {
5871
super(request);
5972
this.flowId = request.flowId;
73+
this.inputName = request.inputName;
6074
}
6175

6276
/**
@@ -72,6 +86,15 @@ public Builder flowId(String flowId) {
7286
return this;
7387
}
7488

89+
/**
90+
* InputName.
91+
*/
92+
public Builder inputName(String inputName) {
93+
this.putQueryParameter("InputName", inputName);
94+
this.inputName = inputName;
95+
return this;
96+
}
97+
7598
@Override
7699
public DeleteMediaConnectFlowInputRequest build() {
77100
return new DeleteMediaConnectFlowInputRequest(this);

ice-20201109/src/main/java/com/aliyun/sdk/service/ice20201109/models/GetMediaConnectFlowInputResponseBody.java

Lines changed: 210 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -146,6 +146,33 @@ public GetMediaConnectFlowInputResponseBody build() {
146146
* <p>GetMediaConnectFlowInputResponseBody</p>
147147
*/
148148
public static class Content extends TeaModel {
149+
@com.aliyun.core.annotation.NameInMap("BackupCidrs")
150+
private String backupCidrs;
151+
152+
@com.aliyun.core.annotation.NameInMap("BackupCreateTime")
153+
private String backupCreateTime;
154+
155+
@com.aliyun.core.annotation.NameInMap("BackupInputName")
156+
private String backupInputName;
157+
158+
@com.aliyun.core.annotation.NameInMap("BackupInputStatus")
159+
private String backupInputStatus;
160+
161+
@com.aliyun.core.annotation.NameInMap("BackupInputUrl")
162+
private String backupInputUrl;
163+
164+
@com.aliyun.core.annotation.NameInMap("BackupMaxBitrate")
165+
private Integer backupMaxBitrate;
166+
167+
@com.aliyun.core.annotation.NameInMap("BackupSrtLatency")
168+
private Integer backupSrtLatency;
169+
170+
@com.aliyun.core.annotation.NameInMap("BackupSrtPassphrase")
171+
private String backupSrtPassphrase;
172+
173+
@com.aliyun.core.annotation.NameInMap("BackupSrtPbkeyLen")
174+
private Integer backupSrtPbkeyLen;
175+
149176
@com.aliyun.core.annotation.NameInMap("Cidrs")
150177
private String cidrs;
151178

@@ -158,6 +185,9 @@ public static class Content extends TeaModel {
158185
@com.aliyun.core.annotation.NameInMap("InputProtocol")
159186
private String inputProtocol;
160187

188+
@com.aliyun.core.annotation.NameInMap("InputStatus")
189+
private String inputStatus;
190+
161191
@com.aliyun.core.annotation.NameInMap("InputUrl")
162192
private String inputUrl;
163193

@@ -180,10 +210,20 @@ public static class Content extends TeaModel {
180210
private Integer srtPbkeyLen;
181211

182212
private Content(Builder builder) {
213+
this.backupCidrs = builder.backupCidrs;
214+
this.backupCreateTime = builder.backupCreateTime;
215+
this.backupInputName = builder.backupInputName;
216+
this.backupInputStatus = builder.backupInputStatus;
217+
this.backupInputUrl = builder.backupInputUrl;
218+
this.backupMaxBitrate = builder.backupMaxBitrate;
219+
this.backupSrtLatency = builder.backupSrtLatency;
220+
this.backupSrtPassphrase = builder.backupSrtPassphrase;
221+
this.backupSrtPbkeyLen = builder.backupSrtPbkeyLen;
183222
this.cidrs = builder.cidrs;
184223
this.createTime = builder.createTime;
185224
this.inputName = builder.inputName;
186225
this.inputProtocol = builder.inputProtocol;
226+
this.inputStatus = builder.inputStatus;
187227
this.inputUrl = builder.inputUrl;
188228
this.maxBitrate = builder.maxBitrate;
189229
this.pairFlowId = builder.pairFlowId;
@@ -201,6 +241,69 @@ public static Content create() {
201241
return builder().build();
202242
}
203243

244+
/**
245+
* @return backupCidrs
246+
*/
247+
public String getBackupCidrs() {
248+
return this.backupCidrs;
249+
}
250+
251+
/**
252+
* @return backupCreateTime
253+
*/
254+
public String getBackupCreateTime() {
255+
return this.backupCreateTime;
256+
}
257+
258+
/**
259+
* @return backupInputName
260+
*/
261+
public String getBackupInputName() {
262+
return this.backupInputName;
263+
}
264+
265+
/**
266+
* @return backupInputStatus
267+
*/
268+
public String getBackupInputStatus() {
269+
return this.backupInputStatus;
270+
}
271+
272+
/**
273+
* @return backupInputUrl
274+
*/
275+
public String getBackupInputUrl() {
276+
return this.backupInputUrl;
277+
}
278+
279+
/**
280+
* @return backupMaxBitrate
281+
*/
282+
public Integer getBackupMaxBitrate() {
283+
return this.backupMaxBitrate;
284+
}
285+
286+
/**
287+
* @return backupSrtLatency
288+
*/
289+
public Integer getBackupSrtLatency() {
290+
return this.backupSrtLatency;
291+
}
292+
293+
/**
294+
* @return backupSrtPassphrase
295+
*/
296+
public String getBackupSrtPassphrase() {
297+
return this.backupSrtPassphrase;
298+
}
299+
300+
/**
301+
* @return backupSrtPbkeyLen
302+
*/
303+
public Integer getBackupSrtPbkeyLen() {
304+
return this.backupSrtPbkeyLen;
305+
}
306+
204307
/**
205308
* @return cidrs
206309
*/
@@ -229,6 +332,13 @@ public String getInputProtocol() {
229332
return this.inputProtocol;
230333
}
231334

335+
/**
336+
* @return inputStatus
337+
*/
338+
public String getInputStatus() {
339+
return this.inputStatus;
340+
}
341+
232342
/**
233343
* @return inputUrl
234344
*/
@@ -279,10 +389,20 @@ public Integer getSrtPbkeyLen() {
279389
}
280390

281391
public static final class Builder {
392+
private String backupCidrs;
393+
private String backupCreateTime;
394+
private String backupInputName;
395+
private String backupInputStatus;
396+
private String backupInputUrl;
397+
private Integer backupMaxBitrate;
398+
private Integer backupSrtLatency;
399+
private String backupSrtPassphrase;
400+
private Integer backupSrtPbkeyLen;
282401
private String cidrs;
283402
private String createTime;
284403
private String inputName;
285404
private String inputProtocol;
405+
private String inputStatus;
286406
private String inputUrl;
287407
private Integer maxBitrate;
288408
private String pairFlowId;
@@ -295,10 +415,20 @@ private Builder() {
295415
}
296416

297417
private Builder(Content model) {
418+
this.backupCidrs = model.backupCidrs;
419+
this.backupCreateTime = model.backupCreateTime;
420+
this.backupInputName = model.backupInputName;
421+
this.backupInputStatus = model.backupInputStatus;
422+
this.backupInputUrl = model.backupInputUrl;
423+
this.backupMaxBitrate = model.backupMaxBitrate;
424+
this.backupSrtLatency = model.backupSrtLatency;
425+
this.backupSrtPassphrase = model.backupSrtPassphrase;
426+
this.backupSrtPbkeyLen = model.backupSrtPbkeyLen;
298427
this.cidrs = model.cidrs;
299428
this.createTime = model.createTime;
300429
this.inputName = model.inputName;
301430
this.inputProtocol = model.inputProtocol;
431+
this.inputStatus = model.inputStatus;
302432
this.inputUrl = model.inputUrl;
303433
this.maxBitrate = model.maxBitrate;
304434
this.pairFlowId = model.pairFlowId;
@@ -308,6 +438,78 @@ private Builder(Content model) {
308438
this.srtPbkeyLen = model.srtPbkeyLen;
309439
}
310440

441+
/**
442+
* BackupCidrs.
443+
*/
444+
public Builder backupCidrs(String backupCidrs) {
445+
this.backupCidrs = backupCidrs;
446+
return this;
447+
}
448+
449+
/**
450+
* BackupCreateTime.
451+
*/
452+
public Builder backupCreateTime(String backupCreateTime) {
453+
this.backupCreateTime = backupCreateTime;
454+
return this;
455+
}
456+
457+
/**
458+
* BackupInputName.
459+
*/
460+
public Builder backupInputName(String backupInputName) {
461+
this.backupInputName = backupInputName;
462+
return this;
463+
}
464+
465+
/**
466+
* BackupInputStatus.
467+
*/
468+
public Builder backupInputStatus(String backupInputStatus) {
469+
this.backupInputStatus = backupInputStatus;
470+
return this;
471+
}
472+
473+
/**
474+
* BackupInputUrl.
475+
*/
476+
public Builder backupInputUrl(String backupInputUrl) {
477+
this.backupInputUrl = backupInputUrl;
478+
return this;
479+
}
480+
481+
/**
482+
* BackupMaxBitrate.
483+
*/
484+
public Builder backupMaxBitrate(Integer backupMaxBitrate) {
485+
this.backupMaxBitrate = backupMaxBitrate;
486+
return this;
487+
}
488+
489+
/**
490+
* BackupSrtLatency.
491+
*/
492+
public Builder backupSrtLatency(Integer backupSrtLatency) {
493+
this.backupSrtLatency = backupSrtLatency;
494+
return this;
495+
}
496+
497+
/**
498+
* BackupSrtPassphrase.
499+
*/
500+
public Builder backupSrtPassphrase(String backupSrtPassphrase) {
501+
this.backupSrtPassphrase = backupSrtPassphrase;
502+
return this;
503+
}
504+
505+
/**
506+
* BackupSrtPbkeyLen.
507+
*/
508+
public Builder backupSrtPbkeyLen(Integer backupSrtPbkeyLen) {
509+
this.backupSrtPbkeyLen = backupSrtPbkeyLen;
510+
return this;
511+
}
512+
311513
/**
312514
* <p>The IP address whitelist in CIDR format. CIDR blocks are separated with commas (,).</p>
313515
*
@@ -360,6 +562,14 @@ public Builder inputProtocol(String inputProtocol) {
360562
return this;
361563
}
362564

565+
/**
566+
* InputStatus.
567+
*/
568+
public Builder inputStatus(String inputStatus) {
569+
this.inputStatus = inputStatus;
570+
return this;
571+
}
572+
363573
/**
364574
* <p>The source URL.</p>
365575
*

0 commit comments

Comments
 (0)