File tree Expand file tree Collapse file tree 5 files changed +16
-5
lines changed
Sources/AlibabacloudEcd20200930 Expand file tree Collapse file tree 5 files changed +16
-5
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |spec |
2
2
3
3
spec . name = "AlibabacloudEcd20200930"
4
- spec . version = "3.3.1 "
4
+ spec . version = "3.3.2 "
5
5
spec . license = "Apache 2.0"
6
6
spec . summary = "Alibaba Cloud ecd (20200930) SDK Library for Swift"
7
7
spec . homepage = "https://github.com/alibabacloud-sdk-swift/ecd-20200930"
Original file line number Diff line number Diff line change 17
17
要使用 [ Carthage] ( https://github.com/Carthage/Carthage ) 将 ` AlibabacloudEcd20200930 ` 集成到你的 Xcode 项目中,需要在 ` Cartfile ` 中定义以下内容:
18
18
19
19
``` ogdl
20
- github "alibabacloud-sdk-swift/ecd-20200930" "3.3.1 "
20
+ github "alibabacloud-sdk-swift/ecd-20200930" "3.3.2 "
21
21
```
22
22
23
23
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/ecd-20200930" "3.3.1"
26
26
27
27
``` swift
28
28
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 " )
30
30
]
31
31
```
32
32
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ English | [简体中文](README-CN.md)
17
17
To integrate ` AlibabacloudEcd20200930 ` into your Xcode project using [ Carthage] ( https://github.com/Carthage/Carthage ) , specify it in your ` Cartfile ` :
18
18
19
19
``` ogdl
20
- github "alibabacloud-sdk-swift/ecd-20200930" "3.3.1 "
20
+ github "alibabacloud-sdk-swift/ecd-20200930" "3.3.2 "
21
21
```
22
22
23
23
### Swift Package Manager
@@ -26,7 +26,7 @@ To integrate `AlibabacloudEcd20200930` into your Xcode project using [Swift Pack
26
26
27
27
``` swift
28
28
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 " )
30
30
]
31
31
```
32
32
Original file line number Diff line number Diff line change @@ -4853,6 +4853,9 @@ open class Client : AlibabacloudOpenApi.Client {
4853
4853
if (!TeaUtils.Client.isUnset(request.scope)) {
4854
4854
query["Scope"] = request.scope ?? "";
4855
4855
}
4856
+ if (!TeaUtils.Client.isUnset(request.scopeSet)) {
4857
+ query["ScopeSet"] = request.scopeSet ?? [];
4858
+ }
4856
4859
if (!TeaUtils.Client.isUnset(request.sortType)) {
4857
4860
query["SortType"] = request.sortType ?? "";
4858
4861
}
Original file line number Diff line number Diff line change @@ -24608,6 +24608,8 @@ public class DescribeDesktopTypesRequest : Tea.TeaModel {
24608
24608
24609
24609
public var scope: String?
24610
24610
24611
+ public var scopeSet: [String]?
24612
+
24611
24613
public var sortType: String?
24612
24614
24613
24615
public var supportMinSessionCount: Int32?
@@ -24673,6 +24675,9 @@ public class DescribeDesktopTypesRequest : Tea.TeaModel {
24673
24675
if self.scope != nil {
24674
24676
map["Scope"] = self.scope!
24675
24677
}
24678
+ if self.scopeSet != nil {
24679
+ map["ScopeSet"] = self.scopeSet!
24680
+ }
24676
24681
if self.sortType != nil {
24677
24682
map["SortType"] = self.sortType!
24678
24683
}
@@ -24732,6 +24737,9 @@ public class DescribeDesktopTypesRequest : Tea.TeaModel {
24732
24737
if let value = dict["Scope"] as? String {
24733
24738
self.scope = value
24734
24739
}
24740
+ if let value = dict["ScopeSet"] as? [String] {
24741
+ self.scopeSet = value
24742
+ }
24735
24743
if let value = dict["SortType"] as? String {
24736
24744
self.sortType = value
24737
24745
}
You can’t perform that action at this time.
0 commit comments