tencentcloud-sdk-cls 3.0.886 → 3.0.887
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.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20201016/client.rb +1 -1
- data/lib/v20201016/models.rb +86 -12
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 0c247a2476e2041e333e9c9f5db28de53561b9ab
|
4
|
+
data.tar.gz: d423954e02d601801cacef891a83d023a5b74051
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f7581691497dcc550647ad58fa188fc6661ecb650f809131d872a3c6fd53aa9ddc7244cf604be3ec60e26bd8f29e865e7b9573635abd645e0ecb05a96922af3
|
7
|
+
data.tar.gz: b012ac66cc42f0cf14d53ec7289b7cfaa631b7442c06dee67dcf62a4a226a3a9d890843aa8bf5931193b34c3a6fdbdffa92b84458cb9786e27395d98a33e0f31
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.887
|
data/lib/v20201016/client.rb
CHANGED
@@ -1301,7 +1301,7 @@ module TencentCloud
|
|
1301
1301
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1302
1302
|
end
|
1303
1303
|
|
1304
|
-
#
|
1304
|
+
# 本接口用于获取仪表盘订阅列表,支持分页
|
1305
1305
|
|
1306
1306
|
# @param request: Request instance for DescribeDashboardSubscribes.
|
1307
1307
|
# @type request: :class:`Tencentcloud::cls::V20201016::DescribeDashboardSubscribesRequest`
|
data/lib/v20201016/models.rb
CHANGED
@@ -1319,24 +1319,27 @@ module TencentCloud
|
|
1319
1319
|
# @param VerifyCode: 验证码
|
1320
1320
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1321
1321
|
# @type VerifyCode: String
|
1322
|
-
# @param StartTime:
|
1322
|
+
# @param StartTime: 默认查询范围的开始时间点,支持绝对时间(13位Unix时间戳)或相对时间表达式
|
1323
1323
|
# @type StartTime: String
|
1324
|
-
# @param EndTime:
|
1324
|
+
# @param EndTime: 默认查询范围的结束时间点,支持绝对时间(13位Unix时间戳)或相对时间表达式。注意,结束时间点要大于开始时间点
|
1325
1325
|
# @type EndTime: String
|
1326
|
-
# @param NowTime:
|
1326
|
+
# @param NowTime: 仅当StartTime/EndTime为相对时间时使用,基于NowTime计算绝对时间,默认为创建时间
|
1327
1327
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1328
1328
|
# @type NowTime: Integer
|
1329
|
-
# @param Params:
|
1329
|
+
# @param Params: 默认的检索分析语句,仅当Type为2时使用
|
1330
1330
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1331
1331
|
# @type Params: Array
|
1332
|
-
# @param IsLockTimeRange:
|
1332
|
+
# @param IsLockTimeRange: 是否允许访问者自行修改检索分析时间范围。默认不锁定(false)
|
1333
1333
|
# @type IsLockTimeRange: Boolean
|
1334
|
-
# @param IsLockQuery:
|
1334
|
+
# @param IsLockQuery: 是否允许访问者自行修改日志检索语句。在检索页分享中表示检索语句锁定状态;在仪表盘中表示过滤变量锁定状态。默认不锁定(false)
|
1335
1335
|
# @type IsLockQuery: Boolean
|
1336
|
+
# @param IsSupportLogExport: 检索页分享是否允许访问者下载日志,默认不允许(false)
|
1337
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1338
|
+
# @type IsSupportLogExport: Boolean
|
1336
1339
|
|
1337
|
-
attr_accessor :Name, :Type, :DurationMilliseconds, :Resources, :Domain, :VerifyCode, :StartTime, :EndTime, :NowTime, :Params, :IsLockTimeRange, :IsLockQuery
|
1340
|
+
attr_accessor :Name, :Type, :DurationMilliseconds, :Resources, :Domain, :VerifyCode, :StartTime, :EndTime, :NowTime, :Params, :IsLockTimeRange, :IsLockQuery, :IsSupportLogExport
|
1338
1341
|
|
1339
|
-
def initialize(name=nil, type=nil, durationmilliseconds=nil, resources=nil, domain=nil, verifycode=nil, starttime=nil, endtime=nil, nowtime=nil, params=nil, islocktimerange=nil, islockquery=nil)
|
1342
|
+
def initialize(name=nil, type=nil, durationmilliseconds=nil, resources=nil, domain=nil, verifycode=nil, starttime=nil, endtime=nil, nowtime=nil, params=nil, islocktimerange=nil, islockquery=nil, issupportlogexport=nil)
|
1340
1343
|
@Name = name
|
1341
1344
|
@Type = type
|
1342
1345
|
@DurationMilliseconds = durationmilliseconds
|
@@ -1349,6 +1352,7 @@ module TencentCloud
|
|
1349
1352
|
@Params = params
|
1350
1353
|
@IsLockTimeRange = islocktimerange
|
1351
1354
|
@IsLockQuery = islockquery
|
1355
|
+
@IsSupportLogExport = issupportlogexport
|
1352
1356
|
end
|
1353
1357
|
|
1354
1358
|
def deserialize(params)
|
@@ -1371,6 +1375,7 @@ module TencentCloud
|
|
1371
1375
|
end
|
1372
1376
|
@IsLockTimeRange = params['IsLockTimeRange']
|
1373
1377
|
@IsLockQuery = params['IsLockQuery']
|
1378
|
+
@IsSupportLogExport = params['IsSupportLogExport']
|
1374
1379
|
end
|
1375
1380
|
end
|
1376
1381
|
|
@@ -2487,12 +2492,32 @@ module TencentCloud
|
|
2487
2492
|
|
2488
2493
|
# CreateDashboardSubscribe请求参数结构体
|
2489
2494
|
class CreateDashboardSubscribeRequest < TencentCloud::Common::AbstractModel
|
2495
|
+
# @param Name: 仪表盘订阅名称。
|
2496
|
+
# @type Name: String
|
2497
|
+
# @param DashboardId: 仪表盘id。
|
2498
|
+
# @type DashboardId: String
|
2499
|
+
# @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星期六】
|
2500
|
+
# @type Cron: String
|
2501
|
+
# @param SubscribeData: 仪表盘订阅数据。
|
2502
|
+
# @type SubscribeData: :class:`Tencentcloud::Cls.v20201016.models.DashboardSubscribeData`
|
2490
2503
|
|
2504
|
+
attr_accessor :Name, :DashboardId, :Cron, :SubscribeData
|
2491
2505
|
|
2492
|
-
def initialize()
|
2506
|
+
def initialize(name=nil, dashboardid=nil, cron=nil, subscribedata=nil)
|
2507
|
+
@Name = name
|
2508
|
+
@DashboardId = dashboardid
|
2509
|
+
@Cron = cron
|
2510
|
+
@SubscribeData = subscribedata
|
2493
2511
|
end
|
2494
2512
|
|
2495
2513
|
def deserialize(params)
|
2514
|
+
@Name = params['Name']
|
2515
|
+
@DashboardId = params['DashboardId']
|
2516
|
+
@Cron = params['Cron']
|
2517
|
+
unless params['SubscribeData'].nil?
|
2518
|
+
@SubscribeData = DashboardSubscribeData.new
|
2519
|
+
@SubscribeData.deserialize(params['SubscribeData'])
|
2520
|
+
end
|
2496
2521
|
end
|
2497
2522
|
end
|
2498
2523
|
|
@@ -3902,12 +3927,17 @@ module TencentCloud
|
|
3902
3927
|
|
3903
3928
|
# DeleteDashboardSubscribe请求参数结构体
|
3904
3929
|
class DeleteDashboardSubscribeRequest < TencentCloud::Common::AbstractModel
|
3930
|
+
# @param Id: 仪表盘订阅记录id。
|
3931
|
+
# @type Id: Integer
|
3905
3932
|
|
3933
|
+
attr_accessor :Id
|
3906
3934
|
|
3907
|
-
def initialize()
|
3935
|
+
def initialize(id=nil)
|
3936
|
+
@Id = id
|
3908
3937
|
end
|
3909
3938
|
|
3910
3939
|
def deserialize(params)
|
3940
|
+
@Id = params['Id']
|
3911
3941
|
end
|
3912
3942
|
end
|
3913
3943
|
|
@@ -4922,12 +4952,32 @@ module TencentCloud
|
|
4922
4952
|
|
4923
4953
|
# DescribeDashboardSubscribes请求参数结构体
|
4924
4954
|
class DescribeDashboardSubscribesRequest < TencentCloud::Common::AbstractModel
|
4955
|
+
# @param Filters: <br><li/> dashboardId:按照【仪表盘id】进行过滤。类型:String必选:否<br><br><li/> 每次请求的Filters的上限为10,Filter.Values的上限为100。
|
4956
|
+
# @type Filters: Array
|
4957
|
+
# @param Offset: 分页的偏移量,默认值为0。
|
4958
|
+
# @type Offset: Integer
|
4959
|
+
# @param Limit: 分页单页限制数目,默认值为20,最大值100。
|
4960
|
+
# @type Limit: Integer
|
4925
4961
|
|
4962
|
+
attr_accessor :Filters, :Offset, :Limit
|
4926
4963
|
|
4927
|
-
def initialize()
|
4964
|
+
def initialize(filters=nil, offset=nil, limit=nil)
|
4965
|
+
@Filters = filters
|
4966
|
+
@Offset = offset
|
4967
|
+
@Limit = limit
|
4928
4968
|
end
|
4929
4969
|
|
4930
4970
|
def deserialize(params)
|
4971
|
+
unless params['Filters'].nil?
|
4972
|
+
@Filters = []
|
4973
|
+
params['Filters'].each do |i|
|
4974
|
+
filter_tmp = Filter.new
|
4975
|
+
filter_tmp.deserialize(i)
|
4976
|
+
@Filters << filter_tmp
|
4977
|
+
end
|
4978
|
+
end
|
4979
|
+
@Offset = params['Offset']
|
4980
|
+
@Limit = params['Limit']
|
4931
4981
|
end
|
4932
4982
|
end
|
4933
4983
|
|
@@ -8272,12 +8322,36 @@ module TencentCloud
|
|
8272
8322
|
|
8273
8323
|
# ModifyDashboardSubscribe请求参数结构体
|
8274
8324
|
class ModifyDashboardSubscribeRequest < TencentCloud::Common::AbstractModel
|
8325
|
+
# @param Id: 仪表盘订阅id。
|
8326
|
+
# @type Id: Integer
|
8327
|
+
# @param DashboardId: 仪表盘id。
|
8328
|
+
# @type DashboardId: String
|
8329
|
+
# @param Name: 仪表盘订阅名称。
|
8330
|
+
# @type Name: String
|
8331
|
+
# @param Cron: 订阅时间cron表达式,格式为:{秒数} {分钟} {小时} {日期} {月份} {星期};(有效数据为:{分钟} {小时} {日期} {月份} {星期})。
|
8332
|
+
# @type Cron: String
|
8333
|
+
# @param SubscribeData: 仪表盘订阅数据。
|
8334
|
+
# @type SubscribeData: :class:`Tencentcloud::Cls.v20201016.models.DashboardSubscribeData`
|
8275
8335
|
|
8336
|
+
attr_accessor :Id, :DashboardId, :Name, :Cron, :SubscribeData
|
8276
8337
|
|
8277
|
-
def initialize()
|
8338
|
+
def initialize(id=nil, dashboardid=nil, name=nil, cron=nil, subscribedata=nil)
|
8339
|
+
@Id = id
|
8340
|
+
@DashboardId = dashboardid
|
8341
|
+
@Name = name
|
8342
|
+
@Cron = cron
|
8343
|
+
@SubscribeData = subscribedata
|
8278
8344
|
end
|
8279
8345
|
|
8280
8346
|
def deserialize(params)
|
8347
|
+
@Id = params['Id']
|
8348
|
+
@DashboardId = params['DashboardId']
|
8349
|
+
@Name = params['Name']
|
8350
|
+
@Cron = params['Cron']
|
8351
|
+
unless params['SubscribeData'].nil?
|
8352
|
+
@SubscribeData = DashboardSubscribeData.new
|
8353
|
+
@SubscribeData.deserialize(params['SubscribeData'])
|
8354
|
+
end
|
8281
8355
|
end
|
8282
8356
|
end
|
8283
8357
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-cls
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.887
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2024-08-
|
11
|
+
date: 2024-08-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|