Skip to content

Commit e46a5a4

Browse files
committed
Update API CreateDIJob: add request parameters JobType.
1 parent be16a5a commit e46a5a4

File tree

4 files changed

+29
-5
lines changed

4 files changed

+29
-5
lines changed

AlibabacloudDataworksPublic20240518.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 = "AlibabacloudDataworksPublic20240518"
4-
spec.version = "6.1.0"
4+
spec.version = "6.1.1"
55
spec.license = "Apache 2.0"
66
spec.summary = "Alibaba Cloud dataworks-public (20240518) SDK Library for Swift"
77
spec.homepage = "https://github.com/alibabacloud-sdk-swift/dataworks-public-20240518"

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

1919
```ogdl
20-
github "alibabacloud-sdk-swift/dataworks-public-20240518" "6.1.0"
20+
github "alibabacloud-sdk-swift/dataworks-public-20240518" "6.1.1"
2121
```
2222

2323
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/dataworks-public-20240518" "6.1.0"
2626

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

1919
```ogdl
20-
github "alibabacloud-sdk-swift/dataworks-public-20240518" "6.1.0"
20+
github "alibabacloud-sdk-swift/dataworks-public-20240518" "6.1.1"
2121
```
2222

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

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/dataworks-public-20240518.git", from: "6.1.0")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/dataworks-public-20240518.git", from: "6.1.1")
3030
]
3131
```
3232

Sources/AlibabacloudDataworksPublic20240518/Models.swift

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

54235423
public var jobSettings: CreateDIJobRequest.JobSettings?
54245424

5425+
public var jobType: String?
5426+
54255427
public var migrationType: String?
54265428

54275429
public var name: String?
@@ -5473,6 +5475,9 @@ public class CreateDIJobRequest : Tea.TeaModel {
54735475
if self.jobSettings != nil {
54745476
map["JobSettings"] = self.jobSettings?.toMap()
54755477
}
5478+
if self.jobType != nil {
5479+
map["JobType"] = self.jobType!
5480+
}
54765481
if self.migrationType != nil {
54775482
map["MigrationType"] = self.migrationType!
54785483
}
@@ -5538,6 +5543,9 @@ public class CreateDIJobRequest : Tea.TeaModel {
55385543
model.fromMap(dict["JobSettings"] as! [String: Any])
55395544
self.jobSettings = model
55405545
}
5546+
if dict.keys.contains("JobType") {
5547+
self.jobType = dict["JobType"] as! String
5548+
}
55415549
if dict.keys.contains("MigrationType") {
55425550
self.migrationType = dict["MigrationType"] as! String
55435551
}
@@ -5602,6 +5610,8 @@ public class CreateDIJobShrinkRequest : Tea.TeaModel {
56025610

56035611
public var jobSettingsShrink: String?
56045612

5613+
public var jobType: String?
5614+
56055615
public var migrationType: String?
56065616

56075617
public var name: String?
@@ -5647,6 +5657,9 @@ public class CreateDIJobShrinkRequest : Tea.TeaModel {
56475657
if self.jobSettingsShrink != nil {
56485658
map["JobSettings"] = self.jobSettingsShrink!
56495659
}
5660+
if self.jobType != nil {
5661+
map["JobType"] = self.jobType!
5662+
}
56505663
if self.migrationType != nil {
56515664
map["MigrationType"] = self.migrationType!
56525665
}
@@ -5690,6 +5703,9 @@ public class CreateDIJobShrinkRequest : Tea.TeaModel {
56905703
if dict.keys.contains("JobSettings") {
56915704
self.jobSettingsShrink = dict["JobSettings"] as! String
56925705
}
5706+
if dict.keys.contains("JobType") {
5707+
self.jobType = dict["JobType"] as! String
5708+
}
56935709
if dict.keys.contains("MigrationType") {
56945710
self.migrationType = dict["MigrationType"] as! String
56955711
}
@@ -16940,6 +16956,8 @@ public class GetDIJobResponseBody : Tea.TeaModel {
1694016956

1694116957
public var jobStatus: String?
1694216958

16959+
public var jobType: String?
16960+
1694316961
public var migrationType: String?
1694416962

1694516963
public var projectId: Int64?
@@ -16998,6 +17016,9 @@ public class GetDIJobResponseBody : Tea.TeaModel {
1699817016
if self.jobStatus != nil {
1699917017
map["JobStatus"] = self.jobStatus!
1700017018
}
17019+
if self.jobType != nil {
17020+
map["JobType"] = self.jobType!
17021+
}
1700117022
if self.migrationType != nil {
1700217023
map["MigrationType"] = self.migrationType!
1700317024
}
@@ -17069,6 +17090,9 @@ public class GetDIJobResponseBody : Tea.TeaModel {
1706917090
if dict.keys.contains("JobStatus") {
1707017091
self.jobStatus = dict["JobStatus"] as! String
1707117092
}
17093+
if dict.keys.contains("JobType") {
17094+
self.jobType = dict["JobType"] as! String
17095+
}
1707217096
if dict.keys.contains("MigrationType") {
1707317097
self.migrationType = dict["MigrationType"] as! String
1707417098
}

0 commit comments

Comments
 (0)