Skip to content

Commit 2380227

Browse files
committed
Update API CreateCenterPolicy: add request parameters ExternalDrive.
1 parent d01182b commit 2380227

File tree

5 files changed

+35
-5
lines changed

5 files changed

+35
-5
lines changed

ecd-20200930/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.9.0"
4+
spec.version = "3.9.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"

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.9.0"
20+
github "alibabacloud-sdk-swift/ecd-20200930" "3.9.1"
2121
```
2222

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

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

ecd-20200930/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.9.0"
20+
github "alibabacloud-sdk-swift/ecd-20200930" "3.9.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.9.0")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/ecd-20200930.git", from: "3.9.1")
3030
]
3131
```
3232

ecd-20200930/Sources/AlibabacloudEcd20200930/Client.swift

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1769,6 +1769,9 @@ open class Client : AlibabacloudOpenApi.Client {
17691769
if (!TeaUtils.Client.isUnset(request.endUserGroupCoordinate)) {
17701770
query["EndUserGroupCoordinate"] = request.endUserGroupCoordinate ?? "";
17711771
}
1772+
if (!TeaUtils.Client.isUnset(request.externalDrive)) {
1773+
query["ExternalDrive"] = request.externalDrive ?? "";
1774+
}
17721775
if (!TeaUtils.Client.isUnset(request.fileMigrate)) {
17731776
query["FileMigrate"] = request.fileMigrate ?? "";
17741777
}
@@ -10010,6 +10013,9 @@ open class Client : AlibabacloudOpenApi.Client {
1001010013
if (!TeaUtils.Client.isUnset(request.endUserGroupCoordinate)) {
1001110014
query["EndUserGroupCoordinate"] = request.endUserGroupCoordinate ?? "";
1001210015
}
10016+
if (!TeaUtils.Client.isUnset(request.externalDrive)) {
10017+
query["ExternalDrive"] = request.externalDrive ?? "";
10018+
}
1001310019
if (!TeaUtils.Client.isUnset(request.fileMigrate)) {
1001410020
query["FileMigrate"] = request.fileMigrate ?? "";
1001510021
}

ecd-20200930/Sources/AlibabacloudEcd20200930/Models.swift

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7332,6 +7332,8 @@ public class CreateCenterPolicyRequest : Tea.TeaModel {
73327332

73337333
public var endUserGroupCoordinate: String?
73347334

7335+
public var externalDrive: String?
7336+
73357337
public var fileMigrate: String?
73367338

73377339
public var fileTransferAddress: String?
@@ -7637,6 +7639,9 @@ public class CreateCenterPolicyRequest : Tea.TeaModel {
76377639
if self.endUserGroupCoordinate != nil {
76387640
map["EndUserGroupCoordinate"] = self.endUserGroupCoordinate!
76397641
}
7642+
if self.externalDrive != nil {
7643+
map["ExternalDrive"] = self.externalDrive!
7644+
}
76407645
if self.fileMigrate != nil {
76417646
map["FileMigrate"] = self.fileMigrate!
76427647
}
@@ -8072,6 +8077,9 @@ public class CreateCenterPolicyRequest : Tea.TeaModel {
80728077
if let value = dict["EndUserGroupCoordinate"] as? String {
80738078
self.endUserGroupCoordinate = value
80748079
}
8080+
if let value = dict["ExternalDrive"] as? String {
8081+
self.externalDrive = value
8082+
}
80758083
if let value = dict["FileMigrate"] as? String {
80768084
self.fileMigrate = value
80778085
}
@@ -40133,6 +40141,8 @@ public class DescribePolicyGroupsResponseBody : Tea.TeaModel {
4013340141

4013440142
public var endUserGroupCoordinate: String?
4013540143

40144+
public var externalDrive: String?
40145+
4013640146
public var fileMigrate: String?
4013740147

4013840148
public var fileTransfer: String?
@@ -40436,6 +40446,9 @@ public class DescribePolicyGroupsResponseBody : Tea.TeaModel {
4043640446
if self.endUserGroupCoordinate != nil {
4043740447
map["EndUserGroupCoordinate"] = self.endUserGroupCoordinate!
4043840448
}
40449+
if self.externalDrive != nil {
40450+
map["ExternalDrive"] = self.externalDrive!
40451+
}
4043940452
if self.fileMigrate != nil {
4044040453
map["FileMigrate"] = self.fileMigrate!
4044140454
}
@@ -40867,6 +40880,9 @@ public class DescribePolicyGroupsResponseBody : Tea.TeaModel {
4086740880
if let value = dict["EndUserGroupCoordinate"] as? String {
4086840881
self.endUserGroupCoordinate = value
4086940882
}
40883+
if let value = dict["ExternalDrive"] as? String {
40884+
self.externalDrive = value
40885+
}
4087040886
if let value = dict["FileMigrate"] as? String {
4087140887
self.fileMigrate = value
4087240888
}
@@ -57483,6 +57499,8 @@ public class ModifyCenterPolicyRequest : Tea.TeaModel {
5748357499

5748457500
public var endUserGroupCoordinate: String?
5748557501

57502+
public var externalDrive: String?
57503+
5748657504
public var fileMigrate: String?
5748757505

5748857506
public var fileTransferAddress: String?
@@ -57794,6 +57812,9 @@ public class ModifyCenterPolicyRequest : Tea.TeaModel {
5779457812
if self.endUserGroupCoordinate != nil {
5779557813
map["EndUserGroupCoordinate"] = self.endUserGroupCoordinate!
5779657814
}
57815+
if self.externalDrive != nil {
57816+
map["ExternalDrive"] = self.externalDrive!
57817+
}
5779757818
if self.fileMigrate != nil {
5779857819
map["FileMigrate"] = self.fileMigrate!
5779957820
}
@@ -58246,6 +58267,9 @@ public class ModifyCenterPolicyRequest : Tea.TeaModel {
5824658267
if let value = dict["EndUserGroupCoordinate"] as? String {
5824758268
self.endUserGroupCoordinate = value
5824858269
}
58270+
if let value = dict["ExternalDrive"] as? String {
58271+
self.externalDrive = value
58272+
}
5824958273
if let value = dict["FileMigrate"] as? String {
5825058274
self.fileMigrate = value
5825158275
}

0 commit comments

Comments
 (0)