tencentcloud-sdk-vpc 3.0.1191 → 3.0.1193
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20170312/models.rb +38 -8
- metadata +2 -2
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e28b61f6f7d011a0acec2e2eb13adf65148b5969
|
|
4
|
+
data.tar.gz: b25cb59bed4eb198a430af10916c556fba2b283e
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7d9d5168ae31adceaab5021a5fb77f28758bbc740a65f68385c64987f0bf0f6d48e51ba56b2803b1c9b13482eeb5d652a4cd9f6c908f576d71ccb316b40b9b60
|
|
7
|
+
data.tar.gz: e52c9c8e6653fd8ff1c225c96993034290a9718ef04b8d2f65026f603ee985aa34b14c2b7d64e2488ec560f0edca063662ca36358eec3b1a1e275174b6b34049
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1193
|
data/lib/v20170312/models.rb
CHANGED
|
@@ -5494,16 +5494,27 @@ module TencentCloud
|
|
|
5494
5494
|
|
|
5495
5495
|
# CreatePrivateNatGatewayTranslationAclRule返回参数结构体
|
|
5496
5496
|
class CreatePrivateNatGatewayTranslationAclRuleResponse < TencentCloud::Common::AbstractModel
|
|
5497
|
+
# @param TranslationAclRuleSet: 创建成功的访问控制列表。
|
|
5498
|
+
# @type TranslationAclRuleSet: Array
|
|
5497
5499
|
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5498
5500
|
# @type RequestId: String
|
|
5499
5501
|
|
|
5500
|
-
attr_accessor :RequestId
|
|
5502
|
+
attr_accessor :TranslationAclRuleSet, :RequestId
|
|
5501
5503
|
|
|
5502
|
-
def initialize(requestid=nil)
|
|
5504
|
+
def initialize(translationaclruleset=nil, requestid=nil)
|
|
5505
|
+
@TranslationAclRuleSet = translationaclruleset
|
|
5503
5506
|
@RequestId = requestid
|
|
5504
5507
|
end
|
|
5505
5508
|
|
|
5506
5509
|
def deserialize(params)
|
|
5510
|
+
unless params['TranslationAclRuleSet'].nil?
|
|
5511
|
+
@TranslationAclRuleSet = []
|
|
5512
|
+
params['TranslationAclRuleSet'].each do |i|
|
|
5513
|
+
translationaclrule_tmp = TranslationAclRule.new
|
|
5514
|
+
translationaclrule_tmp.deserialize(i)
|
|
5515
|
+
@TranslationAclRuleSet << translationaclrule_tmp
|
|
5516
|
+
end
|
|
5517
|
+
end
|
|
5507
5518
|
@RequestId = params['RequestId']
|
|
5508
5519
|
end
|
|
5509
5520
|
end
|
|
@@ -13668,10 +13679,12 @@ module TencentCloud
|
|
|
13668
13679
|
# @type Limit: Integer
|
|
13669
13680
|
# @param Description: ACL规则描述
|
|
13670
13681
|
# @type Description: String
|
|
13682
|
+
# @param Filters: 过滤条件。<li>AclRuleId - Integer - ACL规则ID。</li>
|
|
13683
|
+
# @type Filters: Array
|
|
13671
13684
|
|
|
13672
|
-
attr_accessor :NatGatewayId, :TranslationDirection, :TranslationType, :TranslationIp, :OriginalIp, :Offset, :Limit, :Description
|
|
13685
|
+
attr_accessor :NatGatewayId, :TranslationDirection, :TranslationType, :TranslationIp, :OriginalIp, :Offset, :Limit, :Description, :Filters
|
|
13673
13686
|
|
|
13674
|
-
def initialize(natgatewayid=nil, translationdirection=nil, translationtype=nil, translationip=nil, originalip=nil, offset=nil, limit=nil, description=nil)
|
|
13687
|
+
def initialize(natgatewayid=nil, translationdirection=nil, translationtype=nil, translationip=nil, originalip=nil, offset=nil, limit=nil, description=nil, filters=nil)
|
|
13675
13688
|
@NatGatewayId = natgatewayid
|
|
13676
13689
|
@TranslationDirection = translationdirection
|
|
13677
13690
|
@TranslationType = translationtype
|
|
@@ -13680,6 +13693,7 @@ module TencentCloud
|
|
|
13680
13693
|
@Offset = offset
|
|
13681
13694
|
@Limit = limit
|
|
13682
13695
|
@Description = description
|
|
13696
|
+
@Filters = filters
|
|
13683
13697
|
end
|
|
13684
13698
|
|
|
13685
13699
|
def deserialize(params)
|
|
@@ -13691,6 +13705,14 @@ module TencentCloud
|
|
|
13691
13705
|
@Offset = params['Offset']
|
|
13692
13706
|
@Limit = params['Limit']
|
|
13693
13707
|
@Description = params['Description']
|
|
13708
|
+
unless params['Filters'].nil?
|
|
13709
|
+
@Filters = []
|
|
13710
|
+
params['Filters'].each do |i|
|
|
13711
|
+
filter_tmp = Filter.new
|
|
13712
|
+
filter_tmp.deserialize(i)
|
|
13713
|
+
@Filters << filter_tmp
|
|
13714
|
+
end
|
|
13715
|
+
end
|
|
13694
13716
|
end
|
|
13695
13717
|
end
|
|
13696
13718
|
|
|
@@ -30059,10 +30081,12 @@ module TencentCloud
|
|
|
30059
30081
|
# @type CreateTime: String
|
|
30060
30082
|
# @param UpdateTime: 更新时间。
|
|
30061
30083
|
# @type UpdateTime: String
|
|
30084
|
+
# @param Description: 路由备注
|
|
30085
|
+
# @type Description: String
|
|
30062
30086
|
|
|
30063
|
-
attr_accessor :DestinationCidrBlock, :InstanceType, :InstanceId, :Priority, :Status, :RouteId, :Type, :CreateTime, :UpdateTime
|
|
30087
|
+
attr_accessor :DestinationCidrBlock, :InstanceType, :InstanceId, :Priority, :Status, :RouteId, :Type, :CreateTime, :UpdateTime, :Description
|
|
30064
30088
|
|
|
30065
|
-
def initialize(destinationcidrblock=nil, instancetype=nil, instanceid=nil, priority=nil, status=nil, routeid=nil, type=nil, createtime=nil, updatetime=nil)
|
|
30089
|
+
def initialize(destinationcidrblock=nil, instancetype=nil, instanceid=nil, priority=nil, status=nil, routeid=nil, type=nil, createtime=nil, updatetime=nil, description=nil)
|
|
30066
30090
|
@DestinationCidrBlock = destinationcidrblock
|
|
30067
30091
|
@InstanceType = instancetype
|
|
30068
30092
|
@InstanceId = instanceid
|
|
@@ -30072,6 +30096,7 @@ module TencentCloud
|
|
|
30072
30096
|
@Type = type
|
|
30073
30097
|
@CreateTime = createtime
|
|
30074
30098
|
@UpdateTime = updatetime
|
|
30099
|
+
@Description = description
|
|
30075
30100
|
end
|
|
30076
30101
|
|
|
30077
30102
|
def deserialize(params)
|
|
@@ -30084,6 +30109,7 @@ module TencentCloud
|
|
|
30084
30109
|
@Type = params['Type']
|
|
30085
30110
|
@CreateTime = params['CreateTime']
|
|
30086
30111
|
@UpdateTime = params['UpdateTime']
|
|
30112
|
+
@Description = params['Description']
|
|
30087
30113
|
end
|
|
30088
30114
|
end
|
|
30089
30115
|
|
|
@@ -30093,17 +30119,21 @@ module TencentCloud
|
|
|
30093
30119
|
# @type RouteId: String
|
|
30094
30120
|
# @param Status: VPN网关状态, ENABLE 启用, DISABLE禁用。
|
|
30095
30121
|
# @type Status: String
|
|
30122
|
+
# @param Description: VPN路由备注
|
|
30123
|
+
# @type Description: String
|
|
30096
30124
|
|
|
30097
|
-
attr_accessor :RouteId, :Status
|
|
30125
|
+
attr_accessor :RouteId, :Status, :Description
|
|
30098
30126
|
|
|
30099
|
-
def initialize(routeid=nil, status=nil)
|
|
30127
|
+
def initialize(routeid=nil, status=nil, description=nil)
|
|
30100
30128
|
@RouteId = routeid
|
|
30101
30129
|
@Status = status
|
|
30130
|
+
@Description = description
|
|
30102
30131
|
end
|
|
30103
30132
|
|
|
30104
30133
|
def deserialize(params)
|
|
30105
30134
|
@RouteId = params['RouteId']
|
|
30106
30135
|
@Status = params['Status']
|
|
30136
|
+
@Description = params['Description']
|
|
30107
30137
|
end
|
|
30108
30138
|
end
|
|
30109
30139
|
|
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: tencentcloud-sdk-vpc
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.0.
|
|
4
|
+
version: 3.0.1193
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Tencent Cloud
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: bin
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date: 2025-12-
|
|
11
|
+
date: 2025-12-30 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|