tencentcloud-sdk-python-cls 3.0.1054__tar.gz → 3.0.1063__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-cls-3.0.1054 → tencentcloud-sdk-python-cls-3.0.1063}/PKG-INFO +1 -1
  2. {tencentcloud-sdk-python-cls-3.0.1054 → tencentcloud-sdk-python-cls-3.0.1063}/setup.py +1 -1
  3. {tencentcloud-sdk-python-cls-3.0.1054 → tencentcloud-sdk-python-cls-3.0.1063}/tencentcloud/__init__.py +1 -1
  4. {tencentcloud-sdk-python-cls-3.0.1054 → tencentcloud-sdk-python-cls-3.0.1063}/tencentcloud/cls/v20201016/errorcodes.py +6 -0
  5. {tencentcloud-sdk-python-cls-3.0.1054 → tencentcloud-sdk-python-cls-3.0.1063}/tencentcloud/cls/v20201016/models.py +103 -40
  6. {tencentcloud-sdk-python-cls-3.0.1054 → tencentcloud-sdk-python-cls-3.0.1063}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
  7. tencentcloud-sdk-python-cls-3.0.1063/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
  8. tencentcloud-sdk-python-cls-3.0.1054/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
  9. {tencentcloud-sdk-python-cls-3.0.1054 → tencentcloud-sdk-python-cls-3.0.1063}/README.rst +0 -0
  10. {tencentcloud-sdk-python-cls-3.0.1054 → tencentcloud-sdk-python-cls-3.0.1063}/setup.cfg +0 -0
  11. {tencentcloud-sdk-python-cls-3.0.1054 → tencentcloud-sdk-python-cls-3.0.1063}/tencentcloud/cls/__init__.py +0 -0
  12. {tencentcloud-sdk-python-cls-3.0.1054 → tencentcloud-sdk-python-cls-3.0.1063}/tencentcloud/cls/v20201016/__init__.py +0 -0
  13. {tencentcloud-sdk-python-cls-3.0.1054 → tencentcloud-sdk-python-cls-3.0.1063}/tencentcloud/cls/v20201016/cls_client.py +0 -0
  14. {tencentcloud-sdk-python-cls-3.0.1054 → tencentcloud-sdk-python-cls-3.0.1063}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
  15. {tencentcloud-sdk-python-cls-3.0.1054 → tencentcloud-sdk-python-cls-3.0.1063}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
  16. {tencentcloud-sdk-python-cls-3.0.1054 → tencentcloud-sdk-python-cls-3.0.1063}/tencentcloud_sdk_python_cls.egg-info/top_level.txt +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-cls
3
- Version: 3.0.1054
3
+ Version: 3.0.1063
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
@@ -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.1054"],
11
+ install_requires=["tencentcloud-sdk-python-common==3.0.1063"],
12
12
  version=tencentcloud.__version__,
13
13
  description='Tencent Cloud Cls 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.1054'
17
+ __version__ = '3.0.1063'
@@ -65,9 +65,15 @@ FAILEDOPERATION_MISSINGCONTENT = 'FailedOperation.MissingContent'
65
65
  # 修改的生命周期被禁止。
66
66
  FAILEDOPERATION_PERIODMODIFYFORBIDDEN = 'FailedOperation.PeriodModifyForbidden'
67
67
 
68
+ # 文件预览失败,请稍后再试。
69
+ FAILEDOPERATION_PREVIEWFILE = 'FailedOperation.PreviewFile'
70
+
68
71
  # 查询语句运行失败。
69
72
  FAILEDOPERATION_QUERYERROR = 'FailedOperation.QueryError'
70
73
 
74
+ # 读取文件内容失败,请确认文件可读。
75
+ FAILEDOPERATION_READFILE = 'FailedOperation.ReadFile'
76
+
71
77
  # 读qps超过限制。
72
78
  FAILEDOPERATION_READQPSLIMIT = 'FailedOperation.ReadQpsLimit'
73
79
 
@@ -196,7 +196,7 @@ class AlarmInfo(AbstractModel):
196
196
  :type AlarmTargets: list of AlarmTargetInfo
197
197
  :param _MonitorTime: 监控任务运行时间点。
198
198
  :type MonitorTime: :class:`tencentcloud.cls.v20201016.models.MonitorTime`
199
- :param _Condition: 触发条件。
199
+ :param _Condition: 单触发条件。与MultiConditions参数互斥。
200
200
  :type Condition: str
201
201
  :param _TriggerCount: 持续周期。持续满足触发条件TriggerCount个周期后,再进行告警;最小值为1,最大值为10。
202
202
  :type TriggerCount: int
@@ -233,8 +233,8 @@ class AlarmInfo(AbstractModel):
233
233
  :param _AlarmLevel: 告警级别。0:警告(Warn);1:提醒(Info);2:紧急 (Critical)。
234
234
  注意:此字段可能返回 null,表示取不到有效值。
235
235
  :type AlarmLevel: int
236
- :param _MultiConditions: 多触发条件。
237
-
236
+ :param _MultiConditions: 多触发条件。与
237
+ Condition互斥。
238
238
  注意:此字段可能返回 null,表示取不到有效值。
239
239
  :type MultiConditions: list of MultiCondition
240
240
  """
@@ -1120,7 +1120,49 @@ class AnalysisDimensional(AbstractModel):
1120
1120
  :param _Content: 分析内容
1121
1121
  注意:此字段可能返回 null,表示取不到有效值。
1122
1122
  :type Content: str
1123
- :param _ConfigInfo: 配置
1123
+ :param _ConfigInfo: 多维分析配置。
1124
+
1125
+ 当Analysis的Type字段为query(自定义)时,支持
1126
+ {
1127
+ "Key": "SyntaxRule", // 语法规则
1128
+ "Value": "1" //0:Lucene语法 ,1: CQL语法
1129
+ }
1130
+
1131
+
1132
+
1133
+ 当Analysis的Type字段为field(top5)时, 支持
1134
+ {
1135
+ "Key": "QueryIndex",
1136
+ "Value": "-1" // -1:自定义, 1:执行语句1, 2:执行语句2
1137
+ },{
1138
+ "Key": "CustomQuery", //检索语句。 QueryIndex为-1时有效且必填
1139
+ "Value": "* | select count(*) as count"
1140
+ },{
1141
+ "Key": "SyntaxRule", // 查不到这个字段也是老语法(Lucene)
1142
+ "Value": "0"//0:Lucene, 1:CQL
1143
+ }
1144
+
1145
+ 当Analysis的Type字段为original(原始日志)时, 支持
1146
+ {
1147
+ "Key": "Fields",
1148
+ "Value": "__SOURCE__,__HOSTNAME__,__TIMESTAMP__,__PKG_LOGID__,__TAG__.pod_ip"
1149
+ }, {
1150
+ "Key": "QueryIndex",
1151
+ "Value": "-1" // -1:自定义, 1:执行语句1, 2:执行语句2
1152
+ },{
1153
+ "Key": "CustomQuery", // //检索语句。 QueryIndex为-1时有效且必填
1154
+ "Value": "* | select count(*) as count"
1155
+ },{
1156
+ "Key": "Format", //显示形式。1:每条日志一行,2:每条日志每个字段一行
1157
+ "Value": "2"
1158
+ },
1159
+ {
1160
+ "Key": "Limit", //最大日志条数
1161
+ "Value": "5"
1162
+ },{
1163
+ "Key": "SyntaxRule", // 查不到这个字段也是老语法
1164
+ "Value": "0"//0:Lucene, 1:CQL
1165
+ }
1124
1166
  注意:此字段可能返回 null,表示取不到有效值。
1125
1167
  :type ConfigInfo: list of AlarmAnalysisConfig
1126
1168
  """
@@ -1418,13 +1460,15 @@ class CheckRechargeKafkaServerRequest(AbstractModel):
1418
1460
  r"""
1419
1461
  :param _KafkaType: 导入Kafka类型,0: 腾讯云CKafka,1: 用户自建Kafka
1420
1462
  :type KafkaType: int
1421
- :param _KafkaInstance: 腾讯云CKafka实例ID,KafkaType为0时必填
1463
+ :param _KafkaInstance: 腾讯云CKafka实例ID
1464
+ KafkaType为0时,KafkaInstance必填
1422
1465
  :type KafkaInstance: str
1423
- :param _ServerAddr: 服务地址
1466
+ :param _ServerAddr: 服务地址。
1467
+ KafkaType为1时,ServerAddr必填
1424
1468
  :type ServerAddr: str
1425
1469
  :param _IsEncryptionAddr: ServerAddr是否为加密连接
1426
1470
  :type IsEncryptionAddr: bool
1427
- :param _Protocol: 加密访问协议,IsEncryptionAddr参数为true时必填
1471
+ :param _Protocol: 加密访问协议。IsEncryptionAddr参数为true时必填
1428
1472
  :type Protocol: :class:`tencentcloud.cls.v20201016.models.KafkaProtocolInfo`
1429
1473
  """
1430
1474
  self._KafkaType = None
@@ -4016,16 +4060,17 @@ class CreateCosRechargeRequest(AbstractModel):
4016
4060
  :type LogsetId: str
4017
4061
  :param _Name: 投递任务名称
4018
4062
  :type Name: str
4019
- :param _Bucket: COS存储桶
4063
+ :param _Bucket: COS存储桶。
4064
+ 存储桶命名规范:https://cloud.tencent.com/document/product/436/13312
4020
4065
  :type Bucket: str
4021
- :param _BucketRegion: COS存储桶所在地域
4066
+ :param _BucketRegion: COS存储桶所在地域。地域和访问域名:https://cloud.tencent.com/document/product/436/6224
4022
4067
  :type BucketRegion: str
4023
4068
  :param _Prefix: COS文件所在文件夹的前缀
4024
4069
  :type Prefix: str
4025
4070
  :param _LogType: 采集的日志类型,json_log代表json格式日志,delimiter_log代表分隔符格式日志,minimalist_log代表单行全文;
4026
4071
  默认为minimalist_log
4027
4072
  :type LogType: str
4028
- :param _Compress: supported: "", "gzip", "lzop", "snappy”; 默认空
4073
+ :param _Compress: supported: "", "gzip", "lzop", "snappy"; 默认空
4029
4074
  :type Compress: str
4030
4075
  :param _ExtractRuleInfo: 提取规则,如果设置了ExtractRule,则必须设置LogType
4031
4076
  :type ExtractRuleInfo: :class:`tencentcloud.cls.v20201016.models.ExtractRuleInfo`
@@ -4746,11 +4791,13 @@ class CreateKafkaRechargeRequest(AbstractModel):
4746
4791
  :type ServerAddr: str
4747
4792
  :param _IsEncryptionAddr: ServerAddr是否为加密连接,KafkaType为1时必填
4748
4793
  :type IsEncryptionAddr: bool
4749
- :param _Protocol: 加密访问协议,IsEncryptionAddr参数为true时必填
4794
+ :param _Protocol: 加密访问协议。
4795
+ KafkaType为1并且IsEncryptionAddr为true时Protocol必填
4750
4796
  :type Protocol: :class:`tencentcloud.cls.v20201016.models.KafkaProtocolInfo`
4751
4797
  :param _ConsumerGroupName: 用户Kafka消费组名称
4752
4798
  :type ConsumerGroupName: str
4753
- :param _LogRechargeRule: 日志导入规则
4799
+ :param _LogRechargeRule: 日志导入规则。
4800
+ 必填字段。
4754
4801
  :type LogRechargeRule: :class:`tencentcloud.cls.v20201016.models.LogRechargeRuleInfo`
4755
4802
  """
4756
4803
  self._TopicId = None
@@ -10058,18 +10105,18 @@ class DescribeScheduledSqlInfoRequest(AbstractModel):
10058
10105
  :type Offset: int
10059
10106
  :param _Limit: 分页单页限制数目,默认值为20,最大值100。
10060
10107
  :type Limit: int
10061
- :param _Name: 任务名称
10108
+ :param _Name: 任务名称。
10062
10109
  :type Name: str
10063
- :param _TaskId: 任务id
10110
+ :param _TaskId: 任务id
10064
10111
  :type TaskId: str
10065
- :param _Filters: <li>srcTopicName按照【源日志主题名称】进行过滤,模糊匹配,类型:String必选:否</li>
10066
- <li>dstTopicName按照【目标日志主题名称】进行过滤,模糊匹配,类型:String必选:否</li>
10067
- <li>srcTopicId按照【源日志主题ID】进行过滤。类型:String必选:否</li>
10068
- <li>dstTopicId按照【目标日志主题ID】进行过滤。类型:String必选:否</li>
10069
- <li>bizType按照【主题类型】进行过滤,0日志主题1指标主题,。类型:String必选:否</li>
10070
- <li>status按照【任务状态】进行过滤。类型:String必选:否</li>
10071
- <li>taskName按照【任务名称】进行过滤,模糊匹配,。类型:String必选:否</li>
10072
- <li>taskId按照【任务ID】进行过滤,模糊匹配,。类型:String必选:否</li>
10112
+ :param _Filters: <li>srcTopicName按照【源日志主题名称】进行过滤,模糊匹配。类型:String。必选:否</li>
10113
+ <li>dstTopicName按照【目标日志主题名称】进行过滤,模糊匹配。类型:String。必选:否</li>
10114
+ <li>srcTopicId按照【源日志主题ID】进行过滤。类型:String。必选:否</li>
10115
+ <li>dstTopicId按照【目标日志主题ID】进行过滤。类型:String。必选:否</li>
10116
+ <li>bizType按照【主题类型】进行过滤,0日志主题 1指标主题。类型:String。必选:否</li>
10117
+ <li>status按照【任务状态】进行过滤,1:运行 2:停止。类型:String。必选:否</li>
10118
+ <li>taskName按照【任务名称】进行过滤,模糊匹配。类型:String。必选:否</li>
10119
+ <li>taskId按照【任务ID】进行过滤,模糊匹配。类型:String。必选:否</li>
10073
10120
 
10074
10121
  :type Filters: list of Filter
10075
10122
  """
@@ -11407,8 +11454,9 @@ class GetAlarmLogRequest(AbstractModel):
11407
11454
  :type To: int
11408
11455
  :param _Query: 查询过滤条件,例如:
11409
11456
  - 按告警策略ID查询:`alert_id:"alarm-0745ec00-e605-xxxx-b50b-54afe61fc971"`
11410
- - 按监控对象ID查询:`monitored_object:"823d8bfa-76a7-xxxx-8399-8cda74d4009b") `
11411
- - 按告警策略ID及监控对象ID查询:`alert_id:"alarm-0745ec00-e605-xxxx-b50b-54afe61fc971" AND monitored_object:"823d8bfa-76a7-xxxx-8399-8cda74d4009b")`
11457
+ - 按监控对象ID查询:`monitored_object:"823d8bfa-76a7-xxxx-8399-8cda74d4009b" `
11458
+ - 按告警策略ID及监控对象ID查询:`alert_id:"alarm-0745ec00-e605-xxxx-b50b-54afe61fc971" AND monitored_object:"823d8bfa-76a7-xxxx-8399-8cda74d4009b"`
11459
+ - 按告警策略ID及监控对象ID查询支持SQL语句:`(alert_id:"alarm-5ce45495-09e8-4d58-xxxx-768134bf330c") AND (monitored_object:"3c514e84-6f1f-46ec-xxxx-05de6163f7fe") AND NOT condition_evaluate_result: "Skip" AND condition_evaluate_result:[* TO *] | SELECT count(*) as top50StatisticsTotalCount, count_if(condition_evaluate_result='ProcessError') as top50StatisticsFailureCount, count_if(notification_send_result!='NotSend') as top50NoticeTotalCount, count_if(notification_send_result='SendPartFail' or notification_send_result='SendFail') as top50NoticeFailureCount, alert_id, alert_name, monitored_object, topic_type, happen_threshold, alert_threshold, notify_template group by alert_id, alert_name, monitored_object,topic_type, happen_threshold, alert_threshold, notify_template order by top50StatisticsTotalCount desc limit 1`
11412
11460
  :type Query: str
11413
11461
  :param _Limit: 单次查询返回的执行详情条数,最大值为1000
11414
11462
  :type Limit: int
@@ -11515,13 +11563,18 @@ class GetAlarmLogResponse(AbstractModel):
11515
11563
  :type ListOver: bool
11516
11564
  :param _Analysis: 返回的结果是否为SQL分析结果
11517
11565
  :type Analysis: bool
11518
- :param _ColNames: 如果Analysis为True,则返回分析结果的列名,否则为空
11566
+ :param _ColNames: 分析结果的列名,如果Query语句有SQL查询,则返回查询字段的列名;
11567
+ 否则为空。
11519
11568
  注意:此字段可能返回 null,表示取不到有效值。
11520
11569
  :type ColNames: list of str
11521
- :param _Results: 执行详情查询结果;当Analysis为True时,可能返回为null
11570
+ :param _Results: 执行详情查询结果。
11571
+
11572
+ 当Query字段无SQL语句时,返回查询结果。
11573
+ 当Query字段有SQL语句时,可能返回null。
11522
11574
  注意:此字段可能返回 null,表示取不到有效值。
11523
11575
  :type Results: list of LogInfo
11524
- :param _AnalysisResults: 执行详情统计分析结果;当Analysis为False时,可能返回为null
11576
+ :param _AnalysisResults: 执行详情统计分析结果。当Query字段有SQL语句时,返回sql统计结果,否则可能返回null
11577
+
11525
11578
  注意:此字段可能返回 null,表示取不到有效值。
11526
11579
  :type AnalysisResults: list of LogItems
11527
11580
  :param _AnalysisRecords: 执行详情统计分析结果; UseNewAnalysis为true有效
@@ -11946,16 +11999,20 @@ class KafkaProtocolInfo(AbstractModel):
11946
11999
 
11947
12000
  def __init__(self):
11948
12001
  r"""
11949
- :param _Protocol: 协议类型,支持的协议类型包括 plaintext、sasl_plaintext 或 sasl_ssl。建议使用 sasl_ssl,此协议会进行连接加密同时需要用户认证
12002
+ :param _Protocol: 协议类型,支持的协议类型包括 plaintext、sasl_plaintext 或 sasl_ssl。建议使用 sasl_ssl,此协议会进行连接加密同时需要用户认证。
12003
+ 入参必填
11950
12004
  注意:此字段可能返回 null,表示取不到有效值。
11951
12005
  :type Protocol: str
11952
- :param _Mechanism: 加密类型,支持 PLAIN、SCRAM-SHA-256 或 SCRAM-SHA-512
12006
+ :param _Mechanism: 加密类型,支持 PLAIN、SCRAM-SHA-256 或 SCRAM-SHA-512
12007
+ 当Protocol为sasl_plaintext或sasl_ssl时必填
11953
12008
  注意:此字段可能返回 null,表示取不到有效值。
11954
12009
  :type Mechanism: str
11955
- :param _UserName: 用户名
12010
+ :param _UserName: 用户名。
12011
+ 当Protocol为sasl_plaintext或sasl_ssl时必填
11956
12012
  注意:此字段可能返回 null,表示取不到有效值。
11957
12013
  :type UserName: str
11958
- :param _Password: 用户密码
12014
+ :param _Password: 用户密码。
12015
+ 当Protocol为sasl_plaintext或sasl_ssl时必填
11959
12016
  注意:此字段可能返回 null,表示取不到有效值。
11960
12017
  :type Password: str
11961
12018
  """
@@ -16593,17 +16650,21 @@ class PreviewKafkaRechargeRequest(AbstractModel):
16593
16650
  :type PreviewType: int
16594
16651
  :param _KafkaType: 导入Kafka类型,0: 腾讯云CKafka,1: 用户自建Kafka
16595
16652
  :type KafkaType: int
16596
- :param _UserKafkaTopics: 用户需要导入的Kafka相关topic列表,多个topic之间使用半角逗号隔开
16653
+ :param _UserKafkaTopics: 用户需要导入的Kafka相关topic列表,多个topic之间使用半角逗号隔开。最多支持100个。
16597
16654
  :type UserKafkaTopics: str
16598
16655
  :param _Offset: 导入数据位置,-2:最早(默认),-1:最晚
16599
16656
  :type Offset: int
16600
- :param _KafkaInstance: 腾讯云CKafka实例ID,KafkaType为0时必填
16657
+ :param _KafkaInstance: 腾讯云CKafka实例ID
16658
+ KafkaType为0时KafkaInstance必填
16601
16659
  :type KafkaInstance: str
16602
- :param _ServerAddr: 服务地址
16660
+ :param _ServerAddr: 服务地址。
16661
+ KafkaType为1时ServerAddr必填
16603
16662
  :type ServerAddr: str
16604
- :param _IsEncryptionAddr: ServerAddr是否为加密连接
16663
+ :param _IsEncryptionAddr: ServerAddr是否为加密连接。。
16664
+ KafkaType为1时有效。
16605
16665
  :type IsEncryptionAddr: bool
16606
- :param _Protocol: 加密访问协议,IsEncryptionAddr参数为true时必填
16666
+ :param _Protocol: 加密访问协议。
16667
+ KafkaType为1并且IsEncryptionAddr为true时Protocol必填
16607
16668
  :type Protocol: :class:`tencentcloud.cls.v20201016.models.KafkaProtocolInfo`
16608
16669
  :param _ConsumerGroupName: 用户Kafka消费组
16609
16670
  :type ConsumerGroupName: str
@@ -17372,14 +17433,14 @@ class ScheduledSqlResouceInfo(AbstractModel):
17372
17433
  :type Region: str
17373
17434
  :param _BizType: 主题类型:0为日志主题,1为指标主题
17374
17435
  :type BizType: int
17375
- :param _MetricName: 指标名称
17436
+ :param _MetricName: 指标名称。当BizType为1时,MetricName需要填写
17376
17437
  :type MetricName: str
17377
17438
  :param _MetricNames: 指标名称
17378
17439
  BizType为1时,优先使用MetricNames字段多指标只能填充到MetricNames字段,单指标建议填充到MetricName字段
17379
17440
  :type MetricNames: list of str
17380
17441
  :param _MetricLabels: 指标维度,不接受时间类型。
17381
17442
  :type MetricLabels: list of str
17382
- :param _CustomTime: 指标时间戳,默认值为SQL查询时间范围的左侧时间点,您也可以指定其他字段(类型为uinx时间,精度毫秒)为指标时间戳。
17443
+ :param _CustomTime: 指标时间戳,默认值为SQL查询时间范围的左侧时间点,您也可以指定其他字段(类型为uinx时间、TimeStamp,精度毫秒)为指标时间戳。
17383
17444
  :type CustomTime: str
17384
17445
  :param _CustomMetricLabels: 除了MetricLabels,您还可以使用该参数,为指标补充静态的维度。
17385
17446
  维度名以字母或下划线开头,后面可以跟字母、数字或下划线,长度小于等于1024 字节
@@ -17738,9 +17799,11 @@ class SearchCosRechargeInfoRequest(AbstractModel):
17738
17799
  :type LogsetId: str
17739
17800
  :param _Name: 投递任务名称
17740
17801
  :type Name: str
17741
- :param _Bucket: 存储桶
17802
+ :param _Bucket: 存储桶。
17803
+ 存储桶命名规范:https://cloud.tencent.com/document/product/436/13312
17742
17804
  :type Bucket: str
17743
- :param _BucketRegion: 存储桶所在地域
17805
+ :param _BucketRegion: 存储桶所在地域。
17806
+ 地域和访问域名:https://cloud.tencent.com/document/product/436/6224
17744
17807
  :type BucketRegion: str
17745
17808
  :param _Prefix: cos文件所在文件夹的前缀
17746
17809
  :type Prefix: str
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 1.1
2
2
  Name: tencentcloud-sdk-python-cls
3
- Version: 3.0.1054
3
+ Version: 3.0.1063
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
@@ -0,0 +1 @@
1
+ tencentcloud-sdk-python-common==3.0.1063
@@ -1 +0,0 @@
1
- tencentcloud-sdk-python-common==3.0.1054