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