tencentcloud-sdk-python 3.0.1355__py2.py3-none-any.whl → 3.0.1357__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/billing/v20180709/billing_client.py +0 -25
- tencentcloud/billing/v20180709/models.py +0 -512
- tencentcloud/cdb/v20170320/models.py +32 -4
- tencentcloud/cls/v20201016/models.py +40 -5
- tencentcloud/ess/v20201111/ess_client.py +4 -2
- tencentcloud/ess/v20201111/models.py +206 -10
- tencentcloud/essbasic/v20210526/models.py +162 -12
- tencentcloud/gaap/v20180529/models.py +0 -90
- tencentcloud/gs/v20191118/gs_client.py +46 -0
- tencentcloud/gs/v20191118/models.py +463 -0
- tencentcloud/gwlb/v20240906/models.py +20 -0
- tencentcloud/iotexplorer/v20190423/iotexplorer_client.py +23 -0
- tencentcloud/iotexplorer/v20190423/models.py +254 -0
- tencentcloud/iotvideo/v20211125/iotvideo_client.py +23 -0
- tencentcloud/iotvideo/v20211125/models.py +254 -0
- tencentcloud/lkeap/v20240522/lkeap_client.py +24 -1
- tencentcloud/lkeap/v20240522/models.py +64 -0
- tencentcloud/lowcode/v20210108/errorcodes.py +3 -0
- tencentcloud/mna/v20210119/errorcodes.py +0 -36
- tencentcloud/mna/v20210119/mna_client.py +0 -75
- tencentcloud/mna/v20210119/models.py +0 -1002
- tencentcloud/mps/v20190612/models.py +28 -36
- tencentcloud/oceanus/v20190422/models.py +12 -0
- tencentcloud/ocr/v20181119/models.py +2 -2
- tencentcloud/ses/v20201002/models.py +15 -0
- tencentcloud/smop/v20201203/smop_client.py +3 -1
- tencentcloud/taf/v20200210/models.py +0 -270
- tencentcloud/taf/v20200210/taf_client.py +0 -23
- tencentcloud/tat/v20201028/errorcodes.py +6 -0
- tencentcloud/tat/v20201028/models.py +50 -2
- tencentcloud/tcss/v20201101/models.py +83 -8
- tencentcloud/tse/v20201207/models.py +0 -182
- tencentcloud/tsf/v20180326/models.py +12 -282
- tencentcloud/vpc/v20170312/errorcodes.py +3 -0
- tencentcloud/vpc/v20170312/models.py +25 -132
- {tencentcloud_sdk_python-3.0.1355.dist-info → tencentcloud_sdk_python-3.0.1357.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1355.dist-info → tencentcloud_sdk_python-3.0.1357.dist-info}/RECORD +41 -41
- {tencentcloud_sdk_python-3.0.1355.dist-info → tencentcloud_sdk_python-3.0.1357.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1355.dist-info → tencentcloud_sdk_python-3.0.1357.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1355.dist-info → tencentcloud_sdk_python-3.0.1357.dist-info}/top_level.txt +0 -0
@@ -8193,10 +8193,8 @@ class CidrForCcn(AbstractModel):
|
|
8193
8193
|
def __init__(self):
|
8194
8194
|
r"""
|
8195
8195
|
:param _Cidr: local cidr值。
|
8196
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8197
8196
|
:type Cidr: str
|
8198
8197
|
:param _PublishedToVbc: 是否发布到了云联网。
|
8199
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8200
8198
|
:type PublishedToVbc: bool
|
8201
8199
|
"""
|
8202
8200
|
self._Cidr = None
|
@@ -8205,7 +8203,6 @@ class CidrForCcn(AbstractModel):
|
|
8205
8203
|
@property
|
8206
8204
|
def Cidr(self):
|
8207
8205
|
"""local cidr值。
|
8208
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8209
8206
|
:rtype: str
|
8210
8207
|
"""
|
8211
8208
|
return self._Cidr
|
@@ -8217,7 +8214,6 @@ class CidrForCcn(AbstractModel):
|
|
8217
8214
|
@property
|
8218
8215
|
def PublishedToVbc(self):
|
8219
8216
|
"""是否发布到了云联网。
|
8220
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
8221
8217
|
:rtype: bool
|
8222
8218
|
"""
|
8223
8219
|
return self._PublishedToVbc
|
@@ -41651,21 +41647,21 @@ class FlowLog(AbstractModel):
|
|
41651
41647
|
|
41652
41648
|
def __init__(self):
|
41653
41649
|
r"""
|
41654
|
-
:param _VpcId:
|
41650
|
+
:param _VpcId: 私用网络唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/1108/43663)接口获取。
|
41655
41651
|
:type VpcId: str
|
41656
41652
|
:param _FlowLogId: 流日志唯一ID。
|
41657
41653
|
:type FlowLogId: str
|
41658
41654
|
:param _FlowLogName: 流日志实例名字。
|
41659
41655
|
:type FlowLogName: str
|
41660
|
-
:param _ResourceType:
|
41656
|
+
:param _ResourceType: 流日志所属资源类型:VPC(私有网络),SUBNET(子网),NETWORKINTERFACE(网卡),CCN(云联网),NAT(网络地址转化),DCG(专线网关)。
|
41661
41657
|
:type ResourceType: str
|
41662
41658
|
:param _ResourceId: 资源唯一ID。
|
41663
41659
|
:type ResourceId: str
|
41664
|
-
:param _TrafficType: 流日志采集类型,ACCEPT
|
41660
|
+
:param _TrafficType: 流日志采集类型,ACCEPT(允许),REJECT(拒绝),ALL(全部)。
|
41665
41661
|
:type TrafficType: str
|
41666
41662
|
:param _CloudLogId: 流日志存储ID。
|
41667
41663
|
:type CloudLogId: str
|
41668
|
-
:param _CloudLogState: 流日志存储ID状态。
|
41664
|
+
:param _CloudLogState: 流日志存储ID状态。SUCCESS(成功),DELETED(删除)。
|
41669
41665
|
:type CloudLogState: str
|
41670
41666
|
:param _FlowLogDescription: 流日志描述信息。
|
41671
41667
|
:type FlowLogDescription: str
|
@@ -41676,13 +41672,10 @@ class FlowLog(AbstractModel):
|
|
41676
41672
|
:param _Enable: 是否启用,true-启用,false-停用。
|
41677
41673
|
:type Enable: bool
|
41678
41674
|
:param _StorageType: 消费端类型:cls、ckafka。
|
41679
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41680
41675
|
:type StorageType: str
|
41681
41676
|
:param _FlowLogStorage: 消费端信息,当消费端类型为ckafka时返回。
|
41682
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41683
41677
|
:type FlowLogStorage: :class:`tencentcloud.vpc.v20170312.models.FlowLogStorage`
|
41684
41678
|
:param _CloudLogRegion: 流日志存储ID对应的地域信息。
|
41685
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41686
41679
|
:type CloudLogRegion: str
|
41687
41680
|
"""
|
41688
41681
|
self._VpcId = None
|
@@ -41703,7 +41696,7 @@ class FlowLog(AbstractModel):
|
|
41703
41696
|
|
41704
41697
|
@property
|
41705
41698
|
def VpcId(self):
|
41706
|
-
"""
|
41699
|
+
"""私用网络唯一ID。可通过[DescribeVpcs](https://cloud.tencent.com/document/product/1108/43663)接口获取。
|
41707
41700
|
:rtype: str
|
41708
41701
|
"""
|
41709
41702
|
return self._VpcId
|
@@ -41736,7 +41729,7 @@ class FlowLog(AbstractModel):
|
|
41736
41729
|
|
41737
41730
|
@property
|
41738
41731
|
def ResourceType(self):
|
41739
|
-
"""
|
41732
|
+
"""流日志所属资源类型:VPC(私有网络),SUBNET(子网),NETWORKINTERFACE(网卡),CCN(云联网),NAT(网络地址转化),DCG(专线网关)。
|
41740
41733
|
:rtype: str
|
41741
41734
|
"""
|
41742
41735
|
return self._ResourceType
|
@@ -41758,7 +41751,7 @@ class FlowLog(AbstractModel):
|
|
41758
41751
|
|
41759
41752
|
@property
|
41760
41753
|
def TrafficType(self):
|
41761
|
-
"""流日志采集类型,ACCEPT
|
41754
|
+
"""流日志采集类型,ACCEPT(允许),REJECT(拒绝),ALL(全部)。
|
41762
41755
|
:rtype: str
|
41763
41756
|
"""
|
41764
41757
|
return self._TrafficType
|
@@ -41780,7 +41773,7 @@ class FlowLog(AbstractModel):
|
|
41780
41773
|
|
41781
41774
|
@property
|
41782
41775
|
def CloudLogState(self):
|
41783
|
-
"""流日志存储ID状态。
|
41776
|
+
"""流日志存储ID状态。SUCCESS(成功),DELETED(删除)。
|
41784
41777
|
:rtype: str
|
41785
41778
|
"""
|
41786
41779
|
return self._CloudLogState
|
@@ -41836,7 +41829,6 @@ class FlowLog(AbstractModel):
|
|
41836
41829
|
@property
|
41837
41830
|
def StorageType(self):
|
41838
41831
|
"""消费端类型:cls、ckafka。
|
41839
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41840
41832
|
:rtype: str
|
41841
41833
|
"""
|
41842
41834
|
return self._StorageType
|
@@ -41848,7 +41840,6 @@ class FlowLog(AbstractModel):
|
|
41848
41840
|
@property
|
41849
41841
|
def FlowLogStorage(self):
|
41850
41842
|
"""消费端信息,当消费端类型为ckafka时返回。
|
41851
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41852
41843
|
:rtype: :class:`tencentcloud.vpc.v20170312.models.FlowLogStorage`
|
41853
41844
|
"""
|
41854
41845
|
return self._FlowLogStorage
|
@@ -41860,7 +41851,6 @@ class FlowLog(AbstractModel):
|
|
41860
41851
|
@property
|
41861
41852
|
def CloudLogRegion(self):
|
41862
41853
|
"""流日志存储ID对应的地域信息。
|
41863
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41864
41854
|
:rtype: str
|
41865
41855
|
"""
|
41866
41856
|
return self._CloudLogRegion
|
@@ -41913,7 +41903,6 @@ class FlowLogStorage(AbstractModel):
|
|
41913
41903
|
:param _StorageId: 存储实例Id,当流日志存储类型为ckafka时,必填。
|
41914
41904
|
:type StorageId: str
|
41915
41905
|
:param _StorageTopic: 主题Id,当流日志存储类型为ckafka时,必填。
|
41916
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41917
41906
|
:type StorageTopic: str
|
41918
41907
|
"""
|
41919
41908
|
self._StorageId = None
|
@@ -41933,7 +41922,6 @@ class FlowLogStorage(AbstractModel):
|
|
41933
41922
|
@property
|
41934
41923
|
def StorageTopic(self):
|
41935
41924
|
"""主题Id,当流日志存储类型为ckafka时,必填。
|
41936
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41937
41925
|
:rtype: str
|
41938
41926
|
"""
|
41939
41927
|
return self._StorageTopic
|
@@ -42812,13 +42800,10 @@ class HaVipAssociation(AbstractModel):
|
|
42812
42800
|
def __init__(self):
|
42813
42801
|
r"""
|
42814
42802
|
:param _InstanceId: HaVip绑定的子机或网卡唯一ID。
|
42815
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42816
42803
|
:type InstanceId: str
|
42817
42804
|
:param _HaVipId: HaVip实例唯一ID。
|
42818
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42819
42805
|
:type HaVipId: str
|
42820
42806
|
:param _InstanceType: HaVip绑定的类型。取值:CVM, ENI。
|
42821
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42822
42807
|
:type InstanceType: str
|
42823
42808
|
"""
|
42824
42809
|
self._InstanceId = None
|
@@ -42828,7 +42813,6 @@ class HaVipAssociation(AbstractModel):
|
|
42828
42813
|
@property
|
42829
42814
|
def InstanceId(self):
|
42830
42815
|
"""HaVip绑定的子机或网卡唯一ID。
|
42831
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42832
42816
|
:rtype: str
|
42833
42817
|
"""
|
42834
42818
|
return self._InstanceId
|
@@ -42840,7 +42824,6 @@ class HaVipAssociation(AbstractModel):
|
|
42840
42824
|
@property
|
42841
42825
|
def HaVipId(self):
|
42842
42826
|
"""HaVip实例唯一ID。
|
42843
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42844
42827
|
:rtype: str
|
42845
42828
|
"""
|
42846
42829
|
return self._HaVipId
|
@@ -42852,7 +42835,6 @@ class HaVipAssociation(AbstractModel):
|
|
42852
42835
|
@property
|
42853
42836
|
def InstanceType(self):
|
42854
42837
|
"""HaVip绑定的类型。取值:CVM, ENI。
|
42855
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
42856
42838
|
:rtype: str
|
42857
42839
|
"""
|
42858
42840
|
return self._InstanceType
|
@@ -43080,34 +43062,24 @@ class HighPriorityRoute(AbstractModel):
|
|
43080
43062
|
def __init__(self):
|
43081
43063
|
r"""
|
43082
43064
|
:param _HighPriorityRouteTableId: 高优路由表唯一 ID
|
43083
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43084
43065
|
:type HighPriorityRouteTableId: str
|
43085
43066
|
:param _HighPriorityRouteId: 高优路由表条目唯一 ID
|
43086
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43087
43067
|
:type HighPriorityRouteId: str
|
43088
43068
|
:param _DestinationCidrBlock: 目标网段
|
43089
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43090
43069
|
:type DestinationCidrBlock: str
|
43091
43070
|
:param _GatewayType: 网关类型
|
43092
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43093
43071
|
:type GatewayType: str
|
43094
43072
|
:param _GatewayId: 网关唯一ID
|
43095
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43096
43073
|
:type GatewayId: str
|
43097
43074
|
:param _Description: 高优路由条目描述
|
43098
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43099
43075
|
:type Description: str
|
43100
43076
|
:param _SubnetRouteAlgorithm: ECMP算法,支持的算法有:ECMP_QUINTUPLE_HASH:五元组hash,ECMP_SOURCE_DESTINATION_IP_HASH:源和目的IP hash,ECMP_DESTINATION_IP_HASH:目的IP hash,ECMP_SOURCE_IP_HASH:源IP hash。
|
43101
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43102
43077
|
:type SubnetRouteAlgorithm: str
|
43103
43078
|
:param _IsCdc: 出参展示,是否为CDC属性高优路由
|
43104
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43105
43079
|
:type IsCdc: bool
|
43106
43080
|
:param _CdcId: 出参展示,CDC 唯一ID
|
43107
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43108
43081
|
:type CdcId: str
|
43109
43082
|
:param _CreatedTime: 创建时间。
|
43110
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43111
43083
|
:type CreatedTime: str
|
43112
43084
|
"""
|
43113
43085
|
self._HighPriorityRouteTableId = None
|
@@ -43124,7 +43096,6 @@ class HighPriorityRoute(AbstractModel):
|
|
43124
43096
|
@property
|
43125
43097
|
def HighPriorityRouteTableId(self):
|
43126
43098
|
"""高优路由表唯一 ID
|
43127
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43128
43099
|
:rtype: str
|
43129
43100
|
"""
|
43130
43101
|
return self._HighPriorityRouteTableId
|
@@ -43136,7 +43107,6 @@ class HighPriorityRoute(AbstractModel):
|
|
43136
43107
|
@property
|
43137
43108
|
def HighPriorityRouteId(self):
|
43138
43109
|
"""高优路由表条目唯一 ID
|
43139
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43140
43110
|
:rtype: str
|
43141
43111
|
"""
|
43142
43112
|
return self._HighPriorityRouteId
|
@@ -43148,7 +43118,6 @@ class HighPriorityRoute(AbstractModel):
|
|
43148
43118
|
@property
|
43149
43119
|
def DestinationCidrBlock(self):
|
43150
43120
|
"""目标网段
|
43151
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43152
43121
|
:rtype: str
|
43153
43122
|
"""
|
43154
43123
|
return self._DestinationCidrBlock
|
@@ -43160,7 +43129,6 @@ class HighPriorityRoute(AbstractModel):
|
|
43160
43129
|
@property
|
43161
43130
|
def GatewayType(self):
|
43162
43131
|
"""网关类型
|
43163
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43164
43132
|
:rtype: str
|
43165
43133
|
"""
|
43166
43134
|
return self._GatewayType
|
@@ -43172,7 +43140,6 @@ class HighPriorityRoute(AbstractModel):
|
|
43172
43140
|
@property
|
43173
43141
|
def GatewayId(self):
|
43174
43142
|
"""网关唯一ID
|
43175
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43176
43143
|
:rtype: str
|
43177
43144
|
"""
|
43178
43145
|
return self._GatewayId
|
@@ -43184,7 +43151,6 @@ class HighPriorityRoute(AbstractModel):
|
|
43184
43151
|
@property
|
43185
43152
|
def Description(self):
|
43186
43153
|
"""高优路由条目描述
|
43187
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43188
43154
|
:rtype: str
|
43189
43155
|
"""
|
43190
43156
|
return self._Description
|
@@ -43196,7 +43162,6 @@ class HighPriorityRoute(AbstractModel):
|
|
43196
43162
|
@property
|
43197
43163
|
def SubnetRouteAlgorithm(self):
|
43198
43164
|
"""ECMP算法,支持的算法有:ECMP_QUINTUPLE_HASH:五元组hash,ECMP_SOURCE_DESTINATION_IP_HASH:源和目的IP hash,ECMP_DESTINATION_IP_HASH:目的IP hash,ECMP_SOURCE_IP_HASH:源IP hash。
|
43199
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43200
43165
|
:rtype: str
|
43201
43166
|
"""
|
43202
43167
|
return self._SubnetRouteAlgorithm
|
@@ -43208,7 +43173,6 @@ class HighPriorityRoute(AbstractModel):
|
|
43208
43173
|
@property
|
43209
43174
|
def IsCdc(self):
|
43210
43175
|
"""出参展示,是否为CDC属性高优路由
|
43211
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43212
43176
|
:rtype: bool
|
43213
43177
|
"""
|
43214
43178
|
return self._IsCdc
|
@@ -43220,7 +43184,6 @@ class HighPriorityRoute(AbstractModel):
|
|
43220
43184
|
@property
|
43221
43185
|
def CdcId(self):
|
43222
43186
|
"""出参展示,CDC 唯一ID
|
43223
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43224
43187
|
:rtype: str
|
43225
43188
|
"""
|
43226
43189
|
return self._CdcId
|
@@ -43232,7 +43195,6 @@ class HighPriorityRoute(AbstractModel):
|
|
43232
43195
|
@property
|
43233
43196
|
def CreatedTime(self):
|
43234
43197
|
"""创建时间。
|
43235
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43236
43198
|
:rtype: str
|
43237
43199
|
"""
|
43238
43200
|
return self._CreatedTime
|
@@ -43271,22 +43233,16 @@ class HighPriorityRouteTable(AbstractModel):
|
|
43271
43233
|
def __init__(self):
|
43272
43234
|
r"""
|
43273
43235
|
:param _HighPriorityRouteTableId: 高优路由表唯一 ID。
|
43274
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43275
43236
|
:type HighPriorityRouteTableId: str
|
43276
43237
|
:param _VpcId: VPC实例ID。
|
43277
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43278
43238
|
:type VpcId: str
|
43279
43239
|
:param _Name: 高优路由表名称。
|
43280
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43281
43240
|
:type Name: str
|
43282
43241
|
:param _SubnetSet: 高优路由表关联的子网列表。
|
43283
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43284
43242
|
:type SubnetSet: list of str
|
43285
43243
|
:param _HighPriorityRouteSet: 高优路由表条目信息
|
43286
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43287
43244
|
:type HighPriorityRouteSet: list of HighPriorityRoute
|
43288
43245
|
:param _CreatedTime: 创建时间。
|
43289
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43290
43246
|
:type CreatedTime: str
|
43291
43247
|
"""
|
43292
43248
|
self._HighPriorityRouteTableId = None
|
@@ -43299,7 +43255,6 @@ class HighPriorityRouteTable(AbstractModel):
|
|
43299
43255
|
@property
|
43300
43256
|
def HighPriorityRouteTableId(self):
|
43301
43257
|
"""高优路由表唯一 ID。
|
43302
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43303
43258
|
:rtype: str
|
43304
43259
|
"""
|
43305
43260
|
return self._HighPriorityRouteTableId
|
@@ -43311,7 +43266,6 @@ class HighPriorityRouteTable(AbstractModel):
|
|
43311
43266
|
@property
|
43312
43267
|
def VpcId(self):
|
43313
43268
|
"""VPC实例ID。
|
43314
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43315
43269
|
:rtype: str
|
43316
43270
|
"""
|
43317
43271
|
return self._VpcId
|
@@ -43323,7 +43277,6 @@ class HighPriorityRouteTable(AbstractModel):
|
|
43323
43277
|
@property
|
43324
43278
|
def Name(self):
|
43325
43279
|
"""高优路由表名称。
|
43326
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43327
43280
|
:rtype: str
|
43328
43281
|
"""
|
43329
43282
|
return self._Name
|
@@ -43335,7 +43288,6 @@ class HighPriorityRouteTable(AbstractModel):
|
|
43335
43288
|
@property
|
43336
43289
|
def SubnetSet(self):
|
43337
43290
|
"""高优路由表关联的子网列表。
|
43338
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43339
43291
|
:rtype: list of str
|
43340
43292
|
"""
|
43341
43293
|
return self._SubnetSet
|
@@ -43347,7 +43299,6 @@ class HighPriorityRouteTable(AbstractModel):
|
|
43347
43299
|
@property
|
43348
43300
|
def HighPriorityRouteSet(self):
|
43349
43301
|
"""高优路由表条目信息
|
43350
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43351
43302
|
:rtype: list of HighPriorityRoute
|
43352
43303
|
"""
|
43353
43304
|
return self._HighPriorityRouteSet
|
@@ -43359,7 +43310,6 @@ class HighPriorityRouteTable(AbstractModel):
|
|
43359
43310
|
@property
|
43360
43311
|
def CreatedTime(self):
|
43361
43312
|
"""创建时间。
|
43362
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
43363
43313
|
:rtype: str
|
43364
43314
|
"""
|
43365
43315
|
return self._CreatedTime
|
@@ -45661,10 +45611,8 @@ class Ipv6Address(AbstractModel):
|
|
45661
45611
|
<li>`AVAILABLE`:可用的</li>
|
45662
45612
|
:type State: str
|
45663
45613
|
:param _PublicIpAddress: 如果 IPv6地址是 ULA 类型,绑定的公网IP地址。
|
45664
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45665
45614
|
:type PublicIpAddress: str
|
45666
45615
|
:param _AddressType: `IPv6`地址的类型: `GUA`(全球单播地址), `OTHER`(非GUA/ULA地址), `ULA`(唯一本地地址)
|
45667
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45668
45616
|
:type AddressType: str
|
45669
45617
|
"""
|
45670
45618
|
self._Address = None
|
@@ -45749,7 +45697,6 @@ class Ipv6Address(AbstractModel):
|
|
45749
45697
|
@property
|
45750
45698
|
def PublicIpAddress(self):
|
45751
45699
|
"""如果 IPv6地址是 ULA 类型,绑定的公网IP地址。
|
45752
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45753
45700
|
:rtype: str
|
45754
45701
|
"""
|
45755
45702
|
return self._PublicIpAddress
|
@@ -45761,7 +45708,6 @@ class Ipv6Address(AbstractModel):
|
|
45761
45708
|
@property
|
45762
45709
|
def AddressType(self):
|
45763
45710
|
"""`IPv6`地址的类型: `GUA`(全球单播地址), `OTHER`(非GUA/ULA地址), `ULA`(唯一本地地址)
|
45764
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
45765
45711
|
:rtype: str
|
45766
45712
|
"""
|
45767
45713
|
return self._AddressType
|
@@ -46061,7 +46007,6 @@ class LocalGateway(AbstractModel):
|
|
46061
46007
|
:param _CreateTime: 本地网关创建时间
|
46062
46008
|
:type CreateTime: str
|
46063
46009
|
:param _TagSet: 标签键值对。
|
46064
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
46065
46010
|
:type TagSet: list of Tag
|
46066
46011
|
:param _LocalGatewayId: 本地网关实例ID(计划起用)
|
46067
46012
|
:type LocalGatewayId: str
|
@@ -46144,7 +46089,6 @@ class LocalGateway(AbstractModel):
|
|
46144
46089
|
@property
|
46145
46090
|
def TagSet(self):
|
46146
46091
|
"""标签键值对。
|
46147
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
46148
46092
|
:rtype: list of Tag
|
46149
46093
|
"""
|
46150
46094
|
return self._TagSet
|
@@ -52546,6 +52490,8 @@ class ModifyVpnConnectionAttributeRequest(AbstractModel):
|
|
52546
52490
|
:type CustomerGatewayId: str
|
52547
52491
|
:param _HealthCheckConfig: 健康检查配置
|
52548
52492
|
:type HealthCheckConfig: :class:`tencentcloud.vpc.v20170312.models.HealthCheckConfig`
|
52493
|
+
:param _BgpConfig: BGP隧道配置
|
52494
|
+
:type BgpConfig: :class:`tencentcloud.vpc.v20170312.models.BgpConfig`
|
52549
52495
|
"""
|
52550
52496
|
self._VpnConnectionId = None
|
52551
52497
|
self._VpnConnectionName = None
|
@@ -52562,6 +52508,7 @@ class ModifyVpnConnectionAttributeRequest(AbstractModel):
|
|
52562
52508
|
self._DpdAction = None
|
52563
52509
|
self._CustomerGatewayId = None
|
52564
52510
|
self._HealthCheckConfig = None
|
52511
|
+
self._BgpConfig = None
|
52565
52512
|
|
52566
52513
|
@property
|
52567
52514
|
def VpnConnectionId(self):
|
@@ -52728,6 +52675,17 @@ class ModifyVpnConnectionAttributeRequest(AbstractModel):
|
|
52728
52675
|
def HealthCheckConfig(self, HealthCheckConfig):
|
52729
52676
|
self._HealthCheckConfig = HealthCheckConfig
|
52730
52677
|
|
52678
|
+
@property
|
52679
|
+
def BgpConfig(self):
|
52680
|
+
"""BGP隧道配置
|
52681
|
+
:rtype: :class:`tencentcloud.vpc.v20170312.models.BgpConfig`
|
52682
|
+
"""
|
52683
|
+
return self._BgpConfig
|
52684
|
+
|
52685
|
+
@BgpConfig.setter
|
52686
|
+
def BgpConfig(self, BgpConfig):
|
52687
|
+
self._BgpConfig = BgpConfig
|
52688
|
+
|
52731
52689
|
|
52732
52690
|
def _deserialize(self, params):
|
52733
52691
|
self._VpnConnectionId = params.get("VpnConnectionId")
|
@@ -52756,6 +52714,9 @@ class ModifyVpnConnectionAttributeRequest(AbstractModel):
|
|
52756
52714
|
if params.get("HealthCheckConfig") is not None:
|
52757
52715
|
self._HealthCheckConfig = HealthCheckConfig()
|
52758
52716
|
self._HealthCheckConfig._deserialize(params.get("HealthCheckConfig"))
|
52717
|
+
if params.get("BgpConfig") is not None:
|
52718
|
+
self._BgpConfig = BgpConfig()
|
52719
|
+
self._BgpConfig._deserialize(params.get("BgpConfig"))
|
52759
52720
|
memeber_set = set(params.keys())
|
52760
52721
|
for name, value in vars(self).items():
|
52761
52722
|
property_name = name[1:]
|
@@ -54897,10 +54858,8 @@ class NetworkAclEntry(AbstractModel):
|
|
54897
54858
|
:param _Priority: 优先级,从1开始。
|
54898
54859
|
:type Priority: int
|
54899
54860
|
:param _NetworkAclIpv4EntryId: IPv4网络ACL条目唯一ID。当修改ACL条目时,NetworkAclIpv4EntryId和NetworkAclIpv6EntryID至少提供一个。
|
54900
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54901
54861
|
:type NetworkAclIpv4EntryId: str
|
54902
54862
|
:param _NetworkAclIpv6EntryId: IPv6网络ACL条目唯一ID。当修改ACL条目时,NetworkAclIpv4EntryId和NetworkAclIpv6EntryId至少提供一个。
|
54903
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54904
54863
|
:type NetworkAclIpv6EntryId: str
|
54905
54864
|
"""
|
54906
54865
|
self._Protocol = None
|
@@ -55005,7 +54964,6 @@ class NetworkAclEntry(AbstractModel):
|
|
55005
54964
|
@property
|
55006
54965
|
def NetworkAclIpv4EntryId(self):
|
55007
54966
|
"""IPv4网络ACL条目唯一ID。当修改ACL条目时,NetworkAclIpv4EntryId和NetworkAclIpv6EntryID至少提供一个。
|
55008
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
55009
54967
|
:rtype: str
|
55010
54968
|
"""
|
55011
54969
|
return self._NetworkAclIpv4EntryId
|
@@ -55017,7 +54975,6 @@ class NetworkAclEntry(AbstractModel):
|
|
55017
54975
|
@property
|
55018
54976
|
def NetworkAclIpv6EntryId(self):
|
55019
54977
|
"""IPv6网络ACL条目唯一ID。当修改ACL条目时,NetworkAclIpv4EntryId和NetworkAclIpv6EntryId至少提供一个。
|
55020
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
55021
54978
|
:rtype: str
|
55022
54979
|
"""
|
55023
54980
|
return self._NetworkAclIpv6EntryId
|
@@ -56245,16 +56202,12 @@ class PolicyStatistics(AbstractModel):
|
|
56245
56202
|
def __init__(self):
|
56246
56203
|
r"""
|
56247
56204
|
:param _IngressIPv4TotalCount: 入站IPv4总数
|
56248
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
56249
56205
|
:type IngressIPv4TotalCount: int
|
56250
56206
|
:param _IngressIPv6TotalCount: 入站IPv6总数
|
56251
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
56252
56207
|
:type IngressIPv6TotalCount: int
|
56253
56208
|
:param _EgressIPv4TotalCount: 出站IPv4总数
|
56254
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
56255
56209
|
:type EgressIPv4TotalCount: int
|
56256
56210
|
:param _EgressIPv6TotalCount: 出站IPv6总数
|
56257
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
56258
56211
|
:type EgressIPv6TotalCount: int
|
56259
56212
|
"""
|
56260
56213
|
self._IngressIPv4TotalCount = None
|
@@ -56265,7 +56218,6 @@ class PolicyStatistics(AbstractModel):
|
|
56265
56218
|
@property
|
56266
56219
|
def IngressIPv4TotalCount(self):
|
56267
56220
|
"""入站IPv4总数
|
56268
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
56269
56221
|
:rtype: int
|
56270
56222
|
"""
|
56271
56223
|
return self._IngressIPv4TotalCount
|
@@ -56277,7 +56229,6 @@ class PolicyStatistics(AbstractModel):
|
|
56277
56229
|
@property
|
56278
56230
|
def IngressIPv6TotalCount(self):
|
56279
56231
|
"""入站IPv6总数
|
56280
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
56281
56232
|
:rtype: int
|
56282
56233
|
"""
|
56283
56234
|
return self._IngressIPv6TotalCount
|
@@ -56289,7 +56240,6 @@ class PolicyStatistics(AbstractModel):
|
|
56289
56240
|
@property
|
56290
56241
|
def EgressIPv4TotalCount(self):
|
56291
56242
|
"""出站IPv4总数
|
56292
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
56293
56243
|
:rtype: int
|
56294
56244
|
"""
|
56295
56245
|
return self._EgressIPv4TotalCount
|
@@ -56301,7 +56251,6 @@ class PolicyStatistics(AbstractModel):
|
|
56301
56251
|
@property
|
56302
56252
|
def EgressIPv6TotalCount(self):
|
56303
56253
|
"""出站IPv6总数
|
56304
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
56305
56254
|
:rtype: int
|
56306
56255
|
"""
|
56307
56256
|
return self._EgressIPv6TotalCount
|
@@ -61371,10 +61320,8 @@ class RouteECMPAlgorithm(AbstractModel):
|
|
61371
61320
|
def __init__(self):
|
61372
61321
|
r"""
|
61373
61322
|
:param _DestinationCidrBlock: 目标网段
|
61374
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
61375
61323
|
:type DestinationCidrBlock: str
|
61376
61324
|
:param _SubnetRouteAlgorithm: 支持的 ECMP算法有:ECMP_QUINTUPLE_HASH:五元组hash,ECMP_SOURCE_DESTINATION_IP_HASH:源和目的IP hash,ECMP_DESTINATION_IP_HASH:目的IP hash,ECMP_SOURCE_IP_HASH:源IP hash。
|
61377
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
61378
61325
|
:type SubnetRouteAlgorithm: str
|
61379
61326
|
"""
|
61380
61327
|
self._DestinationCidrBlock = None
|
@@ -61383,7 +61330,6 @@ class RouteECMPAlgorithm(AbstractModel):
|
|
61383
61330
|
@property
|
61384
61331
|
def DestinationCidrBlock(self):
|
61385
61332
|
""" 目标网段
|
61386
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
61387
61333
|
:rtype: str
|
61388
61334
|
"""
|
61389
61335
|
return self._DestinationCidrBlock
|
@@ -61395,7 +61341,6 @@ class RouteECMPAlgorithm(AbstractModel):
|
|
61395
61341
|
@property
|
61396
61342
|
def SubnetRouteAlgorithm(self):
|
61397
61343
|
"""支持的 ECMP算法有:ECMP_QUINTUPLE_HASH:五元组hash,ECMP_SOURCE_DESTINATION_IP_HASH:源和目的IP hash,ECMP_DESTINATION_IP_HASH:目的IP hash,ECMP_SOURCE_IP_HASH:源IP hash。
|
61398
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
61399
61344
|
:rtype: str
|
61400
61345
|
"""
|
61401
61346
|
return self._SubnetRouteAlgorithm
|
@@ -61598,7 +61543,6 @@ class RouteTable(AbstractModel):
|
|
61598
61543
|
:param _TagSet: 标签键值对。
|
61599
61544
|
:type TagSet: list of Tag
|
61600
61545
|
:param _LocalCidrForCcn: local路由是否发布云联网。
|
61601
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
61602
61546
|
:type LocalCidrForCcn: list of CidrForCcn
|
61603
61547
|
"""
|
61604
61548
|
self._VpcId = None
|
@@ -61702,7 +61646,6 @@ class RouteTable(AbstractModel):
|
|
61702
61646
|
@property
|
61703
61647
|
def LocalCidrForCcn(self):
|
61704
61648
|
"""local路由是否发布云联网。
|
61705
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
61706
61649
|
:rtype: list of CidrForCcn
|
61707
61650
|
"""
|
61708
61651
|
return self._LocalCidrForCcn
|
@@ -61760,10 +61703,8 @@ class RouteTableAssociation(AbstractModel):
|
|
61760
61703
|
def __init__(self):
|
61761
61704
|
r"""
|
61762
61705
|
:param _SubnetId: 子网实例ID。
|
61763
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
61764
61706
|
:type SubnetId: str
|
61765
61707
|
:param _RouteTableId: 路由表实例ID。
|
61766
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
61767
61708
|
:type RouteTableId: str
|
61768
61709
|
"""
|
61769
61710
|
self._SubnetId = None
|
@@ -61772,7 +61713,6 @@ class RouteTableAssociation(AbstractModel):
|
|
61772
61713
|
@property
|
61773
61714
|
def SubnetId(self):
|
61774
61715
|
"""子网实例ID。
|
61775
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
61776
61716
|
:rtype: str
|
61777
61717
|
"""
|
61778
61718
|
return self._SubnetId
|
@@ -61784,7 +61724,6 @@ class RouteTableAssociation(AbstractModel):
|
|
61784
61724
|
@property
|
61785
61725
|
def RouteTableId(self):
|
61786
61726
|
"""路由表实例ID。
|
61787
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
61788
61727
|
:rtype: str
|
61789
61728
|
"""
|
61790
61729
|
return self._RouteTableId
|
@@ -61829,7 +61768,6 @@ class SecurityGroup(AbstractModel):
|
|
61829
61768
|
:param _TagSet: 标签键值对。
|
61830
61769
|
:type TagSet: list of Tag
|
61831
61770
|
:param _UpdateTime: 安全组更新时间。
|
61832
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
61833
61771
|
:type UpdateTime: str
|
61834
61772
|
"""
|
61835
61773
|
self._SecurityGroupId = None
|
@@ -61921,7 +61859,6 @@ class SecurityGroup(AbstractModel):
|
|
61921
61859
|
@property
|
61922
61860
|
def UpdateTime(self):
|
61923
61861
|
"""安全组更新时间。
|
61924
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
61925
61862
|
:rtype: str
|
61926
61863
|
"""
|
61927
61864
|
return self._UpdateTime
|
@@ -62250,38 +62187,27 @@ class SecurityGroupPolicy(AbstractModel):
|
|
62250
62187
|
def __init__(self):
|
62251
62188
|
r"""
|
62252
62189
|
:param _PolicyIndex: 安全组规则索引号,值会随着安全组规则的变更动态变化。使用PolicyIndex时,请先调用`DescribeSecurityGroupPolicies`获取到规则的PolicyIndex,并且结合返回值中的Version一起使用处理规则。
|
62253
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62254
62190
|
:type PolicyIndex: int
|
62255
62191
|
:param _Protocol: 协议, 取值: TCP,UDP,ICMP,ICMPv6,ALL。
|
62256
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62257
62192
|
:type Protocol: str
|
62258
62193
|
:param _Port: 端口(all, 离散port, range)。
|
62259
62194
|
说明:如果Protocol设置为ALL,则Port也需要设置为all。
|
62260
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62261
62195
|
:type Port: str
|
62262
62196
|
:param _ServiceTemplate: 协议端口ID或者协议端口组ID。ServiceTemplate和Protocol+Port互斥。
|
62263
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62264
62197
|
:type ServiceTemplate: :class:`tencentcloud.vpc.v20170312.models.ServiceTemplateSpecification`
|
62265
62198
|
:param _CidrBlock: 网段或IP(互斥),特殊说明:0.0.0.0/n 都会映射为0.0.0.0/0。作为入参时,可使用字符串`MY_PUBLIC_IP`指代发起请求的公网IP地址。
|
62266
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62267
62199
|
:type CidrBlock: str
|
62268
62200
|
:param _Ipv6CidrBlock: 网段或IPv6(互斥)。作为入参时,可使用字符串`MY_PUBLIC_IP`指代发起请求的公网IPv6地址。
|
62269
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62270
62201
|
:type Ipv6CidrBlock: str
|
62271
62202
|
:param _SecurityGroupId: 安全组实例ID,例如:sg-ohuuioma。
|
62272
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62273
62203
|
:type SecurityGroupId: str
|
62274
62204
|
:param _AddressTemplate: IP地址ID或者IP地址组ID。
|
62275
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62276
62205
|
:type AddressTemplate: :class:`tencentcloud.vpc.v20170312.models.AddressTemplateSpecification`
|
62277
62206
|
:param _Action: ACCEPT 或 DROP。
|
62278
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62279
62207
|
:type Action: str
|
62280
62208
|
:param _PolicyDescription: 安全组规则描述。作为入参时,当未传递该参数或值为空,且参数CidrBlock或Ipv6CidrBlock值为MY_PUBLIC_IP时,该参数的值将会被自动填充为Replaced-From-MY_PUBLIC_IP。
|
62281
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62282
62209
|
:type PolicyDescription: str
|
62283
62210
|
:param _ModifyTime: 安全组最近修改时间。
|
62284
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62285
62211
|
:type ModifyTime: str
|
62286
62212
|
"""
|
62287
62213
|
self._PolicyIndex = None
|
@@ -62299,7 +62225,6 @@ class SecurityGroupPolicy(AbstractModel):
|
|
62299
62225
|
@property
|
62300
62226
|
def PolicyIndex(self):
|
62301
62227
|
"""安全组规则索引号,值会随着安全组规则的变更动态变化。使用PolicyIndex时,请先调用`DescribeSecurityGroupPolicies`获取到规则的PolicyIndex,并且结合返回值中的Version一起使用处理规则。
|
62302
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62303
62228
|
:rtype: int
|
62304
62229
|
"""
|
62305
62230
|
return self._PolicyIndex
|
@@ -62311,7 +62236,6 @@ class SecurityGroupPolicy(AbstractModel):
|
|
62311
62236
|
@property
|
62312
62237
|
def Protocol(self):
|
62313
62238
|
"""协议, 取值: TCP,UDP,ICMP,ICMPv6,ALL。
|
62314
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62315
62239
|
:rtype: str
|
62316
62240
|
"""
|
62317
62241
|
return self._Protocol
|
@@ -62324,7 +62248,6 @@ class SecurityGroupPolicy(AbstractModel):
|
|
62324
62248
|
def Port(self):
|
62325
62249
|
"""端口(all, 离散port, range)。
|
62326
62250
|
说明:如果Protocol设置为ALL,则Port也需要设置为all。
|
62327
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62328
62251
|
:rtype: str
|
62329
62252
|
"""
|
62330
62253
|
return self._Port
|
@@ -62336,7 +62259,6 @@ class SecurityGroupPolicy(AbstractModel):
|
|
62336
62259
|
@property
|
62337
62260
|
def ServiceTemplate(self):
|
62338
62261
|
"""协议端口ID或者协议端口组ID。ServiceTemplate和Protocol+Port互斥。
|
62339
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62340
62262
|
:rtype: :class:`tencentcloud.vpc.v20170312.models.ServiceTemplateSpecification`
|
62341
62263
|
"""
|
62342
62264
|
return self._ServiceTemplate
|
@@ -62348,7 +62270,6 @@ class SecurityGroupPolicy(AbstractModel):
|
|
62348
62270
|
@property
|
62349
62271
|
def CidrBlock(self):
|
62350
62272
|
"""网段或IP(互斥),特殊说明:0.0.0.0/n 都会映射为0.0.0.0/0。作为入参时,可使用字符串`MY_PUBLIC_IP`指代发起请求的公网IP地址。
|
62351
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62352
62273
|
:rtype: str
|
62353
62274
|
"""
|
62354
62275
|
return self._CidrBlock
|
@@ -62360,7 +62281,6 @@ class SecurityGroupPolicy(AbstractModel):
|
|
62360
62281
|
@property
|
62361
62282
|
def Ipv6CidrBlock(self):
|
62362
62283
|
"""网段或IPv6(互斥)。作为入参时,可使用字符串`MY_PUBLIC_IP`指代发起请求的公网IPv6地址。
|
62363
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62364
62284
|
:rtype: str
|
62365
62285
|
"""
|
62366
62286
|
return self._Ipv6CidrBlock
|
@@ -62372,7 +62292,6 @@ class SecurityGroupPolicy(AbstractModel):
|
|
62372
62292
|
@property
|
62373
62293
|
def SecurityGroupId(self):
|
62374
62294
|
"""安全组实例ID,例如:sg-ohuuioma。
|
62375
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62376
62295
|
:rtype: str
|
62377
62296
|
"""
|
62378
62297
|
return self._SecurityGroupId
|
@@ -62384,7 +62303,6 @@ class SecurityGroupPolicy(AbstractModel):
|
|
62384
62303
|
@property
|
62385
62304
|
def AddressTemplate(self):
|
62386
62305
|
"""IP地址ID或者IP地址组ID。
|
62387
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62388
62306
|
:rtype: :class:`tencentcloud.vpc.v20170312.models.AddressTemplateSpecification`
|
62389
62307
|
"""
|
62390
62308
|
return self._AddressTemplate
|
@@ -62396,7 +62314,6 @@ class SecurityGroupPolicy(AbstractModel):
|
|
62396
62314
|
@property
|
62397
62315
|
def Action(self):
|
62398
62316
|
"""ACCEPT 或 DROP。
|
62399
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62400
62317
|
:rtype: str
|
62401
62318
|
"""
|
62402
62319
|
return self._Action
|
@@ -62408,7 +62325,6 @@ class SecurityGroupPolicy(AbstractModel):
|
|
62408
62325
|
@property
|
62409
62326
|
def PolicyDescription(self):
|
62410
62327
|
"""安全组规则描述。作为入参时,当未传递该参数或值为空,且参数CidrBlock或Ipv6CidrBlock值为MY_PUBLIC_IP时,该参数的值将会被自动填充为Replaced-From-MY_PUBLIC_IP。
|
62411
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62412
62328
|
:rtype: str
|
62413
62329
|
"""
|
62414
62330
|
return self._PolicyDescription
|
@@ -62420,7 +62336,6 @@ class SecurityGroupPolicy(AbstractModel):
|
|
62420
62336
|
@property
|
62421
62337
|
def ModifyTime(self):
|
62422
62338
|
"""安全组最近修改时间。
|
62423
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62424
62339
|
:rtype: str
|
62425
62340
|
"""
|
62426
62341
|
return self._ModifyTime
|
@@ -62464,16 +62379,12 @@ class SecurityGroupPolicySet(AbstractModel):
|
|
62464
62379
|
def __init__(self):
|
62465
62380
|
r"""
|
62466
62381
|
:param _Version: 安全组规则当前版本。用户每次更新安全规则版本会自动加1,防止更新的路由规则已过期,不填不考虑冲突。
|
62467
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62468
62382
|
:type Version: str
|
62469
62383
|
:param _Egress: 出站规则。
|
62470
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62471
62384
|
:type Egress: list of SecurityGroupPolicy
|
62472
62385
|
:param _Ingress: 入站规则。
|
62473
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62474
62386
|
:type Ingress: list of SecurityGroupPolicy
|
62475
62387
|
:param _PolicyStatistics: 安全组策略条目统计。只用于出参。
|
62476
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62477
62388
|
:type PolicyStatistics: :class:`tencentcloud.vpc.v20170312.models.PolicyStatistics`
|
62478
62389
|
"""
|
62479
62390
|
self._Version = None
|
@@ -62484,7 +62395,6 @@ class SecurityGroupPolicySet(AbstractModel):
|
|
62484
62395
|
@property
|
62485
62396
|
def Version(self):
|
62486
62397
|
"""安全组规则当前版本。用户每次更新安全规则版本会自动加1,防止更新的路由规则已过期,不填不考虑冲突。
|
62487
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62488
62398
|
:rtype: str
|
62489
62399
|
"""
|
62490
62400
|
return self._Version
|
@@ -62496,7 +62406,6 @@ class SecurityGroupPolicySet(AbstractModel):
|
|
62496
62406
|
@property
|
62497
62407
|
def Egress(self):
|
62498
62408
|
"""出站规则。
|
62499
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62500
62409
|
:rtype: list of SecurityGroupPolicy
|
62501
62410
|
"""
|
62502
62411
|
return self._Egress
|
@@ -62508,7 +62417,6 @@ class SecurityGroupPolicySet(AbstractModel):
|
|
62508
62417
|
@property
|
62509
62418
|
def Ingress(self):
|
62510
62419
|
"""入站规则。
|
62511
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62512
62420
|
:rtype: list of SecurityGroupPolicy
|
62513
62421
|
"""
|
62514
62422
|
return self._Ingress
|
@@ -62520,7 +62428,6 @@ class SecurityGroupPolicySet(AbstractModel):
|
|
62520
62428
|
@property
|
62521
62429
|
def PolicyStatistics(self):
|
62522
62430
|
"""安全组策略条目统计。只用于出参。
|
62523
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62524
62431
|
:rtype: :class:`tencentcloud.vpc.v20170312.models.PolicyStatistics`
|
62525
62432
|
"""
|
62526
62433
|
return self._PolicyStatistics
|
@@ -65138,13 +65045,10 @@ class TrafficMirror(AbstractModel):
|
|
65138
65045
|
:param _CreateTime: 流量镜像创建时间。
|
65139
65046
|
:type CreateTime: str
|
65140
65047
|
:param _Type: 流量镜像的类型。
|
65141
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
65142
65048
|
:type Type: str
|
65143
65049
|
:param _SubnetId: 流量镜像所属的子网ID。
|
65144
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
65145
65050
|
:type SubnetId: str
|
65146
65051
|
:param _TargetInfo: 流量镜接收目标资源信息,当接收目标为ENI和CLB时返回。
|
65147
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
65148
65052
|
:type TargetInfo: list of TrafficMirrorTargetResourceInfo
|
65149
65053
|
"""
|
65150
65054
|
self._VpcId = None
|
@@ -65286,7 +65190,6 @@ class TrafficMirror(AbstractModel):
|
|
65286
65190
|
@property
|
65287
65191
|
def Type(self):
|
65288
65192
|
"""流量镜像的类型。
|
65289
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
65290
65193
|
:rtype: str
|
65291
65194
|
"""
|
65292
65195
|
return self._Type
|
@@ -65298,7 +65201,6 @@ class TrafficMirror(AbstractModel):
|
|
65298
65201
|
@property
|
65299
65202
|
def SubnetId(self):
|
65300
65203
|
"""流量镜像所属的子网ID。
|
65301
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
65302
65204
|
:rtype: str
|
65303
65205
|
"""
|
65304
65206
|
return self._SubnetId
|
@@ -65310,7 +65212,6 @@ class TrafficMirror(AbstractModel):
|
|
65310
65212
|
@property
|
65311
65213
|
def TargetInfo(self):
|
65312
65214
|
"""流量镜接收目标资源信息,当接收目标为ENI和CLB时返回。
|
65313
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
65314
65215
|
:rtype: list of TrafficMirrorTargetResourceInfo
|
65315
65216
|
"""
|
65316
65217
|
return self._TargetInfo
|
@@ -65465,10 +65366,8 @@ class TrafficMirrorTarget(AbstractModel):
|
|
65465
65366
|
:param _AlgHash: 流量镜像接收IP组,均衡规则,支持ENI/FIVE_TUPLE_FLOW(vpc),FIVE_TUPLE_FLOW(公网IP)
|
65466
65367
|
:type AlgHash: str
|
65467
65368
|
:param _TargetEndPoints: 流量镜像的接收endpoint(公网IP)
|
65468
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
65469
65369
|
:type TargetEndPoints: list of str
|
65470
65370
|
:param _TargetType: 流量镜像的接收类型,分别为:IP/ENI/CLB
|
65471
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
65472
65371
|
:type TargetType: str
|
65473
65372
|
"""
|
65474
65373
|
self._TargetIps = None
|
@@ -65501,7 +65400,6 @@ class TrafficMirrorTarget(AbstractModel):
|
|
65501
65400
|
@property
|
65502
65401
|
def TargetEndPoints(self):
|
65503
65402
|
"""流量镜像的接收endpoint(公网IP)
|
65504
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
65505
65403
|
:rtype: list of str
|
65506
65404
|
"""
|
65507
65405
|
return self._TargetEndPoints
|
@@ -65513,7 +65411,6 @@ class TrafficMirrorTarget(AbstractModel):
|
|
65513
65411
|
@property
|
65514
65412
|
def TargetType(self):
|
65515
65413
|
"""流量镜像的接收类型,分别为:IP/ENI/CLB
|
65516
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
65517
65414
|
:rtype: str
|
65518
65415
|
"""
|
65519
65416
|
return self._TargetType
|
@@ -67848,10 +67745,8 @@ class VpcTaskResultDetailInfo(AbstractModel):
|
|
67848
67745
|
def __init__(self):
|
67849
67746
|
r"""
|
67850
67747
|
:param _ResourceId: 资源ID。
|
67851
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
67852
67748
|
:type ResourceId: str
|
67853
67749
|
:param _Status: 状态。
|
67854
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
67855
67750
|
:type Status: str
|
67856
67751
|
"""
|
67857
67752
|
self._ResourceId = None
|
@@ -67860,7 +67755,6 @@ class VpcTaskResultDetailInfo(AbstractModel):
|
|
67860
67755
|
@property
|
67861
67756
|
def ResourceId(self):
|
67862
67757
|
"""资源ID。
|
67863
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
67864
67758
|
:rtype: str
|
67865
67759
|
"""
|
67866
67760
|
return self._ResourceId
|
@@ -67872,7 +67766,6 @@ class VpcTaskResultDetailInfo(AbstractModel):
|
|
67872
67766
|
@property
|
67873
67767
|
def Status(self):
|
67874
67768
|
"""状态。
|
67875
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
67876
67769
|
:rtype: str
|
67877
67770
|
"""
|
67878
67771
|
return self._Status
|