tencentcloud-sdk-python-cls 3.0.981__py2.py3-none-any.whl → 3.0.993__py2.py3-none-any.whl
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/__init__.py +1 -1
- tencentcloud/cls/v20201016/cls_client.py +47 -1
- tencentcloud/cls/v20201016/models.py +266 -14
- {tencentcloud_sdk_python_cls-3.0.981.dist-info → tencentcloud_sdk_python_cls-3.0.993.dist-info}/METADATA +2 -2
- tencentcloud_sdk_python_cls-3.0.993.dist-info/RECORD +10 -0
- tencentcloud_sdk_python_cls-3.0.981.dist-info/RECORD +0 -10
- {tencentcloud_sdk_python_cls-3.0.981.dist-info → tencentcloud_sdk_python_cls-3.0.993.dist-info}/WHEEL +0 -0
- {tencentcloud_sdk_python_cls-3.0.981.dist-info → tencentcloud_sdk_python_cls-3.0.993.dist-info}/top_level.txt +0 -0
tencentcloud/__init__.py
CHANGED
|
@@ -1430,7 +1430,7 @@ class ClsClient(AbstractClient):
|
|
|
1430
1430
|
|
|
1431
1431
|
|
|
1432
1432
|
def GetAlarmLog(self, request):
|
|
1433
|
-
"""
|
|
1433
|
+
"""本接口用于获取告警策略执行详情
|
|
1434
1434
|
|
|
1435
1435
|
:param request: Request instance for GetAlarmLog.
|
|
1436
1436
|
:type request: :class:`tencentcloud.cls.v20201016.models.GetAlarmLogRequest`
|
|
@@ -1866,6 +1866,52 @@ class ClsClient(AbstractClient):
|
|
|
1866
1866
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1867
1867
|
|
|
1868
1868
|
|
|
1869
|
+
def QueryMetric(self, request):
|
|
1870
|
+
"""查询指定时刻指标的最新值
|
|
1871
|
+
|
|
1872
|
+
:param request: Request instance for QueryMetric.
|
|
1873
|
+
:type request: :class:`tencentcloud.cls.v20201016.models.QueryMetricRequest`
|
|
1874
|
+
:rtype: :class:`tencentcloud.cls.v20201016.models.QueryMetricResponse`
|
|
1875
|
+
|
|
1876
|
+
"""
|
|
1877
|
+
try:
|
|
1878
|
+
params = request._serialize()
|
|
1879
|
+
headers = request.headers
|
|
1880
|
+
body = self.call("QueryMetric", params, headers=headers)
|
|
1881
|
+
response = json.loads(body)
|
|
1882
|
+
model = models.QueryMetricResponse()
|
|
1883
|
+
model._deserialize(response["Response"])
|
|
1884
|
+
return model
|
|
1885
|
+
except Exception as e:
|
|
1886
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1887
|
+
raise
|
|
1888
|
+
else:
|
|
1889
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1890
|
+
|
|
1891
|
+
|
|
1892
|
+
def QueryRangeMetric(self, request):
|
|
1893
|
+
"""查询指定时间范围内指标的变化趋势
|
|
1894
|
+
|
|
1895
|
+
:param request: Request instance for QueryRangeMetric.
|
|
1896
|
+
:type request: :class:`tencentcloud.cls.v20201016.models.QueryRangeMetricRequest`
|
|
1897
|
+
:rtype: :class:`tencentcloud.cls.v20201016.models.QueryRangeMetricResponse`
|
|
1898
|
+
|
|
1899
|
+
"""
|
|
1900
|
+
try:
|
|
1901
|
+
params = request._serialize()
|
|
1902
|
+
headers = request.headers
|
|
1903
|
+
body = self.call("QueryRangeMetric", params, headers=headers)
|
|
1904
|
+
response = json.loads(body)
|
|
1905
|
+
model = models.QueryRangeMetricResponse()
|
|
1906
|
+
model._deserialize(response["Response"])
|
|
1907
|
+
return model
|
|
1908
|
+
except Exception as e:
|
|
1909
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1910
|
+
raise
|
|
1911
|
+
else:
|
|
1912
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1913
|
+
|
|
1914
|
+
|
|
1869
1915
|
def RetryShipperTask(self, request):
|
|
1870
1916
|
"""重试失败的投递任务
|
|
1871
1917
|
|
|
@@ -4045,6 +4045,9 @@ class CreateExportRequest(AbstractModel):
|
|
|
4045
4045
|
:type Order: str
|
|
4046
4046
|
:param _Format: 日志导出数据格式。json,csv,默认为json
|
|
4047
4047
|
:type Format: str
|
|
4048
|
+
:param _SyntaxRule: 语法规则, 默认值为0。
|
|
4049
|
+
0:Lucene语法,1:CQL语法。
|
|
4050
|
+
:type SyntaxRule: int
|
|
4048
4051
|
"""
|
|
4049
4052
|
self._TopicId = None
|
|
4050
4053
|
self._Count = None
|
|
@@ -4053,6 +4056,7 @@ class CreateExportRequest(AbstractModel):
|
|
|
4053
4056
|
self._To = None
|
|
4054
4057
|
self._Order = None
|
|
4055
4058
|
self._Format = None
|
|
4059
|
+
self._SyntaxRule = None
|
|
4056
4060
|
|
|
4057
4061
|
@property
|
|
4058
4062
|
def TopicId(self):
|
|
@@ -4110,6 +4114,14 @@ class CreateExportRequest(AbstractModel):
|
|
|
4110
4114
|
def Format(self, Format):
|
|
4111
4115
|
self._Format = Format
|
|
4112
4116
|
|
|
4117
|
+
@property
|
|
4118
|
+
def SyntaxRule(self):
|
|
4119
|
+
return self._SyntaxRule
|
|
4120
|
+
|
|
4121
|
+
@SyntaxRule.setter
|
|
4122
|
+
def SyntaxRule(self, SyntaxRule):
|
|
4123
|
+
self._SyntaxRule = SyntaxRule
|
|
4124
|
+
|
|
4113
4125
|
|
|
4114
4126
|
def _deserialize(self, params):
|
|
4115
4127
|
self._TopicId = params.get("TopicId")
|
|
@@ -4119,6 +4131,7 @@ class CreateExportRequest(AbstractModel):
|
|
|
4119
4131
|
self._To = params.get("To")
|
|
4120
4132
|
self._Order = params.get("Order")
|
|
4121
4133
|
self._Format = params.get("Format")
|
|
4134
|
+
self._SyntaxRule = params.get("SyntaxRule")
|
|
4122
4135
|
memeber_set = set(params.keys())
|
|
4123
4136
|
for name, value in vars(self).items():
|
|
4124
4137
|
property_name = name[1:]
|
|
@@ -10928,19 +10941,22 @@ class GetAlarmLogRequest(AbstractModel):
|
|
|
10928
10941
|
|
|
10929
10942
|
def __init__(self):
|
|
10930
10943
|
r"""
|
|
10931
|
-
:param _From:
|
|
10944
|
+
:param _From: 要查询的执行详情的起始时间,Unix时间戳,单位ms
|
|
10932
10945
|
:type From: int
|
|
10933
|
-
:param _To:
|
|
10946
|
+
:param _To: 要查询的执行详情的结束时间,Unix时间戳,单位ms
|
|
10934
10947
|
:type To: int
|
|
10935
|
-
:param _Query:
|
|
10948
|
+
:param _Query: 查询过滤条件,例如:
|
|
10949
|
+
- 按告警策略ID查询:`alert_id:"alarm-0745ec00-e605-xxxx-b50b-54afe61fc971"`
|
|
10950
|
+
- 按监控对象ID查询:`monitored_object:"823d8bfa-76a7-xxxx-8399-8cda74d4009b") `
|
|
10951
|
+
- 按告警策略ID及监控对象ID查询:`alert_id:"alarm-0745ec00-e605-xxxx-b50b-54afe61fc971" AND monitored_object:"823d8bfa-76a7-xxxx-8399-8cda74d4009b")`
|
|
10936
10952
|
:type Query: str
|
|
10937
|
-
:param _Limit:
|
|
10953
|
+
:param _Limit: 单次查询返回的执行详情条数,最大值为1000
|
|
10938
10954
|
:type Limit: int
|
|
10939
|
-
:param _Context:
|
|
10955
|
+
:param _Context: 加载更多详情时使用,透传上次返回的Context值,获取后续的执行详情
|
|
10940
10956
|
:type Context: str
|
|
10941
|
-
:param _Sort:
|
|
10957
|
+
:param _Sort: 执行详情是否按时间排序返回;可选值:asc(升序)、desc(降序),默认为 desc
|
|
10942
10958
|
:type Sort: str
|
|
10943
|
-
:param _UseNewAnalysis: 为true
|
|
10959
|
+
:param _UseNewAnalysis: 如果Query包含SQL语句,UseNewAnalysis为true时响应参数AnalysisRecords和Columns有效, UseNewAnalysis为false时响应参数AnalysisResults和ColNames有效
|
|
10944
10960
|
:type UseNewAnalysis: bool
|
|
10945
10961
|
"""
|
|
10946
10962
|
self._From = None
|
|
@@ -11033,25 +11049,25 @@ class GetAlarmLogResponse(AbstractModel):
|
|
|
11033
11049
|
|
|
11034
11050
|
def __init__(self):
|
|
11035
11051
|
r"""
|
|
11036
|
-
:param _Context:
|
|
11052
|
+
:param _Context: 加载后续详情的Context
|
|
11037
11053
|
:type Context: str
|
|
11038
|
-
:param _ListOver:
|
|
11054
|
+
:param _ListOver: 指定时间范围内的告警执行详情是否完整返回
|
|
11039
11055
|
:type ListOver: bool
|
|
11040
|
-
:param _Analysis:
|
|
11056
|
+
:param _Analysis: 返回的结果是否为SQL分析结果
|
|
11041
11057
|
:type Analysis: bool
|
|
11042
11058
|
:param _ColNames: 如果Analysis为True,则返回分析结果的列名,否则为空
|
|
11043
11059
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11044
11060
|
:type ColNames: list of str
|
|
11045
|
-
:param _Results:
|
|
11061
|
+
:param _Results: 执行详情查询结果;当Analysis为True时,可能返回为null
|
|
11046
11062
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11047
11063
|
:type Results: list of LogInfo
|
|
11048
|
-
:param _AnalysisResults:
|
|
11064
|
+
:param _AnalysisResults: 执行详情统计分析结果;当Analysis为False时,可能返回为null
|
|
11049
11065
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11050
11066
|
:type AnalysisResults: list of LogItems
|
|
11051
|
-
:param _AnalysisRecords:
|
|
11067
|
+
:param _AnalysisRecords: 执行详情统计分析结果; UseNewAnalysis为true有效
|
|
11052
11068
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11053
11069
|
:type AnalysisRecords: list of str
|
|
11054
|
-
:param _Columns:
|
|
11070
|
+
:param _Columns: 分析结果的列名, UseNewAnalysis为true有效
|
|
11055
11071
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
11056
11072
|
:type Columns: list of Column
|
|
11057
11073
|
:param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
@@ -16249,6 +16265,242 @@ class PreviewLogStatistic(AbstractModel):
|
|
|
16249
16265
|
|
|
16250
16266
|
|
|
16251
16267
|
|
|
16268
|
+
class QueryMetricRequest(AbstractModel):
|
|
16269
|
+
"""QueryMetric请求参数结构体
|
|
16270
|
+
|
|
16271
|
+
"""
|
|
16272
|
+
|
|
16273
|
+
def __init__(self):
|
|
16274
|
+
r"""
|
|
16275
|
+
:param _Query: 查询语句,使用PromQL语法
|
|
16276
|
+
:type Query: str
|
|
16277
|
+
:param _TopicId: 指标主题ID
|
|
16278
|
+
:type TopicId: str
|
|
16279
|
+
:param _Time: 查询时间,秒级Unix时间戳
|
|
16280
|
+
:type Time: int
|
|
16281
|
+
"""
|
|
16282
|
+
self._Query = None
|
|
16283
|
+
self._TopicId = None
|
|
16284
|
+
self._Time = None
|
|
16285
|
+
|
|
16286
|
+
@property
|
|
16287
|
+
def Query(self):
|
|
16288
|
+
return self._Query
|
|
16289
|
+
|
|
16290
|
+
@Query.setter
|
|
16291
|
+
def Query(self, Query):
|
|
16292
|
+
self._Query = Query
|
|
16293
|
+
|
|
16294
|
+
@property
|
|
16295
|
+
def TopicId(self):
|
|
16296
|
+
return self._TopicId
|
|
16297
|
+
|
|
16298
|
+
@TopicId.setter
|
|
16299
|
+
def TopicId(self, TopicId):
|
|
16300
|
+
self._TopicId = TopicId
|
|
16301
|
+
|
|
16302
|
+
@property
|
|
16303
|
+
def Time(self):
|
|
16304
|
+
return self._Time
|
|
16305
|
+
|
|
16306
|
+
@Time.setter
|
|
16307
|
+
def Time(self, Time):
|
|
16308
|
+
self._Time = Time
|
|
16309
|
+
|
|
16310
|
+
|
|
16311
|
+
def _deserialize(self, params):
|
|
16312
|
+
self._Query = params.get("Query")
|
|
16313
|
+
self._TopicId = params.get("TopicId")
|
|
16314
|
+
self._Time = params.get("Time")
|
|
16315
|
+
memeber_set = set(params.keys())
|
|
16316
|
+
for name, value in vars(self).items():
|
|
16317
|
+
property_name = name[1:]
|
|
16318
|
+
if property_name in memeber_set:
|
|
16319
|
+
memeber_set.remove(property_name)
|
|
16320
|
+
if len(memeber_set) > 0:
|
|
16321
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
16322
|
+
|
|
16323
|
+
|
|
16324
|
+
|
|
16325
|
+
class QueryMetricResponse(AbstractModel):
|
|
16326
|
+
"""QueryMetric返回参数结构体
|
|
16327
|
+
|
|
16328
|
+
"""
|
|
16329
|
+
|
|
16330
|
+
def __init__(self):
|
|
16331
|
+
r"""
|
|
16332
|
+
:param _ResultType: 指标查询结果类型
|
|
16333
|
+
:type ResultType: str
|
|
16334
|
+
:param _Result: 指标查询结果
|
|
16335
|
+
:type Result: str
|
|
16336
|
+
:param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
16337
|
+
:type RequestId: str
|
|
16338
|
+
"""
|
|
16339
|
+
self._ResultType = None
|
|
16340
|
+
self._Result = None
|
|
16341
|
+
self._RequestId = None
|
|
16342
|
+
|
|
16343
|
+
@property
|
|
16344
|
+
def ResultType(self):
|
|
16345
|
+
return self._ResultType
|
|
16346
|
+
|
|
16347
|
+
@ResultType.setter
|
|
16348
|
+
def ResultType(self, ResultType):
|
|
16349
|
+
self._ResultType = ResultType
|
|
16350
|
+
|
|
16351
|
+
@property
|
|
16352
|
+
def Result(self):
|
|
16353
|
+
return self._Result
|
|
16354
|
+
|
|
16355
|
+
@Result.setter
|
|
16356
|
+
def Result(self, Result):
|
|
16357
|
+
self._Result = Result
|
|
16358
|
+
|
|
16359
|
+
@property
|
|
16360
|
+
def RequestId(self):
|
|
16361
|
+
return self._RequestId
|
|
16362
|
+
|
|
16363
|
+
@RequestId.setter
|
|
16364
|
+
def RequestId(self, RequestId):
|
|
16365
|
+
self._RequestId = RequestId
|
|
16366
|
+
|
|
16367
|
+
|
|
16368
|
+
def _deserialize(self, params):
|
|
16369
|
+
self._ResultType = params.get("ResultType")
|
|
16370
|
+
self._Result = params.get("Result")
|
|
16371
|
+
self._RequestId = params.get("RequestId")
|
|
16372
|
+
|
|
16373
|
+
|
|
16374
|
+
class QueryRangeMetricRequest(AbstractModel):
|
|
16375
|
+
"""QueryRangeMetric请求参数结构体
|
|
16376
|
+
|
|
16377
|
+
"""
|
|
16378
|
+
|
|
16379
|
+
def __init__(self):
|
|
16380
|
+
r"""
|
|
16381
|
+
:param _TopicId: 指标主题ID
|
|
16382
|
+
:type TopicId: str
|
|
16383
|
+
:param _Query: 查询语句,使用PromQL语法
|
|
16384
|
+
:type Query: str
|
|
16385
|
+
:param _Start: 查询起始时间,秒级Unix时间戳
|
|
16386
|
+
:type Start: int
|
|
16387
|
+
:param _End: 查询结束时间,秒级Unix时间戳
|
|
16388
|
+
:type End: int
|
|
16389
|
+
:param _Step: 查询时间间隔,单位秒
|
|
16390
|
+
:type Step: int
|
|
16391
|
+
"""
|
|
16392
|
+
self._TopicId = None
|
|
16393
|
+
self._Query = None
|
|
16394
|
+
self._Start = None
|
|
16395
|
+
self._End = None
|
|
16396
|
+
self._Step = None
|
|
16397
|
+
|
|
16398
|
+
@property
|
|
16399
|
+
def TopicId(self):
|
|
16400
|
+
return self._TopicId
|
|
16401
|
+
|
|
16402
|
+
@TopicId.setter
|
|
16403
|
+
def TopicId(self, TopicId):
|
|
16404
|
+
self._TopicId = TopicId
|
|
16405
|
+
|
|
16406
|
+
@property
|
|
16407
|
+
def Query(self):
|
|
16408
|
+
return self._Query
|
|
16409
|
+
|
|
16410
|
+
@Query.setter
|
|
16411
|
+
def Query(self, Query):
|
|
16412
|
+
self._Query = Query
|
|
16413
|
+
|
|
16414
|
+
@property
|
|
16415
|
+
def Start(self):
|
|
16416
|
+
return self._Start
|
|
16417
|
+
|
|
16418
|
+
@Start.setter
|
|
16419
|
+
def Start(self, Start):
|
|
16420
|
+
self._Start = Start
|
|
16421
|
+
|
|
16422
|
+
@property
|
|
16423
|
+
def End(self):
|
|
16424
|
+
return self._End
|
|
16425
|
+
|
|
16426
|
+
@End.setter
|
|
16427
|
+
def End(self, End):
|
|
16428
|
+
self._End = End
|
|
16429
|
+
|
|
16430
|
+
@property
|
|
16431
|
+
def Step(self):
|
|
16432
|
+
return self._Step
|
|
16433
|
+
|
|
16434
|
+
@Step.setter
|
|
16435
|
+
def Step(self, Step):
|
|
16436
|
+
self._Step = Step
|
|
16437
|
+
|
|
16438
|
+
|
|
16439
|
+
def _deserialize(self, params):
|
|
16440
|
+
self._TopicId = params.get("TopicId")
|
|
16441
|
+
self._Query = params.get("Query")
|
|
16442
|
+
self._Start = params.get("Start")
|
|
16443
|
+
self._End = params.get("End")
|
|
16444
|
+
self._Step = params.get("Step")
|
|
16445
|
+
memeber_set = set(params.keys())
|
|
16446
|
+
for name, value in vars(self).items():
|
|
16447
|
+
property_name = name[1:]
|
|
16448
|
+
if property_name in memeber_set:
|
|
16449
|
+
memeber_set.remove(property_name)
|
|
16450
|
+
if len(memeber_set) > 0:
|
|
16451
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
16452
|
+
|
|
16453
|
+
|
|
16454
|
+
|
|
16455
|
+
class QueryRangeMetricResponse(AbstractModel):
|
|
16456
|
+
"""QueryRangeMetric返回参数结构体
|
|
16457
|
+
|
|
16458
|
+
"""
|
|
16459
|
+
|
|
16460
|
+
def __init__(self):
|
|
16461
|
+
r"""
|
|
16462
|
+
:param _ResultType: 指标查询结果类型
|
|
16463
|
+
:type ResultType: str
|
|
16464
|
+
:param _Result: 指标查询结果
|
|
16465
|
+
:type Result: str
|
|
16466
|
+
:param _RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
|
16467
|
+
:type RequestId: str
|
|
16468
|
+
"""
|
|
16469
|
+
self._ResultType = None
|
|
16470
|
+
self._Result = None
|
|
16471
|
+
self._RequestId = None
|
|
16472
|
+
|
|
16473
|
+
@property
|
|
16474
|
+
def ResultType(self):
|
|
16475
|
+
return self._ResultType
|
|
16476
|
+
|
|
16477
|
+
@ResultType.setter
|
|
16478
|
+
def ResultType(self, ResultType):
|
|
16479
|
+
self._ResultType = ResultType
|
|
16480
|
+
|
|
16481
|
+
@property
|
|
16482
|
+
def Result(self):
|
|
16483
|
+
return self._Result
|
|
16484
|
+
|
|
16485
|
+
@Result.setter
|
|
16486
|
+
def Result(self, Result):
|
|
16487
|
+
self._Result = Result
|
|
16488
|
+
|
|
16489
|
+
@property
|
|
16490
|
+
def RequestId(self):
|
|
16491
|
+
return self._RequestId
|
|
16492
|
+
|
|
16493
|
+
@RequestId.setter
|
|
16494
|
+
def RequestId(self, RequestId):
|
|
16495
|
+
self._RequestId = RequestId
|
|
16496
|
+
|
|
16497
|
+
|
|
16498
|
+
def _deserialize(self, params):
|
|
16499
|
+
self._ResultType = params.get("ResultType")
|
|
16500
|
+
self._Result = params.get("Result")
|
|
16501
|
+
self._RequestId = params.get("RequestId")
|
|
16502
|
+
|
|
16503
|
+
|
|
16252
16504
|
class RetryShipperTaskRequest(AbstractModel):
|
|
16253
16505
|
"""RetryShipperTask请求参数结构体
|
|
16254
16506
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: tencentcloud-sdk-python-cls
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.993
|
|
4
4
|
Summary: Tencent Cloud Cls 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 (==3.0.
|
|
18
|
+
Requires-Dist: tencentcloud-sdk-python-common (==3.0.993)
|
|
19
19
|
|
|
20
20
|
============================
|
|
21
21
|
Tencent Cloud SDK for Python
|
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
tencentcloud/__init__.py,sha256=XL_xfRYLsHmnE6JXQSrm0oYp-XKWL8Q1PvYaVOWvulk,630
|
|
2
|
+
tencentcloud/cls/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
tencentcloud/cls/v20201016/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
+
tencentcloud/cls/v20201016/cls_client.py,sha256=NON80QTY1kmnS-5auZeaHzj-RVVfTAWgedWtrpOWsCE,87362
|
|
5
|
+
tencentcloud/cls/v20201016/errorcodes.py,sha256=ADBJ7QZPtpl7tsJ9t6lgKmxiV5kWmAou4UGvWC7Q2fc,9633
|
|
6
|
+
tencentcloud/cls/v20201016/models.py,sha256=Zl2lSa9zylBlGB06crUMdATMTOekUDulC0asWoNCpsw,543825
|
|
7
|
+
tencentcloud_sdk_python_cls-3.0.993.dist-info/METADATA,sha256=Q31ak6-o1vgpASbCJdbFvXXZu6F3ARHKak9wdUVvy1o,1490
|
|
8
|
+
tencentcloud_sdk_python_cls-3.0.993.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
+
tencentcloud_sdk_python_cls-3.0.993.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
+
tencentcloud_sdk_python_cls-3.0.993.dist-info/RECORD,,
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
tencentcloud/__init__.py,sha256=WWCDgLRJQ1KeXxL2jOGTI5GPlTkSqaG4BRDUT4r4Ufw,630
|
|
2
|
-
tencentcloud/cls/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
tencentcloud/cls/v20201016/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
tencentcloud/cls/v20201016/cls_client.py,sha256=U4U7kU0CKuFTHK8MLFjj6Au99cHKY0M4x8B_klfaQeo,85612
|
|
5
|
-
tencentcloud/cls/v20201016/errorcodes.py,sha256=ADBJ7QZPtpl7tsJ9t6lgKmxiV5kWmAou4UGvWC7Q2fc,9633
|
|
6
|
-
tencentcloud/cls/v20201016/models.py,sha256=OJFnE38JNS-CM7MPkuqv0H4lyDBfRMSx1RQWKzrzLFA,537257
|
|
7
|
-
tencentcloud_sdk_python_cls-3.0.981.dist-info/METADATA,sha256=MsOwSn4RxGmyGKcj_D-kRvDVp7GSZGwS-ClozN_8zPE,1490
|
|
8
|
-
tencentcloud_sdk_python_cls-3.0.981.dist-info/WHEEL,sha256=z9j0xAa_JmUKMpmz72K0ZGALSM_n-wQVmGbleXx2VHg,110
|
|
9
|
-
tencentcloud_sdk_python_cls-3.0.981.dist-info/top_level.txt,sha256=g-8OyzoqI6O6LiS85zkeNzhB-osEnRIPZMdyRd_0eL0,13
|
|
10
|
-
tencentcloud_sdk_python_cls-3.0.981.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|