Skip to content

Commit cc0e686

Browse files
committed
Update API DescribeNatGatewayAssociateNetworkInterfaces: add response parameters Body.AssociateNetworkInterfaces.$.ResourceVpcId.
1 parent 71209a5 commit cc0e686

File tree

4 files changed

+21
-5
lines changed

4 files changed

+21
-5
lines changed

vpc-20160428/AlibabacloudVpc20160428.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 = "AlibabacloudVpc20160428"
4-
spec.version = "5.5.8"
4+
spec.version = "5.5.9"
55
spec.license = "Apache 2.0"
66
spec.summary = "Alibaba Cloud Virtual Private Cloud (20160428) SDK Library for Swift"
77
spec.homepage = "https://github.com/alibabacloud-sdk-swift/vpc-20160428"

vpc-20160428/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)`AlibabacloudVpc20160428` 集成到你的 Xcode 项目中,需要在 `Cartfile` 中定义以下内容:
1818

1919
```ogdl
20-
github "alibabacloud-sdk-swift/vpc-20160428" "5.5.8"
20+
github "alibabacloud-sdk-swift/vpc-20160428" "5.5.9"
2121
```
2222

2323
### Swift 包管理工具
@@ -26,7 +26,7 @@ github "alibabacloud-sdk-swift/vpc-20160428" "5.5.8"
2626

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/vpc-20160428.git", from: "5.5.8")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/vpc-20160428.git", from: "5.5.9")
3030
]
3131
```
3232

vpc-20160428/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 `AlibabacloudVpc20160428` into your Xcode project using [Carthage](https://github.com/Carthage/Carthage), specify it in your `Cartfile`:
1818

1919
```ogdl
20-
github "alibabacloud-sdk-swift/vpc-20160428" "5.5.8"
20+
github "alibabacloud-sdk-swift/vpc-20160428" "5.5.9"
2121
```
2222

2323
### Swift Package Manager
@@ -26,7 +26,7 @@ To integrate `AlibabacloudVpc20160428` into your Xcode project using [Swift Pack
2626

2727
```swift
2828
dependencies: [
29-
.package(url: "https://github.com/alibabacloud-sdk-swift/vpc-20160428.git", from: "5.5.8")
29+
.package(url: "https://github.com/alibabacloud-sdk-swift/vpc-20160428.git", from: "5.5.9")
3030
]
3131
```
3232

vpc-20160428/Sources/AlibabacloudVpc20160428/Models.swift

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49033,6 +49033,8 @@ public class DescribeNatGatewayAssociateNetworkInterfacesResponseBody : Tea.TeaM
4903349033

4903449034
public var resourceType: String?
4903549035

49036+
public var resourceVpcId: String?
49037+
4903649038
public var tunnelIndex: String?
4903749039

4903849040
public override init() {
@@ -49065,6 +49067,9 @@ public class DescribeNatGatewayAssociateNetworkInterfacesResponseBody : Tea.TeaM
4906549067
if self.resourceType != nil {
4906649068
map["ResourceType"] = self.resourceType!
4906749069
}
49070+
if self.resourceVpcId != nil {
49071+
map["ResourceVpcId"] = self.resourceVpcId!
49072+
}
4906849073
if self.tunnelIndex != nil {
4906949074
map["TunnelIndex"] = self.tunnelIndex!
4907049075
}
@@ -49090,6 +49095,9 @@ public class DescribeNatGatewayAssociateNetworkInterfacesResponseBody : Tea.TeaM
4909049095
if let value = dict["ResourceType"] as? String {
4909149096
self.resourceType = value
4909249097
}
49098+
if let value = dict["ResourceVpcId"] as? String {
49099+
self.resourceVpcId = value
49100+
}
4909349101
if let value = dict["TunnelIndex"] as? String {
4909449102
self.tunnelIndex = value
4909549103
}
@@ -77570,6 +77578,8 @@ public class GetVpcPrefixListAssociationsRequest : Tea.TeaModel {
7757077578

7757177579
public class GetVpcPrefixListAssociationsResponseBody : Tea.TeaModel {
7757277580
public class PrefixListAssociation : Tea.TeaModel {
77581+
public var cidrList: String?
77582+
7757377583
public var ownerId: String?
7757477584

7757577585
public var prefixListId: String?
@@ -77600,6 +77610,9 @@ public class GetVpcPrefixListAssociationsResponseBody : Tea.TeaModel {
7760077610

7760177611
public override func toMap() -> [String : Any] {
7760277612
var map = super.toMap()
77613+
if self.cidrList != nil {
77614+
map["CidrList"] = self.cidrList!
77615+
}
7760377616
if self.ownerId != nil {
7760477617
map["OwnerId"] = self.ownerId!
7760577618
}
@@ -77629,6 +77642,9 @@ public class GetVpcPrefixListAssociationsResponseBody : Tea.TeaModel {
7762977642

7763077643
public override func fromMap(_ dict: [String: Any?]?) -> Void {
7763177644
guard let dict else { return }
77645+
if let value = dict["CidrList"] as? String {
77646+
self.cidrList = value
77647+
}
7763277648
if let value = dict["OwnerId"] as? String {
7763377649
self.ownerId = value
7763477650
}

0 commit comments

Comments
 (0)