Skip to content

Commit 5e869c9

Browse files
committed
Update API CreateCenterPolicy: add request parameters InternetPrinter.
1 parent 411f20d commit 5e869c9

File tree

5 files changed

+137
-5
lines changed

5 files changed

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

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

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

Sources/AlibabacloudEcd20200930/Client.swift

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1641,6 +1641,9 @@ open class Client : AlibabacloudOpenApi.Client {
16411641
if (!TeaUtils.Client.isUnset(request.internetCommunicationProtocol)) {
16421642
query["InternetCommunicationProtocol"] = request.internetCommunicationProtocol ?? "";
16431643
}
1644+
if (!TeaUtils.Client.isUnset(request.internetPrinter)) {
1645+
query["InternetPrinter"] = request.internetPrinter ?? "";
1646+
}
16441647
if (!TeaUtils.Client.isUnset(request.localDrive)) {
16451648
query["LocalDrive"] = request.localDrive ?? "";
16461649
}
@@ -1752,6 +1755,9 @@ open class Client : AlibabacloudOpenApi.Client {
17521755
if (!TeaUtils.Client.isUnset(request.resourceType)) {
17531756
query["ResourceType"] = request.resourceType ?? "";
17541757
}
1758+
if (!TeaUtils.Client.isUnset(request.safeMenu)) {
1759+
query["SafeMenu"] = request.safeMenu ?? "";
1760+
}
17551761
if (!TeaUtils.Client.isUnset(request.scope)) {
17561762
query["Scope"] = request.scope ?? "";
17571763
}
@@ -8289,6 +8295,9 @@ open class Client : AlibabacloudOpenApi.Client {
82898295
if (!TeaUtils.Client.isUnset(request.internetCommunicationProtocol)) {
82908296
query["InternetCommunicationProtocol"] = request.internetCommunicationProtocol ?? "";
82918297
}
8298+
if (!TeaUtils.Client.isUnset(request.internetPrinter)) {
8299+
query["InternetPrinter"] = request.internetPrinter ?? "";
8300+
}
82928301
if (!TeaUtils.Client.isUnset(request.localDrive)) {
82938302
query["LocalDrive"] = request.localDrive ?? "";
82948303
}
@@ -8409,6 +8418,9 @@ open class Client : AlibabacloudOpenApi.Client {
84098418
if (!TeaUtils.Client.isUnset(request.revokeSecurityPolicyRule)) {
84108419
query["RevokeSecurityPolicyRule"] = request.revokeSecurityPolicyRule ?? [];
84118420
}
8421+
if (!TeaUtils.Client.isUnset(request.safeMenu)) {
8422+
query["SafeMenu"] = request.safeMenu ?? "";
8423+
}
84128424
if (!TeaUtils.Client.isUnset(request.scope)) {
84138425
query["Scope"] = request.scope ?? "";
84148426
}

0 commit comments

Comments
 (0)