File tree Expand file tree Collapse file tree 4 files changed +13
-5
lines changed
Sources/AlibabacloudSae20190506 Expand file tree Collapse file tree 4 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 1
1
Pod ::Spec . new do |spec |
2
2
3
3
spec . name = "AlibabacloudSae20190506"
4
- spec . version = "1.0.4 "
4
+ spec . version = "1.0.5 "
5
5
spec . license = "Apache 2.0"
6
6
spec . summary = "Alibaba Cloud Serverless App Engine (20190506) SDK Library for Swift"
7
7
spec . homepage = "https://github.com/alibabacloud-sdk-swift/sae-20190506"
Original file line number Diff line number Diff line change 17
17
要使用 [ Carthage] ( https://github.com/Carthage/Carthage ) 将 ` AlibabacloudSae20190506 ` 集成到你的 Xcode 项目中,需要在 ` Cartfile ` 中定义以下内容:
18
18
19
19
``` ogdl
20
- github "alibabacloud-sdk-swift/sae-20190506" "1.0.4 "
20
+ github "alibabacloud-sdk-swift/sae-20190506" "1.0.5 "
21
21
```
22
22
23
23
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/sae-20190506" "1.0.4"
26
26
27
27
``` swift
28
28
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 " )
30
30
]
31
31
```
32
32
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ English | [简体中文](README-CN.md)
17
17
To integrate ` AlibabacloudSae20190506 ` into your Xcode project using [ Carthage] ( https://github.com/Carthage/Carthage ) , specify it in your ` Cartfile ` :
18
18
19
19
``` ogdl
20
- github "alibabacloud-sdk-swift/sae-20190506" "1.0.4 "
20
+ github "alibabacloud-sdk-swift/sae-20190506" "1.0.5 "
21
21
```
22
22
23
23
### Swift Package Manager
@@ -26,7 +26,7 @@ To integrate `AlibabacloudSae20190506` into your Xcode project using [Swift Pack
26
26
27
27
``` swift
28
28
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 " )
30
30
]
31
31
```
32
32
Original file line number Diff line number Diff line change @@ -29619,6 +29619,8 @@ public class ListApplicationsResponseBody : Tea.TeaModel {
29619
29619
29620
29620
public var mseEnabled: Bool?
29621
29621
29622
+ public var mseNamespaceId: String?
29623
+
29622
29624
public var namespaceId: String?
29623
29625
29624
29626
public var programmingLanguage: String?
@@ -29677,6 +29679,9 @@ public class ListApplicationsResponseBody : Tea.TeaModel {
29677
29679
if self.mseEnabled != nil {
29678
29680
map["MseEnabled"] = self.mseEnabled!
29679
29681
}
29682
+ if self.mseNamespaceId != nil {
29683
+ map["MseNamespaceId"] = self.mseNamespaceId!
29684
+ }
29680
29685
if self.namespaceId != nil {
29681
29686
map["NamespaceId"] = self.namespaceId!
29682
29687
}
@@ -29738,6 +29743,9 @@ public class ListApplicationsResponseBody : Tea.TeaModel {
29738
29743
if dict.keys.contains("MseEnabled") {
29739
29744
self.mseEnabled = dict["MseEnabled"] as! Bool
29740
29745
}
29746
+ if dict.keys.contains("MseNamespaceId") {
29747
+ self.mseNamespaceId = dict["MseNamespaceId"] as! String
29748
+ }
29741
29749
if dict.keys.contains("NamespaceId") {
29742
29750
self.namespaceId = dict["NamespaceId"] as! String
29743
29751
}
You can’t perform that action at this time.
0 commit comments