File tree Expand file tree Collapse file tree 4 files changed +13
-5
lines changed
Sources/AlibabacloudDataworksPublic20240518 Expand file tree Collapse file tree 4 files changed +13
-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 = "AlibabacloudDataworksPublic20240518"
4
- spec . version = "6.1.2 "
4
+ spec . version = "6.1.3 "
5
5
spec . license = "Apache 2.0"
6
6
spec . summary = "Alibaba Cloud dataworks-public (20240518) SDK Library for Swift"
7
7
spec . homepage = "https://github.com/alibabacloud-sdk-swift/dataworks-public-20240518"
Original file line number Diff line number Diff line change 17
17
要使用 [ Carthage] ( https://github.com/Carthage/Carthage ) 将 ` AlibabacloudDataworksPublic20240518 ` 集成到你的 Xcode 项目中,需要在 ` Cartfile ` 中定义以下内容:
18
18
19
19
``` ogdl
20
- github "alibabacloud-sdk-swift/dataworks-public-20240518" "6.1.2 "
20
+ github "alibabacloud-sdk-swift/dataworks-public-20240518" "6.1.3 "
21
21
```
22
22
23
23
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/dataworks-public-20240518" "6.1.2"
26
26
27
27
``` swift
28
28
dependencies: [
29
- .package (url : " https://github.com/alibabacloud-sdk-swift/dataworks-public-20240518.git" , from : " 6.1.2 " )
29
+ .package (url : " https://github.com/alibabacloud-sdk-swift/dataworks-public-20240518.git" , from : " 6.1.3 " )
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 ` AlibabacloudDataworksPublic20240518 ` 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/dataworks-public-20240518" "6.1.2 "
20
+ github "alibabacloud-sdk-swift/dataworks-public-20240518" "6.1.3 "
21
21
```
22
22
23
23
### Swift Package Manager
@@ -26,7 +26,7 @@ To integrate `AlibabacloudDataworksPublic20240518` into your Xcode project using
26
26
27
27
``` swift
28
28
dependencies: [
29
- .package (url : " https://github.com/alibabacloud-sdk-swift/dataworks-public-20240518.git" , from : " 6.1.2 " )
29
+ .package (url : " https://github.com/alibabacloud-sdk-swift/dataworks-public-20240518.git" , from : " 6.1.3 " )
30
30
]
31
31
```
32
32
Original file line number Diff line number Diff line change @@ -40315,6 +40315,8 @@ public class ListNodesResponseBody : Tea.TeaModel {
40315
40315
}
40316
40316
}
40317
40317
public class RuntimeResource : Tea.TeaModel {
40318
+ public var resourceGroup: String?
40319
+
40318
40320
public var resourceGroupId: String?
40319
40321
40320
40322
public override init() {
@@ -40331,13 +40333,19 @@ public class ListNodesResponseBody : Tea.TeaModel {
40331
40333
40332
40334
public override func toMap() -> [String : Any] {
40333
40335
var map = super.toMap()
40336
+ if self.resourceGroup != nil {
40337
+ map["ResourceGroup"] = self.resourceGroup!
40338
+ }
40334
40339
if self.resourceGroupId != nil {
40335
40340
map["ResourceGroupId"] = self.resourceGroupId!
40336
40341
}
40337
40342
return map
40338
40343
}
40339
40344
40340
40345
public override func fromMap(_ dict: [String: Any]) -> Void {
40346
+ if dict.keys.contains("ResourceGroup") {
40347
+ self.resourceGroup = dict["ResourceGroup"] as! String
40348
+ }
40341
40349
if dict.keys.contains("ResourceGroupId") {
40342
40350
self.resourceGroupId = dict["ResourceGroupId"] as! String
40343
40351
}
You can’t perform that action at this time.
0 commit comments