Skip to content

Commit 99feef3

Browse files
committed
Update API DeleteUserConfig: add request parameters Scope.
1 parent 0ece58d commit 99feef3

File tree

7 files changed

+4506
-3846
lines changed

7 files changed

+4506
-3846
lines changed

AlibabacloudAIWorkSpace20210204.podspec

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Pod::Spec.new do |spec|
22

33
spec.name = "AlibabacloudAIWorkSpace20210204"
4-
spec.version = "4.3.1"
4+
spec.version = "4.3.2"
55
spec.license = "Apache 2.0"
66
spec.summary = "Alibaba Cloud AIWorkSpace (20210204) SDK Library for Swift"
77
spec.homepage = "https://github.com/alibabacloud-sdk-swift/aiworkspace-20210204"
@@ -17,7 +17,7 @@ Pod::Spec.new do |spec|
1717
spec.watchos.deployment_target = '6.0'
1818
spec.tvos.deployment_target = '13.0'
1919

20-
spec.dependency 'Tea', '~> 1.0.0'
20+
spec.dependency 'Tea', '~> 1.0.3'
2121
spec.dependency 'TeaUtils', '~> 1.0.6'
2222
spec.dependency 'AlibabacloudOpenApi', '~> 1.0.7'
2323
spec.dependency 'AlibabaCloudOpenApiUtil', '~> 1.0.1'

Cartfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
github aliyun/tea-swift ~> 1.0.0
1+
github aliyun/tea-swift ~> 1.0.3
22
github alibabacloud-sdk-swift/tea-utils ~> 1.0.6
33
github alibabacloud-sdk-swift/darabonba-openapi ~> 1.0.7
44
github alibabacloud-sdk-swift/openapi-util ~> 1.0.1

Package.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ let package = Package(
1515
],
1616
dependencies: [
1717
// Dependencies declare other packages that this package depends on.
18-
.package(url: "https://github.com/aliyun/tea-swift.git", from: "1.0.0"),
18+
.package(url: "https://github.com/aliyun/tea-swift.git", from: "1.0.3"),
1919
.package(url: "https://github.com/alibabacloud-sdk-swift/tea-utils", from: "1.0.6"),
2020
.package(url: "https://github.com/alibabacloud-sdk-swift/darabonba-openapi", from: "1.0.7"),
2121
.package(url: "https://github.com/alibabacloud-sdk-swift/openapi-util", from: "1.0.1"),

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

1919
```ogdl
20-
github "alibabacloud-sdk-swift/aiworkspace-20210204" "4.3.1"
20+
github "alibabacloud-sdk-swift/aiworkspace-20210204" "4.3.2"
2121
```
2222

2323
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/aiworkspace-20210204" "4.3.1"
2626

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

1919
```ogdl
20-
github "alibabacloud-sdk-swift/aiworkspace-20210204" "4.3.1"
20+
github "alibabacloud-sdk-swift/aiworkspace-20210204" "4.3.2"
2121
```
2222

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

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/aiworkspace-20210204.git", from: "4.3.1")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/aiworkspace-20210204.git", from: "4.3.2")
3030
]
3131
```
3232

Sources/AlibabacloudAIWorkSpace20210204/Client.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1638,6 +1638,9 @@ open class Client : AlibabacloudOpenApi.Client {
16381638
if (!TeaUtils.Client.isUnset(request.configKey)) {
16391639
query["ConfigKey"] = request.configKey ?? "";
16401640
}
1641+
if (!TeaUtils.Client.isUnset(request.scope)) {
1642+
query["Scope"] = request.scope ?? "";
1643+
}
16411644
var req: AlibabacloudOpenApi.OpenApiRequest = AlibabacloudOpenApi.OpenApiRequest([
16421645
"headers": headers as! [String: String],
16431646
"query": AlibabaCloudOpenApiUtil.Client.query(query)

0 commit comments

Comments
 (0)