File tree Expand file tree Collapse file tree 4 files changed +13
-5
lines changed
Sources/AlibabacloudEas20210701 Expand file tree Collapse file tree 4 files changed +13
-5
lines changed Original file line number Diff line number Diff line change 11Pod ::Spec . new do |spec |
22
33 spec . name = "AlibabacloudEas20210701"
4- spec . version = "7.1.8 "
4+ spec . version = "7.1.9 "
55 spec . license = "Apache 2.0"
66 spec . summary = "Alibaba Cloud eas (20210701) SDK Library for Swift"
77 spec . homepage = "https://github.com/alibabacloud-sdk-swift/eas-20210701"
Original file line number Diff line number Diff line change 1717要使用 [ Carthage] ( https://github.com/Carthage/Carthage ) 将 ` AlibabacloudEas20210701 ` 集成到你的 Xcode 项目中,需要在 ` Cartfile ` 中定义以下内容:
1818
1919``` ogdl
20- github "alibabacloud-sdk-swift/eas-20210701" "7.1.8 "
20+ github "alibabacloud-sdk-swift/eas-20210701" "7.1.9 "
2121```
2222
2323### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/eas-20210701" "7.1.8"
2626
2727``` swift
2828dependencies: [
29- .package (url : " https://github.com/alibabacloud-sdk-swift/eas-20210701.git" , from : " 7.1.8 " )
29+ .package (url : " https://github.com/alibabacloud-sdk-swift/eas-20210701.git" , from : " 7.1.9 " )
3030]
3131```
3232
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ English | [简体中文](README-CN.md)
1717To integrate ` AlibabacloudEas20210701 ` into your Xcode project using [ Carthage] ( https://github.com/Carthage/Carthage ) , specify it in your ` Cartfile ` :
1818
1919``` ogdl
20- github "alibabacloud-sdk-swift/eas-20210701" "7.1.8 "
20+ github "alibabacloud-sdk-swift/eas-20210701" "7.1.9 "
2121```
2222
2323### Swift Package Manager
@@ -26,7 +26,7 @@ To integrate `AlibabacloudEas20210701` into your Xcode project using [Swift Pack
2626
2727``` swift
2828dependencies: [
29- .package (url : " https://github.com/alibabacloud-sdk-swift/eas-20210701.git" , from : " 7.1.8 " )
29+ .package (url : " https://github.com/alibabacloud-sdk-swift/eas-20210701.git" , from : " 7.1.9 " )
3030]
3131```
3232
Original file line number Diff line number Diff line change @@ -230,6 +230,8 @@ public class Instance : Tea.TeaModel {
230230
231231 public var instanceType: String?
232232
233+ public var isLatest: Bool?
234+
233235 public var isSpot: Bool?
234236
235237 public var isolated: Bool?
@@ -305,6 +307,9 @@ public class Instance : Tea.TeaModel {
305307 if self.instanceType != nil {
306308 map["InstanceType"] = self.instanceType!
307309 }
310+ if self.isLatest != nil {
311+ map["IsLatest"] = self.isLatest!
312+ }
308313 if self.isSpot != nil {
309314 map["IsSpot"] = self.isSpot!
310315 }
@@ -388,6 +393,9 @@ public class Instance : Tea.TeaModel {
388393 if let value = dict["InstanceType"] as? String {
389394 self.instanceType = value
390395 }
396+ if let value = dict["IsLatest"] as? Bool {
397+ self.isLatest = value
398+ }
391399 if let value = dict["IsSpot"] as? Bool {
392400 self.isSpot = value
393401 }
You can’t perform that action at this time.
0 commit comments