tencentcloud-sdk-python 3.0.1368__py2.py3-none-any.whl → 3.0.1369__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 +2 -1
- tencentcloud/autoscaling/v20180419/models.py +198 -102
- tencentcloud/cbs/v20170312/cbs_client.py +1 -1
- tencentcloud/cbs/v20170312/models.py +41 -44
- tencentcloud/ccc/v20200210/models.py +15 -0
- tencentcloud/cdn/v20180606/cdn_client.py +45 -15
- tencentcloud/cfs/v20190719/models.py +15 -0
- tencentcloud/cvm/v20170312/cvm_client.py +1 -1
- tencentcloud/cvm/v20170312/errorcodes.py +1 -1
- tencentcloud/cvm/v20170312/models.py +83 -40
- tencentcloud/domain/v20180808/domain_client.py +4 -2
- tencentcloud/domain/v20180808/errorcodes.py +3 -0
- tencentcloud/domain/v20180808/models.py +254 -124
- tencentcloud/ioa/v20220601/models.py +19 -4
- tencentcloud/iotexplorer/v20190423/models.py +94 -4
- tencentcloud/iotvideoindustry/v20201201/models.py +15 -0
- tencentcloud/lcic/v20220817/errorcodes.py +1 -1
- tencentcloud/lke/v20231130/models.py +10 -2
- tencentcloud/mps/v20190612/models.py +2 -2
- tencentcloud/redis/v20180412/models.py +159 -6
- tencentcloud/tat/v20201028/errorcodes.py +6 -0
- tencentcloud/tat/v20201028/models.py +78 -32
- tencentcloud/tcss/v20201101/models.py +45 -0
- tencentcloud/teo/v20220901/models.py +35 -10
- tencentcloud/trtc/v20190722/models.py +2 -2
- tencentcloud/vod/v20180717/models.py +6 -6
- tencentcloud/vpc/v20170312/models.py +30 -74
- tencentcloud/wedata/v20210820/models.py +322 -0
- tencentcloud/wedata/v20210820/wedata_client.py +23 -0
- {tencentcloud_sdk_python-3.0.1368.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1368.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/RECORD +35 -35
- {tencentcloud_sdk_python-3.0.1368.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1368.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1368.dist-info → tencentcloud_sdk_python-3.0.1369.dist-info}/top_level.txt +0 -0
@@ -44367,11 +44367,39 @@ class ISPIPv6CidrBlock(AbstractModel):
|
|
44367
44367
|
|
44368
44368
|
def __init__(self):
|
44369
44369
|
r"""
|
44370
|
+
:param _IPv6CidrBlock: IPv6 CIdr Block
|
44371
|
+
:type IPv6CidrBlock: str
|
44372
|
+
:param _ISPType: 网络运营商类型 取值范围:'BGP'-默认, 'CMCC'-中国移动, 'CTCC'-中国电信, 'CUCC'-中国联调
|
44373
|
+
:type ISPType: str
|
44370
44374
|
:param _AddressType: IPv6 Cidr 的类型:`GUA`(全球单播地址), `ULA`(唯一本地地址)
|
44371
44375
|
:type AddressType: str
|
44372
44376
|
"""
|
44377
|
+
self._IPv6CidrBlock = None
|
44378
|
+
self._ISPType = None
|
44373
44379
|
self._AddressType = None
|
44374
44380
|
|
44381
|
+
@property
|
44382
|
+
def IPv6CidrBlock(self):
|
44383
|
+
"""IPv6 CIdr Block
|
44384
|
+
:rtype: str
|
44385
|
+
"""
|
44386
|
+
return self._IPv6CidrBlock
|
44387
|
+
|
44388
|
+
@IPv6CidrBlock.setter
|
44389
|
+
def IPv6CidrBlock(self, IPv6CidrBlock):
|
44390
|
+
self._IPv6CidrBlock = IPv6CidrBlock
|
44391
|
+
|
44392
|
+
@property
|
44393
|
+
def ISPType(self):
|
44394
|
+
"""网络运营商类型 取值范围:'BGP'-默认, 'CMCC'-中国移动, 'CTCC'-中国电信, 'CUCC'-中国联调
|
44395
|
+
:rtype: str
|
44396
|
+
"""
|
44397
|
+
return self._ISPType
|
44398
|
+
|
44399
|
+
@ISPType.setter
|
44400
|
+
def ISPType(self, ISPType):
|
44401
|
+
self._ISPType = ISPType
|
44402
|
+
|
44375
44403
|
@property
|
44376
44404
|
def AddressType(self):
|
44377
44405
|
"""IPv6 Cidr 的类型:`GUA`(全球单播地址), `ULA`(唯一本地地址)
|
@@ -44385,6 +44413,8 @@ class ISPIPv6CidrBlock(AbstractModel):
|
|
44385
44413
|
|
44386
44414
|
|
44387
44415
|
def _deserialize(self, params):
|
44416
|
+
self._IPv6CidrBlock = params.get("IPv6CidrBlock")
|
44417
|
+
self._ISPType = params.get("ISPType")
|
44388
44418
|
self._AddressType = params.get("AddressType")
|
44389
44419
|
memeber_set = set(params.keys())
|
44390
44420
|
for name, value in vars(self).items():
|
@@ -46583,16 +46613,12 @@ class ItemPrice(AbstractModel):
|
|
46583
46613
|
def __init__(self):
|
46584
46614
|
r"""
|
46585
46615
|
:param _UnitPrice: 按量计费后付费单价,单位:元。
|
46586
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
46587
46616
|
:type UnitPrice: float
|
46588
46617
|
:param _ChargeUnit: 按量计费后付费计价单元,可取值范围: HOUR:表示计价单元是按每小时来计算。当前涉及该计价单元的场景有:实例按小时后付费(POSTPAID_BY_HOUR)、带宽按小时后付费(BANDWIDTH_POSTPAID_BY_HOUR): GB:表示计价单元是按每GB来计算。当前涉及该计价单元的场景有:流量按小时后付费(TRAFFIC_POSTPAID_BY_HOUR)。
|
46589
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
46590
46618
|
:type ChargeUnit: str
|
46591
46619
|
:param _OriginalPrice: 预付费商品的原价,单位:元。
|
46592
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
46593
46620
|
:type OriginalPrice: float
|
46594
46621
|
:param _DiscountPrice: 预付费商品的折扣价,单位:元。
|
46595
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
46596
46622
|
:type DiscountPrice: float
|
46597
46623
|
"""
|
46598
46624
|
self._UnitPrice = None
|
@@ -46603,7 +46629,6 @@ class ItemPrice(AbstractModel):
|
|
46603
46629
|
@property
|
46604
46630
|
def UnitPrice(self):
|
46605
46631
|
"""按量计费后付费单价,单位:元。
|
46606
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
46607
46632
|
:rtype: float
|
46608
46633
|
"""
|
46609
46634
|
return self._UnitPrice
|
@@ -46615,7 +46640,6 @@ class ItemPrice(AbstractModel):
|
|
46615
46640
|
@property
|
46616
46641
|
def ChargeUnit(self):
|
46617
46642
|
"""按量计费后付费计价单元,可取值范围: HOUR:表示计价单元是按每小时来计算。当前涉及该计价单元的场景有:实例按小时后付费(POSTPAID_BY_HOUR)、带宽按小时后付费(BANDWIDTH_POSTPAID_BY_HOUR): GB:表示计价单元是按每GB来计算。当前涉及该计价单元的场景有:流量按小时后付费(TRAFFIC_POSTPAID_BY_HOUR)。
|
46618
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
46619
46643
|
:rtype: str
|
46620
46644
|
"""
|
46621
46645
|
return self._ChargeUnit
|
@@ -46627,7 +46651,6 @@ class ItemPrice(AbstractModel):
|
|
46627
46651
|
@property
|
46628
46652
|
def OriginalPrice(self):
|
46629
46653
|
"""预付费商品的原价,单位:元。
|
46630
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
46631
46654
|
:rtype: float
|
46632
46655
|
"""
|
46633
46656
|
return self._OriginalPrice
|
@@ -46639,7 +46662,6 @@ class ItemPrice(AbstractModel):
|
|
46639
46662
|
@property
|
46640
46663
|
def DiscountPrice(self):
|
46641
46664
|
"""预付费商品的折扣价,单位:元。
|
46642
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
46643
46665
|
:rtype: float
|
46644
46666
|
"""
|
46645
46667
|
return self._DiscountPrice
|
@@ -54594,36 +54616,26 @@ class NatGateway(AbstractModel):
|
|
54594
54616
|
:param _Zone: NAT网关所在的可用区。
|
54595
54617
|
:type Zone: str
|
54596
54618
|
:param _DirectConnectGatewayIds: 绑定的专线网关ID。
|
54597
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54598
54619
|
:type DirectConnectGatewayIds: list of str
|
54599
54620
|
:param _SubnetId: 所属子网ID。
|
54600
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54601
54621
|
:type SubnetId: str
|
54602
54622
|
:param _TagSet: 标签键值对。
|
54603
54623
|
:type TagSet: list of Tag
|
54604
54624
|
:param _SecurityGroupSet: NAT网关绑定的安全组列表
|
54605
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54606
54625
|
:type SecurityGroupSet: list of str
|
54607
54626
|
:param _SourceIpTranslationNatRuleSet: NAT网关的SNAT转发规则。
|
54608
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54609
54627
|
:type SourceIpTranslationNatRuleSet: list of SourceIpTranslationNatRule
|
54610
54628
|
:param _IsExclusive: 是否独享型NAT。
|
54611
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54612
54629
|
:type IsExclusive: bool
|
54613
54630
|
:param _ExclusiveGatewayBandwidth: 独享型NAT所在的网关集群的带宽(单位:Mbps),当IsExclusive为false时无此字段。
|
54614
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54615
54631
|
:type ExclusiveGatewayBandwidth: int
|
54616
54632
|
:param _RestrictState: NAT网关是否被封禁。“NORMAL”:未被封禁,“RESTRICTED”:已被封禁。
|
54617
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54618
54633
|
:type RestrictState: str
|
54619
54634
|
:param _NatProductVersion: NAT网关类型,1表示传统型NAT网关,2表示标准型NAT网关
|
54620
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54621
54635
|
:type NatProductVersion: int
|
54622
54636
|
:param _SmartScheduleMode: 是否启用根据目的网段选择SNAT使用的EIP功能
|
54623
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54624
54637
|
:type SmartScheduleMode: bool
|
54625
54638
|
:param _DedicatedClusterId: NAT实例归属的专属集群id
|
54626
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54627
54639
|
:type DedicatedClusterId: str
|
54628
54640
|
"""
|
54629
54641
|
self._NatGatewayId = None
|
@@ -54775,7 +54787,6 @@ class NatGateway(AbstractModel):
|
|
54775
54787
|
@property
|
54776
54788
|
def DirectConnectGatewayIds(self):
|
54777
54789
|
"""绑定的专线网关ID。
|
54778
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54779
54790
|
:rtype: list of str
|
54780
54791
|
"""
|
54781
54792
|
return self._DirectConnectGatewayIds
|
@@ -54787,7 +54798,6 @@ class NatGateway(AbstractModel):
|
|
54787
54798
|
@property
|
54788
54799
|
def SubnetId(self):
|
54789
54800
|
"""所属子网ID。
|
54790
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54791
54801
|
:rtype: str
|
54792
54802
|
"""
|
54793
54803
|
return self._SubnetId
|
@@ -54810,7 +54820,6 @@ class NatGateway(AbstractModel):
|
|
54810
54820
|
@property
|
54811
54821
|
def SecurityGroupSet(self):
|
54812
54822
|
"""NAT网关绑定的安全组列表
|
54813
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54814
54823
|
:rtype: list of str
|
54815
54824
|
"""
|
54816
54825
|
return self._SecurityGroupSet
|
@@ -54822,7 +54831,6 @@ class NatGateway(AbstractModel):
|
|
54822
54831
|
@property
|
54823
54832
|
def SourceIpTranslationNatRuleSet(self):
|
54824
54833
|
"""NAT网关的SNAT转发规则。
|
54825
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54826
54834
|
:rtype: list of SourceIpTranslationNatRule
|
54827
54835
|
"""
|
54828
54836
|
return self._SourceIpTranslationNatRuleSet
|
@@ -54834,7 +54842,6 @@ class NatGateway(AbstractModel):
|
|
54834
54842
|
@property
|
54835
54843
|
def IsExclusive(self):
|
54836
54844
|
"""是否独享型NAT。
|
54837
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54838
54845
|
:rtype: bool
|
54839
54846
|
"""
|
54840
54847
|
return self._IsExclusive
|
@@ -54846,7 +54853,6 @@ class NatGateway(AbstractModel):
|
|
54846
54853
|
@property
|
54847
54854
|
def ExclusiveGatewayBandwidth(self):
|
54848
54855
|
"""独享型NAT所在的网关集群的带宽(单位:Mbps),当IsExclusive为false时无此字段。
|
54849
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54850
54856
|
:rtype: int
|
54851
54857
|
"""
|
54852
54858
|
return self._ExclusiveGatewayBandwidth
|
@@ -54858,7 +54864,6 @@ class NatGateway(AbstractModel):
|
|
54858
54864
|
@property
|
54859
54865
|
def RestrictState(self):
|
54860
54866
|
"""NAT网关是否被封禁。“NORMAL”:未被封禁,“RESTRICTED”:已被封禁。
|
54861
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54862
54867
|
:rtype: str
|
54863
54868
|
"""
|
54864
54869
|
return self._RestrictState
|
@@ -54870,7 +54875,6 @@ class NatGateway(AbstractModel):
|
|
54870
54875
|
@property
|
54871
54876
|
def NatProductVersion(self):
|
54872
54877
|
"""NAT网关类型,1表示传统型NAT网关,2表示标准型NAT网关
|
54873
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54874
54878
|
:rtype: int
|
54875
54879
|
"""
|
54876
54880
|
return self._NatProductVersion
|
@@ -54882,7 +54886,6 @@ class NatGateway(AbstractModel):
|
|
54882
54886
|
@property
|
54883
54887
|
def SmartScheduleMode(self):
|
54884
54888
|
"""是否启用根据目的网段选择SNAT使用的EIP功能
|
54885
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54886
54889
|
:rtype: bool
|
54887
54890
|
"""
|
54888
54891
|
return self._SmartScheduleMode
|
@@ -54894,7 +54897,6 @@ class NatGateway(AbstractModel):
|
|
54894
54897
|
@property
|
54895
54898
|
def DedicatedClusterId(self):
|
54896
54899
|
"""NAT实例归属的专属集群id
|
54897
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
54898
54900
|
:rtype: str
|
54899
54901
|
"""
|
54900
54902
|
return self._DedicatedClusterId
|
@@ -55058,13 +55060,10 @@ class NatGatewayDestinationIpPortTranslationNatRule(AbstractModel):
|
|
55058
55060
|
:param _Description: NAT网关转发规则描述。
|
55059
55061
|
:type Description: str
|
55060
55062
|
:param _NatGatewayId: NAT网关的ID。
|
55061
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
55062
55063
|
:type NatGatewayId: str
|
55063
55064
|
:param _VpcId: 私有网络VPC的ID。
|
55064
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
55065
55065
|
:type VpcId: str
|
55066
55066
|
:param _CreatedTime: NAT网关转发规则创建时间。
|
55067
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
55068
55067
|
:type CreatedTime: str
|
55069
55068
|
"""
|
55070
55069
|
self._IpProtocol = None
|
@@ -55146,7 +55145,6 @@ class NatGatewayDestinationIpPortTranslationNatRule(AbstractModel):
|
|
55146
55145
|
@property
|
55147
55146
|
def NatGatewayId(self):
|
55148
55147
|
"""NAT网关的ID。
|
55149
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
55150
55148
|
:rtype: str
|
55151
55149
|
"""
|
55152
55150
|
return self._NatGatewayId
|
@@ -55158,7 +55156,6 @@ class NatGatewayDestinationIpPortTranslationNatRule(AbstractModel):
|
|
55158
55156
|
@property
|
55159
55157
|
def VpcId(self):
|
55160
55158
|
"""私有网络VPC的ID。
|
55161
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
55162
55159
|
:rtype: str
|
55163
55160
|
"""
|
55164
55161
|
return self._VpcId
|
@@ -55170,7 +55167,6 @@ class NatGatewayDestinationIpPortTranslationNatRule(AbstractModel):
|
|
55170
55167
|
@property
|
55171
55168
|
def CreatedTime(self):
|
55172
55169
|
"""NAT网关转发规则创建时间。
|
55173
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
55174
55170
|
:rtype: str
|
55175
55171
|
"""
|
55176
55172
|
return self._CreatedTime
|
@@ -57576,13 +57572,10 @@ class PrivateNatCrossDomainInfo(AbstractModel):
|
|
57576
57572
|
def __init__(self):
|
57577
57573
|
r"""
|
57578
57574
|
:param _CcnId: 跨域私网NAT关联的云联网ID
|
57579
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
57580
57575
|
:type CcnId: str
|
57581
57576
|
:param _LocalVpcId: 跨域私网NAT本端Vpc
|
57582
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
57583
57577
|
:type LocalVpcId: str
|
57584
57578
|
:param _PeerVpcId: 跨域私网NAT对端Vpc
|
57585
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
57586
57579
|
:type PeerVpcId: str
|
57587
57580
|
"""
|
57588
57581
|
self._CcnId = None
|
@@ -57592,7 +57585,6 @@ class PrivateNatCrossDomainInfo(AbstractModel):
|
|
57592
57585
|
@property
|
57593
57586
|
def CcnId(self):
|
57594
57587
|
"""跨域私网NAT关联的云联网ID
|
57595
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
57596
57588
|
:rtype: str
|
57597
57589
|
"""
|
57598
57590
|
return self._CcnId
|
@@ -57604,7 +57596,6 @@ class PrivateNatCrossDomainInfo(AbstractModel):
|
|
57604
57596
|
@property
|
57605
57597
|
def LocalVpcId(self):
|
57606
57598
|
"""跨域私网NAT本端Vpc
|
57607
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
57608
57599
|
:rtype: str
|
57609
57600
|
"""
|
57610
57601
|
return self._LocalVpcId
|
@@ -57616,7 +57607,6 @@ class PrivateNatCrossDomainInfo(AbstractModel):
|
|
57616
57607
|
@property
|
57617
57608
|
def PeerVpcId(self):
|
57618
57609
|
"""跨域私网NAT对端Vpc
|
57619
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
57620
57610
|
:rtype: str
|
57621
57611
|
"""
|
57622
57612
|
return self._PeerVpcId
|
@@ -57793,7 +57783,6 @@ class PrivateNatGateway(AbstractModel):
|
|
57793
57783
|
:param _NatGatewayName: 私网网关名称。
|
57794
57784
|
:type NatGatewayName: str
|
57795
57785
|
:param _VpcId: 私网网关关联`VPC`实例`ID`。
|
57796
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
57797
57786
|
:type VpcId: str
|
57798
57787
|
:param _Status: 私网网关当前状态。
|
57799
57788
|
:type Status: str
|
@@ -57802,22 +57791,16 @@ class PrivateNatGateway(AbstractModel):
|
|
57802
57791
|
:param _CreatedTime: 创建时间
|
57803
57792
|
:type CreatedTime: str
|
57804
57793
|
:param _TagSet: 标签键值对。
|
57805
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
57806
57794
|
:type TagSet: list of Tag
|
57807
57795
|
:param _DirectConnectGatewayIds: 专线网关唯一`ID`
|
57808
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
57809
57796
|
:type DirectConnectGatewayIds: list of str
|
57810
57797
|
:param _NatType: 私网网关类型
|
57811
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
57812
57798
|
:type NatType: str
|
57813
57799
|
:param _CrossDomainInfo: 私网NAT跨域信息
|
57814
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
57815
57800
|
:type CrossDomainInfo: :class:`tencentcloud.vpc.v20170312.models.PrivateNatCrossDomainInfo`
|
57816
57801
|
:param _VpcType: 是否VPC型私网网关
|
57817
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
57818
57802
|
:type VpcType: bool
|
57819
57803
|
:param _CcnId: 跨域私网NAT关联的云联网ID
|
57820
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
57821
57804
|
:type CcnId: str
|
57822
57805
|
"""
|
57823
57806
|
self._NatGatewayId = None
|
@@ -57858,7 +57841,6 @@ class PrivateNatGateway(AbstractModel):
|
|
57858
57841
|
@property
|
57859
57842
|
def VpcId(self):
|
57860
57843
|
"""私网网关关联`VPC`实例`ID`。
|
57861
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
57862
57844
|
:rtype: str
|
57863
57845
|
"""
|
57864
57846
|
return self._VpcId
|
@@ -57903,7 +57885,6 @@ class PrivateNatGateway(AbstractModel):
|
|
57903
57885
|
@property
|
57904
57886
|
def TagSet(self):
|
57905
57887
|
"""标签键值对。
|
57906
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
57907
57888
|
:rtype: list of Tag
|
57908
57889
|
"""
|
57909
57890
|
return self._TagSet
|
@@ -57915,7 +57896,6 @@ class PrivateNatGateway(AbstractModel):
|
|
57915
57896
|
@property
|
57916
57897
|
def DirectConnectGatewayIds(self):
|
57917
57898
|
"""专线网关唯一`ID`
|
57918
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
57919
57899
|
:rtype: list of str
|
57920
57900
|
"""
|
57921
57901
|
return self._DirectConnectGatewayIds
|
@@ -57927,7 +57907,6 @@ class PrivateNatGateway(AbstractModel):
|
|
57927
57907
|
@property
|
57928
57908
|
def NatType(self):
|
57929
57909
|
"""私网网关类型
|
57930
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
57931
57910
|
:rtype: str
|
57932
57911
|
"""
|
57933
57912
|
return self._NatType
|
@@ -57939,7 +57918,6 @@ class PrivateNatGateway(AbstractModel):
|
|
57939
57918
|
@property
|
57940
57919
|
def CrossDomainInfo(self):
|
57941
57920
|
"""私网NAT跨域信息
|
57942
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
57943
57921
|
:rtype: :class:`tencentcloud.vpc.v20170312.models.PrivateNatCrossDomainInfo`
|
57944
57922
|
"""
|
57945
57923
|
return self._CrossDomainInfo
|
@@ -57951,7 +57929,6 @@ class PrivateNatGateway(AbstractModel):
|
|
57951
57929
|
@property
|
57952
57930
|
def VpcType(self):
|
57953
57931
|
"""是否VPC型私网网关
|
57954
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
57955
57932
|
:rtype: bool
|
57956
57933
|
"""
|
57957
57934
|
return self._VpcType
|
@@ -57963,7 +57940,6 @@ class PrivateNatGateway(AbstractModel):
|
|
57963
57940
|
@property
|
57964
57941
|
def CcnId(self):
|
57965
57942
|
"""跨域私网NAT关联的云联网ID
|
57966
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
57967
57943
|
:rtype: str
|
57968
57944
|
"""
|
57969
57945
|
return self._CcnId
|
@@ -64616,7 +64592,6 @@ class SourceIpTranslationNatRule(AbstractModel):
|
|
64616
64592
|
:param _ResourceId: 资源ID,如果ResourceType为USERDEFINED,可以为空字符串
|
64617
64593
|
:type ResourceId: str
|
64618
64594
|
:param _ResourceType: 资源类型,目前包含SUBNET、NETWORKINTERFACE、USERDEFINED
|
64619
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
64620
64595
|
:type ResourceType: str
|
64621
64596
|
:param _PrivateIpAddress: 源IP/网段
|
64622
64597
|
:type PrivateIpAddress: str
|
@@ -64627,13 +64602,10 @@ class SourceIpTranslationNatRule(AbstractModel):
|
|
64627
64602
|
:param _NatGatewaySnatId: Snat规则ID
|
64628
64603
|
:type NatGatewaySnatId: str
|
64629
64604
|
:param _NatGatewayId: NAT网关的ID。
|
64630
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
64631
64605
|
:type NatGatewayId: str
|
64632
64606
|
:param _VpcId: 私有网络VPC的ID。
|
64633
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
64634
64607
|
:type VpcId: str
|
64635
64608
|
:param _CreatedTime: NAT网关SNAT规则创建时间。
|
64636
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
64637
64609
|
:type CreatedTime: str
|
64638
64610
|
"""
|
64639
64611
|
self._ResourceId = None
|
@@ -64660,7 +64632,6 @@ class SourceIpTranslationNatRule(AbstractModel):
|
|
64660
64632
|
@property
|
64661
64633
|
def ResourceType(self):
|
64662
64634
|
"""资源类型,目前包含SUBNET、NETWORKINTERFACE、USERDEFINED
|
64663
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
64664
64635
|
:rtype: str
|
64665
64636
|
"""
|
64666
64637
|
return self._ResourceType
|
@@ -64716,7 +64687,6 @@ class SourceIpTranslationNatRule(AbstractModel):
|
|
64716
64687
|
@property
|
64717
64688
|
def NatGatewayId(self):
|
64718
64689
|
"""NAT网关的ID。
|
64719
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
64720
64690
|
:rtype: str
|
64721
64691
|
"""
|
64722
64692
|
return self._NatGatewayId
|
@@ -64728,7 +64698,6 @@ class SourceIpTranslationNatRule(AbstractModel):
|
|
64728
64698
|
@property
|
64729
64699
|
def VpcId(self):
|
64730
64700
|
"""私有网络VPC的ID。
|
64731
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
64732
64701
|
:rtype: str
|
64733
64702
|
"""
|
64734
64703
|
return self._VpcId
|
@@ -64740,7 +64709,6 @@ class SourceIpTranslationNatRule(AbstractModel):
|
|
64740
64709
|
@property
|
64741
64710
|
def CreatedTime(self):
|
64742
64711
|
"""NAT网关SNAT规则创建时间。
|
64743
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
64744
64712
|
:rtype: str
|
64745
64713
|
"""
|
64746
64714
|
return self._CreatedTime
|
@@ -65873,10 +65841,8 @@ class Tag(AbstractModel):
|
|
65873
65841
|
def __init__(self):
|
65874
65842
|
r"""
|
65875
65843
|
:param _Key: 标签键
|
65876
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
65877
65844
|
:type Key: str
|
65878
65845
|
:param _Value: 标签值
|
65879
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
65880
65846
|
:type Value: str
|
65881
65847
|
"""
|
65882
65848
|
self._Key = None
|
@@ -65885,7 +65851,6 @@ class Tag(AbstractModel):
|
|
65885
65851
|
@property
|
65886
65852
|
def Key(self):
|
65887
65853
|
"""标签键
|
65888
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
65889
65854
|
:rtype: str
|
65890
65855
|
"""
|
65891
65856
|
return self._Key
|
@@ -65897,7 +65862,6 @@ class Tag(AbstractModel):
|
|
65897
65862
|
@property
|
65898
65863
|
def Value(self):
|
65899
65864
|
"""标签值
|
65900
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
65901
65865
|
:rtype: str
|
65902
65866
|
"""
|
65903
65867
|
return self._Value
|
@@ -65928,10 +65892,8 @@ class Tags(AbstractModel):
|
|
65928
65892
|
def __init__(self):
|
65929
65893
|
r"""
|
65930
65894
|
:param _Key: 标签键
|
65931
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
65932
65895
|
:type Key: str
|
65933
65896
|
:param _Value: 标签值
|
65934
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
65935
65897
|
:type Value: str
|
65936
65898
|
"""
|
65937
65899
|
self._Key = None
|
@@ -65940,7 +65902,6 @@ class Tags(AbstractModel):
|
|
65940
65902
|
@property
|
65941
65903
|
def Key(self):
|
65942
65904
|
"""标签键
|
65943
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
65944
65905
|
:rtype: str
|
65945
65906
|
"""
|
65946
65907
|
return self._Key
|
@@ -65952,7 +65913,6 @@ class Tags(AbstractModel):
|
|
65952
65913
|
@property
|
65953
65914
|
def Value(self):
|
65954
65915
|
"""标签值
|
65955
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
65956
65916
|
:rtype: str
|
65957
65917
|
"""
|
65958
65918
|
return self._Value
|
@@ -67129,10 +67089,8 @@ class TranslationNatRule(AbstractModel):
|
|
67129
67089
|
:param _TranslationIp: 转换`IP`,当转换规则类型为四层时为`IP`池。
|
67130
67090
|
:type TranslationIp: str
|
67131
67091
|
:param _Description: 转换规则描述。
|
67132
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
67133
67092
|
:type Description: str
|
67134
67093
|
:param _OriginalIp: 源`IP`,当转换规则类型为三层时有效。
|
67135
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
67136
67094
|
:type OriginalIp: str
|
67137
67095
|
:param _CreateTime: 创建时间。
|
67138
67096
|
:type CreateTime: str
|
@@ -67183,7 +67141,6 @@ class TranslationNatRule(AbstractModel):
|
|
67183
67141
|
@property
|
67184
67142
|
def Description(self):
|
67185
67143
|
"""转换规则描述。
|
67186
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
67187
67144
|
:rtype: str
|
67188
67145
|
"""
|
67189
67146
|
return self._Description
|
@@ -67195,7 +67152,6 @@ class TranslationNatRule(AbstractModel):
|
|
67195
67152
|
@property
|
67196
67153
|
def OriginalIp(self):
|
67197
67154
|
"""源`IP`,当转换规则类型为三层时有效。
|
67198
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
67199
67155
|
:rtype: str
|
67200
67156
|
"""
|
67201
67157
|
return self._OriginalIp
|