tencentcloud-sdk-python-cwp 3.0.1265__tar.gz → 3.0.1269__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-cwp-3.0.1265 → tencentcloud-sdk-python-cwp-3.0.1269}/PKG-INFO +3 -3
- {tencentcloud-sdk-python-cwp-3.0.1265 → tencentcloud-sdk-python-cwp-3.0.1269}/setup.cfg +0 -1
- {tencentcloud-sdk-python-cwp-3.0.1265 → tencentcloud-sdk-python-cwp-3.0.1269}/setup.py +1 -1
- {tencentcloud-sdk-python-cwp-3.0.1265 → tencentcloud-sdk-python-cwp-3.0.1269}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cwp-3.0.1265 → tencentcloud-sdk-python-cwp-3.0.1269}/tencentcloud/cwp/v20180228/cwp_client.py +3 -26
- {tencentcloud-sdk-python-cwp-3.0.1265 → tencentcloud-sdk-python-cwp-3.0.1269}/tencentcloud/cwp/v20180228/models.py +0 -197
- {tencentcloud-sdk-python-cwp-3.0.1265 → tencentcloud-sdk-python-cwp-3.0.1269}/tencentcloud_sdk_python_cwp.egg-info/PKG-INFO +3 -3
- tencentcloud-sdk-python-cwp-3.0.1269/tencentcloud_sdk_python_cwp.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cwp-3.0.1265/tencentcloud_sdk_python_cwp.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cwp-3.0.1265 → tencentcloud-sdk-python-cwp-3.0.1269}/README.rst +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1265 → tencentcloud-sdk-python-cwp-3.0.1269}/tencentcloud/cwp/__init__.py +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1265 → tencentcloud-sdk-python-cwp-3.0.1269}/tencentcloud/cwp/v20180228/__init__.py +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1265 → tencentcloud-sdk-python-cwp-3.0.1269}/tencentcloud/cwp/v20180228/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1265 → tencentcloud-sdk-python-cwp-3.0.1269}/tencentcloud_sdk_python_cwp.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1265 → tencentcloud-sdk-python-cwp-3.0.1269}/tencentcloud_sdk_python_cwp.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cwp-3.0.1265 → tencentcloud-sdk-python-cwp-3.0.1269}/tencentcloud_sdk_python_cwp.egg-info/top_level.txt +0 -0
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
Metadata-Version: 1.
|
|
1
|
+
Metadata-Version: 1.2
|
|
2
2
|
Name: tencentcloud-sdk-python-cwp
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1269
|
|
4
4
|
Summary: Tencent Cloud Cwp SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
7
|
-
|
|
7
|
+
Maintainer-email: tencentcloudapi@tencent.com
|
|
8
8
|
License: Apache License 2.0
|
|
9
9
|
Description: ============================
|
|
10
10
|
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-cwp',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1269"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cwp SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -4014,31 +4014,6 @@ class CwpClient(AbstractClient):
|
|
|
4014
4014
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4015
4015
|
|
|
4016
4016
|
|
|
4017
|
-
def DescribeCloudProtectServiceOrderList(self, request):
|
|
4018
|
-
"""云护航计费产品已下线
|
|
4019
|
-
|
|
4020
|
-
查询云护航服务订单列表
|
|
4021
|
-
|
|
4022
|
-
:param request: Request instance for DescribeCloudProtectServiceOrderList.
|
|
4023
|
-
:type request: :class:`tencentcloud.cwp.v20180228.models.DescribeCloudProtectServiceOrderListRequest`
|
|
4024
|
-
:rtype: :class:`tencentcloud.cwp.v20180228.models.DescribeCloudProtectServiceOrderListResponse`
|
|
4025
|
-
|
|
4026
|
-
"""
|
|
4027
|
-
try:
|
|
4028
|
-
params = request._serialize()
|
|
4029
|
-
headers = request.headers
|
|
4030
|
-
body = self.call("DescribeCloudProtectServiceOrderList", params, headers=headers)
|
|
4031
|
-
response = json.loads(body)
|
|
4032
|
-
model = models.DescribeCloudProtectServiceOrderListResponse()
|
|
4033
|
-
model._deserialize(response["Response"])
|
|
4034
|
-
return model
|
|
4035
|
-
except Exception as e:
|
|
4036
|
-
if isinstance(e, TencentCloudSDKException):
|
|
4037
|
-
raise
|
|
4038
|
-
else:
|
|
4039
|
-
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
4040
|
-
|
|
4041
|
-
|
|
4042
4017
|
def DescribeComponentStatistics(self, request):
|
|
4043
4018
|
"""接口已无效
|
|
4044
4019
|
|
|
@@ -7149,7 +7124,9 @@ class CwpClient(AbstractClient):
|
|
|
7149
7124
|
|
|
7150
7125
|
|
|
7151
7126
|
def DescribeSecurityProtectionStat(self, request):
|
|
7152
|
-
"""
|
|
7127
|
+
"""接口已无效
|
|
7128
|
+
|
|
7129
|
+
获取安全防护状态汇总
|
|
7153
7130
|
|
|
7154
7131
|
:param request: Request instance for DescribeSecurityProtectionStat.
|
|
7155
7132
|
:type request: :class:`tencentcloud.cwp.v20180228.models.DescribeSecurityProtectionStatRequest`
|
|
@@ -17069,102 +17069,6 @@ class CloudFromCnt(AbstractModel):
|
|
|
17069
17069
|
|
|
17070
17070
|
|
|
17071
17071
|
|
|
17072
|
-
class CloudProtectService(AbstractModel):
|
|
17073
|
-
"""云护航服务详情信息
|
|
17074
|
-
|
|
17075
|
-
"""
|
|
17076
|
-
|
|
17077
|
-
def __init__(self):
|
|
17078
|
-
r"""
|
|
17079
|
-
:param _ResourceId: 资源ID
|
|
17080
|
-
:type ResourceId: str
|
|
17081
|
-
:param _Type: 类型: 这里为新购
|
|
17082
|
-
:type Type: str
|
|
17083
|
-
:param _Config: 配置:购买的配置信息
|
|
17084
|
-
:type Config: str
|
|
17085
|
-
:param _ServiceName: 服务名称
|
|
17086
|
-
:type ServiceName: str
|
|
17087
|
-
:param _BeginTime: 购买时间
|
|
17088
|
-
:type BeginTime: str
|
|
17089
|
-
"""
|
|
17090
|
-
self._ResourceId = None
|
|
17091
|
-
self._Type = None
|
|
17092
|
-
self._Config = None
|
|
17093
|
-
self._ServiceName = None
|
|
17094
|
-
self._BeginTime = None
|
|
17095
|
-
|
|
17096
|
-
@property
|
|
17097
|
-
def ResourceId(self):
|
|
17098
|
-
"""资源ID
|
|
17099
|
-
:rtype: str
|
|
17100
|
-
"""
|
|
17101
|
-
return self._ResourceId
|
|
17102
|
-
|
|
17103
|
-
@ResourceId.setter
|
|
17104
|
-
def ResourceId(self, ResourceId):
|
|
17105
|
-
self._ResourceId = ResourceId
|
|
17106
|
-
|
|
17107
|
-
@property
|
|
17108
|
-
def Type(self):
|
|
17109
|
-
"""类型: 这里为新购
|
|
17110
|
-
:rtype: str
|
|
17111
|
-
"""
|
|
17112
|
-
return self._Type
|
|
17113
|
-
|
|
17114
|
-
@Type.setter
|
|
17115
|
-
def Type(self, Type):
|
|
17116
|
-
self._Type = Type
|
|
17117
|
-
|
|
17118
|
-
@property
|
|
17119
|
-
def Config(self):
|
|
17120
|
-
"""配置:购买的配置信息
|
|
17121
|
-
:rtype: str
|
|
17122
|
-
"""
|
|
17123
|
-
return self._Config
|
|
17124
|
-
|
|
17125
|
-
@Config.setter
|
|
17126
|
-
def Config(self, Config):
|
|
17127
|
-
self._Config = Config
|
|
17128
|
-
|
|
17129
|
-
@property
|
|
17130
|
-
def ServiceName(self):
|
|
17131
|
-
"""服务名称
|
|
17132
|
-
:rtype: str
|
|
17133
|
-
"""
|
|
17134
|
-
return self._ServiceName
|
|
17135
|
-
|
|
17136
|
-
@ServiceName.setter
|
|
17137
|
-
def ServiceName(self, ServiceName):
|
|
17138
|
-
self._ServiceName = ServiceName
|
|
17139
|
-
|
|
17140
|
-
@property
|
|
17141
|
-
def BeginTime(self):
|
|
17142
|
-
"""购买时间
|
|
17143
|
-
:rtype: str
|
|
17144
|
-
"""
|
|
17145
|
-
return self._BeginTime
|
|
17146
|
-
|
|
17147
|
-
@BeginTime.setter
|
|
17148
|
-
def BeginTime(self, BeginTime):
|
|
17149
|
-
self._BeginTime = BeginTime
|
|
17150
|
-
|
|
17151
|
-
|
|
17152
|
-
def _deserialize(self, params):
|
|
17153
|
-
self._ResourceId = params.get("ResourceId")
|
|
17154
|
-
self._Type = params.get("Type")
|
|
17155
|
-
self._Config = params.get("Config")
|
|
17156
|
-
self._ServiceName = params.get("ServiceName")
|
|
17157
|
-
self._BeginTime = params.get("BeginTime")
|
|
17158
|
-
memeber_set = set(params.keys())
|
|
17159
|
-
for name, value in vars(self).items():
|
|
17160
|
-
property_name = name[1:]
|
|
17161
|
-
if property_name in memeber_set:
|
|
17162
|
-
memeber_set.remove(property_name)
|
|
17163
|
-
if len(memeber_set) > 0:
|
|
17164
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
17165
|
-
|
|
17166
|
-
|
|
17167
|
-
|
|
17168
17072
|
class CommandLine(AbstractModel):
|
|
17169
17073
|
"""命令行内容
|
|
17170
17074
|
|
|
@@ -37921,107 +37825,6 @@ class DescribeClientExceptionResponse(AbstractModel):
|
|
|
37921
37825
|
self._RequestId = params.get("RequestId")
|
|
37922
37826
|
|
|
37923
37827
|
|
|
37924
|
-
class DescribeCloudProtectServiceOrderListRequest(AbstractModel):
|
|
37925
|
-
"""DescribeCloudProtectServiceOrderList请求参数结构体
|
|
37926
|
-
|
|
37927
|
-
"""
|
|
37928
|
-
|
|
37929
|
-
def __init__(self):
|
|
37930
|
-
r"""
|
|
37931
|
-
:param _Order: 排序字段,当前支持: BeginTime
|
|
37932
|
-
:type Order: str
|
|
37933
|
-
:param _By: 排序方式,当前支持:
|
|
37934
|
-
ASC 正序,DESC 倒序
|
|
37935
|
-
:type By: str
|
|
37936
|
-
"""
|
|
37937
|
-
self._Order = None
|
|
37938
|
-
self._By = None
|
|
37939
|
-
|
|
37940
|
-
@property
|
|
37941
|
-
def Order(self):
|
|
37942
|
-
"""排序字段,当前支持: BeginTime
|
|
37943
|
-
:rtype: str
|
|
37944
|
-
"""
|
|
37945
|
-
return self._Order
|
|
37946
|
-
|
|
37947
|
-
@Order.setter
|
|
37948
|
-
def Order(self, Order):
|
|
37949
|
-
self._Order = Order
|
|
37950
|
-
|
|
37951
|
-
@property
|
|
37952
|
-
def By(self):
|
|
37953
|
-
"""排序方式,当前支持:
|
|
37954
|
-
ASC 正序,DESC 倒序
|
|
37955
|
-
:rtype: str
|
|
37956
|
-
"""
|
|
37957
|
-
return self._By
|
|
37958
|
-
|
|
37959
|
-
@By.setter
|
|
37960
|
-
def By(self, By):
|
|
37961
|
-
self._By = By
|
|
37962
|
-
|
|
37963
|
-
|
|
37964
|
-
def _deserialize(self, params):
|
|
37965
|
-
self._Order = params.get("Order")
|
|
37966
|
-
self._By = params.get("By")
|
|
37967
|
-
memeber_set = set(params.keys())
|
|
37968
|
-
for name, value in vars(self).items():
|
|
37969
|
-
property_name = name[1:]
|
|
37970
|
-
if property_name in memeber_set:
|
|
37971
|
-
memeber_set.remove(property_name)
|
|
37972
|
-
if len(memeber_set) > 0:
|
|
37973
|
-
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
37974
|
-
|
|
37975
|
-
|
|
37976
|
-
|
|
37977
|
-
class DescribeCloudProtectServiceOrderListResponse(AbstractModel):
|
|
37978
|
-
"""DescribeCloudProtectServiceOrderList返回参数结构体
|
|
37979
|
-
|
|
37980
|
-
"""
|
|
37981
|
-
|
|
37982
|
-
def __init__(self):
|
|
37983
|
-
r"""
|
|
37984
|
-
:param _Data: 云护航订单列表信息
|
|
37985
|
-
:type Data: list of CloudProtectService
|
|
37986
|
-
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
37987
|
-
:type RequestId: str
|
|
37988
|
-
"""
|
|
37989
|
-
self._Data = None
|
|
37990
|
-
self._RequestId = None
|
|
37991
|
-
|
|
37992
|
-
@property
|
|
37993
|
-
def Data(self):
|
|
37994
|
-
"""云护航订单列表信息
|
|
37995
|
-
:rtype: list of CloudProtectService
|
|
37996
|
-
"""
|
|
37997
|
-
return self._Data
|
|
37998
|
-
|
|
37999
|
-
@Data.setter
|
|
38000
|
-
def Data(self, Data):
|
|
38001
|
-
self._Data = Data
|
|
38002
|
-
|
|
38003
|
-
@property
|
|
38004
|
-
def RequestId(self):
|
|
38005
|
-
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
38006
|
-
:rtype: str
|
|
38007
|
-
"""
|
|
38008
|
-
return self._RequestId
|
|
38009
|
-
|
|
38010
|
-
@RequestId.setter
|
|
38011
|
-
def RequestId(self, RequestId):
|
|
38012
|
-
self._RequestId = RequestId
|
|
38013
|
-
|
|
38014
|
-
|
|
38015
|
-
def _deserialize(self, params):
|
|
38016
|
-
if params.get("Data") is not None:
|
|
38017
|
-
self._Data = []
|
|
38018
|
-
for item in params.get("Data"):
|
|
38019
|
-
obj = CloudProtectService()
|
|
38020
|
-
obj._deserialize(item)
|
|
38021
|
-
self._Data.append(obj)
|
|
38022
|
-
self._RequestId = params.get("RequestId")
|
|
38023
|
-
|
|
38024
|
-
|
|
38025
37828
|
class DescribeComponentStatisticsRequest(AbstractModel):
|
|
38026
37829
|
"""DescribeComponentStatistics请求参数结构体
|
|
38027
37830
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
Metadata-Version: 1.
|
|
1
|
+
Metadata-Version: 1.2
|
|
2
2
|
Name: tencentcloud-sdk-python-cwp
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1269
|
|
4
4
|
Summary: Tencent Cloud Cwp SDK for Python
|
|
5
5
|
Home-page: https://github.com/TencentCloud/tencentcloud-sdk-python
|
|
6
6
|
Author: Tencent Cloud
|
|
7
|
-
|
|
7
|
+
Maintainer-email: tencentcloudapi@tencent.com
|
|
8
8
|
License: Apache License 2.0
|
|
9
9
|
Description: ============================
|
|
10
10
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1269
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1265
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|