tencentcloud-sdk-python 3.0.1378__py2.py3-none-any.whl → 3.0.1380__py2.py3-none-any.whl
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.
- tencentcloud/__init__.py +1 -1
- tencentcloud/autoscaling/v20180419/autoscaling_client.py +5 -6
- tencentcloud/autoscaling/v20180419/models.py +398 -294
- tencentcloud/batch/v20170312/batch_client.py +3 -3
- tencentcloud/batch/v20170312/models.py +230 -168
- tencentcloud/bh/v20230418/models.py +235 -2
- tencentcloud/bi/v20220105/models.py +32 -0
- tencentcloud/cbs/v20170312/cbs_client.py +1 -1
- tencentcloud/cbs/v20170312/models.py +18 -18
- tencentcloud/cdb/v20170320/errorcodes.py +6 -0
- tencentcloud/cdb/v20170320/models.py +32 -2
- tencentcloud/cfw/v20190904/models.py +24 -24
- tencentcloud/clb/v20180317/clb_client.py +7 -7
- tencentcloud/clb/v20180317/models.py +57 -47
- tencentcloud/cynosdb/v20190107/errorcodes.py +9 -0
- tencentcloud/cynosdb/v20190107/models.py +21 -2
- tencentcloud/dbbrain/v20210527/dbbrain_client.py +46 -0
- tencentcloud/dbbrain/v20210527/models.py +368 -0
- tencentcloud/dnspod/v20210323/dnspod_client.py +23 -0
- tencentcloud/dnspod/v20210323/models.py +503 -0
- tencentcloud/domain/v20180808/errorcodes.py +3 -0
- tencentcloud/domain/v20180808/models.py +68 -44
- tencentcloud/emr/v20190103/models.py +30 -0
- tencentcloud/ess/v20201111/models.py +15 -0
- tencentcloud/essbasic/v20210526/models.py +2 -2
- tencentcloud/lkeap/v20240522/lkeap_client.py +1 -1
- tencentcloud/mps/v20190612/models.py +211 -2
- tencentcloud/postgres/v20170312/models.py +12 -83
- tencentcloud/postgres/v20170312/postgres_client.py +12 -29
- tencentcloud/tbaas/v20180416/models.py +0 -234
- tencentcloud/tbaas/v20180416/tbaas_client.py +0 -23
- tencentcloud/tcb/v20180608/models.py +4 -4
- tencentcloud/tdmq/v20200217/errorcodes.py +33 -0
- tencentcloud/teo/v20220901/models.py +589 -92
- tencentcloud/teo/v20220901/teo_client.py +23 -0
- tencentcloud/thpc/v20211109/models.py +2 -2
- tencentcloud/thpc/v20220401/models.py +4 -4
- tencentcloud/thpc/v20230321/errorcodes.py +9 -0
- tencentcloud/thpc/v20230321/models.py +79 -0
- tencentcloud/thpc/v20230321/thpc_client.py +23 -0
- tencentcloud/tke/v20180525/models.py +242 -184
- tencentcloud/tmt/v20180321/errorcodes.py +3 -0
- tencentcloud/tmt/v20180321/models.py +443 -1
- tencentcloud/tmt/v20180321/tmt_client.py +28 -0
- tencentcloud/trtc/v20190722/trtc_client.py +2 -3
- tencentcloud/vpc/v20170312/models.py +162 -118
- tencentcloud/vpc/v20170312/vpc_client.py +1 -1
- tencentcloud/waf/v20180125/models.py +15 -0
- tencentcloud/wedata/v20210820/errorcodes.py +9 -0
- tencentcloud/wedata/v20210820/models.py +1839 -161
- tencentcloud/wedata/v20210820/wedata_client.py +115 -0
- {tencentcloud_sdk_python-3.0.1378.dist-info → tencentcloud_sdk_python-3.0.1380.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1378.dist-info → tencentcloud_sdk_python-3.0.1380.dist-info}/RECORD +56 -56
- {tencentcloud_sdk_python-3.0.1378.dist-info → tencentcloud_sdk_python-3.0.1380.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1378.dist-info → tencentcloud_sdk_python-3.0.1380.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1378.dist-info → tencentcloud_sdk_python-3.0.1380.dist-info}/top_level.txt +0 -0
@@ -2550,13 +2550,16 @@ class AllocateIp6AddressesBandwidthRequest(AbstractModel):
|
|
2550
2550
|
|
2551
2551
|
def __init__(self):
|
2552
2552
|
r"""
|
2553
|
-
:param _Ip6Addresses: 需要开通公网访问能力的IPv6
|
2553
|
+
:param _Ip6Addresses: 需要开通公网访问能力的IPv6地址,可以使用[DescribeIp6Addresses](https://cloud.tencent.com/document/product/215/40089)接口查询Ip6Addresses。
|
2554
|
+
|
2554
2555
|
:type Ip6Addresses: list of str
|
2555
|
-
:param _InternetMaxBandwidthOut:
|
2556
|
+
:param _InternetMaxBandwidthOut: 带宽上限,单位Mbps。可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://cloud.tencent.com/document/product/1142/38369#IPv6)。
|
2557
|
+
默认值:1Mbps
|
2556
2558
|
:type InternetMaxBandwidthOut: int
|
2557
|
-
:param _InternetChargeType: 网络计费模式。IPv6
|
2559
|
+
:param _InternetChargeType: 网络计费模式。IPv6当前支持:<li>TRAFFIC_POSTPAID_BY_HOUR:流量按小时后付费</li><li>BANDWIDTH_PACKAGE:共享带宽包付费</li>
|
2560
|
+
默认值:TRAFFIC_POSTPAID_BY_HOUR
|
2558
2561
|
:type InternetChargeType: str
|
2559
|
-
:param _BandwidthPackageId: 带宽包id
|
2562
|
+
:param _BandwidthPackageId: 带宽包id,设定该参数且InternetChargeType为BANDWIDTH_PACKAGE,则表示创建的IPv6加入该带宽包并采用带宽包计费。可以使用[DescribeBandwidthPackages](https://cloud.tencent.com/document/product/215/19209)接口查询BandwidthPackageId。
|
2560
2563
|
:type BandwidthPackageId: str
|
2561
2564
|
:param _Tags: 需要关联的标签列表。
|
2562
2565
|
:type Tags: list of Tag
|
@@ -2569,7 +2572,8 @@ class AllocateIp6AddressesBandwidthRequest(AbstractModel):
|
|
2569
2572
|
|
2570
2573
|
@property
|
2571
2574
|
def Ip6Addresses(self):
|
2572
|
-
"""需要开通公网访问能力的IPv6
|
2575
|
+
"""需要开通公网访问能力的IPv6地址,可以使用[DescribeIp6Addresses](https://cloud.tencent.com/document/product/215/40089)接口查询Ip6Addresses。
|
2576
|
+
|
2573
2577
|
:rtype: list of str
|
2574
2578
|
"""
|
2575
2579
|
return self._Ip6Addresses
|
@@ -2580,7 +2584,8 @@ class AllocateIp6AddressesBandwidthRequest(AbstractModel):
|
|
2580
2584
|
|
2581
2585
|
@property
|
2582
2586
|
def InternetMaxBandwidthOut(self):
|
2583
|
-
"""
|
2587
|
+
"""带宽上限,单位Mbps。可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://cloud.tencent.com/document/product/1142/38369#IPv6)。
|
2588
|
+
默认值:1Mbps
|
2584
2589
|
:rtype: int
|
2585
2590
|
"""
|
2586
2591
|
return self._InternetMaxBandwidthOut
|
@@ -2591,7 +2596,8 @@ class AllocateIp6AddressesBandwidthRequest(AbstractModel):
|
|
2591
2596
|
|
2592
2597
|
@property
|
2593
2598
|
def InternetChargeType(self):
|
2594
|
-
"""网络计费模式。IPv6
|
2599
|
+
"""网络计费模式。IPv6当前支持:<li>TRAFFIC_POSTPAID_BY_HOUR:流量按小时后付费</li><li>BANDWIDTH_PACKAGE:共享带宽包付费</li>
|
2600
|
+
默认值:TRAFFIC_POSTPAID_BY_HOUR
|
2595
2601
|
:rtype: str
|
2596
2602
|
"""
|
2597
2603
|
return self._InternetChargeType
|
@@ -2602,7 +2608,7 @@ class AllocateIp6AddressesBandwidthRequest(AbstractModel):
|
|
2602
2608
|
|
2603
2609
|
@property
|
2604
2610
|
def BandwidthPackageId(self):
|
2605
|
-
"""带宽包id
|
2611
|
+
"""带宽包id,设定该参数且InternetChargeType为BANDWIDTH_PACKAGE,则表示创建的IPv6加入该带宽包并采用带宽包计费。可以使用[DescribeBandwidthPackages](https://cloud.tencent.com/document/product/215/19209)接口查询BandwidthPackageId。
|
2606
2612
|
:rtype: str
|
2607
2613
|
"""
|
2608
2614
|
return self._BandwidthPackageId
|
@@ -9032,7 +9038,8 @@ class CreateAndAttachNetworkInterfaceRequest(AbstractModel):
|
|
9032
9038
|
|
9033
9039
|
def __init__(self):
|
9034
9040
|
r"""
|
9035
|
-
:param _VpcId: VPC实例ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/
|
9041
|
+
:param _VpcId: VPC实例ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/215/15778)接口获取。
|
9042
|
+
|
9036
9043
|
:type VpcId: str
|
9037
9044
|
:param _NetworkInterfaceName: 弹性网卡名称,最大长度不能超过60个字符。
|
9038
9045
|
:type NetworkInterfaceName: str
|
@@ -9076,7 +9083,8 @@ class CreateAndAttachNetworkInterfaceRequest(AbstractModel):
|
|
9076
9083
|
|
9077
9084
|
@property
|
9078
9085
|
def VpcId(self):
|
9079
|
-
"""VPC实例ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/
|
9086
|
+
"""VPC实例ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/215/15778)接口获取。
|
9087
|
+
|
9080
9088
|
:rtype: str
|
9081
9089
|
"""
|
9082
9090
|
return self._VpcId
|
@@ -12714,7 +12722,7 @@ class CreateNetworkInterfaceRequest(AbstractModel):
|
|
12714
12722
|
|
12715
12723
|
def __init__(self):
|
12716
12724
|
r"""
|
12717
|
-
:param _VpcId: VPC实例ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/
|
12725
|
+
:param _VpcId: VPC实例ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/215/15778)接口获取。
|
12718
12726
|
:type VpcId: str
|
12719
12727
|
:param _NetworkInterfaceName: 弹性网卡名称,最大长度不能超过60个字节。
|
12720
12728
|
:type NetworkInterfaceName: str
|
@@ -12756,7 +12764,7 @@ class CreateNetworkInterfaceRequest(AbstractModel):
|
|
12756
12764
|
|
12757
12765
|
@property
|
12758
12766
|
def VpcId(self):
|
12759
|
-
"""VPC实例ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/
|
12767
|
+
"""VPC实例ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/215/15778)接口获取。
|
12760
12768
|
:rtype: str
|
12761
12769
|
"""
|
12762
12770
|
return self._VpcId
|
@@ -15325,17 +15333,17 @@ class CreateVpcEndPointRequest(AbstractModel):
|
|
15325
15333
|
|
15326
15334
|
def __init__(self):
|
15327
15335
|
r"""
|
15328
|
-
:param _VpcId: VPC实例ID
|
15336
|
+
:param _VpcId: VPC实例ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/1108/43663)接口获取。
|
15329
15337
|
:type VpcId: str
|
15330
|
-
:param _SubnetId: 子网实例ID
|
15338
|
+
:param _SubnetId: 子网实例ID。可通过[DescribeSubnets](https://cloud.tencent.com/document/product/215/15784)接口获取。
|
15331
15339
|
:type SubnetId: str
|
15332
|
-
:param _EndPointName:
|
15340
|
+
:param _EndPointName: 终端节点名称。限制为60个字符。
|
15333
15341
|
:type EndPointName: str
|
15334
|
-
:param _EndPointServiceId: 终端节点服务ID
|
15342
|
+
:param _EndPointServiceId: 终端节点服务ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
15335
15343
|
:type EndPointServiceId: str
|
15336
15344
|
:param _EndPointVip: 终端节点VIP,可以指定IP申请。
|
15337
15345
|
:type EndPointVip: str
|
15338
|
-
:param _SecurityGroupId: 安全组ID
|
15346
|
+
:param _SecurityGroupId: 安全组ID。可通过[DescribeSecurityGroups](https://cloud.tencent.com/document/product/215/15808)接口获取。
|
15339
15347
|
:type SecurityGroupId: str
|
15340
15348
|
:param _Tags: 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]。
|
15341
15349
|
:type Tags: list of Tag
|
@@ -15353,7 +15361,7 @@ class CreateVpcEndPointRequest(AbstractModel):
|
|
15353
15361
|
|
15354
15362
|
@property
|
15355
15363
|
def VpcId(self):
|
15356
|
-
"""VPC实例ID
|
15364
|
+
"""VPC实例ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/1108/43663)接口获取。
|
15357
15365
|
:rtype: str
|
15358
15366
|
"""
|
15359
15367
|
return self._VpcId
|
@@ -15364,7 +15372,7 @@ class CreateVpcEndPointRequest(AbstractModel):
|
|
15364
15372
|
|
15365
15373
|
@property
|
15366
15374
|
def SubnetId(self):
|
15367
|
-
"""子网实例ID
|
15375
|
+
"""子网实例ID。可通过[DescribeSubnets](https://cloud.tencent.com/document/product/215/15784)接口获取。
|
15368
15376
|
:rtype: str
|
15369
15377
|
"""
|
15370
15378
|
return self._SubnetId
|
@@ -15375,7 +15383,7 @@ class CreateVpcEndPointRequest(AbstractModel):
|
|
15375
15383
|
|
15376
15384
|
@property
|
15377
15385
|
def EndPointName(self):
|
15378
|
-
"""
|
15386
|
+
"""终端节点名称。限制为60个字符。
|
15379
15387
|
:rtype: str
|
15380
15388
|
"""
|
15381
15389
|
return self._EndPointName
|
@@ -15386,7 +15394,7 @@ class CreateVpcEndPointRequest(AbstractModel):
|
|
15386
15394
|
|
15387
15395
|
@property
|
15388
15396
|
def EndPointServiceId(self):
|
15389
|
-
"""终端节点服务ID
|
15397
|
+
"""终端节点服务ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
15390
15398
|
:rtype: str
|
15391
15399
|
"""
|
15392
15400
|
return self._EndPointServiceId
|
@@ -15408,7 +15416,7 @@ class CreateVpcEndPointRequest(AbstractModel):
|
|
15408
15416
|
|
15409
15417
|
@property
|
15410
15418
|
def SecurityGroupId(self):
|
15411
|
-
"""安全组ID
|
15419
|
+
"""安全组ID。可通过[DescribeSecurityGroups](https://cloud.tencent.com/document/product/215/15808)接口获取。
|
15412
15420
|
:rtype: str
|
15413
15421
|
"""
|
15414
15422
|
return self._SecurityGroupId
|
@@ -15516,17 +15524,18 @@ class CreateVpcEndPointServiceRequest(AbstractModel):
|
|
15516
15524
|
|
15517
15525
|
def __init__(self):
|
15518
15526
|
r"""
|
15519
|
-
:param _VpcId: VPC实例ID
|
15527
|
+
:param _VpcId: VPC实例ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/1108/43663)接口获取。
|
15520
15528
|
:type VpcId: str
|
15521
15529
|
:param _EndPointServiceName: 终端节点服务名称。
|
15522
15530
|
:type EndPointServiceName: str
|
15523
15531
|
:param _AutoAcceptFlag: 是否自动接受。
|
15524
15532
|
:type AutoAcceptFlag: bool
|
15525
|
-
:param _ServiceInstanceId: 后端服务ID,比如lb-
|
15533
|
+
:param _ServiceInstanceId: 后端服务ID,比如lb-p1hiksdg。CLB可通过[DescribeLoadBalancers](https://cloud.tencent.com/document/product/1108/48459)接口获取;CDB可通过[DescribeDBInstances](https://cloud.tencent.com/document/api/240/38568)接口获取;CRS可通过[DescribeInstances](https://cloud.tencent.com/document/product/239/20018)接口获取;GWLB可通过[DescribeGatewayLoadBalancers](https://cloud.tencent.com/document/product/1782/111683)接口获取。
|
15534
|
+
|
15526
15535
|
:type ServiceInstanceId: str
|
15527
15536
|
:param _IsPassService: ~~是否是PassService类型。该字段已废弃,请不要使用该字段。~~
|
15528
15537
|
:type IsPassService: bool
|
15529
|
-
:param _ServiceType: 挂载的PAAS服务类型,CLB
|
15538
|
+
:param _ServiceType: 挂载的PAAS服务类型,CLB(负载均衡),CDB(云数据库 MySQL),CRS(云数据库 Redis),GWLB(网关负载均衡)。不填默认挂载为CLB。
|
15530
15539
|
:type ServiceType: str
|
15531
15540
|
:param _Tags: 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]。
|
15532
15541
|
:type Tags: list of Tag
|
@@ -15544,7 +15553,7 @@ class CreateVpcEndPointServiceRequest(AbstractModel):
|
|
15544
15553
|
|
15545
15554
|
@property
|
15546
15555
|
def VpcId(self):
|
15547
|
-
"""VPC实例ID
|
15556
|
+
"""VPC实例ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/1108/43663)接口获取。
|
15548
15557
|
:rtype: str
|
15549
15558
|
"""
|
15550
15559
|
return self._VpcId
|
@@ -15577,7 +15586,8 @@ class CreateVpcEndPointServiceRequest(AbstractModel):
|
|
15577
15586
|
|
15578
15587
|
@property
|
15579
15588
|
def ServiceInstanceId(self):
|
15580
|
-
"""后端服务ID,比如lb-
|
15589
|
+
"""后端服务ID,比如lb-p1hiksdg。CLB可通过[DescribeLoadBalancers](https://cloud.tencent.com/document/product/1108/48459)接口获取;CDB可通过[DescribeDBInstances](https://cloud.tencent.com/document/api/240/38568)接口获取;CRS可通过[DescribeInstances](https://cloud.tencent.com/document/product/239/20018)接口获取;GWLB可通过[DescribeGatewayLoadBalancers](https://cloud.tencent.com/document/product/1782/111683)接口获取。
|
15590
|
+
|
15581
15591
|
:rtype: str
|
15582
15592
|
"""
|
15583
15593
|
return self._ServiceInstanceId
|
@@ -15599,7 +15609,7 @@ class CreateVpcEndPointServiceRequest(AbstractModel):
|
|
15599
15609
|
|
15600
15610
|
@property
|
15601
15611
|
def ServiceType(self):
|
15602
|
-
"""挂载的PAAS服务类型,CLB
|
15612
|
+
"""挂载的PAAS服务类型,CLB(负载均衡),CDB(云数据库 MySQL),CRS(云数据库 Redis),GWLB(网关负载均衡)。不填默认挂载为CLB。
|
15603
15613
|
:rtype: str
|
15604
15614
|
"""
|
15605
15615
|
return self._ServiceType
|
@@ -15707,11 +15717,11 @@ class CreateVpcEndPointServiceWhiteListRequest(AbstractModel):
|
|
15707
15717
|
|
15708
15718
|
def __init__(self):
|
15709
15719
|
r"""
|
15710
|
-
:param _UserUin: UIN
|
15720
|
+
:param _UserUin: UIN。腾讯云账号中心控制台获取。
|
15711
15721
|
:type UserUin: str
|
15712
|
-
:param _EndPointServiceId: 终端节点服务ID
|
15722
|
+
:param _EndPointServiceId: 终端节点服务ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
15713
15723
|
:type EndPointServiceId: str
|
15714
|
-
:param _Description:
|
15724
|
+
:param _Description: 白名单描述。长度不超过60个字符。
|
15715
15725
|
:type Description: str
|
15716
15726
|
"""
|
15717
15727
|
self._UserUin = None
|
@@ -15720,7 +15730,7 @@ class CreateVpcEndPointServiceWhiteListRequest(AbstractModel):
|
|
15720
15730
|
|
15721
15731
|
@property
|
15722
15732
|
def UserUin(self):
|
15723
|
-
"""UIN
|
15733
|
+
"""UIN。腾讯云账号中心控制台获取。
|
15724
15734
|
:rtype: str
|
15725
15735
|
"""
|
15726
15736
|
return self._UserUin
|
@@ -15731,7 +15741,7 @@ class CreateVpcEndPointServiceWhiteListRequest(AbstractModel):
|
|
15731
15741
|
|
15732
15742
|
@property
|
15733
15743
|
def EndPointServiceId(self):
|
15734
|
-
"""终端节点服务ID
|
15744
|
+
"""终端节点服务ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
15735
15745
|
:rtype: str
|
15736
15746
|
"""
|
15737
15747
|
return self._EndPointServiceId
|
@@ -15742,7 +15752,7 @@ class CreateVpcEndPointServiceWhiteListRequest(AbstractModel):
|
|
15742
15752
|
|
15743
15753
|
@property
|
15744
15754
|
def Description(self):
|
15745
|
-
"""
|
15755
|
+
"""白名单描述。长度不超过60个字符。
|
15746
15756
|
:rtype: str
|
15747
15757
|
"""
|
15748
15758
|
return self._Description
|
@@ -19061,7 +19071,7 @@ class DeleteFlowLogRequest(AbstractModel):
|
|
19061
19071
|
r"""
|
19062
19072
|
:param _FlowLogId: 流日志唯一ID。可通过[CreateFlowLog](https://cloud.tencent.com/document/product/215/35015)接口创建;可通过[DescribeFlowLogs](https://cloud.tencent.com/document/product/215/35012)接口获取。
|
19063
19073
|
:type FlowLogId: str
|
19064
|
-
:param _VpcId: 私用网络唯一ID。删除云联网流日志时,可不填,其他流日志类型必填。可通过[DescribeFlowLogs](https://cloud.tencent.com/document/product/215/35012)接口获取流日志对应的私有网络唯一ID。也可通过[DescribeVpcs](https://cloud.tencent.com/document/product/
|
19074
|
+
:param _VpcId: 私用网络唯一ID。删除云联网流日志时,可不填,其他流日志类型必填。可通过[DescribeFlowLogs](https://cloud.tencent.com/document/product/215/35012)接口获取流日志对应的私有网络唯一ID。也可通过[DescribeVpcs](https://cloud.tencent.com/document/product/215/15778)接口获取当前账户的私有网络唯一ID。
|
19065
19075
|
|
19066
19076
|
:type VpcId: str
|
19067
19077
|
"""
|
@@ -19081,7 +19091,7 @@ class DeleteFlowLogRequest(AbstractModel):
|
|
19081
19091
|
|
19082
19092
|
@property
|
19083
19093
|
def VpcId(self):
|
19084
|
-
"""私用网络唯一ID。删除云联网流日志时,可不填,其他流日志类型必填。可通过[DescribeFlowLogs](https://cloud.tencent.com/document/product/215/35012)接口获取流日志对应的私有网络唯一ID。也可通过[DescribeVpcs](https://cloud.tencent.com/document/product/
|
19094
|
+
"""私用网络唯一ID。删除云联网流日志时,可不填,其他流日志类型必填。可通过[DescribeFlowLogs](https://cloud.tencent.com/document/product/215/35012)接口获取流日志对应的私有网络唯一ID。也可通过[DescribeVpcs](https://cloud.tencent.com/document/product/215/15778)接口获取当前账户的私有网络唯一ID。
|
19085
19095
|
|
19086
19096
|
:rtype: str
|
19087
19097
|
"""
|
@@ -21448,7 +21458,7 @@ class DeleteVpcEndPointRequest(AbstractModel):
|
|
21448
21458
|
|
21449
21459
|
def __init__(self):
|
21450
21460
|
r"""
|
21451
|
-
:param _EndPointId: 终端节点ID
|
21461
|
+
:param _EndPointId: 终端节点ID。可通过[DescribeVpcEndPoint](https://cloud.tencent.com/document/product/215/54679) 获取。
|
21452
21462
|
:type EndPointId: str
|
21453
21463
|
:param _IpAddressType: 协议类型,支持 Ipv4,Ipv6,默认 Ipv4。
|
21454
21464
|
:type IpAddressType: str
|
@@ -21458,7 +21468,7 @@ class DeleteVpcEndPointRequest(AbstractModel):
|
|
21458
21468
|
|
21459
21469
|
@property
|
21460
21470
|
def EndPointId(self):
|
21461
|
-
"""终端节点ID
|
21471
|
+
"""终端节点ID。可通过[DescribeVpcEndPoint](https://cloud.tencent.com/document/product/215/54679) 获取。
|
21462
21472
|
:rtype: str
|
21463
21473
|
"""
|
21464
21474
|
return self._EndPointId
|
@@ -21527,7 +21537,7 @@ class DeleteVpcEndPointServiceRequest(AbstractModel):
|
|
21527
21537
|
|
21528
21538
|
def __init__(self):
|
21529
21539
|
r"""
|
21530
|
-
:param _EndPointServiceId: 终端节点ID
|
21540
|
+
:param _EndPointServiceId: 终端节点ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
21531
21541
|
:type EndPointServiceId: str
|
21532
21542
|
:param _IpAddressType: 协议类型,支持 Ipv4,Ipv6,默认 Ipv4。
|
21533
21543
|
:type IpAddressType: str
|
@@ -21537,7 +21547,7 @@ class DeleteVpcEndPointServiceRequest(AbstractModel):
|
|
21537
21547
|
|
21538
21548
|
@property
|
21539
21549
|
def EndPointServiceId(self):
|
21540
|
-
"""终端节点ID
|
21550
|
+
"""终端节点ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
21541
21551
|
:rtype: str
|
21542
21552
|
"""
|
21543
21553
|
return self._EndPointServiceId
|
@@ -21606,9 +21616,9 @@ class DeleteVpcEndPointServiceWhiteListRequest(AbstractModel):
|
|
21606
21616
|
|
21607
21617
|
def __init__(self):
|
21608
21618
|
r"""
|
21609
|
-
:param _UserUin: 用户UIN
|
21619
|
+
:param _UserUin: 用户UIN数组。登录 腾讯云账号中心控制台
|
21610
21620
|
:type UserUin: list of str
|
21611
|
-
:param _EndPointServiceId: 终端节点服务ID
|
21621
|
+
:param _EndPointServiceId: 终端节点服务ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
21612
21622
|
:type EndPointServiceId: str
|
21613
21623
|
"""
|
21614
21624
|
self._UserUin = None
|
@@ -21616,7 +21626,7 @@ class DeleteVpcEndPointServiceWhiteListRequest(AbstractModel):
|
|
21616
21626
|
|
21617
21627
|
@property
|
21618
21628
|
def UserUin(self):
|
21619
|
-
"""用户UIN
|
21629
|
+
"""用户UIN数组。登录 腾讯云账号中心控制台
|
21620
21630
|
:rtype: list of str
|
21621
21631
|
"""
|
21622
21632
|
return self._UserUin
|
@@ -21627,7 +21637,7 @@ class DeleteVpcEndPointServiceWhiteListRequest(AbstractModel):
|
|
21627
21637
|
|
21628
21638
|
@property
|
21629
21639
|
def EndPointServiceId(self):
|
21630
|
-
"""终端节点服务ID
|
21640
|
+
"""终端节点服务ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
21631
21641
|
:rtype: str
|
21632
21642
|
"""
|
21633
21643
|
return self._EndPointServiceId
|
@@ -23008,7 +23018,9 @@ class DescribeAssistantCidrRequest(AbstractModel):
|
|
23008
23018
|
:param _VpcIds: `VPC`实例`ID`数组。形如:[`vpc-6v2ht8q5`]
|
23009
23019
|
:type VpcIds: list of str
|
23010
23020
|
:param _Filters: 过滤条件,参数不支持同时指定VpcIds和Filters。
|
23011
|
-
|
23021
|
+
|
23022
|
+
当前支持的过滤条件如下:
|
23023
|
+
<li>vpc-id - String - (过滤条件)VPC实例ID,形如:vpc-f49l6u0z。(当前仅支持该过滤条件)</li>
|
23012
23024
|
:type Filters: list of Filter
|
23013
23025
|
:param _Offset: 偏移量,默认为0。
|
23014
23026
|
:type Offset: int
|
@@ -23034,7 +23046,9 @@ class DescribeAssistantCidrRequest(AbstractModel):
|
|
23034
23046
|
@property
|
23035
23047
|
def Filters(self):
|
23036
23048
|
"""过滤条件,参数不支持同时指定VpcIds和Filters。
|
23037
|
-
|
23049
|
+
|
23050
|
+
当前支持的过滤条件如下:
|
23051
|
+
<li>vpc-id - String - (过滤条件)VPC实例ID,形如:vpc-f49l6u0z。(当前仅支持该过滤条件)</li>
|
23038
23052
|
:rtype: list of Filter
|
23039
23053
|
"""
|
23040
23054
|
return self._Filters
|
@@ -26351,7 +26365,7 @@ class DescribeFlowLogRequest(AbstractModel):
|
|
26351
26365
|
|
26352
26366
|
def __init__(self):
|
26353
26367
|
r"""
|
26354
|
-
:param _VpcId: 私用网络唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/
|
26368
|
+
:param _VpcId: 私用网络唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/215/15778)接口获取。该接口不支持拉取CCN类型的流日志,所以该字段为必选。
|
26355
26369
|
:type VpcId: str
|
26356
26370
|
:param _FlowLogId: 流日志唯一ID。可通过[CreateFlowLog](https://cloud.tencent.com/document/product/215/35015)接口创建;可通过[DescribeFlowLogs](https://cloud.tencent.com/document/product/215/35012)接口获取;
|
26357
26371
|
:type FlowLogId: str
|
@@ -26361,7 +26375,7 @@ class DescribeFlowLogRequest(AbstractModel):
|
|
26361
26375
|
|
26362
26376
|
@property
|
26363
26377
|
def VpcId(self):
|
26364
|
-
"""私用网络唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/
|
26378
|
+
"""私用网络唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/215/15778)接口获取。该接口不支持拉取CCN类型的流日志,所以该字段为必选。
|
26365
26379
|
:rtype: str
|
26366
26380
|
"""
|
26367
26381
|
return self._VpcId
|
@@ -26450,7 +26464,7 @@ class DescribeFlowLogsRequest(AbstractModel):
|
|
26450
26464
|
|
26451
26465
|
def __init__(self):
|
26452
26466
|
r"""
|
26453
|
-
:param _VpcId: 私用网络唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/
|
26467
|
+
:param _VpcId: 私用网络唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/215/15778)接口获取。
|
26454
26468
|
:type VpcId: str
|
26455
26469
|
:param _FlowLogId: 流日志唯一ID。可通过[CreateFlowLog](https://cloud.tencent.com/document/product/215/35015)接口创建。
|
26456
26470
|
:type FlowLogId: str
|
@@ -26499,7 +26513,7 @@ class DescribeFlowLogsRequest(AbstractModel):
|
|
26499
26513
|
|
26500
26514
|
@property
|
26501
26515
|
def VpcId(self):
|
26502
|
-
"""私用网络唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/
|
26516
|
+
"""私用网络唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/215/15778)接口获取。
|
26503
26517
|
:rtype: str
|
26504
26518
|
"""
|
26505
26519
|
return self._VpcId
|
@@ -28107,11 +28121,11 @@ class DescribeIp6AddressesRequest(AbstractModel):
|
|
28107
28121
|
|
28108
28122
|
def __init__(self):
|
28109
28123
|
r"""
|
28110
|
-
:param _Ip6AddressIds: 标识 IPv6 的唯一 ID 列表。IPv6 唯一 ID 形如:`eip-11112222`。参数不支持同时指定`Ip6AddressIds`和`Filters
|
28124
|
+
:param _Ip6AddressIds: 标识 IPv6 的唯一 ID 列表。IPv6 唯一 ID 形如:`eip-11112222`。参数不支持同时指定`Ip6AddressIds`和`Filters`。可以使用[DescribeIp6Addresses](https://cloud.tencent.com/document/product/215/40089)接口查询Ip6AddressIds。
|
28111
28125
|
:type Ip6AddressIds: list of str
|
28112
28126
|
:param _Filters: 每次请求的`Filters`的上限为10,`Filter.Values`的上限为100。参数不支持同时指定`AddressIds`和`Filters`。详细的过滤条件如下:
|
28113
|
-
<li> address-ip - String - 是否必填:否 - (过滤条件)按照 IPv6 的 IP
|
28114
|
-
<li> network-interface-id - String - 是否必填:否 - (过滤条件)按照弹性网卡的唯一ID
|
28127
|
+
<li> address-ip - String - 是否必填:否 - (过滤条件)按照 IPv6 的 IP 地址过滤。可以使用[DescribeIp6Addresses](https://cloud.tencent.com/document/product/215/40089)接口查询address-ip。</li>
|
28128
|
+
<li> network-interface-id - String - 是否必填:否 - (过滤条件)按照弹性网卡的唯一ID过滤。可以使用[DescribeNetworkInterfaces](https://cloud.tencent.com/document/product/215/15817)接口查询network-interface-id。</li>
|
28115
28129
|
:type Filters: list of Filter
|
28116
28130
|
:param _Offset: 偏移量,默认为0。关于`Offset`的更进一步介绍请参考 API [简介](https://cloud.tencent.com/document/api/213/11646)中的相关小节。
|
28117
28131
|
:type Offset: int
|
@@ -28125,7 +28139,7 @@ class DescribeIp6AddressesRequest(AbstractModel):
|
|
28125
28139
|
|
28126
28140
|
@property
|
28127
28141
|
def Ip6AddressIds(self):
|
28128
|
-
"""标识 IPv6 的唯一 ID 列表。IPv6 唯一 ID 形如:`eip-11112222`。参数不支持同时指定`Ip6AddressIds`和`Filters
|
28142
|
+
"""标识 IPv6 的唯一 ID 列表。IPv6 唯一 ID 形如:`eip-11112222`。参数不支持同时指定`Ip6AddressIds`和`Filters`。可以使用[DescribeIp6Addresses](https://cloud.tencent.com/document/product/215/40089)接口查询Ip6AddressIds。
|
28129
28143
|
:rtype: list of str
|
28130
28144
|
"""
|
28131
28145
|
return self._Ip6AddressIds
|
@@ -28137,8 +28151,8 @@ class DescribeIp6AddressesRequest(AbstractModel):
|
|
28137
28151
|
@property
|
28138
28152
|
def Filters(self):
|
28139
28153
|
"""每次请求的`Filters`的上限为10,`Filter.Values`的上限为100。参数不支持同时指定`AddressIds`和`Filters`。详细的过滤条件如下:
|
28140
|
-
<li> address-ip - String - 是否必填:否 - (过滤条件)按照 IPv6 的 IP
|
28141
|
-
<li> network-interface-id - String - 是否必填:否 - (过滤条件)按照弹性网卡的唯一ID
|
28154
|
+
<li> address-ip - String - 是否必填:否 - (过滤条件)按照 IPv6 的 IP 地址过滤。可以使用[DescribeIp6Addresses](https://cloud.tencent.com/document/product/215/40089)接口查询address-ip。</li>
|
28155
|
+
<li> network-interface-id - String - 是否必填:否 - (过滤条件)按照弹性网卡的唯一ID过滤。可以使用[DescribeNetworkInterfaces](https://cloud.tencent.com/document/product/215/15817)接口查询network-interface-id。</li>
|
28142
28156
|
:rtype: list of Filter
|
28143
28157
|
"""
|
28144
28158
|
return self._Filters
|
@@ -30505,7 +30519,7 @@ class DescribeNetworkInterfacesRequest(AbstractModel):
|
|
30505
30519
|
|
30506
30520
|
:type NetworkInterfaceIds: list of str
|
30507
30521
|
:param _Filters: 过滤条件,参数不支持同时指定NetworkInterfaceIds和Filters。
|
30508
|
-
<li>vpc-id - String - (过滤条件)VPC实例ID,形如:vpc-f49l6u0z
|
30522
|
+
<li>vpc-id - String - (过滤条件)VPC实例ID,形如:vpc-f49l6u0z。可通过可通过[DescribeVpcs](https://cloud.tencent.com/document/product/215/15778)接口获取。
|
30509
30523
|
</li>
|
30510
30524
|
<li>subnet-id - String - (过滤条件)所属子网实例ID,形如:subnet-f49l6u0z。可通过[DescribeSubnets](https://cloud.tencent.com/document/product/215/15784)接口获取。
|
30511
30525
|
</li>
|
@@ -30553,7 +30567,7 @@ class DescribeNetworkInterfacesRequest(AbstractModel):
|
|
30553
30567
|
@property
|
30554
30568
|
def Filters(self):
|
30555
30569
|
"""过滤条件,参数不支持同时指定NetworkInterfaceIds和Filters。
|
30556
|
-
<li>vpc-id - String - (过滤条件)VPC实例ID,形如:vpc-f49l6u0z
|
30570
|
+
<li>vpc-id - String - (过滤条件)VPC实例ID,形如:vpc-f49l6u0z。可通过可通过[DescribeVpcs](https://cloud.tencent.com/document/product/215/15778)接口获取。
|
30557
30571
|
</li>
|
30558
30572
|
<li>subnet-id - String - (过滤条件)所属子网实例ID,形如:subnet-f49l6u0z。可通过[DescribeSubnets](https://cloud.tencent.com/document/product/215/15784)接口获取。
|
30559
30573
|
</li>
|
@@ -34720,7 +34734,7 @@ class DescribeSubnetsRequest(AbstractModel):
|
|
34720
34734
|
|
34721
34735
|
def __init__(self):
|
34722
34736
|
r"""
|
34723
|
-
:param _SubnetIds: 子网实例ID查询。形如:subnet-pxir56ns。每次请求的实例的上限为100
|
34737
|
+
:param _SubnetIds: 子网实例ID查询。形如:subnet-pxir56ns。每次请求的实例的上限为100(该参数指定的子网是否返回,需要结合分页拉取参数Limit和Offset)。参数不支持同时指定SubnetIds和Filters。
|
34724
34738
|
:type SubnetIds: list of str
|
34725
34739
|
:param _Filters: 过滤条件,参数不支持同时指定SubnetIds和Filters。
|
34726
34740
|
<li>subnet-id - String - (过滤条件)Subnet实例名称。</li>
|
@@ -34750,7 +34764,7 @@ class DescribeSubnetsRequest(AbstractModel):
|
|
34750
34764
|
|
34751
34765
|
@property
|
34752
34766
|
def SubnetIds(self):
|
34753
|
-
"""子网实例ID查询。形如:subnet-pxir56ns。每次请求的实例的上限为100
|
34767
|
+
"""子网实例ID查询。形如:subnet-pxir56ns。每次请求的实例的上限为100(该参数指定的子网是否返回,需要结合分页拉取参数Limit和Offset)。参数不支持同时指定SubnetIds和Filters。
|
34754
34768
|
:rtype: list of str
|
34755
34769
|
"""
|
34756
34770
|
return self._SubnetIds
|
@@ -35776,17 +35790,21 @@ class DescribeVpcEndPointRequest(AbstractModel):
|
|
35776
35790
|
|
35777
35791
|
def __init__(self):
|
35778
35792
|
r"""
|
35779
|
-
:param _Filters:
|
35780
|
-
<li> end-point-service-id- String - (过滤条件)终端节点服务ID
|
35793
|
+
:param _Filters: 过滤条件。当前支持如下过滤条件:
|
35794
|
+
<li> end-point-service-id- String - (过滤条件)终端节点服务ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
35795
|
+
</li>
|
35781
35796
|
<li>end-point-name - String - (过滤条件)终端节点实例名称。</li>
|
35782
|
-
<li> end-point-id- String - (过滤条件)终端节点实例ID
|
35783
|
-
|
35797
|
+
<li> end-point-id- String - (过滤条件)终端节点实例ID。可通过[DescribeVpcEndPoint](https://cloud.tencent.com/document/product/215/54679)
|
35798
|
+
接口获取。</li>
|
35799
|
+
<li> vpc-id- String - (过滤条件)VPC实例ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/1108/43663)接口获取。
|
35800
|
+
</li>
|
35784
35801
|
:type Filters: list of Filter
|
35785
35802
|
:param _Offset: 偏移量,默认为0。
|
35786
35803
|
:type Offset: int
|
35787
35804
|
:param _Limit: 单页返回数量,默认为20,最大值为100。
|
35788
35805
|
:type Limit: int
|
35789
|
-
:param _EndPointId: 终端节点ID
|
35806
|
+
:param _EndPointId: 终端节点ID列表。可通过[DescribeVpcEndPoint](https://cloud.tencent.com/document/product/215/54679)
|
35807
|
+
获取。
|
35790
35808
|
:type EndPointId: list of str
|
35791
35809
|
:param _IpAddressType: 协议类型,支持 Ipv4,Ipv6,默认 Ipv4。
|
35792
35810
|
:type IpAddressType: str
|
@@ -35799,11 +35817,14 @@ class DescribeVpcEndPointRequest(AbstractModel):
|
|
35799
35817
|
|
35800
35818
|
@property
|
35801
35819
|
def Filters(self):
|
35802
|
-
"""
|
35803
|
-
<li> end-point-service-id- String - (过滤条件)终端节点服务ID
|
35820
|
+
"""过滤条件。当前支持如下过滤条件:
|
35821
|
+
<li> end-point-service-id- String - (过滤条件)终端节点服务ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
35822
|
+
</li>
|
35804
35823
|
<li>end-point-name - String - (过滤条件)终端节点实例名称。</li>
|
35805
|
-
<li> end-point-id- String - (过滤条件)终端节点实例ID
|
35806
|
-
|
35824
|
+
<li> end-point-id- String - (过滤条件)终端节点实例ID。可通过[DescribeVpcEndPoint](https://cloud.tencent.com/document/product/215/54679)
|
35825
|
+
接口获取。</li>
|
35826
|
+
<li> vpc-id- String - (过滤条件)VPC实例ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/1108/43663)接口获取。
|
35827
|
+
</li>
|
35807
35828
|
:rtype: list of Filter
|
35808
35829
|
"""
|
35809
35830
|
return self._Filters
|
@@ -35836,7 +35857,8 @@ class DescribeVpcEndPointRequest(AbstractModel):
|
|
35836
35857
|
|
35837
35858
|
@property
|
35838
35859
|
def EndPointId(self):
|
35839
|
-
"""终端节点ID
|
35860
|
+
"""终端节点ID列表。可通过[DescribeVpcEndPoint](https://cloud.tencent.com/document/product/215/54679)
|
35861
|
+
获取。
|
35840
35862
|
:rtype: list of str
|
35841
35863
|
"""
|
35842
35864
|
return self._EndPointId
|
@@ -35949,16 +35971,21 @@ class DescribeVpcEndPointServiceRequest(AbstractModel):
|
|
35949
35971
|
def __init__(self):
|
35950
35972
|
r"""
|
35951
35973
|
:param _Filters: 过滤条件。不支持同时传入参数 EndPointServiceIds and Filters。
|
35952
|
-
<li> service-id - String - (过滤条件)终端节点服务唯一ID
|
35974
|
+
<li> service-id - String - (过滤条件)终端节点服务唯一ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
35975
|
+
</li>
|
35953
35976
|
<li>service-name - String - (过滤条件)终端节点实例名称。</li>
|
35954
|
-
<li>service-instance-id - String - (过滤条件)后端服务的唯一ID,比如lb-
|
35955
|
-
|
35977
|
+
<li>service-instance-id - String - (过滤条件)后端服务的唯一ID,比如lb-dehd3e33。CLB可通过[DescribeLoadBalancers](https://cloud.tencent.com/document/product/1108/48459)接口获取;
|
35978
|
+
MYSQL可通过[DescribeDBInstances](https://cloud.tencent.com/document/api/240/38568)接口获取;
|
35979
|
+
CRS可通过[DescribeInstances](https://cloud.tencent.com/document/product/239/20018)接口获取;
|
35980
|
+
GWLB可通过[DescribeGatewayLoadBalancers](https://cloud.tencent.com/document/product/1782/111683)接口获取。
|
35981
|
+
</li>
|
35982
|
+
<li>service-type - String - (过滤条件)后端PAAS服务类型,CLB(负载均衡),CDB(云数据库 MySQL),CRS(云数据库 Redis),GWLB(网关负载均衡),不填默认查询类型为CLB。</li>
|
35956
35983
|
:type Filters: list of Filter
|
35957
35984
|
:param _Offset: 偏移量,默认为0。
|
35958
35985
|
:type Offset: int
|
35959
35986
|
:param _Limit: 单页返回数量,默认为20,最大值为100。
|
35960
35987
|
:type Limit: int
|
35961
|
-
:param _EndPointServiceIds: 终端节点服务ID
|
35988
|
+
:param _EndPointServiceIds: 终端节点服务ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。不支持同时传入参数 EndPointServiceIds and Filters。
|
35962
35989
|
:type EndPointServiceIds: list of str
|
35963
35990
|
:param _IsListAuthorizedEndPointService: <li>不支持同时传入参数 Filters 。</li> <li>列出授权给当前账号的终端节点服务信息。可以配合EndPointServiceIds参数进行过滤,哪些终端节点服务授权了该账户。</li>
|
35964
35991
|
:type IsListAuthorizedEndPointService: bool
|
@@ -35975,10 +36002,15 @@ class DescribeVpcEndPointServiceRequest(AbstractModel):
|
|
35975
36002
|
@property
|
35976
36003
|
def Filters(self):
|
35977
36004
|
"""过滤条件。不支持同时传入参数 EndPointServiceIds and Filters。
|
35978
|
-
<li> service-id - String - (过滤条件)终端节点服务唯一ID
|
36005
|
+
<li> service-id - String - (过滤条件)终端节点服务唯一ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
36006
|
+
</li>
|
35979
36007
|
<li>service-name - String - (过滤条件)终端节点实例名称。</li>
|
35980
|
-
<li>service-instance-id - String - (过滤条件)后端服务的唯一ID,比如lb-
|
35981
|
-
|
36008
|
+
<li>service-instance-id - String - (过滤条件)后端服务的唯一ID,比如lb-dehd3e33。CLB可通过[DescribeLoadBalancers](https://cloud.tencent.com/document/product/1108/48459)接口获取;
|
36009
|
+
MYSQL可通过[DescribeDBInstances](https://cloud.tencent.com/document/api/240/38568)接口获取;
|
36010
|
+
CRS可通过[DescribeInstances](https://cloud.tencent.com/document/product/239/20018)接口获取;
|
36011
|
+
GWLB可通过[DescribeGatewayLoadBalancers](https://cloud.tencent.com/document/product/1782/111683)接口获取。
|
36012
|
+
</li>
|
36013
|
+
<li>service-type - String - (过滤条件)后端PAAS服务类型,CLB(负载均衡),CDB(云数据库 MySQL),CRS(云数据库 Redis),GWLB(网关负载均衡),不填默认查询类型为CLB。</li>
|
35982
36014
|
:rtype: list of Filter
|
35983
36015
|
"""
|
35984
36016
|
return self._Filters
|
@@ -36011,7 +36043,7 @@ class DescribeVpcEndPointServiceRequest(AbstractModel):
|
|
36011
36043
|
|
36012
36044
|
@property
|
36013
36045
|
def EndPointServiceIds(self):
|
36014
|
-
"""终端节点服务ID
|
36046
|
+
"""终端节点服务ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。不支持同时传入参数 EndPointServiceIds and Filters。
|
36015
36047
|
:rtype: list of str
|
36016
36048
|
"""
|
36017
36049
|
return self._EndPointServiceIds
|
@@ -36140,8 +36172,9 @@ class DescribeVpcEndPointServiceWhiteListRequest(AbstractModel):
|
|
36140
36172
|
:param _Limit: 单页返回数量,默认为20,最大值为100。
|
36141
36173
|
:type Limit: int
|
36142
36174
|
:param _Filters: 过滤条件。
|
36143
|
-
<li> user-uin String - (过滤条件)用户UIN
|
36144
|
-
<li> end-point-service-id String - (过滤条件)终端节点服务ID
|
36175
|
+
<li> user-uin String - (过滤条件)用户UIN。登录 腾讯云账号中心控制台 获取。</li>
|
36176
|
+
<li> end-point-service-id String - (过滤条件)终端节点服务ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
36177
|
+
</li>
|
36145
36178
|
:type Filters: list of Filter
|
36146
36179
|
"""
|
36147
36180
|
self._Offset = None
|
@@ -36173,8 +36206,9 @@ class DescribeVpcEndPointServiceWhiteListRequest(AbstractModel):
|
|
36173
36206
|
@property
|
36174
36207
|
def Filters(self):
|
36175
36208
|
"""过滤条件。
|
36176
|
-
<li> user-uin String - (过滤条件)用户UIN
|
36177
|
-
<li> end-point-service-id String - (过滤条件)终端节点服务ID
|
36209
|
+
<li> user-uin String - (过滤条件)用户UIN。登录 腾讯云账号中心控制台 获取。</li>
|
36210
|
+
<li> end-point-service-id String - (过滤条件)终端节点服务ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
36211
|
+
</li>
|
36178
36212
|
:rtype: list of Filter
|
36179
36213
|
"""
|
36180
36214
|
return self._Filters
|
@@ -40686,9 +40720,9 @@ class DisassociateVpcEndPointSecurityGroupsRequest(AbstractModel):
|
|
40686
40720
|
|
40687
40721
|
def __init__(self):
|
40688
40722
|
r"""
|
40689
|
-
:param _SecurityGroupIds: 安全组ID
|
40723
|
+
:param _SecurityGroupIds: 安全组ID数组。可通过[DescribeSecurityGroups](https://cloud.tencent.com/document/product/215/15808)接口获取。
|
40690
40724
|
:type SecurityGroupIds: list of str
|
40691
|
-
:param _EndPointId: 终端节点ID
|
40725
|
+
:param _EndPointId: 终端节点ID。可通过[DescribeVpcEndPoint](https://cloud.tencent.com/document/product/215/54679) 获取。
|
40692
40726
|
:type EndPointId: str
|
40693
40727
|
"""
|
40694
40728
|
self._SecurityGroupIds = None
|
@@ -40696,7 +40730,7 @@ class DisassociateVpcEndPointSecurityGroupsRequest(AbstractModel):
|
|
40696
40730
|
|
40697
40731
|
@property
|
40698
40732
|
def SecurityGroupIds(self):
|
40699
|
-
"""安全组ID
|
40733
|
+
"""安全组ID数组。可通过[DescribeSecurityGroups](https://cloud.tencent.com/document/product/215/15808)接口获取。
|
40700
40734
|
:rtype: list of str
|
40701
40735
|
"""
|
40702
40736
|
return self._SecurityGroupIds
|
@@ -40707,7 +40741,7 @@ class DisassociateVpcEndPointSecurityGroupsRequest(AbstractModel):
|
|
40707
40741
|
|
40708
40742
|
@property
|
40709
40743
|
def EndPointId(self):
|
40710
|
-
"""终端节点ID
|
40744
|
+
"""终端节点ID。可通过[DescribeVpcEndPoint](https://cloud.tencent.com/document/product/215/54679) 获取。
|
40711
40745
|
:rtype: str
|
40712
40746
|
"""
|
40713
40747
|
return self._EndPointId
|
@@ -41421,9 +41455,9 @@ class EnableVpcEndPointConnectRequest(AbstractModel):
|
|
41421
41455
|
|
41422
41456
|
def __init__(self):
|
41423
41457
|
r"""
|
41424
|
-
:param _EndPointServiceId: 终端节点服务ID
|
41458
|
+
:param _EndPointServiceId: 终端节点服务ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
41425
41459
|
:type EndPointServiceId: str
|
41426
|
-
:param _EndPointId: 终端节点ID
|
41460
|
+
:param _EndPointId: 终端节点ID。可通过[DescribeVpcEndPoint](https://cloud.tencent.com/document/product/215/54679) 获取。
|
41427
41461
|
:type EndPointId: list of str
|
41428
41462
|
:param _AcceptFlag: 是否接受终端节点连接请求。
|
41429
41463
|
<li> true:自动接受。</li> <li> false:不自动接受。</li>
|
@@ -41438,7 +41472,7 @@ class EnableVpcEndPointConnectRequest(AbstractModel):
|
|
41438
41472
|
|
41439
41473
|
@property
|
41440
41474
|
def EndPointServiceId(self):
|
41441
|
-
"""终端节点服务ID
|
41475
|
+
"""终端节点服务ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
41442
41476
|
:rtype: str
|
41443
41477
|
"""
|
41444
41478
|
return self._EndPointServiceId
|
@@ -41449,7 +41483,7 @@ class EnableVpcEndPointConnectRequest(AbstractModel):
|
|
41449
41483
|
|
41450
41484
|
@property
|
41451
41485
|
def EndPointId(self):
|
41452
|
-
"""终端节点ID
|
41486
|
+
"""终端节点ID。可通过[DescribeVpcEndPoint](https://cloud.tencent.com/document/product/215/54679) 获取。
|
41453
41487
|
:rtype: list of str
|
41454
41488
|
"""
|
41455
41489
|
return self._EndPointId
|
@@ -41628,7 +41662,7 @@ class EndPoint(AbstractModel):
|
|
41628
41662
|
r"""
|
41629
41663
|
:param _EndPointId: 终端节点ID。
|
41630
41664
|
:type EndPointId: str
|
41631
|
-
:param _VpcId: VPC唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/
|
41665
|
+
:param _VpcId: VPC唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/215/15778)接口获取。
|
41632
41666
|
:type VpcId: str
|
41633
41667
|
:param _SubnetId: 子网ID。
|
41634
41668
|
:type SubnetId: str
|
@@ -41686,7 +41720,7 @@ class EndPoint(AbstractModel):
|
|
41686
41720
|
|
41687
41721
|
@property
|
41688
41722
|
def VpcId(self):
|
41689
|
-
"""VPC唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/
|
41723
|
+
"""VPC唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/215/15778)接口获取。
|
41690
41724
|
:rtype: str
|
41691
41725
|
"""
|
41692
41726
|
return self._VpcId
|
@@ -42235,7 +42269,7 @@ class FlowLog(AbstractModel):
|
|
42235
42269
|
|
42236
42270
|
def __init__(self):
|
42237
42271
|
r"""
|
42238
|
-
:param _VpcId: 私用网络唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/
|
42272
|
+
:param _VpcId: 私用网络唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/215/15778)接口获取。
|
42239
42273
|
:type VpcId: str
|
42240
42274
|
:param _FlowLogId: 流日志唯一ID。
|
42241
42275
|
:type FlowLogId: str
|
@@ -42284,7 +42318,7 @@ class FlowLog(AbstractModel):
|
|
42284
42318
|
|
42285
42319
|
@property
|
42286
42320
|
def VpcId(self):
|
42287
|
-
"""私用网络唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/
|
42321
|
+
"""私用网络唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/215/15778)接口获取。
|
42288
42322
|
:rtype: str
|
42289
42323
|
"""
|
42290
42324
|
return self._VpcId
|
@@ -49875,7 +49909,7 @@ class ModifyIPv6AddressesBandwidthRequest(AbstractModel):
|
|
49875
49909
|
r"""
|
49876
49910
|
:param _IPv6AddressIds: 弹性公网IPv6地址唯一ID,可以使用[DescribeIPv6Addresses](https://cloud.tencent.com/document/api/215/113677)接口获取IPv6AddressId。
|
49877
49911
|
:type IPv6AddressIds: list of str
|
49878
|
-
:param _InternetMaxBandwidthOut: 弹性公网IPv6地址网络带宽,可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://
|
49912
|
+
:param _InternetMaxBandwidthOut: 弹性公网IPv6地址网络带宽,可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://cloud.tencent.com/document/product/1142/38369#IPv6)。
|
49879
49913
|
:type InternetMaxBandwidthOut: int
|
49880
49914
|
"""
|
49881
49915
|
self._IPv6AddressIds = None
|
@@ -49894,7 +49928,7 @@ class ModifyIPv6AddressesBandwidthRequest(AbstractModel):
|
|
49894
49928
|
|
49895
49929
|
@property
|
49896
49930
|
def InternetMaxBandwidthOut(self):
|
49897
|
-
"""弹性公网IPv6地址网络带宽,可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://
|
49931
|
+
"""弹性公网IPv6地址网络带宽,可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://cloud.tencent.com/document/product/1142/38369#IPv6)。
|
49898
49932
|
:rtype: int
|
49899
49933
|
"""
|
49900
49934
|
return self._InternetMaxBandwidthOut
|
@@ -49952,7 +49986,7 @@ class ModifyIp6AddressesBandwidthRequest(AbstractModel):
|
|
49952
49986
|
|
49953
49987
|
def __init__(self):
|
49954
49988
|
r"""
|
49955
|
-
:param _InternetMaxBandwidthOut: 修改的目标带宽,单位Mbps。可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://
|
49989
|
+
:param _InternetMaxBandwidthOut: 修改的目标带宽,单位Mbps。可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://cloud.tencent.com/document/product/1142/38369#IPv6)。
|
49956
49990
|
:type InternetMaxBandwidthOut: int
|
49957
49991
|
:param _Ip6Addresses: IPv6地址。可以使用[DescribeIp6Addresses](https://cloud.tencent.com/document/product/215/40089)接口查询Ip6Addresses。Ip6Addresses和Ip6AddressIds必须且只能传一个。
|
49958
49992
|
:type Ip6Addresses: list of str
|
@@ -49965,7 +49999,7 @@ class ModifyIp6AddressesBandwidthRequest(AbstractModel):
|
|
49965
49999
|
|
49966
50000
|
@property
|
49967
50001
|
def InternetMaxBandwidthOut(self):
|
49968
|
-
"""修改的目标带宽,单位Mbps。可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://
|
50002
|
+
"""修改的目标带宽,单位Mbps。可调整的带宽上限值参考产品文档中[IPv6 计费限制说明](https://cloud.tencent.com/document/product/1142/38369#IPv6)。
|
49969
50003
|
:rtype: int
|
49970
50004
|
"""
|
49971
50005
|
return self._InternetMaxBandwidthOut
|
@@ -53154,11 +53188,11 @@ class ModifyVpcEndPointAttributeRequest(AbstractModel):
|
|
53154
53188
|
|
53155
53189
|
def __init__(self):
|
53156
53190
|
r"""
|
53157
|
-
:param _EndPointId: 终端节点ID
|
53191
|
+
:param _EndPointId: 终端节点ID。可通过[DescribeVpcEndPoint](https://cloud.tencent.com/document/product/215/54679) 获取。
|
53158
53192
|
:type EndPointId: str
|
53159
|
-
:param _EndPointName:
|
53193
|
+
:param _EndPointName: 终端节点名称。长度限制为60个字符。
|
53160
53194
|
:type EndPointName: str
|
53161
|
-
:param _SecurityGroupIds: 安全组ID
|
53195
|
+
:param _SecurityGroupIds: 安全组ID列表。可通过[DescribeSecurityGroups](https://cloud.tencent.com/document/product/215/15808)接口获取。
|
53162
53196
|
:type SecurityGroupIds: list of str
|
53163
53197
|
:param _IpAddressType: 协议类型,支持 Ipv4,Ipv6,默认 Ipv4。
|
53164
53198
|
:type IpAddressType: str
|
@@ -53170,7 +53204,7 @@ class ModifyVpcEndPointAttributeRequest(AbstractModel):
|
|
53170
53204
|
|
53171
53205
|
@property
|
53172
53206
|
def EndPointId(self):
|
53173
|
-
"""终端节点ID
|
53207
|
+
"""终端节点ID。可通过[DescribeVpcEndPoint](https://cloud.tencent.com/document/product/215/54679) 获取。
|
53174
53208
|
:rtype: str
|
53175
53209
|
"""
|
53176
53210
|
return self._EndPointId
|
@@ -53181,7 +53215,7 @@ class ModifyVpcEndPointAttributeRequest(AbstractModel):
|
|
53181
53215
|
|
53182
53216
|
@property
|
53183
53217
|
def EndPointName(self):
|
53184
|
-
"""
|
53218
|
+
"""终端节点名称。长度限制为60个字符。
|
53185
53219
|
:rtype: str
|
53186
53220
|
"""
|
53187
53221
|
return self._EndPointName
|
@@ -53192,7 +53226,7 @@ class ModifyVpcEndPointAttributeRequest(AbstractModel):
|
|
53192
53226
|
|
53193
53227
|
@property
|
53194
53228
|
def SecurityGroupIds(self):
|
53195
|
-
"""安全组ID
|
53229
|
+
"""安全组ID列表。可通过[DescribeSecurityGroups](https://cloud.tencent.com/document/product/215/15808)接口获取。
|
53196
53230
|
:rtype: list of str
|
53197
53231
|
"""
|
53198
53232
|
return self._SecurityGroupIds
|
@@ -53263,15 +53297,20 @@ class ModifyVpcEndPointServiceAttributeRequest(AbstractModel):
|
|
53263
53297
|
|
53264
53298
|
def __init__(self):
|
53265
53299
|
r"""
|
53266
|
-
:param _EndPointServiceId: 终端节点服务ID
|
53300
|
+
:param _EndPointServiceId: 终端节点服务ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
53301
|
+
|
53267
53302
|
:type EndPointServiceId: str
|
53268
|
-
:param _VpcId:
|
53303
|
+
:param _VpcId: VPC唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/1108/43663)接口获取。
|
53269
53304
|
:type VpcId: str
|
53270
|
-
:param _EndPointServiceName:
|
53305
|
+
:param _EndPointServiceName: 终端节点服务名称。长度不超过60个字符。
|
53271
53306
|
:type EndPointServiceName: str
|
53272
53307
|
:param _AutoAcceptFlag: 是否自动接受终端节点的连接请求。<ul><li>true:自动接受</li><li>false:不自动接受</li></ul>
|
53273
53308
|
:type AutoAcceptFlag: bool
|
53274
|
-
:param _ServiceInstanceId: 后端服务的ID,比如lb-
|
53309
|
+
:param _ServiceInstanceId: 后端服务的ID,比如lb-p1hiksdg。CLB可通过[DescribeLoadBalancers](https://cloud.tencent.com/document/product/1108/48459)接口获取;
|
53310
|
+
MYSQL可通过[DescribeDBInstances](https://cloud.tencent.com/document/api/240/38568)接口获取;
|
53311
|
+
CRS可通过[DescribeInstances](https://cloud.tencent.com/document/product/239/20018)接口获取;
|
53312
|
+
GWLB可通过[DescribeGatewayLoadBalancers](https://cloud.tencent.com/document/product/1782/111683)接口获取
|
53313
|
+
|
53275
53314
|
:type ServiceInstanceId: str
|
53276
53315
|
:param _IpAddressType: 协议类型,支持 Ipv4,Ipv6,默认 Ipv4。
|
53277
53316
|
:type IpAddressType: str
|
@@ -53285,7 +53324,8 @@ class ModifyVpcEndPointServiceAttributeRequest(AbstractModel):
|
|
53285
53324
|
|
53286
53325
|
@property
|
53287
53326
|
def EndPointServiceId(self):
|
53288
|
-
"""终端节点服务ID
|
53327
|
+
"""终端节点服务ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
53328
|
+
|
53289
53329
|
:rtype: str
|
53290
53330
|
"""
|
53291
53331
|
return self._EndPointServiceId
|
@@ -53296,7 +53336,7 @@ class ModifyVpcEndPointServiceAttributeRequest(AbstractModel):
|
|
53296
53336
|
|
53297
53337
|
@property
|
53298
53338
|
def VpcId(self):
|
53299
|
-
"""
|
53339
|
+
"""VPC唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/1108/43663)接口获取。
|
53300
53340
|
:rtype: str
|
53301
53341
|
"""
|
53302
53342
|
return self._VpcId
|
@@ -53307,7 +53347,7 @@ class ModifyVpcEndPointServiceAttributeRequest(AbstractModel):
|
|
53307
53347
|
|
53308
53348
|
@property
|
53309
53349
|
def EndPointServiceName(self):
|
53310
|
-
"""
|
53350
|
+
"""终端节点服务名称。长度不超过60个字符。
|
53311
53351
|
:rtype: str
|
53312
53352
|
"""
|
53313
53353
|
return self._EndPointServiceName
|
@@ -53329,7 +53369,11 @@ class ModifyVpcEndPointServiceAttributeRequest(AbstractModel):
|
|
53329
53369
|
|
53330
53370
|
@property
|
53331
53371
|
def ServiceInstanceId(self):
|
53332
|
-
"""后端服务的ID,比如lb-
|
53372
|
+
"""后端服务的ID,比如lb-p1hiksdg。CLB可通过[DescribeLoadBalancers](https://cloud.tencent.com/document/product/1108/48459)接口获取;
|
53373
|
+
MYSQL可通过[DescribeDBInstances](https://cloud.tencent.com/document/api/240/38568)接口获取;
|
53374
|
+
CRS可通过[DescribeInstances](https://cloud.tencent.com/document/product/239/20018)接口获取;
|
53375
|
+
GWLB可通过[DescribeGatewayLoadBalancers](https://cloud.tencent.com/document/product/1782/111683)接口获取
|
53376
|
+
|
53333
53377
|
:rtype: str
|
53334
53378
|
"""
|
53335
53379
|
return self._ServiceInstanceId
|
@@ -53402,11 +53446,11 @@ class ModifyVpcEndPointServiceWhiteListRequest(AbstractModel):
|
|
53402
53446
|
|
53403
53447
|
def __init__(self):
|
53404
53448
|
r"""
|
53405
|
-
:param _UserUin: 用户UIN
|
53449
|
+
:param _UserUin: 用户UIN。可以通过终端节点所在的用户通过登录 腾讯云账号中心控制台获取。
|
53406
53450
|
:type UserUin: str
|
53407
|
-
:param _EndPointServiceId: 终端节点服务ID
|
53451
|
+
:param _EndPointServiceId: 终端节点服务ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
53408
53452
|
:type EndPointServiceId: str
|
53409
|
-
:param _Description:
|
53453
|
+
:param _Description: 白名单描述信息。长度不超过60个字符。
|
53410
53454
|
:type Description: str
|
53411
53455
|
"""
|
53412
53456
|
self._UserUin = None
|
@@ -53415,7 +53459,7 @@ class ModifyVpcEndPointServiceWhiteListRequest(AbstractModel):
|
|
53415
53459
|
|
53416
53460
|
@property
|
53417
53461
|
def UserUin(self):
|
53418
|
-
"""用户UIN
|
53462
|
+
"""用户UIN。可以通过终端节点所在的用户通过登录 腾讯云账号中心控制台获取。
|
53419
53463
|
:rtype: str
|
53420
53464
|
"""
|
53421
53465
|
return self._UserUin
|
@@ -53426,7 +53470,7 @@ class ModifyVpcEndPointServiceWhiteListRequest(AbstractModel):
|
|
53426
53470
|
|
53427
53471
|
@property
|
53428
53472
|
def EndPointServiceId(self):
|
53429
|
-
"""终端节点服务ID
|
53473
|
+
"""终端节点服务ID。可通过[DescribeVpcEndPointService](https://cloud.tencent.com/document/product/215/54678)接口获取。
|
53430
53474
|
:rtype: str
|
53431
53475
|
"""
|
53432
53476
|
return self._EndPointServiceId
|
@@ -53437,7 +53481,7 @@ class ModifyVpcEndPointServiceWhiteListRequest(AbstractModel):
|
|
53437
53481
|
|
53438
53482
|
@property
|
53439
53483
|
def Description(self):
|
53440
|
-
"""
|
53484
|
+
"""白名单描述信息。长度不超过60个字符。
|
53441
53485
|
:rtype: str
|
53442
53486
|
"""
|
53443
53487
|
return self._Description
|