@@ -5422,6 +5422,8 @@ public class CreateDIJobRequest : Tea.TeaModel {
5422
5422
5423
5423
public var jobSettings: CreateDIJobRequest.JobSettings?
5424
5424
5425
+ public var jobType: String?
5426
+
5425
5427
public var migrationType: String?
5426
5428
5427
5429
public var name: String?
@@ -5473,6 +5475,9 @@ public class CreateDIJobRequest : Tea.TeaModel {
5473
5475
if self.jobSettings != nil {
5474
5476
map["JobSettings"] = self.jobSettings?.toMap()
5475
5477
}
5478
+ if self.jobType != nil {
5479
+ map["JobType"] = self.jobType!
5480
+ }
5476
5481
if self.migrationType != nil {
5477
5482
map["MigrationType"] = self.migrationType!
5478
5483
}
@@ -5538,6 +5543,9 @@ public class CreateDIJobRequest : Tea.TeaModel {
5538
5543
model.fromMap(dict["JobSettings"] as! [String: Any])
5539
5544
self.jobSettings = model
5540
5545
}
5546
+ if dict.keys.contains("JobType") {
5547
+ self.jobType = dict["JobType"] as! String
5548
+ }
5541
5549
if dict.keys.contains("MigrationType") {
5542
5550
self.migrationType = dict["MigrationType"] as! String
5543
5551
}
@@ -5602,6 +5610,8 @@ public class CreateDIJobShrinkRequest : Tea.TeaModel {
5602
5610
5603
5611
public var jobSettingsShrink: String?
5604
5612
5613
+ public var jobType: String?
5614
+
5605
5615
public var migrationType: String?
5606
5616
5607
5617
public var name: String?
@@ -5647,6 +5657,9 @@ public class CreateDIJobShrinkRequest : Tea.TeaModel {
5647
5657
if self.jobSettingsShrink != nil {
5648
5658
map["JobSettings"] = self.jobSettingsShrink!
5649
5659
}
5660
+ if self.jobType != nil {
5661
+ map["JobType"] = self.jobType!
5662
+ }
5650
5663
if self.migrationType != nil {
5651
5664
map["MigrationType"] = self.migrationType!
5652
5665
}
@@ -5690,6 +5703,9 @@ public class CreateDIJobShrinkRequest : Tea.TeaModel {
5690
5703
if dict.keys.contains("JobSettings") {
5691
5704
self.jobSettingsShrink = dict["JobSettings"] as! String
5692
5705
}
5706
+ if dict.keys.contains("JobType") {
5707
+ self.jobType = dict["JobType"] as! String
5708
+ }
5693
5709
if dict.keys.contains("MigrationType") {
5694
5710
self.migrationType = dict["MigrationType"] as! String
5695
5711
}
@@ -16940,6 +16956,8 @@ public class GetDIJobResponseBody : Tea.TeaModel {
16940
16956
16941
16957
public var jobStatus: String?
16942
16958
16959
+ public var jobType: String?
16960
+
16943
16961
public var migrationType: String?
16944
16962
16945
16963
public var projectId: Int64?
@@ -16998,6 +17016,9 @@ public class GetDIJobResponseBody : Tea.TeaModel {
16998
17016
if self.jobStatus != nil {
16999
17017
map["JobStatus"] = self.jobStatus!
17000
17018
}
17019
+ if self.jobType != nil {
17020
+ map["JobType"] = self.jobType!
17021
+ }
17001
17022
if self.migrationType != nil {
17002
17023
map["MigrationType"] = self.migrationType!
17003
17024
}
@@ -17069,6 +17090,9 @@ public class GetDIJobResponseBody : Tea.TeaModel {
17069
17090
if dict.keys.contains("JobStatus") {
17070
17091
self.jobStatus = dict["JobStatus"] as! String
17071
17092
}
17093
+ if dict.keys.contains("JobType") {
17094
+ self.jobType = dict["JobType"] as! String
17095
+ }
17072
17096
if dict.keys.contains("MigrationType") {
17073
17097
self.migrationType = dict["MigrationType"] as! String
17074
17098
}
0 commit comments