@@ -6720,6 +6720,8 @@ public class GetApplicationGroupResponseBody : Tea.TeaModel {
6720
6720
6721
6721
public var deployRegionId: String?
6722
6722
6723
+ public var deployedRevisionIds: String?
6724
+
6723
6725
public var description_: String?
6724
6726
6725
6727
public var errorDetail: String?
@@ -6777,6 +6779,9 @@ public class GetApplicationGroupResponseBody : Tea.TeaModel {
6777
6779
if self.deployRegionId != nil {
6778
6780
map["DeployRegionId"] = self.deployRegionId!
6779
6781
}
6782
+ if self.deployedRevisionIds != nil {
6783
+ map["DeployedRevisionIds"] = self.deployedRevisionIds!
6784
+ }
6780
6785
if self.description_ != nil {
6781
6786
map["Description"] = self.description_!
6782
6787
}
@@ -6836,6 +6841,9 @@ public class GetApplicationGroupResponseBody : Tea.TeaModel {
6836
6841
if let value = dict["DeployRegionId"] as? String {
6837
6842
self.deployRegionId = value
6838
6843
}
6844
+ if let value = dict["DeployedRevisionIds"] as? String {
6845
+ self.deployedRevisionIds = value
6846
+ }
6839
6847
if let value = dict["Description"] as? String {
6840
6848
self.description_ = value
6841
6849
}
@@ -10951,6 +10959,8 @@ public class ListApplicationGroupsResponseBody : Tea.TeaModel {
10951
10959
10952
10960
public var deployRegionId: String?
10953
10961
10962
+ public var deployedRevisionIds: String?
10963
+
10954
10964
public var description_: String?
10955
10965
10956
10966
public var errorDetail: String?
@@ -10998,6 +11008,9 @@ public class ListApplicationGroupsResponseBody : Tea.TeaModel {
10998
11008
if self.deployRegionId != nil {
10999
11009
map["DeployRegionId"] = self.deployRegionId!
11000
11010
}
11011
+ if self.deployedRevisionIds != nil {
11012
+ map["DeployedRevisionIds"] = self.deployedRevisionIds!
11013
+ }
11001
11014
if self.description_ != nil {
11002
11015
map["Description"] = self.description_!
11003
11016
}
@@ -11045,6 +11058,9 @@ public class ListApplicationGroupsResponseBody : Tea.TeaModel {
11045
11058
if let value = dict["DeployRegionId"] as? String {
11046
11059
self.deployRegionId = value
11047
11060
}
11061
+ if let value = dict["DeployedRevisionIds"] as? String {
11062
+ self.deployedRevisionIds = value
11063
+ }
11048
11064
if let value = dict["Description"] as? String {
11049
11065
self.description_ = value
11050
11066
}
@@ -21723,6 +21739,8 @@ public class UpdateApplicationResponse : Tea.TeaModel {
21723
21739
public class UpdateApplicationGroupRequest : Tea.TeaModel {
21724
21740
public var applicationName: String?
21725
21741
21742
+ public var deployedRevisionId: String?
21743
+
21726
21744
public var name: String?
21727
21745
21728
21746
public var newName: String?
@@ -21750,6 +21768,9 @@ public class UpdateApplicationGroupRequest : Tea.TeaModel {
21750
21768
if self.applicationName != nil {
21751
21769
map["ApplicationName"] = self.applicationName!
21752
21770
}
21771
+ if self.deployedRevisionId != nil {
21772
+ map["DeployedRevisionId"] = self.deployedRevisionId!
21773
+ }
21753
21774
if self.name != nil {
21754
21775
map["Name"] = self.name!
21755
21776
}
@@ -21773,6 +21794,9 @@ public class UpdateApplicationGroupRequest : Tea.TeaModel {
21773
21794
if let value = dict["ApplicationName"] as? String {
21774
21795
self.applicationName = value
21775
21796
}
21797
+ if let value = dict["DeployedRevisionId"] as? String {
21798
+ self.deployedRevisionId = value
21799
+ }
21776
21800
if let value = dict["Name"] as? String {
21777
21801
self.name = value
21778
21802
}
@@ -21794,6 +21818,8 @@ public class UpdateApplicationGroupRequest : Tea.TeaModel {
21794
21818
public class UpdateApplicationGroupShrinkRequest : Tea.TeaModel {
21795
21819
public var applicationName: String?
21796
21820
21821
+ public var deployedRevisionId: String?
21822
+
21797
21823
public var name: String?
21798
21824
21799
21825
public var newName: String?
@@ -21821,6 +21847,9 @@ public class UpdateApplicationGroupShrinkRequest : Tea.TeaModel {
21821
21847
if self.applicationName != nil {
21822
21848
map["ApplicationName"] = self.applicationName!
21823
21849
}
21850
+ if self.deployedRevisionId != nil {
21851
+ map["DeployedRevisionId"] = self.deployedRevisionId!
21852
+ }
21824
21853
if self.name != nil {
21825
21854
map["Name"] = self.name!
21826
21855
}
@@ -21844,6 +21873,9 @@ public class UpdateApplicationGroupShrinkRequest : Tea.TeaModel {
21844
21873
if let value = dict["ApplicationName"] as? String {
21845
21874
self.applicationName = value
21846
21875
}
21876
+ if let value = dict["DeployedRevisionId"] as? String {
21877
+ self.deployedRevisionId = value
21878
+ }
21847
21879
if let value = dict["Name"] as? String {
21848
21880
self.name = value
21849
21881
}
0 commit comments