Skip to content

Commit effcb8c

Browse files
committed
Update API DescribeDesktopGroups: add response parameters Body.DesktopGroups.$.PolicyGroupIdList.
1 parent df51f31 commit effcb8c

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-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.0"
4+
spec.version = "3.3.1"
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.0"
20+
github "alibabacloud-sdk-swift/ecd-20200930" "3.3.1"
2121
```
2222

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

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/ecd-20200930.git", from: "3.3.0")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/ecd-20200930.git", from: "3.3.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 `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.0"
20+
github "alibabacloud-sdk-swift/ecd-20200930" "3.3.1"
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.0")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/ecd-20200930.git", from: "3.3.1")
3030
]
3131
```
3232

Sources/AlibabacloudEcd20200930/Models.swift

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22582,8 +22582,12 @@ public class DescribeDesktopGroupsResponseBody : Tea.TeaModel {
2258222582

2258322583
public var policyGroupId: String?
2258422584

22585+
public var policyGroupIdList: [String]?
22586+
2258522587
public var policyGroupName: String?
2258622588

22589+
public var policyGroupNameList: [String]?
22590+
2258722591
public var protocolType: String?
2258822592

2258922593
public var ratioThreshold: Double?
@@ -22738,9 +22742,15 @@ public class DescribeDesktopGroupsResponseBody : Tea.TeaModel {
2273822742
if self.policyGroupId != nil {
2273922743
map["PolicyGroupId"] = self.policyGroupId!
2274022744
}
22745+
if self.policyGroupIdList != nil {
22746+
map["PolicyGroupIdList"] = self.policyGroupIdList!
22747+
}
2274122748
if self.policyGroupName != nil {
2274222749
map["PolicyGroupName"] = self.policyGroupName!
2274322750
}
22751+
if self.policyGroupNameList != nil {
22752+
map["PolicyGroupNameList"] = self.policyGroupNameList!
22753+
}
2274422754
if self.protocolType != nil {
2274522755
map["ProtocolType"] = self.protocolType!
2274622756
}
@@ -22910,9 +22920,15 @@ public class DescribeDesktopGroupsResponseBody : Tea.TeaModel {
2291022920
if let value = dict["PolicyGroupId"] as? String {
2291122921
self.policyGroupId = value
2291222922
}
22923+
if let value = dict["PolicyGroupIdList"] as? [String] {
22924+
self.policyGroupIdList = value
22925+
}
2291322926
if let value = dict["PolicyGroupName"] as? String {
2291422927
self.policyGroupName = value
2291522928
}
22929+
if let value = dict["PolicyGroupNameList"] as? [String] {
22930+
self.policyGroupNameList = value
22931+
}
2291622932
if let value = dict["ProtocolType"] as? String {
2291722933
self.protocolType = value
2291822934
}

0 commit comments

Comments
 (0)