tencentcloud-sdk-vpc 3.0.942 → 3.0.943

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 1a3d9bd868effaaac6c6eb98e5f51d2f4ccf331e
4
- data.tar.gz: b3b6d88c270a28e393144ec5adb1c69a7c6b256e
3
+ metadata.gz: 678e0f7bb22b966badc57338fa486a5148587c37
4
+ data.tar.gz: b646232bc5ce96662402a25c994a17dbc721c02c
5
5
  SHA512:
6
- metadata.gz: f152601dd265ad3dffe1247df82f147d3345878ddd56425786d6217f4be20884cf40dfba1de499d0b298f7efb53be2ff40df82b81a169f06327817e7281af7dc
7
- data.tar.gz: 1dcdb308382cd30fac8f2bcb1c6988455c7877a82d627cf5f58b74724dc8062785b708e3f4a7bd685cdb32a50f53ffb033cb1536503c760d8933cf0509cb2f6a
6
+ metadata.gz: ea1d659d97cdc881a9097c96eaee398b62e054f4619b2f8decfd8eea8288c7188891184e63e099a81b2b395756f70aa85d2aa3a0c0b3554541fb7cdee6eca130
7
+ data.tar.gz: 2c93d819d2ef837e6ff1d36d7999faebc6db8ab9e4c5ea30f969662d07d66bbb423ed1be46afcbfa1e3a44b5b3b384d7d7fc349f9508b6ddb38b2eab06c952d8
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.942
1
+ 3.0.943
@@ -1470,7 +1470,7 @@ module TencentCloud
1470
1470
  # * 创建弹性网卡时可以指定需要申请的内网IP数量,系统会随机生成内网IP地址。
1471
1471
  # * 一个弹性网卡支持绑定的IP地址是有限制的,更多资源限制信息详见<a href="/document/product/576/18527">弹性网卡使用限制</a>。
1472
1472
  # * 创建弹性网卡同时可以绑定已有安全组。
1473
- # * 创建弹性网卡同时可以绑定标签, 应答里的标签列表代表添加成功的标签。
1473
+ # * 创建弹性网卡同时可以绑定标签, 响应里的标签列表代表添加成功的标签。
1474
1474
  # >?本接口为异步接口,可调用 [DescribeVpcTaskResult](https://cloud.tencent.com/document/api/215/59037) 接口查询任务执行结果,待任务执行成功后再进行其他操作。
1475
1475
  # >
1476
1476
 
@@ -5561,6 +5561,12 @@ module TencentCloud
5561
5561
  # * vpc-max-assistant_cidrs(每个VPC可分配的辅助CIDR数)。
5562
5562
  # * appid-max-end-point-services (每个开发商每个地域可创建的终端节点服务个数)。
5563
5563
  # * appid-max-end-point-service-white-lists (每个开发商每个地域可创建的终端节点服务白名单个数)。
5564
+ # * vpc-max-cmcc-ipv6-cidrs (每个VPC可创建的移动IPv6 CIDR个数)。
5565
+ # * vpc-max-ctcc-ipv6-cidrs (每个VPC可创建的电信IPv6 CIDR个数)。
5566
+ # * vpc-max-cucc-ipv6-cidrs (每个VPC可创建的联调IPv6 CIDR个数)。
5567
+ # * vpc-max-bgp-ipv6-cidrs (每个VPC可创建的默认IPv6 CIDR个数)。
5568
+ # * vpc-max-custom-ipv6-cidrs (每个VPC可创建的自定义IPv6 CIDR个数)。
5569
+ # * vpc-max-ula-ipv6-cidrs (每个VPC可创建的ULA IPv6 CIDR个数)。
5564
5570
 
5565
5571
  # @param request: Request instance for DescribeVpcLimits.
5566
5572
  # @type request: :class:`Tencentcloud::vpc::V20170312::DescribeVpcLimitsRequest`
@@ -8111,7 +8117,6 @@ module TencentCloud
8111
8117
 
8112
8118
  # 本接口(ModifyVpcEndPointServiceAttribute)用于修改终端节点服务属性。
8113
8119
 
8114
-
8115
8120
  # @param request: Request instance for ModifyVpcEndPointServiceAttribute.
8116
8121
  # @type request: :class:`Tencentcloud::vpc::V20170312::ModifyVpcEndPointServiceAttributeRequest`
8117
8122
  # @rtype: :class:`Tencentcloud::vpc::V20170312::ModifyVpcEndPointServiceAttributeResponse`
@@ -3719,14 +3719,17 @@ module TencentCloud
3719
3719
  # @type DhcpIpName: String
3720
3720
  # @param SecondaryPrivateIpAddressCount: 新申请的内网IP地址个数。总数不能超过64个,为了兼容性,当前参数必填。
3721
3721
  # @type SecondaryPrivateIpAddressCount: Integer
3722
+ # @param Tags: 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]。
3723
+ # @type Tags: Array
3722
3724
 
3723
- attr_accessor :VpcId, :SubnetId, :DhcpIpName, :SecondaryPrivateIpAddressCount
3725
+ attr_accessor :VpcId, :SubnetId, :DhcpIpName, :SecondaryPrivateIpAddressCount, :Tags
3724
3726
 
3725
- def initialize(vpcid=nil, subnetid=nil, dhcpipname=nil, secondaryprivateipaddresscount=nil)
3727
+ def initialize(vpcid=nil, subnetid=nil, dhcpipname=nil, secondaryprivateipaddresscount=nil, tags=nil)
3726
3728
  @VpcId = vpcid
3727
3729
  @SubnetId = subnetid
3728
3730
  @DhcpIpName = dhcpipname
3729
3731
  @SecondaryPrivateIpAddressCount = secondaryprivateipaddresscount
3732
+ @Tags = tags
3730
3733
  end
3731
3734
 
3732
3735
  def deserialize(params)
@@ -3734,6 +3737,14 @@ module TencentCloud
3734
3737
  @SubnetId = params['SubnetId']
3735
3738
  @DhcpIpName = params['DhcpIpName']
3736
3739
  @SecondaryPrivateIpAddressCount = params['SecondaryPrivateIpAddressCount']
3740
+ unless params['Tags'].nil?
3741
+ @Tags = []
3742
+ params['Tags'].each do |i|
3743
+ tag_tmp = Tag.new
3744
+ tag_tmp.deserialize(i)
3745
+ @Tags << tag_tmp
3746
+ end
3747
+ end
3737
3748
  end
3738
3749
  end
3739
3750
 
@@ -4198,19 +4209,30 @@ module TencentCloud
4198
4209
  # @type VpcId: String
4199
4210
  # @param CdcId: CDC实例ID。
4200
4211
  # @type CdcId: String
4212
+ # @param Tags: 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]。
4213
+ # @type Tags: Array
4201
4214
 
4202
- attr_accessor :LocalGatewayName, :VpcId, :CdcId
4215
+ attr_accessor :LocalGatewayName, :VpcId, :CdcId, :Tags
4203
4216
 
4204
- def initialize(localgatewayname=nil, vpcid=nil, cdcid=nil)
4217
+ def initialize(localgatewayname=nil, vpcid=nil, cdcid=nil, tags=nil)
4205
4218
  @LocalGatewayName = localgatewayname
4206
4219
  @VpcId = vpcid
4207
4220
  @CdcId = cdcid
4221
+ @Tags = tags
4208
4222
  end
4209
4223
 
4210
4224
  def deserialize(params)
4211
4225
  @LocalGatewayName = params['LocalGatewayName']
4212
4226
  @VpcId = params['VpcId']
4213
4227
  @CdcId = params['CdcId']
4228
+ unless params['Tags'].nil?
4229
+ @Tags = []
4230
+ params['Tags'].each do |i|
4231
+ tag_tmp = Tag.new
4232
+ tag_tmp.deserialize(i)
4233
+ @Tags << tag_tmp
4234
+ end
4235
+ end
4214
4236
  end
4215
4237
  end
4216
4238
 
@@ -4458,10 +4480,12 @@ module TencentCloud
4458
4480
  # @type NextHopDestination: String
4459
4481
  # @param NetDetectDescription: 网络探测描述。
4460
4482
  # @type NetDetectDescription: String
4483
+ # @param Tags: 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]。
4484
+ # @type Tags: Array
4461
4485
 
4462
- attr_accessor :VpcId, :SubnetId, :NetDetectName, :DetectDestinationIp, :NextHopType, :NextHopDestination, :NetDetectDescription
4486
+ attr_accessor :VpcId, :SubnetId, :NetDetectName, :DetectDestinationIp, :NextHopType, :NextHopDestination, :NetDetectDescription, :Tags
4463
4487
 
4464
- def initialize(vpcid=nil, subnetid=nil, netdetectname=nil, detectdestinationip=nil, nexthoptype=nil, nexthopdestination=nil, netdetectdescription=nil)
4488
+ def initialize(vpcid=nil, subnetid=nil, netdetectname=nil, detectdestinationip=nil, nexthoptype=nil, nexthopdestination=nil, netdetectdescription=nil, tags=nil)
4465
4489
  @VpcId = vpcid
4466
4490
  @SubnetId = subnetid
4467
4491
  @NetDetectName = netdetectname
@@ -4469,6 +4493,7 @@ module TencentCloud
4469
4493
  @NextHopType = nexthoptype
4470
4494
  @NextHopDestination = nexthopdestination
4471
4495
  @NetDetectDescription = netdetectdescription
4496
+ @Tags = tags
4472
4497
  end
4473
4498
 
4474
4499
  def deserialize(params)
@@ -4479,6 +4504,14 @@ module TencentCloud
4479
4504
  @NextHopType = params['NextHopType']
4480
4505
  @NextHopDestination = params['NextHopDestination']
4481
4506
  @NetDetectDescription = params['NetDetectDescription']
4507
+ unless params['Tags'].nil?
4508
+ @Tags = []
4509
+ params['Tags'].each do |i|
4510
+ tag_tmp = Tag.new
4511
+ tag_tmp.deserialize(i)
4512
+ @Tags << tag_tmp
4513
+ end
4514
+ end
4482
4515
  end
4483
4516
  end
4484
4517
 
@@ -4652,6 +4685,7 @@ module TencentCloud
4652
4685
  # @param NetworkInterfaceDescription: 弹性网卡描述,可任意命名,但不得超过60个字符。
4653
4686
  # @type NetworkInterfaceDescription: String
4654
4687
  # @param SecondaryPrivateIpAddressCount: 新申请的内网IP地址个数,内网IP地址个数总和不能超过配额数。
4688
+ # 配额数查询:[DescribeVpcLimits](https://cloud.tencent.com/document/api/215/42942)。
4655
4689
  # @type SecondaryPrivateIpAddressCount: Integer
4656
4690
  # @param QosLevel: IP服务质量等级,和SecondaryPrivateIpAddressCount配合使用,可选值:PT、AU、AG、DEFAULT,分别代表云金、云银、云铜、默认四个等级。
4657
4691
  # @type QosLevel: String
@@ -9661,6 +9695,8 @@ module TencentCloud
9661
9695
  # @type UniformSocialCreditCode: String
9662
9696
  # @param LegalPerson: (模糊查询)法定代表人。
9663
9697
  # @type LegalPerson: String
9698
+ # @param LegalPersonId: (精确查询)法人身份证号。
9699
+ # @type LegalPersonId: String
9664
9700
  # @param IssuingAuthority: (模糊查询)发证机关。
9665
9701
  # @type IssuingAuthority: String
9666
9702
  # @param BusinessAddress: (模糊查询)营业执照住所。
@@ -9688,14 +9724,15 @@ module TencentCloud
9688
9724
  # @param Limit: 返回数量
9689
9725
  # @type Limit: Integer
9690
9726
 
9691
- attr_accessor :ServiceProvider, :ComplianceId, :Company, :UniformSocialCreditCode, :LegalPerson, :IssuingAuthority, :BusinessAddress, :PostCode, :Manager, :ManagerId, :ManagerAddress, :ManagerTelephone, :Email, :ServiceStartDate, :ServiceEndDate, :State, :Offset, :Limit
9727
+ attr_accessor :ServiceProvider, :ComplianceId, :Company, :UniformSocialCreditCode, :LegalPerson, :LegalPersonId, :IssuingAuthority, :BusinessAddress, :PostCode, :Manager, :ManagerId, :ManagerAddress, :ManagerTelephone, :Email, :ServiceStartDate, :ServiceEndDate, :State, :Offset, :Limit
9692
9728
 
9693
- def initialize(serviceprovider=nil, complianceid=nil, company=nil, uniformsocialcreditcode=nil, legalperson=nil, issuingauthority=nil, businessaddress=nil, postcode=nil, manager=nil, managerid=nil, manageraddress=nil, managertelephone=nil, email=nil, servicestartdate=nil, serviceenddate=nil, state=nil, offset=nil, limit=nil)
9729
+ def initialize(serviceprovider=nil, complianceid=nil, company=nil, uniformsocialcreditcode=nil, legalperson=nil, legalpersonid=nil, issuingauthority=nil, businessaddress=nil, postcode=nil, manager=nil, managerid=nil, manageraddress=nil, managertelephone=nil, email=nil, servicestartdate=nil, serviceenddate=nil, state=nil, offset=nil, limit=nil)
9694
9730
  @ServiceProvider = serviceprovider
9695
9731
  @ComplianceId = complianceid
9696
9732
  @Company = company
9697
9733
  @UniformSocialCreditCode = uniformsocialcreditcode
9698
9734
  @LegalPerson = legalperson
9735
+ @LegalPersonId = legalpersonid
9699
9736
  @IssuingAuthority = issuingauthority
9700
9737
  @BusinessAddress = businessaddress
9701
9738
  @PostCode = postcode
@@ -9717,6 +9754,7 @@ module TencentCloud
9717
9754
  @Company = params['Company']
9718
9755
  @UniformSocialCreditCode = params['UniformSocialCreditCode']
9719
9756
  @LegalPerson = params['LegalPerson']
9757
+ @LegalPersonId = params['LegalPersonId']
9720
9758
  @IssuingAuthority = params['IssuingAuthority']
9721
9759
  @BusinessAddress = params['BusinessAddress']
9722
9760
  @PostCode = params['PostCode']
@@ -10780,7 +10818,7 @@ module TencentCloud
10780
10818
  # <li> ip6-translator-id - String - 是否必填:否 - (过滤条件)按照IPV6转换实例的唯一ID过滤,形如ip6-xxxxxxx。</li>
10781
10819
  # <li> ip6-translator-vip6 - String - 是否必填:否 - (过滤条件)按照IPV6地址过滤。不支持模糊过滤。</li>
10782
10820
  # <li> ip6-translator-name - String - 是否必填:否 - (过滤条件)按照IPV6转换实例名称过滤。不支持模糊过滤。</li>
10783
- # <li> ip6-translator-status - String - 是否必填:否 - (过滤条件)按照IPV6转换实例的状态过滤。状态取值范围为"CREATING","RUNNING","DELETING","MODIFYING"
10821
+ # <li> ip6-translator-status - String - 是否必填:否 - (过滤条件)按照IPV6转换实例的状态过滤。状态取值范围为"CREATING","RUNNING","DELETING","MODIFYING"。</li>
10784
10822
  # @type Filters: Array
10785
10823
  # @param Offset: 偏移量,默认为0。关于`Offset`的更进一步介绍请参考 API [简介](https://cloud.tencent.com/document/api/213/11646)中的相关小节。
10786
10824
  # @type Offset: Integer
@@ -15073,10 +15111,13 @@ module TencentCloud
15073
15111
  # @type State: String
15074
15112
  # @param CreatedTime: 创建时间。
15075
15113
  # @type CreatedTime: String
15114
+ # @param TagSet: 标签键值对。
15115
+ # 注意:此字段可能返回 null,表示取不到有效值。
15116
+ # @type TagSet: Array
15076
15117
 
15077
- attr_accessor :DhcpIpId, :VpcId, :SubnetId, :DhcpIpName, :PrivateIpAddress, :AddressIp, :NetworkInterfaceId, :InstanceId, :State, :CreatedTime
15118
+ attr_accessor :DhcpIpId, :VpcId, :SubnetId, :DhcpIpName, :PrivateIpAddress, :AddressIp, :NetworkInterfaceId, :InstanceId, :State, :CreatedTime, :TagSet
15078
15119
 
15079
- def initialize(dhcpipid=nil, vpcid=nil, subnetid=nil, dhcpipname=nil, privateipaddress=nil, addressip=nil, networkinterfaceid=nil, instanceid=nil, state=nil, createdtime=nil)
15120
+ def initialize(dhcpipid=nil, vpcid=nil, subnetid=nil, dhcpipname=nil, privateipaddress=nil, addressip=nil, networkinterfaceid=nil, instanceid=nil, state=nil, createdtime=nil, tagset=nil)
15080
15121
  @DhcpIpId = dhcpipid
15081
15122
  @VpcId = vpcid
15082
15123
  @SubnetId = subnetid
@@ -15087,6 +15128,7 @@ module TencentCloud
15087
15128
  @InstanceId = instanceid
15088
15129
  @State = state
15089
15130
  @CreatedTime = createdtime
15131
+ @TagSet = tagset
15090
15132
  end
15091
15133
 
15092
15134
  def deserialize(params)
@@ -15100,6 +15142,14 @@ module TencentCloud
15100
15142
  @InstanceId = params['InstanceId']
15101
15143
  @State = params['State']
15102
15144
  @CreatedTime = params['CreatedTime']
15145
+ unless params['TagSet'].nil?
15146
+ @TagSet = []
15147
+ params['TagSet'].each do |i|
15148
+ tag_tmp = Tag.new
15149
+ tag_tmp.deserialize(i)
15150
+ @TagSet << tag_tmp
15151
+ end
15152
+ end
15103
15153
  end
15104
15154
  end
15105
15155
 
@@ -20342,7 +20392,7 @@ module TencentCloud
20342
20392
  # @type VpcId: String
20343
20393
  # @param EndPointServiceName: 终端节点服务名称。
20344
20394
  # @type EndPointServiceName: String
20345
- # @param AutoAcceptFlag: 是否自动接受终端节点的连接请求。<ui><li>true:自动接受<li>false:不自动接受</ul>
20395
+ # @param AutoAcceptFlag: 是否自动接受终端节点的连接请求。<ul><li>true:自动接受</li><li>false:不自动接受</li></ul>
20346
20396
  # @type AutoAcceptFlag: Boolean
20347
20397
  # @param ServiceInstanceId: 后端服务的ID,比如lb-xxx。
20348
20398
  # @type ServiceInstanceId: String
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.942
4
+ version: 3.0.943
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-11-15 00:00:00.000000000 Z
11
+ date: 2024-11-19 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common