Skip to content

Commit 941767b

Browse files
committed
Update API CreateMediaLiveChannel: add request parameters VideoSettings.$.VideoCodecType.
1 parent 66f2649 commit 941767b

File tree

4 files changed

+37
-5
lines changed

4 files changed

+37
-5
lines changed

AlibabacloudICE20201109.podspec

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |spec|
22

33
spec.name = "AlibabacloudICE20201109"
4-
spec.version = "6.0.0"
4+
spec.version = "6.0.1"
55
spec.license = "Apache 2.0"
66
spec.summary = "Alibaba Cloud ICE (20201109) SDK Library for Swift"
77
spec.homepage = "https://github.com/alibabacloud-sdk-swift/ice-20201109"

README-CN.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
要使用 [Carthage](https://github.com/Carthage/Carthage)`AlibabacloudICE20201109` 集成到你的 Xcode 项目中,需要在 `Cartfile` 中定义以下内容:
1818

1919
```ogdl
20-
github "alibabacloud-sdk-swift/ice-20201109" "6.0.0"
20+
github "alibabacloud-sdk-swift/ice-20201109" "6.0.1"
2121
```
2222

2323
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/ice-20201109" "6.0.0"
2626

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/ice-20201109.git", from: "6.0.0")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/ice-20201109.git", from: "6.0.1")
3030
]
3131
```
3232

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ English | [简体中文](README-CN.md)
1717
To integrate `AlibabacloudICE20201109` into your Xcode project using [Carthage](https://github.com/Carthage/Carthage), specify it in your `Cartfile`:
1818

1919
```ogdl
20-
github "alibabacloud-sdk-swift/ice-20201109" "6.0.0"
20+
github "alibabacloud-sdk-swift/ice-20201109" "6.0.1"
2121
```
2222

2323
### Swift Package Manager
@@ -26,7 +26,7 @@ To integrate `AlibabacloudICE20201109` into your Xcode project using [Swift Pack
2626

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/ice-20201109.git", from: "6.0.0")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/ice-20201109.git", from: "6.0.1")
3030
]
3131
```
3232

Sources/AlibabacloudICE20201109/Models.swift

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11947,6 +11947,8 @@ public class CreateMediaLiveChannelRequest : Tea.TeaModel {
1194711947

1194811948
public var videoCodecSetting: CreateMediaLiveChannelRequest.VideoSettings.VideoCodecSetting?
1194911949

11950+
public var videoCodecType: String?
11951+
1195011952
public var width: Int32?
1195111953

1195211954
public override init() {
@@ -11976,6 +11978,9 @@ public class CreateMediaLiveChannelRequest : Tea.TeaModel {
1197611978
if self.videoCodecSetting != nil {
1197711979
map["VideoCodecSetting"] = self.videoCodecSetting?.toMap()
1197811980
}
11981+
if self.videoCodecType != nil {
11982+
map["VideoCodecType"] = self.videoCodecType!
11983+
}
1197911984
if self.width != nil {
1198011985
map["Width"] = self.width!
1198111986
}
@@ -11997,6 +12002,9 @@ public class CreateMediaLiveChannelRequest : Tea.TeaModel {
1199712002
model.fromMap(dict["VideoCodecSetting"] as! [String: Any])
1199812003
self.videoCodecSetting = model
1199912004
}
12005+
if dict.keys.contains("VideoCodecType") {
12006+
self.videoCodecType = dict["VideoCodecType"] as! String
12007+
}
1200012008
if dict.keys.contains("Width") {
1200112009
self.width = dict["Width"] as! Int32
1200212010
}
@@ -34388,6 +34396,8 @@ public class GetMediaLiveChannelResponseBody : Tea.TeaModel {
3438834396

3438934397
public var videoCodecSetting: GetMediaLiveChannelResponseBody.Channel.VideoSettings.VideoCodecSetting?
3439034398

34399+
public var videoCodecType: String?
34400+
3439134401
public var width: Int32?
3439234402

3439334403
public override init() {
@@ -34417,6 +34427,9 @@ public class GetMediaLiveChannelResponseBody : Tea.TeaModel {
3441734427
if self.videoCodecSetting != nil {
3441834428
map["VideoCodecSetting"] = self.videoCodecSetting?.toMap()
3441934429
}
34430+
if self.videoCodecType != nil {
34431+
map["VideoCodecType"] = self.videoCodecType!
34432+
}
3442034433
if self.width != nil {
3442134434
map["Width"] = self.width!
3442234435
}
@@ -34438,6 +34451,9 @@ public class GetMediaLiveChannelResponseBody : Tea.TeaModel {
3443834451
model.fromMap(dict["VideoCodecSetting"] as! [String: Any])
3443934452
self.videoCodecSetting = model
3444034453
}
34454+
if dict.keys.contains("VideoCodecType") {
34455+
self.videoCodecType = dict["VideoCodecType"] as! String
34456+
}
3444134457
if dict.keys.contains("Width") {
3444234458
self.width = dict["Width"] as! Int32
3444334459
}
@@ -56930,6 +56946,8 @@ public class ListMediaLiveChannelsResponseBody : Tea.TeaModel {
5693056946

5693156947
public var videoCodecSetting: ListMediaLiveChannelsResponseBody.Channels.VideoSettings.VideoCodecSetting?
5693256948

56949+
public var videoCodecType: String?
56950+
5693356951
public var width: Int32?
5693456952

5693556953
public override init() {
@@ -56959,6 +56977,9 @@ public class ListMediaLiveChannelsResponseBody : Tea.TeaModel {
5695956977
if self.videoCodecSetting != nil {
5696056978
map["VideoCodecSetting"] = self.videoCodecSetting?.toMap()
5696156979
}
56980+
if self.videoCodecType != nil {
56981+
map["VideoCodecType"] = self.videoCodecType!
56982+
}
5696256983
if self.width != nil {
5696356984
map["Width"] = self.width!
5696456985
}
@@ -56980,6 +57001,9 @@ public class ListMediaLiveChannelsResponseBody : Tea.TeaModel {
5698057001
model.fromMap(dict["VideoCodecSetting"] as! [String: Any])
5698157002
self.videoCodecSetting = model
5698257003
}
57004+
if dict.keys.contains("VideoCodecType") {
57005+
self.videoCodecType = dict["VideoCodecType"] as! String
57006+
}
5698357007
if dict.keys.contains("Width") {
5698457008
self.width = dict["Width"] as! Int32
5698557009
}
@@ -99473,6 +99497,8 @@ public class UpdateMediaLiveChannelRequest : Tea.TeaModel {
9947399497

9947499498
public var videoCodecSetting: UpdateMediaLiveChannelRequest.VideoSettings.VideoCodecSetting?
9947599499

99500+
public var videoCodecType: String?
99501+
9947699502
public var width: Int32?
9947799503

9947899504
public override init() {
@@ -99502,6 +99528,9 @@ public class UpdateMediaLiveChannelRequest : Tea.TeaModel {
9950299528
if self.videoCodecSetting != nil {
9950399529
map["VideoCodecSetting"] = self.videoCodecSetting?.toMap()
9950499530
}
99531+
if self.videoCodecType != nil {
99532+
map["VideoCodecType"] = self.videoCodecType!
99533+
}
9950599534
if self.width != nil {
9950699535
map["Width"] = self.width!
9950799536
}
@@ -99523,6 +99552,9 @@ public class UpdateMediaLiveChannelRequest : Tea.TeaModel {
9952399552
model.fromMap(dict["VideoCodecSetting"] as! [String: Any])
9952499553
self.videoCodecSetting = model
9952599554
}
99555+
if dict.keys.contains("VideoCodecType") {
99556+
self.videoCodecType = dict["VideoCodecType"] as! String
99557+
}
9952699558
if dict.keys.contains("Width") {
9952799559
self.width = dict["Width"] as! Int32
9952899560
}

0 commit comments

Comments
 (0)