@@ -17633,6 +17633,8 @@ public class DeleteMediaConnectFlowResponse : Tea.TeaModel {
17633
17633
public class DeleteMediaConnectFlowInputRequest : Tea.TeaModel {
17634
17634
public var flowId: String?
17635
17635
17636
+ public var inputName: String?
17637
+
17636
17638
public override init() {
17637
17639
super.init()
17638
17640
}
@@ -17650,13 +17652,19 @@ public class DeleteMediaConnectFlowInputRequest : Tea.TeaModel {
17650
17652
if self.flowId != nil {
17651
17653
map["FlowId"] = self.flowId!
17652
17654
}
17655
+ if self.inputName != nil {
17656
+ map["InputName"] = self.inputName!
17657
+ }
17653
17658
return map
17654
17659
}
17655
17660
17656
17661
public override func fromMap(_ dict: [String: Any]) -> Void {
17657
17662
if dict.keys.contains("FlowId") {
17658
17663
self.flowId = dict["FlowId"] as! String
17659
17664
}
17665
+ if dict.keys.contains("InputName") {
17666
+ self.inputName = dict["InputName"] as! String
17667
+ }
17660
17668
}
17661
17669
}
17662
17670
@@ -30293,6 +30301,8 @@ public class GetMediaConnectFlowResponseBody : Tea.TeaModel {
30293
30301
public class Content : Tea.TeaModel {
30294
30302
public var createTime: String?
30295
30303
30304
+ public var flowFailover: String?
30305
+
30296
30306
public var flowId: String?
30297
30307
30298
30308
public var flowName: String?
@@ -30318,6 +30328,9 @@ public class GetMediaConnectFlowResponseBody : Tea.TeaModel {
30318
30328
if self.createTime != nil {
30319
30329
map["CreateTime"] = self.createTime!
30320
30330
}
30331
+ if self.flowFailover != nil {
30332
+ map["FlowFailover"] = self.flowFailover!
30333
+ }
30321
30334
if self.flowId != nil {
30322
30335
map["FlowId"] = self.flowId!
30323
30336
}
@@ -30337,6 +30350,9 @@ public class GetMediaConnectFlowResponseBody : Tea.TeaModel {
30337
30350
if dict.keys.contains("CreateTime") {
30338
30351
self.createTime = dict["CreateTime"] as! String
30339
30352
}
30353
+ if dict.keys.contains("FlowFailover") {
30354
+ self.flowFailover = dict["FlowFailover"] as! String
30355
+ }
30340
30356
if dict.keys.contains("FlowId") {
30341
30357
self.flowId = dict["FlowId"] as! String
30342
30358
}
@@ -30488,6 +30504,24 @@ public class GetMediaConnectFlowInputRequest : Tea.TeaModel {
30488
30504
30489
30505
public class GetMediaConnectFlowInputResponseBody : Tea.TeaModel {
30490
30506
public class Content : Tea.TeaModel {
30507
+ public var backupCidrs: String?
30508
+
30509
+ public var backupCreateTime: String?
30510
+
30511
+ public var backupInputName: String?
30512
+
30513
+ public var backupInputStatus: String?
30514
+
30515
+ public var backupInputUrl: String?
30516
+
30517
+ public var backupMaxBitrate: Int32?
30518
+
30519
+ public var backupSrtLatency: Int32?
30520
+
30521
+ public var backupSrtPassphrase: String?
30522
+
30523
+ public var backupSrtPbkeyLen: Int32?
30524
+
30491
30525
public var cidrs: String?
30492
30526
30493
30527
public var createTime: String?
@@ -30496,6 +30530,8 @@ public class GetMediaConnectFlowInputResponseBody : Tea.TeaModel {
30496
30530
30497
30531
public var inputProtocol: String?
30498
30532
30533
+ public var inputStatus: String?
30534
+
30499
30535
public var inputUrl: String?
30500
30536
30501
30537
public var maxBitrate: Int32?
@@ -30524,6 +30560,33 @@ public class GetMediaConnectFlowInputResponseBody : Tea.TeaModel {
30524
30560
30525
30561
public override func toMap() -> [String : Any] {
30526
30562
var map = super.toMap()
30563
+ if self.backupCidrs != nil {
30564
+ map["BackupCidrs"] = self.backupCidrs!
30565
+ }
30566
+ if self.backupCreateTime != nil {
30567
+ map["BackupCreateTime"] = self.backupCreateTime!
30568
+ }
30569
+ if self.backupInputName != nil {
30570
+ map["BackupInputName"] = self.backupInputName!
30571
+ }
30572
+ if self.backupInputStatus != nil {
30573
+ map["BackupInputStatus"] = self.backupInputStatus!
30574
+ }
30575
+ if self.backupInputUrl != nil {
30576
+ map["BackupInputUrl"] = self.backupInputUrl!
30577
+ }
30578
+ if self.backupMaxBitrate != nil {
30579
+ map["BackupMaxBitrate"] = self.backupMaxBitrate!
30580
+ }
30581
+ if self.backupSrtLatency != nil {
30582
+ map["BackupSrtLatency"] = self.backupSrtLatency!
30583
+ }
30584
+ if self.backupSrtPassphrase != nil {
30585
+ map["BackupSrtPassphrase"] = self.backupSrtPassphrase!
30586
+ }
30587
+ if self.backupSrtPbkeyLen != nil {
30588
+ map["BackupSrtPbkeyLen"] = self.backupSrtPbkeyLen!
30589
+ }
30527
30590
if self.cidrs != nil {
30528
30591
map["Cidrs"] = self.cidrs!
30529
30592
}
@@ -30536,6 +30599,9 @@ public class GetMediaConnectFlowInputResponseBody : Tea.TeaModel {
30536
30599
if self.inputProtocol != nil {
30537
30600
map["InputProtocol"] = self.inputProtocol!
30538
30601
}
30602
+ if self.inputStatus != nil {
30603
+ map["InputStatus"] = self.inputStatus!
30604
+ }
30539
30605
if self.inputUrl != nil {
30540
30606
map["InputUrl"] = self.inputUrl!
30541
30607
}
@@ -30561,6 +30627,33 @@ public class GetMediaConnectFlowInputResponseBody : Tea.TeaModel {
30561
30627
}
30562
30628
30563
30629
public override func fromMap(_ dict: [String: Any]) -> Void {
30630
+ if dict.keys.contains("BackupCidrs") {
30631
+ self.backupCidrs = dict["BackupCidrs"] as! String
30632
+ }
30633
+ if dict.keys.contains("BackupCreateTime") {
30634
+ self.backupCreateTime = dict["BackupCreateTime"] as! String
30635
+ }
30636
+ if dict.keys.contains("BackupInputName") {
30637
+ self.backupInputName = dict["BackupInputName"] as! String
30638
+ }
30639
+ if dict.keys.contains("BackupInputStatus") {
30640
+ self.backupInputStatus = dict["BackupInputStatus"] as! String
30641
+ }
30642
+ if dict.keys.contains("BackupInputUrl") {
30643
+ self.backupInputUrl = dict["BackupInputUrl"] as! String
30644
+ }
30645
+ if dict.keys.contains("BackupMaxBitrate") {
30646
+ self.backupMaxBitrate = dict["BackupMaxBitrate"] as! Int32
30647
+ }
30648
+ if dict.keys.contains("BackupSrtLatency") {
30649
+ self.backupSrtLatency = dict["BackupSrtLatency"] as! Int32
30650
+ }
30651
+ if dict.keys.contains("BackupSrtPassphrase") {
30652
+ self.backupSrtPassphrase = dict["BackupSrtPassphrase"] as! String
30653
+ }
30654
+ if dict.keys.contains("BackupSrtPbkeyLen") {
30655
+ self.backupSrtPbkeyLen = dict["BackupSrtPbkeyLen"] as! Int32
30656
+ }
30564
30657
if dict.keys.contains("Cidrs") {
30565
30658
self.cidrs = dict["Cidrs"] as! String
30566
30659
}
@@ -30573,6 +30666,9 @@ public class GetMediaConnectFlowInputResponseBody : Tea.TeaModel {
30573
30666
if dict.keys.contains("InputProtocol") {
30574
30667
self.inputProtocol = dict["InputProtocol"] as! String
30575
30668
}
30669
+ if dict.keys.contains("InputStatus") {
30670
+ self.inputStatus = dict["InputStatus"] as! String
30671
+ }
30576
30672
if dict.keys.contains("InputUrl") {
30577
30673
self.inputUrl = dict["InputUrl"] as! String
30578
30674
}
@@ -30745,6 +30841,8 @@ public class GetMediaConnectFlowOutputResponseBody : Tea.TeaModel {
30745
30841
30746
30842
public var createTime: String?
30747
30843
30844
+ public var forbid: String?
30845
+
30748
30846
public var outputName: String?
30749
30847
30750
30848
public var outputProtocol: String?
@@ -30783,6 +30881,9 @@ public class GetMediaConnectFlowOutputResponseBody : Tea.TeaModel {
30783
30881
if self.createTime != nil {
30784
30882
map["CreateTime"] = self.createTime!
30785
30883
}
30884
+ if self.forbid != nil {
30885
+ map["Forbid"] = self.forbid!
30886
+ }
30786
30887
if self.outputName != nil {
30787
30888
map["OutputName"] = self.outputName!
30788
30889
}
@@ -30820,6 +30921,9 @@ public class GetMediaConnectFlowOutputResponseBody : Tea.TeaModel {
30820
30921
if dict.keys.contains("CreateTime") {
30821
30922
self.createTime = dict["CreateTime"] as! String
30822
30923
}
30924
+ if dict.keys.contains("Forbid") {
30925
+ self.forbid = dict["Forbid"] as! String
30926
+ }
30823
30927
if dict.keys.contains("OutputName") {
30824
30928
self.outputName = dict["OutputName"] as! String
30825
30929
}
@@ -97827,6 +97931,8 @@ public class UpdateMediaConnectFlowInputRequest : Tea.TeaModel {
97827
97931
97828
97932
public var inputFromUrl: String?
97829
97933
97934
+ public var inputName: String?
97935
+
97830
97936
public var maxBitrate: Int32?
97831
97937
97832
97938
public var srtLatency: Int32?
@@ -97858,6 +97964,9 @@ public class UpdateMediaConnectFlowInputRequest : Tea.TeaModel {
97858
97964
if self.inputFromUrl != nil {
97859
97965
map["InputFromUrl"] = self.inputFromUrl!
97860
97966
}
97967
+ if self.inputName != nil {
97968
+ map["InputName"] = self.inputName!
97969
+ }
97861
97970
if self.maxBitrate != nil {
97862
97971
map["MaxBitrate"] = self.maxBitrate!
97863
97972
}
@@ -97883,6 +97992,9 @@ public class UpdateMediaConnectFlowInputRequest : Tea.TeaModel {
97883
97992
if dict.keys.contains("InputFromUrl") {
97884
97993
self.inputFromUrl = dict["InputFromUrl"] as! String
97885
97994
}
97995
+ if dict.keys.contains("InputName") {
97996
+ self.inputName = dict["InputName"] as! String
97997
+ }
97886
97998
if dict.keys.contains("MaxBitrate") {
97887
97999
self.maxBitrate = dict["MaxBitrate"] as! Int32
97888
98000
}
0 commit comments