tencentcloud-sdk-python-cls 3.0.1209__tar.gz → 3.0.1213__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.1209 → tencentcloud-sdk-python-cls-3.0.1213}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.1209 → tencentcloud-sdk-python-cls-3.0.1213}/setup.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1209 → tencentcloud-sdk-python-cls-3.0.1213}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1209 → tencentcloud-sdk-python-cls-3.0.1213}/tencentcloud/cls/v20201016/models.py +244 -6
- {tencentcloud-sdk-python-cls-3.0.1209 → tencentcloud-sdk-python-cls-3.0.1213}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cls-3.0.1213/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cls-3.0.1209/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cls-3.0.1209 → tencentcloud-sdk-python-cls-3.0.1213}/README.rst +0 -0
- {tencentcloud-sdk-python-cls-3.0.1209 → tencentcloud-sdk-python-cls-3.0.1213}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cls-3.0.1209 → tencentcloud-sdk-python-cls-3.0.1213}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1209 → tencentcloud-sdk-python-cls-3.0.1213}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1209 → tencentcloud-sdk-python-cls-3.0.1213}/tencentcloud/cls/v20201016/cls_client.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1209 → tencentcloud-sdk-python-cls-3.0.1213}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1209 → tencentcloud-sdk-python-cls-3.0.1213}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1209 → tencentcloud-sdk-python-cls-3.0.1213}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1209 → tencentcloud-sdk-python-cls-3.0.1213}/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.1213"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cls SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -2756,20 +2756,23 @@ class ConsoleSharingConfig(AbstractModel):
|
|
|
2756
2756
|
:param _VerifyCode: 验证码
|
|
2757
2757
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2758
2758
|
:type VerifyCode: str
|
|
2759
|
-
:param _StartTime:
|
|
2759
|
+
:param _StartTime: 默认查询范围的开始时间点,支持绝对时间(13位Unix时间戳)或相对时间表达式
|
|
2760
2760
|
:type StartTime: str
|
|
2761
|
-
:param _EndTime:
|
|
2761
|
+
:param _EndTime: 默认查询范围的结束时间点,支持绝对时间(13位Unix时间戳)或相对时间表达式。注意,结束时间点要大于开始时间点
|
|
2762
2762
|
:type EndTime: str
|
|
2763
|
-
:param _NowTime:
|
|
2763
|
+
:param _NowTime: 仅当StartTime/EndTime为相对时间时使用,基于NowTime计算绝对时间,默认为创建时间
|
|
2764
2764
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2765
2765
|
:type NowTime: int
|
|
2766
|
-
:param _Params:
|
|
2766
|
+
:param _Params: 默认的检索分析语句,仅当Type为2时使用
|
|
2767
2767
|
注意:此字段可能返回 null,表示取不到有效值。
|
|
2768
2768
|
:type Params: list of ConsoleSharingParam
|
|
2769
|
-
:param _IsLockTimeRange:
|
|
2769
|
+
:param _IsLockTimeRange: 是否允许访问者自行修改检索分析时间范围。默认不锁定(false)
|
|
2770
2770
|
:type IsLockTimeRange: bool
|
|
2771
|
-
:param _IsLockQuery:
|
|
2771
|
+
:param _IsLockQuery: 是否允许访问者自行修改日志检索语句。在检索页分享中表示检索语句锁定状态;在仪表盘中表示过滤变量锁定状态。默认不锁定(false)
|
|
2772
2772
|
:type IsLockQuery: bool
|
|
2773
|
+
:param _IsSupportLogExport: 检索页分享是否允许访问者下载日志,默认不允许(false)
|
|
2774
|
+
注意:此字段可能返回 null,表示取不到有效值。
|
|
2775
|
+
:type IsSupportLogExport: bool
|
|
2773
2776
|
"""
|
|
2774
2777
|
self._Name = None
|
|
2775
2778
|
self._Type = None
|
|
@@ -2783,6 +2786,7 @@ class ConsoleSharingConfig(AbstractModel):
|
|
|
2783
2786
|
self._Params = None
|
|
2784
2787
|
self._IsLockTimeRange = None
|
|
2785
2788
|
self._IsLockQuery = None
|
|
2789
|
+
self._IsSupportLogExport = None
|
|
2786
2790
|
|
|
2787
2791
|
@property
|
|
2788
2792
|
def Name(self):
|
|
@@ -2880,6 +2884,14 @@ class ConsoleSharingConfig(AbstractModel):
|
|
|
2880
2884
|
def IsLockQuery(self, IsLockQuery):
|
|
2881
2885
|
self._IsLockQuery = IsLockQuery
|
|
2882
2886
|
|
|
2887
|
+
@property
|
|
2888
|
+
def IsSupportLogExport(self):
|
|
2889
|
+
return self._IsSupportLogExport
|
|
2890
|
+
|
|
2891
|
+
@IsSupportLogExport.setter
|
|
2892
|
+
def IsSupportLogExport(self, IsSupportLogExport):
|
|
2893
|
+
self._IsSupportLogExport = IsSupportLogExport
|
|
2894
|
+
|
|
2883
2895
|
|
|
2884
2896
|
def _deserialize(self, params):
|
|
2885
2897
|
self._Name = params.get("Name")
|
|
@@ -2899,6 +2911,7 @@ class ConsoleSharingConfig(AbstractModel):
|
|
|
2899
2911
|
self._Params.append(obj)
|
|
2900
2912
|
self._IsLockTimeRange = params.get("IsLockTimeRange")
|
|
2901
2913
|
self._IsLockQuery = params.get("IsLockQuery")
|
|
2914
|
+
self._IsSupportLogExport = params.get("IsSupportLogExport")
|
|
2902
2915
|
memeber_set = set(params.keys())
|
|
2903
2916
|
for name, value in vars(self).items():
|
|
2904
2917
|
property_name = name[1:]
|
|
@@ -5252,6 +5265,71 @@ class CreateDashboardSubscribeRequest(AbstractModel):
|
|
|
5252
5265
|
|
|
5253
5266
|
"""
|
|
5254
5267
|
|
|
5268
|
+
def __init__(self):
|
|
5269
|
+
r"""
|
|
5270
|
+
:param _Name: 仪表盘订阅名称。
|
|
5271
|
+
:type Name: str
|
|
5272
|
+
:param _DashboardId: 仪表盘id。
|
|
5273
|
+
:type DashboardId: str
|
|
5274
|
+
:param _Cron: 订阅时间cron表达式,格式为:{秒数} {分钟} {小时} {日期} {月份} {星期};(有效数据为:{分钟} {小时} {日期} {月份} {星期})。<br><li/>{秒数} 取值范围: 0 ~ 59 <br><li/>{分钟} 取值范围: 0 ~ 59 <br><li/>{小时} 取值范围: 0 ~ 23 <br><li/>{日期} 取值范围: 1 ~ 31 AND (dayOfMonth最后一天: L) <br><li/>{月份} 取值范围: 1 ~ 12 <br><li/>{星期} 取值范围: 0 ~ 6 【0:星期日, 6星期六】
|
|
5275
|
+
:type Cron: str
|
|
5276
|
+
:param _SubscribeData: 仪表盘订阅数据。
|
|
5277
|
+
:type SubscribeData: :class:`tencentcloud.cls.v20201016.models.DashboardSubscribeData`
|
|
5278
|
+
"""
|
|
5279
|
+
self._Name = None
|
|
5280
|
+
self._DashboardId = None
|
|
5281
|
+
self._Cron = None
|
|
5282
|
+
self._SubscribeData = None
|
|
5283
|
+
|
|
5284
|
+
@property
|
|
5285
|
+
def Name(self):
|
|
5286
|
+
return self._Name
|
|
5287
|
+
|
|
5288
|
+
@Name.setter
|
|
5289
|
+
def Name(self, Name):
|
|
5290
|
+
self._Name = Name
|
|
5291
|
+
|
|
5292
|
+
@property
|
|
5293
|
+
def DashboardId(self):
|
|
5294
|
+
return self._DashboardId
|
|
5295
|
+
|
|
5296
|
+
@DashboardId.setter
|
|
5297
|
+
def DashboardId(self, DashboardId):
|
|
5298
|
+
self._DashboardId = DashboardId
|
|
5299
|
+
|
|
5300
|
+
@property
|
|
5301
|
+
def Cron(self):
|
|
5302
|
+
return self._Cron
|
|
5303
|
+
|
|
5304
|
+
@Cron.setter
|
|
5305
|
+
def Cron(self, Cron):
|
|
5306
|
+
self._Cron = Cron
|
|
5307
|
+
|
|
5308
|
+
@property
|
|
5309
|
+
def SubscribeData(self):
|
|
5310
|
+
return self._SubscribeData
|
|
5311
|
+
|
|
5312
|
+
@SubscribeData.setter
|
|
5313
|
+
def SubscribeData(self, SubscribeData):
|
|
5314
|
+
self._SubscribeData = SubscribeData
|
|
5315
|
+
|
|
5316
|
+
|
|
5317
|
+
def _deserialize(self, params):
|
|
5318
|
+
self._Name = params.get("Name")
|
|
5319
|
+
self._DashboardId = params.get("DashboardId")
|
|
5320
|
+
self._Cron = params.get("Cron")
|
|
5321
|
+
if params.get("SubscribeData") is not None:
|
|
5322
|
+
self._SubscribeData = DashboardSubscribeData()
|
|
5323
|
+
self._SubscribeData._deserialize(params.get("SubscribeData"))
|
|
5324
|
+
memeber_set = set(params.keys())
|
|
5325
|
+
for name, value in vars(self).items():
|
|
5326
|
+
property_name = name[1:]
|
|
5327
|
+
if property_name in memeber_set:
|
|
5328
|
+
memeber_set.remove(property_name)
|
|
5329
|
+
if len(memeber_set) > 0:
|
|
5330
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
5331
|
+
|
|
5332
|
+
|
|
5255
5333
|
|
|
5256
5334
|
class CreateDashboardSubscribeResponse(AbstractModel):
|
|
5257
5335
|
"""CreateDashboardSubscribe返回参数结构体
|
|
@@ -8275,6 +8353,33 @@ class DeleteDashboardSubscribeRequest(AbstractModel):
|
|
|
8275
8353
|
|
|
8276
8354
|
"""
|
|
8277
8355
|
|
|
8356
|
+
def __init__(self):
|
|
8357
|
+
r"""
|
|
8358
|
+
:param _Id: 仪表盘订阅记录id。
|
|
8359
|
+
:type Id: int
|
|
8360
|
+
"""
|
|
8361
|
+
self._Id = None
|
|
8362
|
+
|
|
8363
|
+
@property
|
|
8364
|
+
def Id(self):
|
|
8365
|
+
return self._Id
|
|
8366
|
+
|
|
8367
|
+
@Id.setter
|
|
8368
|
+
def Id(self, Id):
|
|
8369
|
+
self._Id = Id
|
|
8370
|
+
|
|
8371
|
+
|
|
8372
|
+
def _deserialize(self, params):
|
|
8373
|
+
self._Id = params.get("Id")
|
|
8374
|
+
memeber_set = set(params.keys())
|
|
8375
|
+
for name, value in vars(self).items():
|
|
8376
|
+
property_name = name[1:]
|
|
8377
|
+
if property_name in memeber_set:
|
|
8378
|
+
memeber_set.remove(property_name)
|
|
8379
|
+
if len(memeber_set) > 0:
|
|
8380
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
8381
|
+
|
|
8382
|
+
|
|
8278
8383
|
|
|
8279
8384
|
class DeleteDashboardSubscribeResponse(AbstractModel):
|
|
8280
8385
|
"""DeleteDashboardSubscribe返回参数结构体
|
|
@@ -10086,6 +10191,62 @@ class DescribeDashboardSubscribesRequest(AbstractModel):
|
|
|
10086
10191
|
|
|
10087
10192
|
"""
|
|
10088
10193
|
|
|
10194
|
+
def __init__(self):
|
|
10195
|
+
r"""
|
|
10196
|
+
:param _Filters: <br><li/> dashboardId:按照【仪表盘id】进行过滤。类型:String必选:否<br><br><li/> 每次请求的Filters的上限为10,Filter.Values的上限为100。
|
|
10197
|
+
:type Filters: list of Filter
|
|
10198
|
+
:param _Offset: 分页的偏移量,默认值为0。
|
|
10199
|
+
:type Offset: int
|
|
10200
|
+
:param _Limit: 分页单页限制数目,默认值为20,最大值100。
|
|
10201
|
+
:type Limit: int
|
|
10202
|
+
"""
|
|
10203
|
+
self._Filters = None
|
|
10204
|
+
self._Offset = None
|
|
10205
|
+
self._Limit = None
|
|
10206
|
+
|
|
10207
|
+
@property
|
|
10208
|
+
def Filters(self):
|
|
10209
|
+
return self._Filters
|
|
10210
|
+
|
|
10211
|
+
@Filters.setter
|
|
10212
|
+
def Filters(self, Filters):
|
|
10213
|
+
self._Filters = Filters
|
|
10214
|
+
|
|
10215
|
+
@property
|
|
10216
|
+
def Offset(self):
|
|
10217
|
+
return self._Offset
|
|
10218
|
+
|
|
10219
|
+
@Offset.setter
|
|
10220
|
+
def Offset(self, Offset):
|
|
10221
|
+
self._Offset = Offset
|
|
10222
|
+
|
|
10223
|
+
@property
|
|
10224
|
+
def Limit(self):
|
|
10225
|
+
return self._Limit
|
|
10226
|
+
|
|
10227
|
+
@Limit.setter
|
|
10228
|
+
def Limit(self, Limit):
|
|
10229
|
+
self._Limit = Limit
|
|
10230
|
+
|
|
10231
|
+
|
|
10232
|
+
def _deserialize(self, params):
|
|
10233
|
+
if params.get("Filters") is not None:
|
|
10234
|
+
self._Filters = []
|
|
10235
|
+
for item in params.get("Filters"):
|
|
10236
|
+
obj = Filter()
|
|
10237
|
+
obj._deserialize(item)
|
|
10238
|
+
self._Filters.append(obj)
|
|
10239
|
+
self._Offset = params.get("Offset")
|
|
10240
|
+
self._Limit = params.get("Limit")
|
|
10241
|
+
memeber_set = set(params.keys())
|
|
10242
|
+
for name, value in vars(self).items():
|
|
10243
|
+
property_name = name[1:]
|
|
10244
|
+
if property_name in memeber_set:
|
|
10245
|
+
memeber_set.remove(property_name)
|
|
10246
|
+
if len(memeber_set) > 0:
|
|
10247
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
10248
|
+
|
|
10249
|
+
|
|
10089
10250
|
|
|
10090
10251
|
class DescribeDashboardSubscribesResponse(AbstractModel):
|
|
10091
10252
|
"""DescribeDashboardSubscribes返回参数结构体
|
|
@@ -17021,6 +17182,83 @@ class ModifyDashboardSubscribeRequest(AbstractModel):
|
|
|
17021
17182
|
|
|
17022
17183
|
"""
|
|
17023
17184
|
|
|
17185
|
+
def __init__(self):
|
|
17186
|
+
r"""
|
|
17187
|
+
:param _Id: 仪表盘订阅id。
|
|
17188
|
+
:type Id: int
|
|
17189
|
+
:param _DashboardId: 仪表盘id。
|
|
17190
|
+
:type DashboardId: str
|
|
17191
|
+
:param _Name: 仪表盘订阅名称。
|
|
17192
|
+
:type Name: str
|
|
17193
|
+
:param _Cron: 订阅时间cron表达式,格式为:{秒数} {分钟} {小时} {日期} {月份} {星期};(有效数据为:{分钟} {小时} {日期} {月份} {星期})。
|
|
17194
|
+
:type Cron: str
|
|
17195
|
+
:param _SubscribeData: 仪表盘订阅数据。
|
|
17196
|
+
:type SubscribeData: :class:`tencentcloud.cls.v20201016.models.DashboardSubscribeData`
|
|
17197
|
+
"""
|
|
17198
|
+
self._Id = None
|
|
17199
|
+
self._DashboardId = None
|
|
17200
|
+
self._Name = None
|
|
17201
|
+
self._Cron = None
|
|
17202
|
+
self._SubscribeData = None
|
|
17203
|
+
|
|
17204
|
+
@property
|
|
17205
|
+
def Id(self):
|
|
17206
|
+
return self._Id
|
|
17207
|
+
|
|
17208
|
+
@Id.setter
|
|
17209
|
+
def Id(self, Id):
|
|
17210
|
+
self._Id = Id
|
|
17211
|
+
|
|
17212
|
+
@property
|
|
17213
|
+
def DashboardId(self):
|
|
17214
|
+
return self._DashboardId
|
|
17215
|
+
|
|
17216
|
+
@DashboardId.setter
|
|
17217
|
+
def DashboardId(self, DashboardId):
|
|
17218
|
+
self._DashboardId = DashboardId
|
|
17219
|
+
|
|
17220
|
+
@property
|
|
17221
|
+
def Name(self):
|
|
17222
|
+
return self._Name
|
|
17223
|
+
|
|
17224
|
+
@Name.setter
|
|
17225
|
+
def Name(self, Name):
|
|
17226
|
+
self._Name = Name
|
|
17227
|
+
|
|
17228
|
+
@property
|
|
17229
|
+
def Cron(self):
|
|
17230
|
+
return self._Cron
|
|
17231
|
+
|
|
17232
|
+
@Cron.setter
|
|
17233
|
+
def Cron(self, Cron):
|
|
17234
|
+
self._Cron = Cron
|
|
17235
|
+
|
|
17236
|
+
@property
|
|
17237
|
+
def SubscribeData(self):
|
|
17238
|
+
return self._SubscribeData
|
|
17239
|
+
|
|
17240
|
+
@SubscribeData.setter
|
|
17241
|
+
def SubscribeData(self, SubscribeData):
|
|
17242
|
+
self._SubscribeData = SubscribeData
|
|
17243
|
+
|
|
17244
|
+
|
|
17245
|
+
def _deserialize(self, params):
|
|
17246
|
+
self._Id = params.get("Id")
|
|
17247
|
+
self._DashboardId = params.get("DashboardId")
|
|
17248
|
+
self._Name = params.get("Name")
|
|
17249
|
+
self._Cron = params.get("Cron")
|
|
17250
|
+
if params.get("SubscribeData") is not None:
|
|
17251
|
+
self._SubscribeData = DashboardSubscribeData()
|
|
17252
|
+
self._SubscribeData._deserialize(params.get("SubscribeData"))
|
|
17253
|
+
memeber_set = set(params.keys())
|
|
17254
|
+
for name, value in vars(self).items():
|
|
17255
|
+
property_name = name[1:]
|
|
17256
|
+
if property_name in memeber_set:
|
|
17257
|
+
memeber_set.remove(property_name)
|
|
17258
|
+
if len(memeber_set) > 0:
|
|
17259
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
17260
|
+
|
|
17261
|
+
|
|
17024
17262
|
|
|
17025
17263
|
class ModifyDashboardSubscribeResponse(AbstractModel):
|
|
17026
17264
|
"""ModifyDashboardSubscribe返回参数结构体
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1213
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1209
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|