tencentcloud-sdk-python-cls 3.0.1264__tar.gz → 3.0.1270__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.1264 → tencentcloud-sdk-python-cls-3.0.1270}/PKG-INFO +3 -3
- {tencentcloud-sdk-python-cls-3.0.1264 → tencentcloud-sdk-python-cls-3.0.1270}/setup.cfg +0 -1
- {tencentcloud-sdk-python-cls-3.0.1264 → tencentcloud-sdk-python-cls-3.0.1270}/setup.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1264 → tencentcloud-sdk-python-cls-3.0.1270}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1264 → tencentcloud-sdk-python-cls-3.0.1270}/tencentcloud/cls/v20201016/cls_client.py +92 -0
- {tencentcloud-sdk-python-cls-3.0.1264 → tencentcloud-sdk-python-cls-3.0.1270}/tencentcloud/cls/v20201016/models.py +893 -54
- {tencentcloud-sdk-python-cls-3.0.1264 → tencentcloud-sdk-python-cls-3.0.1270}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +3 -3
- tencentcloud-sdk-python-cls-3.0.1270/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cls-3.0.1264/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cls-3.0.1264 → tencentcloud-sdk-python-cls-3.0.1270}/README.rst +0 -0
- {tencentcloud-sdk-python-cls-3.0.1264 → tencentcloud-sdk-python-cls-3.0.1270}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1264 → tencentcloud-sdk-python-cls-3.0.1270}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1264 → tencentcloud-sdk-python-cls-3.0.1270}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1264 → tencentcloud-sdk-python-cls-3.0.1270}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1264 → tencentcloud-sdk-python-cls-3.0.1270}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1264 → tencentcloud-sdk-python-cls-3.0.1270}/tencentcloud_sdk_python_cls.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-cls
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1270
|
|
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
|
|
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-cls',
|
|
11
|
-
install_requires=["tencentcloud-sdk-python-common==3.0.
|
|
11
|
+
install_requires=["tencentcloud-sdk-python-common==3.0.1270"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cls SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -217,6 +217,29 @@ class ClsClient(AbstractClient):
|
|
|
217
217
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
218
218
|
|
|
219
219
|
|
|
220
|
+
def CreateCloudProductLogTask(self, request):
|
|
221
|
+
"""内部云产品接入使用相关接口
|
|
222
|
+
|
|
223
|
+
:param request: Request instance for CreateCloudProductLogTask.
|
|
224
|
+
:type request: :class:`tencentcloud.cls.v20201016.models.CreateCloudProductLogTaskRequest`
|
|
225
|
+
:rtype: :class:`tencentcloud.cls.v20201016.models.CreateCloudProductLogTaskResponse`
|
|
226
|
+
|
|
227
|
+
"""
|
|
228
|
+
try:
|
|
229
|
+
params = request._serialize()
|
|
230
|
+
headers = request.headers
|
|
231
|
+
body = self.call("CreateCloudProductLogTask", params, headers=headers)
|
|
232
|
+
response = json.loads(body)
|
|
233
|
+
model = models.CreateCloudProductLogTaskResponse()
|
|
234
|
+
model._deserialize(response["Response"])
|
|
235
|
+
return model
|
|
236
|
+
except Exception as e:
|
|
237
|
+
if isinstance(e, TencentCloudSDKException):
|
|
238
|
+
raise
|
|
239
|
+
else:
|
|
240
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
241
|
+
|
|
242
|
+
|
|
220
243
|
def CreateConfig(self, request):
|
|
221
244
|
"""创建采集规则配置
|
|
222
245
|
|
|
@@ -677,6 +700,29 @@ class ClsClient(AbstractClient):
|
|
|
677
700
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
678
701
|
|
|
679
702
|
|
|
703
|
+
def DeleteCloudProductLogTask(self, request):
|
|
704
|
+
"""内部云产品接入使用相关接口
|
|
705
|
+
|
|
706
|
+
:param request: Request instance for DeleteCloudProductLogTask.
|
|
707
|
+
:type request: :class:`tencentcloud.cls.v20201016.models.DeleteCloudProductLogTaskRequest`
|
|
708
|
+
:rtype: :class:`tencentcloud.cls.v20201016.models.DeleteCloudProductLogTaskResponse`
|
|
709
|
+
|
|
710
|
+
"""
|
|
711
|
+
try:
|
|
712
|
+
params = request._serialize()
|
|
713
|
+
headers = request.headers
|
|
714
|
+
body = self.call("DeleteCloudProductLogTask", params, headers=headers)
|
|
715
|
+
response = json.loads(body)
|
|
716
|
+
model = models.DeleteCloudProductLogTaskResponse()
|
|
717
|
+
model._deserialize(response["Response"])
|
|
718
|
+
return model
|
|
719
|
+
except Exception as e:
|
|
720
|
+
if isinstance(e, TencentCloudSDKException):
|
|
721
|
+
raise
|
|
722
|
+
else:
|
|
723
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
724
|
+
|
|
725
|
+
|
|
680
726
|
def DeleteConfig(self, request):
|
|
681
727
|
"""删除采集规则配置
|
|
682
728
|
|
|
@@ -1160,6 +1206,29 @@ class ClsClient(AbstractClient):
|
|
|
1160
1206
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1161
1207
|
|
|
1162
1208
|
|
|
1209
|
+
def DescribeCloudProductLogTasks(self, request):
|
|
1210
|
+
"""云产品接入使用相关接口
|
|
1211
|
+
|
|
1212
|
+
:param request: Request instance for DescribeCloudProductLogTasks.
|
|
1213
|
+
:type request: :class:`tencentcloud.cls.v20201016.models.DescribeCloudProductLogTasksRequest`
|
|
1214
|
+
:rtype: :class:`tencentcloud.cls.v20201016.models.DescribeCloudProductLogTasksResponse`
|
|
1215
|
+
|
|
1216
|
+
"""
|
|
1217
|
+
try:
|
|
1218
|
+
params = request._serialize()
|
|
1219
|
+
headers = request.headers
|
|
1220
|
+
body = self.call("DescribeCloudProductLogTasks", params, headers=headers)
|
|
1221
|
+
response = json.loads(body)
|
|
1222
|
+
model = models.DescribeCloudProductLogTasksResponse()
|
|
1223
|
+
model._deserialize(response["Response"])
|
|
1224
|
+
return model
|
|
1225
|
+
except Exception as e:
|
|
1226
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1227
|
+
raise
|
|
1228
|
+
else:
|
|
1229
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1230
|
+
|
|
1231
|
+
|
|
1163
1232
|
def DescribeConfigExtras(self, request):
|
|
1164
1233
|
"""本接口用于获取特殊采集配置,特殊采集配置应用于自建K8S环境的采集Agent
|
|
1165
1234
|
|
|
@@ -1851,6 +1920,29 @@ class ClsClient(AbstractClient):
|
|
|
1851
1920
|
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1852
1921
|
|
|
1853
1922
|
|
|
1923
|
+
def ModifyCloudProductLogTask(self, request):
|
|
1924
|
+
"""内部云产品接入使用相关接口
|
|
1925
|
+
|
|
1926
|
+
:param request: Request instance for ModifyCloudProductLogTask.
|
|
1927
|
+
:type request: :class:`tencentcloud.cls.v20201016.models.ModifyCloudProductLogTaskRequest`
|
|
1928
|
+
:rtype: :class:`tencentcloud.cls.v20201016.models.ModifyCloudProductLogTaskResponse`
|
|
1929
|
+
|
|
1930
|
+
"""
|
|
1931
|
+
try:
|
|
1932
|
+
params = request._serialize()
|
|
1933
|
+
headers = request.headers
|
|
1934
|
+
body = self.call("ModifyCloudProductLogTask", params, headers=headers)
|
|
1935
|
+
response = json.loads(body)
|
|
1936
|
+
model = models.ModifyCloudProductLogTaskResponse()
|
|
1937
|
+
model._deserialize(response["Response"])
|
|
1938
|
+
return model
|
|
1939
|
+
except Exception as e:
|
|
1940
|
+
if isinstance(e, TencentCloudSDKException):
|
|
1941
|
+
raise
|
|
1942
|
+
else:
|
|
1943
|
+
raise TencentCloudSDKException(type(e).__name__, str(e))
|
|
1944
|
+
|
|
1945
|
+
|
|
1854
1946
|
def ModifyConfig(self, request):
|
|
1855
1947
|
"""修改采集规则配置
|
|
1856
1948
|
|
|
@@ -2493,25 +2493,47 @@ class Ckafka(AbstractModel):
|
|
|
2493
2493
|
|
|
2494
2494
|
def __init__(self):
|
|
2495
2495
|
r"""
|
|
2496
|
+
:param _InstanceId: Ckafka 的 InstanceId
|
|
2497
|
+
:type InstanceId: str
|
|
2498
|
+
:param _TopicName: Ckafka 的 TopicName
|
|
2499
|
+
:type TopicName: str
|
|
2496
2500
|
:param _Vip: Ckafka 的 Vip
|
|
2497
2501
|
:type Vip: str
|
|
2498
2502
|
:param _Vport: Ckafka 的 Vport
|
|
2499
2503
|
:type Vport: str
|
|
2500
|
-
:param _InstanceId: Ckafka 的 InstanceId
|
|
2501
|
-
:type InstanceId: str
|
|
2502
2504
|
:param _InstanceName: Ckafka 的 InstanceName
|
|
2503
2505
|
:type InstanceName: str
|
|
2504
2506
|
:param _TopicId: Ckafka 的 TopicId
|
|
2505
2507
|
:type TopicId: str
|
|
2506
|
-
:param _TopicName: Ckafka 的 TopicName
|
|
2507
|
-
:type TopicName: str
|
|
2508
2508
|
"""
|
|
2509
|
+
self._InstanceId = None
|
|
2510
|
+
self._TopicName = None
|
|
2509
2511
|
self._Vip = None
|
|
2510
2512
|
self._Vport = None
|
|
2511
|
-
self._InstanceId = None
|
|
2512
2513
|
self._InstanceName = None
|
|
2513
2514
|
self._TopicId = None
|
|
2514
|
-
|
|
2515
|
+
|
|
2516
|
+
@property
|
|
2517
|
+
def InstanceId(self):
|
|
2518
|
+
"""Ckafka 的 InstanceId
|
|
2519
|
+
:rtype: str
|
|
2520
|
+
"""
|
|
2521
|
+
return self._InstanceId
|
|
2522
|
+
|
|
2523
|
+
@InstanceId.setter
|
|
2524
|
+
def InstanceId(self, InstanceId):
|
|
2525
|
+
self._InstanceId = InstanceId
|
|
2526
|
+
|
|
2527
|
+
@property
|
|
2528
|
+
def TopicName(self):
|
|
2529
|
+
"""Ckafka 的 TopicName
|
|
2530
|
+
:rtype: str
|
|
2531
|
+
"""
|
|
2532
|
+
return self._TopicName
|
|
2533
|
+
|
|
2534
|
+
@TopicName.setter
|
|
2535
|
+
def TopicName(self, TopicName):
|
|
2536
|
+
self._TopicName = TopicName
|
|
2515
2537
|
|
|
2516
2538
|
@property
|
|
2517
2539
|
def Vip(self):
|
|
@@ -2535,17 +2557,6 @@ class Ckafka(AbstractModel):
|
|
|
2535
2557
|
def Vport(self, Vport):
|
|
2536
2558
|
self._Vport = Vport
|
|
2537
2559
|
|
|
2538
|
-
@property
|
|
2539
|
-
def InstanceId(self):
|
|
2540
|
-
"""Ckafka 的 InstanceId
|
|
2541
|
-
:rtype: str
|
|
2542
|
-
"""
|
|
2543
|
-
return self._InstanceId
|
|
2544
|
-
|
|
2545
|
-
@InstanceId.setter
|
|
2546
|
-
def InstanceId(self, InstanceId):
|
|
2547
|
-
self._InstanceId = InstanceId
|
|
2548
|
-
|
|
2549
2560
|
@property
|
|
2550
2561
|
def InstanceName(self):
|
|
2551
2562
|
"""Ckafka 的 InstanceName
|
|
@@ -2568,25 +2579,14 @@ class Ckafka(AbstractModel):
|
|
|
2568
2579
|
def TopicId(self, TopicId):
|
|
2569
2580
|
self._TopicId = TopicId
|
|
2570
2581
|
|
|
2571
|
-
@property
|
|
2572
|
-
def TopicName(self):
|
|
2573
|
-
"""Ckafka 的 TopicName
|
|
2574
|
-
:rtype: str
|
|
2575
|
-
"""
|
|
2576
|
-
return self._TopicName
|
|
2577
|
-
|
|
2578
|
-
@TopicName.setter
|
|
2579
|
-
def TopicName(self, TopicName):
|
|
2580
|
-
self._TopicName = TopicName
|
|
2581
|
-
|
|
2582
2582
|
|
|
2583
2583
|
def _deserialize(self, params):
|
|
2584
|
+
self._InstanceId = params.get("InstanceId")
|
|
2585
|
+
self._TopicName = params.get("TopicName")
|
|
2584
2586
|
self._Vip = params.get("Vip")
|
|
2585
2587
|
self._Vport = params.get("Vport")
|
|
2586
|
-
self._InstanceId = params.get("InstanceId")
|
|
2587
2588
|
self._InstanceName = params.get("InstanceName")
|
|
2588
2589
|
self._TopicId = params.get("TopicId")
|
|
2589
|
-
self._TopicName = params.get("TopicName")
|
|
2590
2590
|
memeber_set = set(params.keys())
|
|
2591
2591
|
for name, value in vars(self).items():
|
|
2592
2592
|
property_name = name[1:]
|
|
@@ -2661,6 +2661,121 @@ class CloseKafkaConsumerResponse(AbstractModel):
|
|
|
2661
2661
|
self._RequestId = params.get("RequestId")
|
|
2662
2662
|
|
|
2663
2663
|
|
|
2664
|
+
class CloudProductLogTaskInfo(AbstractModel):
|
|
2665
|
+
"""云产品日志投递任务信息
|
|
2666
|
+
|
|
2667
|
+
"""
|
|
2668
|
+
|
|
2669
|
+
def __init__(self):
|
|
2670
|
+
r"""
|
|
2671
|
+
:param _ClsRegion: 日志服务地域
|
|
2672
|
+
:type ClsRegion: str
|
|
2673
|
+
:param _InstanceId: 实例ID
|
|
2674
|
+
:type InstanceId: str
|
|
2675
|
+
:param _LogsetId: 日志集ID
|
|
2676
|
+
:type LogsetId: str
|
|
2677
|
+
:param _TopicId: 日志主题ID
|
|
2678
|
+
:type TopicId: str
|
|
2679
|
+
:param _Extend: 日志配置拓展信息, 一般用于存储额外的日志投递配置
|
|
2680
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2681
|
+
:type Extend: str
|
|
2682
|
+
:param _LogType: 日志类型,支持枚举:CDS-AUDIT、CDS-RISK、CDB-AUDIT、TDSQL-C-AUDIT、MongoDB-AUDIT、MongoDB-SlowLog、MongoDB-ErrorLog、TDMYSQL-SLOW、DCDB-AUDIT、DCDB-SLOW、DCDB-ERROR、MariaDB-AUDIT、MariaDB-SLOW、MariaDB-ERROR、PostgreSQL-SLOW、PostgreSQL-ERROR、PostgreSQL-AUDIT、BH-FILELOG、BH-COMMANDLOG、APIS-ACCESS
|
|
2683
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2684
|
+
:type LogType: str
|
|
2685
|
+
"""
|
|
2686
|
+
self._ClsRegion = None
|
|
2687
|
+
self._InstanceId = None
|
|
2688
|
+
self._LogsetId = None
|
|
2689
|
+
self._TopicId = None
|
|
2690
|
+
self._Extend = None
|
|
2691
|
+
self._LogType = None
|
|
2692
|
+
|
|
2693
|
+
@property
|
|
2694
|
+
def ClsRegion(self):
|
|
2695
|
+
"""日志服务地域
|
|
2696
|
+
:rtype: str
|
|
2697
|
+
"""
|
|
2698
|
+
return self._ClsRegion
|
|
2699
|
+
|
|
2700
|
+
@ClsRegion.setter
|
|
2701
|
+
def ClsRegion(self, ClsRegion):
|
|
2702
|
+
self._ClsRegion = ClsRegion
|
|
2703
|
+
|
|
2704
|
+
@property
|
|
2705
|
+
def InstanceId(self):
|
|
2706
|
+
"""实例ID
|
|
2707
|
+
:rtype: str
|
|
2708
|
+
"""
|
|
2709
|
+
return self._InstanceId
|
|
2710
|
+
|
|
2711
|
+
@InstanceId.setter
|
|
2712
|
+
def InstanceId(self, InstanceId):
|
|
2713
|
+
self._InstanceId = InstanceId
|
|
2714
|
+
|
|
2715
|
+
@property
|
|
2716
|
+
def LogsetId(self):
|
|
2717
|
+
"""日志集ID
|
|
2718
|
+
:rtype: str
|
|
2719
|
+
"""
|
|
2720
|
+
return self._LogsetId
|
|
2721
|
+
|
|
2722
|
+
@LogsetId.setter
|
|
2723
|
+
def LogsetId(self, LogsetId):
|
|
2724
|
+
self._LogsetId = LogsetId
|
|
2725
|
+
|
|
2726
|
+
@property
|
|
2727
|
+
def TopicId(self):
|
|
2728
|
+
"""日志主题ID
|
|
2729
|
+
:rtype: str
|
|
2730
|
+
"""
|
|
2731
|
+
return self._TopicId
|
|
2732
|
+
|
|
2733
|
+
@TopicId.setter
|
|
2734
|
+
def TopicId(self, TopicId):
|
|
2735
|
+
self._TopicId = TopicId
|
|
2736
|
+
|
|
2737
|
+
@property
|
|
2738
|
+
def Extend(self):
|
|
2739
|
+
"""日志配置拓展信息, 一般用于存储额外的日志投递配置
|
|
2740
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2741
|
+
:rtype: str
|
|
2742
|
+
"""
|
|
2743
|
+
return self._Extend
|
|
2744
|
+
|
|
2745
|
+
@Extend.setter
|
|
2746
|
+
def Extend(self, Extend):
|
|
2747
|
+
self._Extend = Extend
|
|
2748
|
+
|
|
2749
|
+
@property
|
|
2750
|
+
def LogType(self):
|
|
2751
|
+
"""日志类型,支持枚举:CDS-AUDIT、CDS-RISK、CDB-AUDIT、TDSQL-C-AUDIT、MongoDB-AUDIT、MongoDB-SlowLog、MongoDB-ErrorLog、TDMYSQL-SLOW、DCDB-AUDIT、DCDB-SLOW、DCDB-ERROR、MariaDB-AUDIT、MariaDB-SLOW、MariaDB-ERROR、PostgreSQL-SLOW、PostgreSQL-ERROR、PostgreSQL-AUDIT、BH-FILELOG、BH-COMMANDLOG、APIS-ACCESS
|
|
2752
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2753
|
+
:rtype: str
|
|
2754
|
+
"""
|
|
2755
|
+
return self._LogType
|
|
2756
|
+
|
|
2757
|
+
@LogType.setter
|
|
2758
|
+
def LogType(self, LogType):
|
|
2759
|
+
self._LogType = LogType
|
|
2760
|
+
|
|
2761
|
+
|
|
2762
|
+
def _deserialize(self, params):
|
|
2763
|
+
self._ClsRegion = params.get("ClsRegion")
|
|
2764
|
+
self._InstanceId = params.get("InstanceId")
|
|
2765
|
+
self._LogsetId = params.get("LogsetId")
|
|
2766
|
+
self._TopicId = params.get("TopicId")
|
|
2767
|
+
self._Extend = params.get("Extend")
|
|
2768
|
+
self._LogType = params.get("LogType")
|
|
2769
|
+
memeber_set = set(params.keys())
|
|
2770
|
+
for name, value in vars(self).items():
|
|
2771
|
+
property_name = name[1:]
|
|
2772
|
+
if property_name in memeber_set:
|
|
2773
|
+
memeber_set.remove(property_name)
|
|
2774
|
+
if len(memeber_set) > 0:
|
|
2775
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
2776
|
+
|
|
2777
|
+
|
|
2778
|
+
|
|
2664
2779
|
class CollectConfig(AbstractModel):
|
|
2665
2780
|
"""采集配置信息
|
|
2666
2781
|
|
|
@@ -5680,6 +5795,289 @@ class CreateAlarmShieldResponse(AbstractModel):
|
|
|
5680
5795
|
self._RequestId = params.get("RequestId")
|
|
5681
5796
|
|
|
5682
5797
|
|
|
5798
|
+
class CreateCloudProductLogTaskRequest(AbstractModel):
|
|
5799
|
+
"""CreateCloudProductLogTask请求参数结构体
|
|
5800
|
+
|
|
5801
|
+
"""
|
|
5802
|
+
|
|
5803
|
+
def __init__(self):
|
|
5804
|
+
r"""
|
|
5805
|
+
:param _InstanceId: 实例ID
|
|
5806
|
+
:type InstanceId: str
|
|
5807
|
+
:param _AssumerName: 云产品标识,支持枚举:CDS、CWP、CDB、TDSQL-C、MongoDB、TDStore、DCDB、MariaDB、PostgreSQL、BH、APIS
|
|
5808
|
+
:type AssumerName: str
|
|
5809
|
+
:param _LogType: 日志类型,支持枚举:CDS-AUDIT、CDS-RISK、CDB-AUDIT、TDSQL-C-AUDIT、MongoDB-AUDIT、MongoDB-SlowLog、MongoDB-ErrorLog、TDMYSQL-SLOW、DCDB-AUDIT、DCDB-SLOW、DCDB-ERROR、MariaDB-AUDIT、MariaDB-SLOW、MariaDB-ERROR、PostgreSQL-SLOW、PostgreSQL-ERROR、PostgreSQL-AUDIT、BH-FILELOG、BH-COMMANDLOG、APIS-ACCESS
|
|
5810
|
+
:type LogType: str
|
|
5811
|
+
:param _CloudProductRegion: 云产品地域。 不同日志类型(LogType)地域入參格式存在差异, 请参考如下示例:
|
|
5812
|
+
- CDS所有日志类型:ap-guangzhou
|
|
5813
|
+
- CDB-AUDIT: gz
|
|
5814
|
+
- TDSQL-C-AUDIT: gz
|
|
5815
|
+
- MongoDB-AUDIT: gz
|
|
5816
|
+
- MongoDB-SlowLog:ap-guangzhou
|
|
5817
|
+
- MongoDB-ErrorLog:ap-guangzhou
|
|
5818
|
+
- TDMYSQL-SLOW:gz
|
|
5819
|
+
- DCDB所有日志类型:gz
|
|
5820
|
+
- MariaDB所有日志类型:gz
|
|
5821
|
+
- PostgreSQL所有日志类型:gz
|
|
5822
|
+
- BH所有日志类型:overseas-polaris(国内站海外)/fsi-polaris(国内站金融)/general-polaris(国内站普通)/intl-sg-prod(国际站)
|
|
5823
|
+
- APIS所有日志类型:gz
|
|
5824
|
+
:type CloudProductRegion: str
|
|
5825
|
+
:param _ClsRegion: CLS目标地域
|
|
5826
|
+
:type ClsRegion: str
|
|
5827
|
+
:param _LogsetName: 日志集名称,未填LogsetId时必填。若日志集不存在, 将自动创建
|
|
5828
|
+
:type LogsetName: str
|
|
5829
|
+
:param _LogsetId: 日志集ID,若指定则代表选择已有日志集。选择已有日志集时,LogsetName可以不填
|
|
5830
|
+
:type LogsetId: str
|
|
5831
|
+
:param _TopicName: 日志主题名称,在未填TopicId时必填。 若日志主题不存在,将自动创建
|
|
5832
|
+
:type TopicName: str
|
|
5833
|
+
:param _TopicId: 日志主题ID,若指定则代表选择已有日志主题,选择已有日志主题时,TopicName可以不填
|
|
5834
|
+
:type TopicId: str
|
|
5835
|
+
:param _Extend: 日志配置拓展信息, 一般用于存储额外的日志投递配置
|
|
5836
|
+
:type Extend: str
|
|
5837
|
+
"""
|
|
5838
|
+
self._InstanceId = None
|
|
5839
|
+
self._AssumerName = None
|
|
5840
|
+
self._LogType = None
|
|
5841
|
+
self._CloudProductRegion = None
|
|
5842
|
+
self._ClsRegion = None
|
|
5843
|
+
self._LogsetName = None
|
|
5844
|
+
self._LogsetId = None
|
|
5845
|
+
self._TopicName = None
|
|
5846
|
+
self._TopicId = None
|
|
5847
|
+
self._Extend = None
|
|
5848
|
+
|
|
5849
|
+
@property
|
|
5850
|
+
def InstanceId(self):
|
|
5851
|
+
"""实例ID
|
|
5852
|
+
:rtype: str
|
|
5853
|
+
"""
|
|
5854
|
+
return self._InstanceId
|
|
5855
|
+
|
|
5856
|
+
@InstanceId.setter
|
|
5857
|
+
def InstanceId(self, InstanceId):
|
|
5858
|
+
self._InstanceId = InstanceId
|
|
5859
|
+
|
|
5860
|
+
@property
|
|
5861
|
+
def AssumerName(self):
|
|
5862
|
+
"""云产品标识,支持枚举:CDS、CWP、CDB、TDSQL-C、MongoDB、TDStore、DCDB、MariaDB、PostgreSQL、BH、APIS
|
|
5863
|
+
:rtype: str
|
|
5864
|
+
"""
|
|
5865
|
+
return self._AssumerName
|
|
5866
|
+
|
|
5867
|
+
@AssumerName.setter
|
|
5868
|
+
def AssumerName(self, AssumerName):
|
|
5869
|
+
self._AssumerName = AssumerName
|
|
5870
|
+
|
|
5871
|
+
@property
|
|
5872
|
+
def LogType(self):
|
|
5873
|
+
"""日志类型,支持枚举:CDS-AUDIT、CDS-RISK、CDB-AUDIT、TDSQL-C-AUDIT、MongoDB-AUDIT、MongoDB-SlowLog、MongoDB-ErrorLog、TDMYSQL-SLOW、DCDB-AUDIT、DCDB-SLOW、DCDB-ERROR、MariaDB-AUDIT、MariaDB-SLOW、MariaDB-ERROR、PostgreSQL-SLOW、PostgreSQL-ERROR、PostgreSQL-AUDIT、BH-FILELOG、BH-COMMANDLOG、APIS-ACCESS
|
|
5874
|
+
:rtype: str
|
|
5875
|
+
"""
|
|
5876
|
+
return self._LogType
|
|
5877
|
+
|
|
5878
|
+
@LogType.setter
|
|
5879
|
+
def LogType(self, LogType):
|
|
5880
|
+
self._LogType = LogType
|
|
5881
|
+
|
|
5882
|
+
@property
|
|
5883
|
+
def CloudProductRegion(self):
|
|
5884
|
+
"""云产品地域。 不同日志类型(LogType)地域入參格式存在差异, 请参考如下示例:
|
|
5885
|
+
- CDS所有日志类型:ap-guangzhou
|
|
5886
|
+
- CDB-AUDIT: gz
|
|
5887
|
+
- TDSQL-C-AUDIT: gz
|
|
5888
|
+
- MongoDB-AUDIT: gz
|
|
5889
|
+
- MongoDB-SlowLog:ap-guangzhou
|
|
5890
|
+
- MongoDB-ErrorLog:ap-guangzhou
|
|
5891
|
+
- TDMYSQL-SLOW:gz
|
|
5892
|
+
- DCDB所有日志类型:gz
|
|
5893
|
+
- MariaDB所有日志类型:gz
|
|
5894
|
+
- PostgreSQL所有日志类型:gz
|
|
5895
|
+
- BH所有日志类型:overseas-polaris(国内站海外)/fsi-polaris(国内站金融)/general-polaris(国内站普通)/intl-sg-prod(国际站)
|
|
5896
|
+
- APIS所有日志类型:gz
|
|
5897
|
+
:rtype: str
|
|
5898
|
+
"""
|
|
5899
|
+
return self._CloudProductRegion
|
|
5900
|
+
|
|
5901
|
+
@CloudProductRegion.setter
|
|
5902
|
+
def CloudProductRegion(self, CloudProductRegion):
|
|
5903
|
+
self._CloudProductRegion = CloudProductRegion
|
|
5904
|
+
|
|
5905
|
+
@property
|
|
5906
|
+
def ClsRegion(self):
|
|
5907
|
+
"""CLS目标地域
|
|
5908
|
+
:rtype: str
|
|
5909
|
+
"""
|
|
5910
|
+
return self._ClsRegion
|
|
5911
|
+
|
|
5912
|
+
@ClsRegion.setter
|
|
5913
|
+
def ClsRegion(self, ClsRegion):
|
|
5914
|
+
self._ClsRegion = ClsRegion
|
|
5915
|
+
|
|
5916
|
+
@property
|
|
5917
|
+
def LogsetName(self):
|
|
5918
|
+
"""日志集名称,未填LogsetId时必填。若日志集不存在, 将自动创建
|
|
5919
|
+
:rtype: str
|
|
5920
|
+
"""
|
|
5921
|
+
return self._LogsetName
|
|
5922
|
+
|
|
5923
|
+
@LogsetName.setter
|
|
5924
|
+
def LogsetName(self, LogsetName):
|
|
5925
|
+
self._LogsetName = LogsetName
|
|
5926
|
+
|
|
5927
|
+
@property
|
|
5928
|
+
def LogsetId(self):
|
|
5929
|
+
"""日志集ID,若指定则代表选择已有日志集。选择已有日志集时,LogsetName可以不填
|
|
5930
|
+
:rtype: str
|
|
5931
|
+
"""
|
|
5932
|
+
return self._LogsetId
|
|
5933
|
+
|
|
5934
|
+
@LogsetId.setter
|
|
5935
|
+
def LogsetId(self, LogsetId):
|
|
5936
|
+
self._LogsetId = LogsetId
|
|
5937
|
+
|
|
5938
|
+
@property
|
|
5939
|
+
def TopicName(self):
|
|
5940
|
+
"""日志主题名称,在未填TopicId时必填。 若日志主题不存在,将自动创建
|
|
5941
|
+
:rtype: str
|
|
5942
|
+
"""
|
|
5943
|
+
return self._TopicName
|
|
5944
|
+
|
|
5945
|
+
@TopicName.setter
|
|
5946
|
+
def TopicName(self, TopicName):
|
|
5947
|
+
self._TopicName = TopicName
|
|
5948
|
+
|
|
5949
|
+
@property
|
|
5950
|
+
def TopicId(self):
|
|
5951
|
+
"""日志主题ID,若指定则代表选择已有日志主题,选择已有日志主题时,TopicName可以不填
|
|
5952
|
+
:rtype: str
|
|
5953
|
+
"""
|
|
5954
|
+
return self._TopicId
|
|
5955
|
+
|
|
5956
|
+
@TopicId.setter
|
|
5957
|
+
def TopicId(self, TopicId):
|
|
5958
|
+
self._TopicId = TopicId
|
|
5959
|
+
|
|
5960
|
+
@property
|
|
5961
|
+
def Extend(self):
|
|
5962
|
+
"""日志配置拓展信息, 一般用于存储额外的日志投递配置
|
|
5963
|
+
:rtype: str
|
|
5964
|
+
"""
|
|
5965
|
+
return self._Extend
|
|
5966
|
+
|
|
5967
|
+
@Extend.setter
|
|
5968
|
+
def Extend(self, Extend):
|
|
5969
|
+
self._Extend = Extend
|
|
5970
|
+
|
|
5971
|
+
|
|
5972
|
+
def _deserialize(self, params):
|
|
5973
|
+
self._InstanceId = params.get("InstanceId")
|
|
5974
|
+
self._AssumerName = params.get("AssumerName")
|
|
5975
|
+
self._LogType = params.get("LogType")
|
|
5976
|
+
self._CloudProductRegion = params.get("CloudProductRegion")
|
|
5977
|
+
self._ClsRegion = params.get("ClsRegion")
|
|
5978
|
+
self._LogsetName = params.get("LogsetName")
|
|
5979
|
+
self._LogsetId = params.get("LogsetId")
|
|
5980
|
+
self._TopicName = params.get("TopicName")
|
|
5981
|
+
self._TopicId = params.get("TopicId")
|
|
5982
|
+
self._Extend = params.get("Extend")
|
|
5983
|
+
memeber_set = set(params.keys())
|
|
5984
|
+
for name, value in vars(self).items():
|
|
5985
|
+
property_name = name[1:]
|
|
5986
|
+
if property_name in memeber_set:
|
|
5987
|
+
memeber_set.remove(property_name)
|
|
5988
|
+
if len(memeber_set) > 0:
|
|
5989
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
5990
|
+
|
|
5991
|
+
|
|
5992
|
+
|
|
5993
|
+
class CreateCloudProductLogTaskResponse(AbstractModel):
|
|
5994
|
+
"""CreateCloudProductLogTask返回参数结构体
|
|
5995
|
+
|
|
5996
|
+
"""
|
|
5997
|
+
|
|
5998
|
+
def __init__(self):
|
|
5999
|
+
r"""
|
|
6000
|
+
:param _TopicId: 日志主题ID
|
|
6001
|
+
:type TopicId: str
|
|
6002
|
+
:param _TopicName: 日志主题名称
|
|
6003
|
+
:type TopicName: str
|
|
6004
|
+
:param _LogsetId: 日志集ID
|
|
6005
|
+
:type LogsetId: str
|
|
6006
|
+
:param _LogsetName: 日志集名称
|
|
6007
|
+
:type LogsetName: str
|
|
6008
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6009
|
+
:type RequestId: str
|
|
6010
|
+
"""
|
|
6011
|
+
self._TopicId = None
|
|
6012
|
+
self._TopicName = None
|
|
6013
|
+
self._LogsetId = None
|
|
6014
|
+
self._LogsetName = None
|
|
6015
|
+
self._RequestId = None
|
|
6016
|
+
|
|
6017
|
+
@property
|
|
6018
|
+
def TopicId(self):
|
|
6019
|
+
"""日志主题ID
|
|
6020
|
+
:rtype: str
|
|
6021
|
+
"""
|
|
6022
|
+
return self._TopicId
|
|
6023
|
+
|
|
6024
|
+
@TopicId.setter
|
|
6025
|
+
def TopicId(self, TopicId):
|
|
6026
|
+
self._TopicId = TopicId
|
|
6027
|
+
|
|
6028
|
+
@property
|
|
6029
|
+
def TopicName(self):
|
|
6030
|
+
"""日志主题名称
|
|
6031
|
+
:rtype: str
|
|
6032
|
+
"""
|
|
6033
|
+
return self._TopicName
|
|
6034
|
+
|
|
6035
|
+
@TopicName.setter
|
|
6036
|
+
def TopicName(self, TopicName):
|
|
6037
|
+
self._TopicName = TopicName
|
|
6038
|
+
|
|
6039
|
+
@property
|
|
6040
|
+
def LogsetId(self):
|
|
6041
|
+
"""日志集ID
|
|
6042
|
+
:rtype: str
|
|
6043
|
+
"""
|
|
6044
|
+
return self._LogsetId
|
|
6045
|
+
|
|
6046
|
+
@LogsetId.setter
|
|
6047
|
+
def LogsetId(self, LogsetId):
|
|
6048
|
+
self._LogsetId = LogsetId
|
|
6049
|
+
|
|
6050
|
+
@property
|
|
6051
|
+
def LogsetName(self):
|
|
6052
|
+
"""日志集名称
|
|
6053
|
+
:rtype: str
|
|
6054
|
+
"""
|
|
6055
|
+
return self._LogsetName
|
|
6056
|
+
|
|
6057
|
+
@LogsetName.setter
|
|
6058
|
+
def LogsetName(self, LogsetName):
|
|
6059
|
+
self._LogsetName = LogsetName
|
|
6060
|
+
|
|
6061
|
+
@property
|
|
6062
|
+
def RequestId(self):
|
|
6063
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
6064
|
+
:rtype: str
|
|
6065
|
+
"""
|
|
6066
|
+
return self._RequestId
|
|
6067
|
+
|
|
6068
|
+
@RequestId.setter
|
|
6069
|
+
def RequestId(self, RequestId):
|
|
6070
|
+
self._RequestId = RequestId
|
|
6071
|
+
|
|
6072
|
+
|
|
6073
|
+
def _deserialize(self, params):
|
|
6074
|
+
self._TopicId = params.get("TopicId")
|
|
6075
|
+
self._TopicName = params.get("TopicName")
|
|
6076
|
+
self._LogsetId = params.get("LogsetId")
|
|
6077
|
+
self._LogsetName = params.get("LogsetName")
|
|
6078
|
+
self._RequestId = params.get("RequestId")
|
|
6079
|
+
|
|
6080
|
+
|
|
5683
6081
|
class CreateConfigExtraRequest(AbstractModel):
|
|
5684
6082
|
"""CreateConfigExtra请求参数结构体
|
|
5685
6083
|
|
|
@@ -10205,42 +10603,175 @@ class DeleteAlarmShieldRequest(AbstractModel):
|
|
|
10205
10603
|
|
|
10206
10604
|
"""
|
|
10207
10605
|
|
|
10208
|
-
def __init__(self):
|
|
10209
|
-
r"""
|
|
10210
|
-
:param _TaskId: 屏蔽规则id。
|
|
10211
|
-
:type TaskId: str
|
|
10212
|
-
:param _AlarmNoticeId: 通知渠道组id。
|
|
10213
|
-
:type AlarmNoticeId: str
|
|
10606
|
+
def __init__(self):
|
|
10607
|
+
r"""
|
|
10608
|
+
:param _TaskId: 屏蔽规则id。
|
|
10609
|
+
:type TaskId: str
|
|
10610
|
+
:param _AlarmNoticeId: 通知渠道组id。
|
|
10611
|
+
:type AlarmNoticeId: str
|
|
10612
|
+
"""
|
|
10613
|
+
self._TaskId = None
|
|
10614
|
+
self._AlarmNoticeId = None
|
|
10615
|
+
|
|
10616
|
+
@property
|
|
10617
|
+
def TaskId(self):
|
|
10618
|
+
"""屏蔽规则id。
|
|
10619
|
+
:rtype: str
|
|
10620
|
+
"""
|
|
10621
|
+
return self._TaskId
|
|
10622
|
+
|
|
10623
|
+
@TaskId.setter
|
|
10624
|
+
def TaskId(self, TaskId):
|
|
10625
|
+
self._TaskId = TaskId
|
|
10626
|
+
|
|
10627
|
+
@property
|
|
10628
|
+
def AlarmNoticeId(self):
|
|
10629
|
+
"""通知渠道组id。
|
|
10630
|
+
:rtype: str
|
|
10631
|
+
"""
|
|
10632
|
+
return self._AlarmNoticeId
|
|
10633
|
+
|
|
10634
|
+
@AlarmNoticeId.setter
|
|
10635
|
+
def AlarmNoticeId(self, AlarmNoticeId):
|
|
10636
|
+
self._AlarmNoticeId = AlarmNoticeId
|
|
10637
|
+
|
|
10638
|
+
|
|
10639
|
+
def _deserialize(self, params):
|
|
10640
|
+
self._TaskId = params.get("TaskId")
|
|
10641
|
+
self._AlarmNoticeId = params.get("AlarmNoticeId")
|
|
10642
|
+
memeber_set = set(params.keys())
|
|
10643
|
+
for name, value in vars(self).items():
|
|
10644
|
+
property_name = name[1:]
|
|
10645
|
+
if property_name in memeber_set:
|
|
10646
|
+
memeber_set.remove(property_name)
|
|
10647
|
+
if len(memeber_set) > 0:
|
|
10648
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
10649
|
+
|
|
10650
|
+
|
|
10651
|
+
|
|
10652
|
+
class DeleteAlarmShieldResponse(AbstractModel):
|
|
10653
|
+
"""DeleteAlarmShield返回参数结构体
|
|
10654
|
+
|
|
10655
|
+
"""
|
|
10656
|
+
|
|
10657
|
+
def __init__(self):
|
|
10658
|
+
r"""
|
|
10659
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
10660
|
+
:type RequestId: str
|
|
10661
|
+
"""
|
|
10662
|
+
self._RequestId = None
|
|
10663
|
+
|
|
10664
|
+
@property
|
|
10665
|
+
def RequestId(self):
|
|
10666
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
10667
|
+
:rtype: str
|
|
10668
|
+
"""
|
|
10669
|
+
return self._RequestId
|
|
10670
|
+
|
|
10671
|
+
@RequestId.setter
|
|
10672
|
+
def RequestId(self, RequestId):
|
|
10673
|
+
self._RequestId = RequestId
|
|
10674
|
+
|
|
10675
|
+
|
|
10676
|
+
def _deserialize(self, params):
|
|
10677
|
+
self._RequestId = params.get("RequestId")
|
|
10678
|
+
|
|
10679
|
+
|
|
10680
|
+
class DeleteCloudProductLogTaskRequest(AbstractModel):
|
|
10681
|
+
"""DeleteCloudProductLogTask请求参数结构体
|
|
10682
|
+
|
|
10683
|
+
"""
|
|
10684
|
+
|
|
10685
|
+
def __init__(self):
|
|
10686
|
+
r"""
|
|
10687
|
+
:param _InstanceId: 实例ID
|
|
10688
|
+
:type InstanceId: str
|
|
10689
|
+
:param _AssumerName: 云产品标识,支持枚举:CDS、CWP、CDB、TDSQL-C、MongoDB、TDStore、DCDB、MariaDB、PostgreSQL、BH、APIS
|
|
10690
|
+
:type AssumerName: str
|
|
10691
|
+
:param _LogType: 日志类型,支持枚举:CDS-AUDIT、CDS-RISK、CDB-AUDIT、TDSQL-C-AUDIT、MongoDB-AUDIT、MongoDB-SlowLog、MongoDB-ErrorLog、TDMYSQL-SLOW、DCDB-AUDIT、DCDB-SLOW、DCDB-ERROR、MariaDB-AUDIT、MariaDB-SLOW、MariaDB-ERROR、PostgreSQL-SLOW、PostgreSQL-ERROR、PostgreSQL-AUDIT、BH-FILELOG、BH-COMMANDLOG、APIS-ACCESS
|
|
10692
|
+
:type LogType: str
|
|
10693
|
+
:param _CloudProductRegion: 云产品地域。 不同日志类型(LogType)地域入參格式存在差异, 请参考如下示例:
|
|
10694
|
+
- CDS所有日志类型:ap-guangzhou
|
|
10695
|
+
- CDB-AUDIT: gz
|
|
10696
|
+
- TDSQL-C-AUDIT: gz
|
|
10697
|
+
- MongoDB-AUDIT: gz
|
|
10698
|
+
- MongoDB-SlowLog:ap-guangzhou
|
|
10699
|
+
- MongoDB-ErrorLog:ap-guangzhou
|
|
10700
|
+
- TDMYSQL-SLOW:gz
|
|
10701
|
+
- DCDB所有日志类型:gz
|
|
10702
|
+
- MariaDB所有日志类型:gz
|
|
10703
|
+
- PostgreSQL所有日志类型:gz
|
|
10704
|
+
- BH所有日志类型:overseas-polaris(国内站海外)/fsi-polaris(国内站金融)/general-polaris(国内站普通)/intl-sg-prod(国际站)
|
|
10705
|
+
- APIS所有日志类型:gz
|
|
10706
|
+
:type CloudProductRegion: str
|
|
10707
|
+
"""
|
|
10708
|
+
self._InstanceId = None
|
|
10709
|
+
self._AssumerName = None
|
|
10710
|
+
self._LogType = None
|
|
10711
|
+
self._CloudProductRegion = None
|
|
10712
|
+
|
|
10713
|
+
@property
|
|
10714
|
+
def InstanceId(self):
|
|
10715
|
+
"""实例ID
|
|
10716
|
+
:rtype: str
|
|
10717
|
+
"""
|
|
10718
|
+
return self._InstanceId
|
|
10719
|
+
|
|
10720
|
+
@InstanceId.setter
|
|
10721
|
+
def InstanceId(self, InstanceId):
|
|
10722
|
+
self._InstanceId = InstanceId
|
|
10723
|
+
|
|
10724
|
+
@property
|
|
10725
|
+
def AssumerName(self):
|
|
10726
|
+
"""云产品标识,支持枚举:CDS、CWP、CDB、TDSQL-C、MongoDB、TDStore、DCDB、MariaDB、PostgreSQL、BH、APIS
|
|
10727
|
+
:rtype: str
|
|
10214
10728
|
"""
|
|
10215
|
-
self.
|
|
10216
|
-
|
|
10729
|
+
return self._AssumerName
|
|
10730
|
+
|
|
10731
|
+
@AssumerName.setter
|
|
10732
|
+
def AssumerName(self, AssumerName):
|
|
10733
|
+
self._AssumerName = AssumerName
|
|
10217
10734
|
|
|
10218
10735
|
@property
|
|
10219
|
-
def
|
|
10220
|
-
"""
|
|
10736
|
+
def LogType(self):
|
|
10737
|
+
"""日志类型,支持枚举:CDS-AUDIT、CDS-RISK、CDB-AUDIT、TDSQL-C-AUDIT、MongoDB-AUDIT、MongoDB-SlowLog、MongoDB-ErrorLog、TDMYSQL-SLOW、DCDB-AUDIT、DCDB-SLOW、DCDB-ERROR、MariaDB-AUDIT、MariaDB-SLOW、MariaDB-ERROR、PostgreSQL-SLOW、PostgreSQL-ERROR、PostgreSQL-AUDIT、BH-FILELOG、BH-COMMANDLOG、APIS-ACCESS
|
|
10221
10738
|
:rtype: str
|
|
10222
10739
|
"""
|
|
10223
|
-
return self.
|
|
10740
|
+
return self._LogType
|
|
10224
10741
|
|
|
10225
|
-
@
|
|
10226
|
-
def
|
|
10227
|
-
self.
|
|
10742
|
+
@LogType.setter
|
|
10743
|
+
def LogType(self, LogType):
|
|
10744
|
+
self._LogType = LogType
|
|
10228
10745
|
|
|
10229
10746
|
@property
|
|
10230
|
-
def
|
|
10231
|
-
"""
|
|
10747
|
+
def CloudProductRegion(self):
|
|
10748
|
+
"""云产品地域。 不同日志类型(LogType)地域入參格式存在差异, 请参考如下示例:
|
|
10749
|
+
- CDS所有日志类型:ap-guangzhou
|
|
10750
|
+
- CDB-AUDIT: gz
|
|
10751
|
+
- TDSQL-C-AUDIT: gz
|
|
10752
|
+
- MongoDB-AUDIT: gz
|
|
10753
|
+
- MongoDB-SlowLog:ap-guangzhou
|
|
10754
|
+
- MongoDB-ErrorLog:ap-guangzhou
|
|
10755
|
+
- TDMYSQL-SLOW:gz
|
|
10756
|
+
- DCDB所有日志类型:gz
|
|
10757
|
+
- MariaDB所有日志类型:gz
|
|
10758
|
+
- PostgreSQL所有日志类型:gz
|
|
10759
|
+
- BH所有日志类型:overseas-polaris(国内站海外)/fsi-polaris(国内站金融)/general-polaris(国内站普通)/intl-sg-prod(国际站)
|
|
10760
|
+
- APIS所有日志类型:gz
|
|
10232
10761
|
:rtype: str
|
|
10233
10762
|
"""
|
|
10234
|
-
return self.
|
|
10763
|
+
return self._CloudProductRegion
|
|
10235
10764
|
|
|
10236
|
-
@
|
|
10237
|
-
def
|
|
10238
|
-
self.
|
|
10765
|
+
@CloudProductRegion.setter
|
|
10766
|
+
def CloudProductRegion(self, CloudProductRegion):
|
|
10767
|
+
self._CloudProductRegion = CloudProductRegion
|
|
10239
10768
|
|
|
10240
10769
|
|
|
10241
10770
|
def _deserialize(self, params):
|
|
10242
|
-
self.
|
|
10243
|
-
self.
|
|
10771
|
+
self._InstanceId = params.get("InstanceId")
|
|
10772
|
+
self._AssumerName = params.get("AssumerName")
|
|
10773
|
+
self._LogType = params.get("LogType")
|
|
10774
|
+
self._CloudProductRegion = params.get("CloudProductRegion")
|
|
10244
10775
|
memeber_set = set(params.keys())
|
|
10245
10776
|
for name, value in vars(self).items():
|
|
10246
10777
|
property_name = name[1:]
|
|
@@ -10251,8 +10782,8 @@ class DeleteAlarmShieldRequest(AbstractModel):
|
|
|
10251
10782
|
|
|
10252
10783
|
|
|
10253
10784
|
|
|
10254
|
-
class
|
|
10255
|
-
"""
|
|
10785
|
+
class DeleteCloudProductLogTaskResponse(AbstractModel):
|
|
10786
|
+
"""DeleteCloudProductLogTask返回参数结构体
|
|
10256
10787
|
|
|
10257
10788
|
"""
|
|
10258
10789
|
|
|
@@ -12206,6 +12737,166 @@ class DescribeAlertRecordHistoryResponse(AbstractModel):
|
|
|
12206
12737
|
self._RequestId = params.get("RequestId")
|
|
12207
12738
|
|
|
12208
12739
|
|
|
12740
|
+
class DescribeCloudProductLogTasksRequest(AbstractModel):
|
|
12741
|
+
"""DescribeCloudProductLogTasks请求参数结构体
|
|
12742
|
+
|
|
12743
|
+
"""
|
|
12744
|
+
|
|
12745
|
+
def __init__(self):
|
|
12746
|
+
r"""
|
|
12747
|
+
:param _Offset: 分页的偏移量,默认值为0。
|
|
12748
|
+
:type Offset: int
|
|
12749
|
+
:param _Limit: 分页单页限制数目,默认值为100,最大值100。
|
|
12750
|
+
:type Limit: int
|
|
12751
|
+
:param _Filters: - assumerName
|
|
12752
|
+
- 按照【云产品标识】进行过滤。
|
|
12753
|
+
- 类型:String
|
|
12754
|
+
- 必选:否
|
|
12755
|
+
- 枚举:CDS、CWP、CDB、TDSQL-C、MongoDB、TDStore、DCDB、MariaDB、PostgreSQL、BH、APIS
|
|
12756
|
+
- logType
|
|
12757
|
+
- 按照【日志类型】进行过滤。
|
|
12758
|
+
- 类型:String
|
|
12759
|
+
- 必选:否
|
|
12760
|
+
- 枚举:CDS-AUDIT、CDS-RISK、CDB-AUDIT、TDSQL-C-AUDIT、MongoDB-AUDIT、MongoDB-SlowLog、MongoDB-ErrorLog、TDMYSQL-SLOW、DCDB-AUDIT、DCDB-SLOW、DCDB-ERROR、MariaDB-AUDIT、MariaDB-SLOW、MariaDB-ERROR、PostgreSQL-SLOW、PostgreSQL-ERROR、PostgreSQL-AUDIT、BH-FILELOG、BH-COMMANDLOG、APIS-ACCESS
|
|
12761
|
+
- instanceId
|
|
12762
|
+
- 按照【实例ID】进行过滤。
|
|
12763
|
+
- 类型:String
|
|
12764
|
+
- 必选:否
|
|
12765
|
+
:type Filters: list of Filter
|
|
12766
|
+
"""
|
|
12767
|
+
self._Offset = None
|
|
12768
|
+
self._Limit = None
|
|
12769
|
+
self._Filters = None
|
|
12770
|
+
|
|
12771
|
+
@property
|
|
12772
|
+
def Offset(self):
|
|
12773
|
+
"""分页的偏移量,默认值为0。
|
|
12774
|
+
:rtype: int
|
|
12775
|
+
"""
|
|
12776
|
+
return self._Offset
|
|
12777
|
+
|
|
12778
|
+
@Offset.setter
|
|
12779
|
+
def Offset(self, Offset):
|
|
12780
|
+
self._Offset = Offset
|
|
12781
|
+
|
|
12782
|
+
@property
|
|
12783
|
+
def Limit(self):
|
|
12784
|
+
"""分页单页限制数目,默认值为100,最大值100。
|
|
12785
|
+
:rtype: int
|
|
12786
|
+
"""
|
|
12787
|
+
return self._Limit
|
|
12788
|
+
|
|
12789
|
+
@Limit.setter
|
|
12790
|
+
def Limit(self, Limit):
|
|
12791
|
+
self._Limit = Limit
|
|
12792
|
+
|
|
12793
|
+
@property
|
|
12794
|
+
def Filters(self):
|
|
12795
|
+
"""- assumerName
|
|
12796
|
+
- 按照【云产品标识】进行过滤。
|
|
12797
|
+
- 类型:String
|
|
12798
|
+
- 必选:否
|
|
12799
|
+
- 枚举:CDS、CWP、CDB、TDSQL-C、MongoDB、TDStore、DCDB、MariaDB、PostgreSQL、BH、APIS
|
|
12800
|
+
- logType
|
|
12801
|
+
- 按照【日志类型】进行过滤。
|
|
12802
|
+
- 类型:String
|
|
12803
|
+
- 必选:否
|
|
12804
|
+
- 枚举:CDS-AUDIT、CDS-RISK、CDB-AUDIT、TDSQL-C-AUDIT、MongoDB-AUDIT、MongoDB-SlowLog、MongoDB-ErrorLog、TDMYSQL-SLOW、DCDB-AUDIT、DCDB-SLOW、DCDB-ERROR、MariaDB-AUDIT、MariaDB-SLOW、MariaDB-ERROR、PostgreSQL-SLOW、PostgreSQL-ERROR、PostgreSQL-AUDIT、BH-FILELOG、BH-COMMANDLOG、APIS-ACCESS
|
|
12805
|
+
- instanceId
|
|
12806
|
+
- 按照【实例ID】进行过滤。
|
|
12807
|
+
- 类型:String
|
|
12808
|
+
- 必选:否
|
|
12809
|
+
:rtype: list of Filter
|
|
12810
|
+
"""
|
|
12811
|
+
return self._Filters
|
|
12812
|
+
|
|
12813
|
+
@Filters.setter
|
|
12814
|
+
def Filters(self, Filters):
|
|
12815
|
+
self._Filters = Filters
|
|
12816
|
+
|
|
12817
|
+
|
|
12818
|
+
def _deserialize(self, params):
|
|
12819
|
+
self._Offset = params.get("Offset")
|
|
12820
|
+
self._Limit = params.get("Limit")
|
|
12821
|
+
if params.get("Filters") is not None:
|
|
12822
|
+
self._Filters = []
|
|
12823
|
+
for item in params.get("Filters"):
|
|
12824
|
+
obj = Filter()
|
|
12825
|
+
obj._deserialize(item)
|
|
12826
|
+
self._Filters.append(obj)
|
|
12827
|
+
memeber_set = set(params.keys())
|
|
12828
|
+
for name, value in vars(self).items():
|
|
12829
|
+
property_name = name[1:]
|
|
12830
|
+
if property_name in memeber_set:
|
|
12831
|
+
memeber_set.remove(property_name)
|
|
12832
|
+
if len(memeber_set) > 0:
|
|
12833
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
12834
|
+
|
|
12835
|
+
|
|
12836
|
+
|
|
12837
|
+
class DescribeCloudProductLogTasksResponse(AbstractModel):
|
|
12838
|
+
"""DescribeCloudProductLogTasks返回参数结构体
|
|
12839
|
+
|
|
12840
|
+
"""
|
|
12841
|
+
|
|
12842
|
+
def __init__(self):
|
|
12843
|
+
r"""
|
|
12844
|
+
:param _Tasks: 日志配置详情列表
|
|
12845
|
+
:type Tasks: list of CloudProductLogTaskInfo
|
|
12846
|
+
:param _TotalCount: 日志配置总数
|
|
12847
|
+
:type TotalCount: int
|
|
12848
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
12849
|
+
:type RequestId: str
|
|
12850
|
+
"""
|
|
12851
|
+
self._Tasks = None
|
|
12852
|
+
self._TotalCount = None
|
|
12853
|
+
self._RequestId = None
|
|
12854
|
+
|
|
12855
|
+
@property
|
|
12856
|
+
def Tasks(self):
|
|
12857
|
+
"""日志配置详情列表
|
|
12858
|
+
:rtype: list of CloudProductLogTaskInfo
|
|
12859
|
+
"""
|
|
12860
|
+
return self._Tasks
|
|
12861
|
+
|
|
12862
|
+
@Tasks.setter
|
|
12863
|
+
def Tasks(self, Tasks):
|
|
12864
|
+
self._Tasks = Tasks
|
|
12865
|
+
|
|
12866
|
+
@property
|
|
12867
|
+
def TotalCount(self):
|
|
12868
|
+
"""日志配置总数
|
|
12869
|
+
:rtype: int
|
|
12870
|
+
"""
|
|
12871
|
+
return self._TotalCount
|
|
12872
|
+
|
|
12873
|
+
@TotalCount.setter
|
|
12874
|
+
def TotalCount(self, TotalCount):
|
|
12875
|
+
self._TotalCount = TotalCount
|
|
12876
|
+
|
|
12877
|
+
@property
|
|
12878
|
+
def RequestId(self):
|
|
12879
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
12880
|
+
:rtype: str
|
|
12881
|
+
"""
|
|
12882
|
+
return self._RequestId
|
|
12883
|
+
|
|
12884
|
+
@RequestId.setter
|
|
12885
|
+
def RequestId(self, RequestId):
|
|
12886
|
+
self._RequestId = RequestId
|
|
12887
|
+
|
|
12888
|
+
|
|
12889
|
+
def _deserialize(self, params):
|
|
12890
|
+
if params.get("Tasks") is not None:
|
|
12891
|
+
self._Tasks = []
|
|
12892
|
+
for item in params.get("Tasks"):
|
|
12893
|
+
obj = CloudProductLogTaskInfo()
|
|
12894
|
+
obj._deserialize(item)
|
|
12895
|
+
self._Tasks.append(obj)
|
|
12896
|
+
self._TotalCount = params.get("TotalCount")
|
|
12897
|
+
self._RequestId = params.get("RequestId")
|
|
12898
|
+
|
|
12899
|
+
|
|
12209
12900
|
class DescribeConfigExtrasRequest(AbstractModel):
|
|
12210
12901
|
"""DescribeConfigExtras请求参数结构体
|
|
12211
12902
|
|
|
@@ -20912,6 +21603,154 @@ class ModifyAlarmShieldResponse(AbstractModel):
|
|
|
20912
21603
|
self._RequestId = params.get("RequestId")
|
|
20913
21604
|
|
|
20914
21605
|
|
|
21606
|
+
class ModifyCloudProductLogTaskRequest(AbstractModel):
|
|
21607
|
+
"""ModifyCloudProductLogTask请求参数结构体
|
|
21608
|
+
|
|
21609
|
+
"""
|
|
21610
|
+
|
|
21611
|
+
def __init__(self):
|
|
21612
|
+
r"""
|
|
21613
|
+
:param _InstanceId: 实例ID
|
|
21614
|
+
:type InstanceId: str
|
|
21615
|
+
:param _AssumerName: 云产品标识,支持枚举:CDS、CWP、CDB、TDSQL-C、MongoDB、TDStore、DCDB、MariaDB、PostgreSQL、BH、APIS
|
|
21616
|
+
:type AssumerName: str
|
|
21617
|
+
:param _LogType: 日志类型,支持枚举:CDS-AUDIT、CDS-RISK、CDB-AUDIT、TDSQL-C-AUDIT、MongoDB-AUDIT、MongoDB-SlowLog、MongoDB-ErrorLog、TDMYSQL-SLOW、DCDB-AUDIT、DCDB-SLOW、DCDB-ERROR、MariaDB-AUDIT、MariaDB-SLOW、MariaDB-ERROR、PostgreSQL-SLOW、PostgreSQL-ERROR、PostgreSQL-AUDIT、BH-FILELOG、BH-COMMANDLOG、APIS-ACCESS
|
|
21618
|
+
:type LogType: str
|
|
21619
|
+
:param _CloudProductRegion: 云产品地域。 不同日志类型(LogType)地域入參格式存在差异, 请参考如下示例:
|
|
21620
|
+
- CDS所有日志类型:ap-guangzhou
|
|
21621
|
+
- CDB-AUDIT: gz
|
|
21622
|
+
- TDSQL-C-AUDIT: gz
|
|
21623
|
+
- MongoDB-AUDIT: gz
|
|
21624
|
+
- MongoDB-SlowLog:ap-guangzhou
|
|
21625
|
+
- MongoDB-ErrorLog:ap-guangzhou
|
|
21626
|
+
- TDMYSQL-SLOW:gz
|
|
21627
|
+
- DCDB所有日志类型:gz
|
|
21628
|
+
- MariaDB所有日志类型:gz
|
|
21629
|
+
- PostgreSQL所有日志类型:gz
|
|
21630
|
+
- BH所有日志类型:overseas-polaris(国内站海外)/fsi-polaris(国内站金融)/general-polaris(国内站普通)/intl-sg-prod(国际站)
|
|
21631
|
+
- APIS所有日志类型:gz
|
|
21632
|
+
:type CloudProductRegion: str
|
|
21633
|
+
:param _Extend: 日志配置拓展信息, 一般用于存储额外的日志投递配置
|
|
21634
|
+
:type Extend: str
|
|
21635
|
+
"""
|
|
21636
|
+
self._InstanceId = None
|
|
21637
|
+
self._AssumerName = None
|
|
21638
|
+
self._LogType = None
|
|
21639
|
+
self._CloudProductRegion = None
|
|
21640
|
+
self._Extend = None
|
|
21641
|
+
|
|
21642
|
+
@property
|
|
21643
|
+
def InstanceId(self):
|
|
21644
|
+
"""实例ID
|
|
21645
|
+
:rtype: str
|
|
21646
|
+
"""
|
|
21647
|
+
return self._InstanceId
|
|
21648
|
+
|
|
21649
|
+
@InstanceId.setter
|
|
21650
|
+
def InstanceId(self, InstanceId):
|
|
21651
|
+
self._InstanceId = InstanceId
|
|
21652
|
+
|
|
21653
|
+
@property
|
|
21654
|
+
def AssumerName(self):
|
|
21655
|
+
"""云产品标识,支持枚举:CDS、CWP、CDB、TDSQL-C、MongoDB、TDStore、DCDB、MariaDB、PostgreSQL、BH、APIS
|
|
21656
|
+
:rtype: str
|
|
21657
|
+
"""
|
|
21658
|
+
return self._AssumerName
|
|
21659
|
+
|
|
21660
|
+
@AssumerName.setter
|
|
21661
|
+
def AssumerName(self, AssumerName):
|
|
21662
|
+
self._AssumerName = AssumerName
|
|
21663
|
+
|
|
21664
|
+
@property
|
|
21665
|
+
def LogType(self):
|
|
21666
|
+
"""日志类型,支持枚举:CDS-AUDIT、CDS-RISK、CDB-AUDIT、TDSQL-C-AUDIT、MongoDB-AUDIT、MongoDB-SlowLog、MongoDB-ErrorLog、TDMYSQL-SLOW、DCDB-AUDIT、DCDB-SLOW、DCDB-ERROR、MariaDB-AUDIT、MariaDB-SLOW、MariaDB-ERROR、PostgreSQL-SLOW、PostgreSQL-ERROR、PostgreSQL-AUDIT、BH-FILELOG、BH-COMMANDLOG、APIS-ACCESS
|
|
21667
|
+
:rtype: str
|
|
21668
|
+
"""
|
|
21669
|
+
return self._LogType
|
|
21670
|
+
|
|
21671
|
+
@LogType.setter
|
|
21672
|
+
def LogType(self, LogType):
|
|
21673
|
+
self._LogType = LogType
|
|
21674
|
+
|
|
21675
|
+
@property
|
|
21676
|
+
def CloudProductRegion(self):
|
|
21677
|
+
"""云产品地域。 不同日志类型(LogType)地域入參格式存在差异, 请参考如下示例:
|
|
21678
|
+
- CDS所有日志类型:ap-guangzhou
|
|
21679
|
+
- CDB-AUDIT: gz
|
|
21680
|
+
- TDSQL-C-AUDIT: gz
|
|
21681
|
+
- MongoDB-AUDIT: gz
|
|
21682
|
+
- MongoDB-SlowLog:ap-guangzhou
|
|
21683
|
+
- MongoDB-ErrorLog:ap-guangzhou
|
|
21684
|
+
- TDMYSQL-SLOW:gz
|
|
21685
|
+
- DCDB所有日志类型:gz
|
|
21686
|
+
- MariaDB所有日志类型:gz
|
|
21687
|
+
- PostgreSQL所有日志类型:gz
|
|
21688
|
+
- BH所有日志类型:overseas-polaris(国内站海外)/fsi-polaris(国内站金融)/general-polaris(国内站普通)/intl-sg-prod(国际站)
|
|
21689
|
+
- APIS所有日志类型:gz
|
|
21690
|
+
:rtype: str
|
|
21691
|
+
"""
|
|
21692
|
+
return self._CloudProductRegion
|
|
21693
|
+
|
|
21694
|
+
@CloudProductRegion.setter
|
|
21695
|
+
def CloudProductRegion(self, CloudProductRegion):
|
|
21696
|
+
self._CloudProductRegion = CloudProductRegion
|
|
21697
|
+
|
|
21698
|
+
@property
|
|
21699
|
+
def Extend(self):
|
|
21700
|
+
"""日志配置拓展信息, 一般用于存储额外的日志投递配置
|
|
21701
|
+
:rtype: str
|
|
21702
|
+
"""
|
|
21703
|
+
return self._Extend
|
|
21704
|
+
|
|
21705
|
+
@Extend.setter
|
|
21706
|
+
def Extend(self, Extend):
|
|
21707
|
+
self._Extend = Extend
|
|
21708
|
+
|
|
21709
|
+
|
|
21710
|
+
def _deserialize(self, params):
|
|
21711
|
+
self._InstanceId = params.get("InstanceId")
|
|
21712
|
+
self._AssumerName = params.get("AssumerName")
|
|
21713
|
+
self._LogType = params.get("LogType")
|
|
21714
|
+
self._CloudProductRegion = params.get("CloudProductRegion")
|
|
21715
|
+
self._Extend = params.get("Extend")
|
|
21716
|
+
memeber_set = set(params.keys())
|
|
21717
|
+
for name, value in vars(self).items():
|
|
21718
|
+
property_name = name[1:]
|
|
21719
|
+
if property_name in memeber_set:
|
|
21720
|
+
memeber_set.remove(property_name)
|
|
21721
|
+
if len(memeber_set) > 0:
|
|
21722
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
21723
|
+
|
|
21724
|
+
|
|
21725
|
+
|
|
21726
|
+
class ModifyCloudProductLogTaskResponse(AbstractModel):
|
|
21727
|
+
"""ModifyCloudProductLogTask返回参数结构体
|
|
21728
|
+
|
|
21729
|
+
"""
|
|
21730
|
+
|
|
21731
|
+
def __init__(self):
|
|
21732
|
+
r"""
|
|
21733
|
+
:param _RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
21734
|
+
:type RequestId: str
|
|
21735
|
+
"""
|
|
21736
|
+
self._RequestId = None
|
|
21737
|
+
|
|
21738
|
+
@property
|
|
21739
|
+
def RequestId(self):
|
|
21740
|
+
"""唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
|
21741
|
+
:rtype: str
|
|
21742
|
+
"""
|
|
21743
|
+
return self._RequestId
|
|
21744
|
+
|
|
21745
|
+
@RequestId.setter
|
|
21746
|
+
def RequestId(self, RequestId):
|
|
21747
|
+
self._RequestId = RequestId
|
|
21748
|
+
|
|
21749
|
+
|
|
21750
|
+
def _deserialize(self, params):
|
|
21751
|
+
self._RequestId = params.get("RequestId")
|
|
21752
|
+
|
|
21753
|
+
|
|
20915
21754
|
class ModifyConfigExtraRequest(AbstractModel):
|
|
20916
21755
|
"""ModifyConfigExtra请求参数结构体
|
|
20917
21756
|
|
|
@@ -1,10 +1,10 @@
|
|
|
1
|
-
Metadata-Version: 1.
|
|
1
|
+
Metadata-Version: 1.2
|
|
2
2
|
Name: tencentcloud-sdk-python-cls
|
|
3
|
-
Version: 3.0.
|
|
3
|
+
Version: 3.0.1270
|
|
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
|
|
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.1270
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1264
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|