tencentcloud-sdk-python-cfw 3.0.1224__tar.gz → 3.0.1230__tar.gz
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-sdk-python-cfw-3.0.1224 → tencentcloud-sdk-python-cfw-3.0.1230}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cfw-3.0.1224 → tencentcloud-sdk-python-cfw-3.0.1230}/setup.py +1 -1
- {tencentcloud-sdk-python-cfw-3.0.1224 → tencentcloud-sdk-python-cfw-3.0.1230}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cfw-3.0.1224 → tencentcloud-sdk-python-cfw-3.0.1230}/tencentcloud/cfw/v20190904/cfw_client.py +0 -25
- {tencentcloud-sdk-python-cfw-3.0.1224 → tencentcloud-sdk-python-cfw-3.0.1230}/tencentcloud/cfw/v20190904/models.py +106 -33
- {tencentcloud-sdk-python-cfw-3.0.1224 → tencentcloud-sdk-python-cfw-3.0.1230}/tencentcloud_sdk_python_cfw.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cfw-3.0.1230/tencentcloud_sdk_python_cfw.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cfw-3.0.1224/tencentcloud_sdk_python_cfw.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cfw-3.0.1224 → tencentcloud-sdk-python-cfw-3.0.1230}/README.rst +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1224 → tencentcloud-sdk-python-cfw-3.0.1230}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1224 → tencentcloud-sdk-python-cfw-3.0.1230}/tencentcloud/cfw/__init__.py +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1224 → tencentcloud-sdk-python-cfw-3.0.1230}/tencentcloud/cfw/v20190904/__init__.py +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1224 → tencentcloud-sdk-python-cfw-3.0.1230}/tencentcloud/cfw/v20190904/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1224 → tencentcloud-sdk-python-cfw-3.0.1230}/tencentcloud_sdk_python_cfw.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1224 → tencentcloud-sdk-python-cfw-3.0.1230}/tencentcloud_sdk_python_cfw.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cfw-3.0.1224 → tencentcloud-sdk-python-cfw-3.0.1230}/tencentcloud_sdk_python_cfw.egg-info/top_level.txt +0 -0
|
@@ -8,7 +8,7 @@ ROOT = os.path.dirname(__file__)
|
|
|
8
8
|
|
|
9
9
|
setup(
|
|
10
10
|
name='tencentcloud-sdk-python-cfw',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1230"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cfw SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -716,31 +716,6 @@ class CfwClient(AbstractClient):
|
|
|
716
716
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
717
717
|
|
|
718
718
|
|
|
719
|
-
def DeleteVpcInstance(self, request):
|
|
720
|
-
"""接口废弃
|
|
721
|
-
|
|
722
|
-
删除防火墙实例
|
|
723
|
-
|
|
724
|
-
:param request: Request instance for DeleteVpcInstance.
|
|
725
|
-
:type request: :class:`tencentcloud.cfw.v20190904.models.DeleteVpcInstanceRequest`
|
|
726
|
-
:rtype: :class:`tencentcloud.cfw.v20190904.models.DeleteVpcInstanceResponse`
|
|
727
|
-
|
|
728
|
-
"""
|
|
729
|
-
try:
|
|
730
|
-
params = request._serialize()
|
|
731
|
-
headers = request.headers
|
|
732
|
-
body = self.call("DeleteVpcInstance", params, headers=headers)
|
|
733
|
-
response = json.loads(body)
|
|
734
|
-
model = models.DeleteVpcInstanceResponse()
|
|
735
|
-
model._deserialize(response["Response"])
|
|
736
|
-
return model
|
|
737
|
-
except Exception as e:
|
|
738
|
-
if isinstance(e, TencentCloudSDKException):
|
|
739
|
-
raise
|
|
740
|
-
else:
|
|
741
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
742
|
-
|
|
743
|
-
|
|
744
719
|
def DescribeAcLists(self, request):
|
|
745
720
|
"""访问控制列表
|
|
746
721
|
|
|
@@ -1074,12 +1074,16 @@ class BanAndAllowRule(AbstractModel):
|
|
|
1074
1074
|
:param _CustomRule: 自定义白名单规则
|
|
1075
1075
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1076
1076
|
:type CustomRule: :class:`tencentcloud.cfw.v20190904.models.CustomWhiteRule`
|
|
1077
|
+
:param _FwType: 放通的引擎: 1针对互联网边界 2针对nat防火墙 4针对vpc防火墙
|
|
1078
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1079
|
+
:type FwType: int
|
|
1077
1080
|
"""
|
|
1078
1081
|
self._Ioc = None
|
|
1079
1082
|
self._DirectionList = None
|
|
1080
1083
|
self._EndTime = None
|
|
1081
1084
|
self._Comment = None
|
|
1082
1085
|
self._CustomRule = None
|
|
1086
|
+
self._FwType = None
|
|
1083
1087
|
|
|
1084
1088
|
@property
|
|
1085
1089
|
def Ioc(self):
|
|
@@ -1121,6 +1125,14 @@ class BanAndAllowRule(AbstractModel):
|
|
|
1121
1125
|
def CustomRule(self, CustomRule):
|
|
1122
1126
|
self._CustomRule = CustomRule
|
|
1123
1127
|
|
|
1128
|
+
@property
|
|
1129
|
+
def FwType(self):
|
|
1130
|
+
return self._FwType
|
|
1131
|
+
|
|
1132
|
+
@FwType.setter
|
|
1133
|
+
def FwType(self, FwType):
|
|
1134
|
+
self._FwType = FwType
|
|
1135
|
+
|
|
1124
1136
|
|
|
1125
1137
|
def _deserialize(self, params):
|
|
1126
1138
|
self._Ioc = params.get("Ioc")
|
|
@@ -1130,6 +1142,7 @@ class BanAndAllowRule(AbstractModel):
|
|
|
1130
1142
|
if params.get("CustomRule") is not None:
|
|
1131
1143
|
self._CustomRule = CustomWhiteRule()
|
|
1132
1144
|
self._CustomRule._deserialize(params.get("CustomRule"))
|
|
1145
|
+
self._FwType = params.get("FwType")
|
|
1133
1146
|
memeber_set = set(params.keys())
|
|
1134
1147
|
for name, value in vars(self).items():
|
|
1135
1148
|
property_name = name[1:]
|
|
@@ -1150,7 +1163,7 @@ class BanAndAllowRuleDel(AbstractModel):
|
|
|
1150
1163
|
:param _Ioc: 封禁和放通对象
|
|
1151
1164
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1152
1165
|
:type Ioc: str
|
|
1153
|
-
:param _DirectionList: 0互联网出站 1互联网入站 5内网访问源 6内网访问目的
|
|
1166
|
+
:param _DirectionList: 0互联网出站 1互联网入站 5内网访问源 6内网访问目的 (DeleteBlockIgnoreRuleNew接口,该字段无效)
|
|
1154
1167
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1155
1168
|
:type DirectionList: str
|
|
1156
1169
|
:param _RuleType: 规则类型
|
|
@@ -1336,6 +1349,9 @@ class BlockIgnoreRule(AbstractModel):
|
|
|
1336
1349
|
:param _CustomRule: 自定义规则细节
|
|
1337
1350
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
1338
1351
|
:type CustomRule: :class:`tencentcloud.cfw.v20190904.models.CustomWhiteRule`
|
|
1352
|
+
:param _FwType: 1 border 2 nat 4 vpc 8 border-serial
|
|
1353
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
1354
|
+
:type FwType: int
|
|
1339
1355
|
"""
|
|
1340
1356
|
self._RuleType = None
|
|
1341
1357
|
self._Ioc = None
|
|
@@ -1360,6 +1376,7 @@ class BlockIgnoreRule(AbstractModel):
|
|
|
1360
1376
|
self._Comment = None
|
|
1361
1377
|
self._LastHitTime = None
|
|
1362
1378
|
self._CustomRule = None
|
|
1379
|
+
self._FwType = None
|
|
1363
1380
|
|
|
1364
1381
|
@property
|
|
1365
1382
|
def RuleType(self):
|
|
@@ -1545,6 +1562,14 @@ class BlockIgnoreRule(AbstractModel):
|
|
|
1545
1562
|
def CustomRule(self, CustomRule):
|
|
1546
1563
|
self._CustomRule = CustomRule
|
|
1547
1564
|
|
|
1565
|
+
@property
|
|
1566
|
+
def FwType(self):
|
|
1567
|
+
return self._FwType
|
|
1568
|
+
|
|
1569
|
+
@FwType.setter
|
|
1570
|
+
def FwType(self, FwType):
|
|
1571
|
+
self._FwType = FwType
|
|
1572
|
+
|
|
1548
1573
|
|
|
1549
1574
|
def _deserialize(self, params):
|
|
1550
1575
|
self._RuleType = params.get("RuleType")
|
|
@@ -1572,6 +1597,7 @@ class BlockIgnoreRule(AbstractModel):
|
|
|
1572
1597
|
if params.get("CustomRule") is not None:
|
|
1573
1598
|
self._CustomRule = CustomWhiteRule()
|
|
1574
1599
|
self._CustomRule._deserialize(params.get("CustomRule"))
|
|
1600
|
+
self._FwType = params.get("FwType")
|
|
1575
1601
|
memeber_set = set(params.keys())
|
|
1576
1602
|
for name, value in vars(self).items():
|
|
1577
1603
|
property_name = name[1:]
|
|
@@ -3426,6 +3452,8 @@ class CreateNatRuleItem(AbstractModel):
|
|
|
3426
3452
|
:type ParamTemplateId: str
|
|
3427
3453
|
:param _InternalUuid: 内部id
|
|
3428
3454
|
:type InternalUuid: int
|
|
3455
|
+
:param _Scope: 规则生效的范围:ALL,全局生效;ap-guangzhou,生效的地域;cfwnat-xxx,生效基于实例维度
|
|
3456
|
+
:type Scope: str
|
|
3429
3457
|
"""
|
|
3430
3458
|
self._SourceContent = None
|
|
3431
3459
|
self._SourceType = None
|
|
@@ -3441,6 +3469,7 @@ class CreateNatRuleItem(AbstractModel):
|
|
|
3441
3469
|
self._Description = None
|
|
3442
3470
|
self._ParamTemplateId = None
|
|
3443
3471
|
self._InternalUuid = None
|
|
3472
|
+
self._Scope = None
|
|
3444
3473
|
|
|
3445
3474
|
@property
|
|
3446
3475
|
def SourceContent(self):
|
|
@@ -3554,6 +3583,14 @@ class CreateNatRuleItem(AbstractModel):
|
|
|
3554
3583
|
def InternalUuid(self, InternalUuid):
|
|
3555
3584
|
self._InternalUuid = InternalUuid
|
|
3556
3585
|
|
|
3586
|
+
@property
|
|
3587
|
+
def Scope(self):
|
|
3588
|
+
return self._Scope
|
|
3589
|
+
|
|
3590
|
+
@Scope.setter
|
|
3591
|
+
def Scope(self, Scope):
|
|
3592
|
+
self._Scope = Scope
|
|
3593
|
+
|
|
3557
3594
|
|
|
3558
3595
|
def _deserialize(self, params):
|
|
3559
3596
|
self._SourceContent = params.get("SourceContent")
|
|
@@ -3570,6 +3607,7 @@ class CreateNatRuleItem(AbstractModel):
|
|
|
3570
3607
|
self._Description = params.get("Description")
|
|
3571
3608
|
self._ParamTemplateId = params.get("ParamTemplateId")
|
|
3572
3609
|
self._InternalUuid = params.get("InternalUuid")
|
|
3610
|
+
self._Scope = params.get("Scope")
|
|
3573
3611
|
memeber_set = set(params.keys())
|
|
3574
3612
|
for name, value in vars(self).items():
|
|
3575
3613
|
property_name = name[1:]
|
|
@@ -5282,37 +5320,6 @@ class DeleteVpcFwGroupResponse(AbstractModel):
|
|
|
5282
5320
|
self._RequestId = params.get("RequestId")
|
|
5283
5321
|
|
|
5284
5322
|
|
|
5285
|
-
class DeleteVpcInstanceRequest(AbstractModel):
|
|
5286
|
-
"""DeleteVpcInstance请求参数结构体
|
|
5287
|
-
|
|
5288
|
-
"""
|
|
5289
|
-
|
|
5290
|
-
|
|
5291
|
-
class DeleteVpcInstanceResponse(AbstractModel):
|
|
5292
|
-
"""DeleteVpcInstance返回参数结构体
|
|
5293
|
-
|
|
5294
|
-
"""
|
|
5295
|
-
|
|
5296
|
-
def __init__(self):
|
|
5297
|
-
r"""
|
|
5298
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
5299
|
-
:type RequestId: str
|
|
5300
|
-
"""
|
|
5301
|
-
self._RequestId = None
|
|
5302
|
-
|
|
5303
|
-
@property
|
|
5304
|
-
def RequestId(self):
|
|
5305
|
-
return self._RequestId
|
|
5306
|
-
|
|
5307
|
-
@RequestId.setter
|
|
5308
|
-
def RequestId(self, RequestId):
|
|
5309
|
-
self._RequestId = RequestId
|
|
5310
|
-
|
|
5311
|
-
|
|
5312
|
-
def _deserialize(self, params):
|
|
5313
|
-
self._RequestId = params.get("RequestId")
|
|
5314
|
-
|
|
5315
|
-
|
|
5316
5323
|
class DescAcItem(AbstractModel):
|
|
5317
5324
|
"""访问控制列表对象
|
|
5318
5325
|
|
|
@@ -5393,9 +5400,13 @@ class DescAcItem(AbstractModel):
|
|
|
5393
5400
|
:param _BetaList: 关联任务详情
|
|
5394
5401
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5395
5402
|
:type BetaList: list of BetaInfoByACL
|
|
5396
|
-
:param _Scope:
|
|
5403
|
+
:param _Scope: (1)互联网边界防火墙,生效范围:serial,串行;side,旁路;all,全局;
|
|
5404
|
+
(2)NAT边界防火墙:ALL,全局生效;ap-guangzhou,生效的地域;cfwnat-xxx,生效基于实例维度
|
|
5397
5405
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5398
5406
|
:type Scope: str
|
|
5407
|
+
:param _ScopeDesc: 生效范围描述
|
|
5408
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
5409
|
+
:type ScopeDesc: str
|
|
5399
5410
|
:param _InternetBorderUuid: 互联网边界防火墙使用的内部规则id
|
|
5400
5411
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
5401
5412
|
:type InternetBorderUuid: str
|
|
@@ -5441,6 +5452,7 @@ class DescAcItem(AbstractModel):
|
|
|
5441
5452
|
self._Status = None
|
|
5442
5453
|
self._BetaList = None
|
|
5443
5454
|
self._Scope = None
|
|
5455
|
+
self._ScopeDesc = None
|
|
5444
5456
|
self._InternetBorderUuid = None
|
|
5445
5457
|
self._ParamTemplateName = None
|
|
5446
5458
|
self._ParamTemplateId = None
|
|
@@ -5656,6 +5668,14 @@ class DescAcItem(AbstractModel):
|
|
|
5656
5668
|
def Scope(self, Scope):
|
|
5657
5669
|
self._Scope = Scope
|
|
5658
5670
|
|
|
5671
|
+
@property
|
|
5672
|
+
def ScopeDesc(self):
|
|
5673
|
+
return self._ScopeDesc
|
|
5674
|
+
|
|
5675
|
+
@ScopeDesc.setter
|
|
5676
|
+
def ScopeDesc(self, ScopeDesc):
|
|
5677
|
+
self._ScopeDesc = ScopeDesc
|
|
5678
|
+
|
|
5659
5679
|
@property
|
|
5660
5680
|
def InternetBorderUuid(self):
|
|
5661
5681
|
return self._InternetBorderUuid
|
|
@@ -5737,6 +5757,7 @@ class DescAcItem(AbstractModel):
|
|
|
5737
5757
|
obj._deserialize(item)
|
|
5738
5758
|
self._BetaList.append(obj)
|
|
5739
5759
|
self._Scope = params.get("Scope")
|
|
5760
|
+
self._ScopeDesc = params.get("ScopeDesc")
|
|
5740
5761
|
self._InternetBorderUuid = params.get("InternetBorderUuid")
|
|
5741
5762
|
self._ParamTemplateName = params.get("ParamTemplateName")
|
|
5742
5763
|
self._ParamTemplateId = params.get("ParamTemplateId")
|
|
@@ -11553,6 +11574,9 @@ class EdgeIpInfo(AbstractModel):
|
|
|
11553
11574
|
:param _Domain: 域名化CLB的域名
|
|
11554
11575
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11555
11576
|
:type Domain: str
|
|
11577
|
+
:param _OverUsedStatus: IP超量状态
|
|
11578
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
11579
|
+
:type OverUsedStatus: int
|
|
11556
11580
|
"""
|
|
11557
11581
|
self._PublicIp = None
|
|
11558
11582
|
self._PublicIpType = None
|
|
@@ -11576,6 +11600,7 @@ class EdgeIpInfo(AbstractModel):
|
|
|
11576
11600
|
self._SwitchMode = None
|
|
11577
11601
|
self._SwitchWeight = None
|
|
11578
11602
|
self._Domain = None
|
|
11603
|
+
self._OverUsedStatus = None
|
|
11579
11604
|
|
|
11580
11605
|
@property
|
|
11581
11606
|
def PublicIp(self):
|
|
@@ -11753,6 +11778,14 @@ class EdgeIpInfo(AbstractModel):
|
|
|
11753
11778
|
def Domain(self, Domain):
|
|
11754
11779
|
self._Domain = Domain
|
|
11755
11780
|
|
|
11781
|
+
@property
|
|
11782
|
+
def OverUsedStatus(self):
|
|
11783
|
+
return self._OverUsedStatus
|
|
11784
|
+
|
|
11785
|
+
@OverUsedStatus.setter
|
|
11786
|
+
def OverUsedStatus(self, OverUsedStatus):
|
|
11787
|
+
self._OverUsedStatus = OverUsedStatus
|
|
11788
|
+
|
|
11756
11789
|
|
|
11757
11790
|
def _deserialize(self, params):
|
|
11758
11791
|
self._PublicIp = params.get("PublicIp")
|
|
@@ -11777,6 +11810,7 @@ class EdgeIpInfo(AbstractModel):
|
|
|
11777
11810
|
self._SwitchMode = params.get("SwitchMode")
|
|
11778
11811
|
self._SwitchWeight = params.get("SwitchWeight")
|
|
11779
11812
|
self._Domain = params.get("Domain")
|
|
11813
|
+
self._OverUsedStatus = params.get("OverUsedStatus")
|
|
11780
11814
|
memeber_set = set(params.keys())
|
|
11781
11815
|
for name, value in vars(self).items():
|
|
11782
11816
|
property_name = name[1:]
|
|
@@ -17052,6 +17086,15 @@ class NatSwitchListData(AbstractModel):
|
|
|
17052
17086
|
:param _Abnormal: 开关是否异常,0:正常,1:异常
|
|
17053
17087
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
17054
17088
|
:type Abnormal: int
|
|
17089
|
+
:param _ORTableId: nat防火墙出口路由表id
|
|
17090
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
17091
|
+
:type ORTableId: str
|
|
17092
|
+
:param _ORTableName: nat防火墙出口路由表名称
|
|
17093
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
17094
|
+
:type ORTableName: str
|
|
17095
|
+
:param _Ohavips: 出口Snat Ip列表
|
|
17096
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
17097
|
+
:type Ohavips: list of str
|
|
17055
17098
|
"""
|
|
17056
17099
|
self._Id = None
|
|
17057
17100
|
self._SubnetId = None
|
|
@@ -17070,6 +17113,9 @@ class NatSwitchListData(AbstractModel):
|
|
|
17070
17113
|
self._NatInsName = None
|
|
17071
17114
|
self._Region = None
|
|
17072
17115
|
self._Abnormal = None
|
|
17116
|
+
self._ORTableId = None
|
|
17117
|
+
self._ORTableName = None
|
|
17118
|
+
self._Ohavips = None
|
|
17073
17119
|
|
|
17074
17120
|
@property
|
|
17075
17121
|
def Id(self):
|
|
@@ -17207,6 +17253,30 @@ class NatSwitchListData(AbstractModel):
|
|
|
17207
17253
|
def Abnormal(self, Abnormal):
|
|
17208
17254
|
self._Abnormal = Abnormal
|
|
17209
17255
|
|
|
17256
|
+
@property
|
|
17257
|
+
def ORTableId(self):
|
|
17258
|
+
return self._ORTableId
|
|
17259
|
+
|
|
17260
|
+
@ORTableId.setter
|
|
17261
|
+
def ORTableId(self, ORTableId):
|
|
17262
|
+
self._ORTableId = ORTableId
|
|
17263
|
+
|
|
17264
|
+
@property
|
|
17265
|
+
def ORTableName(self):
|
|
17266
|
+
return self._ORTableName
|
|
17267
|
+
|
|
17268
|
+
@ORTableName.setter
|
|
17269
|
+
def ORTableName(self, ORTableName):
|
|
17270
|
+
self._ORTableName = ORTableName
|
|
17271
|
+
|
|
17272
|
+
@property
|
|
17273
|
+
def Ohavips(self):
|
|
17274
|
+
return self._Ohavips
|
|
17275
|
+
|
|
17276
|
+
@Ohavips.setter
|
|
17277
|
+
def Ohavips(self, Ohavips):
|
|
17278
|
+
self._Ohavips = Ohavips
|
|
17279
|
+
|
|
17210
17280
|
|
|
17211
17281
|
def _deserialize(self, params):
|
|
17212
17282
|
self._Id = params.get("Id")
|
|
@@ -17226,6 +17296,9 @@ class NatSwitchListData(AbstractModel):
|
|
|
17226
17296
|
self._NatInsName = params.get("NatInsName")
|
|
17227
17297
|
self._Region = params.get("Region")
|
|
17228
17298
|
self._Abnormal = params.get("Abnormal")
|
|
17299
|
+
self._ORTableId = params.get("ORTableId")
|
|
17300
|
+
self._ORTableName = params.get("ORTableName")
|
|
17301
|
+
self._Ohavips = params.get("Ohavips")
|
|
17229
17302
|
memeber_set = set(params.keys())
|
|
17230
17303
|
for name, value in vars(self).items():
|
|
17231
17304
|
property_name = name[1:]
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1230
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1224
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|