Skip to content

Commit a41cca6

Browse files
committed
Update API DescribeApplicationConfig: add response parameters Body.Data.GpuCount.
1 parent ac96a54 commit a41cca6

File tree

4 files changed

+29
-5
lines changed

4 files changed

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

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

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

Sources/AlibabacloudSae20190506/Models.swift

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8028,6 +8028,8 @@ public class PolicyItem : Tea.TeaModel {
80288028
}
80298029

80308030
public class PriceEstimateFeature : Tea.TeaModel {
8031+
public var appCount: Int64?
8032+
80318033
public var appType: String?
80328034

80338035
public var cpuCore: Double?
@@ -8090,6 +8092,9 @@ public class PriceEstimateFeature : Tea.TeaModel {
80908092

80918093
public override func toMap() -> [String : Any] {
80928094
var map = super.toMap()
8095+
if self.appCount != nil {
8096+
map["AppCount"] = self.appCount!
8097+
}
80938098
if self.appType != nil {
80948099
map["AppType"] = self.appType!
80958100
}
@@ -8167,6 +8172,9 @@ public class PriceEstimateFeature : Tea.TeaModel {
81678172

81688173
public override func fromMap(_ dict: [String: Any?]?) -> Void {
81698174
guard let dict else { return }
8175+
if let value = dict["AppCount"] as? Int64 {
8176+
self.appCount = value
8177+
}
81708178
if let value = dict["AppType"] as? String {
81718179
self.appType = value
81728180
}
@@ -24723,6 +24731,10 @@ public class DescribeApplicationConfigResponseBody : Tea.TeaModel {
2472324731

2472424732
public var envs: String?
2472524733

24734+
public var gpuCount: String?
24735+
24736+
public var gpuType: String?
24737+
2472624738
public var imagePullSecrets: String?
2472724739

2472824740
public var imageUrl: String?
@@ -24934,6 +24946,12 @@ public class DescribeApplicationConfigResponseBody : Tea.TeaModel {
2493424946
if self.envs != nil {
2493524947
map["Envs"] = self.envs!
2493624948
}
24949+
if self.gpuCount != nil {
24950+
map["GpuCount"] = self.gpuCount!
24951+
}
24952+
if self.gpuType != nil {
24953+
map["GpuType"] = self.gpuType!
24954+
}
2493724955
if self.imagePullSecrets != nil {
2493824956
map["ImagePullSecrets"] = self.imagePullSecrets!
2493924957
}
@@ -25225,6 +25243,12 @@ public class DescribeApplicationConfigResponseBody : Tea.TeaModel {
2522525243
if let value = dict["Envs"] as? String {
2522625244
self.envs = value
2522725245
}
25246+
if let value = dict["GpuCount"] as? String {
25247+
self.gpuCount = value
25248+
}
25249+
if let value = dict["GpuType"] as? String {
25250+
self.gpuType = value
25251+
}
2522825252
if let value = dict["ImagePullSecrets"] as? String {
2522925253
self.imagePullSecrets = value
2523025254
}

0 commit comments

Comments
 (0)