@@ -450,6 +450,8 @@ public class Dataset : Tea.TeaModel {
450
450
451
451
public var description_: String?
452
452
453
+ public var edition: String?
454
+
453
455
public var gmtCreateTime: String?
454
456
455
457
public var gmtModifiedTime: String?
@@ -520,6 +522,9 @@ public class Dataset : Tea.TeaModel {
520
522
if self.description_ != nil {
521
523
map["Description"] = self.description_!
522
524
}
525
+ if self.edition != nil {
526
+ map["Edition"] = self.edition!
527
+ }
523
528
if self.gmtCreateTime != nil {
524
529
map["GmtCreateTime"] = self.gmtCreateTime!
525
530
}
@@ -604,6 +609,9 @@ public class Dataset : Tea.TeaModel {
604
609
if let value = dict["Description"] as? String {
605
610
self.description_ = value
606
611
}
612
+ if let value = dict["Edition"] as? String {
613
+ self.edition = value
614
+ }
607
615
if let value = dict["GmtCreateTime"] as? String {
608
616
self.gmtCreateTime = value
609
617
}
@@ -4456,6 +4464,8 @@ public class CreateDatasetRequest : Tea.TeaModel {
4456
4464
4457
4465
public var description_: String?
4458
4466
4467
+ public var edition: String?
4468
+
4459
4469
public var importInfo: String?
4460
4470
4461
4471
public var labels: [Label]?
@@ -4522,6 +4532,9 @@ public class CreateDatasetRequest : Tea.TeaModel {
4522
4532
if self.description_ != nil {
4523
4533
map["Description"] = self.description_!
4524
4534
}
4535
+ if self.edition != nil {
4536
+ map["Edition"] = self.edition!
4537
+ }
4525
4538
if self.importInfo != nil {
4526
4539
map["ImportInfo"] = self.importInfo!
4527
4540
}
@@ -4604,6 +4617,9 @@ public class CreateDatasetRequest : Tea.TeaModel {
4604
4617
if let value = dict["Description"] as? String {
4605
4618
self.description_ = value
4606
4619
}
4620
+ if let value = dict["Edition"] as? String {
4621
+ self.edition = value
4622
+ }
4607
4623
if let value = dict["ImportInfo"] as? String {
4608
4624
self.importInfo = value
4609
4625
}
@@ -10882,6 +10898,8 @@ public class GetDatasetResponseBody : Tea.TeaModel {
10882
10898
10883
10899
public var description_: String?
10884
10900
10901
+ public var edition: String?
10902
+
10885
10903
public var gmtCreateTime: String?
10886
10904
10887
10905
public var gmtModifiedTime: String?
@@ -10956,6 +10974,9 @@ public class GetDatasetResponseBody : Tea.TeaModel {
10956
10974
if self.description_ != nil {
10957
10975
map["Description"] = self.description_!
10958
10976
}
10977
+ if self.edition != nil {
10978
+ map["Edition"] = self.edition!
10979
+ }
10959
10980
if self.gmtCreateTime != nil {
10960
10981
map["GmtCreateTime"] = self.gmtCreateTime!
10961
10982
}
@@ -11046,6 +11067,9 @@ public class GetDatasetResponseBody : Tea.TeaModel {
11046
11067
if let value = dict["Description"] as? String {
11047
11068
self.description_ = value
11048
11069
}
11070
+ if let value = dict["Edition"] as? String {
11071
+ self.edition = value
11072
+ }
11049
11073
if let value = dict["GmtCreateTime"] as? String {
11050
11074
self.gmtCreateTime = value
11051
11075
}
@@ -22610,6 +22634,8 @@ public class UpdateConnectionResponse : Tea.TeaModel {
22610
22634
public class UpdateDatasetRequest : Tea.TeaModel {
22611
22635
public var description_: String?
22612
22636
22637
+ public var edition: String?
22638
+
22613
22639
public var mountAccessReadWriteRoleIdList: [String]?
22614
22640
22615
22641
public var name: String?
@@ -22633,6 +22659,9 @@ public class UpdateDatasetRequest : Tea.TeaModel {
22633
22659
if self.description_ != nil {
22634
22660
map["Description"] = self.description_!
22635
22661
}
22662
+ if self.edition != nil {
22663
+ map["Edition"] = self.edition!
22664
+ }
22636
22665
if self.mountAccessReadWriteRoleIdList != nil {
22637
22666
map["MountAccessReadWriteRoleIdList"] = self.mountAccessReadWriteRoleIdList!
22638
22667
}
@@ -22650,6 +22679,9 @@ public class UpdateDatasetRequest : Tea.TeaModel {
22650
22679
if let value = dict["Description"] as? String {
22651
22680
self.description_ = value
22652
22681
}
22682
+ if let value = dict["Edition"] as? String {
22683
+ self.edition = value
22684
+ }
22653
22685
if let value = dict["MountAccessReadWriteRoleIdList"] as? [String] {
22654
22686
self.mountAccessReadWriteRoleIdList = value
22655
22687
}
0 commit comments