tencentcloud-sdk-python-cls 3.0.1208__tar.gz → 3.0.1221__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.1208 → tencentcloud-sdk-python-cls-3.0.1221}/PKG-INFO +1 -1
- {tencentcloud-sdk-python-cls-3.0.1208 → tencentcloud-sdk-python-cls-3.0.1221}/setup.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1208 → tencentcloud-sdk-python-cls-3.0.1221}/tencentcloud/__init__.py +1 -1
- {tencentcloud-sdk-python-cls-3.0.1208 → tencentcloud-sdk-python-cls-3.0.1221}/tencentcloud/cls/v20201016/models.py +290 -19
- {tencentcloud-sdk-python-cls-3.0.1208 → tencentcloud-sdk-python-cls-3.0.1221}/tencentcloud_sdk_python_cls.egg-info/PKG-INFO +1 -1
- tencentcloud-sdk-python-cls-3.0.1221/tencentcloud_sdk_python_cls.egg-info/requires.txt +1 -0
- tencentcloud-sdk-python-cls-3.0.1208/tencentcloud_sdk_python_cls.egg-info/requires.txt +0 -1
- {tencentcloud-sdk-python-cls-3.0.1208 → tencentcloud-sdk-python-cls-3.0.1221}/README.rst +0 -0
- {tencentcloud-sdk-python-cls-3.0.1208 → tencentcloud-sdk-python-cls-3.0.1221}/setup.cfg +0 -0
- {tencentcloud-sdk-python-cls-3.0.1208 → tencentcloud-sdk-python-cls-3.0.1221}/tencentcloud/cls/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1208 → tencentcloud-sdk-python-cls-3.0.1221}/tencentcloud/cls/v20201016/__init__.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1208 → tencentcloud-sdk-python-cls-3.0.1221}/tencentcloud/cls/v20201016/cls_client.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1208 → tencentcloud-sdk-python-cls-3.0.1221}/tencentcloud/cls/v20201016/errorcodes.py +0 -0
- {tencentcloud-sdk-python-cls-3.0.1208 → tencentcloud-sdk-python-cls-3.0.1221}/tencentcloud_sdk_python_cls.egg-info/SOURCES.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1208 → tencentcloud-sdk-python-cls-3.0.1221}/tencentcloud_sdk_python_cls.egg-info/dependency_links.txt +0 -0
- {tencentcloud-sdk-python-cls-3.0.1208 → tencentcloud-sdk-python-cls-3.0.1221}/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.1221"],
|
|
12
12
|
version=tencentcloud.__version__,
|
|
13
13
|
description='Tencent Cloud Cls SDK for Python',
|
|
14
14
|
long_description=open('README.rst').read(),
|
|
@@ -2746,7 +2746,7 @@ class ConsoleSharingConfig(AbstractModel):
|
|
|
2746
2746
|
:type Type: int
|
|
2747
2747
|
:param _DurationMilliseconds: 分享链接有效期,单位:毫秒,最长支持30天
|
|
2748
2748
|
:type DurationMilliseconds: int
|
|
2749
|
-
:param _Resources:
|
|
2749
|
+
:param _Resources: 允许访问的资源列表,目前仅支持一个Resource
|
|
2750
2750
|
:type Resources: list of str
|
|
2751
2751
|
:param _Domain: 分享链接域名,可选范围
|
|
2752
2752
|
- 公网匿名分享:填写clsshare.com
|
|
@@ -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返回参数结构体
|
|
@@ -5307,6 +5385,8 @@ class CreateDataTransformRequest(AbstractModel):
|
|
|
5307
5385
|
:type EnableFlag: int
|
|
5308
5386
|
:param _PreviewLogStatistics: 用于预览加工结果的测试数据
|
|
5309
5387
|
:type PreviewLogStatistics: list of PreviewLogStatistic
|
|
5388
|
+
:param _DataTransformType: 数据加工类型。0:标准加工任务; 1:前置加工任务。前置加工任务将采集的日志处理完成后,再写入日志主题。
|
|
5389
|
+
:type DataTransformType: int
|
|
5310
5390
|
"""
|
|
5311
5391
|
self._FuncType = None
|
|
5312
5392
|
self._SrcTopicId = None
|
|
@@ -5316,6 +5396,7 @@ class CreateDataTransformRequest(AbstractModel):
|
|
|
5316
5396
|
self._DstResources = None
|
|
5317
5397
|
self._EnableFlag = None
|
|
5318
5398
|
self._PreviewLogStatistics = None
|
|
5399
|
+
self._DataTransformType = None
|
|
5319
5400
|
|
|
5320
5401
|
@property
|
|
5321
5402
|
def FuncType(self):
|
|
@@ -5381,6 +5462,14 @@ class CreateDataTransformRequest(AbstractModel):
|
|
|
5381
5462
|
def PreviewLogStatistics(self, PreviewLogStatistics):
|
|
5382
5463
|
self._PreviewLogStatistics = PreviewLogStatistics
|
|
5383
5464
|
|
|
5465
|
+
@property
|
|
5466
|
+
def DataTransformType(self):
|
|
5467
|
+
return self._DataTransformType
|
|
5468
|
+
|
|
5469
|
+
@DataTransformType.setter
|
|
5470
|
+
def DataTransformType(self, DataTransformType):
|
|
5471
|
+
self._DataTransformType = DataTransformType
|
|
5472
|
+
|
|
5384
5473
|
|
|
5385
5474
|
def _deserialize(self, params):
|
|
5386
5475
|
self._FuncType = params.get("FuncType")
|
|
@@ -5401,6 +5490,7 @@ class CreateDataTransformRequest(AbstractModel):
|
|
|
5401
5490
|
obj = PreviewLogStatistic()
|
|
5402
5491
|
obj._deserialize(item)
|
|
5403
5492
|
self._PreviewLogStatistics.append(obj)
|
|
5493
|
+
self._DataTransformType = params.get("DataTransformType")
|
|
5404
5494
|
memeber_set = set(params.keys())
|
|
5405
5495
|
for name, value in vars(self).items():
|
|
5406
5496
|
property_name = name[1:]
|
|
@@ -8275,6 +8365,33 @@ class DeleteDashboardSubscribeRequest(AbstractModel):
|
|
|
8275
8365
|
|
|
8276
8366
|
"""
|
|
8277
8367
|
|
|
8368
|
+
def __init__(self):
|
|
8369
|
+
r"""
|
|
8370
|
+
:param _Id: 仪表盘订阅记录id。
|
|
8371
|
+
:type Id: int
|
|
8372
|
+
"""
|
|
8373
|
+
self._Id = None
|
|
8374
|
+
|
|
8375
|
+
@property
|
|
8376
|
+
def Id(self):
|
|
8377
|
+
return self._Id
|
|
8378
|
+
|
|
8379
|
+
@Id.setter
|
|
8380
|
+
def Id(self, Id):
|
|
8381
|
+
self._Id = Id
|
|
8382
|
+
|
|
8383
|
+
|
|
8384
|
+
def _deserialize(self, params):
|
|
8385
|
+
self._Id = params.get("Id")
|
|
8386
|
+
memeber_set = set(params.keys())
|
|
8387
|
+
for name, value in vars(self).items():
|
|
8388
|
+
property_name = name[1:]
|
|
8389
|
+
if property_name in memeber_set:
|
|
8390
|
+
memeber_set.remove(property_name)
|
|
8391
|
+
if len(memeber_set) > 0:
|
|
8392
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
8393
|
+
|
|
8394
|
+
|
|
8278
8395
|
|
|
8279
8396
|
class DeleteDashboardSubscribeResponse(AbstractModel):
|
|
8280
8397
|
"""DeleteDashboardSubscribe返回参数结构体
|
|
@@ -10086,6 +10203,62 @@ class DescribeDashboardSubscribesRequest(AbstractModel):
|
|
|
10086
10203
|
|
|
10087
10204
|
"""
|
|
10088
10205
|
|
|
10206
|
+
def __init__(self):
|
|
10207
|
+
r"""
|
|
10208
|
+
:param _Filters: <br><li/> dashboardId:按照【仪表盘id】进行过滤。类型:String必选:否<br><br><li/> 每次请求的Filters的上限为10,Filter.Values的上限为100。
|
|
10209
|
+
:type Filters: list of Filter
|
|
10210
|
+
:param _Offset: 分页的偏移量,默认值为0。
|
|
10211
|
+
:type Offset: int
|
|
10212
|
+
:param _Limit: 分页单页限制数目,默认值为20,最大值100。
|
|
10213
|
+
:type Limit: int
|
|
10214
|
+
"""
|
|
10215
|
+
self._Filters = None
|
|
10216
|
+
self._Offset = None
|
|
10217
|
+
self._Limit = None
|
|
10218
|
+
|
|
10219
|
+
@property
|
|
10220
|
+
def Filters(self):
|
|
10221
|
+
return self._Filters
|
|
10222
|
+
|
|
10223
|
+
@Filters.setter
|
|
10224
|
+
def Filters(self, Filters):
|
|
10225
|
+
self._Filters = Filters
|
|
10226
|
+
|
|
10227
|
+
@property
|
|
10228
|
+
def Offset(self):
|
|
10229
|
+
return self._Offset
|
|
10230
|
+
|
|
10231
|
+
@Offset.setter
|
|
10232
|
+
def Offset(self, Offset):
|
|
10233
|
+
self._Offset = Offset
|
|
10234
|
+
|
|
10235
|
+
@property
|
|
10236
|
+
def Limit(self):
|
|
10237
|
+
return self._Limit
|
|
10238
|
+
|
|
10239
|
+
@Limit.setter
|
|
10240
|
+
def Limit(self, Limit):
|
|
10241
|
+
self._Limit = Limit
|
|
10242
|
+
|
|
10243
|
+
|
|
10244
|
+
def _deserialize(self, params):
|
|
10245
|
+
if params.get("Filters") is not None:
|
|
10246
|
+
self._Filters = []
|
|
10247
|
+
for item in params.get("Filters"):
|
|
10248
|
+
obj = Filter()
|
|
10249
|
+
obj._deserialize(item)
|
|
10250
|
+
self._Filters.append(obj)
|
|
10251
|
+
self._Offset = params.get("Offset")
|
|
10252
|
+
self._Limit = params.get("Limit")
|
|
10253
|
+
memeber_set = set(params.keys())
|
|
10254
|
+
for name, value in vars(self).items():
|
|
10255
|
+
property_name = name[1:]
|
|
10256
|
+
if property_name in memeber_set:
|
|
10257
|
+
memeber_set.remove(property_name)
|
|
10258
|
+
if len(memeber_set) > 0:
|
|
10259
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
10260
|
+
|
|
10261
|
+
|
|
10089
10262
|
|
|
10090
10263
|
class DescribeDashboardSubscribesResponse(AbstractModel):
|
|
10091
10264
|
"""DescribeDashboardSubscribes返回参数结构体
|
|
@@ -17021,6 +17194,83 @@ class ModifyDashboardSubscribeRequest(AbstractModel):
|
|
|
17021
17194
|
|
|
17022
17195
|
"""
|
|
17023
17196
|
|
|
17197
|
+
def __init__(self):
|
|
17198
|
+
r"""
|
|
17199
|
+
:param _Id: 仪表盘订阅id。
|
|
17200
|
+
:type Id: int
|
|
17201
|
+
:param _DashboardId: 仪表盘id。
|
|
17202
|
+
:type DashboardId: str
|
|
17203
|
+
:param _Name: 仪表盘订阅名称。
|
|
17204
|
+
:type Name: str
|
|
17205
|
+
:param _Cron: 订阅时间cron表达式,格式为:{秒数} {分钟} {小时} {日期} {月份} {星期};(有效数据为:{分钟} {小时} {日期} {月份} {星期})。
|
|
17206
|
+
:type Cron: str
|
|
17207
|
+
:param _SubscribeData: 仪表盘订阅数据。
|
|
17208
|
+
:type SubscribeData: :class:`tencentcloud.cls.v20201016.models.DashboardSubscribeData`
|
|
17209
|
+
"""
|
|
17210
|
+
self._Id = None
|
|
17211
|
+
self._DashboardId = None
|
|
17212
|
+
self._Name = None
|
|
17213
|
+
self._Cron = None
|
|
17214
|
+
self._SubscribeData = None
|
|
17215
|
+
|
|
17216
|
+
@property
|
|
17217
|
+
def Id(self):
|
|
17218
|
+
return self._Id
|
|
17219
|
+
|
|
17220
|
+
@Id.setter
|
|
17221
|
+
def Id(self, Id):
|
|
17222
|
+
self._Id = Id
|
|
17223
|
+
|
|
17224
|
+
@property
|
|
17225
|
+
def DashboardId(self):
|
|
17226
|
+
return self._DashboardId
|
|
17227
|
+
|
|
17228
|
+
@DashboardId.setter
|
|
17229
|
+
def DashboardId(self, DashboardId):
|
|
17230
|
+
self._DashboardId = DashboardId
|
|
17231
|
+
|
|
17232
|
+
@property
|
|
17233
|
+
def Name(self):
|
|
17234
|
+
return self._Name
|
|
17235
|
+
|
|
17236
|
+
@Name.setter
|
|
17237
|
+
def Name(self, Name):
|
|
17238
|
+
self._Name = Name
|
|
17239
|
+
|
|
17240
|
+
@property
|
|
17241
|
+
def Cron(self):
|
|
17242
|
+
return self._Cron
|
|
17243
|
+
|
|
17244
|
+
@Cron.setter
|
|
17245
|
+
def Cron(self, Cron):
|
|
17246
|
+
self._Cron = Cron
|
|
17247
|
+
|
|
17248
|
+
@property
|
|
17249
|
+
def SubscribeData(self):
|
|
17250
|
+
return self._SubscribeData
|
|
17251
|
+
|
|
17252
|
+
@SubscribeData.setter
|
|
17253
|
+
def SubscribeData(self, SubscribeData):
|
|
17254
|
+
self._SubscribeData = SubscribeData
|
|
17255
|
+
|
|
17256
|
+
|
|
17257
|
+
def _deserialize(self, params):
|
|
17258
|
+
self._Id = params.get("Id")
|
|
17259
|
+
self._DashboardId = params.get("DashboardId")
|
|
17260
|
+
self._Name = params.get("Name")
|
|
17261
|
+
self._Cron = params.get("Cron")
|
|
17262
|
+
if params.get("SubscribeData") is not None:
|
|
17263
|
+
self._SubscribeData = DashboardSubscribeData()
|
|
17264
|
+
self._SubscribeData._deserialize(params.get("SubscribeData"))
|
|
17265
|
+
memeber_set = set(params.keys())
|
|
17266
|
+
for name, value in vars(self).items():
|
|
17267
|
+
property_name = name[1:]
|
|
17268
|
+
if property_name in memeber_set:
|
|
17269
|
+
memeber_set.remove(property_name)
|
|
17270
|
+
if len(memeber_set) > 0:
|
|
17271
|
+
warnings.warn("%s fileds are useless." % ",".join(memeber_set))
|
|
17272
|
+
|
|
17273
|
+
|
|
17024
17274
|
|
|
17025
17275
|
class ModifyDashboardSubscribeResponse(AbstractModel):
|
|
17026
17276
|
"""ModifyDashboardSubscribe返回参数结构体
|
|
@@ -18439,10 +18689,11 @@ class MonitorTime(AbstractModel):
|
|
|
18439
18689
|
|
|
18440
18690
|
def __init__(self):
|
|
18441
18691
|
r"""
|
|
18442
|
-
:param _Type: 执行周期, 可选值:`Period`、`Fixed`。
|
|
18692
|
+
:param _Type: 执行周期, 可选值:`Period`、`Fixed`、`Cron`。
|
|
18443
18693
|
|
|
18444
18694
|
- Period:固定频率
|
|
18445
18695
|
- Fixed:固定时间
|
|
18696
|
+
- Cron:Cron表达式
|
|
18446
18697
|
:type Type: str
|
|
18447
18698
|
:param _Time: 执行的周期,或者定制执行的时间节点。单位为分钟,取值范围为1~1440。
|
|
18448
18699
|
当type为`Period`,`Fixed`时,time字段生效。
|
|
@@ -20693,16 +20944,26 @@ class SearchLogRequest(AbstractModel):
|
|
|
20693
20944
|
- 检索单个日志主题时请使用TopicId。
|
|
20694
20945
|
- TopicId 和 Topics 不能同时使用,在一次请求中有且只能选择一个。
|
|
20695
20946
|
:type Topics: list of MultiTopicSearchInformation
|
|
20696
|
-
:param
|
|
20947
|
+
:param _Sort: 原始日志是否按时间排序返回;可选值:asc(升序)、desc(降序),默认为 desc
|
|
20948
|
+
注意:
|
|
20949
|
+
* 仅当检索分析语句(Query)不包含SQL时有效
|
|
20950
|
+
* SQL结果排序方式参考<a href="https://cloud.tencent.com/document/product/614/58978" target="_blank">SQL ORDER BY语法</a>
|
|
20951
|
+
:type Sort: str
|
|
20952
|
+
:param _Limit: 表示单次查询返回的原始日志条数,默认为100,最大值为1000。
|
|
20697
20953
|
注意:
|
|
20698
20954
|
* 仅当检索分析语句(Query)不包含SQL时有效
|
|
20699
20955
|
* SQL结果条数指定方式参考<a href="https://cloud.tencent.com/document/product/614/58977" target="_blank">SQL LIMIT语法</a>
|
|
20956
|
+
|
|
20957
|
+
可通过两种方式获取后续更多日志:
|
|
20958
|
+
* Context:透传上次接口返回的Context值,获取后续更多日志,总计最多可获取1万条原始日志
|
|
20959
|
+
* Offset:偏移量,表示从第几行开始返回原始日志,无日志条数限制
|
|
20700
20960
|
:type Limit: int
|
|
20701
|
-
:param
|
|
20961
|
+
:param _Offset: 查询原始日志的偏移量,表示从第几行开始返回原始日志,默认为0。
|
|
20702
20962
|
注意:
|
|
20703
20963
|
* 仅当检索分析语句(Query)不包含SQL时有效
|
|
20704
|
-
*
|
|
20705
|
-
|
|
20964
|
+
* 不能与Context参数同时使用
|
|
20965
|
+
* 仅适用于单日志主题检索
|
|
20966
|
+
:type Offset: int
|
|
20706
20967
|
:param _Context: 透传上次接口返回的Context值,可获取后续更多日志,总计最多可获取1万条原始日志,过期时间1小时。
|
|
20707
20968
|
注意:
|
|
20708
20969
|
* 透传该参数时,请勿修改除该参数外的其它参数
|
|
@@ -20726,8 +20987,9 @@ class SearchLogRequest(AbstractModel):
|
|
|
20726
20987
|
self._SyntaxRule = None
|
|
20727
20988
|
self._TopicId = None
|
|
20728
20989
|
self._Topics = None
|
|
20729
|
-
self._Limit = None
|
|
20730
20990
|
self._Sort = None
|
|
20991
|
+
self._Limit = None
|
|
20992
|
+
self._Offset = None
|
|
20731
20993
|
self._Context = None
|
|
20732
20994
|
self._SamplingRate = None
|
|
20733
20995
|
self._UseNewAnalysis = None
|
|
@@ -20780,6 +21042,14 @@ class SearchLogRequest(AbstractModel):
|
|
|
20780
21042
|
def Topics(self, Topics):
|
|
20781
21043
|
self._Topics = Topics
|
|
20782
21044
|
|
|
21045
|
+
@property
|
|
21046
|
+
def Sort(self):
|
|
21047
|
+
return self._Sort
|
|
21048
|
+
|
|
21049
|
+
@Sort.setter
|
|
21050
|
+
def Sort(self, Sort):
|
|
21051
|
+
self._Sort = Sort
|
|
21052
|
+
|
|
20783
21053
|
@property
|
|
20784
21054
|
def Limit(self):
|
|
20785
21055
|
return self._Limit
|
|
@@ -20789,12 +21059,12 @@ class SearchLogRequest(AbstractModel):
|
|
|
20789
21059
|
self._Limit = Limit
|
|
20790
21060
|
|
|
20791
21061
|
@property
|
|
20792
|
-
def
|
|
20793
|
-
return self.
|
|
21062
|
+
def Offset(self):
|
|
21063
|
+
return self._Offset
|
|
20794
21064
|
|
|
20795
|
-
@
|
|
20796
|
-
def
|
|
20797
|
-
self.
|
|
21065
|
+
@Offset.setter
|
|
21066
|
+
def Offset(self, Offset):
|
|
21067
|
+
self._Offset = Offset
|
|
20798
21068
|
|
|
20799
21069
|
@property
|
|
20800
21070
|
def Context(self):
|
|
@@ -20833,8 +21103,9 @@ class SearchLogRequest(AbstractModel):
|
|
|
20833
21103
|
obj = MultiTopicSearchInformation()
|
|
20834
21104
|
obj._deserialize(item)
|
|
20835
21105
|
self._Topics.append(obj)
|
|
20836
|
-
self._Limit = params.get("Limit")
|
|
20837
21106
|
self._Sort = params.get("Sort")
|
|
21107
|
+
self._Limit = params.get("Limit")
|
|
21108
|
+
self._Offset = params.get("Offset")
|
|
20838
21109
|
self._Context = params.get("Context")
|
|
20839
21110
|
self._SamplingRate = params.get("SamplingRate")
|
|
20840
21111
|
self._UseNewAnalysis = params.get("UseNewAnalysis")
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tencentcloud-sdk-python-common==3.0.1221
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
tencentcloud-sdk-python-common==3.0.1208
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|