Skip to content

Commit 9d629b5

Browse files
committed
Update API GetApplicationGroup: add response parameters Body.ApplicationGroup.DeployedRevisionIds.
1 parent 081c506 commit 9d629b5

File tree

5 files changed

+40
-5
lines changed

5 files changed

+40
-5
lines changed

oos-20190601/AlibabacloudOos20190601.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 = "AlibabacloudOos20190601"
4-
spec.version = "3.5.1"
4+
spec.version = "3.5.2"
55
spec.license = "Apache 2.0"
66
spec.summary = "Alibaba Cloud Operation Orchestration Service (20190601) SDK Library for Swift"
77
spec.homepage = "https://github.com/alibabacloud-sdk-swift/oos-20190601"

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

1919
```ogdl
20-
github "alibabacloud-sdk-swift/oos-20190601" "3.5.1"
20+
github "alibabacloud-sdk-swift/oos-20190601" "3.5.2"
2121
```
2222

2323
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/oos-20190601" "3.5.1"
2626

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/oos-20190601.git", from: "3.5.1")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/oos-20190601.git", from: "3.5.2")
3030
]
3131
```
3232

oos-20190601/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 `AlibabacloudOos20190601` into your Xcode project using [Carthage](https://github.com/Carthage/Carthage), specify it in your `Cartfile`:
1818

1919
```ogdl
20-
github "alibabacloud-sdk-swift/oos-20190601" "3.5.1"
20+
github "alibabacloud-sdk-swift/oos-20190601" "3.5.2"
2121
```
2222

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

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/oos-20190601.git", from: "3.5.1")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/oos-20190601.git", from: "3.5.2")
3030
]
3131
```
3232

oos-20190601/Sources/AlibabacloudOos20190601/Client.swift

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3603,6 +3603,9 @@ open class Client : AlibabacloudOpenApi.Client {
36033603
if (!TeaUtils.Client.isUnset(request.applicationName)) {
36043604
query["ApplicationName"] = request.applicationName ?? "";
36053605
}
3606+
if (!TeaUtils.Client.isUnset(request.deployedRevisionId)) {
3607+
query["DeployedRevisionId"] = request.deployedRevisionId ?? "";
3608+
}
36063609
if (!TeaUtils.Client.isUnset(request.name)) {
36073610
query["Name"] = request.name ?? "";
36083611
}

oos-20190601/Sources/AlibabacloudOos20190601/Models.swift

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6720,6 +6720,8 @@ public class GetApplicationGroupResponseBody : Tea.TeaModel {
67206720

67216721
public var deployRegionId: String?
67226722

6723+
public var deployedRevisionIds: String?
6724+
67236725
public var description_: String?
67246726

67256727
public var errorDetail: String?
@@ -6777,6 +6779,9 @@ public class GetApplicationGroupResponseBody : Tea.TeaModel {
67776779
if self.deployRegionId != nil {
67786780
map["DeployRegionId"] = self.deployRegionId!
67796781
}
6782+
if self.deployedRevisionIds != nil {
6783+
map["DeployedRevisionIds"] = self.deployedRevisionIds!
6784+
}
67806785
if self.description_ != nil {
67816786
map["Description"] = self.description_!
67826787
}
@@ -6836,6 +6841,9 @@ public class GetApplicationGroupResponseBody : Tea.TeaModel {
68366841
if let value = dict["DeployRegionId"] as? String {
68376842
self.deployRegionId = value
68386843
}
6844+
if let value = dict["DeployedRevisionIds"] as? String {
6845+
self.deployedRevisionIds = value
6846+
}
68396847
if let value = dict["Description"] as? String {
68406848
self.description_ = value
68416849
}
@@ -10951,6 +10959,8 @@ public class ListApplicationGroupsResponseBody : Tea.TeaModel {
1095110959

1095210960
public var deployRegionId: String?
1095310961

10962+
public var deployedRevisionIds: String?
10963+
1095410964
public var description_: String?
1095510965

1095610966
public var errorDetail: String?
@@ -10998,6 +11008,9 @@ public class ListApplicationGroupsResponseBody : Tea.TeaModel {
1099811008
if self.deployRegionId != nil {
1099911009
map["DeployRegionId"] = self.deployRegionId!
1100011010
}
11011+
if self.deployedRevisionIds != nil {
11012+
map["DeployedRevisionIds"] = self.deployedRevisionIds!
11013+
}
1100111014
if self.description_ != nil {
1100211015
map["Description"] = self.description_!
1100311016
}
@@ -11045,6 +11058,9 @@ public class ListApplicationGroupsResponseBody : Tea.TeaModel {
1104511058
if let value = dict["DeployRegionId"] as? String {
1104611059
self.deployRegionId = value
1104711060
}
11061+
if let value = dict["DeployedRevisionIds"] as? String {
11062+
self.deployedRevisionIds = value
11063+
}
1104811064
if let value = dict["Description"] as? String {
1104911065
self.description_ = value
1105011066
}
@@ -21723,6 +21739,8 @@ public class UpdateApplicationResponse : Tea.TeaModel {
2172321739
public class UpdateApplicationGroupRequest : Tea.TeaModel {
2172421740
public var applicationName: String?
2172521741

21742+
public var deployedRevisionId: String?
21743+
2172621744
public var name: String?
2172721745

2172821746
public var newName: String?
@@ -21750,6 +21768,9 @@ public class UpdateApplicationGroupRequest : Tea.TeaModel {
2175021768
if self.applicationName != nil {
2175121769
map["ApplicationName"] = self.applicationName!
2175221770
}
21771+
if self.deployedRevisionId != nil {
21772+
map["DeployedRevisionId"] = self.deployedRevisionId!
21773+
}
2175321774
if self.name != nil {
2175421775
map["Name"] = self.name!
2175521776
}
@@ -21773,6 +21794,9 @@ public class UpdateApplicationGroupRequest : Tea.TeaModel {
2177321794
if let value = dict["ApplicationName"] as? String {
2177421795
self.applicationName = value
2177521796
}
21797+
if let value = dict["DeployedRevisionId"] as? String {
21798+
self.deployedRevisionId = value
21799+
}
2177621800
if let value = dict["Name"] as? String {
2177721801
self.name = value
2177821802
}
@@ -21794,6 +21818,8 @@ public class UpdateApplicationGroupRequest : Tea.TeaModel {
2179421818
public class UpdateApplicationGroupShrinkRequest : Tea.TeaModel {
2179521819
public var applicationName: String?
2179621820

21821+
public var deployedRevisionId: String?
21822+
2179721823
public var name: String?
2179821824

2179921825
public var newName: String?
@@ -21821,6 +21847,9 @@ public class UpdateApplicationGroupShrinkRequest : Tea.TeaModel {
2182121847
if self.applicationName != nil {
2182221848
map["ApplicationName"] = self.applicationName!
2182321849
}
21850+
if self.deployedRevisionId != nil {
21851+
map["DeployedRevisionId"] = self.deployedRevisionId!
21852+
}
2182421853
if self.name != nil {
2182521854
map["Name"] = self.name!
2182621855
}
@@ -21844,6 +21873,9 @@ public class UpdateApplicationGroupShrinkRequest : Tea.TeaModel {
2184421873
if let value = dict["ApplicationName"] as? String {
2184521874
self.applicationName = value
2184621875
}
21876+
if let value = dict["DeployedRevisionId"] as? String {
21877+
self.deployedRevisionId = value
21878+
}
2184721879
if let value = dict["Name"] as? String {
2184821880
self.name = value
2184921881
}

0 commit comments

Comments
 (0)