Skip to content

Commit 316bb18

Browse files
committed
Update API StartCloudRecord: add param ReservePaneForNoCameraUser.
1 parent 1d04829 commit 316bb18

File tree

5 files changed

+225
-5
lines changed

5 files changed

+225
-5
lines changed

AlibabacloudRtc20180111.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 = "AlibabacloudRtc20180111"
4-
spec.version = "5.0.2"
4+
spec.version = "5.0.3"
55
spec.license = "Apache 2.0"
66
spec.summary = "Alibaba Cloud Real-Time Communication (20180111) SDK Library for Swift"
77
spec.homepage = "https://github.com/alibabacloud-sdk-swift/rtc-20180111"

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)`AlibabacloudRtc20180111` 集成到你的 Xcode 项目中,需要在 `Cartfile` 中定义以下内容:
1818

1919
```ogdl
20-
github "alibabacloud-sdk-swift/rtc-20180111" "5.0.2"
20+
github "alibabacloud-sdk-swift/rtc-20180111" "5.0.3"
2121
```
2222

2323
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/rtc-20180111" "5.0.2"
2626

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/rtc-20180111.git", from: "5.0.2")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/rtc-20180111.git", from: "5.0.3")
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 `AlibabacloudRtc20180111` into your Xcode project using [Carthage](https://github.com/Carthage/Carthage), specify it in your `Cartfile`:
1818

1919
```ogdl
20-
github "alibabacloud-sdk-swift/rtc-20180111" "5.0.2"
20+
github "alibabacloud-sdk-swift/rtc-20180111" "5.0.3"
2121
```
2222

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

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/rtc-20180111.git", from: "5.0.2")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/rtc-20180111.git", from: "5.0.3")
3030
]
3131
```
3232

Sources/AlibabacloudRtc20180111/Client.swift

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4044,6 +4044,9 @@ open class Client : AlibabacloudOpenApi.Client {
40444044
if (!TeaUtils.Client.isUnset(request.regionColor)) {
40454045
query["RegionColor"] = request.regionColor!;
40464046
}
4047+
if (!TeaUtils.Client.isUnset(request.reservePaneForNoCameraUser)) {
4048+
query["ReservePaneForNoCameraUser"] = request.reservePaneForNoCameraUser!;
4049+
}
40474050
if (!TeaUtils.Client.isUnset(request.storageConfig)) {
40484051
query["StorageConfig"] = request.storageConfig!;
40494052
}
@@ -4344,6 +4347,15 @@ open class Client : AlibabacloudOpenApi.Client {
43444347
if (!TeaUtils.Client.isUnset(request.regionColor)) {
43454348
query["RegionColor"] = request.regionColor!;
43464349
}
4350+
if (!TeaUtils.Client.isUnset(request.reservePaneForNoCameraUser)) {
4351+
query["ReservePaneForNoCameraUser"] = request.reservePaneForNoCameraUser!;
4352+
}
4353+
if (!TeaUtils.Client.isUnset(request.startWithoutChannel)) {
4354+
query["StartWithoutChannel"] = request.startWithoutChannel!;
4355+
}
4356+
if (!TeaUtils.Client.isUnset(request.startWithoutChannelWaitTime)) {
4357+
query["StartWithoutChannelWaitTime"] = request.startWithoutChannelWaitTime!;
4358+
}
43474359
if (!TeaUtils.Client.isUnset(request.taskId)) {
43484360
query["TaskId"] = request.taskId ?? "";
43494361
}

0 commit comments

Comments
 (0)