tencentcloud-sdk-vpc 3.0.1157 → 3.0.1161
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/client.rb +24 -0
- data/lib/v20170312/models.rb +149 -60
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: e2cae363a64d96570d85ded0a513438cb8a07474
|
|
4
|
+
data.tar.gz: be1294c4c0655afcad0e4d9a0f62cbd0ecad1b48
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b2cf00635ce678cf183e641607b1ed5bf60f5fcf6d9d44cf76f51a8520a3536c8befe444bf5935fa3409b00b08807a79ddf0a5680d4bd6b9664eee4ffee4f12c
|
|
7
|
+
data.tar.gz: f2e778c847f51526f6d454d4803a0f1e32291d260b2c812b0a0ccefb19415cd10922bc775c2bc97ed1aa7fd42ba7dd6a8222291e41ccbe6b753bc50393a507b9
|
data/lib/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.0.
|
|
1
|
+
3.0.1161
|
data/lib/v20170312/client.rb
CHANGED
|
@@ -5666,6 +5666,30 @@ module TencentCloud
|
|
|
5666
5666
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
5667
5667
|
end
|
|
5668
5668
|
|
|
5669
|
+
# 本接口(DescribeSecurityGroupExpandedPolicies)用于查看参数模板展开后的安全组规则。本接口会通过缓存降低请求后端服务的调用次数,因此拉取结果会存在延迟(缓存超时时间为1分钟)。
|
|
5670
|
+
|
|
5671
|
+
# @param request: Request instance for DescribeSecurityGroupExpandedPolicies.
|
|
5672
|
+
# @type request: :class:`Tencentcloud::vpc::V20170312::DescribeSecurityGroupExpandedPoliciesRequest`
|
|
5673
|
+
# @rtype: :class:`Tencentcloud::vpc::V20170312::DescribeSecurityGroupExpandedPoliciesResponse`
|
|
5674
|
+
def DescribeSecurityGroupExpandedPolicies(request)
|
|
5675
|
+
body = send_request('DescribeSecurityGroupExpandedPolicies', request.serialize)
|
|
5676
|
+
response = JSON.parse(body)
|
|
5677
|
+
if response['Response'].key?('Error') == false
|
|
5678
|
+
model = DescribeSecurityGroupExpandedPoliciesResponse.new
|
|
5679
|
+
model.deserialize(response['Response'])
|
|
5680
|
+
model
|
|
5681
|
+
else
|
|
5682
|
+
code = response['Response']['Error']['Code']
|
|
5683
|
+
message = response['Response']['Error']['Message']
|
|
5684
|
+
reqid = response['Response']['RequestId']
|
|
5685
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
|
5686
|
+
end
|
|
5687
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
|
5688
|
+
raise e
|
|
5689
|
+
rescue StandardError => e
|
|
5690
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
|
5691
|
+
end
|
|
5692
|
+
|
|
5669
5693
|
# 本接口(DescribeSecurityGroupLimits)用于查询用户安全组配额。
|
|
5670
5694
|
|
|
5671
5695
|
# @param request: Request instance for DescribeSecurityGroupLimits.
|
data/lib/v20170312/models.rb
CHANGED
|
@@ -624,6 +624,13 @@ module TencentCloud
|
|
|
624
624
|
# @type UpdatedTime: String
|
|
625
625
|
|
|
626
626
|
attr_accessor :AddressTemplateId, :AddressTemplateName, :From, :To, :Description, :UpdatedTime
|
|
627
|
+
extend Gem::Deprecate
|
|
628
|
+
deprecate :AddressTemplateName, :none, 2025, 11
|
|
629
|
+
deprecate :AddressTemplateName=, :none, 2025, 11
|
|
630
|
+
deprecate :From, :none, 2025, 11
|
|
631
|
+
deprecate :From=, :none, 2025, 11
|
|
632
|
+
deprecate :To, :none, 2025, 11
|
|
633
|
+
deprecate :To=, :none, 2025, 11
|
|
627
634
|
|
|
628
635
|
def initialize(addresstemplateid=nil, addresstemplatename=nil, from=nil, to=nil, description=nil, updatedtime=nil)
|
|
629
636
|
@AddressTemplateId = addresstemplateid
|
|
@@ -793,8 +800,8 @@ module TencentCloud
|
|
|
793
800
|
|
|
794
801
|
attr_accessor :AddressCount, :InternetServiceProvider, :InternetChargeType, :InternetMaxBandwidthOut, :AddressChargePrepaid, :AddressType, :AnycastZone, :VipCluster, :ApplicableForCLB, :Tags, :BandwidthPackageId, :AddressName, :DedicatedClusterId, :IsDedicatedAddressPool, :Egress, :AntiDDoSPackageId, :ClientToken
|
|
795
802
|
extend Gem::Deprecate
|
|
796
|
-
deprecate :ApplicableForCLB, :none, 2025,
|
|
797
|
-
deprecate :ApplicableForCLB=, :none, 2025,
|
|
803
|
+
deprecate :ApplicableForCLB, :none, 2025, 11
|
|
804
|
+
deprecate :ApplicableForCLB=, :none, 2025, 11
|
|
798
805
|
|
|
799
806
|
def initialize(addresscount=nil, internetserviceprovider=nil, internetchargetype=nil, internetmaxbandwidthout=nil, addresschargeprepaid=nil, addresstype=nil, anycastzone=nil, vipcluster=nil, applicableforclb=nil, tags=nil, bandwidthpackageid=nil, addressname=nil, dedicatedclusterid=nil, isdedicatedaddresspool=nil, egress=nil, antiddospackageid=nil, clienttoken=nil)
|
|
800
807
|
@AddressCount = addresscount
|
|
@@ -3397,6 +3404,9 @@ module TencentCloud
|
|
|
3397
3404
|
# @type ConflictId: String
|
|
3398
3405
|
|
|
3399
3406
|
attr_accessor :ConfilctId, :DestinationItem, :ConflictId
|
|
3407
|
+
extend Gem::Deprecate
|
|
3408
|
+
deprecate :ConfilctId, :none, 2025, 11
|
|
3409
|
+
deprecate :ConfilctId=, :none, 2025, 11
|
|
3400
3410
|
|
|
3401
3411
|
def initialize(confilctid=nil, destinationitem=nil, conflictid=nil)
|
|
3402
3412
|
@ConfilctId = confilctid
|
|
@@ -4306,7 +4316,7 @@ module TencentCloud
|
|
|
4306
4316
|
class CreateFlowLogRequest < TencentCloud::Common::AbstractModel
|
|
4307
4317
|
# @param FlowLogName: 流日志实例名称。长度为不超过60个字符。
|
|
4308
4318
|
# @type FlowLogName: String
|
|
4309
|
-
# @param ResourceType: 流日志所属资源类型,
|
|
4319
|
+
# @param ResourceType: 流日志所属资源类型,NETWORKINTERFACE(网卡),CCN(云联网),NAT(网络地址转化),DCG(专线网关)。当选择CCN,DCG时,请通过工单加入白名单。
|
|
4310
4320
|
# @type ResourceType: String
|
|
4311
4321
|
# @param ResourceId: 资源唯一ID。
|
|
4312
4322
|
# @type ResourceId: String
|
|
@@ -4327,10 +4337,12 @@ module TencentCloud
|
|
|
4327
4337
|
# @type FlowLogStorage: :class:`Tencentcloud::Vpc.v20170312.models.FlowLogStorage`
|
|
4328
4338
|
# @param CloudLogRegion: 流日志存储ID对应的地域,不传递默认为本地域。
|
|
4329
4339
|
# @type CloudLogRegion: String
|
|
4340
|
+
# @param Period: 流日志采集周期,只支持CCN类型流日志。取值范围(单位s):60, 300, 600。
|
|
4341
|
+
# @type Period: Integer
|
|
4330
4342
|
|
|
4331
|
-
attr_accessor :FlowLogName, :ResourceType, :ResourceId, :TrafficType, :VpcId, :FlowLogDescription, :CloudLogId, :Tags, :StorageType, :FlowLogStorage, :CloudLogRegion
|
|
4343
|
+
attr_accessor :FlowLogName, :ResourceType, :ResourceId, :TrafficType, :VpcId, :FlowLogDescription, :CloudLogId, :Tags, :StorageType, :FlowLogStorage, :CloudLogRegion, :Period
|
|
4332
4344
|
|
|
4333
|
-
def initialize(flowlogname=nil, resourcetype=nil, resourceid=nil, traffictype=nil, vpcid=nil, flowlogdescription=nil, cloudlogid=nil, tags=nil, storagetype=nil, flowlogstorage=nil, cloudlogregion=nil)
|
|
4345
|
+
def initialize(flowlogname=nil, resourcetype=nil, resourceid=nil, traffictype=nil, vpcid=nil, flowlogdescription=nil, cloudlogid=nil, tags=nil, storagetype=nil, flowlogstorage=nil, cloudlogregion=nil, period=nil)
|
|
4334
4346
|
@FlowLogName = flowlogname
|
|
4335
4347
|
@ResourceType = resourcetype
|
|
4336
4348
|
@ResourceId = resourceid
|
|
@@ -4342,6 +4354,7 @@ module TencentCloud
|
|
|
4342
4354
|
@StorageType = storagetype
|
|
4343
4355
|
@FlowLogStorage = flowlogstorage
|
|
4344
4356
|
@CloudLogRegion = cloudlogregion
|
|
4357
|
+
@Period = period
|
|
4345
4358
|
end
|
|
4346
4359
|
|
|
4347
4360
|
def deserialize(params)
|
|
@@ -4366,6 +4379,7 @@ module TencentCloud
|
|
|
4366
4379
|
@FlowLogStorage.deserialize(params['FlowLogStorage'])
|
|
4367
4380
|
end
|
|
4368
4381
|
@CloudLogRegion = params['CloudLogRegion']
|
|
4382
|
+
@Period = params['Period']
|
|
4369
4383
|
end
|
|
4370
4384
|
end
|
|
4371
4385
|
|
|
@@ -4821,8 +4835,8 @@ module TencentCloud
|
|
|
4821
4835
|
|
|
4822
4836
|
attr_accessor :NatGatewayName, :VpcId, :InternetMaxBandwidthOut, :MaxConcurrentConnection, :AddressCount, :PublicIpAddresses, :Zone, :Tags, :SubnetId, :StockPublicIpAddressesBandwidthOut, :PublicIpAddressesBandwidthOut, :PublicIpFromSameZone, :NatProductVersion, :DeletionProtectionEnabled
|
|
4823
4837
|
extend Gem::Deprecate
|
|
4824
|
-
deprecate :SubnetId, :none, 2025,
|
|
4825
|
-
deprecate :SubnetId=, :none, 2025,
|
|
4838
|
+
deprecate :SubnetId, :none, 2025, 11
|
|
4839
|
+
deprecate :SubnetId=, :none, 2025, 11
|
|
4826
4840
|
|
|
4827
4841
|
def initialize(natgatewayname=nil, vpcid=nil, internetmaxbandwidthout=nil, maxconcurrentconnection=nil, addresscount=nil, publicipaddresses=nil, zone=nil, tags=nil, subnetid=nil, stockpublicipaddressesbandwidthout=nil, publicipaddressesbandwidthout=nil, publicipfromsamezone=nil, natproductversion=nil, deletionprotectionenabled=nil)
|
|
4828
4842
|
@NatGatewayName = natgatewayname
|
|
@@ -6736,16 +6750,19 @@ module TencentCloud
|
|
|
6736
6750
|
# @type DomainName: String
|
|
6737
6751
|
# @param Tags: 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]。
|
|
6738
6752
|
# @type Tags: Array
|
|
6753
|
+
# @param EnableRouteVpcPublish: vpc关联云联网时路由发布策略, true:开启cidr路由发布,false:开启subnet子网路由发布。创建vpc时默认为子网路由发布,当选择cidr路由发布时,请通过工单加入白名单
|
|
6754
|
+
# @type EnableRouteVpcPublish: Boolean
|
|
6739
6755
|
|
|
6740
|
-
attr_accessor :VpcName, :CidrBlock, :EnableMulticast, :DnsServers, :DomainName, :Tags
|
|
6756
|
+
attr_accessor :VpcName, :CidrBlock, :EnableMulticast, :DnsServers, :DomainName, :Tags, :EnableRouteVpcPublish
|
|
6741
6757
|
|
|
6742
|
-
def initialize(vpcname=nil, cidrblock=nil, enablemulticast=nil, dnsservers=nil, domainname=nil, tags=nil)
|
|
6758
|
+
def initialize(vpcname=nil, cidrblock=nil, enablemulticast=nil, dnsservers=nil, domainname=nil, tags=nil, enableroutevpcpublish=nil)
|
|
6743
6759
|
@VpcName = vpcname
|
|
6744
6760
|
@CidrBlock = cidrblock
|
|
6745
6761
|
@EnableMulticast = enablemulticast
|
|
6746
6762
|
@DnsServers = dnsservers
|
|
6747
6763
|
@DomainName = domainname
|
|
6748
6764
|
@Tags = tags
|
|
6765
|
+
@EnableRouteVpcPublish = enableroutevpcpublish
|
|
6749
6766
|
end
|
|
6750
6767
|
|
|
6751
6768
|
def deserialize(params)
|
|
@@ -6762,6 +6779,7 @@ module TencentCloud
|
|
|
6762
6779
|
@Tags << tag_tmp
|
|
6763
6780
|
end
|
|
6764
6781
|
end
|
|
6782
|
+
@EnableRouteVpcPublish = params['EnableRouteVpcPublish']
|
|
6765
6783
|
end
|
|
6766
6784
|
end
|
|
6767
6785
|
|
|
@@ -9907,11 +9925,11 @@ module TencentCloud
|
|
|
9907
9925
|
# @type AddressIds: Array
|
|
9908
9926
|
# @param Filters: 每次请求的`Filters`的上限为10,`Filter.Values`的上限为100。详细的过滤条件如下:
|
|
9909
9927
|
# <li> address-id - String - 是否必填:否 - (过滤条件)按照 EIP 的唯一 ID 过滤。EIP 唯一 ID 形如:eip-11112222。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取address-id。</li>
|
|
9910
|
-
# <li> address-name - String - 是否必填:否 - (过滤条件)按照 EIP 名称过滤。不支持模糊过滤。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取address-name
|
|
9928
|
+
# <li> address-name - String - 是否必填:否 - (过滤条件)按照 EIP 名称过滤。不支持模糊过滤。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取address-name。注意:当指定 address-name 参数时,仅支持按第一个传入的 address-name 参数执行查询操作。</li>
|
|
9911
9929
|
# <li> address-ip - String - 是否必填:否 - (过滤条件)按照 EIP 的 IP 地址过滤。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取address-ip。</li>
|
|
9912
9930
|
# <li> address-status - String - 是否必填:否 - (过滤条件)按照 EIP 的状态过滤。状态包含:'CREATING':创建中,'BINDING':绑定中,'BIND':已绑,'UNBINDING':解绑中,'UNBIND':未绑定,'OFFLINING':下线中,'BIND_ENI':绑定了ENI。</li>
|
|
9913
9931
|
# <li> instance-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的实例 ID 过滤。实例 ID 形如:ins-11112222。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取instance-id。</li>
|
|
9914
|
-
# <li> private-ip-address - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的内网 IP 过滤。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取private-ip-address
|
|
9932
|
+
# <li> private-ip-address - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的内网 IP 过滤。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取private-ip-address。注意:当指定 private-ip-address 参数时,仅支持按第一个传入的 private-ip-address 参数执行查询操作。</li>
|
|
9915
9933
|
# <li> network-interface-id - String - 是否必填:否 - (过滤条件)按照 EIP 绑定的弹性网卡 ID 过滤。弹性网卡 ID 形如:eni-11112222。可以使用[DescribeAddresses](https://cloud.tencent.com/document/product/215/16702)接口获取network-interface-id。</li>
|
|
9916
9934
|
# <li> is-arrears - String - 是否必填:否 - (过滤条件)按照 EIP 是否欠费进行过滤。(TRUE:EIP 处于欠费状态|FALSE:EIP 费用状态正常)</li>
|
|
9917
9935
|
# <li> address-type - String - 是否必填:否 - (过滤条件)按照 IP类型 进行过滤。可选值:'WanIP':普通公网 IP, 'EIP':弹性公网 IP,'AnycastEIP':加速 IP,'HighQualityEIP':精品弹性公网 IP, 'AntiDDoSEIP':高防 IP。默认值是'EIP'。</li>
|
|
@@ -14411,6 +14429,65 @@ module TencentCloud
|
|
|
14411
14429
|
end
|
|
14412
14430
|
end
|
|
14413
14431
|
|
|
14432
|
+
# DescribeSecurityGroupExpandedPolicies请求参数结构体
|
|
14433
|
+
class DescribeSecurityGroupExpandedPoliciesRequest < TencentCloud::Common::AbstractModel
|
|
14434
|
+
# @param SecurityGroupId: 安全组实例ID,例如:sg-33ocnj9n,可通过<a href="https://cloud.tencent.com/document/product/215/15808">DescribeSecurityGroups</a>获取。
|
|
14435
|
+
# @type SecurityGroupId: String
|
|
14436
|
+
# @param Filters: 过滤条件。
|
|
14437
|
+
# <li>security-group-id - String - 规则中的安全组ID。</li>
|
|
14438
|
+
# <li>ip - String - IP,支持IPV4和IPV6模糊匹配。</li>
|
|
14439
|
+
# <li>address-module - String - IP地址模板或IP地址组模板ID。</li>
|
|
14440
|
+
# <li>service-module - String - 协议端口模板或协议端口组模板ID。</li>
|
|
14441
|
+
# <li>protocol-type - String - 安全组策略支持的协议,可选值:`TCP`, `UDP`, `ICMP`, `ICMPV6`, `GRE`, `ALL`。</li>
|
|
14442
|
+
# <li>port - String - 是否必填:否 -协议端口,支持模糊匹配,值为`ALL`时,查询所有的端口。</li>
|
|
14443
|
+
# <li>poly - String - 协议策略,可选值:`ALL`,所有策略;`ACCEPT`,允许;`DROP`,拒绝。</li>
|
|
14444
|
+
# <li>direction - String - 协议规则,可选值:`ALL`,所有策略;`INBOUND`,入站规则;`OUTBOUND`,出站规则。</li>
|
|
14445
|
+
# <li>description - String - 协议描述,该过滤条件支持模糊匹配。</li>
|
|
14446
|
+
# @type Filters: Array
|
|
14447
|
+
|
|
14448
|
+
attr_accessor :SecurityGroupId, :Filters
|
|
14449
|
+
|
|
14450
|
+
def initialize(securitygroupid=nil, filters=nil)
|
|
14451
|
+
@SecurityGroupId = securitygroupid
|
|
14452
|
+
@Filters = filters
|
|
14453
|
+
end
|
|
14454
|
+
|
|
14455
|
+
def deserialize(params)
|
|
14456
|
+
@SecurityGroupId = params['SecurityGroupId']
|
|
14457
|
+
unless params['Filters'].nil?
|
|
14458
|
+
@Filters = []
|
|
14459
|
+
params['Filters'].each do |i|
|
|
14460
|
+
filter_tmp = Filter.new
|
|
14461
|
+
filter_tmp.deserialize(i)
|
|
14462
|
+
@Filters << filter_tmp
|
|
14463
|
+
end
|
|
14464
|
+
end
|
|
14465
|
+
end
|
|
14466
|
+
end
|
|
14467
|
+
|
|
14468
|
+
# DescribeSecurityGroupExpandedPolicies返回参数结构体
|
|
14469
|
+
class DescribeSecurityGroupExpandedPoliciesResponse < TencentCloud::Common::AbstractModel
|
|
14470
|
+
# @param SecurityGroupPolicySet: 安全组规则集合。
|
|
14471
|
+
# @type SecurityGroupPolicySet: :class:`Tencentcloud::Vpc.v20170312.models.SecurityGroupPolicySet`
|
|
14472
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
14473
|
+
# @type RequestId: String
|
|
14474
|
+
|
|
14475
|
+
attr_accessor :SecurityGroupPolicySet, :RequestId
|
|
14476
|
+
|
|
14477
|
+
def initialize(securitygrouppolicyset=nil, requestid=nil)
|
|
14478
|
+
@SecurityGroupPolicySet = securitygrouppolicyset
|
|
14479
|
+
@RequestId = requestid
|
|
14480
|
+
end
|
|
14481
|
+
|
|
14482
|
+
def deserialize(params)
|
|
14483
|
+
unless params['SecurityGroupPolicySet'].nil?
|
|
14484
|
+
@SecurityGroupPolicySet = SecurityGroupPolicySet.new
|
|
14485
|
+
@SecurityGroupPolicySet.deserialize(params['SecurityGroupPolicySet'])
|
|
14486
|
+
end
|
|
14487
|
+
@RequestId = params['RequestId']
|
|
14488
|
+
end
|
|
14489
|
+
end
|
|
14490
|
+
|
|
14414
14491
|
# DescribeSecurityGroupLimits请求参数结构体
|
|
14415
14492
|
class DescribeSecurityGroupLimitsRequest < TencentCloud::Common::AbstractModel
|
|
14416
14493
|
|
|
@@ -16919,23 +16996,23 @@ module TencentCloud
|
|
|
16919
16996
|
class DestinationIpPortTranslationNatRuleDiff < TencentCloud::Common::AbstractModel
|
|
16920
16997
|
# @param Protocol: 协议
|
|
16921
16998
|
# @type Protocol: String
|
|
16922
|
-
# @param OriginalPort:
|
|
16999
|
+
# @param OriginalPort: 映射前端口
|
|
16923
17000
|
# @type OriginalPort: Integer
|
|
16924
|
-
# @param OriginalIp:
|
|
17001
|
+
# @param OriginalIp: 映射前IP
|
|
16925
17002
|
# @type OriginalIp: String
|
|
16926
|
-
# @param TranslationPort:
|
|
17003
|
+
# @param TranslationPort: 映射后端口
|
|
16927
17004
|
# @type TranslationPort: Integer
|
|
16928
|
-
# @param TranslationIp:
|
|
17005
|
+
# @param TranslationIp: 映射后IP
|
|
16929
17006
|
# @type TranslationIp: String
|
|
16930
17007
|
# @param OldProtocol: 旧协议。
|
|
16931
17008
|
# @type OldProtocol: String
|
|
16932
|
-
# @param OldOriginalPort:
|
|
17009
|
+
# @param OldOriginalPort: 旧映射前端口
|
|
16933
17010
|
# @type OldOriginalPort: Integer
|
|
16934
|
-
# @param OldOriginalIp:
|
|
17011
|
+
# @param OldOriginalIp: 旧映射前IP
|
|
16935
17012
|
# @type OldOriginalIp: String
|
|
16936
|
-
# @param OldTranslationPort:
|
|
17013
|
+
# @param OldTranslationPort: 旧映射后端口
|
|
16937
17014
|
# @type OldTranslationPort: Integer
|
|
16938
|
-
# @param OldTranslationIp:
|
|
17015
|
+
# @param OldTranslationIp: 旧映射后IP
|
|
16939
17016
|
# @type OldTranslationIp: String
|
|
16940
17017
|
# @param Description: 描述
|
|
16941
17018
|
# @type Description: String
|
|
@@ -18498,13 +18575,13 @@ module TencentCloud
|
|
|
18498
18575
|
|
|
18499
18576
|
# 流日志
|
|
18500
18577
|
class FlowLog < TencentCloud::Common::AbstractModel
|
|
18501
|
-
# @param VpcId:
|
|
18578
|
+
# @param VpcId: 私有网络唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/215/15778)接口获取。
|
|
18502
18579
|
# @type VpcId: String
|
|
18503
18580
|
# @param FlowLogId: 流日志唯一ID。
|
|
18504
18581
|
# @type FlowLogId: String
|
|
18505
18582
|
# @param FlowLogName: 流日志实例名字。
|
|
18506
18583
|
# @type FlowLogName: String
|
|
18507
|
-
# @param ResourceType: 流日志所属资源类型:VPC(私有网络),SUBNET(子网),NETWORKINTERFACE(网卡),CCN(云联网),NAT
|
|
18584
|
+
# @param ResourceType: 流日志所属资源类型:VPC(私有网络),SUBNET(子网),NETWORKINTERFACE(网卡),CCN(云联网),NAT(网络地址转换),DCG(专线网关)。
|
|
18508
18585
|
# @type ResourceType: String
|
|
18509
18586
|
# @param ResourceId: 资源唯一ID。
|
|
18510
18587
|
# @type ResourceId: String
|
|
@@ -18528,10 +18605,12 @@ module TencentCloud
|
|
|
18528
18605
|
# @type FlowLogStorage: :class:`Tencentcloud::Vpc.v20170312.models.FlowLogStorage`
|
|
18529
18606
|
# @param CloudLogRegion: 流日志存储ID对应的地域信息。
|
|
18530
18607
|
# @type CloudLogRegion: String
|
|
18608
|
+
# @param Period: 流日志采集周期,只支持CCN类型流日志。取值范围(单位s):60, 300, 600。
|
|
18609
|
+
# @type Period: Integer
|
|
18531
18610
|
|
|
18532
|
-
attr_accessor :VpcId, :FlowLogId, :FlowLogName, :ResourceType, :ResourceId, :TrafficType, :CloudLogId, :CloudLogState, :FlowLogDescription, :CreatedTime, :TagSet, :Enable, :StorageType, :FlowLogStorage, :CloudLogRegion
|
|
18611
|
+
attr_accessor :VpcId, :FlowLogId, :FlowLogName, :ResourceType, :ResourceId, :TrafficType, :CloudLogId, :CloudLogState, :FlowLogDescription, :CreatedTime, :TagSet, :Enable, :StorageType, :FlowLogStorage, :CloudLogRegion, :Period
|
|
18533
18612
|
|
|
18534
|
-
def initialize(vpcid=nil, flowlogid=nil, flowlogname=nil, resourcetype=nil, resourceid=nil, traffictype=nil, cloudlogid=nil, cloudlogstate=nil, flowlogdescription=nil, createdtime=nil, tagset=nil, enable=nil, storagetype=nil, flowlogstorage=nil, cloudlogregion=nil)
|
|
18613
|
+
def initialize(vpcid=nil, flowlogid=nil, flowlogname=nil, resourcetype=nil, resourceid=nil, traffictype=nil, cloudlogid=nil, cloudlogstate=nil, flowlogdescription=nil, createdtime=nil, tagset=nil, enable=nil, storagetype=nil, flowlogstorage=nil, cloudlogregion=nil, period=nil)
|
|
18535
18614
|
@VpcId = vpcid
|
|
18536
18615
|
@FlowLogId = flowlogid
|
|
18537
18616
|
@FlowLogName = flowlogname
|
|
@@ -18547,6 +18626,7 @@ module TencentCloud
|
|
|
18547
18626
|
@StorageType = storagetype
|
|
18548
18627
|
@FlowLogStorage = flowlogstorage
|
|
18549
18628
|
@CloudLogRegion = cloudlogregion
|
|
18629
|
+
@Period = period
|
|
18550
18630
|
end
|
|
18551
18631
|
|
|
18552
18632
|
def deserialize(params)
|
|
@@ -18575,6 +18655,7 @@ module TencentCloud
|
|
|
18575
18655
|
@FlowLogStorage.deserialize(params['FlowLogStorage'])
|
|
18576
18656
|
end
|
|
18577
18657
|
@CloudLogRegion = params['CloudLogRegion']
|
|
18658
|
+
@Period = params['Period']
|
|
18578
18659
|
end
|
|
18579
18660
|
end
|
|
18580
18661
|
|
|
@@ -19236,8 +19317,8 @@ module TencentCloud
|
|
|
19236
19317
|
|
|
19237
19318
|
attr_accessor :EncryptAlgorithm, :IntegrityAlgorith, :IPSECSaLifetimeSeconds, :PfsDhGroup, :IPSECSaLifetimeTraffic, :IntegrityAlgorithm
|
|
19238
19319
|
extend Gem::Deprecate
|
|
19239
|
-
deprecate :IntegrityAlgorith, :none, 2025,
|
|
19240
|
-
deprecate :IntegrityAlgorith=, :none, 2025,
|
|
19320
|
+
deprecate :IntegrityAlgorith, :none, 2025, 11
|
|
19321
|
+
deprecate :IntegrityAlgorith=, :none, 2025, 11
|
|
19241
19322
|
|
|
19242
19323
|
def initialize(encryptalgorithm=nil, integrityalgorith=nil, ipsecsalifetimeseconds=nil, pfsdhgroup=nil, ipsecsalifetimetraffic=nil, integrityalgorithm=nil)
|
|
19243
19324
|
@EncryptAlgorithm = encryptalgorithm
|
|
@@ -20134,15 +20215,15 @@ module TencentCloud
|
|
|
20134
20215
|
|
|
20135
20216
|
# 本端目的IP端口转换复杂结构
|
|
20136
20217
|
class LocalDestinationIpPortTranslationNatRule < TencentCloud::Common::AbstractModel
|
|
20137
|
-
# @param Protocol:
|
|
20218
|
+
# @param Protocol: 协议,包含TCP和UDP
|
|
20138
20219
|
# @type Protocol: String
|
|
20139
|
-
# @param OriginalPort:
|
|
20220
|
+
# @param OriginalPort: 映射前端口
|
|
20140
20221
|
# @type OriginalPort: Integer
|
|
20141
|
-
# @param OriginalIp:
|
|
20222
|
+
# @param OriginalIp: 映射前IP
|
|
20142
20223
|
# @type OriginalIp: String
|
|
20143
|
-
# @param TranslationPort:
|
|
20224
|
+
# @param TranslationPort: 映射后端口
|
|
20144
20225
|
# @type TranslationPort: Integer
|
|
20145
|
-
# @param TranslationIp:
|
|
20226
|
+
# @param TranslationIp: 映射后IP
|
|
20146
20227
|
# @type TranslationIp: String
|
|
20147
20228
|
# @param Description: 描述
|
|
20148
20229
|
# @type Description: String
|
|
@@ -20624,10 +20705,10 @@ module TencentCloud
|
|
|
20624
20705
|
|
|
20625
20706
|
attr_accessor :AddressIds, :InternetMaxBandwidthOut, :StartTime, :EndTime
|
|
20626
20707
|
extend Gem::Deprecate
|
|
20627
|
-
deprecate :StartTime, :none, 2025,
|
|
20628
|
-
deprecate :StartTime=, :none, 2025,
|
|
20629
|
-
deprecate :EndTime, :none, 2025,
|
|
20630
|
-
deprecate :EndTime=, :none, 2025,
|
|
20708
|
+
deprecate :StartTime, :none, 2025, 11
|
|
20709
|
+
deprecate :StartTime=, :none, 2025, 11
|
|
20710
|
+
deprecate :EndTime, :none, 2025, 11
|
|
20711
|
+
deprecate :EndTime=, :none, 2025, 11
|
|
20631
20712
|
|
|
20632
20713
|
def initialize(addressids=nil, internetmaxbandwidthout=nil, starttime=nil, endtime=nil)
|
|
20633
20714
|
@AddressIds = addressids
|
|
@@ -22994,17 +23075,20 @@ module TencentCloud
|
|
|
22994
23075
|
# @type DnsServers: Array
|
|
22995
23076
|
# @param DomainName: 域名。
|
|
22996
23077
|
# @type DomainName: String
|
|
23078
|
+
# @param EnableRouteVpcPublish: vpc关联云联网时路由发布策略, true:开启cidr路由发布,false:开启subnet子网路由发布。创建vpc时默认为子网路由发布,当选择cidr路由发布时,请通过工单加入白名单
|
|
23079
|
+
# @type EnableRouteVpcPublish: Boolean
|
|
22997
23080
|
# @param EnableCdcPublish: 发布cdc 子网到云联网的开关。true: 发布, false: 不发布。
|
|
22998
23081
|
# @type EnableCdcPublish: Boolean
|
|
22999
23082
|
|
|
23000
|
-
attr_accessor :VpcId, :VpcName, :EnableMulticast, :DnsServers, :DomainName, :EnableCdcPublish
|
|
23083
|
+
attr_accessor :VpcId, :VpcName, :EnableMulticast, :DnsServers, :DomainName, :EnableRouteVpcPublish, :EnableCdcPublish
|
|
23001
23084
|
|
|
23002
|
-
def initialize(vpcid=nil, vpcname=nil, enablemulticast=nil, dnsservers=nil, domainname=nil, enablecdcpublish=nil)
|
|
23085
|
+
def initialize(vpcid=nil, vpcname=nil, enablemulticast=nil, dnsservers=nil, domainname=nil, enableroutevpcpublish=nil, enablecdcpublish=nil)
|
|
23003
23086
|
@VpcId = vpcid
|
|
23004
23087
|
@VpcName = vpcname
|
|
23005
23088
|
@EnableMulticast = enablemulticast
|
|
23006
23089
|
@DnsServers = dnsservers
|
|
23007
23090
|
@DomainName = domainname
|
|
23091
|
+
@EnableRouteVpcPublish = enableroutevpcpublish
|
|
23008
23092
|
@EnableCdcPublish = enablecdcpublish
|
|
23009
23093
|
end
|
|
23010
23094
|
|
|
@@ -23014,6 +23098,7 @@ module TencentCloud
|
|
|
23014
23098
|
@EnableMulticast = params['EnableMulticast']
|
|
23015
23099
|
@DnsServers = params['DnsServers']
|
|
23016
23100
|
@DomainName = params['DomainName']
|
|
23101
|
+
@EnableRouteVpcPublish = params['EnableRouteVpcPublish']
|
|
23017
23102
|
@EnableCdcPublish = params['EnableCdcPublish']
|
|
23018
23103
|
end
|
|
23019
23104
|
end
|
|
@@ -24708,13 +24793,13 @@ module TencentCloud
|
|
|
24708
24793
|
class PrivateNatDestinationIpPortTranslationNatRule < TencentCloud::Common::AbstractModel
|
|
24709
24794
|
# @param Protocol: 协议
|
|
24710
24795
|
# @type Protocol: String
|
|
24711
|
-
# @param OriginalPort:
|
|
24796
|
+
# @param OriginalPort: 映射前端口
|
|
24712
24797
|
# @type OriginalPort: Integer
|
|
24713
|
-
# @param OriginalIp:
|
|
24798
|
+
# @param OriginalIp: 映射前IP
|
|
24714
24799
|
# @type OriginalIp: String
|
|
24715
|
-
# @param TranslationPort:
|
|
24800
|
+
# @param TranslationPort: 映射后端口
|
|
24716
24801
|
# @type TranslationPort: Integer
|
|
24717
|
-
# @param TranslationIp:
|
|
24802
|
+
# @param TranslationIp: 映射后IP
|
|
24718
24803
|
# @type TranslationIp: String
|
|
24719
24804
|
# @param Description: 描述
|
|
24720
24805
|
# @type Description: String
|
|
@@ -24766,7 +24851,7 @@ module TencentCloud
|
|
|
24766
24851
|
# @type TagSet: Array
|
|
24767
24852
|
# @param DirectConnectGatewayIds: 专线网关唯一`ID`
|
|
24768
24853
|
# @type DirectConnectGatewayIds: Array
|
|
24769
|
-
# @param NatType:
|
|
24854
|
+
# @param NatType: 私网网关类型。可选类型:"DCG","VPC","CCN",分别对应专线网关、私有网络、云联网。
|
|
24770
24855
|
# @type NatType: String
|
|
24771
24856
|
# @param CrossDomainInfo: 私网NAT跨域信息
|
|
24772
24857
|
# @type CrossDomainInfo: :class:`Tencentcloud::Vpc.v20170312.models.PrivateNatCrossDomainInfo`
|
|
@@ -27813,7 +27898,7 @@ module TencentCloud
|
|
|
27813
27898
|
class SourceIpTranslationNatRule < TencentCloud::Common::AbstractModel
|
|
27814
27899
|
# @param ResourceId: 资源ID,如果ResourceType为USERDEFINED,可以为空字符串
|
|
27815
27900
|
# @type ResourceId: String
|
|
27816
|
-
# @param ResourceType: 资源类型,目前包含SUBNET、NETWORKINTERFACE、USERDEFINED
|
|
27901
|
+
# @param ResourceType: 资源类型,目前包含SUBNET、NETWORKINTERFACE、USERDEFINED,分别表示子网、网卡、自定义网段
|
|
27817
27902
|
# @type ResourceType: String
|
|
27818
27903
|
# @param PrivateIpAddress: 源IP/网段
|
|
27819
27904
|
# @type PrivateIpAddress: String
|
|
@@ -28672,13 +28757,13 @@ module TencentCloud
|
|
|
28672
28757
|
class TranslationNatRule < TencentCloud::Common::AbstractModel
|
|
28673
28758
|
# @param TranslationDirection: 转换规则目标,可选值"LOCAL","PEER"。
|
|
28674
28759
|
# @type TranslationDirection: String
|
|
28675
|
-
# @param TranslationType: 转换规则类型,可选值"NETWORK_LAYER","TRANSPORT_LAYER"
|
|
28760
|
+
# @param TranslationType: 转换规则类型,可选值"NETWORK_LAYER","TRANSPORT_LAYER"。分别对应三层和四层。
|
|
28676
28761
|
# @type TranslationType: String
|
|
28677
|
-
# @param TranslationIp:
|
|
28762
|
+
# @param TranslationIp: 映射后IP,当转换规则类型为四层时为`IP`池。
|
|
28678
28763
|
# @type TranslationIp: String
|
|
28679
28764
|
# @param Description: 转换规则描述。
|
|
28680
28765
|
# @type Description: String
|
|
28681
|
-
# @param OriginalIp:
|
|
28766
|
+
# @param OriginalIp: 映射前IP,当转换规则类型为三层时有效。
|
|
28682
28767
|
# @type OriginalIp: String
|
|
28683
28768
|
# @param CreateTime: 创建时间。
|
|
28684
28769
|
# @type CreateTime: String
|
|
@@ -28712,27 +28797,27 @@ module TencentCloud
|
|
|
28712
28797
|
class TranslationNatRuleDiff < TencentCloud::Common::AbstractModel
|
|
28713
28798
|
# @param TranslationDirection: 转发规则目标,可选值"LOCAL","PEER"。
|
|
28714
28799
|
# @type TranslationDirection: String
|
|
28715
|
-
# @param TranslationType:
|
|
28800
|
+
# @param TranslationType: 转换规则类型,可选值"NETWORK_LAYER","TRANSPORT_LAYER"。分别对应三层、四层。
|
|
28716
28801
|
# @type TranslationType: String
|
|
28717
|
-
# @param TranslationIp:
|
|
28802
|
+
# @param TranslationIp: 转发规则映射后`IP`,当转发规则类型为四层时为`IP`池
|
|
28718
28803
|
# @type TranslationIp: String
|
|
28804
|
+
# @param OldTranslationIp: 旧转发规则映射后`IP`,当转发规则类型为四层时为`IP`池
|
|
28805
|
+
# @type OldTranslationIp: String
|
|
28719
28806
|
# @param Description: 转发规则描述。
|
|
28720
28807
|
# @type Description: String
|
|
28721
|
-
# @param
|
|
28722
|
-
# @type OldTranslationIp: String
|
|
28723
|
-
# @param OriginalIp: 新转发规则源`IP`,当转发规则类型为三层时有效
|
|
28808
|
+
# @param OriginalIp: 新转发规则映射前`IP`,当转发规则类型为三层时有效
|
|
28724
28809
|
# @type OriginalIp: String
|
|
28725
|
-
# @param OldOriginalIp:
|
|
28810
|
+
# @param OldOriginalIp: 旧转发规则映射前`IP`,当转发规则类型为三层时有效
|
|
28726
28811
|
# @type OldOriginalIp: String
|
|
28727
28812
|
|
|
28728
|
-
attr_accessor :TranslationDirection, :TranslationType, :TranslationIp, :
|
|
28813
|
+
attr_accessor :TranslationDirection, :TranslationType, :TranslationIp, :OldTranslationIp, :Description, :OriginalIp, :OldOriginalIp
|
|
28729
28814
|
|
|
28730
|
-
def initialize(translationdirection=nil, translationtype=nil, translationip=nil,
|
|
28815
|
+
def initialize(translationdirection=nil, translationtype=nil, translationip=nil, oldtranslationip=nil, description=nil, originalip=nil, oldoriginalip=nil)
|
|
28731
28816
|
@TranslationDirection = translationdirection
|
|
28732
28817
|
@TranslationType = translationtype
|
|
28733
28818
|
@TranslationIp = translationip
|
|
28734
|
-
@Description = description
|
|
28735
28819
|
@OldTranslationIp = oldtranslationip
|
|
28820
|
+
@Description = description
|
|
28736
28821
|
@OriginalIp = originalip
|
|
28737
28822
|
@OldOriginalIp = oldoriginalip
|
|
28738
28823
|
end
|
|
@@ -28741,8 +28826,8 @@ module TencentCloud
|
|
|
28741
28826
|
@TranslationDirection = params['TranslationDirection']
|
|
28742
28827
|
@TranslationType = params['TranslationType']
|
|
28743
28828
|
@TranslationIp = params['TranslationIp']
|
|
28744
|
-
@Description = params['Description']
|
|
28745
28829
|
@OldTranslationIp = params['OldTranslationIp']
|
|
28830
|
+
@Description = params['Description']
|
|
28746
28831
|
@OriginalIp = params['OriginalIp']
|
|
28747
28832
|
@OldOriginalIp = params['OldOriginalIp']
|
|
28748
28833
|
end
|
|
@@ -28752,13 +28837,13 @@ module TencentCloud
|
|
|
28752
28837
|
class TranslationNatRuleInput < TencentCloud::Common::AbstractModel
|
|
28753
28838
|
# @param TranslationDirection: 转换规则目标,可选值"LOCAL","PEER"。
|
|
28754
28839
|
# @type TranslationDirection: String
|
|
28755
|
-
# @param TranslationType: 转换规则类型,可选值"NETWORK_LAYER","TRANSPORT_LAYER"
|
|
28840
|
+
# @param TranslationType: 转换规则类型,可选值"NETWORK_LAYER","TRANSPORT_LAYER"。分别对应三层、四层。
|
|
28756
28841
|
# @type TranslationType: String
|
|
28757
|
-
# @param TranslationIp:
|
|
28842
|
+
# @param TranslationIp: 映射后`IP`,当转换规则类型为四层时为`IP`池。
|
|
28758
28843
|
# @type TranslationIp: String
|
|
28759
28844
|
# @param Description: 转换规则描述。
|
|
28760
28845
|
# @type Description: String
|
|
28761
|
-
# @param OriginalIp:
|
|
28846
|
+
# @param OriginalIp: 映射前`IP`,当转换规则类型为三层时有效。
|
|
28762
28847
|
# @type OriginalIp: String
|
|
28763
28848
|
|
|
28764
28849
|
attr_accessor :TranslationDirection, :TranslationType, :TranslationIp, :Description, :OriginalIp
|
|
@@ -29195,12 +29280,14 @@ module TencentCloud
|
|
|
29195
29280
|
# @type TagSet: Array
|
|
29196
29281
|
# @param AssistantCidrSet: 辅助CIDR
|
|
29197
29282
|
# @type AssistantCidrSet: Array
|
|
29283
|
+
# @param EnableRouteVpcPublish: vpc关联云联网时路由发布策略, true:开启cidr路由发布,false:开启subnet子网路由发布。创建vpc时默认为子网路由发布,当选择cidr路由发布时,请通过工单加入白名单
|
|
29284
|
+
# @type EnableRouteVpcPublish: Boolean
|
|
29198
29285
|
# @param Ipv6CidrBlockSet: 返回多运营商IPv6 Cidr Block
|
|
29199
29286
|
# @type Ipv6CidrBlockSet: Array
|
|
29200
29287
|
|
|
29201
|
-
attr_accessor :VpcName, :VpcId, :CidrBlock, :IsDefault, :EnableMulticast, :CreatedTime, :DnsServerSet, :DomainName, :DhcpOptionsId, :EnableDhcp, :Ipv6CidrBlock, :TagSet, :AssistantCidrSet, :Ipv6CidrBlockSet
|
|
29288
|
+
attr_accessor :VpcName, :VpcId, :CidrBlock, :IsDefault, :EnableMulticast, :CreatedTime, :DnsServerSet, :DomainName, :DhcpOptionsId, :EnableDhcp, :Ipv6CidrBlock, :TagSet, :AssistantCidrSet, :EnableRouteVpcPublish, :Ipv6CidrBlockSet
|
|
29202
29289
|
|
|
29203
|
-
def initialize(vpcname=nil, vpcid=nil, cidrblock=nil, isdefault=nil, enablemulticast=nil, createdtime=nil, dnsserverset=nil, domainname=nil, dhcpoptionsid=nil, enabledhcp=nil, ipv6cidrblock=nil, tagset=nil, assistantcidrset=nil, ipv6cidrblockset=nil)
|
|
29290
|
+
def initialize(vpcname=nil, vpcid=nil, cidrblock=nil, isdefault=nil, enablemulticast=nil, createdtime=nil, dnsserverset=nil, domainname=nil, dhcpoptionsid=nil, enabledhcp=nil, ipv6cidrblock=nil, tagset=nil, assistantcidrset=nil, enableroutevpcpublish=nil, ipv6cidrblockset=nil)
|
|
29204
29291
|
@VpcName = vpcname
|
|
29205
29292
|
@VpcId = vpcid
|
|
29206
29293
|
@CidrBlock = cidrblock
|
|
@@ -29214,6 +29301,7 @@ module TencentCloud
|
|
|
29214
29301
|
@Ipv6CidrBlock = ipv6cidrblock
|
|
29215
29302
|
@TagSet = tagset
|
|
29216
29303
|
@AssistantCidrSet = assistantcidrset
|
|
29304
|
+
@EnableRouteVpcPublish = enableroutevpcpublish
|
|
29217
29305
|
@Ipv6CidrBlockSet = ipv6cidrblockset
|
|
29218
29306
|
end
|
|
29219
29307
|
|
|
@@ -29245,6 +29333,7 @@ module TencentCloud
|
|
|
29245
29333
|
@AssistantCidrSet << assistantcidr_tmp
|
|
29246
29334
|
end
|
|
29247
29335
|
end
|
|
29336
|
+
@EnableRouteVpcPublish = params['EnableRouteVpcPublish']
|
|
29248
29337
|
unless params['Ipv6CidrBlockSet'].nil?
|
|
29249
29338
|
@Ipv6CidrBlockSet = []
|
|
29250
29339
|
params['Ipv6CidrBlockSet'].each do |i|
|
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.1161
|
|
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-
|
|
11
|
+
date: 2025-11-04 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: tencentcloud-sdk-common
|
|
@@ -33,9 +33,9 @@ executables: []
|
|
|
33
33
|
extensions: []
|
|
34
34
|
extra_rdoc_files: []
|
|
35
35
|
files:
|
|
36
|
-
- lib/v20170312/models.rb
|
|
37
|
-
- lib/v20170312/client.rb
|
|
38
36
|
- lib/tencentcloud-sdk-vpc.rb
|
|
37
|
+
- lib/v20170312/client.rb
|
|
38
|
+
- lib/v20170312/models.rb
|
|
39
39
|
- lib/VERSION
|
|
40
40
|
homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
|
|
41
41
|
licenses:
|