Skip to content

Commit fd1c895

Browse files
committed
Update API CreateApplication: add param BaseAppId.
1 parent aad5778 commit fd1c895

File tree

5 files changed

+3388
-3083
lines changed

5 files changed

+3388
-3083
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.0.3"
4+
spec.version = "1.0.4"
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.0.3"
20+
github "alibabacloud-sdk-swift/sae-20190506" "1.0.4"
2121
```
2222

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

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

Sources/AlibabacloudSae20190506/Client.swift

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -409,9 +409,15 @@ open class Client : AlibabacloudOpenApi.Client {
409409
if (!TeaUtils.Client.isUnset(request.associateEip)) {
410410
body["AssociateEip"] = request.associateEip!;
411411
}
412+
if (!TeaUtils.Client.isUnset(request.baseAppId)) {
413+
body["BaseAppId"] = request.baseAppId ?? "";
414+
}
412415
if (!TeaUtils.Client.isUnset(request.configMapMountDesc)) {
413416
body["ConfigMapMountDesc"] = request.configMapMountDesc ?? "";
414417
}
418+
if (!TeaUtils.Client.isUnset(request.microRegistrationConfig)) {
419+
body["MicroRegistrationConfig"] = request.microRegistrationConfig ?? "";
420+
}
415421
if (!TeaUtils.Client.isUnset(request.ossAkId)) {
416422
body["OssAkId"] = request.ossAkId ?? "";
417423
}
@@ -427,6 +433,9 @@ open class Client : AlibabacloudOpenApi.Client {
427433
if (!TeaUtils.Client.isUnset(request.phpConfig)) {
428434
body["PhpConfig"] = request.phpConfig ?? "";
429435
}
436+
if (!TeaUtils.Client.isUnset(request.serviceTags)) {
437+
body["ServiceTags"] = request.serviceTags ?? "";
438+
}
430439
var req: AlibabacloudOpenApi.OpenApiRequest = AlibabacloudOpenApi.OpenApiRequest([
431440
"headers": headers as! [String: String],
432441
"query": AlibabaCloudOpenApiUtil.Client.query(query),
@@ -1421,6 +1430,9 @@ open class Client : AlibabacloudOpenApi.Client {
14211430
if (!TeaUtils.Client.isUnset(request.configMapMountDesc)) {
14221431
body["ConfigMapMountDesc"] = request.configMapMountDesc ?? "";
14231432
}
1433+
if (!TeaUtils.Client.isUnset(request.microRegistrationConfig)) {
1434+
body["MicroRegistrationConfig"] = request.microRegistrationConfig ?? "";
1435+
}
14241436
if (!TeaUtils.Client.isUnset(request.ossAkId)) {
14251437
body["OssAkId"] = request.ossAkId ?? "";
14261438
}
@@ -1436,6 +1448,9 @@ open class Client : AlibabacloudOpenApi.Client {
14361448
if (!TeaUtils.Client.isUnset(request.phpConfig)) {
14371449
body["PhpConfig"] = request.phpConfig ?? "";
14381450
}
1451+
if (!TeaUtils.Client.isUnset(request.serviceTags)) {
1452+
body["ServiceTags"] = request.serviceTags ?? "";
1453+
}
14391454
var req: AlibabacloudOpenApi.OpenApiRequest = AlibabacloudOpenApi.OpenApiRequest([
14401455
"headers": headers as! [String: String],
14411456
"query": AlibabaCloudOpenApiUtil.Client.query(query),

0 commit comments

Comments
 (0)