Skip to content

Commit 10ac3b6

Browse files
committed
Update API DescribeDesktopTypes: add request parameters ScopeSet.
1 parent effcb8c commit 10ac3b6

File tree

5 files changed

+16
-5
lines changed

5 files changed

+16
-5
lines changed

AlibabacloudEcd20200930.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 = "AlibabacloudEcd20200930"
4-
spec.version = "3.3.1"
4+
spec.version = "3.3.2"
55
spec.license = "Apache 2.0"
66
spec.summary = "Alibaba Cloud ecd (20200930) SDK Library for Swift"
77
spec.homepage = "https://github.com/alibabacloud-sdk-swift/ecd-20200930"

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

1919
```ogdl
20-
github "alibabacloud-sdk-swift/ecd-20200930" "3.3.1"
20+
github "alibabacloud-sdk-swift/ecd-20200930" "3.3.2"
2121
```
2222

2323
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/ecd-20200930" "3.3.1"
2626

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

1919
```ogdl
20-
github "alibabacloud-sdk-swift/ecd-20200930" "3.3.1"
20+
github "alibabacloud-sdk-swift/ecd-20200930" "3.3.2"
2121
```
2222

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

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/ecd-20200930.git", from: "3.3.1")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/ecd-20200930.git", from: "3.3.2")
3030
]
3131
```
3232

Sources/AlibabacloudEcd20200930/Client.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4853,6 +4853,9 @@ open class Client : AlibabacloudOpenApi.Client {
48534853
if (!TeaUtils.Client.isUnset(request.scope)) {
48544854
query["Scope"] = request.scope ?? "";
48554855
}
4856+
if (!TeaUtils.Client.isUnset(request.scopeSet)) {
4857+
query["ScopeSet"] = request.scopeSet ?? [];
4858+
}
48564859
if (!TeaUtils.Client.isUnset(request.sortType)) {
48574860
query["SortType"] = request.sortType ?? "";
48584861
}

Sources/AlibabacloudEcd20200930/Models.swift

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24608,6 +24608,8 @@ public class DescribeDesktopTypesRequest : Tea.TeaModel {
2460824608

2460924609
public var scope: String?
2461024610

24611+
public var scopeSet: [String]?
24612+
2461124613
public var sortType: String?
2461224614

2461324615
public var supportMinSessionCount: Int32?
@@ -24673,6 +24675,9 @@ public class DescribeDesktopTypesRequest : Tea.TeaModel {
2467324675
if self.scope != nil {
2467424676
map["Scope"] = self.scope!
2467524677
}
24678+
if self.scopeSet != nil {
24679+
map["ScopeSet"] = self.scopeSet!
24680+
}
2467624681
if self.sortType != nil {
2467724682
map["SortType"] = self.sortType!
2467824683
}
@@ -24732,6 +24737,9 @@ public class DescribeDesktopTypesRequest : Tea.TeaModel {
2473224737
if let value = dict["Scope"] as? String {
2473324738
self.scope = value
2473424739
}
24740+
if let value = dict["ScopeSet"] as? [String] {
24741+
self.scopeSet = value
24742+
}
2473524743
if let value = dict["SortType"] as? String {
2473624744
self.sortType = value
2473724745
}

0 commit comments

Comments
 (0)