tencentcloud-sdk-wedata 3.0.728 → 3.0.729
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20210820/models.rb +24 -6
- 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: 72b1e7352bbe855e566b0bc16fa6386975f45a1d
|
4
|
+
data.tar.gz: bdb940982d0fd6482c0ff9b9db3c978313a60b48
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 95a693ea1fd56afeb1f252b11dd01c3ae81a184e30b867ac2012eb6a1c22e426fcfc5b8ed0d2a9169391efa34839b5c95d05468ba383eb331078316912c3953b
|
7
|
+
data.tar.gz: 15ad3e0687b8d46a6b2d184043477d3b70dc7fb9cd6503dbad50c42bbe1aa9df767c3e57a651bf13eed27035342de57217ca7ffcef98cea78976059a25a97b38
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.729
|
data/lib/v20210820/models.rb
CHANGED
@@ -3455,10 +3455,16 @@ module TencentCloud
|
|
3455
3455
|
# @param ColumnFamiliesFieldSet: HBase列簇属性集合
|
3456
3456
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
3457
3457
|
# @type ColumnFamiliesFieldSet: Array
|
3458
|
+
# @param DictionaryId: 对应码表字典ID
|
3459
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3460
|
+
# @type DictionaryId: String
|
3461
|
+
# @param DictionaryName: 对应码表字典名称
|
3462
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
3463
|
+
# @type DictionaryName: String
|
3458
3464
|
|
3459
|
-
attr_accessor :NameEn, :NameCn, :Type, :Description, :Position, :IsPartition, :Name, :ColumnFamiliesFieldSet
|
3465
|
+
attr_accessor :NameEn, :NameCn, :Type, :Description, :Position, :IsPartition, :Name, :ColumnFamiliesFieldSet, :DictionaryId, :DictionaryName
|
3460
3466
|
|
3461
|
-
def initialize(nameen=nil, namecn=nil, type=nil, description=nil, position=nil, ispartition=nil, name=nil, columnfamiliesfieldset=nil)
|
3467
|
+
def initialize(nameen=nil, namecn=nil, type=nil, description=nil, position=nil, ispartition=nil, name=nil, columnfamiliesfieldset=nil, dictionaryid=nil, dictionaryname=nil)
|
3462
3468
|
@NameEn = nameen
|
3463
3469
|
@NameCn = namecn
|
3464
3470
|
@Type = type
|
@@ -3467,6 +3473,8 @@ module TencentCloud
|
|
3467
3473
|
@IsPartition = ispartition
|
3468
3474
|
@Name = name
|
3469
3475
|
@ColumnFamiliesFieldSet = columnfamiliesfieldset
|
3476
|
+
@DictionaryId = dictionaryid
|
3477
|
+
@DictionaryName = dictionaryname
|
3470
3478
|
end
|
3471
3479
|
|
3472
3480
|
def deserialize(params)
|
@@ -3485,6 +3493,8 @@ module TencentCloud
|
|
3485
3493
|
@ColumnFamiliesFieldSet << pair_tmp
|
3486
3494
|
end
|
3487
3495
|
end
|
3496
|
+
@DictionaryId = params['DictionaryId']
|
3497
|
+
@DictionaryName = params['DictionaryName']
|
3488
3498
|
end
|
3489
3499
|
end
|
3490
3500
|
|
@@ -5377,18 +5387,21 @@ module TencentCloud
|
|
5377
5387
|
# @type AutoRun: Boolean
|
5378
5388
|
# @param ProjectId: 项目ID
|
5379
5389
|
# @type ProjectId: String
|
5390
|
+
# @param RequestFromSource: 请求来源,WEB 前端;CLIENT 客户端
|
5391
|
+
# @type RequestFromSource: String
|
5380
5392
|
# @param AlarmWays: 告警方式:email-邮件;sms-短信;wecom-企业微信
|
5381
5393
|
# @type AlarmWays: String
|
5382
5394
|
# @param AlarmRecipientTypes: 告警对象:1-项目管理员,2-任务责任人
|
5383
5395
|
# @type AlarmRecipientTypes: String
|
5384
5396
|
|
5385
|
-
attr_accessor :Task, :NeedCheckParentSubmitted, :AutoRun, :ProjectId, :AlarmWays, :AlarmRecipientTypes
|
5397
|
+
attr_accessor :Task, :NeedCheckParentSubmitted, :AutoRun, :ProjectId, :RequestFromSource, :AlarmWays, :AlarmRecipientTypes
|
5386
5398
|
|
5387
|
-
def initialize(task=nil, needcheckparentsubmitted=nil, autorun=nil, projectid=nil, alarmways=nil, alarmrecipienttypes=nil)
|
5399
|
+
def initialize(task=nil, needcheckparentsubmitted=nil, autorun=nil, projectid=nil, requestfromsource=nil, alarmways=nil, alarmrecipienttypes=nil)
|
5388
5400
|
@Task = task
|
5389
5401
|
@NeedCheckParentSubmitted = needcheckparentsubmitted
|
5390
5402
|
@AutoRun = autorun
|
5391
5403
|
@ProjectId = projectid
|
5404
|
+
@RequestFromSource = requestfromsource
|
5392
5405
|
@AlarmWays = alarmways
|
5393
5406
|
@AlarmRecipientTypes = alarmrecipienttypes
|
5394
5407
|
end
|
@@ -5401,6 +5414,7 @@ module TencentCloud
|
|
5401
5414
|
@NeedCheckParentSubmitted = params['NeedCheckParentSubmitted']
|
5402
5415
|
@AutoRun = params['AutoRun']
|
5403
5416
|
@ProjectId = params['ProjectId']
|
5417
|
+
@RequestFromSource = params['RequestFromSource']
|
5404
5418
|
@AlarmWays = params['AlarmWays']
|
5405
5419
|
@AlarmRecipientTypes = params['AlarmRecipientTypes']
|
5406
5420
|
end
|
@@ -34723,11 +34737,14 @@ module TencentCloud
|
|
34723
34737
|
class UploadContentRequest < TencentCloud::Common::AbstractModel
|
34724
34738
|
# @param ScriptRequestInfo: 脚本上传信息
|
34725
34739
|
# @type ScriptRequestInfo: :class:`Tencentcloud::Wedata.v20210820.models.ScriptRequestInfo`
|
34740
|
+
# @param RequestFromSource: 请求来源,WEB 前端;CLIENT 客户端
|
34741
|
+
# @type RequestFromSource: String
|
34726
34742
|
|
34727
|
-
attr_accessor :ScriptRequestInfo
|
34743
|
+
attr_accessor :ScriptRequestInfo, :RequestFromSource
|
34728
34744
|
|
34729
|
-
def initialize(scriptrequestinfo=nil)
|
34745
|
+
def initialize(scriptrequestinfo=nil, requestfromsource=nil)
|
34730
34746
|
@ScriptRequestInfo = scriptrequestinfo
|
34747
|
+
@RequestFromSource = requestfromsource
|
34731
34748
|
end
|
34732
34749
|
|
34733
34750
|
def deserialize(params)
|
@@ -34735,6 +34752,7 @@ module TencentCloud
|
|
34735
34752
|
@ScriptRequestInfo = ScriptRequestInfo.new
|
34736
34753
|
@ScriptRequestInfo.deserialize(params['ScriptRequestInfo'])
|
34737
34754
|
end
|
34755
|
+
@RequestFromSource = params['RequestFromSource']
|
34738
34756
|
end
|
34739
34757
|
end
|
34740
34758
|
|
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.729
|
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-17 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|