Skip to content

Commit afdaee7

Browse files
committed
Update API ListApplications: update response param.
1 parent fd1c895 commit afdaee7

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-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.4"
4+
spec.version = "1.0.5"
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.4"
20+
github "alibabacloud-sdk-swift/sae-20190506" "1.0.5"
2121
```
2222

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

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/sae-20190506.git", from: "1.0.4")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/sae-20190506.git", from: "1.0.5")
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.4"
20+
github "alibabacloud-sdk-swift/sae-20190506" "1.0.5"
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.4")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/sae-20190506.git", from: "1.0.5")
3030
]
3131
```
3232

Sources/AlibabacloudSae20190506/Models.swift

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29619,6 +29619,8 @@ public class ListApplicationsResponseBody : Tea.TeaModel {
2961929619

2962029620
public var mseEnabled: Bool?
2962129621

29622+
public var mseNamespaceId: String?
29623+
2962229624
public var namespaceId: String?
2962329625

2962429626
public var programmingLanguage: String?
@@ -29677,6 +29679,9 @@ public class ListApplicationsResponseBody : Tea.TeaModel {
2967729679
if self.mseEnabled != nil {
2967829680
map["MseEnabled"] = self.mseEnabled!
2967929681
}
29682+
if self.mseNamespaceId != nil {
29683+
map["MseNamespaceId"] = self.mseNamespaceId!
29684+
}
2968029685
if self.namespaceId != nil {
2968129686
map["NamespaceId"] = self.namespaceId!
2968229687
}
@@ -29738,6 +29743,9 @@ public class ListApplicationsResponseBody : Tea.TeaModel {
2973829743
if dict.keys.contains("MseEnabled") {
2973929744
self.mseEnabled = dict["MseEnabled"] as! Bool
2974029745
}
29746+
if dict.keys.contains("MseNamespaceId") {
29747+
self.mseNamespaceId = dict["MseNamespaceId"] as! String
29748+
}
2974129749
if dict.keys.contains("NamespaceId") {
2974229750
self.namespaceId = dict["NamespaceId"] as! String
2974329751
}

0 commit comments

Comments
 (0)