tencentcloud-sdk-cls 3.0.812 → 3.0.814
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 +120 -0
- data/lib/v20201016/models.rb +289 -11
- 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: b812e9c169a9f595fd41f63b0e2c42a23b5eadf7
|
4
|
+
data.tar.gz: 8755146daa243894c85947ffa10b0d8b0831104b
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c2b9eab72298370741829d078c09b776edba1091eb478d7750bba3bf325b637b34009ab588e2f07149c1e6e8a91db65a65ef936523e29ff2121cd570350b4629
|
7
|
+
data.tar.gz: 3385873dbf586e492d815b528c9fd2c11b330be3e3b7bb1e9d7bac0d4777aa7a1c865f24efef8b29ea6e5a6130cf74a9df0aec0bdde68ffb3087160c61f1b660
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.814
|
data/lib/v20201016/client.rb
CHANGED
@@ -317,6 +317,30 @@ module TencentCloud
|
|
317
317
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
318
318
|
end
|
319
319
|
|
320
|
+
# 此接口用于创建仪表盘订阅
|
321
|
+
|
322
|
+
# @param request: Request instance for CreateDashboardSubscribe.
|
323
|
+
# @type request: :class:`Tencentcloud::cls::V20201016::CreateDashboardSubscribeRequest`
|
324
|
+
# @rtype: :class:`Tencentcloud::cls::V20201016::CreateDashboardSubscribeResponse`
|
325
|
+
def CreateDashboardSubscribe(request)
|
326
|
+
body = send_request('CreateDashboardSubscribe', request.serialize)
|
327
|
+
response = JSON.parse(body)
|
328
|
+
if response['Response'].key?('Error') == false
|
329
|
+
model = CreateDashboardSubscribeResponse.new
|
330
|
+
model.deserialize(response['Response'])
|
331
|
+
model
|
332
|
+
else
|
333
|
+
code = response['Response']['Error']['Code']
|
334
|
+
message = response['Response']['Error']['Message']
|
335
|
+
reqid = response['Response']['RequestId']
|
336
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
337
|
+
end
|
338
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
339
|
+
raise e
|
340
|
+
rescue StandardError => e
|
341
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
342
|
+
end
|
343
|
+
|
320
344
|
# 本接口用于创建数据加工任务。
|
321
345
|
|
322
346
|
# @param request: Request instance for CreateDataTransform.
|
@@ -725,6 +749,30 @@ module TencentCloud
|
|
725
749
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
726
750
|
end
|
727
751
|
|
752
|
+
# 此接口用于删除仪表盘订阅
|
753
|
+
|
754
|
+
# @param request: Request instance for DeleteDashboardSubscribe.
|
755
|
+
# @type request: :class:`Tencentcloud::cls::V20201016::DeleteDashboardSubscribeRequest`
|
756
|
+
# @rtype: :class:`Tencentcloud::cls::V20201016::DeleteDashboardSubscribeResponse`
|
757
|
+
def DeleteDashboardSubscribe(request)
|
758
|
+
body = send_request('DeleteDashboardSubscribe', request.serialize)
|
759
|
+
response = JSON.parse(body)
|
760
|
+
if response['Response'].key?('Error') == false
|
761
|
+
model = DeleteDashboardSubscribeResponse.new
|
762
|
+
model.deserialize(response['Response'])
|
763
|
+
model
|
764
|
+
else
|
765
|
+
code = response['Response']['Error']['Code']
|
766
|
+
message = response['Response']['Error']['Message']
|
767
|
+
reqid = response['Response']['RequestId']
|
768
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
769
|
+
end
|
770
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
771
|
+
raise e
|
772
|
+
rescue StandardError => e
|
773
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
774
|
+
end
|
775
|
+
|
728
776
|
# 本接口用于删除数据加工任务
|
729
777
|
|
730
778
|
# @param request: Request instance for DeleteDataTransform.
|
@@ -1181,6 +1229,30 @@ module TencentCloud
|
|
1181
1229
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1182
1230
|
end
|
1183
1231
|
|
1232
|
+
# 本接口用于获取仪表盘订阅列表,支持分页
|
1233
|
+
|
1234
|
+
# @param request: Request instance for DescribeDashboardSubscribes.
|
1235
|
+
# @type request: :class:`Tencentcloud::cls::V20201016::DescribeDashboardSubscribesRequest`
|
1236
|
+
# @rtype: :class:`Tencentcloud::cls::V20201016::DescribeDashboardSubscribesResponse`
|
1237
|
+
def DescribeDashboardSubscribes(request)
|
1238
|
+
body = send_request('DescribeDashboardSubscribes', request.serialize)
|
1239
|
+
response = JSON.parse(body)
|
1240
|
+
if response['Response'].key?('Error') == false
|
1241
|
+
model = DescribeDashboardSubscribesResponse.new
|
1242
|
+
model.deserialize(response['Response'])
|
1243
|
+
model
|
1244
|
+
else
|
1245
|
+
code = response['Response']['Error']['Code']
|
1246
|
+
message = response['Response']['Error']['Message']
|
1247
|
+
reqid = response['Response']['RequestId']
|
1248
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1249
|
+
end
|
1250
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1251
|
+
raise e
|
1252
|
+
rescue StandardError => e
|
1253
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1254
|
+
end
|
1255
|
+
|
1184
1256
|
# 本接口用于获取仪表盘
|
1185
1257
|
|
1186
1258
|
# @param request: Request instance for DescribeDashboards.
|
@@ -1806,6 +1878,30 @@ module TencentCloud
|
|
1806
1878
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1807
1879
|
end
|
1808
1880
|
|
1881
|
+
# 此接口用于修改仪表盘订阅
|
1882
|
+
|
1883
|
+
# @param request: Request instance for ModifyDashboardSubscribe.
|
1884
|
+
# @type request: :class:`Tencentcloud::cls::V20201016::ModifyDashboardSubscribeRequest`
|
1885
|
+
# @rtype: :class:`Tencentcloud::cls::V20201016::ModifyDashboardSubscribeResponse`
|
1886
|
+
def ModifyDashboardSubscribe(request)
|
1887
|
+
body = send_request('ModifyDashboardSubscribe', request.serialize)
|
1888
|
+
response = JSON.parse(body)
|
1889
|
+
if response['Response'].key?('Error') == false
|
1890
|
+
model = ModifyDashboardSubscribeResponse.new
|
1891
|
+
model.deserialize(response['Response'])
|
1892
|
+
model
|
1893
|
+
else
|
1894
|
+
code = response['Response']['Error']['Code']
|
1895
|
+
message = response['Response']['Error']['Message']
|
1896
|
+
reqid = response['Response']['RequestId']
|
1897
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
1898
|
+
end
|
1899
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
1900
|
+
raise e
|
1901
|
+
rescue StandardError => e
|
1902
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
1903
|
+
end
|
1904
|
+
|
1809
1905
|
# 本接口用于修改数据加工任务
|
1810
1906
|
|
1811
1907
|
# @param request: Request instance for ModifyDataTransform.
|
@@ -2166,6 +2262,30 @@ module TencentCloud
|
|
2166
2262
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2167
2263
|
end
|
2168
2264
|
|
2265
|
+
# 此接口用于预览仪表盘订阅
|
2266
|
+
|
2267
|
+
# @param request: Request instance for SearchDashboardSubscribe.
|
2268
|
+
# @type request: :class:`Tencentcloud::cls::V20201016::SearchDashboardSubscribeRequest`
|
2269
|
+
# @rtype: :class:`Tencentcloud::cls::V20201016::SearchDashboardSubscribeResponse`
|
2270
|
+
def SearchDashboardSubscribe(request)
|
2271
|
+
body = send_request('SearchDashboardSubscribe', request.serialize)
|
2272
|
+
response = JSON.parse(body)
|
2273
|
+
if response['Response'].key?('Error') == false
|
2274
|
+
model = SearchDashboardSubscribeResponse.new
|
2275
|
+
model.deserialize(response['Response'])
|
2276
|
+
model
|
2277
|
+
else
|
2278
|
+
code = response['Response']['Error']['Code']
|
2279
|
+
message = response['Response']['Error']['Message']
|
2280
|
+
reqid = response['Response']['RequestId']
|
2281
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
2282
|
+
end
|
2283
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
2284
|
+
raise e
|
2285
|
+
rescue StandardError => e
|
2286
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
2287
|
+
end
|
2288
|
+
|
2169
2289
|
# 本接口用于检索分析日志,使用该接口时请注意如下事项:
|
2170
2290
|
# 1. 该接口除受默认接口请求频率限制外,针对单个日志主题,查询并发数不能超过15。
|
2171
2291
|
# 2. 检索语法建议使用CQL语法规则,请使用SyntaxRule参数,将值设置为1。
|
data/lib/v20201016/models.rb
CHANGED
@@ -2257,6 +2257,33 @@ module TencentCloud
|
|
2257
2257
|
end
|
2258
2258
|
end
|
2259
2259
|
|
2260
|
+
# CreateDashboardSubscribe请求参数结构体
|
2261
|
+
class CreateDashboardSubscribeRequest < TencentCloud::Common::AbstractModel
|
2262
|
+
|
2263
|
+
|
2264
|
+
def initialize()
|
2265
|
+
end
|
2266
|
+
|
2267
|
+
def deserialize(params)
|
2268
|
+
end
|
2269
|
+
end
|
2270
|
+
|
2271
|
+
# CreateDashboardSubscribe返回参数结构体
|
2272
|
+
class CreateDashboardSubscribeResponse < TencentCloud::Common::AbstractModel
|
2273
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
2274
|
+
# @type RequestId: String
|
2275
|
+
|
2276
|
+
attr_accessor :RequestId
|
2277
|
+
|
2278
|
+
def initialize(requestid=nil)
|
2279
|
+
@RequestId = requestid
|
2280
|
+
end
|
2281
|
+
|
2282
|
+
def deserialize(params)
|
2283
|
+
@RequestId = params['RequestId']
|
2284
|
+
end
|
2285
|
+
end
|
2286
|
+
|
2260
2287
|
# CreateDataTransform请求参数结构体
|
2261
2288
|
class CreateDataTransformRequest < TencentCloud::Common::AbstractModel
|
2262
2289
|
# @param FuncType: 任务类型. 1: 指定主题;2:动态创建。详情请参考[创建加工任务文档](https://cloud.tencent.com/document/product/614/63940)。
|
@@ -2265,7 +2292,7 @@ module TencentCloud
|
|
2265
2292
|
# @type SrcTopicId: String
|
2266
2293
|
# @param Name: 加工任务名称
|
2267
2294
|
# @type Name: String
|
2268
|
-
# @param EtlContent:
|
2295
|
+
# @param EtlContent: 加工语句。[创建加工任务](https://cloud.tencent.com/document/product/614/63940) [函数总览](https://cloud.tencent.com/document/product/614/70395)
|
2269
2296
|
# @type EtlContent: String
|
2270
2297
|
# @param TaskType: 加工类型。
|
2271
2298
|
# 1:使用源日志主题中的随机数据,进行加工预览;2:使用用户自定义测试数据,进行加工预览;3:创建真实加工任务。
|
@@ -2643,19 +2670,19 @@ module TencentCloud
|
|
2643
2670
|
class CreateMachineGroupRequest < TencentCloud::Common::AbstractModel
|
2644
2671
|
# @param GroupName: 机器组名字,不能重复
|
2645
2672
|
# @type GroupName: String
|
2646
|
-
# @param MachineGroupType:
|
2673
|
+
# @param MachineGroupType: 创建机器组类型。Type:ip,Values中为ip字符串列表创建机器组;Type:label,Values中为标签字符串列表创建机器组。
|
2647
2674
|
# @type MachineGroupType: :class:`Tencentcloud::Cls.v20201016.models.MachineGroupTypeInfo`
|
2648
2675
|
# @param Tags: 标签描述列表,通过指定该参数可以同时绑定标签到相应的机器组。最大支持10个标签键值对,同一个资源只能绑定到同一个标签键下。
|
2649
2676
|
# @type Tags: Array
|
2650
|
-
# @param AutoUpdate:
|
2677
|
+
# @param AutoUpdate: 是否开启机器组自动更新。默认false
|
2651
2678
|
# @type AutoUpdate: Boolean
|
2652
2679
|
# @param UpdateStartTime: 升级开始时间,建议业务低峰期升级LogListener
|
2653
2680
|
# @type UpdateStartTime: String
|
2654
2681
|
# @param UpdateEndTime: 升级结束时间,建议业务低峰期升级LogListener
|
2655
2682
|
# @type UpdateEndTime: String
|
2656
|
-
# @param ServiceLogging: 是否开启服务日志,用于记录因Loglistener 服务自身产生的log,开启后,会创建内部日志集cls_service_logging和日志主题loglistener_status,loglistener_alarm,loglistener_business
|
2683
|
+
# @param ServiceLogging: 是否开启服务日志,用于记录因Loglistener 服务自身产生的log,开启后,会创建内部日志集cls_service_logging和日志主题loglistener_status,loglistener_alarm,loglistener_business,不产生计费。默认false
|
2657
2684
|
# @type ServiceLogging: Boolean
|
2658
|
-
# @param DelayCleanupTime:
|
2685
|
+
# @param DelayCleanupTime: 机器组中机器离线清理时间。单位:天
|
2659
2686
|
# @type DelayCleanupTime: Integer
|
2660
2687
|
# @param MetaTags: 机器组元数据信息列表
|
2661
2688
|
# @type MetaTags: Array
|
@@ -3126,6 +3153,125 @@ module TencentCloud
|
|
3126
3153
|
end
|
3127
3154
|
end
|
3128
3155
|
|
3156
|
+
# 仪表盘订阅通知方式
|
3157
|
+
class DashboardNoticeMode < TencentCloud::Common::AbstractModel
|
3158
|
+
# @param ReceiverType: 仪表盘通知方式。<br>
|
3159
|
+
# <li/>Uin:腾讯云用户<br>
|
3160
|
+
# <li/>Group:腾讯云用户组<br>
|
3161
|
+
# <li/>Email:自定义Email<br>
|
3162
|
+
# <li/>WeCom: 企业微信回调
|
3163
|
+
# @type ReceiverType: String
|
3164
|
+
# @param Values: 知方式对应的值。
|
3165
|
+
# <br> <li/> 当ReceiverType不是 Wecom 时,Values必填。
|
3166
|
+
# @type Values: Array
|
3167
|
+
# @param ReceiverChannels: 仪表盘通知渠道。
|
3168
|
+
# <br><li/> 支持:["Email","Sms","WeChat","Phone"]。
|
3169
|
+
# <br><li/> 当ReceiverType是 Email 或 Wecom 时,ReceiverChannels不能赋值。
|
3170
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3171
|
+
# @type ReceiverChannels: Array
|
3172
|
+
# @param Url: 回调Url。
|
3173
|
+
# <br><li/> 当ReceiverType是 Wecom 时,Url必填。
|
3174
|
+
# <br><li/> 当ReceiverType不是 Wecom 时,Url不能填写。
|
3175
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3176
|
+
# @type Url: String
|
3177
|
+
|
3178
|
+
attr_accessor :ReceiverType, :Values, :ReceiverChannels, :Url
|
3179
|
+
|
3180
|
+
def initialize(receivertype=nil, values=nil, receiverchannels=nil, url=nil)
|
3181
|
+
@ReceiverType = receivertype
|
3182
|
+
@Values = values
|
3183
|
+
@ReceiverChannels = receiverchannels
|
3184
|
+
@Url = url
|
3185
|
+
end
|
3186
|
+
|
3187
|
+
def deserialize(params)
|
3188
|
+
@ReceiverType = params['ReceiverType']
|
3189
|
+
@Values = params['Values']
|
3190
|
+
@ReceiverChannels = params['ReceiverChannels']
|
3191
|
+
@Url = params['Url']
|
3192
|
+
end
|
3193
|
+
end
|
3194
|
+
|
3195
|
+
# 仪表盘订阅相关数据
|
3196
|
+
class DashboardSubscribeData < TencentCloud::Common::AbstractModel
|
3197
|
+
# @param NoticeModes: 仪表盘订阅通知方式。
|
3198
|
+
# @type NoticeModes: Array
|
3199
|
+
# @param DashboardTime: 仪表盘订阅时间,为空标识取仪表盘默认的时间。
|
3200
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3201
|
+
# @type DashboardTime: Array
|
3202
|
+
# @param TemplateVariables: 仪表盘订阅模板变量。
|
3203
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3204
|
+
# @type TemplateVariables: Array
|
3205
|
+
# @param Timezone: 时区。参考:https://en.wikipedia.org/wiki/List_of_tz_database_time_zones#SHANGHAI
|
3206
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3207
|
+
# @type Timezone: String
|
3208
|
+
# @param SubscribeLanguage: 语言。 zh 中文、en`英文。
|
3209
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3210
|
+
# @type SubscribeLanguage: String
|
3211
|
+
# @param JumpDomain: 调用链接域名。http:// 或者 https:// 开头,不能/结尾
|
3212
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3213
|
+
# @type JumpDomain: String
|
3214
|
+
# @param JumpUrl: 自定义跳转链接。
|
3215
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3216
|
+
# @type JumpUrl: String
|
3217
|
+
|
3218
|
+
attr_accessor :NoticeModes, :DashboardTime, :TemplateVariables, :Timezone, :SubscribeLanguage, :JumpDomain, :JumpUrl
|
3219
|
+
|
3220
|
+
def initialize(noticemodes=nil, dashboardtime=nil, templatevariables=nil, timezone=nil, subscribelanguage=nil, jumpdomain=nil, jumpurl=nil)
|
3221
|
+
@NoticeModes = noticemodes
|
3222
|
+
@DashboardTime = dashboardtime
|
3223
|
+
@TemplateVariables = templatevariables
|
3224
|
+
@Timezone = timezone
|
3225
|
+
@SubscribeLanguage = subscribelanguage
|
3226
|
+
@JumpDomain = jumpdomain
|
3227
|
+
@JumpUrl = jumpurl
|
3228
|
+
end
|
3229
|
+
|
3230
|
+
def deserialize(params)
|
3231
|
+
unless params['NoticeModes'].nil?
|
3232
|
+
@NoticeModes = []
|
3233
|
+
params['NoticeModes'].each do |i|
|
3234
|
+
dashboardnoticemode_tmp = DashboardNoticeMode.new
|
3235
|
+
dashboardnoticemode_tmp.deserialize(i)
|
3236
|
+
@NoticeModes << dashboardnoticemode_tmp
|
3237
|
+
end
|
3238
|
+
end
|
3239
|
+
@DashboardTime = params['DashboardTime']
|
3240
|
+
unless params['TemplateVariables'].nil?
|
3241
|
+
@TemplateVariables = []
|
3242
|
+
params['TemplateVariables'].each do |i|
|
3243
|
+
dashboardtemplatevariable_tmp = DashboardTemplateVariable.new
|
3244
|
+
dashboardtemplatevariable_tmp.deserialize(i)
|
3245
|
+
@TemplateVariables << dashboardtemplatevariable_tmp
|
3246
|
+
end
|
3247
|
+
end
|
3248
|
+
@Timezone = params['Timezone']
|
3249
|
+
@SubscribeLanguage = params['SubscribeLanguage']
|
3250
|
+
@JumpDomain = params['JumpDomain']
|
3251
|
+
@JumpUrl = params['JumpUrl']
|
3252
|
+
end
|
3253
|
+
end
|
3254
|
+
|
3255
|
+
# 仪表盘订阅模板变量
|
3256
|
+
class DashboardTemplateVariable < TencentCloud::Common::AbstractModel
|
3257
|
+
# @param Key: key的值
|
3258
|
+
# @type Key: String
|
3259
|
+
# @param Values: key对应的values取值values
|
3260
|
+
# @type Values: Array
|
3261
|
+
|
3262
|
+
attr_accessor :Key, :Values
|
3263
|
+
|
3264
|
+
def initialize(key=nil, values=nil)
|
3265
|
+
@Key = key
|
3266
|
+
@Values = values
|
3267
|
+
end
|
3268
|
+
|
3269
|
+
def deserialize(params)
|
3270
|
+
@Key = params['Key']
|
3271
|
+
@Values = params['Values']
|
3272
|
+
end
|
3273
|
+
end
|
3274
|
+
|
3129
3275
|
# 仪表盘关联的topic信息
|
3130
3276
|
class DashboardTopicInfo < TencentCloud::Common::AbstractModel
|
3131
3277
|
# @param TopicId: 主题id
|
@@ -3469,6 +3615,33 @@ module TencentCloud
|
|
3469
3615
|
end
|
3470
3616
|
end
|
3471
3617
|
|
3618
|
+
# DeleteDashboardSubscribe请求参数结构体
|
3619
|
+
class DeleteDashboardSubscribeRequest < TencentCloud::Common::AbstractModel
|
3620
|
+
|
3621
|
+
|
3622
|
+
def initialize()
|
3623
|
+
end
|
3624
|
+
|
3625
|
+
def deserialize(params)
|
3626
|
+
end
|
3627
|
+
end
|
3628
|
+
|
3629
|
+
# DeleteDashboardSubscribe返回参数结构体
|
3630
|
+
class DeleteDashboardSubscribeResponse < TencentCloud::Common::AbstractModel
|
3631
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
3632
|
+
# @type RequestId: String
|
3633
|
+
|
3634
|
+
attr_accessor :RequestId
|
3635
|
+
|
3636
|
+
def initialize(requestid=nil)
|
3637
|
+
@RequestId = requestid
|
3638
|
+
end
|
3639
|
+
|
3640
|
+
def deserialize(params)
|
3641
|
+
@RequestId = params['RequestId']
|
3642
|
+
end
|
3643
|
+
end
|
3644
|
+
|
3472
3645
|
# DeleteDataTransform请求参数结构体
|
3473
3646
|
class DeleteDataTransformRequest < TencentCloud::Common::AbstractModel
|
3474
3647
|
# @param TaskId: 数据加工任务id
|
@@ -4414,6 +4587,33 @@ module TencentCloud
|
|
4414
4587
|
end
|
4415
4588
|
end
|
4416
4589
|
|
4590
|
+
# DescribeDashboardSubscribes请求参数结构体
|
4591
|
+
class DescribeDashboardSubscribesRequest < TencentCloud::Common::AbstractModel
|
4592
|
+
|
4593
|
+
|
4594
|
+
def initialize()
|
4595
|
+
end
|
4596
|
+
|
4597
|
+
def deserialize(params)
|
4598
|
+
end
|
4599
|
+
end
|
4600
|
+
|
4601
|
+
# DescribeDashboardSubscribes返回参数结构体
|
4602
|
+
class DescribeDashboardSubscribesResponse < TencentCloud::Common::AbstractModel
|
4603
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
4604
|
+
# @type RequestId: String
|
4605
|
+
|
4606
|
+
attr_accessor :RequestId
|
4607
|
+
|
4608
|
+
def initialize(requestid=nil)
|
4609
|
+
@RequestId = requestid
|
4610
|
+
end
|
4611
|
+
|
4612
|
+
def deserialize(params)
|
4613
|
+
@RequestId = params['RequestId']
|
4614
|
+
end
|
4615
|
+
end
|
4616
|
+
|
4417
4617
|
# DescribeDashboards请求参数结构体
|
4418
4618
|
class DescribeDashboardsRequest < TencentCloud::Common::AbstractModel
|
4419
4619
|
# @param Offset: 分页的偏移量,默认值为0。
|
@@ -5358,9 +5558,11 @@ module TencentCloud
|
|
5358
5558
|
class DescribeShipperTasksRequest < TencentCloud::Common::AbstractModel
|
5359
5559
|
# @param ShipperId: 投递规则ID
|
5360
5560
|
# @type ShipperId: String
|
5361
|
-
# @param StartTime: 查询的开始时间戳,支持最近3天的查询,
|
5561
|
+
# @param StartTime: 查询的开始时间戳,支持最近3天的查询, 毫秒。
|
5562
|
+
# StartTime必须小于EndTime
|
5362
5563
|
# @type StartTime: Integer
|
5363
|
-
# @param EndTime: 查询的结束时间戳,
|
5564
|
+
# @param EndTime: 查询的结束时间戳, 毫秒。
|
5565
|
+
# StartTime必须小于EndTime
|
5364
5566
|
# @type EndTime: Integer
|
5365
5567
|
|
5366
5568
|
attr_accessor :ShipperId, :StartTime, :EndTime
|
@@ -6777,9 +6979,11 @@ module TencentCloud
|
|
6777
6979
|
|
6778
6980
|
# 机器组类型描述
|
6779
6981
|
class MachineGroupTypeInfo < TencentCloud::Common::AbstractModel
|
6780
|
-
# @param Type:
|
6982
|
+
# @param Type: 机器组类型。支持 ip 和 label。
|
6983
|
+
# - ip:表示该机器组Values中存的是采集机器的ip地址
|
6984
|
+
# - label:表示该机器组Values中存储的是机器的标签
|
6781
6985
|
# @type Type: String
|
6782
|
-
# @param Values:
|
6986
|
+
# @param Values: 机器描述列表。
|
6783
6987
|
# @type Values: Array
|
6784
6988
|
|
6785
6989
|
attr_accessor :Type, :Values
|
@@ -7595,6 +7799,33 @@ module TencentCloud
|
|
7595
7799
|
end
|
7596
7800
|
end
|
7597
7801
|
|
7802
|
+
# ModifyDashboardSubscribe请求参数结构体
|
7803
|
+
class ModifyDashboardSubscribeRequest < TencentCloud::Common::AbstractModel
|
7804
|
+
|
7805
|
+
|
7806
|
+
def initialize()
|
7807
|
+
end
|
7808
|
+
|
7809
|
+
def deserialize(params)
|
7810
|
+
end
|
7811
|
+
end
|
7812
|
+
|
7813
|
+
# ModifyDashboardSubscribe返回参数结构体
|
7814
|
+
class ModifyDashboardSubscribeResponse < TencentCloud::Common::AbstractModel
|
7815
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
7816
|
+
# @type RequestId: String
|
7817
|
+
|
7818
|
+
attr_accessor :RequestId
|
7819
|
+
|
7820
|
+
def initialize(requestid=nil)
|
7821
|
+
@RequestId = requestid
|
7822
|
+
end
|
7823
|
+
|
7824
|
+
def deserialize(params)
|
7825
|
+
@RequestId = params['RequestId']
|
7826
|
+
end
|
7827
|
+
end
|
7828
|
+
|
7598
7829
|
# ModifyDataTransform请求参数结构体
|
7599
7830
|
class ModifyDataTransformRequest < TencentCloud::Common::AbstractModel
|
7600
7831
|
# @param TaskId: 加工任务id
|
@@ -7888,7 +8119,7 @@ module TencentCloud
|
|
7888
8119
|
# @type GroupId: String
|
7889
8120
|
# @param GroupName: 机器组名称
|
7890
8121
|
# @type GroupName: String
|
7891
|
-
# @param MachineGroupType:
|
8122
|
+
# @param MachineGroupType: 机器组类型。Type:ip,Values中为ip字符串列表机器组;Type:label,Values中为标签字符串列表机器组。
|
7892
8123
|
# @type MachineGroupType: :class:`Tencentcloud::Cls.v20201016.models.MachineGroupTypeInfo`
|
7893
8124
|
# @param Tags: 标签列表
|
7894
8125
|
# @type Tags: Array
|
@@ -7900,7 +8131,7 @@ module TencentCloud
|
|
7900
8131
|
# @type UpdateEndTime: String
|
7901
8132
|
# @param ServiceLogging: 是否开启服务日志,用于记录因Loglistener 服务自身产生的log,开启后,会创建内部日志集cls_service_logging和日志主题loglistener_status,loglistener_alarm,loglistener_business,不产生计费
|
7902
8133
|
# @type ServiceLogging: Boolean
|
7903
|
-
# @param DelayCleanupTime:
|
8134
|
+
# @param DelayCleanupTime: 机器组中机器定期离线清理时间。单位:天
|
7904
8135
|
# @type DelayCleanupTime: Integer
|
7905
8136
|
# @param MetaTags: 机器组元数据信息列表
|
7906
8137
|
# @type MetaTags: Array
|
@@ -9090,6 +9321,53 @@ module TencentCloud
|
|
9090
9321
|
end
|
9091
9322
|
end
|
9092
9323
|
|
9324
|
+
# SearchDashboardSubscribe请求参数结构体
|
9325
|
+
class SearchDashboardSubscribeRequest < TencentCloud::Common::AbstractModel
|
9326
|
+
# @param DashboardId: 仪表盘id。
|
9327
|
+
# @type DashboardId: String
|
9328
|
+
# @param SubscribeData: 仪表盘订阅数据。
|
9329
|
+
# @type SubscribeData: :class:`Tencentcloud::Cls.v20201016.models.DashboardSubscribeData`
|
9330
|
+
# @param Id: 仪表盘订阅Id。
|
9331
|
+
# @type Id: Integer
|
9332
|
+
# @param Name: 仪表盘订阅名称。
|
9333
|
+
# @type Name: String
|
9334
|
+
|
9335
|
+
attr_accessor :DashboardId, :SubscribeData, :Id, :Name
|
9336
|
+
|
9337
|
+
def initialize(dashboardid=nil, subscribedata=nil, id=nil, name=nil)
|
9338
|
+
@DashboardId = dashboardid
|
9339
|
+
@SubscribeData = subscribedata
|
9340
|
+
@Id = id
|
9341
|
+
@Name = name
|
9342
|
+
end
|
9343
|
+
|
9344
|
+
def deserialize(params)
|
9345
|
+
@DashboardId = params['DashboardId']
|
9346
|
+
unless params['SubscribeData'].nil?
|
9347
|
+
@SubscribeData = DashboardSubscribeData.new
|
9348
|
+
@SubscribeData.deserialize(params['SubscribeData'])
|
9349
|
+
end
|
9350
|
+
@Id = params['Id']
|
9351
|
+
@Name = params['Name']
|
9352
|
+
end
|
9353
|
+
end
|
9354
|
+
|
9355
|
+
# SearchDashboardSubscribe返回参数结构体
|
9356
|
+
class SearchDashboardSubscribeResponse < TencentCloud::Common::AbstractModel
|
9357
|
+
# @param RequestId: 唯一请求 ID,由服务端生成,每次请求都会返回(若请求因其他原因未能抵达服务端,则该次请求不会获得 RequestId)。定位问题时需要提供该次请求的 RequestId。
|
9358
|
+
# @type RequestId: String
|
9359
|
+
|
9360
|
+
attr_accessor :RequestId
|
9361
|
+
|
9362
|
+
def initialize(requestid=nil)
|
9363
|
+
@RequestId = requestid
|
9364
|
+
end
|
9365
|
+
|
9366
|
+
def deserialize(params)
|
9367
|
+
@RequestId = params['RequestId']
|
9368
|
+
end
|
9369
|
+
end
|
9370
|
+
|
9093
9371
|
# 多日志主题检索错误信息
|
9094
9372
|
class SearchLogErrors < TencentCloud::Common::AbstractModel
|
9095
9373
|
# @param TopicId: 日志主题ID
|
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.814
|
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-
|
11
|
+
date: 2024-05-06 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|