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 = "7.1.2 "
4
+ spec . version = "7.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" "7.1.2 "
20
+ github "alibabacloud-sdk-swift/dataworks-public-20240518" "7.1.3 "
21
21
```
22
22
23
23
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/dataworks-public-20240518" "7.1.2"
26
26
27
27
``` swift
28
28
dependencies: [
29
- .package (url : " https://github.com/alibabacloud-sdk-swift/dataworks-public-20240518.git" , from : " 7.1.2 " )
29
+ .package (url : " https://github.com/alibabacloud-sdk-swift/dataworks-public-20240518.git" , from : " 7.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" "7.1.2 "
20
+ github "alibabacloud-sdk-swift/dataworks-public-20240518" "7.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 : " 7.1.2 " )
29
+ .package (url : " https://github.com/alibabacloud-sdk-swift/dataworks-public-20240518.git" , from : " 7.1.3 " )
30
30
]
31
31
```
32
32
Original file line number Diff line number Diff line change @@ -14074,6 +14074,8 @@ public class CreateWorkflowInstancesRequest : Tea.TeaModel {
14074
14074
14075
14075
public var parallelism: Int32?
14076
14076
14077
+ public var priority: Int32?
14078
+
14077
14079
public var rootTaskIds: [Int64]?
14078
14080
14079
14081
public var runPolicy: CreateWorkflowInstancesRequest.DefaultRunProperties.RunPolicy?
@@ -14124,6 +14126,9 @@ public class CreateWorkflowInstancesRequest : Tea.TeaModel {
14124
14126
if self.parallelism != nil {
14125
14127
map["Parallelism"] = self.parallelism!
14126
14128
}
14129
+ if self.priority != nil {
14130
+ map["Priority"] = self.priority!
14131
+ }
14127
14132
if self.rootTaskIds != nil {
14128
14133
map["RootTaskIds"] = self.rootTaskIds!
14129
14134
}
@@ -14169,6 +14174,9 @@ public class CreateWorkflowInstancesRequest : Tea.TeaModel {
14169
14174
if let value = dict["Parallelism"] as? Int32 {
14170
14175
self.parallelism = value
14171
14176
}
14177
+ if let value = dict["Priority"] as? Int32 {
14178
+ self.priority = value
14179
+ }
14172
14180
if let value = dict["RootTaskIds"] as? [Int64] {
14173
14181
self.rootTaskIds = value
14174
14182
}
You can’t perform that action at this time.
0 commit comments