File tree Expand file tree Collapse file tree 5 files changed +16
-5
lines changed
Sources/AlibabacloudEdsAic20230930 Expand file tree Collapse file tree 5 files changed +16
-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 = "AlibabacloudEdsAic20230930"
4
- spec . version = "1.7 .0"
4
+ spec . version = "1.8 .0"
5
5
spec . license = "Apache 2.0"
6
6
spec . summary = "Alibaba Cloud eds-aic (20230930) SDK Library for Swift"
7
7
spec . homepage = "https://github.com/alibabacloud-sdk-swift/eds-aic-20230930"
Original file line number Diff line number Diff line change 17
17
要使用 [ Carthage] ( https://github.com/Carthage/Carthage ) 将 ` AlibabacloudEdsAic20230930 ` 集成到你的 Xcode 项目中,需要在 ` Cartfile ` 中定义以下内容:
18
18
19
19
``` ogdl
20
- github "alibabacloud-sdk-swift/eds-aic-20230930" "1.7 .0"
20
+ github "alibabacloud-sdk-swift/eds-aic-20230930" "1.8 .0"
21
21
```
22
22
23
23
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/eds-aic-20230930" "1.7.0"
26
26
27
27
``` swift
28
28
dependencies: [
29
- .package (url : " https://github.com/alibabacloud-sdk-swift/eds-aic-20230930.git" , from : " 1.7 .0" )
29
+ .package (url : " https://github.com/alibabacloud-sdk-swift/eds-aic-20230930.git" , from : " 1.8 .0" )
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 ` AlibabacloudEdsAic20230930 ` 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/eds-aic-20230930" "1.7 .0"
20
+ github "alibabacloud-sdk-swift/eds-aic-20230930" "1.8 .0"
21
21
```
22
22
23
23
### Swift Package Manager
@@ -26,7 +26,7 @@ To integrate `AlibabacloudEdsAic20230930` into your Xcode project using [Swift P
26
26
27
27
``` swift
28
28
dependencies: [
29
- .package (url : " https://github.com/alibabacloud-sdk-swift/eds-aic-20230930.git" , from : " 1.7 .0" )
29
+ .package (url : " https://github.com/alibabacloud-sdk-swift/eds-aic-20230930.git" , from : " 1.8 .0" )
30
30
]
31
31
```
32
32
Original file line number Diff line number Diff line change @@ -151,6 +151,9 @@ open class Client : AlibabacloudOpenApi.Client {
151
151
if ( !TeaUtils. Client. isUnset ( request. bizRegionId) ) {
152
152
query [ " BizRegionId " ] = request. bizRegionId ?? " " ;
153
153
}
154
+ if ( !TeaUtils. Client. isUnset ( request. gpuAcceleration) ) {
155
+ query [ " GpuAcceleration " ] = request. gpuAcceleration!;
156
+ }
154
157
if ( !TeaUtils. Client. isUnset ( request. zoneId) ) {
155
158
query [ " ZoneId " ] = request. zoneId ?? " " ;
156
159
}
Original file line number Diff line number Diff line change @@ -511,6 +511,8 @@ public class CheckResourceStockRequest : Tea.TeaModel {
511
511
512
512
public var bizRegionId : String ?
513
513
514
+ public var gpuAcceleration : Bool ?
515
+
514
516
public var zoneId : String ?
515
517
516
518
public override init ( ) {
@@ -533,6 +535,9 @@ public class CheckResourceStockRequest : Tea.TeaModel {
533
535
if self . bizRegionId != nil {
534
536
map [ " BizRegionId " ] = self . bizRegionId!
535
537
}
538
+ if self . gpuAcceleration != nil {
539
+ map [ " GpuAcceleration " ] = self . gpuAcceleration!
540
+ }
536
541
if self . zoneId != nil {
537
542
map [ " ZoneId " ] = self . zoneId!
538
543
}
@@ -546,6 +551,9 @@ public class CheckResourceStockRequest : Tea.TeaModel {
546
551
if dict. keys. contains ( " BizRegionId " ) {
547
552
self . bizRegionId = dict [ " BizRegionId " ] as! String
548
553
}
554
+ if dict. keys. contains ( " GpuAcceleration " ) {
555
+ self . gpuAcceleration = dict [ " GpuAcceleration " ] as! Bool
556
+ }
549
557
if dict. keys. contains ( " ZoneId " ) {
550
558
self . zoneId = dict [ " ZoneId " ] as! String
551
559
}
You can’t perform that action at this time.
0 commit comments