tencentcloud-sdk-wedata 3.0.728 → 3.0.730
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/v20210820/client.rb +24 -0
- data/lib/v20210820/models.rb +108 -20
- 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: 75730e74105e4491d29c6f370f71b4b45785123c
|
4
|
+
data.tar.gz: a112d8f5efa2a49c91b2ecbfbb37048ccc83c6fa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 0e23b542bd633d2ee31fabc31697067c72065533cb6042f1b455873777ee8510b43a46cbe381765796e05fe69dd1697c0807f1eb886eb08a84fa32d166b9a9bc
|
7
|
+
data.tar.gz: 069796485352a2542c4436129bf7e91df803fb0cbf2fe8a12cab3c0eaf2361620c2481b86f48867d80e4dd5b03429fa357a962f6e426fdea64ce7fb74d4693b9
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.730
|
data/lib/v20210820/client.rb
CHANGED
@@ -5067,6 +5067,30 @@ module TencentCloud
|
|
5067
5067
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5068
5068
|
end
|
5069
5069
|
|
5070
|
+
# 查询表元数据详情
|
5071
|
+
|
5072
|
+
# @param request: Request instance for DescribeTableMeta.
|
5073
|
+
# @type request: :class:`Tencentcloud::wedata::V20210820::DescribeTableMetaRequest`
|
5074
|
+
# @rtype: :class:`Tencentcloud::wedata::V20210820::DescribeTableMetaResponse`
|
5075
|
+
def DescribeTableMeta(request)
|
5076
|
+
body = send_request('DescribeTableMeta', request.serialize)
|
5077
|
+
response = JSON.parse(body)
|
5078
|
+
if response['Response'].key?('Error') == false
|
5079
|
+
model = DescribeTableMetaResponse.new
|
5080
|
+
model.deserialize(response['Response'])
|
5081
|
+
model
|
5082
|
+
else
|
5083
|
+
code = response['Response']['Error']['Code']
|
5084
|
+
message = response['Response']['Error']['Message']
|
5085
|
+
reqid = response['Response']['RequestId']
|
5086
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
5087
|
+
end
|
5088
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
5089
|
+
raise e
|
5090
|
+
rescue StandardError => e
|
5091
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
5092
|
+
end
|
5093
|
+
|
5070
5094
|
# 获取表元数据list
|
5071
5095
|
|
5072
5096
|
# @param request: Request instance for DescribeTableMetas.
|
data/lib/v20210820/models.rb
CHANGED
@@ -505,10 +505,13 @@ module TencentCloud
|
|
505
505
|
# @param WecomGroup: 企业微信群,0:未设置,1:成功,2:失败
|
506
506
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
507
507
|
# @type WecomGroup: Integer
|
508
|
+
# @param LarkGroup: 飞书群,0:未设置,1:成功,2:失败
|
509
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
510
|
+
# @type LarkGroup: Integer
|
508
511
|
|
509
|
-
attr_accessor :AlarmId, :AlarmReceiver, :Email, :Sms, :Wechat, :Voice, :Wecom, :Http, :WecomGroup
|
512
|
+
attr_accessor :AlarmId, :AlarmReceiver, :Email, :Sms, :Wechat, :Voice, :Wecom, :Http, :WecomGroup, :LarkGroup
|
510
513
|
|
511
|
-
def initialize(alarmid=nil, alarmreceiver=nil, email=nil, sms=nil, wechat=nil, voice=nil, wecom=nil, http=nil, wecomgroup=nil)
|
514
|
+
def initialize(alarmid=nil, alarmreceiver=nil, email=nil, sms=nil, wechat=nil, voice=nil, wecom=nil, http=nil, wecomgroup=nil, larkgroup=nil)
|
512
515
|
@AlarmId = alarmid
|
513
516
|
@AlarmReceiver = alarmreceiver
|
514
517
|
@Email = email
|
@@ -518,6 +521,7 @@ module TencentCloud
|
|
518
521
|
@Wecom = wecom
|
519
522
|
@Http = http
|
520
523
|
@WecomGroup = wecomgroup
|
524
|
+
@LarkGroup = larkgroup
|
521
525
|
end
|
522
526
|
|
523
527
|
def deserialize(params)
|
@@ -530,6 +534,7 @@ module TencentCloud
|
|
530
534
|
@Wecom = params['Wecom']
|
531
535
|
@Http = params['Http']
|
532
536
|
@WecomGroup = params['WecomGroup']
|
537
|
+
@LarkGroup = params['LarkGroup']
|
533
538
|
end
|
534
539
|
end
|
535
540
|
|
@@ -2582,19 +2587,23 @@ module TencentCloud
|
|
2582
2587
|
# @type TaskType: Integer
|
2583
2588
|
# @param ProjectId: 项目id
|
2584
2589
|
# @type ProjectId: String
|
2590
|
+
# @param Event: 事件类型(START, STOP, SUSPEND, SUSPEND_WITHOUT_SP,RESUME, COMMIT, TIMESTAMP)
|
2591
|
+
# @type Event: String
|
2585
2592
|
|
2586
|
-
attr_accessor :TaskIds, :TaskType, :ProjectId
|
2593
|
+
attr_accessor :TaskIds, :TaskType, :ProjectId, :Event
|
2587
2594
|
|
2588
|
-
def initialize(taskids=nil, tasktype=nil, projectid=nil)
|
2595
|
+
def initialize(taskids=nil, tasktype=nil, projectid=nil, event=nil)
|
2589
2596
|
@TaskIds = taskids
|
2590
2597
|
@TaskType = tasktype
|
2591
2598
|
@ProjectId = projectid
|
2599
|
+
@Event = event
|
2592
2600
|
end
|
2593
2601
|
|
2594
2602
|
def deserialize(params)
|
2595
2603
|
@TaskIds = params['TaskIds']
|
2596
2604
|
@TaskType = params['TaskType']
|
2597
2605
|
@ProjectId = params['ProjectId']
|
2606
|
+
@Event = params['Event']
|
2598
2607
|
end
|
2599
2608
|
end
|
2600
2609
|
|
@@ -3455,10 +3464,16 @@ module TencentCloud
|
|
3455
3464
|
# @param ColumnFamiliesFieldSet: HBase列簇属性集合
|
3456
3465
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3457
3466
|
# @type ColumnFamiliesFieldSet: Array
|
3467
|
+
# @param DictionaryId: 对应码表字典ID
|
3468
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3469
|
+
# @type DictionaryId: String
|
3470
|
+
# @param DictionaryName: 对应码表字典名称
|
3471
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3472
|
+
# @type DictionaryName: String
|
3458
3473
|
|
3459
|
-
attr_accessor :NameEn, :NameCn, :Type, :Description, :Position, :IsPartition, :Name, :ColumnFamiliesFieldSet
|
3474
|
+
attr_accessor :NameEn, :NameCn, :Type, :Description, :Position, :IsPartition, :Name, :ColumnFamiliesFieldSet, :DictionaryId, :DictionaryName
|
3460
3475
|
|
3461
|
-
def initialize(nameen=nil, namecn=nil, type=nil, description=nil, position=nil, ispartition=nil, name=nil, columnfamiliesfieldset=nil)
|
3476
|
+
def initialize(nameen=nil, namecn=nil, type=nil, description=nil, position=nil, ispartition=nil, name=nil, columnfamiliesfieldset=nil, dictionaryid=nil, dictionaryname=nil)
|
3462
3477
|
@NameEn = nameen
|
3463
3478
|
@NameCn = namecn
|
3464
3479
|
@Type = type
|
@@ -3467,6 +3482,8 @@ module TencentCloud
|
|
3467
3482
|
@IsPartition = ispartition
|
3468
3483
|
@Name = name
|
3469
3484
|
@ColumnFamiliesFieldSet = columnfamiliesfieldset
|
3485
|
+
@DictionaryId = dictionaryid
|
3486
|
+
@DictionaryName = dictionaryname
|
3470
3487
|
end
|
3471
3488
|
|
3472
3489
|
def deserialize(params)
|
@@ -3485,6 +3502,8 @@ module TencentCloud
|
|
3485
3502
|
@ColumnFamiliesFieldSet << pair_tmp
|
3486
3503
|
end
|
3487
3504
|
end
|
3505
|
+
@DictionaryId = params['DictionaryId']
|
3506
|
+
@DictionaryName = params['DictionaryName']
|
3488
3507
|
end
|
3489
3508
|
end
|
3490
3509
|
|
@@ -3557,10 +3576,12 @@ module TencentCloud
|
|
3557
3576
|
# @type VersionDesc: String
|
3558
3577
|
# @param InstanceVersion: 提交版本号
|
3559
3578
|
# @type InstanceVersion: Integer
|
3579
|
+
# @param EventDesc: 前端操作类型描述
|
3580
|
+
# @type EventDesc: String
|
3560
3581
|
|
3561
|
-
attr_accessor :TaskId, :ProjectId, :CommitType, :TaskType, :ExtConfig, :VersionDesc, :InstanceVersion
|
3582
|
+
attr_accessor :TaskId, :ProjectId, :CommitType, :TaskType, :ExtConfig, :VersionDesc, :InstanceVersion, :EventDesc
|
3562
3583
|
|
3563
|
-
def initialize(taskid=nil, projectid=nil, committype=nil, tasktype=nil, extconfig=nil, versiondesc=nil, instanceversion=nil)
|
3584
|
+
def initialize(taskid=nil, projectid=nil, committype=nil, tasktype=nil, extconfig=nil, versiondesc=nil, instanceversion=nil, eventdesc=nil)
|
3564
3585
|
@TaskId = taskid
|
3565
3586
|
@ProjectId = projectid
|
3566
3587
|
@CommitType = committype
|
@@ -3568,6 +3589,7 @@ module TencentCloud
|
|
3568
3589
|
@ExtConfig = extconfig
|
3569
3590
|
@VersionDesc = versiondesc
|
3570
3591
|
@InstanceVersion = instanceversion
|
3592
|
+
@EventDesc = eventdesc
|
3571
3593
|
end
|
3572
3594
|
|
3573
3595
|
def deserialize(params)
|
@@ -3585,6 +3607,7 @@ module TencentCloud
|
|
3585
3607
|
end
|
3586
3608
|
@VersionDesc = params['VersionDesc']
|
3587
3609
|
@InstanceVersion = params['InstanceVersion']
|
3610
|
+
@EventDesc = params['EventDesc']
|
3588
3611
|
end
|
3589
3612
|
end
|
3590
3613
|
|
@@ -5377,18 +5400,21 @@ module TencentCloud
|
|
5377
5400
|
# @type AutoRun: Boolean
|
5378
5401
|
# @param ProjectId: 项目ID
|
5379
5402
|
# @type ProjectId: String
|
5403
|
+
# @param RequestFromSource: 请求来源,WEB 前端;CLIENT 客户端
|
5404
|
+
# @type RequestFromSource: String
|
5380
5405
|
# @param AlarmWays: 告警方式:email-邮件;sms-短信;wecom-企业微信
|
5381
5406
|
# @type AlarmWays: String
|
5382
5407
|
# @param AlarmRecipientTypes: 告警对象:1-项目管理员,2-任务责任人
|
5383
5408
|
# @type AlarmRecipientTypes: String
|
5384
5409
|
|
5385
|
-
attr_accessor :Task, :NeedCheckParentSubmitted, :AutoRun, :ProjectId, :AlarmWays, :AlarmRecipientTypes
|
5410
|
+
attr_accessor :Task, :NeedCheckParentSubmitted, :AutoRun, :ProjectId, :RequestFromSource, :AlarmWays, :AlarmRecipientTypes
|
5386
5411
|
|
5387
|
-
def initialize(task=nil, needcheckparentsubmitted=nil, autorun=nil, projectid=nil, alarmways=nil, alarmrecipienttypes=nil)
|
5412
|
+
def initialize(task=nil, needcheckparentsubmitted=nil, autorun=nil, projectid=nil, requestfromsource=nil, alarmways=nil, alarmrecipienttypes=nil)
|
5388
5413
|
@Task = task
|
5389
5414
|
@NeedCheckParentSubmitted = needcheckparentsubmitted
|
5390
5415
|
@AutoRun = autorun
|
5391
5416
|
@ProjectId = projectid
|
5417
|
+
@RequestFromSource = requestfromsource
|
5392
5418
|
@AlarmWays = alarmways
|
5393
5419
|
@AlarmRecipientTypes = alarmrecipienttypes
|
5394
5420
|
end
|
@@ -5401,6 +5427,7 @@ module TencentCloud
|
|
5401
5427
|
@NeedCheckParentSubmitted = params['NeedCheckParentSubmitted']
|
5402
5428
|
@AutoRun = params['AutoRun']
|
5403
5429
|
@ProjectId = params['ProjectId']
|
5430
|
+
@RequestFromSource = params['RequestFromSource']
|
5404
5431
|
@AlarmWays = params['AlarmWays']
|
5405
5432
|
@AlarmRecipientTypes = params['AlarmRecipientTypes']
|
5406
5433
|
end
|
@@ -15866,6 +15893,46 @@ module TencentCloud
|
|
15866
15893
|
end
|
15867
15894
|
end
|
15868
15895
|
|
15896
|
+
# DescribeTableMeta请求参数结构体
|
15897
|
+
class DescribeTableMetaRequest < TencentCloud::Common::AbstractModel
|
15898
|
+
# @param TableId: 表唯一id
|
15899
|
+
# @type TableId: String
|
15900
|
+
|
15901
|
+
attr_accessor :TableId
|
15902
|
+
|
15903
|
+
def initialize(tableid=nil)
|
15904
|
+
@TableId = tableid
|
15905
|
+
end
|
15906
|
+
|
15907
|
+
def deserialize(params)
|
15908
|
+
@TableId = params['TableId']
|
15909
|
+
end
|
15910
|
+
end
|
15911
|
+
|
15912
|
+
# DescribeTableMeta返回参数结构体
|
15913
|
+
class DescribeTableMetaResponse < TencentCloud::Common::AbstractModel
|
15914
|
+
# @param TableMeta: 表的元数据信息
|
15915
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
15916
|
+
# @type TableMeta: :class:`Tencentcloud::Wedata.v20210820.models.TableMeta`
|
15917
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
15918
|
+
# @type RequestId: String
|
15919
|
+
|
15920
|
+
attr_accessor :TableMeta, :RequestId
|
15921
|
+
|
15922
|
+
def initialize(tablemeta=nil, requestid=nil)
|
15923
|
+
@TableMeta = tablemeta
|
15924
|
+
@RequestId = requestid
|
15925
|
+
end
|
15926
|
+
|
15927
|
+
def deserialize(params)
|
15928
|
+
unless params['TableMeta'].nil?
|
15929
|
+
@TableMeta = TableMeta.new
|
15930
|
+
@TableMeta.deserialize(params['TableMeta'])
|
15931
|
+
end
|
15932
|
+
@RequestId = params['RequestId']
|
15933
|
+
end
|
15934
|
+
end
|
15935
|
+
|
15869
15936
|
# DescribeTableMetas请求参数结构体
|
15870
15937
|
class DescribeTableMetasRequest < TencentCloud::Common::AbstractModel
|
15871
15938
|
# @param PageNumber: 分页页码
|
@@ -26409,14 +26476,17 @@ module TencentCloud
|
|
26409
26476
|
# @type Event: String
|
26410
26477
|
# @param ExtConfig: 额外参数
|
26411
26478
|
# @type ExtConfig: Array
|
26479
|
+
# @param EventDesc: 前端操作类型描述
|
26480
|
+
# @type EventDesc: String
|
26412
26481
|
|
26413
|
-
attr_accessor :TaskId, :ProjectId, :Event, :ExtConfig
|
26482
|
+
attr_accessor :TaskId, :ProjectId, :Event, :ExtConfig, :EventDesc
|
26414
26483
|
|
26415
|
-
def initialize(taskid=nil, projectid=nil, event=nil, extconfig=nil)
|
26484
|
+
def initialize(taskid=nil, projectid=nil, event=nil, extconfig=nil, eventdesc=nil)
|
26416
26485
|
@TaskId = taskid
|
26417
26486
|
@ProjectId = projectid
|
26418
26487
|
@Event = event
|
26419
26488
|
@ExtConfig = extconfig
|
26489
|
+
@EventDesc = eventdesc
|
26420
26490
|
end
|
26421
26491
|
|
26422
26492
|
def deserialize(params)
|
@@ -26431,6 +26501,7 @@ module TencentCloud
|
|
26431
26501
|
@ExtConfig << recordfield_tmp
|
26432
26502
|
end
|
26433
26503
|
end
|
26504
|
+
@EventDesc = params['EventDesc']
|
26434
26505
|
end
|
26435
26506
|
end
|
26436
26507
|
|
@@ -29639,14 +29710,17 @@ module TencentCloud
|
|
29639
29710
|
# @type Event: String
|
29640
29711
|
# @param ExtConfig: 额外参数
|
29641
29712
|
# @type ExtConfig: Array
|
29713
|
+
# @param EventDesc: 操作类型描述
|
29714
|
+
# @type EventDesc: String
|
29642
29715
|
|
29643
|
-
attr_accessor :TaskId, :ProjectId, :Event, :ExtConfig
|
29716
|
+
attr_accessor :TaskId, :ProjectId, :Event, :ExtConfig, :EventDesc
|
29644
29717
|
|
29645
|
-
def initialize(taskid=nil, projectid=nil, event=nil, extconfig=nil)
|
29718
|
+
def initialize(taskid=nil, projectid=nil, event=nil, extconfig=nil, eventdesc=nil)
|
29646
29719
|
@TaskId = taskid
|
29647
29720
|
@ProjectId = projectid
|
29648
29721
|
@Event = event
|
29649
29722
|
@ExtConfig = extconfig
|
29723
|
+
@EventDesc = eventdesc
|
29650
29724
|
end
|
29651
29725
|
|
29652
29726
|
def deserialize(params)
|
@@ -29661,6 +29735,7 @@ module TencentCloud
|
|
29661
29735
|
@ExtConfig << recordfield_tmp
|
29662
29736
|
end
|
29663
29737
|
end
|
29738
|
+
@EventDesc = params['EventDesc']
|
29664
29739
|
end
|
29665
29740
|
end
|
29666
29741
|
|
@@ -30264,17 +30339,21 @@ module TencentCloud
|
|
30264
30339
|
# @type TaskId: String
|
30265
30340
|
# @param ProjectId: 项目id
|
30266
30341
|
# @type ProjectId: String
|
30342
|
+
# @param Event: 事件类型(START, STOP, SUSPEND, SUSPEND_WITHOUT_SP,RESUME, COMMIT, TIMESTAMP)
|
30343
|
+
# @type Event: String
|
30267
30344
|
|
30268
|
-
attr_accessor :TaskId, :ProjectId
|
30345
|
+
attr_accessor :TaskId, :ProjectId, :Event
|
30269
30346
|
|
30270
|
-
def initialize(taskid=nil, projectid=nil)
|
30347
|
+
def initialize(taskid=nil, projectid=nil, event=nil)
|
30271
30348
|
@TaskId = taskid
|
30272
30349
|
@ProjectId = projectid
|
30350
|
+
@Event = event
|
30273
30351
|
end
|
30274
30352
|
|
30275
30353
|
def deserialize(params)
|
30276
30354
|
@TaskId = params['TaskId']
|
30277
30355
|
@ProjectId = params['ProjectId']
|
30356
|
+
@Event = params['Event']
|
30278
30357
|
end
|
30279
30358
|
end
|
30280
30359
|
|
@@ -31098,10 +31177,13 @@ module TencentCloud
|
|
31098
31177
|
# @param Description: 告警规则描述
|
31099
31178
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
31100
31179
|
# @type Description: String
|
31180
|
+
# @param LarkWebHooks: 飞书群Hook地址,多个hook地址使用,隔开
|
31181
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
31182
|
+
# @type LarkWebHooks: String
|
31101
31183
|
|
31102
|
-
attr_accessor :TaskId, :RegularName, :RegularStatus, :AlarmLevel, :AlarmWay, :TaskType, :Id, :RegularId, :AlarmIndicator, :TriggerType, :EstimatedTime, :AlarmRecipientId, :ProjectId, :Creater, :AlarmRecipientName, :AlarmIndicatorDesc, :Operator, :NodeId, :NodeName, :AlarmIndicatorInfos, :AlarmRecipientType, :WeComHook, :UpdateTime, :OperatorUin, :TaskCount, :MonitorType, :MonitorObjectIds, :LatestAlarmInstanceId, :LatestAlarmTime, :Description
|
31184
|
+
attr_accessor :TaskId, :RegularName, :RegularStatus, :AlarmLevel, :AlarmWay, :TaskType, :Id, :RegularId, :AlarmIndicator, :TriggerType, :EstimatedTime, :AlarmRecipientId, :ProjectId, :Creater, :AlarmRecipientName, :AlarmIndicatorDesc, :Operator, :NodeId, :NodeName, :AlarmIndicatorInfos, :AlarmRecipientType, :WeComHook, :UpdateTime, :OperatorUin, :TaskCount, :MonitorType, :MonitorObjectIds, :LatestAlarmInstanceId, :LatestAlarmTime, :Description, :LarkWebHooks
|
31103
31185
|
|
31104
|
-
def initialize(taskid=nil, regularname=nil, regularstatus=nil, alarmlevel=nil, alarmway=nil, tasktype=nil, id=nil, regularid=nil, alarmindicator=nil, triggertype=nil, estimatedtime=nil, alarmrecipientid=nil, projectid=nil, creater=nil, alarmrecipientname=nil, alarmindicatordesc=nil, operator=nil, nodeid=nil, nodename=nil, alarmindicatorinfos=nil, alarmrecipienttype=nil, wecomhook=nil, updatetime=nil, operatoruin=nil, taskcount=nil, monitortype=nil, monitorobjectids=nil, latestalarminstanceid=nil, latestalarmtime=nil, description=nil)
|
31186
|
+
def initialize(taskid=nil, regularname=nil, regularstatus=nil, alarmlevel=nil, alarmway=nil, tasktype=nil, id=nil, regularid=nil, alarmindicator=nil, triggertype=nil, estimatedtime=nil, alarmrecipientid=nil, projectid=nil, creater=nil, alarmrecipientname=nil, alarmindicatordesc=nil, operator=nil, nodeid=nil, nodename=nil, alarmindicatorinfos=nil, alarmrecipienttype=nil, wecomhook=nil, updatetime=nil, operatoruin=nil, taskcount=nil, monitortype=nil, monitorobjectids=nil, latestalarminstanceid=nil, latestalarmtime=nil, description=nil, larkwebhooks=nil)
|
31105
31187
|
@TaskId = taskid
|
31106
31188
|
@RegularName = regularname
|
31107
31189
|
@RegularStatus = regularstatus
|
@@ -31132,6 +31214,7 @@ module TencentCloud
|
|
31132
31214
|
@LatestAlarmInstanceId = latestalarminstanceid
|
31133
31215
|
@LatestAlarmTime = latestalarmtime
|
31134
31216
|
@Description = description
|
31217
|
+
@LarkWebHooks = larkwebhooks
|
31135
31218
|
end
|
31136
31219
|
|
31137
31220
|
def deserialize(params)
|
@@ -31172,6 +31255,7 @@ module TencentCloud
|
|
31172
31255
|
@LatestAlarmInstanceId = params['LatestAlarmInstanceId']
|
31173
31256
|
@LatestAlarmTime = params['LatestAlarmTime']
|
31174
31257
|
@Description = params['Description']
|
31258
|
+
@LarkWebHooks = params['LarkWebHooks']
|
31175
31259
|
end
|
31176
31260
|
end
|
31177
31261
|
|
@@ -34723,11 +34807,14 @@ module TencentCloud
|
|
34723
34807
|
class UploadContentRequest < TencentCloud::Common::AbstractModel
|
34724
34808
|
# @param ScriptRequestInfo: 脚本上传信息
|
34725
34809
|
# @type ScriptRequestInfo: :class:`Tencentcloud::Wedata.v20210820.models.ScriptRequestInfo`
|
34810
|
+
# @param RequestFromSource: 请求来源,WEB 前端;CLIENT 客户端
|
34811
|
+
# @type RequestFromSource: String
|
34726
34812
|
|
34727
|
-
attr_accessor :ScriptRequestInfo
|
34813
|
+
attr_accessor :ScriptRequestInfo, :RequestFromSource
|
34728
34814
|
|
34729
|
-
def initialize(scriptrequestinfo=nil)
|
34815
|
+
def initialize(scriptrequestinfo=nil, requestfromsource=nil)
|
34730
34816
|
@ScriptRequestInfo = scriptrequestinfo
|
34817
|
+
@RequestFromSource = requestfromsource
|
34731
34818
|
end
|
34732
34819
|
|
34733
34820
|
def deserialize(params)
|
@@ -34735,6 +34822,7 @@ module TencentCloud
|
|
34735
34822
|
@ScriptRequestInfo = ScriptRequestInfo.new
|
34736
34823
|
@ScriptRequestInfo.deserialize(params['ScriptRequestInfo'])
|
34737
34824
|
end
|
34825
|
+
@RequestFromSource = params['RequestFromSource']
|
34738
34826
|
end
|
34739
34827
|
end
|
34740
34828
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: tencentcloud-sdk-wedata
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 3.0.
|
4
|
+
version: 3.0.730
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-12-
|
11
|
+
date: 2023-12-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|