tencentcloud-sdk-python 3.0.1294__py2.py3-none-any.whl → 3.0.1295__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/aca/v20210323/models.py +2 -12
- tencentcloud/cbs/v20170312/models.py +15 -0
- tencentcloud/cdwdoris/v20211228/models.py +39 -4
- tencentcloud/cls/v20201016/models.py +34 -8
- tencentcloud/cvm/v20170312/models.py +2 -2
- tencentcloud/dts/v20211206/models.py +15 -0
- tencentcloud/ocr/v20181119/errorcodes.py +0 -6
- tencentcloud/ocr/v20181119/models.py +0 -328
- tencentcloud/ocr/v20181119/ocr_client.py +0 -25
- tencentcloud/scf/v20180416/models.py +121 -92
- tencentcloud/scf/v20180416/scf_client.py +23 -0
- tencentcloud/tcr/v20190924/models.py +19 -2
- tencentcloud/tke/v20180525/models.py +10 -10
- tencentcloud/vpc/v20170312/models.py +50 -76
- {tencentcloud_sdk_python-3.0.1294.dist-info → tencentcloud_sdk_python-3.0.1295.dist-info}/METADATA +1 -1
- {tencentcloud_sdk_python-3.0.1294.dist-info → tencentcloud_sdk_python-3.0.1295.dist-info}/RECORD +20 -20
- {tencentcloud_sdk_python-3.0.1294.dist-info → tencentcloud_sdk_python-3.0.1295.dist-info}/LICENSE +0 -0
- {tencentcloud_sdk_python-3.0.1294.dist-info → tencentcloud_sdk_python-3.0.1295.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python-3.0.1294.dist-info → tencentcloud_sdk_python-3.0.1295.dist-info}/top_level.txt +0 -0
@@ -5602,37 +5602,26 @@ class CcnBandwidth(AbstractModel):
|
|
5602
5602
|
:param _CcnId: 带宽所属的云联网ID。
|
5603
5603
|
:type CcnId: str
|
5604
5604
|
:param _CreatedTime: 实例的创建时间。
|
5605
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5606
5605
|
:type CreatedTime: str
|
5607
5606
|
:param _ExpiredTime: 实例的过期时间
|
5608
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5609
5607
|
:type ExpiredTime: str
|
5610
5608
|
:param _RegionFlowControlId: 带宽实例的唯一ID。
|
5611
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5612
5609
|
:type RegionFlowControlId: str
|
5613
5610
|
:param _RenewFlag: 带宽是否自动续费的标记。
|
5614
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5615
5611
|
:type RenewFlag: str
|
5616
5612
|
:param _CcnRegionBandwidthLimit: 描述带宽的地域和限速上限信息。在地域间限速的情况下才会返回参数,出口限速模式不返回。
|
5617
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5618
5613
|
:type CcnRegionBandwidthLimit: :class:`tencentcloud.vpc.v20170312.models.CcnRegionBandwidthLimitInfo`
|
5619
5614
|
:param _MarketId: 云市场实例ID。
|
5620
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5621
5615
|
:type MarketId: str
|
5622
5616
|
:param _UserAccountID: 实例所属用户主账号ID。
|
5623
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5624
5617
|
:type UserAccountID: str
|
5625
5618
|
:param _IsCrossBorder: 是否跨境,`true`表示跨境,反之不跨境。
|
5626
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5627
5619
|
:type IsCrossBorder: bool
|
5628
5620
|
:param _IsSecurityLock: `true`表示封禁,地域间流量不通,`false`解禁,地域间流量正常
|
5629
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5630
5621
|
:type IsSecurityLock: bool
|
5631
5622
|
:param _InstanceChargeType: `POSTPAID`表示后付费,`PREPAID`表示预付费。
|
5632
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5633
5623
|
:type InstanceChargeType: str
|
5634
5624
|
:param _UpdateTime: 实例更新时间
|
5635
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5636
5625
|
:type UpdateTime: str
|
5637
5626
|
"""
|
5638
5627
|
self._CcnId = None
|
@@ -5662,7 +5651,6 @@ class CcnBandwidth(AbstractModel):
|
|
5662
5651
|
@property
|
5663
5652
|
def CreatedTime(self):
|
5664
5653
|
"""实例的创建时间。
|
5665
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5666
5654
|
:rtype: str
|
5667
5655
|
"""
|
5668
5656
|
return self._CreatedTime
|
@@ -5674,7 +5662,6 @@ class CcnBandwidth(AbstractModel):
|
|
5674
5662
|
@property
|
5675
5663
|
def ExpiredTime(self):
|
5676
5664
|
"""实例的过期时间
|
5677
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5678
5665
|
:rtype: str
|
5679
5666
|
"""
|
5680
5667
|
return self._ExpiredTime
|
@@ -5686,7 +5673,6 @@ class CcnBandwidth(AbstractModel):
|
|
5686
5673
|
@property
|
5687
5674
|
def RegionFlowControlId(self):
|
5688
5675
|
"""带宽实例的唯一ID。
|
5689
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5690
5676
|
:rtype: str
|
5691
5677
|
"""
|
5692
5678
|
return self._RegionFlowControlId
|
@@ -5698,7 +5684,6 @@ class CcnBandwidth(AbstractModel):
|
|
5698
5684
|
@property
|
5699
5685
|
def RenewFlag(self):
|
5700
5686
|
"""带宽是否自动续费的标记。
|
5701
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5702
5687
|
:rtype: str
|
5703
5688
|
"""
|
5704
5689
|
return self._RenewFlag
|
@@ -5710,7 +5695,6 @@ class CcnBandwidth(AbstractModel):
|
|
5710
5695
|
@property
|
5711
5696
|
def CcnRegionBandwidthLimit(self):
|
5712
5697
|
"""描述带宽的地域和限速上限信息。在地域间限速的情况下才会返回参数,出口限速模式不返回。
|
5713
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5714
5698
|
:rtype: :class:`tencentcloud.vpc.v20170312.models.CcnRegionBandwidthLimitInfo`
|
5715
5699
|
"""
|
5716
5700
|
return self._CcnRegionBandwidthLimit
|
@@ -5722,7 +5706,6 @@ class CcnBandwidth(AbstractModel):
|
|
5722
5706
|
@property
|
5723
5707
|
def MarketId(self):
|
5724
5708
|
"""云市场实例ID。
|
5725
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5726
5709
|
:rtype: str
|
5727
5710
|
"""
|
5728
5711
|
return self._MarketId
|
@@ -5734,7 +5717,6 @@ class CcnBandwidth(AbstractModel):
|
|
5734
5717
|
@property
|
5735
5718
|
def UserAccountID(self):
|
5736
5719
|
"""实例所属用户主账号ID。
|
5737
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5738
5720
|
:rtype: str
|
5739
5721
|
"""
|
5740
5722
|
return self._UserAccountID
|
@@ -5746,7 +5728,6 @@ class CcnBandwidth(AbstractModel):
|
|
5746
5728
|
@property
|
5747
5729
|
def IsCrossBorder(self):
|
5748
5730
|
"""是否跨境,`true`表示跨境,反之不跨境。
|
5749
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5750
5731
|
:rtype: bool
|
5751
5732
|
"""
|
5752
5733
|
return self._IsCrossBorder
|
@@ -5758,7 +5739,6 @@ class CcnBandwidth(AbstractModel):
|
|
5758
5739
|
@property
|
5759
5740
|
def IsSecurityLock(self):
|
5760
5741
|
"""`true`表示封禁,地域间流量不通,`false`解禁,地域间流量正常
|
5761
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5762
5742
|
:rtype: bool
|
5763
5743
|
"""
|
5764
5744
|
return self._IsSecurityLock
|
@@ -5770,7 +5750,6 @@ class CcnBandwidth(AbstractModel):
|
|
5770
5750
|
@property
|
5771
5751
|
def InstanceChargeType(self):
|
5772
5752
|
"""`POSTPAID`表示后付费,`PREPAID`表示预付费。
|
5773
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5774
5753
|
:rtype: str
|
5775
5754
|
"""
|
5776
5755
|
return self._InstanceChargeType
|
@@ -5782,7 +5761,6 @@ class CcnBandwidth(AbstractModel):
|
|
5782
5761
|
@property
|
5783
5762
|
def UpdateTime(self):
|
5784
5763
|
"""实例更新时间
|
5785
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
5786
5764
|
:rtype: str
|
5787
5765
|
"""
|
5788
5766
|
return self._UpdateTime
|
@@ -10033,18 +10011,24 @@ class CreateDirectConnectGatewayRequest(AbstractModel):
|
|
10033
10011
|
:type GatewayType: str
|
10034
10012
|
:param _ModeType: 云联网路由发布模式,可选值:`standard`(标准模式)、`exquisite`(精细模式)。只有云联网类型专线网关才支持`ModeType`。
|
10035
10013
|
:type ModeType: str
|
10014
|
+
:param _GatewayAsn: 专线网关自定义ASN,范围:45090,64512-65534 和4200000000-4294967294
|
10015
|
+
:type GatewayAsn: int
|
10036
10016
|
:param _Zone: 专线网关可用区
|
10037
10017
|
:type Zone: str
|
10038
10018
|
:param _HaZoneGroupId: 专线网关高可用区容灾组ID
|
10039
10019
|
:type HaZoneGroupId: str
|
10020
|
+
:param _Tags: 标签
|
10021
|
+
:type Tags: list of Tag
|
10040
10022
|
"""
|
10041
10023
|
self._DirectConnectGatewayName = None
|
10042
10024
|
self._NetworkType = None
|
10043
10025
|
self._NetworkInstanceId = None
|
10044
10026
|
self._GatewayType = None
|
10045
10027
|
self._ModeType = None
|
10028
|
+
self._GatewayAsn = None
|
10046
10029
|
self._Zone = None
|
10047
10030
|
self._HaZoneGroupId = None
|
10031
|
+
self._Tags = None
|
10048
10032
|
|
10049
10033
|
@property
|
10050
10034
|
def DirectConnectGatewayName(self):
|
@@ -10106,6 +10090,17 @@ class CreateDirectConnectGatewayRequest(AbstractModel):
|
|
10106
10090
|
def ModeType(self, ModeType):
|
10107
10091
|
self._ModeType = ModeType
|
10108
10092
|
|
10093
|
+
@property
|
10094
|
+
def GatewayAsn(self):
|
10095
|
+
"""专线网关自定义ASN,范围:45090,64512-65534 和4200000000-4294967294
|
10096
|
+
:rtype: int
|
10097
|
+
"""
|
10098
|
+
return self._GatewayAsn
|
10099
|
+
|
10100
|
+
@GatewayAsn.setter
|
10101
|
+
def GatewayAsn(self, GatewayAsn):
|
10102
|
+
self._GatewayAsn = GatewayAsn
|
10103
|
+
|
10109
10104
|
@property
|
10110
10105
|
def Zone(self):
|
10111
10106
|
"""专线网关可用区
|
@@ -10128,6 +10123,17 @@ class CreateDirectConnectGatewayRequest(AbstractModel):
|
|
10128
10123
|
def HaZoneGroupId(self, HaZoneGroupId):
|
10129
10124
|
self._HaZoneGroupId = HaZoneGroupId
|
10130
10125
|
|
10126
|
+
@property
|
10127
|
+
def Tags(self):
|
10128
|
+
"""标签
|
10129
|
+
:rtype: list of Tag
|
10130
|
+
"""
|
10131
|
+
return self._Tags
|
10132
|
+
|
10133
|
+
@Tags.setter
|
10134
|
+
def Tags(self, Tags):
|
10135
|
+
self._Tags = Tags
|
10136
|
+
|
10131
10137
|
|
10132
10138
|
def _deserialize(self, params):
|
10133
10139
|
self._DirectConnectGatewayName = params.get("DirectConnectGatewayName")
|
@@ -10135,8 +10141,15 @@ class CreateDirectConnectGatewayRequest(AbstractModel):
|
|
10135
10141
|
self._NetworkInstanceId = params.get("NetworkInstanceId")
|
10136
10142
|
self._GatewayType = params.get("GatewayType")
|
10137
10143
|
self._ModeType = params.get("ModeType")
|
10144
|
+
self._GatewayAsn = params.get("GatewayAsn")
|
10138
10145
|
self._Zone = params.get("Zone")
|
10139
10146
|
self._HaZoneGroupId = params.get("HaZoneGroupId")
|
10147
|
+
if params.get("Tags") is not None:
|
10148
|
+
self._Tags = []
|
10149
|
+
for item in params.get("Tags"):
|
10150
|
+
obj = Tag()
|
10151
|
+
obj._deserialize(item)
|
10152
|
+
self._Tags.append(obj)
|
10140
10153
|
memeber_set = set(params.keys())
|
10141
10154
|
for name, value in vars(self).items():
|
10142
10155
|
property_name = name[1:]
|
@@ -17006,13 +17019,10 @@ class CustomerGatewayVendor(AbstractModel):
|
|
17006
17019
|
def __init__(self):
|
17007
17020
|
r"""
|
17008
17021
|
:param _Platform: 平台。
|
17009
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17010
17022
|
:type Platform: str
|
17011
17023
|
:param _SoftwareVersion: 软件版本。
|
17012
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17013
17024
|
:type SoftwareVersion: str
|
17014
17025
|
:param _VendorName: 供应商名称。
|
17015
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17016
17026
|
:type VendorName: str
|
17017
17027
|
"""
|
17018
17028
|
self._Platform = None
|
@@ -17022,7 +17032,6 @@ class CustomerGatewayVendor(AbstractModel):
|
|
17022
17032
|
@property
|
17023
17033
|
def Platform(self):
|
17024
17034
|
"""平台。
|
17025
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17026
17035
|
:rtype: str
|
17027
17036
|
"""
|
17028
17037
|
return self._Platform
|
@@ -17034,7 +17043,6 @@ class CustomerGatewayVendor(AbstractModel):
|
|
17034
17043
|
@property
|
17035
17044
|
def SoftwareVersion(self):
|
17036
17045
|
"""软件版本。
|
17037
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17038
17046
|
:rtype: str
|
17039
17047
|
"""
|
17040
17048
|
return self._SoftwareVersion
|
@@ -17046,7 +17054,6 @@ class CustomerGatewayVendor(AbstractModel):
|
|
17046
17054
|
@property
|
17047
17055
|
def VendorName(self):
|
17048
17056
|
"""供应商名称。
|
17049
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
17050
17057
|
:rtype: str
|
17051
17058
|
"""
|
17052
17059
|
return self._VendorName
|
@@ -36847,42 +36854,34 @@ NAT类型支持网络地址转换配置,类型确定后不能修改;一个
|
|
36847
36854
|
:param _EnableBGPCommunity: 开启和关闭BGP的community属性。
|
36848
36855
|
:type EnableBGPCommunity: bool
|
36849
36856
|
:param _NatGatewayId: 绑定的NAT网关ID。
|
36850
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36851
36857
|
:type NatGatewayId: str
|
36852
36858
|
:param _VXLANSupport: 专线网关是否支持VXLAN架构
|
36853
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36854
36859
|
:type VXLANSupport: list of bool
|
36855
36860
|
:param _ModeType: 云联网路由发布模式:`standard`(标准模式)、`exquisite`(精细模式)。
|
36856
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36857
36861
|
:type ModeType: str
|
36858
36862
|
:param _LocalZone: 是否为localZone专线网关。
|
36859
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36860
36863
|
:type LocalZone: bool
|
36861
36864
|
:param _Zone: 专线网关所在可用区
|
36862
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36863
36865
|
:type Zone: str
|
36864
36866
|
:param _EnableFlowDetails: 网关流控明细启用状态:
|
36865
36867
|
0:关闭
|
36866
36868
|
1:开启
|
36867
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36868
36869
|
:type EnableFlowDetails: int
|
36869
36870
|
:param _FlowDetailsUpdateTime: 开启、关闭网关流控明细时间
|
36870
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36871
36871
|
:type FlowDetailsUpdateTime: str
|
36872
36872
|
:param _NewAfc: 是否支持开启网关流控明细
|
36873
36873
|
0:不支持
|
36874
36874
|
1:支持
|
36875
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36876
36875
|
:type NewAfc: int
|
36877
36876
|
:param _AccessNetworkType: 专线网关接入网络类型:
|
36878
36877
|
<li>`VXLAN` - VXLAN类型。</li>
|
36879
36878
|
<li>`MPLS` - MPLS类型。</li>
|
36880
36879
|
<li>`Hybrid` - Hybrid类型。</li>
|
36881
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36882
36880
|
:type AccessNetworkType: str
|
36883
36881
|
:param _HaZoneList: 跨可用区容灾专线网关的可用区列表
|
36884
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
36885
36882
|
:type HaZoneList: list of str
|
36883
|
+
:param _GatewayAsn: 专线网关自定义ASN
|
36884
|
+
:type GatewayAsn: int
|
36886
36885
|
"""
|
36887
36886
|
self._DirectConnectGatewayId = None
|
36888
36887
|
self._DirectConnectGatewayName = None
|
@@ -36906,6 +36905,7 @@ NAT类型支持网络地址转换配置,类型确定后不能修改;一个
|
|
36906
36905
|
self._NewAfc = None
|
36907
36906
|
self._AccessNetworkType = None
|
36908
36907
|
self._HaZoneList = None
|
36908
|
+
self._GatewayAsn = None
|
36909
36909
|
|
36910
36910
|
@property
|
36911
36911
|
def DirectConnectGatewayId(self):
|
@@ -37051,7 +37051,6 @@ NAT类型支持网络地址转换配置,类型确定后不能修改;一个
|
|
37051
37051
|
@property
|
37052
37052
|
def NatGatewayId(self):
|
37053
37053
|
"""绑定的NAT网关ID。
|
37054
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37055
37054
|
:rtype: str
|
37056
37055
|
"""
|
37057
37056
|
return self._NatGatewayId
|
@@ -37063,7 +37062,6 @@ NAT类型支持网络地址转换配置,类型确定后不能修改;一个
|
|
37063
37062
|
@property
|
37064
37063
|
def VXLANSupport(self):
|
37065
37064
|
"""专线网关是否支持VXLAN架构
|
37066
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37067
37065
|
:rtype: list of bool
|
37068
37066
|
"""
|
37069
37067
|
return self._VXLANSupport
|
@@ -37075,7 +37073,6 @@ NAT类型支持网络地址转换配置,类型确定后不能修改;一个
|
|
37075
37073
|
@property
|
37076
37074
|
def ModeType(self):
|
37077
37075
|
"""云联网路由发布模式:`standard`(标准模式)、`exquisite`(精细模式)。
|
37078
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37079
37076
|
:rtype: str
|
37080
37077
|
"""
|
37081
37078
|
return self._ModeType
|
@@ -37087,7 +37084,6 @@ NAT类型支持网络地址转换配置,类型确定后不能修改;一个
|
|
37087
37084
|
@property
|
37088
37085
|
def LocalZone(self):
|
37089
37086
|
"""是否为localZone专线网关。
|
37090
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37091
37087
|
:rtype: bool
|
37092
37088
|
"""
|
37093
37089
|
return self._LocalZone
|
@@ -37099,7 +37095,6 @@ NAT类型支持网络地址转换配置,类型确定后不能修改;一个
|
|
37099
37095
|
@property
|
37100
37096
|
def Zone(self):
|
37101
37097
|
"""专线网关所在可用区
|
37102
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37103
37098
|
:rtype: str
|
37104
37099
|
"""
|
37105
37100
|
return self._Zone
|
@@ -37113,7 +37108,6 @@ NAT类型支持网络地址转换配置,类型确定后不能修改;一个
|
|
37113
37108
|
"""网关流控明细启用状态:
|
37114
37109
|
0:关闭
|
37115
37110
|
1:开启
|
37116
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37117
37111
|
:rtype: int
|
37118
37112
|
"""
|
37119
37113
|
return self._EnableFlowDetails
|
@@ -37125,7 +37119,6 @@ NAT类型支持网络地址转换配置,类型确定后不能修改;一个
|
|
37125
37119
|
@property
|
37126
37120
|
def FlowDetailsUpdateTime(self):
|
37127
37121
|
"""开启、关闭网关流控明细时间
|
37128
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37129
37122
|
:rtype: str
|
37130
37123
|
"""
|
37131
37124
|
return self._FlowDetailsUpdateTime
|
@@ -37139,7 +37132,6 @@ NAT类型支持网络地址转换配置,类型确定后不能修改;一个
|
|
37139
37132
|
"""是否支持开启网关流控明细
|
37140
37133
|
0:不支持
|
37141
37134
|
1:支持
|
37142
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37143
37135
|
:rtype: int
|
37144
37136
|
"""
|
37145
37137
|
return self._NewAfc
|
@@ -37154,7 +37146,6 @@ NAT类型支持网络地址转换配置,类型确定后不能修改;一个
|
|
37154
37146
|
<li>`VXLAN` - VXLAN类型。</li>
|
37155
37147
|
<li>`MPLS` - MPLS类型。</li>
|
37156
37148
|
<li>`Hybrid` - Hybrid类型。</li>
|
37157
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37158
37149
|
:rtype: str
|
37159
37150
|
"""
|
37160
37151
|
return self._AccessNetworkType
|
@@ -37166,7 +37157,6 @@ NAT类型支持网络地址转换配置,类型确定后不能修改;一个
|
|
37166
37157
|
@property
|
37167
37158
|
def HaZoneList(self):
|
37168
37159
|
"""跨可用区容灾专线网关的可用区列表
|
37169
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
37170
37160
|
:rtype: list of str
|
37171
37161
|
"""
|
37172
37162
|
return self._HaZoneList
|
@@ -37175,6 +37165,17 @@ NAT类型支持网络地址转换配置,类型确定后不能修改;一个
|
|
37175
37165
|
def HaZoneList(self, HaZoneList):
|
37176
37166
|
self._HaZoneList = HaZoneList
|
37177
37167
|
|
37168
|
+
@property
|
37169
|
+
def GatewayAsn(self):
|
37170
|
+
"""专线网关自定义ASN
|
37171
|
+
:rtype: int
|
37172
|
+
"""
|
37173
|
+
return self._GatewayAsn
|
37174
|
+
|
37175
|
+
@GatewayAsn.setter
|
37176
|
+
def GatewayAsn(self, GatewayAsn):
|
37177
|
+
self._GatewayAsn = GatewayAsn
|
37178
|
+
|
37178
37179
|
|
37179
37180
|
def _deserialize(self, params):
|
37180
37181
|
self._DirectConnectGatewayId = params.get("DirectConnectGatewayId")
|
@@ -37199,6 +37200,7 @@ NAT类型支持网络地址转换配置,类型确定后不能修改;一个
|
|
37199
37200
|
self._NewAfc = params.get("NewAfc")
|
37200
37201
|
self._AccessNetworkType = params.get("AccessNetworkType")
|
37201
37202
|
self._HaZoneList = params.get("HaZoneList")
|
37203
|
+
self._GatewayAsn = params.get("GatewayAsn")
|
37202
37204
|
memeber_set = set(params.keys())
|
37203
37205
|
for name, value in vars(self).items():
|
37204
37206
|
property_name = name[1:]
|
@@ -41245,16 +41247,12 @@ class HealthCheckConfig(AbstractModel):
|
|
41245
41247
|
def __init__(self):
|
41246
41248
|
r"""
|
41247
41249
|
:param _ProbeType: 探测模式,默认值NQA,不可修改。
|
41248
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41249
41250
|
:type ProbeType: str
|
41250
41251
|
:param _ProbeInterval: 探测间隔,腾讯云两次健康检查间隔时间,范围【1000-5000】,单位ms。
|
41251
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41252
41252
|
:type ProbeInterval: int
|
41253
41253
|
:param _ProbeThreshold: 探测次数,连续N次健康检查失败后执行路由切换,范围【3-8】,单位次。
|
41254
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41255
41254
|
:type ProbeThreshold: int
|
41256
41255
|
:param _ProbeTimeout: 探测超时时间,范围【10-5000】,单位ms。
|
41257
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41258
41256
|
:type ProbeTimeout: int
|
41259
41257
|
"""
|
41260
41258
|
self._ProbeType = None
|
@@ -41265,7 +41263,6 @@ class HealthCheckConfig(AbstractModel):
|
|
41265
41263
|
@property
|
41266
41264
|
def ProbeType(self):
|
41267
41265
|
"""探测模式,默认值NQA,不可修改。
|
41268
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41269
41266
|
:rtype: str
|
41270
41267
|
"""
|
41271
41268
|
return self._ProbeType
|
@@ -41277,7 +41274,6 @@ class HealthCheckConfig(AbstractModel):
|
|
41277
41274
|
@property
|
41278
41275
|
def ProbeInterval(self):
|
41279
41276
|
"""探测间隔,腾讯云两次健康检查间隔时间,范围【1000-5000】,单位ms。
|
41280
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41281
41277
|
:rtype: int
|
41282
41278
|
"""
|
41283
41279
|
return self._ProbeInterval
|
@@ -41289,7 +41285,6 @@ class HealthCheckConfig(AbstractModel):
|
|
41289
41285
|
@property
|
41290
41286
|
def ProbeThreshold(self):
|
41291
41287
|
"""探测次数,连续N次健康检查失败后执行路由切换,范围【3-8】,单位次。
|
41292
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41293
41288
|
:rtype: int
|
41294
41289
|
"""
|
41295
41290
|
return self._ProbeThreshold
|
@@ -41301,7 +41296,6 @@ class HealthCheckConfig(AbstractModel):
|
|
41301
41296
|
@property
|
41302
41297
|
def ProbeTimeout(self):
|
41303
41298
|
"""探测超时时间,范围【10-5000】,单位ms。
|
41304
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
41305
41299
|
:rtype: int
|
41306
41300
|
"""
|
41307
41301
|
return self._ProbeTimeout
|
@@ -60324,10 +60318,8 @@ class SecurityPolicyDatabase(AbstractModel):
|
|
60324
60318
|
def __init__(self):
|
60325
60319
|
r"""
|
60326
60320
|
:param _LocalCidrBlock: 本端网段
|
60327
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
60328
60321
|
:type LocalCidrBlock: str
|
60329
60322
|
:param _RemoteCidrBlock: 对端网段
|
60330
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
60331
60323
|
:type RemoteCidrBlock: list of str
|
60332
60324
|
"""
|
60333
60325
|
self._LocalCidrBlock = None
|
@@ -60336,7 +60328,6 @@ class SecurityPolicyDatabase(AbstractModel):
|
|
60336
60328
|
@property
|
60337
60329
|
def LocalCidrBlock(self):
|
60338
60330
|
"""本端网段
|
60339
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
60340
60331
|
:rtype: str
|
60341
60332
|
"""
|
60342
60333
|
return self._LocalCidrBlock
|
@@ -60348,7 +60339,6 @@ class SecurityPolicyDatabase(AbstractModel):
|
|
60348
60339
|
@property
|
60349
60340
|
def RemoteCidrBlock(self):
|
60350
60341
|
"""对端网段
|
60351
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
60352
60342
|
:rtype: list of str
|
60353
60343
|
"""
|
60354
60344
|
return self._RemoteCidrBlock
|
@@ -61747,7 +61737,6 @@ class SslVpnSever(AbstractModel):
|
|
61747
61737
|
def __init__(self):
|
61748
61738
|
r"""
|
61749
61739
|
:param _VpcId: VPC实例ID.
|
61750
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
61751
61740
|
:type VpcId: str
|
61752
61741
|
:param _SslVpnServerId: SSL-VPN-SERVER 实例ID。
|
61753
61742
|
:type SslVpnServerId: str
|
@@ -61794,7 +61783,6 @@ class SslVpnSever(AbstractModel):
|
|
61794
61783
|
:param _AccessPolicy: 策略信息
|
61795
61784
|
:type AccessPolicy: list of AccessPolicy
|
61796
61785
|
:param _SpName: CAM服务提供商Name
|
61797
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
61798
61786
|
:type SpName: str
|
61799
61787
|
"""
|
61800
61788
|
self._VpcId = None
|
@@ -61821,7 +61809,6 @@ class SslVpnSever(AbstractModel):
|
|
61821
61809
|
@property
|
61822
61810
|
def VpcId(self):
|
61823
61811
|
"""VPC实例ID.
|
61824
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
61825
61812
|
:rtype: str
|
61826
61813
|
"""
|
61827
61814
|
return self._VpcId
|
@@ -62039,7 +62026,6 @@ class SslVpnSever(AbstractModel):
|
|
62039
62026
|
@property
|
62040
62027
|
def SpName(self):
|
62041
62028
|
"""CAM服务提供商Name
|
62042
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62043
62029
|
:rtype: str
|
62044
62030
|
"""
|
62045
62031
|
return self._SpName
|
@@ -62900,22 +62886,16 @@ class TrafficQosPolicySet(AbstractModel):
|
|
62900
62886
|
def __init__(self):
|
62901
62887
|
r"""
|
62902
62888
|
:param _CcnId: CCN实例ID。形如:ccn-f49l6u0z。
|
62903
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62904
62889
|
:type CcnId: str
|
62905
62890
|
:param _QosId: qos id。
|
62906
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62907
62891
|
:type QosId: int
|
62908
62892
|
:param _QosPolicyDescription: 描述。
|
62909
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62910
62893
|
:type QosPolicyDescription: str
|
62911
62894
|
:param _QosPolicyName: 名称。
|
62912
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62913
62895
|
:type QosPolicyName: str
|
62914
62896
|
:param _Bandwidth: 带宽。
|
62915
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62916
62897
|
:type Bandwidth: int
|
62917
62898
|
:param _QosPolicyId: 流量调度策略ID。
|
62918
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62919
62899
|
:type QosPolicyId: str
|
62920
62900
|
"""
|
62921
62901
|
self._CcnId = None
|
@@ -62928,7 +62908,6 @@ class TrafficQosPolicySet(AbstractModel):
|
|
62928
62908
|
@property
|
62929
62909
|
def CcnId(self):
|
62930
62910
|
"""CCN实例ID。形如:ccn-f49l6u0z。
|
62931
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62932
62911
|
:rtype: str
|
62933
62912
|
"""
|
62934
62913
|
return self._CcnId
|
@@ -62940,7 +62919,6 @@ class TrafficQosPolicySet(AbstractModel):
|
|
62940
62919
|
@property
|
62941
62920
|
def QosId(self):
|
62942
62921
|
"""qos id。
|
62943
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62944
62922
|
:rtype: int
|
62945
62923
|
"""
|
62946
62924
|
return self._QosId
|
@@ -62952,7 +62930,6 @@ class TrafficQosPolicySet(AbstractModel):
|
|
62952
62930
|
@property
|
62953
62931
|
def QosPolicyDescription(self):
|
62954
62932
|
"""描述。
|
62955
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62956
62933
|
:rtype: str
|
62957
62934
|
"""
|
62958
62935
|
return self._QosPolicyDescription
|
@@ -62964,7 +62941,6 @@ class TrafficQosPolicySet(AbstractModel):
|
|
62964
62941
|
@property
|
62965
62942
|
def QosPolicyName(self):
|
62966
62943
|
"""名称。
|
62967
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62968
62944
|
:rtype: str
|
62969
62945
|
"""
|
62970
62946
|
return self._QosPolicyName
|
@@ -62976,7 +62952,6 @@ class TrafficQosPolicySet(AbstractModel):
|
|
62976
62952
|
@property
|
62977
62953
|
def Bandwidth(self):
|
62978
62954
|
"""带宽。
|
62979
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62980
62955
|
:rtype: int
|
62981
62956
|
"""
|
62982
62957
|
return self._Bandwidth
|
@@ -62988,7 +62963,6 @@ class TrafficQosPolicySet(AbstractModel):
|
|
62988
62963
|
@property
|
62989
62964
|
def QosPolicyId(self):
|
62990
62965
|
"""流量调度策略ID。
|
62991
|
-
注意:此字段可能返回 null,表示取不到有效值。
|
62992
62966
|
:rtype: str
|
62993
62967
|
"""
|
62994
62968
|
return self._QosPolicyId
|