tencentcloud-sdk-python-cfw 3.1.94__tar.gz → 3.1.101__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.1.94 → tencentcloud_sdk_python_cfw-3.1.101}/PKG-INFO +2 -2
- {tencentcloud_sdk_python_cfw-3.1.94 → tencentcloud_sdk_python_cfw-3.1.101}/setup.py +1 -1
- {tencentcloud_sdk_python_cfw-3.1.94 → tencentcloud_sdk_python_cfw-3.1.101}/tencentcloud/__init__.py +1 -1
- {tencentcloud_sdk_python_cfw-3.1.94 → tencentcloud_sdk_python_cfw-3.1.101}/tencentcloud/cfw/v20190904/cfw_client.py +23 -0
- {tencentcloud_sdk_python_cfw-3.1.94 → tencentcloud_sdk_python_cfw-3.1.101}/tencentcloud/cfw/v20190904/cfw_client_async.py +18 -0
- {tencentcloud_sdk_python_cfw-3.1.94 → tencentcloud_sdk_python_cfw-3.1.101}/tencentcloud/cfw/v20190904/models.py +379 -64
- {tencentcloud_sdk_python_cfw-3.1.94 → tencentcloud_sdk_python_cfw-3.1.101}/tencentcloud_sdk_python_cfw.egg-info/PKG-INFO +2 -2
- tencentcloud_sdk_python_cfw-3.1.101/tencentcloud_sdk_python_cfw.egg-info/requires.txt +1 -0
- tencentcloud_sdk_python_cfw-3.1.94/tencentcloud_sdk_python_cfw.egg-info/requires.txt +0 -1
- {tencentcloud_sdk_python_cfw-3.1.94 → tencentcloud_sdk_python_cfw-3.1.101}/README.rst +0 -0
- {tencentcloud_sdk_python_cfw-3.1.94 → tencentcloud_sdk_python_cfw-3.1.101}/setup.cfg +0 -0
- {tencentcloud_sdk_python_cfw-3.1.94 → tencentcloud_sdk_python_cfw-3.1.101}/tencentcloud/cfw/__init__.py +0 -0
- {tencentcloud_sdk_python_cfw-3.1.94 → tencentcloud_sdk_python_cfw-3.1.101}/tencentcloud/cfw/v20190904/__init__.py +0 -0
- {tencentcloud_sdk_python_cfw-3.1.94 → tencentcloud_sdk_python_cfw-3.1.101}/tencentcloud/cfw/v20190904/errorcodes.py +0 -0
- {tencentcloud_sdk_python_cfw-3.1.94 → tencentcloud_sdk_python_cfw-3.1.101}/tencentcloud_sdk_python_cfw.egg-info/SOURCES.txt +0 -0
- {tencentcloud_sdk_python_cfw-3.1.94 → tencentcloud_sdk_python_cfw-3.1.101}/tencentcloud_sdk_python_cfw.egg-info/dependency_links.txt +0 -0
- {tencentcloud_sdk_python_cfw-3.1.94 → tencentcloud_sdk_python_cfw-3.1.101}/tencentcloud_sdk_python_cfw.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cfw
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.101
|
|
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<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.101
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -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.1.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common>=3.1.101,<4.0.0"],
|
|
12
12
|
|
|
13
13
|
version=tencentcloud.__version__,
|
|
14
14
|
description='Tencent Cloud Cfw SDK for Python',
|
|
@@ -1040,6 +1040,29 @@ class CfwClient(AbstractClient):
|
|
|
1040
1040
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1041
1041
|
|
|
1042
1042
|
|
|
1043
|
+
def DescribeEdgeIpSimple(self, request):
|
|
1044
|
+
r"""互联网边界防火墙开关列表(轻量)
|
|
1045
|
+
|
|
1046
|
+
:param request: Request instance for DescribeEdgeIpSimple.
|
|
1047
|
+
:type request: :class:`tencentcloud.cfw.v20190904.models.DescribeEdgeIpSimpleRequest`
|
|
1048
|
+
:rtype: :class:`tencentcloud.cfw.v20190904.models.DescribeEdgeIpSimpleResponse`
|
|
1049
|
+
|
|
1050
|
+
"""
|
|
1051
|
+
try:
|
|
1052
|
+
params = request._serialize()
|
|
1053
|
+
headers = request.headers
|
|
1054
|
+
body = self.call("DescribeEdgeIpSimple", params, headers=headers)
|
|
1055
|
+
response = json.loads(body)
|
|
1056
|
+
model = models.DescribeEdgeIpSimpleResponse()
|
|
1057
|
+
model._deserialize(response["Response"])
|
|
1058
|
+
return model
|
|
1059
|
+
except Exception as e:
|
|
1060
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1061
|
+
raise
|
|
1062
|
+
else:
|
|
1063
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1064
|
+
|
|
1065
|
+
|
|
1043
1066
|
def DescribeEnterpriseSGRuleProgress(self, request):
|
|
1044
1067
|
r"""查询新版安全组下发进度
|
|
1045
1068
|
|
|
@@ -819,6 +819,24 @@ class CfwClient(AbstractClient):
|
|
|
819
819
|
|
|
820
820
|
return await self.call_and_deserialize(**kwargs)
|
|
821
821
|
|
|
822
|
+
async def DescribeEdgeIpSimple(
|
|
823
|
+
self,
|
|
824
|
+
request: models.DescribeEdgeIpSimpleRequest,
|
|
825
|
+
opts: Dict = None,
|
|
826
|
+
) -> models.DescribeEdgeIpSimpleResponse:
|
|
827
|
+
"""
|
|
828
|
+
互联网边界防火墙开关列表(轻量)
|
|
829
|
+
"""
|
|
830
|
+
|
|
831
|
+
kwargs = {}
|
|
832
|
+
kwargs["action"] = "DescribeEdgeIpSimple"
|
|
833
|
+
kwargs["params"] = request._serialize()
|
|
834
|
+
kwargs["resp_cls"] = models.DescribeEdgeIpSimpleResponse
|
|
835
|
+
kwargs["headers"] = request.headers
|
|
836
|
+
kwargs["opts"] = opts or {}
|
|
837
|
+
|
|
838
|
+
return await self.call_and_deserialize(**kwargs)
|
|
839
|
+
|
|
822
840
|
async def DescribeEnterpriseSGRuleProgress(
|
|
823
841
|
self,
|
|
824
842
|
request: models.DescribeEnterpriseSGRuleProgressRequest,
|
|
@@ -8075,21 +8075,21 @@ class DescribeAclRuleRequest(AbstractModel):
|
|
|
8075
8075
|
|
|
8076
8076
|
def __init__(self):
|
|
8077
8077
|
r"""
|
|
8078
|
-
:param _Limit:
|
|
8078
|
+
:param _Limit: <p>每页条数</p>
|
|
8079
8079
|
:type Limit: int
|
|
8080
|
-
:param _Offset:
|
|
8080
|
+
:param _Offset: <p>偏移值</p>
|
|
8081
8081
|
:type Offset: int
|
|
8082
|
-
:param _Index:
|
|
8082
|
+
:param _Index: <p>需要查询的索引,特定场景使用,可不填</p>
|
|
8083
8083
|
:type Index: str
|
|
8084
|
-
:param _Filters:
|
|
8084
|
+
:param _Filters: <p>过滤条件组合</p>
|
|
8085
8085
|
:type Filters: list of CommonFilter
|
|
8086
|
-
:param _StartTime:
|
|
8086
|
+
:param _StartTime: <p>检索的起始时间,可不传</p>
|
|
8087
8087
|
:type StartTime: str
|
|
8088
|
-
:param _EndTime:
|
|
8088
|
+
:param _EndTime: <p>检索的截止时间,可不传</p>
|
|
8089
8089
|
:type EndTime: str
|
|
8090
|
-
:param _Order: desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值,默认为asc
|
|
8090
|
+
:param _Order: <p>desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值,默认为asc</p>
|
|
8091
8091
|
:type Order: str
|
|
8092
|
-
:param _By:
|
|
8092
|
+
:param _By: <p>排序所用到的字段,默认为sequence</p>
|
|
8093
8093
|
:type By: str
|
|
8094
8094
|
"""
|
|
8095
8095
|
self._Limit = None
|
|
@@ -8103,7 +8103,7 @@ class DescribeAclRuleRequest(AbstractModel):
|
|
|
8103
8103
|
|
|
8104
8104
|
@property
|
|
8105
8105
|
def Limit(self):
|
|
8106
|
-
r"""
|
|
8106
|
+
r"""<p>每页条数</p>
|
|
8107
8107
|
:rtype: int
|
|
8108
8108
|
"""
|
|
8109
8109
|
return self._Limit
|
|
@@ -8114,7 +8114,7 @@ class DescribeAclRuleRequest(AbstractModel):
|
|
|
8114
8114
|
|
|
8115
8115
|
@property
|
|
8116
8116
|
def Offset(self):
|
|
8117
|
-
r"""
|
|
8117
|
+
r"""<p>偏移值</p>
|
|
8118
8118
|
:rtype: int
|
|
8119
8119
|
"""
|
|
8120
8120
|
return self._Offset
|
|
@@ -8125,7 +8125,7 @@ class DescribeAclRuleRequest(AbstractModel):
|
|
|
8125
8125
|
|
|
8126
8126
|
@property
|
|
8127
8127
|
def Index(self):
|
|
8128
|
-
r"""
|
|
8128
|
+
r"""<p>需要查询的索引,特定场景使用,可不填</p>
|
|
8129
8129
|
:rtype: str
|
|
8130
8130
|
"""
|
|
8131
8131
|
return self._Index
|
|
@@ -8136,7 +8136,7 @@ class DescribeAclRuleRequest(AbstractModel):
|
|
|
8136
8136
|
|
|
8137
8137
|
@property
|
|
8138
8138
|
def Filters(self):
|
|
8139
|
-
r"""
|
|
8139
|
+
r"""<p>过滤条件组合</p>
|
|
8140
8140
|
:rtype: list of CommonFilter
|
|
8141
8141
|
"""
|
|
8142
8142
|
return self._Filters
|
|
@@ -8147,7 +8147,7 @@ class DescribeAclRuleRequest(AbstractModel):
|
|
|
8147
8147
|
|
|
8148
8148
|
@property
|
|
8149
8149
|
def StartTime(self):
|
|
8150
|
-
r"""
|
|
8150
|
+
r"""<p>检索的起始时间,可不传</p>
|
|
8151
8151
|
:rtype: str
|
|
8152
8152
|
"""
|
|
8153
8153
|
return self._StartTime
|
|
@@ -8158,7 +8158,7 @@ class DescribeAclRuleRequest(AbstractModel):
|
|
|
8158
8158
|
|
|
8159
8159
|
@property
|
|
8160
8160
|
def EndTime(self):
|
|
8161
|
-
r"""
|
|
8161
|
+
r"""<p>检索的截止时间,可不传</p>
|
|
8162
8162
|
:rtype: str
|
|
8163
8163
|
"""
|
|
8164
8164
|
return self._EndTime
|
|
@@ -8169,7 +8169,7 @@ class DescribeAclRuleRequest(AbstractModel):
|
|
|
8169
8169
|
|
|
8170
8170
|
@property
|
|
8171
8171
|
def Order(self):
|
|
8172
|
-
r"""desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值,默认为asc
|
|
8172
|
+
r"""<p>desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值,默认为asc</p>
|
|
8173
8173
|
:rtype: str
|
|
8174
8174
|
"""
|
|
8175
8175
|
return self._Order
|
|
@@ -8180,7 +8180,7 @@ class DescribeAclRuleRequest(AbstractModel):
|
|
|
8180
8180
|
|
|
8181
8181
|
@property
|
|
8182
8182
|
def By(self):
|
|
8183
|
-
r"""
|
|
8183
|
+
r"""<p>排序所用到的字段,默认为sequence</p>
|
|
8184
8184
|
:rtype: str
|
|
8185
8185
|
"""
|
|
8186
8186
|
return self._By
|
|
@@ -8221,11 +8221,11 @@ class DescribeAclRuleResponse(AbstractModel):
|
|
|
8221
8221
|
|
|
8222
8222
|
def __init__(self):
|
|
8223
8223
|
r"""
|
|
8224
|
-
:param _Total:
|
|
8224
|
+
:param _Total: <p>总条数</p>
|
|
8225
8225
|
:type Total: int
|
|
8226
|
-
:param _Data: nat
|
|
8226
|
+
:param _Data: <p>nat访问控制列表数据</p>
|
|
8227
8227
|
:type Data: list of DescAcItem
|
|
8228
|
-
:param _AllTotal:
|
|
8228
|
+
:param _AllTotal: <p>未过滤的总条数</p>
|
|
8229
8229
|
:type AllTotal: int
|
|
8230
8230
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
8231
8231
|
:type RequestId: str
|
|
@@ -8237,7 +8237,7 @@ class DescribeAclRuleResponse(AbstractModel):
|
|
|
8237
8237
|
|
|
8238
8238
|
@property
|
|
8239
8239
|
def Total(self):
|
|
8240
|
-
r"""
|
|
8240
|
+
r"""<p>总条数</p>
|
|
8241
8241
|
:rtype: int
|
|
8242
8242
|
"""
|
|
8243
8243
|
return self._Total
|
|
@@ -8248,7 +8248,7 @@ class DescribeAclRuleResponse(AbstractModel):
|
|
|
8248
8248
|
|
|
8249
8249
|
@property
|
|
8250
8250
|
def Data(self):
|
|
8251
|
-
r"""nat
|
|
8251
|
+
r"""<p>nat访问控制列表数据</p>
|
|
8252
8252
|
:rtype: list of DescAcItem
|
|
8253
8253
|
"""
|
|
8254
8254
|
return self._Data
|
|
@@ -8259,7 +8259,7 @@ class DescribeAclRuleResponse(AbstractModel):
|
|
|
8259
8259
|
|
|
8260
8260
|
@property
|
|
8261
8261
|
def AllTotal(self):
|
|
8262
|
-
r"""
|
|
8262
|
+
r"""<p>未过滤的总条数</p>
|
|
8263
8263
|
:rtype: int
|
|
8264
8264
|
"""
|
|
8265
8265
|
return self._AllTotal
|
|
@@ -10443,6 +10443,170 @@ class DescribeDefenseSwitchResponse(AbstractModel):
|
|
|
10443
10443
|
self._RequestId = params.get("RequestId")
|
|
10444
10444
|
|
|
10445
10445
|
|
|
10446
|
+
class DescribeEdgeIpSimpleRequest(AbstractModel):
|
|
10447
|
+
r"""DescribeEdgeIpSimple请求参数结构体
|
|
10448
|
+
|
|
10449
|
+
"""
|
|
10450
|
+
|
|
10451
|
+
def __init__(self):
|
|
10452
|
+
r"""
|
|
10453
|
+
:param _Filters: 过滤条件组合
|
|
10454
|
+
:type Filters: list of CommonFilter
|
|
10455
|
+
:param _Limit: 每页条数
|
|
10456
|
+
:type Limit: int
|
|
10457
|
+
:param _Offset: 偏移值
|
|
10458
|
+
:type Offset: int
|
|
10459
|
+
:param _Order: desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值
|
|
10460
|
+
:type Order: str
|
|
10461
|
+
:param _By: 排序所用到的字段
|
|
10462
|
+
:type By: str
|
|
10463
|
+
"""
|
|
10464
|
+
self._Filters = None
|
|
10465
|
+
self._Limit = None
|
|
10466
|
+
self._Offset = None
|
|
10467
|
+
self._Order = None
|
|
10468
|
+
self._By = None
|
|
10469
|
+
|
|
10470
|
+
@property
|
|
10471
|
+
def Filters(self):
|
|
10472
|
+
r"""过滤条件组合
|
|
10473
|
+
:rtype: list of CommonFilter
|
|
10474
|
+
"""
|
|
10475
|
+
return self._Filters
|
|
10476
|
+
|
|
10477
|
+
@Filters.setter
|
|
10478
|
+
def Filters(self, Filters):
|
|
10479
|
+
self._Filters = Filters
|
|
10480
|
+
|
|
10481
|
+
@property
|
|
10482
|
+
def Limit(self):
|
|
10483
|
+
r"""每页条数
|
|
10484
|
+
:rtype: int
|
|
10485
|
+
"""
|
|
10486
|
+
return self._Limit
|
|
10487
|
+
|
|
10488
|
+
@Limit.setter
|
|
10489
|
+
def Limit(self, Limit):
|
|
10490
|
+
self._Limit = Limit
|
|
10491
|
+
|
|
10492
|
+
@property
|
|
10493
|
+
def Offset(self):
|
|
10494
|
+
r"""偏移值
|
|
10495
|
+
:rtype: int
|
|
10496
|
+
"""
|
|
10497
|
+
return self._Offset
|
|
10498
|
+
|
|
10499
|
+
@Offset.setter
|
|
10500
|
+
def Offset(self, Offset):
|
|
10501
|
+
self._Offset = Offset
|
|
10502
|
+
|
|
10503
|
+
@property
|
|
10504
|
+
def Order(self):
|
|
10505
|
+
r"""desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值
|
|
10506
|
+
:rtype: str
|
|
10507
|
+
"""
|
|
10508
|
+
return self._Order
|
|
10509
|
+
|
|
10510
|
+
@Order.setter
|
|
10511
|
+
def Order(self, Order):
|
|
10512
|
+
self._Order = Order
|
|
10513
|
+
|
|
10514
|
+
@property
|
|
10515
|
+
def By(self):
|
|
10516
|
+
r"""排序所用到的字段
|
|
10517
|
+
:rtype: str
|
|
10518
|
+
"""
|
|
10519
|
+
return self._By
|
|
10520
|
+
|
|
10521
|
+
@By.setter
|
|
10522
|
+
def By(self, By):
|
|
10523
|
+
self._By = By
|
|
10524
|
+
|
|
10525
|
+
|
|
10526
|
+
def _deserialize(self, params):
|
|
10527
|
+
if params.get("Filters") is not None:
|
|
10528
|
+
self._Filters = []
|
|
10529
|
+
for item in params.get("Filters"):
|
|
10530
|
+
obj = CommonFilter()
|
|
10531
|
+
obj._deserialize(item)
|
|
10532
|
+
self._Filters.append(obj)
|
|
10533
|
+
self._Limit = params.get("Limit")
|
|
10534
|
+
self._Offset = params.get("Offset")
|
|
10535
|
+
self._Order = params.get("Order")
|
|
10536
|
+
self._By = params.get("By")
|
|
10537
|
+
memeber_set = set(params.keys())
|
|
10538
|
+
for name, value in vars(self).items():
|
|
10539
|
+
property_name = name[1:]
|
|
10540
|
+
if property_name in memeber_set:
|
|
10541
|
+
memeber_set.remove(property_name)
|
|
10542
|
+
if len(memeber_set) > 0:
|
|
10543
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
10544
|
+
|
|
10545
|
+
|
|
10546
|
+
|
|
10547
|
+
class DescribeEdgeIpSimpleResponse(AbstractModel):
|
|
10548
|
+
r"""DescribeEdgeIpSimple返回参数结构体
|
|
10549
|
+
|
|
10550
|
+
"""
|
|
10551
|
+
|
|
10552
|
+
def __init__(self):
|
|
10553
|
+
r"""
|
|
10554
|
+
:param _Data: ip 开关列表
|
|
10555
|
+
:type Data: list of EdgeIpInfoSimple
|
|
10556
|
+
:param _Total: ip 开关列表个数
|
|
10557
|
+
:type Total: int
|
|
10558
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
10559
|
+
:type RequestId: str
|
|
10560
|
+
"""
|
|
10561
|
+
self._Data = None
|
|
10562
|
+
self._Total = None
|
|
10563
|
+
self._RequestId = None
|
|
10564
|
+
|
|
10565
|
+
@property
|
|
10566
|
+
def Data(self):
|
|
10567
|
+
r"""ip 开关列表
|
|
10568
|
+
:rtype: list of EdgeIpInfoSimple
|
|
10569
|
+
"""
|
|
10570
|
+
return self._Data
|
|
10571
|
+
|
|
10572
|
+
@Data.setter
|
|
10573
|
+
def Data(self, Data):
|
|
10574
|
+
self._Data = Data
|
|
10575
|
+
|
|
10576
|
+
@property
|
|
10577
|
+
def Total(self):
|
|
10578
|
+
r"""ip 开关列表个数
|
|
10579
|
+
:rtype: int
|
|
10580
|
+
"""
|
|
10581
|
+
return self._Total
|
|
10582
|
+
|
|
10583
|
+
@Total.setter
|
|
10584
|
+
def Total(self, Total):
|
|
10585
|
+
self._Total = Total
|
|
10586
|
+
|
|
10587
|
+
@property
|
|
10588
|
+
def RequestId(self):
|
|
10589
|
+
r"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
10590
|
+
:rtype: str
|
|
10591
|
+
"""
|
|
10592
|
+
return self._RequestId
|
|
10593
|
+
|
|
10594
|
+
@RequestId.setter
|
|
10595
|
+
def RequestId(self, RequestId):
|
|
10596
|
+
self._RequestId = RequestId
|
|
10597
|
+
|
|
10598
|
+
|
|
10599
|
+
def _deserialize(self, params):
|
|
10600
|
+
if params.get("Data") is not None:
|
|
10601
|
+
self._Data = []
|
|
10602
|
+
for item in params.get("Data"):
|
|
10603
|
+
obj = EdgeIpInfoSimple()
|
|
10604
|
+
obj._deserialize(item)
|
|
10605
|
+
self._Data.append(obj)
|
|
10606
|
+
self._Total = params.get("Total")
|
|
10607
|
+
self._RequestId = params.get("RequestId")
|
|
10608
|
+
|
|
10609
|
+
|
|
10446
10610
|
class DescribeEnterpriseSGRuleProgressRequest(AbstractModel):
|
|
10447
10611
|
r"""DescribeEnterpriseSGRuleProgress请求参数结构体
|
|
10448
10612
|
|
|
@@ -12676,21 +12840,21 @@ class DescribeNatAcRuleRequest(AbstractModel):
|
|
|
12676
12840
|
|
|
12677
12841
|
def __init__(self):
|
|
12678
12842
|
r"""
|
|
12679
|
-
:param _Limit:
|
|
12843
|
+
:param _Limit: <p>每页条数</p>
|
|
12680
12844
|
:type Limit: int
|
|
12681
|
-
:param _Offset:
|
|
12845
|
+
:param _Offset: <p>偏移值</p>
|
|
12682
12846
|
:type Offset: int
|
|
12683
|
-
:param _Index:
|
|
12847
|
+
:param _Index: <p>需要查询的索引,特定场景使用,可不填</p>
|
|
12684
12848
|
:type Index: str
|
|
12685
|
-
:param _Filters:
|
|
12849
|
+
:param _Filters: <p>过滤条件组合,Direction 为0时表述查询出向规则,为1时表示查询入向规则</p>
|
|
12686
12850
|
:type Filters: list of CommonFilter
|
|
12687
|
-
:param _StartTime:
|
|
12851
|
+
:param _StartTime: <p>检索的起始时间,可不传</p>
|
|
12688
12852
|
:type StartTime: str
|
|
12689
|
-
:param _EndTime:
|
|
12853
|
+
:param _EndTime: <p>检索的截止时间,可不传</p>
|
|
12690
12854
|
:type EndTime: str
|
|
12691
|
-
:param _Order: desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值,默认为asc
|
|
12855
|
+
:param _Order: <p>desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值,默认为asc</p>
|
|
12692
12856
|
:type Order: str
|
|
12693
|
-
:param _By:
|
|
12857
|
+
:param _By: <p>排序所用到的字段,默认为sequence</p>
|
|
12694
12858
|
:type By: str
|
|
12695
12859
|
"""
|
|
12696
12860
|
self._Limit = None
|
|
@@ -12704,7 +12868,7 @@ class DescribeNatAcRuleRequest(AbstractModel):
|
|
|
12704
12868
|
|
|
12705
12869
|
@property
|
|
12706
12870
|
def Limit(self):
|
|
12707
|
-
r"""
|
|
12871
|
+
r"""<p>每页条数</p>
|
|
12708
12872
|
:rtype: int
|
|
12709
12873
|
"""
|
|
12710
12874
|
return self._Limit
|
|
@@ -12715,7 +12879,7 @@ class DescribeNatAcRuleRequest(AbstractModel):
|
|
|
12715
12879
|
|
|
12716
12880
|
@property
|
|
12717
12881
|
def Offset(self):
|
|
12718
|
-
r"""
|
|
12882
|
+
r"""<p>偏移值</p>
|
|
12719
12883
|
:rtype: int
|
|
12720
12884
|
"""
|
|
12721
12885
|
return self._Offset
|
|
@@ -12726,7 +12890,7 @@ class DescribeNatAcRuleRequest(AbstractModel):
|
|
|
12726
12890
|
|
|
12727
12891
|
@property
|
|
12728
12892
|
def Index(self):
|
|
12729
|
-
r"""
|
|
12893
|
+
r"""<p>需要查询的索引,特定场景使用,可不填</p>
|
|
12730
12894
|
:rtype: str
|
|
12731
12895
|
"""
|
|
12732
12896
|
return self._Index
|
|
@@ -12737,7 +12901,7 @@ class DescribeNatAcRuleRequest(AbstractModel):
|
|
|
12737
12901
|
|
|
12738
12902
|
@property
|
|
12739
12903
|
def Filters(self):
|
|
12740
|
-
r"""
|
|
12904
|
+
r"""<p>过滤条件组合,Direction 为0时表述查询出向规则,为1时表示查询入向规则</p>
|
|
12741
12905
|
:rtype: list of CommonFilter
|
|
12742
12906
|
"""
|
|
12743
12907
|
return self._Filters
|
|
@@ -12748,7 +12912,7 @@ class DescribeNatAcRuleRequest(AbstractModel):
|
|
|
12748
12912
|
|
|
12749
12913
|
@property
|
|
12750
12914
|
def StartTime(self):
|
|
12751
|
-
r"""
|
|
12915
|
+
r"""<p>检索的起始时间,可不传</p>
|
|
12752
12916
|
:rtype: str
|
|
12753
12917
|
"""
|
|
12754
12918
|
return self._StartTime
|
|
@@ -12759,7 +12923,7 @@ class DescribeNatAcRuleRequest(AbstractModel):
|
|
|
12759
12923
|
|
|
12760
12924
|
@property
|
|
12761
12925
|
def EndTime(self):
|
|
12762
|
-
r"""
|
|
12926
|
+
r"""<p>检索的截止时间,可不传</p>
|
|
12763
12927
|
:rtype: str
|
|
12764
12928
|
"""
|
|
12765
12929
|
return self._EndTime
|
|
@@ -12770,7 +12934,7 @@ class DescribeNatAcRuleRequest(AbstractModel):
|
|
|
12770
12934
|
|
|
12771
12935
|
@property
|
|
12772
12936
|
def Order(self):
|
|
12773
|
-
r"""desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值,默认为asc
|
|
12937
|
+
r"""<p>desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值,默认为asc</p>
|
|
12774
12938
|
:rtype: str
|
|
12775
12939
|
"""
|
|
12776
12940
|
return self._Order
|
|
@@ -12781,7 +12945,7 @@ class DescribeNatAcRuleRequest(AbstractModel):
|
|
|
12781
12945
|
|
|
12782
12946
|
@property
|
|
12783
12947
|
def By(self):
|
|
12784
|
-
r"""
|
|
12948
|
+
r"""<p>排序所用到的字段,默认为sequence</p>
|
|
12785
12949
|
:rtype: str
|
|
12786
12950
|
"""
|
|
12787
12951
|
return self._By
|
|
@@ -12822,11 +12986,11 @@ class DescribeNatAcRuleResponse(AbstractModel):
|
|
|
12822
12986
|
|
|
12823
12987
|
def __init__(self):
|
|
12824
12988
|
r"""
|
|
12825
|
-
:param _Total:
|
|
12989
|
+
:param _Total: <p>总条数</p>
|
|
12826
12990
|
:type Total: int
|
|
12827
|
-
:param _Data: nat
|
|
12991
|
+
:param _Data: <p>nat访问控制列表数据</p>
|
|
12828
12992
|
:type Data: list of DescAcItem
|
|
12829
|
-
:param _AllTotal:
|
|
12993
|
+
:param _AllTotal: <p>未过滤的总条数</p>
|
|
12830
12994
|
:type AllTotal: int
|
|
12831
12995
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
12832
12996
|
:type RequestId: str
|
|
@@ -12838,7 +13002,7 @@ class DescribeNatAcRuleResponse(AbstractModel):
|
|
|
12838
13002
|
|
|
12839
13003
|
@property
|
|
12840
13004
|
def Total(self):
|
|
12841
|
-
r"""
|
|
13005
|
+
r"""<p>总条数</p>
|
|
12842
13006
|
:rtype: int
|
|
12843
13007
|
"""
|
|
12844
13008
|
return self._Total
|
|
@@ -12849,7 +13013,7 @@ class DescribeNatAcRuleResponse(AbstractModel):
|
|
|
12849
13013
|
|
|
12850
13014
|
@property
|
|
12851
13015
|
def Data(self):
|
|
12852
|
-
r"""nat
|
|
13016
|
+
r"""<p>nat访问控制列表数据</p>
|
|
12853
13017
|
:rtype: list of DescAcItem
|
|
12854
13018
|
"""
|
|
12855
13019
|
return self._Data
|
|
@@ -12860,7 +13024,7 @@ class DescribeNatAcRuleResponse(AbstractModel):
|
|
|
12860
13024
|
|
|
12861
13025
|
@property
|
|
12862
13026
|
def AllTotal(self):
|
|
12863
|
-
r"""
|
|
13027
|
+
r"""<p>未过滤的总条数</p>
|
|
12864
13028
|
:rtype: int
|
|
12865
13029
|
"""
|
|
12866
13030
|
return self._AllTotal
|
|
@@ -15733,21 +15897,21 @@ class DescribeVpcAcRuleRequest(AbstractModel):
|
|
|
15733
15897
|
|
|
15734
15898
|
def __init__(self):
|
|
15735
15899
|
r"""
|
|
15736
|
-
:param _Limit:
|
|
15900
|
+
:param _Limit: <p>每页条数</p>
|
|
15737
15901
|
:type Limit: int
|
|
15738
|
-
:param _Offset:
|
|
15902
|
+
:param _Offset: <p>偏移值</p>
|
|
15739
15903
|
:type Offset: int
|
|
15740
|
-
:param _Index:
|
|
15904
|
+
:param _Index: <p>需要查询的索引,特定场景使用,可不填</p>
|
|
15741
15905
|
:type Index: str
|
|
15742
|
-
:param _Filters:
|
|
15906
|
+
:param _Filters: <p>过滤条件组合</p>
|
|
15743
15907
|
:type Filters: list of CommonFilter
|
|
15744
|
-
:param _StartTime:
|
|
15908
|
+
:param _StartTime: <p>检索的起始时间,可不传</p>
|
|
15745
15909
|
:type StartTime: str
|
|
15746
|
-
:param _EndTime:
|
|
15910
|
+
:param _EndTime: <p>检索的截止时间,可不传</p>
|
|
15747
15911
|
:type EndTime: str
|
|
15748
|
-
:param _Order: desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By
|
|
15912
|
+
:param _Order: <p>desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值</p>
|
|
15749
15913
|
:type Order: str
|
|
15750
|
-
:param _By:
|
|
15914
|
+
:param _By: <p>排序所用到的字段</p>
|
|
15751
15915
|
:type By: str
|
|
15752
15916
|
"""
|
|
15753
15917
|
self._Limit = None
|
|
@@ -15761,7 +15925,7 @@ class DescribeVpcAcRuleRequest(AbstractModel):
|
|
|
15761
15925
|
|
|
15762
15926
|
@property
|
|
15763
15927
|
def Limit(self):
|
|
15764
|
-
r"""
|
|
15928
|
+
r"""<p>每页条数</p>
|
|
15765
15929
|
:rtype: int
|
|
15766
15930
|
"""
|
|
15767
15931
|
return self._Limit
|
|
@@ -15772,7 +15936,7 @@ class DescribeVpcAcRuleRequest(AbstractModel):
|
|
|
15772
15936
|
|
|
15773
15937
|
@property
|
|
15774
15938
|
def Offset(self):
|
|
15775
|
-
r"""
|
|
15939
|
+
r"""<p>偏移值</p>
|
|
15776
15940
|
:rtype: int
|
|
15777
15941
|
"""
|
|
15778
15942
|
return self._Offset
|
|
@@ -15783,7 +15947,7 @@ class DescribeVpcAcRuleRequest(AbstractModel):
|
|
|
15783
15947
|
|
|
15784
15948
|
@property
|
|
15785
15949
|
def Index(self):
|
|
15786
|
-
r"""
|
|
15950
|
+
r"""<p>需要查询的索引,特定场景使用,可不填</p>
|
|
15787
15951
|
:rtype: str
|
|
15788
15952
|
"""
|
|
15789
15953
|
return self._Index
|
|
@@ -15794,7 +15958,7 @@ class DescribeVpcAcRuleRequest(AbstractModel):
|
|
|
15794
15958
|
|
|
15795
15959
|
@property
|
|
15796
15960
|
def Filters(self):
|
|
15797
|
-
r"""
|
|
15961
|
+
r"""<p>过滤条件组合</p>
|
|
15798
15962
|
:rtype: list of CommonFilter
|
|
15799
15963
|
"""
|
|
15800
15964
|
return self._Filters
|
|
@@ -15805,7 +15969,7 @@ class DescribeVpcAcRuleRequest(AbstractModel):
|
|
|
15805
15969
|
|
|
15806
15970
|
@property
|
|
15807
15971
|
def StartTime(self):
|
|
15808
|
-
r"""
|
|
15972
|
+
r"""<p>检索的起始时间,可不传</p>
|
|
15809
15973
|
:rtype: str
|
|
15810
15974
|
"""
|
|
15811
15975
|
return self._StartTime
|
|
@@ -15816,7 +15980,7 @@ class DescribeVpcAcRuleRequest(AbstractModel):
|
|
|
15816
15980
|
|
|
15817
15981
|
@property
|
|
15818
15982
|
def EndTime(self):
|
|
15819
|
-
r"""
|
|
15983
|
+
r"""<p>检索的截止时间,可不传</p>
|
|
15820
15984
|
:rtype: str
|
|
15821
15985
|
"""
|
|
15822
15986
|
return self._EndTime
|
|
@@ -15827,7 +15991,7 @@ class DescribeVpcAcRuleRequest(AbstractModel):
|
|
|
15827
15991
|
|
|
15828
15992
|
@property
|
|
15829
15993
|
def Order(self):
|
|
15830
|
-
r"""desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By
|
|
15994
|
+
r"""<p>desc:降序;asc:升序。根据By字段的值进行排序,这里传参的话则By也必须有值</p>
|
|
15831
15995
|
:rtype: str
|
|
15832
15996
|
"""
|
|
15833
15997
|
return self._Order
|
|
@@ -15838,7 +16002,7 @@ class DescribeVpcAcRuleRequest(AbstractModel):
|
|
|
15838
16002
|
|
|
15839
16003
|
@property
|
|
15840
16004
|
def By(self):
|
|
15841
|
-
r"""
|
|
16005
|
+
r"""<p>排序所用到的字段</p>
|
|
15842
16006
|
:rtype: str
|
|
15843
16007
|
"""
|
|
15844
16008
|
return self._By
|
|
@@ -15879,9 +16043,9 @@ class DescribeVpcAcRuleResponse(AbstractModel):
|
|
|
15879
16043
|
|
|
15880
16044
|
def __init__(self):
|
|
15881
16045
|
r"""
|
|
15882
|
-
:param _Total:
|
|
16046
|
+
:param _Total: <p>总条数</p>
|
|
15883
16047
|
:type Total: int
|
|
15884
|
-
:param _Data:
|
|
16048
|
+
:param _Data: <p>内网间访问控制列表数据</p>
|
|
15885
16049
|
:type Data: list of VpcRuleItem
|
|
15886
16050
|
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
15887
16051
|
:type RequestId: str
|
|
@@ -15892,7 +16056,7 @@ class DescribeVpcAcRuleResponse(AbstractModel):
|
|
|
15892
16056
|
|
|
15893
16057
|
@property
|
|
15894
16058
|
def Total(self):
|
|
15895
|
-
r"""
|
|
16059
|
+
r"""<p>总条数</p>
|
|
15896
16060
|
:rtype: int
|
|
15897
16061
|
"""
|
|
15898
16062
|
return self._Total
|
|
@@ -15903,7 +16067,7 @@ class DescribeVpcAcRuleResponse(AbstractModel):
|
|
|
15903
16067
|
|
|
15904
16068
|
@property
|
|
15905
16069
|
def Data(self):
|
|
15906
|
-
r"""
|
|
16070
|
+
r"""<p>内网间访问控制列表数据</p>
|
|
15907
16071
|
:rtype: list of VpcRuleItem
|
|
15908
16072
|
"""
|
|
15909
16073
|
return self._Data
|
|
@@ -16667,6 +16831,157 @@ class EdgeIpInfo(AbstractModel):
|
|
|
16667
16831
|
|
|
16668
16832
|
|
|
16669
16833
|
|
|
16834
|
+
class EdgeIpInfoSimple(AbstractModel):
|
|
16835
|
+
r"""边界防火墙公网IP开关列表
|
|
16836
|
+
|
|
16837
|
+
"""
|
|
16838
|
+
|
|
16839
|
+
def __init__(self):
|
|
16840
|
+
r"""
|
|
16841
|
+
:param _PublicIp: 公网IP
|
|
16842
|
+
:type PublicIp: str
|
|
16843
|
+
:param _PublicIpType: 公网 IP 类型 1 公网,2 弹性,3 弹性ipv6,4 anycastIP, 6 HighQualityEIP
|
|
16844
|
+
:type PublicIpType: int
|
|
16845
|
+
:param _InstanceId: 实例ID
|
|
16846
|
+
:type InstanceId: str
|
|
16847
|
+
:param _InstanceName: 实例名
|
|
16848
|
+
:type InstanceName: str
|
|
16849
|
+
:param _Status: 开关状态
|
|
16850
|
+
0 : 关闭
|
|
16851
|
+
1 : 开启
|
|
16852
|
+
2 : 开启中
|
|
16853
|
+
3 : 关闭中
|
|
16854
|
+
4 : 异常
|
|
16855
|
+
:type Status: int
|
|
16856
|
+
:param _SwitchMode: 0 : 旁路 1 : 串行 2 : 正在模式切换
|
|
16857
|
+
:type SwitchMode: int
|
|
16858
|
+
:param _Region: 地域
|
|
16859
|
+
:type Region: str
|
|
16860
|
+
:param _AssetType: 资产类型
|
|
16861
|
+
:type AssetType: str
|
|
16862
|
+
"""
|
|
16863
|
+
self._PublicIp = None
|
|
16864
|
+
self._PublicIpType = None
|
|
16865
|
+
self._InstanceId = None
|
|
16866
|
+
self._InstanceName = None
|
|
16867
|
+
self._Status = None
|
|
16868
|
+
self._SwitchMode = None
|
|
16869
|
+
self._Region = None
|
|
16870
|
+
self._AssetType = None
|
|
16871
|
+
|
|
16872
|
+
@property
|
|
16873
|
+
def PublicIp(self):
|
|
16874
|
+
r"""公网IP
|
|
16875
|
+
:rtype: str
|
|
16876
|
+
"""
|
|
16877
|
+
return self._PublicIp
|
|
16878
|
+
|
|
16879
|
+
@PublicIp.setter
|
|
16880
|
+
def PublicIp(self, PublicIp):
|
|
16881
|
+
self._PublicIp = PublicIp
|
|
16882
|
+
|
|
16883
|
+
@property
|
|
16884
|
+
def PublicIpType(self):
|
|
16885
|
+
r"""公网 IP 类型 1 公网,2 弹性,3 弹性ipv6,4 anycastIP, 6 HighQualityEIP
|
|
16886
|
+
:rtype: int
|
|
16887
|
+
"""
|
|
16888
|
+
return self._PublicIpType
|
|
16889
|
+
|
|
16890
|
+
@PublicIpType.setter
|
|
16891
|
+
def PublicIpType(self, PublicIpType):
|
|
16892
|
+
self._PublicIpType = PublicIpType
|
|
16893
|
+
|
|
16894
|
+
@property
|
|
16895
|
+
def InstanceId(self):
|
|
16896
|
+
r"""实例ID
|
|
16897
|
+
:rtype: str
|
|
16898
|
+
"""
|
|
16899
|
+
return self._InstanceId
|
|
16900
|
+
|
|
16901
|
+
@InstanceId.setter
|
|
16902
|
+
def InstanceId(self, InstanceId):
|
|
16903
|
+
self._InstanceId = InstanceId
|
|
16904
|
+
|
|
16905
|
+
@property
|
|
16906
|
+
def InstanceName(self):
|
|
16907
|
+
r"""实例名
|
|
16908
|
+
:rtype: str
|
|
16909
|
+
"""
|
|
16910
|
+
return self._InstanceName
|
|
16911
|
+
|
|
16912
|
+
@InstanceName.setter
|
|
16913
|
+
def InstanceName(self, InstanceName):
|
|
16914
|
+
self._InstanceName = InstanceName
|
|
16915
|
+
|
|
16916
|
+
@property
|
|
16917
|
+
def Status(self):
|
|
16918
|
+
r"""开关状态
|
|
16919
|
+
0 : 关闭
|
|
16920
|
+
1 : 开启
|
|
16921
|
+
2 : 开启中
|
|
16922
|
+
3 : 关闭中
|
|
16923
|
+
4 : 异常
|
|
16924
|
+
:rtype: int
|
|
16925
|
+
"""
|
|
16926
|
+
return self._Status
|
|
16927
|
+
|
|
16928
|
+
@Status.setter
|
|
16929
|
+
def Status(self, Status):
|
|
16930
|
+
self._Status = Status
|
|
16931
|
+
|
|
16932
|
+
@property
|
|
16933
|
+
def SwitchMode(self):
|
|
16934
|
+
r"""0 : 旁路 1 : 串行 2 : 正在模式切换
|
|
16935
|
+
:rtype: int
|
|
16936
|
+
"""
|
|
16937
|
+
return self._SwitchMode
|
|
16938
|
+
|
|
16939
|
+
@SwitchMode.setter
|
|
16940
|
+
def SwitchMode(self, SwitchMode):
|
|
16941
|
+
self._SwitchMode = SwitchMode
|
|
16942
|
+
|
|
16943
|
+
@property
|
|
16944
|
+
def Region(self):
|
|
16945
|
+
r"""地域
|
|
16946
|
+
:rtype: str
|
|
16947
|
+
"""
|
|
16948
|
+
return self._Region
|
|
16949
|
+
|
|
16950
|
+
@Region.setter
|
|
16951
|
+
def Region(self, Region):
|
|
16952
|
+
self._Region = Region
|
|
16953
|
+
|
|
16954
|
+
@property
|
|
16955
|
+
def AssetType(self):
|
|
16956
|
+
r"""资产类型
|
|
16957
|
+
:rtype: str
|
|
16958
|
+
"""
|
|
16959
|
+
return self._AssetType
|
|
16960
|
+
|
|
16961
|
+
@AssetType.setter
|
|
16962
|
+
def AssetType(self, AssetType):
|
|
16963
|
+
self._AssetType = AssetType
|
|
16964
|
+
|
|
16965
|
+
|
|
16966
|
+
def _deserialize(self, params):
|
|
16967
|
+
self._PublicIp = params.get("PublicIp")
|
|
16968
|
+
self._PublicIpType = params.get("PublicIpType")
|
|
16969
|
+
self._InstanceId = params.get("InstanceId")
|
|
16970
|
+
self._InstanceName = params.get("InstanceName")
|
|
16971
|
+
self._Status = params.get("Status")
|
|
16972
|
+
self._SwitchMode = params.get("SwitchMode")
|
|
16973
|
+
self._Region = params.get("Region")
|
|
16974
|
+
self._AssetType = params.get("AssetType")
|
|
16975
|
+
memeber_set = set(params.keys())
|
|
16976
|
+
for name, value in vars(self).items():
|
|
16977
|
+
property_name = name[1:]
|
|
16978
|
+
if property_name in memeber_set:
|
|
16979
|
+
memeber_set.remove(property_name)
|
|
16980
|
+
if len(memeber_set) > 0:
|
|
16981
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
16982
|
+
|
|
16983
|
+
|
|
16984
|
+
|
|
16670
16985
|
class EdgeIpSwitch(AbstractModel):
|
|
16671
16986
|
r"""开启、关闭 防火墙互联网边界开关
|
|
16672
16987
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cfw
|
|
3
|
-
Version: 3.1.
|
|
3
|
+
Version: 3.1.101
|
|
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<4.0.0,>=3.1.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common<4.0.0,>=3.1.101
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common<4.0.0,>=3.1.101
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common<4.0.0,>=3.1.94
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|