Skip to content

Commit 2f9e44f

Browse files
committed
Generated swift 2021-07-01 for eas.
1 parent e5172ea commit 2f9e44f

File tree

4 files changed

+13
-5
lines changed

4 files changed

+13
-5
lines changed

AlibabacloudEas20210701.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 = "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"

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)`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
2828
dependencies: [
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

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 `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
2828
dependencies: [
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

Sources/AlibabacloudEas20210701/Models.swift

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)