tencentcloud-sdk-python-cls 3.0.1356__tar.gz → 3.0.1358__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-cls-3.0.1356 → tencentcloud-sdk-python-cls-3.0.1358}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.1356 → tencentcloud-sdk-python-cls-3.0.1358}/setup.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1356 → tencentcloud-sdk-python-cls-3.0.1358}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1356 → tencentcloud-sdk-python-cls-3.0.1358}/tencentcloud/cls/v20201016/cls_client.py +23 -0
- {tencentcloud-sdk-python-cls-3.0.1356 → tencentcloud-sdk-python-cls-3.0.1358}/tencentcloud/cls/v20201016/models.py +79 -0
- {tencentcloud-sdk-python-cls-3.0.1356 → tencentcloud-sdk-python-cls-3.0.1358}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cls-3.0.1358/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cls-3.0.1356/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cls-3.0.1356 → tencentcloud-sdk-python-cls-3.0.1358}/README.rst +0 -0
- {tencentcloud-sdk-python-cls-3.0.1356 → tencentcloud-sdk-python-cls-3.0.1358}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cls-3.0.1356 → tencentcloud-sdk-python-cls-3.0.1358}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1356 → tencentcloud-sdk-python-cls-3.0.1358}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1356 → tencentcloud-sdk-python-cls-3.0.1358}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1356 → tencentcloud-sdk-python-cls-3.0.1358}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1356 → tencentcloud-sdk-python-cls-3.0.1358}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1356 → tencentcloud-sdk-python-cls-3.0.1358}/tencentcloud_sdk_python_cls.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-cls',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1358"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cls SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -861,6 +861,29 @@ class ClsClient(AbstractClient):
|
|
|
861
861
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
862
862
|
|
|
863
863
|
|
|
864
|
+
def DeleteCosRecharge(self, request):
|
|
865
|
+
"""本接口用于删除cos导入任务
|
|
866
|
+
|
|
867
|
+
:param request: Request instance for DeleteCosRecharge.
|
|
868
|
+
:type request: :class:`tencentcloud.cls.v20201016.models.DeleteCosRechargeRequest`
|
|
869
|
+
:rtype: :class:`tencentcloud.cls.v20201016.models.DeleteCosRechargeResponse`
|
|
870
|
+
|
|
871
|
+
"""
|
|
872
|
+
try:
|
|
873
|
+
params = request._serialize()
|
|
874
|
+
headers = request.headers
|
|
875
|
+
body = self.call("DeleteCosRecharge", params, headers=headers)
|
|
876
|
+
response = json.loads(body)
|
|
877
|
+
model = models.DeleteCosRechargeResponse()
|
|
878
|
+
model._deserialize(response["Response"])
|
|
879
|
+
return model
|
|
880
|
+
except Exception as e:
|
|
881
|
+
if isinstance(e, TencentCloudSDKException):
|
|
882
|
+
raise
|
|
883
|
+
else:
|
|
884
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
885
|
+
|
|
886
|
+
|
|
864
887
|
def DeleteDashboardSubscribe(self, request):
|
|
865
888
|
"""此接口用于删除仪表盘订阅
|
|
866
889
|
|
|
@@ -11154,6 +11154,85 @@ class DeleteConsumerResponse(AbstractModel):
|
|
|
11154
11154
|
self._RequestId = params.get("RequestId")
|
|
11155
11155
|
|
|
11156
11156
|
|
|
11157
|
+
class DeleteCosRechargeRequest(AbstractModel):
|
|
11158
|
+
"""DeleteCosRecharge请求参数结构体
|
|
11159
|
+
|
|
11160
|
+
"""
|
|
11161
|
+
|
|
11162
|
+
def __init__(self):
|
|
11163
|
+
r"""
|
|
11164
|
+
:param _Id: COS导入配置Id
|
|
11165
|
+
:type Id: str
|
|
11166
|
+
:param _TopicId: 日志主题Id
|
|
11167
|
+
:type TopicId: str
|
|
11168
|
+
"""
|
|
11169
|
+
self._Id = None
|
|
11170
|
+
self._TopicId = None
|
|
11171
|
+
|
|
11172
|
+
@property
|
|
11173
|
+
def Id(self):
|
|
11174
|
+
"""COS导入配置Id
|
|
11175
|
+
:rtype: str
|
|
11176
|
+
"""
|
|
11177
|
+
return self._Id
|
|
11178
|
+
|
|
11179
|
+
@Id.setter
|
|
11180
|
+
def Id(self, Id):
|
|
11181
|
+
self._Id = Id
|
|
11182
|
+
|
|
11183
|
+
@property
|
|
11184
|
+
def TopicId(self):
|
|
11185
|
+
"""日志主题Id
|
|
11186
|
+
:rtype: str
|
|
11187
|
+
"""
|
|
11188
|
+
return self._TopicId
|
|
11189
|
+
|
|
11190
|
+
@TopicId.setter
|
|
11191
|
+
def TopicId(self, TopicId):
|
|
11192
|
+
self._TopicId = TopicId
|
|
11193
|
+
|
|
11194
|
+
|
|
11195
|
+
def _deserialize(self, params):
|
|
11196
|
+
self._Id = params.get("Id")
|
|
11197
|
+
self._TopicId = params.get("TopicId")
|
|
11198
|
+
memeber_set = set(params.keys())
|
|
11199
|
+
for name, value in vars(self).items():
|
|
11200
|
+
property_name = name[1:]
|
|
11201
|
+
if property_name in memeber_set:
|
|
11202
|
+
memeber_set.remove(property_name)
|
|
11203
|
+
if len(memeber_set) > 0:
|
|
11204
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
11205
|
+
|
|
11206
|
+
|
|
11207
|
+
|
|
11208
|
+
class DeleteCosRechargeResponse(AbstractModel):
|
|
11209
|
+
"""DeleteCosRecharge返回参数结构体
|
|
11210
|
+
|
|
11211
|
+
"""
|
|
11212
|
+
|
|
11213
|
+
def __init__(self):
|
|
11214
|
+
r"""
|
|
11215
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
11216
|
+
:type RequestId: str
|
|
11217
|
+
"""
|
|
11218
|
+
self._RequestId = None
|
|
11219
|
+
|
|
11220
|
+
@property
|
|
11221
|
+
def RequestId(self):
|
|
11222
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
11223
|
+
:rtype: str
|
|
11224
|
+
"""
|
|
11225
|
+
return self._RequestId
|
|
11226
|
+
|
|
11227
|
+
@RequestId.setter
|
|
11228
|
+
def RequestId(self, RequestId):
|
|
11229
|
+
self._RequestId = RequestId
|
|
11230
|
+
|
|
11231
|
+
|
|
11232
|
+
def _deserialize(self, params):
|
|
11233
|
+
self._RequestId = params.get("RequestId")
|
|
11234
|
+
|
|
11235
|
+
|
|
11157
11236
|
class DeleteDashboardSubscribeRequest(AbstractModel):
|
|
11158
11237
|
"""DeleteDashboardSubscribe请求参数结构体
|
|
11159
11238
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1358
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1356
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|