Skip to content

Commit 695e48a

Browse files
committed
Update API DescribeApplicationSlbs: update response param.
1 parent afdaee7 commit 695e48a

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

AlibabacloudSae20190506.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 = "AlibabacloudSae20190506"
4-
spec.version = "1.0.5"
4+
spec.version = "1.0.6"
55
spec.license = "Apache 2.0"
66
spec.summary = "Alibaba Cloud Serverless App Engine (20190506) SDK Library for Swift"
77
spec.homepage = "https://github.com/alibabacloud-sdk-swift/sae-20190506"

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

1919
```ogdl
20-
github "alibabacloud-sdk-swift/sae-20190506" "1.0.5"
20+
github "alibabacloud-sdk-swift/sae-20190506" "1.0.6"
2121
```
2222

2323
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/sae-20190506" "1.0.5"
2626

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

1919
```ogdl
20-
github "alibabacloud-sdk-swift/sae-20190506" "1.0.5"
20+
github "alibabacloud-sdk-swift/sae-20190506" "1.0.6"
2121
```
2222

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

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/sae-20190506.git", from: "1.0.5")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/sae-20190506.git", from: "1.0.6")
3030
]
3131
```
3232

Sources/AlibabacloudSae20190506/Models.swift

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18784,6 +18784,8 @@ public class DescribeApplicationSlbsRequest : Tea.TeaModel {
1878418784
public class DescribeApplicationSlbsResponseBody : Tea.TeaModel {
1878518785
public class Data : Tea.TeaModel {
1878618786
public class Internet : Tea.TeaModel {
18787+
public var httpsCaCertId: String?
18788+
1878718789
public var httpsCertId: String?
1878818790

1878918791
public var port: Int32?
@@ -18806,6 +18808,9 @@ public class DescribeApplicationSlbsResponseBody : Tea.TeaModel {
1880618808

1880718809
public override func toMap() -> [String : Any] {
1880818810
var map = super.toMap()
18811+
if self.httpsCaCertId != nil {
18812+
map["HttpsCaCertId"] = self.httpsCaCertId!
18813+
}
1880918814
if self.httpsCertId != nil {
1881018815
map["HttpsCertId"] = self.httpsCertId!
1881118816
}
@@ -18822,6 +18827,9 @@ public class DescribeApplicationSlbsResponseBody : Tea.TeaModel {
1882218827
}
1882318828

1882418829
public override func fromMap(_ dict: [String: Any]) -> Void {
18830+
if dict.keys.contains("HttpsCaCertId") {
18831+
self.httpsCaCertId = dict["HttpsCaCertId"] as! String
18832+
}
1882518833
if dict.keys.contains("HttpsCertId") {
1882618834
self.httpsCertId = dict["HttpsCertId"] as! String
1882718835
}
@@ -18837,6 +18845,8 @@ public class DescribeApplicationSlbsResponseBody : Tea.TeaModel {
1883718845
}
1883818846
}
1883918847
public class Intranet : Tea.TeaModel {
18848+
public var httpsCaCertId: String?
18849+
1884018850
public var httpsCertId: String?
1884118851

1884218852
public var port: Int32?
@@ -18859,6 +18869,9 @@ public class DescribeApplicationSlbsResponseBody : Tea.TeaModel {
1885918869

1886018870
public override func toMap() -> [String : Any] {
1886118871
var map = super.toMap()
18872+
if self.httpsCaCertId != nil {
18873+
map["HttpsCaCertId"] = self.httpsCaCertId!
18874+
}
1886218875
if self.httpsCertId != nil {
1886318876
map["HttpsCertId"] = self.httpsCertId!
1886418877
}
@@ -18875,6 +18888,9 @@ public class DescribeApplicationSlbsResponseBody : Tea.TeaModel {
1887518888
}
1887618889

1887718890
public override func fromMap(_ dict: [String: Any]) -> Void {
18891+
if dict.keys.contains("HttpsCaCertId") {
18892+
self.httpsCaCertId = dict["HttpsCaCertId"] as! String
18893+
}
1887818894
if dict.keys.contains("HttpsCertId") {
1887918895
self.httpsCertId = dict["HttpsCertId"] as! String
1888018896
}

0 commit comments

Comments
 (0)