tencentcloud-sdk-python-cwp 3.0.1259__tar.gz → 3.0.1280__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.
Files changed (16) hide show
  1. {tencentcloud-sdk-python-cwp-3.0.1259 → tencentcloud-sdk-python-cwp-3.0.1280}/PKG-INFO +3 -3
  2. {tencentcloud-sdk-python-cwp-3.0.1259 → tencentcloud-sdk-python-cwp-3.0.1280}/setup.cfg +0 -1
  3. {tencentcloud-sdk-python-cwp-3.0.1259 → tencentcloud-sdk-python-cwp-3.0.1280}/setup.py +1 -1
  4. {tencentcloud-sdk-python-cwp-3.0.1259 → tencentcloud-sdk-python-cwp-3.0.1280}/tencentcloud/__init__.py +1 -1
  5. {tencentcloud-sdk-python-cwp-3.0.1259 → tencentcloud-sdk-python-cwp-3.0.1280}/tencentcloud/cwp/v20180228/cwp_client.py +3 -51
  6. {tencentcloud-sdk-python-cwp-3.0.1259 → tencentcloud-sdk-python-cwp-3.0.1280}/tencentcloud/cwp/v20180228/models.py +17416 -1061
  7. {tencentcloud-sdk-python-cwp-3.0.1259 → tencentcloud-sdk-python-cwp-3.0.1280}/tencentcloud_sdk_python_cwp.egg-info/PKG-INFO +3 -3
  8. tencentcloud-sdk-python-cwp-3.0.1280/tencentcloud_sdk_python_cwp.egg-info/requires.txt +1 -0
  9. tencentcloud-sdk-python-cwp-3.0.1259/tencentcloud_sdk_python_cwp.egg-info/requires.txt +0 -1
  10. {tencentcloud-sdk-python-cwp-3.0.1259 → tencentcloud-sdk-python-cwp-3.0.1280}/README.rst +0 -0
  11. {tencentcloud-sdk-python-cwp-3.0.1259 → tencentcloud-sdk-python-cwp-3.0.1280}/tencentcloud/cwp/__init__.py +0 -0
  12. {tencentcloud-sdk-python-cwp-3.0.1259 → tencentcloud-sdk-python-cwp-3.0.1280}/tencentcloud/cwp/v20180228/__init__.py +0 -0
  13. {tencentcloud-sdk-python-cwp-3.0.1259 → tencentcloud-sdk-python-cwp-3.0.1280}/tencentcloud/cwp/v20180228/errorcodes.py +0 -0
  14. {tencentcloud-sdk-python-cwp-3.0.1259 → tencentcloud-sdk-python-cwp-3.0.1280}/tencentcloud_sdk_python_cwp.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-cwp-3.0.1259 → tencentcloud-sdk-python-cwp-3.0.1280}/tencentcloud_sdk_python_cwp.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-cwp-3.0.1259 → tencentcloud-sdk-python-cwp-3.0.1280}/tencentcloud_sdk_python_cwp.egg-info/top_level.txt +0 -0
@@ -1,10 +1,10 @@
1
- Metadata-Version: 1.1
1
+ Metadata-Version: 1.2
2
2
  Name: tencentcloud-sdk-python-cwp
3
- Version: 3.0.1259
3
+ Version: 3.0.1280
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
- Author-email: tencentcloudapi@tencent.com
7
+ Maintainer-email: tencentcloudapi@tencent.com
8
8
  License: Apache License 2.0
9
9
  Description: ============================
10
10
  Tencent Cloud SDK for Python
@@ -4,5 +4,4 @@ universal = 1
4
4
  [egg_info]
5
5
  tag_build =
6
6
  tag_date = 0
7
- tag_svn_revision = 0
8
7
 
@@ -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.1259"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1280"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Cwp SDK for Python',
14
14
  long_description=open('README.rst').read(),
@@ -14,4 +14,4 @@
14
14
  # limitations under the License.
15
15
 
16
16
 
17
- __version__ = '3.0.1259'
17
+ __version__ = '3.0.1280'
@@ -325,31 +325,6 @@ class CwpClient(AbstractClient):
325
325
  raise TencentCloudSDKException(type(e).__name__, str(e))
326
326
 
327
327
 
328
- def CreateCloudProtectServiceOrderRecord(self, request):
329
- """云护航计费产品已下线
330
-
331
- 云护航服务使用完成后,该接口可以确认收货
332
-
333
- :param request: Request instance for CreateCloudProtectServiceOrderRecord.
334
- :type request: :class:`tencentcloud.cwp.v20180228.models.CreateCloudProtectServiceOrderRecordRequest`
335
- :rtype: :class:`tencentcloud.cwp.v20180228.models.CreateCloudProtectServiceOrderRecordResponse`
336
-
337
- """
338
- try:
339
- params = request._serialize()
340
- headers = request.headers
341
- body = self.call("CreateCloudProtectServiceOrderRecord", params, headers=headers)
342
- response = json.loads(body)
343
- model = models.CreateCloudProtectServiceOrderRecordResponse()
344
- model._deserialize(response["Response"])
345
- return model
346
- except Exception as e:
347
- if isinstance(e, TencentCloudSDKException):
348
- raise
349
- else:
350
- raise TencentCloudSDKException(type(e).__name__, str(e))
351
-
352
-
353
328
  def CreateEmergencyVulScan(self, request):
354
329
  """创建应急漏洞扫描任务
355
330
 
@@ -4039,31 +4014,6 @@ class CwpClient(AbstractClient):
4039
4014
  raise TencentCloudSDKException(type(e).__name__, str(e))
4040
4015
 
4041
4016
 
4042
- def DescribeCloudProtectServiceOrderList(self, request):
4043
- """云护航计费产品已下线
4044
-
4045
- 查询云护航服务订单列表
4046
-
4047
- :param request: Request instance for DescribeCloudProtectServiceOrderList.
4048
- :type request: :class:`tencentcloud.cwp.v20180228.models.DescribeCloudProtectServiceOrderListRequest`
4049
- :rtype: :class:`tencentcloud.cwp.v20180228.models.DescribeCloudProtectServiceOrderListResponse`
4050
-
4051
- """
4052
- try:
4053
- params = request._serialize()
4054
- headers = request.headers
4055
- body = self.call("DescribeCloudProtectServiceOrderList", params, headers=headers)
4056
- response = json.loads(body)
4057
- model = models.DescribeCloudProtectServiceOrderListResponse()
4058
- model._deserialize(response["Response"])
4059
- return model
4060
- except Exception as e:
4061
- if isinstance(e, TencentCloudSDKException):
4062
- raise
4063
- else:
4064
- raise TencentCloudSDKException(type(e).__name__, str(e))
4065
-
4066
-
4067
4017
  def DescribeComponentStatistics(self, request):
4068
4018
  """接口已无效
4069
4019
 
@@ -7174,7 +7124,9 @@ class CwpClient(AbstractClient):
7174
7124
 
7175
7125
 
7176
7126
  def DescribeSecurityProtectionStat(self, request):
7177
- """获取安全防护状态汇总
7127
+ """接口已无效
7128
+
7129
+ 获取安全防护状态汇总
7178
7130
 
7179
7131
  :param request: Request instance for DescribeSecurityProtectionStat.
7180
7132
  :type request: :class:`tencentcloud.cwp.v20180228.models.DescribeSecurityProtectionStatRequest`