tencentcloud-sdk-python 3.0.1361__py2.py3-none-any.whl → 3.0.1362__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/cdwpg/v20201230/models.py +0 -136
- tencentcloud/cwp/v20180228/models.py +138 -12
- tencentcloud/dlc/v20210125/models.py +0 -2
- tencentcloud/es/v20250101/es_client.py +23 -0
- tencentcloud/es/v20250101/models.py +356 -1
- tencentcloud/gaap/v20180529/gaap_client.py +1 -1
- tencentcloud/gaap/v20180529/models.py +2 -20
- tencentcloud/gs/v20191118/gs_client.py +46 -0
- tencentcloud/gs/v20191118/models.py +385 -8
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +69 -0
- tencentcloud/iotexplorer/v20190423/models.py +578 -0
- tencentcloud/lcic/v20220817/models.py +30 -0
- tencentcloud/lighthouse/v20200324/errorcodes.py +0 -6
- tencentcloud/lighthouse/v20200324/lighthouse_client.py +0 -56
- tencentcloud/lighthouse/v20200324/models.py +0 -158
- tencentcloud/mps/v20190612/models.py +166 -15
- tencentcloud/oceanus/v20190422/models.py +2 -2
- tencentcloud/tcbr/v20220217/models.py +15 -0
- tencentcloud/tione/v20211111/models.py +91 -0
- tencentcloud/trocket/v20230308/models.py +141 -88
- tencentcloud/trocket/v20230308/trocket_client.py +2 -1
- tencentcloud/vcube/v20220410/models.py +15 -0
- tencentcloud/vdb/v20230616/models.py +15 -0
- tencentcloud/vpc/v20170312/models.py +307 -78
- tencentcloud/vpc/v20170312/vpc_client.py +31 -3
- {tencentcloud_sdk_python-3.0.1361.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1361.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/RECORD +31 -31
- {tencentcloud_sdk_python-3.0.1361.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1361.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1361.dist-info → tencentcloud_sdk_python-3.0.1362.dist-info}/top_level.txt +0 -0
@@ -2813,8 +2813,11 @@ class AssignIpv6CidrBlockRequest(AbstractModel):
|
|
2813
2813
|
r"""
|
2814
2814
|
:param _VpcId: `VPC`实例`ID`,形如:`vpc-f49l6u0z`。
|
2815
2815
|
:type VpcId: str
|
2816
|
+
:param _AddressType: 申请IPv6 Cidr 的类型,`GUA`(全球单播地址), `ULA`(唯一本地地址)。
|
2817
|
+
:type AddressType: str
|
2816
2818
|
"""
|
2817
2819
|
self._VpcId = None
|
2820
|
+
self._AddressType = None
|
2818
2821
|
|
2819
2822
|
@property
|
2820
2823
|
def VpcId(self):
|
@@ -2827,9 +2830,21 @@ class AssignIpv6CidrBlockRequest(AbstractModel):
|
|
2827
2830
|
def VpcId(self, VpcId):
|
2828
2831
|
self._VpcId = VpcId
|
2829
2832
|
|
2833
|
+
@property
|
2834
|
+
def AddressType(self):
|
2835
|
+
"""申请IPv6 Cidr 的类型,`GUA`(全球单播地址), `ULA`(唯一本地地址)。
|
2836
|
+
:rtype: str
|
2837
|
+
"""
|
2838
|
+
return self._AddressType
|
2839
|
+
|
2840
|
+
@AddressType.setter
|
2841
|
+
def AddressType(self, AddressType):
|
2842
|
+
self._AddressType = AddressType
|
2843
|
+
|
2830
2844
|
|
2831
2845
|
def _deserialize(self, params):
|
2832
2846
|
self._VpcId = params.get("VpcId")
|
2847
|
+
self._AddressType = params.get("AddressType")
|
2833
2848
|
memeber_set = set(params.keys())
|
2834
2849
|
for name, value in vars(self).items():
|
2835
2850
|
property_name = name[1:]
|
@@ -2849,10 +2864,13 @@ class AssignIpv6CidrBlockResponse(AbstractModel):
|
|
2849
2864
|
r"""
|
2850
2865
|
:param _Ipv6CidrBlock: 分配的 `IPv6` 网段。形如:`3402:4e00:20:1000::/56`。
|
2851
2866
|
:type Ipv6CidrBlock: str
|
2867
|
+
:param _AddressType: 申请IPv6 Cidr 的类型,`GUA`, `ULA`
|
2868
|
+
:type AddressType: str
|
2852
2869
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2853
2870
|
:type RequestId: str
|
2854
2871
|
"""
|
2855
2872
|
self._Ipv6CidrBlock = None
|
2873
|
+
self._AddressType = None
|
2856
2874
|
self._RequestId = None
|
2857
2875
|
|
2858
2876
|
@property
|
@@ -2866,6 +2884,17 @@ class AssignIpv6CidrBlockResponse(AbstractModel):
|
|
2866
2884
|
def Ipv6CidrBlock(self, Ipv6CidrBlock):
|
2867
2885
|
self._Ipv6CidrBlock = Ipv6CidrBlock
|
2868
2886
|
|
2887
|
+
@property
|
2888
|
+
def AddressType(self):
|
2889
|
+
"""申请IPv6 Cidr 的类型,`GUA`, `ULA`
|
2890
|
+
:rtype: str
|
2891
|
+
"""
|
2892
|
+
return self._AddressType
|
2893
|
+
|
2894
|
+
@AddressType.setter
|
2895
|
+
def AddressType(self, AddressType):
|
2896
|
+
self._AddressType = AddressType
|
2897
|
+
|
2869
2898
|
@property
|
2870
2899
|
def RequestId(self):
|
2871
2900
|
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
@@ -2880,6 +2909,7 @@ class AssignIpv6CidrBlockResponse(AbstractModel):
|
|
2880
2909
|
|
2881
2910
|
def _deserialize(self, params):
|
2882
2911
|
self._Ipv6CidrBlock = params.get("Ipv6CidrBlock")
|
2912
|
+
self._AddressType = params.get("AddressType")
|
2883
2913
|
self._RequestId = params.get("RequestId")
|
2884
2914
|
|
2885
2915
|
|
@@ -8974,7 +9004,7 @@ class CreateAndAttachNetworkInterfaceRequest(AbstractModel):
|
|
8974
9004
|
r"""
|
8975
9005
|
:param _VpcId: VPC实例ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/1108/43663)接口获取。
|
8976
9006
|
:type VpcId: str
|
8977
|
-
:param _NetworkInterfaceName: 弹性网卡名称,最大长度不能超过60
|
9007
|
+
:param _NetworkInterfaceName: 弹性网卡名称,最大长度不能超过60个字符。
|
8978
9008
|
:type NetworkInterfaceName: str
|
8979
9009
|
:param _SubnetId: 弹性网卡所在的子网实例ID,例如:subnet-0ap8nwca。可通过[DescribeSubnets](https://cloud.tencent.com/document/product/215/15784)接口获取。
|
8980
9010
|
:type SubnetId: str
|
@@ -9027,7 +9057,7 @@ class CreateAndAttachNetworkInterfaceRequest(AbstractModel):
|
|
9027
9057
|
|
9028
9058
|
@property
|
9029
9059
|
def NetworkInterfaceName(self):
|
9030
|
-
"""弹性网卡名称,最大长度不能超过60
|
9060
|
+
"""弹性网卡名称,最大长度不能超过60个字符。
|
9031
9061
|
:rtype: str
|
9032
9062
|
"""
|
9033
9063
|
return self._NetworkInterfaceName
|
@@ -10664,23 +10694,25 @@ class CreateFlowLogRequest(AbstractModel):
|
|
10664
10694
|
|
10665
10695
|
def __init__(self):
|
10666
10696
|
r"""
|
10667
|
-
:param _FlowLogName:
|
10697
|
+
:param _FlowLogName: 流日志实例名字。长度为不超过60个字节。
|
10668
10698
|
:type FlowLogName: str
|
10669
|
-
:param _ResourceType: 流日志所属资源类型,VPC
|
10699
|
+
:param _ResourceType: 流日志所属资源类型,VPC(私有网络),SUBNET(子网),NETWORKINTERFACE(网卡),CCN(云联网),NAT(网络地址转化),DCG(专线网关)。当选择VPC, SUBNET,CCN,DCG时,请通过工单加入白名单。
|
10670
10700
|
:type ResourceType: str
|
10671
10701
|
:param _ResourceId: 资源唯一ID。
|
10672
10702
|
:type ResourceId: str
|
10673
|
-
:param _TrafficType: 流日志采集类型,ACCEPT
|
10703
|
+
:param _TrafficType: 流日志采集类型,ACCEPT(允许),REJECT(拒绝),ALL(全部)。
|
10674
10704
|
:type TrafficType: str
|
10675
|
-
:param _VpcId:
|
10705
|
+
:param _VpcId: 私用网络唯一ID。当ResourceType为CCN时不填,其他类型必填。
|
10676
10706
|
:type VpcId: str
|
10677
10707
|
:param _FlowLogDescription: 流日志实例描述。
|
10678
10708
|
:type FlowLogDescription: str
|
10679
|
-
:param _CloudLogId: 流日志存储ID
|
10709
|
+
:param _CloudLogId: 流日志存储ID(cls的日志主题ID,
|
10710
|
+
可通过[DescribeTopics](https://cloud.tencent.com/document/api/1179/46086)接口获取。
|
10711
|
+
)。当StorageType为cls时,CloudLogId为必选。
|
10680
10712
|
:type CloudLogId: str
|
10681
10713
|
:param _Tags: 指定绑定的标签列表,例如:[{"Key": "city", "Value": "shanghai"}]。
|
10682
10714
|
:type Tags: list of Tag
|
10683
|
-
:param _StorageType: 消费端类型:cls、ckafka。默认值cls
|
10715
|
+
:param _StorageType: 消费端类型:cls、ckafka。默认值cls。当选择kafka时,请通过工单加入白名单。
|
10684
10716
|
:type StorageType: str
|
10685
10717
|
:param _FlowLogStorage: 流日志消费端信息,当消费端类型为ckafka时,必填。
|
10686
10718
|
:type FlowLogStorage: :class:`tencentcloud.vpc.v20170312.models.FlowLogStorage`
|
@@ -10701,7 +10733,7 @@ class CreateFlowLogRequest(AbstractModel):
|
|
10701
10733
|
|
10702
10734
|
@property
|
10703
10735
|
def FlowLogName(self):
|
10704
|
-
"""
|
10736
|
+
"""流日志实例名字。长度为不超过60个字节。
|
10705
10737
|
:rtype: str
|
10706
10738
|
"""
|
10707
10739
|
return self._FlowLogName
|
@@ -10712,7 +10744,7 @@ class CreateFlowLogRequest(AbstractModel):
|
|
10712
10744
|
|
10713
10745
|
@property
|
10714
10746
|
def ResourceType(self):
|
10715
|
-
"""流日志所属资源类型,VPC
|
10747
|
+
"""流日志所属资源类型,VPC(私有网络),SUBNET(子网),NETWORKINTERFACE(网卡),CCN(云联网),NAT(网络地址转化),DCG(专线网关)。当选择VPC, SUBNET,CCN,DCG时,请通过工单加入白名单。
|
10716
10748
|
:rtype: str
|
10717
10749
|
"""
|
10718
10750
|
return self._ResourceType
|
@@ -10734,7 +10766,7 @@ class CreateFlowLogRequest(AbstractModel):
|
|
10734
10766
|
|
10735
10767
|
@property
|
10736
10768
|
def TrafficType(self):
|
10737
|
-
"""流日志采集类型,ACCEPT
|
10769
|
+
"""流日志采集类型,ACCEPT(允许),REJECT(拒绝),ALL(全部)。
|
10738
10770
|
:rtype: str
|
10739
10771
|
"""
|
10740
10772
|
return self._TrafficType
|
@@ -10745,7 +10777,7 @@ class CreateFlowLogRequest(AbstractModel):
|
|
10745
10777
|
|
10746
10778
|
@property
|
10747
10779
|
def VpcId(self):
|
10748
|
-
"""
|
10780
|
+
"""私用网络唯一ID。当ResourceType为CCN时不填,其他类型必填。
|
10749
10781
|
:rtype: str
|
10750
10782
|
"""
|
10751
10783
|
return self._VpcId
|
@@ -10767,7 +10799,9 @@ class CreateFlowLogRequest(AbstractModel):
|
|
10767
10799
|
|
10768
10800
|
@property
|
10769
10801
|
def CloudLogId(self):
|
10770
|
-
"""流日志存储ID
|
10802
|
+
"""流日志存储ID(cls的日志主题ID,
|
10803
|
+
可通过[DescribeTopics](https://cloud.tencent.com/document/api/1179/46086)接口获取。
|
10804
|
+
)。当StorageType为cls时,CloudLogId为必选。
|
10771
10805
|
:rtype: str
|
10772
10806
|
"""
|
10773
10807
|
return self._CloudLogId
|
@@ -10789,7 +10823,7 @@ class CreateFlowLogRequest(AbstractModel):
|
|
10789
10823
|
|
10790
10824
|
@property
|
10791
10825
|
def StorageType(self):
|
10792
|
-
"""消费端类型:cls、ckafka。默认值cls
|
10826
|
+
"""消费端类型:cls、ckafka。默认值cls。当选择kafka时,请通过工单加入白名单。
|
10793
10827
|
:rtype: str
|
10794
10828
|
"""
|
10795
10829
|
return self._StorageType
|
@@ -18889,9 +18923,10 @@ class DeleteFlowLogRequest(AbstractModel):
|
|
18889
18923
|
|
18890
18924
|
def __init__(self):
|
18891
18925
|
r"""
|
18892
|
-
:param _FlowLogId: 流日志唯一ID
|
18926
|
+
:param _FlowLogId: 流日志唯一ID。可通过[CreateFlowLog](https://cloud.tencent.com/document/product/215/35015)接口创建;可通过[DescribeFlowLogs](https://cloud.tencent.com/document/product/215/35012)接口获取。
|
18893
18927
|
:type FlowLogId: str
|
18894
|
-
:param _VpcId:
|
18928
|
+
:param _VpcId: 私用网络唯一ID。删除云联网流日志时,可不填,其他流日志类型必填。可通过[DescribeFlowLogs](https://cloud.tencent.com/document/product/215/35012)接口获取流日志对应的私有网络唯一ID。也可通过[DescribeVpcs](https://cloud.tencent.com/document/product/1108/43663)接口获取当前账户的私有网络唯一ID。
|
18929
|
+
|
18895
18930
|
:type VpcId: str
|
18896
18931
|
"""
|
18897
18932
|
self._FlowLogId = None
|
@@ -18899,7 +18934,7 @@ class DeleteFlowLogRequest(AbstractModel):
|
|
18899
18934
|
|
18900
18935
|
@property
|
18901
18936
|
def FlowLogId(self):
|
18902
|
-
"""流日志唯一ID
|
18937
|
+
"""流日志唯一ID。可通过[CreateFlowLog](https://cloud.tencent.com/document/product/215/35015)接口创建;可通过[DescribeFlowLogs](https://cloud.tencent.com/document/product/215/35012)接口获取。
|
18903
18938
|
:rtype: str
|
18904
18939
|
"""
|
18905
18940
|
return self._FlowLogId
|
@@ -18910,7 +18945,8 @@ class DeleteFlowLogRequest(AbstractModel):
|
|
18910
18945
|
|
18911
18946
|
@property
|
18912
18947
|
def VpcId(self):
|
18913
|
-
"""
|
18948
|
+
"""私用网络唯一ID。删除云联网流日志时,可不填,其他流日志类型必填。可通过[DescribeFlowLogs](https://cloud.tencent.com/document/product/215/35012)接口获取流日志对应的私有网络唯一ID。也可通过[DescribeVpcs](https://cloud.tencent.com/document/product/1108/43663)接口获取当前账户的私有网络唯一ID。
|
18949
|
+
|
18914
18950
|
:rtype: str
|
18915
18951
|
"""
|
18916
18952
|
return self._VpcId
|
@@ -19870,14 +19906,16 @@ class DeleteNetworkInterfaceRequest(AbstractModel):
|
|
19870
19906
|
|
19871
19907
|
def __init__(self):
|
19872
19908
|
r"""
|
19873
|
-
:param _NetworkInterfaceId: 弹性网卡实例ID,例如:eni-m6dyj72l
|
19909
|
+
:param _NetworkInterfaceId: 弹性网卡实例ID,例如:eni-m6dyj72l。可通过[DescribeNetworkInterfaces](https://cloud.tencent.com/document/product/215/15817)接口获取。
|
19910
|
+
|
19874
19911
|
:type NetworkInterfaceId: str
|
19875
19912
|
"""
|
19876
19913
|
self._NetworkInterfaceId = None
|
19877
19914
|
|
19878
19915
|
@property
|
19879
19916
|
def NetworkInterfaceId(self):
|
19880
|
-
"""弹性网卡实例ID,例如:eni-m6dyj72l
|
19917
|
+
"""弹性网卡实例ID,例如:eni-m6dyj72l。可通过[DescribeNetworkInterfaces](https://cloud.tencent.com/document/product/215/15817)接口获取。
|
19918
|
+
|
19881
19919
|
:rtype: str
|
19882
19920
|
"""
|
19883
19921
|
return self._NetworkInterfaceId
|
@@ -26098,9 +26136,9 @@ class DescribeFlowLogRequest(AbstractModel):
|
|
26098
26136
|
|
26099
26137
|
def __init__(self):
|
26100
26138
|
r"""
|
26101
|
-
:param _VpcId:
|
26139
|
+
:param _VpcId: 私用网络唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/1108/43663)接口获取。该接口不支持拉取CCN类型的流日志,所以该字段为必选。
|
26102
26140
|
:type VpcId: str
|
26103
|
-
:param _FlowLogId: 流日志唯一ID
|
26141
|
+
:param _FlowLogId: 流日志唯一ID。可通过[CreateFlowLog](https://cloud.tencent.com/document/product/215/35015)接口创建;可通过[DescribeFlowLogs](https://cloud.tencent.com/document/product/215/35012)接口获取;
|
26104
26142
|
:type FlowLogId: str
|
26105
26143
|
"""
|
26106
26144
|
self._VpcId = None
|
@@ -26108,7 +26146,7 @@ class DescribeFlowLogRequest(AbstractModel):
|
|
26108
26146
|
|
26109
26147
|
@property
|
26110
26148
|
def VpcId(self):
|
26111
|
-
"""
|
26149
|
+
"""私用网络唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/1108/43663)接口获取。该接口不支持拉取CCN类型的流日志,所以该字段为必选。
|
26112
26150
|
:rtype: str
|
26113
26151
|
"""
|
26114
26152
|
return self._VpcId
|
@@ -26119,7 +26157,7 @@ class DescribeFlowLogRequest(AbstractModel):
|
|
26119
26157
|
|
26120
26158
|
@property
|
26121
26159
|
def FlowLogId(self):
|
26122
|
-
"""流日志唯一ID
|
26160
|
+
"""流日志唯一ID。可通过[CreateFlowLog](https://cloud.tencent.com/document/product/215/35015)接口创建;可通过[DescribeFlowLogs](https://cloud.tencent.com/document/product/215/35012)接口获取;
|
26123
26161
|
:rtype: str
|
26124
26162
|
"""
|
26125
26163
|
return self._FlowLogId
|
@@ -26197,29 +26235,30 @@ class DescribeFlowLogsRequest(AbstractModel):
|
|
26197
26235
|
|
26198
26236
|
def __init__(self):
|
26199
26237
|
r"""
|
26200
|
-
:param _VpcId:
|
26238
|
+
:param _VpcId: 私用网络唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/1108/43663)接口获取。
|
26201
26239
|
:type VpcId: str
|
26202
|
-
:param _FlowLogId: 流日志唯一ID
|
26240
|
+
:param _FlowLogId: 流日志唯一ID。可通过[CreateFlowLog](https://cloud.tencent.com/document/product/215/35015)接口创建。
|
26203
26241
|
:type FlowLogId: str
|
26204
26242
|
:param _FlowLogName: 流日志实例名字。
|
26205
26243
|
:type FlowLogName: str
|
26206
|
-
:param _ResourceType:
|
26244
|
+
:param _ResourceType: 流日志所属资源类型:VPC(私有网络),SUBNET(子网),NETWORKINTERFACE(网卡),CCN(云联网),NAT(网络地址转化),DCG(专线网关)。
|
26245
|
+
|
26207
26246
|
:type ResourceType: str
|
26208
26247
|
:param _ResourceId: 资源唯一ID。
|
26209
26248
|
:type ResourceId: str
|
26210
|
-
:param _TrafficType: 流日志采集类型,ACCEPT
|
26249
|
+
:param _TrafficType: 流日志采集类型,ACCEPT(允许),REJECT(拒绝),ALL(全部)。
|
26211
26250
|
:type TrafficType: str
|
26212
26251
|
:param _CloudLogId: 流日志存储ID。
|
26213
26252
|
:type CloudLogId: str
|
26214
|
-
:param _CloudLogState: 流日志存储ID状态。
|
26253
|
+
:param _CloudLogState: 流日志存储ID状态。SUCCESS(成功),DELETED(删除)
|
26215
26254
|
:type CloudLogState: str
|
26216
|
-
:param _OrderField: 按某个字段排序,支持字段:flowLogName,createTime,默认按
|
26255
|
+
:param _OrderField: 按某个字段排序,支持字段:flowLogName,createTime,默认按createTime。
|
26217
26256
|
:type OrderField: str
|
26218
26257
|
:param _OrderDirection: 升序(ASC)还是降序(DESC),默认:DESC。
|
26219
26258
|
:type OrderDirection: str
|
26220
26259
|
:param _Offset: 偏移量,默认为0。
|
26221
26260
|
:type Offset: int
|
26222
|
-
:param _Limit: 每页行数,默认为10。
|
26261
|
+
:param _Limit: 每页行数,默认为10。范围1-100。
|
26223
26262
|
:type Limit: int
|
26224
26263
|
:param _Filters: 过滤条件,参数不支持同时指定FlowLogId和Filters。
|
26225
26264
|
<li>tag-key - String -是否必填:否- (过滤条件)按照标签键进行过滤。</li>
|
@@ -26245,7 +26284,7 @@ class DescribeFlowLogsRequest(AbstractModel):
|
|
26245
26284
|
|
26246
26285
|
@property
|
26247
26286
|
def VpcId(self):
|
26248
|
-
"""
|
26287
|
+
"""私用网络唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/1108/43663)接口获取。
|
26249
26288
|
:rtype: str
|
26250
26289
|
"""
|
26251
26290
|
return self._VpcId
|
@@ -26256,7 +26295,7 @@ class DescribeFlowLogsRequest(AbstractModel):
|
|
26256
26295
|
|
26257
26296
|
@property
|
26258
26297
|
def FlowLogId(self):
|
26259
|
-
"""流日志唯一ID
|
26298
|
+
"""流日志唯一ID。可通过[CreateFlowLog](https://cloud.tencent.com/document/product/215/35015)接口创建。
|
26260
26299
|
:rtype: str
|
26261
26300
|
"""
|
26262
26301
|
return self._FlowLogId
|
@@ -26278,7 +26317,8 @@ class DescribeFlowLogsRequest(AbstractModel):
|
|
26278
26317
|
|
26279
26318
|
@property
|
26280
26319
|
def ResourceType(self):
|
26281
|
-
"""
|
26320
|
+
"""流日志所属资源类型:VPC(私有网络),SUBNET(子网),NETWORKINTERFACE(网卡),CCN(云联网),NAT(网络地址转化),DCG(专线网关)。
|
26321
|
+
|
26282
26322
|
:rtype: str
|
26283
26323
|
"""
|
26284
26324
|
return self._ResourceType
|
@@ -26300,7 +26340,7 @@ class DescribeFlowLogsRequest(AbstractModel):
|
|
26300
26340
|
|
26301
26341
|
@property
|
26302
26342
|
def TrafficType(self):
|
26303
|
-
"""流日志采集类型,ACCEPT
|
26343
|
+
"""流日志采集类型,ACCEPT(允许),REJECT(拒绝),ALL(全部)。
|
26304
26344
|
:rtype: str
|
26305
26345
|
"""
|
26306
26346
|
return self._TrafficType
|
@@ -26322,7 +26362,7 @@ class DescribeFlowLogsRequest(AbstractModel):
|
|
26322
26362
|
|
26323
26363
|
@property
|
26324
26364
|
def CloudLogState(self):
|
26325
|
-
"""流日志存储ID状态。
|
26365
|
+
"""流日志存储ID状态。SUCCESS(成功),DELETED(删除)
|
26326
26366
|
:rtype: str
|
26327
26367
|
"""
|
26328
26368
|
return self._CloudLogState
|
@@ -26333,7 +26373,7 @@ class DescribeFlowLogsRequest(AbstractModel):
|
|
26333
26373
|
|
26334
26374
|
@property
|
26335
26375
|
def OrderField(self):
|
26336
|
-
"""按某个字段排序,支持字段:flowLogName,createTime,默认按
|
26376
|
+
"""按某个字段排序,支持字段:flowLogName,createTime,默认按createTime。
|
26337
26377
|
:rtype: str
|
26338
26378
|
"""
|
26339
26379
|
return self._OrderField
|
@@ -26366,7 +26406,7 @@ class DescribeFlowLogsRequest(AbstractModel):
|
|
26366
26406
|
|
26367
26407
|
@property
|
26368
26408
|
def Limit(self):
|
26369
|
-
"""每页行数,默认为10。
|
26409
|
+
"""每页行数,默认为10。范围1-100。
|
26370
26410
|
:rtype: int
|
26371
26411
|
"""
|
26372
26412
|
return self._Limit
|
@@ -27574,6 +27614,90 @@ class DescribeIPv6AddressesResponse(AbstractModel):
|
|
27574
27614
|
self._RequestId = params.get("RequestId")
|
27575
27615
|
|
27576
27616
|
|
27617
|
+
class DescribeInstanceJumboRequest(AbstractModel):
|
27618
|
+
"""DescribeInstanceJumbo请求参数结构体
|
27619
|
+
|
27620
|
+
"""
|
27621
|
+
|
27622
|
+
def __init__(self):
|
27623
|
+
r"""
|
27624
|
+
:param _InstanceIds: CVM实例ID列表。限制每次i最多查询10个实例。
|
27625
|
+
:type InstanceIds: list of str
|
27626
|
+
"""
|
27627
|
+
self._InstanceIds = None
|
27628
|
+
|
27629
|
+
@property
|
27630
|
+
def InstanceIds(self):
|
27631
|
+
"""CVM实例ID列表。限制每次i最多查询10个实例。
|
27632
|
+
:rtype: list of str
|
27633
|
+
"""
|
27634
|
+
return self._InstanceIds
|
27635
|
+
|
27636
|
+
@InstanceIds.setter
|
27637
|
+
def InstanceIds(self, InstanceIds):
|
27638
|
+
self._InstanceIds = InstanceIds
|
27639
|
+
|
27640
|
+
|
27641
|
+
def _deserialize(self, params):
|
27642
|
+
self._InstanceIds = params.get("InstanceIds")
|
27643
|
+
memeber_set = set(params.keys())
|
27644
|
+
for name, value in vars(self).items():
|
27645
|
+
property_name = name[1:]
|
27646
|
+
if property_name in memeber_set:
|
27647
|
+
memeber_set.remove(property_name)
|
27648
|
+
if len(memeber_set) > 0:
|
27649
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
27650
|
+
|
27651
|
+
|
27652
|
+
|
27653
|
+
class DescribeInstanceJumboResponse(AbstractModel):
|
27654
|
+
"""DescribeInstanceJumbo返回参数结构体
|
27655
|
+
|
27656
|
+
"""
|
27657
|
+
|
27658
|
+
def __init__(self):
|
27659
|
+
r"""
|
27660
|
+
:param _InstanceJumboSet: 云服务器巨帧状态
|
27661
|
+
:type InstanceJumboSet: list of InstanceJumbo
|
27662
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
27663
|
+
:type RequestId: str
|
27664
|
+
"""
|
27665
|
+
self._InstanceJumboSet = None
|
27666
|
+
self._RequestId = None
|
27667
|
+
|
27668
|
+
@property
|
27669
|
+
def InstanceJumboSet(self):
|
27670
|
+
"""云服务器巨帧状态
|
27671
|
+
:rtype: list of InstanceJumbo
|
27672
|
+
"""
|
27673
|
+
return self._InstanceJumboSet
|
27674
|
+
|
27675
|
+
@InstanceJumboSet.setter
|
27676
|
+
def InstanceJumboSet(self, InstanceJumboSet):
|
27677
|
+
self._InstanceJumboSet = InstanceJumboSet
|
27678
|
+
|
27679
|
+
@property
|
27680
|
+
def RequestId(self):
|
27681
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
27682
|
+
:rtype: str
|
27683
|
+
"""
|
27684
|
+
return self._RequestId
|
27685
|
+
|
27686
|
+
@RequestId.setter
|
27687
|
+
def RequestId(self, RequestId):
|
27688
|
+
self._RequestId = RequestId
|
27689
|
+
|
27690
|
+
|
27691
|
+
def _deserialize(self, params):
|
27692
|
+
if params.get("InstanceJumboSet") is not None:
|
27693
|
+
self._InstanceJumboSet = []
|
27694
|
+
for item in params.get("InstanceJumboSet"):
|
27695
|
+
obj = InstanceJumbo()
|
27696
|
+
obj._deserialize(item)
|
27697
|
+
self._InstanceJumboSet.append(obj)
|
27698
|
+
self._RequestId = params.get("RequestId")
|
27699
|
+
|
27700
|
+
|
27577
27701
|
class DescribeIp6AddressesRequest(AbstractModel):
|
27578
27702
|
"""DescribeIp6Addresses请求参数结构体
|
27579
27703
|
|
@@ -28187,8 +28311,7 @@ class DescribeLocalGatewayRequest(AbstractModel):
|
|
28187
28311
|
|
28188
28312
|
def __init__(self):
|
28189
28313
|
r"""
|
28190
|
-
:param _Filters:
|
28191
|
-
vpc-id:按照VPCID过滤,local-gateway-name:按照本地网关名称过滤,名称支持模糊搜索,local-gateway-id:按照本地网关实例ID过滤,cdc-id:按照cdc实例ID过滤查询。
|
28314
|
+
:param _Filters: 支持的过滤条件如下:\n<li>vpc-id:按照VPCID过滤。</li>\n<li>local-gateway-name:本地网关名称,支持模糊查询。</li>\n<li>local-gateway-id:本地网关实例ID。</li>\n<li>cdc-id:cdc实例ID。</li>
|
28192
28315
|
:type Filters: list of Filter
|
28193
28316
|
:param _Offset: 偏移量,默认为0。关于`Offset`的更进一步介绍请参考 API [简介](https://cloud.tencent.com/document/api/213/11646)中的相关小节。
|
28194
28317
|
:type Offset: int
|
@@ -28201,8 +28324,7 @@ vpc-id:按照VPCID过滤,local-gateway-name:按照本地网关名称过滤
|
|
28201
28324
|
|
28202
28325
|
@property
|
28203
28326
|
def Filters(self):
|
28204
|
-
"""
|
28205
|
-
vpc-id:按照VPCID过滤,local-gateway-name:按照本地网关名称过滤,名称支持模糊搜索,local-gateway-id:按照本地网关实例ID过滤,cdc-id:按照cdc实例ID过滤查询。
|
28327
|
+
"""支持的过滤条件如下:\n<li>vpc-id:按照VPCID过滤。</li>\n<li>local-gateway-name:本地网关名称,支持模糊查询。</li>\n<li>local-gateway-id:本地网关实例ID。</li>\n<li>cdc-id:cdc实例ID。</li>
|
28206
28328
|
:rtype: list of Filter
|
28207
28329
|
"""
|
28208
28330
|
return self._Filters
|
@@ -30004,6 +30126,7 @@ class DescribeNetworkInterfacesRequest(AbstractModel):
|
|
30004
30126
|
<li>eni-qos - String -是否必填:否- (过滤条件)按照网卡服务质量进行过滤。PT(云金)、AU(云银)、AG(云铜)、DEFAULT(默认)。</li>
|
30005
30127
|
<li>address-ipv6 - String - 是否必填:否 -(过滤条件)内网IPv6地址过滤,支持多ipv6地址查询,如果和address-ip一起使用取交集。</li>
|
30006
30128
|
<li>public-address-ip - String - (过滤条件)公网IPv4地址,精确匹配。</li>
|
30129
|
+
<li>address-type - String - (过滤条件)IPv6 Cidr 的类型,精确匹配。`GUA`(全球单播地址), `ULA`(唯一本地地址)。</li>
|
30007
30130
|
:type Filters: list of Filter
|
30008
30131
|
:param _Offset: 偏移量,默认为0。
|
30009
30132
|
:type Offset: int
|
@@ -30051,6 +30174,7 @@ class DescribeNetworkInterfacesRequest(AbstractModel):
|
|
30051
30174
|
<li>eni-qos - String -是否必填:否- (过滤条件)按照网卡服务质量进行过滤。PT(云金)、AU(云银)、AG(云铜)、DEFAULT(默认)。</li>
|
30052
30175
|
<li>address-ipv6 - String - 是否必填:否 -(过滤条件)内网IPv6地址过滤,支持多ipv6地址查询,如果和address-ip一起使用取交集。</li>
|
30053
30176
|
<li>public-address-ip - String - (过滤条件)公网IPv4地址,精确匹配。</li>
|
30177
|
+
<li>address-type - String - (过滤条件)IPv6 Cidr 的类型,精确匹配。`GUA`(全球单播地址), `ULA`(唯一本地地址)。</li>
|
30054
30178
|
:rtype: list of Filter
|
30055
30179
|
"""
|
30056
30180
|
return self._Filters
|
@@ -34202,6 +34326,7 @@ class DescribeSubnetsRequest(AbstractModel):
|
|
34202
34326
|
<li>is-cdc-subnet - String - 是否必填:否 - (过滤条件)按照是否是cdc子网进行过滤。取值:“0”-非cdc子网,“1”--cdc子网</li>
|
34203
34327
|
<li>ipv6-cidr-block - String - (过滤条件)IPv6子网网段,形如: 2402:4e00:1717:8700::/64 。</li>
|
34204
34328
|
<li>isp-type - String - (过滤条件)运营商类型,形如: BGP 。</li>
|
34329
|
+
<li>address-type - String - (过滤条件)IPv6 Cidr 的类型,精确匹配。`GUA`(全球单播地址), `ULA`(唯一本地地址)。</li>
|
34205
34330
|
:type Filters: list of Filter
|
34206
34331
|
:param _Offset: 偏移量,默认为0。
|
34207
34332
|
:type Offset: str
|
@@ -34240,6 +34365,7 @@ class DescribeSubnetsRequest(AbstractModel):
|
|
34240
34365
|
<li>is-cdc-subnet - String - 是否必填:否 - (过滤条件)按照是否是cdc子网进行过滤。取值:“0”-非cdc子网,“1”--cdc子网</li>
|
34241
34366
|
<li>ipv6-cidr-block - String - (过滤条件)IPv6子网网段,形如: 2402:4e00:1717:8700::/64 。</li>
|
34242
34367
|
<li>isp-type - String - (过滤条件)运营商类型,形如: BGP 。</li>
|
34368
|
+
<li>address-type - String - (过滤条件)IPv6 Cidr 的类型,精确匹配。`GUA`(全球单播地址), `ULA`(唯一本地地址)。</li>
|
34243
34369
|
:rtype: list of Filter
|
34244
34370
|
"""
|
34245
34371
|
return self._Filters
|
@@ -36633,6 +36759,7 @@ class DescribeVpcsRequest(AbstractModel):
|
|
36633
36759
|
**说明:**若同一个过滤条件(Filter)存在多个Values,则同一Filter下Values间的关系为逻辑或(OR)关系;若存在多个过滤条件(Filter),Filter之间的关系为逻辑与(AND)关系。
|
36634
36760
|
<li>ipv6-cidr-block - String - (过滤条件)IPv6子网网段,形如: 2402:4e00:1717:8700::/64 。</li>
|
36635
36761
|
<li>isp-type - String - (过滤条件)运营商类型,形如: BGP 取值范围:'BGP'-默认, 'CMCC'-中国移动, 'CTCC'-中国电信, 'CUCC'-中国联通。</li>
|
36762
|
+
<li>address-type - String - (过滤条件)IPv6 Cidr 的类型,精确匹配。`GUA`(全球单播地址), `ULA`(唯一本地地址)。</li>
|
36636
36763
|
:type Filters: list of Filter
|
36637
36764
|
:param _Offset: 偏移量,默认为0。
|
36638
36765
|
:type Offset: str
|
@@ -36668,6 +36795,7 @@ class DescribeVpcsRequest(AbstractModel):
|
|
36668
36795
|
**说明:**若同一个过滤条件(Filter)存在多个Values,则同一Filter下Values间的关系为逻辑或(OR)关系;若存在多个过滤条件(Filter),Filter之间的关系为逻辑与(AND)关系。
|
36669
36796
|
<li>ipv6-cidr-block - String - (过滤条件)IPv6子网网段,形如: 2402:4e00:1717:8700::/64 。</li>
|
36670
36797
|
<li>isp-type - String - (过滤条件)运营商类型,形如: BGP 取值范围:'BGP'-默认, 'CMCC'-中国移动, 'CTCC'-中国电信, 'CUCC'-中国联通。</li>
|
36798
|
+
<li>address-type - String - (过滤条件)IPv6 Cidr 的类型,精确匹配。`GUA`(全球单播地址), `ULA`(唯一本地地址)。</li>
|
36671
36799
|
:rtype: list of Filter
|
36672
36800
|
"""
|
36673
36801
|
return self._Filters
|
@@ -39190,14 +39318,14 @@ class DisableFlowLogsRequest(AbstractModel):
|
|
39190
39318
|
|
39191
39319
|
def __init__(self):
|
39192
39320
|
r"""
|
39193
|
-
:param _FlowLogIds: 流日志Id
|
39321
|
+
:param _FlowLogIds: 流日志Id。可通过[CreateFlowLog](https://cloud.tencent.com/document/product/215/35015)接口创建;可通过[DescribeFlowLogs](https://cloud.tencent.com/document/product/215/35012)接口获取。
|
39194
39322
|
:type FlowLogIds: list of str
|
39195
39323
|
"""
|
39196
39324
|
self._FlowLogIds = None
|
39197
39325
|
|
39198
39326
|
@property
|
39199
39327
|
def FlowLogIds(self):
|
39200
|
-
"""流日志Id
|
39328
|
+
"""流日志Id。可通过[CreateFlowLog](https://cloud.tencent.com/document/product/215/35015)接口创建;可通过[DescribeFlowLogs](https://cloud.tencent.com/document/product/215/35012)接口获取。
|
39201
39329
|
:rtype: list of str
|
39202
39330
|
"""
|
39203
39331
|
return self._FlowLogIds
|
@@ -40065,9 +40193,10 @@ class DisassociateNetworkInterfaceSecurityGroupsRequest(AbstractModel):
|
|
40065
40193
|
|
40066
40194
|
def __init__(self):
|
40067
40195
|
r"""
|
40068
|
-
:param _NetworkInterfaceIds: 弹性网卡实例ID。形如:eni-pxir56ns。每次请求的实例的上限为100
|
40196
|
+
:param _NetworkInterfaceIds: 弹性网卡实例ID。形如:eni-pxir56ns。每次请求的实例的上限为100。可通过[DescribeNetworkInterfaces](https://cloud.tencent.com/document/product/215/15817)接口获取。
|
40197
|
+
|
40069
40198
|
:type NetworkInterfaceIds: list of str
|
40070
|
-
:param _SecurityGroupIds: 安全组实例ID,例如:sg-33ocnj9n,可通过DescribeSecurityGroups
|
40199
|
+
:param _SecurityGroupIds: 安全组实例ID,例如:sg-33ocnj9n,可通过[DescribeSecurityGroups](https://cloud.tencent.com/document/product/215/15808)接口获取。每次请求的实例的上限为100。
|
40071
40200
|
:type SecurityGroupIds: list of str
|
40072
40201
|
"""
|
40073
40202
|
self._NetworkInterfaceIds = None
|
@@ -40075,7 +40204,8 @@ class DisassociateNetworkInterfaceSecurityGroupsRequest(AbstractModel):
|
|
40075
40204
|
|
40076
40205
|
@property
|
40077
40206
|
def NetworkInterfaceIds(self):
|
40078
|
-
"""弹性网卡实例ID。形如:eni-pxir56ns。每次请求的实例的上限为100
|
40207
|
+
"""弹性网卡实例ID。形如:eni-pxir56ns。每次请求的实例的上限为100。可通过[DescribeNetworkInterfaces](https://cloud.tencent.com/document/product/215/15817)接口获取。
|
40208
|
+
|
40079
40209
|
:rtype: list of str
|
40080
40210
|
"""
|
40081
40211
|
return self._NetworkInterfaceIds
|
@@ -40086,7 +40216,7 @@ class DisassociateNetworkInterfaceSecurityGroupsRequest(AbstractModel):
|
|
40086
40216
|
|
40087
40217
|
@property
|
40088
40218
|
def SecurityGroupIds(self):
|
40089
|
-
"""安全组实例ID,例如:sg-33ocnj9n,可通过DescribeSecurityGroups
|
40219
|
+
"""安全组实例ID,例如:sg-33ocnj9n,可通过[DescribeSecurityGroups](https://cloud.tencent.com/document/product/215/15808)接口获取。每次请求的实例的上限为100。
|
40090
40220
|
:rtype: list of str
|
40091
40221
|
"""
|
40092
40222
|
return self._SecurityGroupIds
|
@@ -40587,14 +40717,14 @@ class EnableFlowLogsRequest(AbstractModel):
|
|
40587
40717
|
|
40588
40718
|
def __init__(self):
|
40589
40719
|
r"""
|
40590
|
-
:param _FlowLogIds: 流日志Id
|
40720
|
+
:param _FlowLogIds: 流日志Id。可通过[CreateFlowLog](https://cloud.tencent.com/document/product/215/35015)接口创建;可通过[DescribeFlowLogs](https://cloud.tencent.com/document/product/215/35012)接口获取。
|
40591
40721
|
:type FlowLogIds: list of str
|
40592
40722
|
"""
|
40593
40723
|
self._FlowLogIds = None
|
40594
40724
|
|
40595
40725
|
@property
|
40596
40726
|
def FlowLogIds(self):
|
40597
|
-
"""流日志Id
|
40727
|
+
"""流日志Id。可通过[CreateFlowLog](https://cloud.tencent.com/document/product/215/35015)接口创建;可通过[DescribeFlowLogs](https://cloud.tencent.com/document/product/215/35012)接口获取。
|
40598
40728
|
:rtype: list of str
|
40599
40729
|
"""
|
40600
40730
|
return self._FlowLogIds
|
@@ -42524,19 +42654,14 @@ class HaVip(AbstractModel):
|
|
42524
42654
|
:param _Business: 使用havip的业务标识。
|
42525
42655
|
:type Business: str
|
42526
42656
|
:param _HaVipAssociationSet: `HAVIP`的飘移范围。
|
42527
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42528
42657
|
:type HaVipAssociationSet: list of HaVipAssociation
|
42529
42658
|
:param _CheckAssociate: 是否开启`HAVIP`的飘移范围校验。
|
42530
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42531
42659
|
:type CheckAssociate: bool
|
42532
42660
|
:param _CdcId: CDC实例ID。
|
42533
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42534
42661
|
:type CdcId: str
|
42535
42662
|
:param _FlushedTime: HAVIP 刷新时间。该参数只作为出参数。以下场景会触发 FlushTime 被刷新:1)子机发出免费 ARP 触发 HAVIP 漂移;2)手动HAVIP解绑网卡; 没有更新时默认值:0000-00-00 00:00:00
|
42536
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42537
42663
|
:type FlushedTime: str
|
42538
42664
|
:param _TagSet: 标签键值对。
|
42539
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42540
42665
|
:type TagSet: list of Tag
|
42541
42666
|
"""
|
42542
42667
|
self._HaVipId = None
|
@@ -42682,7 +42807,6 @@ class HaVip(AbstractModel):
|
|
42682
42807
|
@property
|
42683
42808
|
def HaVipAssociationSet(self):
|
42684
42809
|
"""`HAVIP`的飘移范围。
|
42685
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42686
42810
|
:rtype: list of HaVipAssociation
|
42687
42811
|
"""
|
42688
42812
|
return self._HaVipAssociationSet
|
@@ -42694,7 +42818,6 @@ class HaVip(AbstractModel):
|
|
42694
42818
|
@property
|
42695
42819
|
def CheckAssociate(self):
|
42696
42820
|
"""是否开启`HAVIP`的飘移范围校验。
|
42697
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42698
42821
|
:rtype: bool
|
42699
42822
|
"""
|
42700
42823
|
return self._CheckAssociate
|
@@ -42706,7 +42829,6 @@ class HaVip(AbstractModel):
|
|
42706
42829
|
@property
|
42707
42830
|
def CdcId(self):
|
42708
42831
|
"""CDC实例ID。
|
42709
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42710
42832
|
:rtype: str
|
42711
42833
|
"""
|
42712
42834
|
return self._CdcId
|
@@ -42718,7 +42840,6 @@ class HaVip(AbstractModel):
|
|
42718
42840
|
@property
|
42719
42841
|
def FlushedTime(self):
|
42720
42842
|
"""HAVIP 刷新时间。该参数只作为出参数。以下场景会触发 FlushTime 被刷新:1)子机发出免费 ARP 触发 HAVIP 漂移;2)手动HAVIP解绑网卡; 没有更新时默认值:0000-00-00 00:00:00
|
42721
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42722
42843
|
:rtype: str
|
42723
42844
|
"""
|
42724
42845
|
return self._FlushedTime
|
@@ -42730,7 +42851,6 @@ class HaVip(AbstractModel):
|
|
42730
42851
|
@property
|
42731
42852
|
def TagSet(self):
|
42732
42853
|
"""标签键值对。
|
42733
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42734
42854
|
:rtype: list of Tag
|
42735
42855
|
"""
|
42736
42856
|
return self._TagSet
|
@@ -43723,6 +43843,42 @@ class IPSECOptionsSpecification(AbstractModel):
|
|
43723
43843
|
|
43724
43844
|
|
43725
43845
|
|
43846
|
+
class ISPIPv6CidrBlock(AbstractModel):
|
43847
|
+
"""返回多运营商IPv6 Cidr Block
|
43848
|
+
|
43849
|
+
"""
|
43850
|
+
|
43851
|
+
def __init__(self):
|
43852
|
+
r"""
|
43853
|
+
:param _AddressType: IPv6 Cidr 的类型:`GUA`(全球单播地址), `ULA`(唯一本地地址)
|
43854
|
+
:type AddressType: str
|
43855
|
+
"""
|
43856
|
+
self._AddressType = None
|
43857
|
+
|
43858
|
+
@property
|
43859
|
+
def AddressType(self):
|
43860
|
+
"""IPv6 Cidr 的类型:`GUA`(全球单播地址), `ULA`(唯一本地地址)
|
43861
|
+
:rtype: str
|
43862
|
+
"""
|
43863
|
+
return self._AddressType
|
43864
|
+
|
43865
|
+
@AddressType.setter
|
43866
|
+
def AddressType(self, AddressType):
|
43867
|
+
self._AddressType = AddressType
|
43868
|
+
|
43869
|
+
|
43870
|
+
def _deserialize(self, params):
|
43871
|
+
self._AddressType = params.get("AddressType")
|
43872
|
+
memeber_set = set(params.keys())
|
43873
|
+
for name, value in vars(self).items():
|
43874
|
+
property_name = name[1:]
|
43875
|
+
if property_name in memeber_set:
|
43876
|
+
memeber_set.remove(property_name)
|
43877
|
+
if len(memeber_set) > 0:
|
43878
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
43879
|
+
|
43880
|
+
|
43881
|
+
|
43726
43882
|
class InquirePriceCreateDirectConnectGatewayRequest(AbstractModel):
|
43727
43883
|
"""InquirePriceCreateDirectConnectGateway请求参数结构体
|
43728
43884
|
|
@@ -44705,6 +44861,57 @@ class InstanceChargePrepaid(AbstractModel):
|
|
44705
44861
|
|
44706
44862
|
|
44707
44863
|
|
44864
|
+
class InstanceJumbo(AbstractModel):
|
44865
|
+
"""云服务器巨帧状态
|
44866
|
+
|
44867
|
+
"""
|
44868
|
+
|
44869
|
+
def __init__(self):
|
44870
|
+
r"""
|
44871
|
+
:param _InstanceId: 实例ID。
|
44872
|
+
:type InstanceId: str
|
44873
|
+
:param _JumboState: 实例是否支持巨帧。
|
44874
|
+
:type JumboState: bool
|
44875
|
+
"""
|
44876
|
+
self._InstanceId = None
|
44877
|
+
self._JumboState = None
|
44878
|
+
|
44879
|
+
@property
|
44880
|
+
def InstanceId(self):
|
44881
|
+
"""实例ID。
|
44882
|
+
:rtype: str
|
44883
|
+
"""
|
44884
|
+
return self._InstanceId
|
44885
|
+
|
44886
|
+
@InstanceId.setter
|
44887
|
+
def InstanceId(self, InstanceId):
|
44888
|
+
self._InstanceId = InstanceId
|
44889
|
+
|
44890
|
+
@property
|
44891
|
+
def JumboState(self):
|
44892
|
+
"""实例是否支持巨帧。
|
44893
|
+
:rtype: bool
|
44894
|
+
"""
|
44895
|
+
return self._JumboState
|
44896
|
+
|
44897
|
+
@JumboState.setter
|
44898
|
+
def JumboState(self, JumboState):
|
44899
|
+
self._JumboState = JumboState
|
44900
|
+
|
44901
|
+
|
44902
|
+
def _deserialize(self, params):
|
44903
|
+
self._InstanceId = params.get("InstanceId")
|
44904
|
+
self._JumboState = params.get("JumboState")
|
44905
|
+
memeber_set = set(params.keys())
|
44906
|
+
for name, value in vars(self).items():
|
44907
|
+
property_name = name[1:]
|
44908
|
+
if property_name in memeber_set:
|
44909
|
+
memeber_set.remove(property_name)
|
44910
|
+
if len(memeber_set) > 0:
|
44911
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
44912
|
+
|
44913
|
+
|
44914
|
+
|
44708
44915
|
class InstanceStatistic(AbstractModel):
|
44709
44916
|
"""用于描述实例的统计信息
|
44710
44917
|
|
@@ -45676,7 +45883,7 @@ class Ipv6Address(AbstractModel):
|
|
45676
45883
|
:type State: str
|
45677
45884
|
:param _PublicIpAddress: 如果 IPv6地址是 ULA 类型,绑定的公网IP地址。
|
45678
45885
|
:type PublicIpAddress: str
|
45679
|
-
:param _AddressType: `IPv6`地址的类型: `GUA`(全球单播地址), `
|
45886
|
+
:param _AddressType: `IPv6`地址的类型: `GUA`(全球单播地址), `ULA`(唯一本地地址)
|
45680
45887
|
:type AddressType: str
|
45681
45888
|
"""
|
45682
45889
|
self._Address = None
|
@@ -45771,7 +45978,7 @@ class Ipv6Address(AbstractModel):
|
|
45771
45978
|
|
45772
45979
|
@property
|
45773
45980
|
def AddressType(self):
|
45774
|
-
"""`IPv6`地址的类型: `GUA`(全球单播地址), `
|
45981
|
+
"""`IPv6`地址的类型: `GUA`(全球单播地址), `ULA`(唯一本地地址)
|
45775
45982
|
:rtype: str
|
45776
45983
|
"""
|
45777
45984
|
return self._AddressType
|
@@ -46567,9 +46774,11 @@ class MigratePrivateIpAddressRequest(AbstractModel):
|
|
46567
46774
|
|
46568
46775
|
def __init__(self):
|
46569
46776
|
r"""
|
46570
|
-
:param _SourceNetworkInterfaceId: 当内网IP绑定的弹性网卡实例ID,例如:eni-m6dyj72l
|
46777
|
+
:param _SourceNetworkInterfaceId: 当内网IP绑定的弹性网卡实例ID,例如:eni-m6dyj72l。可通过[DescribeNetworkInterfaces](https://cloud.tencent.com/document/product/215/15817)接口获取。
|
46778
|
+
|
46571
46779
|
:type SourceNetworkInterfaceId: str
|
46572
|
-
:param _DestinationNetworkInterfaceId: 待迁移的目的弹性网卡实例ID
|
46780
|
+
:param _DestinationNetworkInterfaceId: 待迁移的目的弹性网卡实例ID。可通过[DescribeNetworkInterfaces](https://cloud.tencent.com/document/product/215/15817)接口获取。
|
46781
|
+
|
46573
46782
|
:type DestinationNetworkInterfaceId: str
|
46574
46783
|
:param _PrivateIpAddress: 迁移的内网IP地址,例如:10.0.0.6。
|
46575
46784
|
:type PrivateIpAddress: str
|
@@ -46580,7 +46789,8 @@ class MigratePrivateIpAddressRequest(AbstractModel):
|
|
46580
46789
|
|
46581
46790
|
@property
|
46582
46791
|
def SourceNetworkInterfaceId(self):
|
46583
|
-
"""当内网IP绑定的弹性网卡实例ID,例如:eni-m6dyj72l
|
46792
|
+
"""当内网IP绑定的弹性网卡实例ID,例如:eni-m6dyj72l。可通过[DescribeNetworkInterfaces](https://cloud.tencent.com/document/product/215/15817)接口获取。
|
46793
|
+
|
46584
46794
|
:rtype: str
|
46585
46795
|
"""
|
46586
46796
|
return self._SourceNetworkInterfaceId
|
@@ -46591,7 +46801,8 @@ class MigratePrivateIpAddressRequest(AbstractModel):
|
|
46591
46801
|
|
46592
46802
|
@property
|
46593
46803
|
def DestinationNetworkInterfaceId(self):
|
46594
|
-
"""待迁移的目的弹性网卡实例ID
|
46804
|
+
"""待迁移的目的弹性网卡实例ID。可通过[DescribeNetworkInterfaces](https://cloud.tencent.com/document/product/215/15817)接口获取。
|
46805
|
+
|
46595
46806
|
:rtype: str
|
46596
46807
|
"""
|
46597
46808
|
return self._DestinationNetworkInterfaceId
|
@@ -48282,13 +48493,13 @@ class ModifyFlowLogAttributeRequest(AbstractModel):
|
|
48282
48493
|
|
48283
48494
|
def __init__(self):
|
48284
48495
|
r"""
|
48285
|
-
:param _FlowLogId: 流日志唯一ID
|
48496
|
+
:param _FlowLogId: 流日志唯一ID。可通过[CreateFlowLog](https://cloud.tencent.com/document/product/215/35015)接口创建;可通过[DescribeFlowLogs](https://cloud.tencent.com/document/product/215/35012)接口获取。
|
48286
48497
|
:type FlowLogId: str
|
48287
|
-
:param _VpcId:
|
48498
|
+
:param _VpcId: 私用网络唯一ID。修改云联网流日志属性时可不填,其他流日志类型必填。
|
48288
48499
|
:type VpcId: str
|
48289
|
-
:param _FlowLogName:
|
48500
|
+
:param _FlowLogName: 流日志实例名字。长度为不超过60字节。
|
48290
48501
|
:type FlowLogName: str
|
48291
|
-
:param _FlowLogDescription:
|
48502
|
+
:param _FlowLogDescription: 流日志实例描述。长度为不超过512字节。
|
48292
48503
|
:type FlowLogDescription: str
|
48293
48504
|
"""
|
48294
48505
|
self._FlowLogId = None
|
@@ -48298,7 +48509,7 @@ class ModifyFlowLogAttributeRequest(AbstractModel):
|
|
48298
48509
|
|
48299
48510
|
@property
|
48300
48511
|
def FlowLogId(self):
|
48301
|
-
"""流日志唯一ID
|
48512
|
+
"""流日志唯一ID。可通过[CreateFlowLog](https://cloud.tencent.com/document/product/215/35015)接口创建;可通过[DescribeFlowLogs](https://cloud.tencent.com/document/product/215/35012)接口获取。
|
48302
48513
|
:rtype: str
|
48303
48514
|
"""
|
48304
48515
|
return self._FlowLogId
|
@@ -48309,7 +48520,7 @@ class ModifyFlowLogAttributeRequest(AbstractModel):
|
|
48309
48520
|
|
48310
48521
|
@property
|
48311
48522
|
def VpcId(self):
|
48312
|
-
"""
|
48523
|
+
"""私用网络唯一ID。修改云联网流日志属性时可不填,其他流日志类型必填。
|
48313
48524
|
:rtype: str
|
48314
48525
|
"""
|
48315
48526
|
return self._VpcId
|
@@ -48320,7 +48531,7 @@ class ModifyFlowLogAttributeRequest(AbstractModel):
|
|
48320
48531
|
|
48321
48532
|
@property
|
48322
48533
|
def FlowLogName(self):
|
48323
|
-
"""
|
48534
|
+
"""流日志实例名字。长度为不超过60字节。
|
48324
48535
|
:rtype: str
|
48325
48536
|
"""
|
48326
48537
|
return self._FlowLogName
|
@@ -48331,7 +48542,7 @@ class ModifyFlowLogAttributeRequest(AbstractModel):
|
|
48331
48542
|
|
48332
48543
|
@property
|
48333
48544
|
def FlowLogDescription(self):
|
48334
|
-
"""
|
48545
|
+
"""流日志实例描述。长度为不超过512字节。
|
48335
48546
|
:rtype: str
|
48336
48547
|
"""
|
48337
48548
|
return self._FlowLogDescription
|
@@ -64612,10 +64823,8 @@ class Subnet(AbstractModel):
|
|
64612
64823
|
:param _TagSet: 标签键值对。
|
64613
64824
|
:type TagSet: list of Tag
|
64614
64825
|
:param _CdcId: CDC实例ID。
|
64615
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
64616
64826
|
:type CdcId: str
|
64617
64827
|
:param _IsCdcSubnet: 是否是CDC所属子网。0:否 1:是
|
64618
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
64619
64828
|
:type IsCdcSubnet: int
|
64620
64829
|
"""
|
64621
64830
|
self._VpcId = None
|
@@ -64804,7 +65013,6 @@ class Subnet(AbstractModel):
|
|
64804
65013
|
@property
|
64805
65014
|
def CdcId(self):
|
64806
65015
|
"""CDC实例ID。
|
64807
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
64808
65016
|
:rtype: str
|
64809
65017
|
"""
|
64810
65018
|
return self._CdcId
|
@@ -64816,7 +65024,6 @@ class Subnet(AbstractModel):
|
|
64816
65024
|
@property
|
64817
65025
|
def IsCdcSubnet(self):
|
64818
65026
|
"""是否是CDC所属子网。0:否 1:是
|
64819
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
64820
65027
|
:rtype: int
|
64821
65028
|
"""
|
64822
65029
|
return self._IsCdcSubnet
|
@@ -67416,6 +67623,9 @@ class Vpc(AbstractModel):
|
|
67416
67623
|
:param _AssistantCidrSet: 辅助CIDR
|
67417
67624
|
注意:此字段可能返回 null,表示取不到有效值。
|
67418
67625
|
:type AssistantCidrSet: list of AssistantCidr
|
67626
|
+
:param _Ipv6CidrBlockSet: 返回多运营商IPv6 Cidr Block
|
67627
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
67628
|
+
:type Ipv6CidrBlockSet: list of ISPIPv6CidrBlock
|
67419
67629
|
"""
|
67420
67630
|
self._VpcName = None
|
67421
67631
|
self._VpcId = None
|
@@ -67430,6 +67640,7 @@ class Vpc(AbstractModel):
|
|
67430
67640
|
self._Ipv6CidrBlock = None
|
67431
67641
|
self._TagSet = None
|
67432
67642
|
self._AssistantCidrSet = None
|
67643
|
+
self._Ipv6CidrBlockSet = None
|
67433
67644
|
|
67434
67645
|
@property
|
67435
67646
|
def VpcName(self):
|
@@ -67575,6 +67786,18 @@ class Vpc(AbstractModel):
|
|
67575
67786
|
def AssistantCidrSet(self, AssistantCidrSet):
|
67576
67787
|
self._AssistantCidrSet = AssistantCidrSet
|
67577
67788
|
|
67789
|
+
@property
|
67790
|
+
def Ipv6CidrBlockSet(self):
|
67791
|
+
"""返回多运营商IPv6 Cidr Block
|
67792
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
67793
|
+
:rtype: list of ISPIPv6CidrBlock
|
67794
|
+
"""
|
67795
|
+
return self._Ipv6CidrBlockSet
|
67796
|
+
|
67797
|
+
@Ipv6CidrBlockSet.setter
|
67798
|
+
def Ipv6CidrBlockSet(self, Ipv6CidrBlockSet):
|
67799
|
+
self._Ipv6CidrBlockSet = Ipv6CidrBlockSet
|
67800
|
+
|
67578
67801
|
|
67579
67802
|
def _deserialize(self, params):
|
67580
67803
|
self._VpcName = params.get("VpcName")
|
@@ -67600,6 +67823,12 @@ class Vpc(AbstractModel):
|
|
67600
67823
|
obj = AssistantCidr()
|
67601
67824
|
obj._deserialize(item)
|
67602
67825
|
self._AssistantCidrSet.append(obj)
|
67826
|
+
if params.get("Ipv6CidrBlockSet") is not None:
|
67827
|
+
self._Ipv6CidrBlockSet = []
|
67828
|
+
for item in params.get("Ipv6CidrBlockSet"):
|
67829
|
+
obj = ISPIPv6CidrBlock()
|
67830
|
+
obj._deserialize(item)
|
67831
|
+
self._Ipv6CidrBlockSet.append(obj)
|
67603
67832
|
memeber_set = set(params.keys())
|
67604
67833
|
for name, value in vars(self).items():
|
67605
67834
|
property_name = name[1:]
|