tencentcloud-sdk-python-cfw 3.0.951__py2.py3-none-any.whl → 3.0.970__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/cfw/v20190904/models.py +78 -0
- {tencentcloud_sdk_python_cfw-3.0.951.dist-info → tencentcloud_sdk_python_cfw-3.0.970.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_cfw-3.0.970.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_cfw-3.0.951.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_cfw-3.0.951.dist-info → tencentcloud_sdk_python_cfw-3.0.970.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_cfw-3.0.951.dist-info → tencentcloud_sdk_python_cfw-3.0.970.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -3201,6 +3201,12 @@ class DescAcItem(AbstractModel):
|
|
|
3201
3201
|
:param _BetaList: 关联任务详情
|
|
3202
3202
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
3203
3203
|
:type BetaList: list of BetaInfoByACL
|
|
3204
|
+
:param _Scope: 生效范围:serial,串行;side,旁路;all,全局
|
|
3205
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3206
|
+
:type Scope: str
|
|
3207
|
+
:param _InternetBorderUuid: 互联网边界防火墙使用的内部规则id
|
|
3208
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
3209
|
+
:type InternetBorderUuid: str
|
|
3204
3210
|
"""
|
|
3205
3211
|
self._SourceContent = None
|
|
3206
3212
|
self._TargetContent = None
|
|
@@ -3227,6 +3233,8 @@ class DescAcItem(AbstractModel):
|
|
|
3227
3233
|
self._InternalUuid = None
|
|
3228
3234
|
self._Status = None
|
|
3229
3235
|
self._BetaList = None
|
|
3236
|
+
self._Scope = None
|
|
3237
|
+
self._InternetBorderUuid = None
|
|
3230
3238
|
|
|
3231
3239
|
@property
|
|
3232
3240
|
def SourceContent(self):
|
|
@@ -3428,6 +3436,22 @@ class DescAcItem(AbstractModel):
|
|
|
3428
3436
|
def BetaList(self, BetaList):
|
|
3429
3437
|
self._BetaList = BetaList
|
|
3430
3438
|
|
|
3439
|
+
@property
|
|
3440
|
+
def Scope(self):
|
|
3441
|
+
return self._Scope
|
|
3442
|
+
|
|
3443
|
+
@Scope.setter
|
|
3444
|
+
def Scope(self, Scope):
|
|
3445
|
+
self._Scope = Scope
|
|
3446
|
+
|
|
3447
|
+
@property
|
|
3448
|
+
def InternetBorderUuid(self):
|
|
3449
|
+
return self._InternetBorderUuid
|
|
3450
|
+
|
|
3451
|
+
@InternetBorderUuid.setter
|
|
3452
|
+
def InternetBorderUuid(self, InternetBorderUuid):
|
|
3453
|
+
self._InternetBorderUuid = InternetBorderUuid
|
|
3454
|
+
|
|
3431
3455
|
|
|
3432
3456
|
def _deserialize(self, params):
|
|
3433
3457
|
self._SourceContent = params.get("SourceContent")
|
|
@@ -3460,6 +3484,8 @@ class DescAcItem(AbstractModel):
|
|
|
3460
3484
|
obj = BetaInfoByACL()
|
|
3461
3485
|
obj._deserialize(item)
|
|
3462
3486
|
self._BetaList.append(obj)
|
|
3487
|
+
self._Scope = params.get("Scope")
|
|
3488
|
+
self._InternetBorderUuid = params.get("InternetBorderUuid")
|
|
3463
3489
|
memeber_set = set(params.keys())
|
|
3464
3490
|
for name, value in vars(self).items():
|
|
3465
3491
|
property_name = name[1:]
|
|
@@ -10212,6 +10238,12 @@ class NatInstanceInfo(AbstractModel):
|
|
|
10212
10238
|
:param _RuleMax: 实例的规则限制最大规格数
|
|
10213
10239
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
10214
10240
|
:type RuleMax: int
|
|
10241
|
+
:param _EngineVersion: 实例引擎版本
|
|
10242
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10243
|
+
:type EngineVersion: str
|
|
10244
|
+
:param _UpdateEnable: 引擎是否可升级:0,不可升级;1,可升级
|
|
10245
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
10246
|
+
:type UpdateEnable: int
|
|
10215
10247
|
"""
|
|
10216
10248
|
self._NatinsId = None
|
|
10217
10249
|
self._NatinsName = None
|
|
@@ -10230,6 +10262,8 @@ class NatInstanceInfo(AbstractModel):
|
|
|
10230
10262
|
self._ZoneZhBak = None
|
|
10231
10263
|
self._RuleUsed = None
|
|
10232
10264
|
self._RuleMax = None
|
|
10265
|
+
self._EngineVersion = None
|
|
10266
|
+
self._UpdateEnable = None
|
|
10233
10267
|
|
|
10234
10268
|
@property
|
|
10235
10269
|
def NatinsId(self):
|
|
@@ -10367,6 +10401,22 @@ class NatInstanceInfo(AbstractModel):
|
|
|
10367
10401
|
def RuleMax(self, RuleMax):
|
|
10368
10402
|
self._RuleMax = RuleMax
|
|
10369
10403
|
|
|
10404
|
+
@property
|
|
10405
|
+
def EngineVersion(self):
|
|
10406
|
+
return self._EngineVersion
|
|
10407
|
+
|
|
10408
|
+
@EngineVersion.setter
|
|
10409
|
+
def EngineVersion(self, EngineVersion):
|
|
10410
|
+
self._EngineVersion = EngineVersion
|
|
10411
|
+
|
|
10412
|
+
@property
|
|
10413
|
+
def UpdateEnable(self):
|
|
10414
|
+
return self._UpdateEnable
|
|
10415
|
+
|
|
10416
|
+
@UpdateEnable.setter
|
|
10417
|
+
def UpdateEnable(self, UpdateEnable):
|
|
10418
|
+
self._UpdateEnable = UpdateEnable
|
|
10419
|
+
|
|
10370
10420
|
|
|
10371
10421
|
def _deserialize(self, params):
|
|
10372
10422
|
self._NatinsId = params.get("NatinsId")
|
|
@@ -10386,6 +10436,8 @@ class NatInstanceInfo(AbstractModel):
|
|
|
10386
10436
|
self._ZoneZhBak = params.get("ZoneZhBak")
|
|
10387
10437
|
self._RuleUsed = params.get("RuleUsed")
|
|
10388
10438
|
self._RuleMax = params.get("RuleMax")
|
|
10439
|
+
self._EngineVersion = params.get("EngineVersion")
|
|
10440
|
+
self._UpdateEnable = params.get("UpdateEnable")
|
|
10389
10441
|
memeber_set = set(params.keys())
|
|
10390
10442
|
for name, value in vars(self).items():
|
|
10391
10443
|
property_name = name[1:]
|
|
@@ -13065,6 +13117,12 @@ class VpcDnsInfo(AbstractModel):
|
|
|
13065
13117
|
:type NatInsName: str
|
|
13066
13118
|
:param _SwitchStatus: 0:开关关闭 , 1: 开关打开
|
|
13067
13119
|
:type SwitchStatus: int
|
|
13120
|
+
:param _ProtectedStatus: 0:未防护, 1: 已防护,2:忽略此字段
|
|
13121
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13122
|
+
:type ProtectedStatus: int
|
|
13123
|
+
:param _SupportDNSFW: 是否支持DNS FW,0-不支持、1-支持
|
|
13124
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
13125
|
+
:type SupportDNSFW: int
|
|
13068
13126
|
"""
|
|
13069
13127
|
self._VpcId = None
|
|
13070
13128
|
self._VpcName = None
|
|
@@ -13074,6 +13132,8 @@ class VpcDnsInfo(AbstractModel):
|
|
|
13074
13132
|
self._NatInsId = None
|
|
13075
13133
|
self._NatInsName = None
|
|
13076
13134
|
self._SwitchStatus = None
|
|
13135
|
+
self._ProtectedStatus = None
|
|
13136
|
+
self._SupportDNSFW = None
|
|
13077
13137
|
|
|
13078
13138
|
@property
|
|
13079
13139
|
def VpcId(self):
|
|
@@ -13139,6 +13199,22 @@ class VpcDnsInfo(AbstractModel):
|
|
|
13139
13199
|
def SwitchStatus(self, SwitchStatus):
|
|
13140
13200
|
self._SwitchStatus = SwitchStatus
|
|
13141
13201
|
|
|
13202
|
+
@property
|
|
13203
|
+
def ProtectedStatus(self):
|
|
13204
|
+
return self._ProtectedStatus
|
|
13205
|
+
|
|
13206
|
+
@ProtectedStatus.setter
|
|
13207
|
+
def ProtectedStatus(self, ProtectedStatus):
|
|
13208
|
+
self._ProtectedStatus = ProtectedStatus
|
|
13209
|
+
|
|
13210
|
+
@property
|
|
13211
|
+
def SupportDNSFW(self):
|
|
13212
|
+
return self._SupportDNSFW
|
|
13213
|
+
|
|
13214
|
+
@SupportDNSFW.setter
|
|
13215
|
+
def SupportDNSFW(self, SupportDNSFW):
|
|
13216
|
+
self._SupportDNSFW = SupportDNSFW
|
|
13217
|
+
|
|
13142
13218
|
|
|
13143
13219
|
def _deserialize(self, params):
|
|
13144
13220
|
self._VpcId = params.get("VpcId")
|
|
@@ -13149,6 +13225,8 @@ class VpcDnsInfo(AbstractModel):
|
|
|
13149
13225
|
self._NatInsId = params.get("NatInsId")
|
|
13150
13226
|
self._NatInsName = params.get("NatInsName")
|
|
13151
13227
|
self._SwitchStatus = params.get("SwitchStatus")
|
|
13228
|
+
self._ProtectedStatus = params.get("ProtectedStatus")
|
|
13229
|
+
self._SupportDNSFW = params.get("SupportDNSFW")
|
|
13152
13230
|
memeber_set = set(params.keys())
|
|
13153
13231
|
for name, value in vars(self).items():
|
|
13154
13232
|
property_name = name[1:]
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cfw
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.970
|
|
4
4
|
Summary: Tencent Cloud Cfw SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
@@ -15,7 +15,7 @@ Classifier: Programming Language :: Python :: 2.7
|
|
|
15
15
|
Classifier: Programming Language :: Python :: 3
|
|
16
16
|
Classifier: Programming Language :: Python :: 3.6
|
|
17
17
|
Classifier: Programming Language :: Python :: 3.7
|
|
18
|
-
Requires-Dist: tencentcloud-sdk-python-common (==3.0.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common (==3.0.970)
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=9IaO6jljFEiZ_peo1meoAmK6W9VLrpLs4lSdXLGdp_c,630
|
|
2
|
+
tencentcloud/cfw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
tencentcloud/cfw/v20190904/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
tencentcloud/cfw/v20190904/cfw_client.py,sha256=RBk_I_W7urTT2sR-oo3yNSpb1KndQtF2WH2JA5VfXYs,69536
|
|
5
|
+
tencentcloud/cfw/v20190904/errorcodes.py,sha256=2y2EJLTrMm-Ru0J3RAq8x59OHTtWQrRQMTQOf3_D1v0,1836
|
|
6
|
+
tencentcloud/cfw/v20190904/models.py,sha256=MSF76jLt8KOE9htTsMKGsbRllhpIm3DGbcYJB67BvD4,363397
|
|
7
|
+
tencentcloud_sdk_python_cfw-3.0.970.dist-info/METADATA,sha256=6yxXH9YoaIRT1VPpsgPNYU1OFYYxOROOmOsZuE1HQIo,1490
|
|
8
|
+
tencentcloud_sdk_python_cfw-3.0.970.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_cfw-3.0.970.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_cfw-3.0.970.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=6tMkn99MyF3CgA64yER-MQQU0VtQeL2oWx1Dxm0wUAc,630
|
|
2
|
-
tencentcloud/cfw/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
tencentcloud/cfw/v20190904/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
tencentcloud/cfw/v20190904/cfw_client.py,sha256=RBk_I_W7urTT2sR-oo3yNSpb1KndQtF2WH2JA5VfXYs,69536
|
|
5
|
-
tencentcloud/cfw/v20190904/errorcodes.py,sha256=2y2EJLTrMm-Ru0J3RAq8x59OHTtWQrRQMTQOf3_D1v0,1836
|
|
6
|
-
tencentcloud/cfw/v20190904/models.py,sha256=cjVmOwsJBL8Jbmtnkd3UWhNZvHusbjZF85RerIACFWw,360649
|
|
7
|
-
tencentcloud_sdk_python_cfw-3.0.951.dist-info/METADATA,sha256=Xx_ZFk35TaytnooNuks1MliP-y2zLZV7iTQ_s4S0XCc,1490
|
|
8
|
-
tencentcloud_sdk_python_cfw-3.0.951.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_cfw-3.0.951.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_cfw-3.0.951.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|