tencentcloud-sdk-wedata 3.0.1022 → 3.0.1024
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/models.rb +43 -10
- 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: 1862f26fbf207e1807513ba145de21e46e31b409
|
4
|
+
data.tar.gz: 0c58c6423cacf4f081df48b60db987b2f1267417
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: bdc60290798b96b341541ca9350bd710db9ec1002f6af201e3c013442d93f67819f542f131cd4057449a4a2f794de4558139f40eeb0759cc4632712e09918876
|
7
|
+
data.tar.gz: 161a25b9301d87e7abf2494b56af24e0204c302f93e17852052c5659b19178688f6098956cfc7dd05e48309f23de19f4f480a926b972399db22e78cc978ad30a
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1024
|
data/lib/v20210820/models.rb
CHANGED
@@ -3820,19 +3820,23 @@ module TencentCloud
|
|
3820
3820
|
# @type FolderName: String
|
3821
3821
|
# @param ParentsFolderId: 父文件夹ID
|
3822
3822
|
# @type ParentsFolderId: String
|
3823
|
+
# @param FolderForm: 文件夹来源 template管理,orchestrationSpace 编排空间
|
3824
|
+
# @type FolderForm: String
|
3823
3825
|
|
3824
|
-
attr_accessor :ProjectId, :FolderName, :ParentsFolderId
|
3826
|
+
attr_accessor :ProjectId, :FolderName, :ParentsFolderId, :FolderForm
|
3825
3827
|
|
3826
|
-
def initialize(projectid=nil, foldername=nil, parentsfolderid=nil)
|
3828
|
+
def initialize(projectid=nil, foldername=nil, parentsfolderid=nil, folderform=nil)
|
3827
3829
|
@ProjectId = projectid
|
3828
3830
|
@FolderName = foldername
|
3829
3831
|
@ParentsFolderId = parentsfolderid
|
3832
|
+
@FolderForm = folderform
|
3830
3833
|
end
|
3831
3834
|
|
3832
3835
|
def deserialize(params)
|
3833
3836
|
@ProjectId = params['ProjectId']
|
3834
3837
|
@FolderName = params['FolderName']
|
3835
3838
|
@ParentsFolderId = params['ParentsFolderId']
|
3839
|
+
@FolderForm = params['FolderForm']
|
3836
3840
|
end
|
3837
3841
|
end
|
3838
3842
|
|
@@ -5730,10 +5734,13 @@ module TencentCloud
|
|
5730
5734
|
# @param LastAccessTimeByTables: 库下表的最新访问时间
|
5731
5735
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
5732
5736
|
# @type LastAccessTimeByTables: Integer
|
5737
|
+
# @param DatabaseGuid: 库guid
|
5738
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
5739
|
+
# @type DatabaseGuid: String
|
5733
5740
|
|
5734
|
-
attr_accessor :ProjectId, :MetastoreType, :DatasourceName, :DatasourceId, :ProjectName, :Category, :Description, :Instance, :Region, :Status, :DatabaseName, :ProjectDisplayName, :OwnerAccountName, :DisplayName, :DatabaseId, :Catalog, :StorageSize, :StorageSizeWithUnit, :CreateTime, :TableCount, :DatasourceList, :CollectJobId, :CollectJobName, :ClusterId, :ClusterName, :ModifiedTimeByTables, :LastAccessTimeByTables
|
5741
|
+
attr_accessor :ProjectId, :MetastoreType, :DatasourceName, :DatasourceId, :ProjectName, :Category, :Description, :Instance, :Region, :Status, :DatabaseName, :ProjectDisplayName, :OwnerAccountName, :DisplayName, :DatabaseId, :Catalog, :StorageSize, :StorageSizeWithUnit, :CreateTime, :TableCount, :DatasourceList, :CollectJobId, :CollectJobName, :ClusterId, :ClusterName, :ModifiedTimeByTables, :LastAccessTimeByTables, :DatabaseGuid
|
5735
5742
|
|
5736
|
-
def initialize(projectid=nil, metastoretype=nil, datasourcename=nil, datasourceid=nil, projectname=nil, category=nil, description=nil, instance=nil, region=nil, status=nil, databasename=nil, projectdisplayname=nil, owneraccountname=nil, displayname=nil, databaseid=nil, catalog=nil, storagesize=nil, storagesizewithunit=nil, createtime=nil, tablecount=nil, datasourcelist=nil, collectjobid=nil, collectjobname=nil, clusterid=nil, clustername=nil, modifiedtimebytables=nil, lastaccesstimebytables=nil)
|
5743
|
+
def initialize(projectid=nil, metastoretype=nil, datasourcename=nil, datasourceid=nil, projectname=nil, category=nil, description=nil, instance=nil, region=nil, status=nil, databasename=nil, projectdisplayname=nil, owneraccountname=nil, displayname=nil, databaseid=nil, catalog=nil, storagesize=nil, storagesizewithunit=nil, createtime=nil, tablecount=nil, datasourcelist=nil, collectjobid=nil, collectjobname=nil, clusterid=nil, clustername=nil, modifiedtimebytables=nil, lastaccesstimebytables=nil, databaseguid=nil)
|
5737
5744
|
@ProjectId = projectid
|
5738
5745
|
@MetastoreType = metastoretype
|
5739
5746
|
@DatasourceName = datasourcename
|
@@ -5761,6 +5768,7 @@ module TencentCloud
|
|
5761
5768
|
@ClusterName = clustername
|
5762
5769
|
@ModifiedTimeByTables = modifiedtimebytables
|
5763
5770
|
@LastAccessTimeByTables = lastaccesstimebytables
|
5771
|
+
@DatabaseGuid = databaseguid
|
5764
5772
|
end
|
5765
5773
|
|
5766
5774
|
def deserialize(params)
|
@@ -5798,6 +5806,7 @@ module TencentCloud
|
|
5798
5806
|
@ClusterName = params['ClusterName']
|
5799
5807
|
@ModifiedTimeByTables = params['ModifiedTimeByTables']
|
5800
5808
|
@LastAccessTimeByTables = params['LastAccessTimeByTables']
|
5809
|
+
@DatabaseGuid = params['DatabaseGuid']
|
5801
5810
|
end
|
5802
5811
|
end
|
5803
5812
|
|
@@ -8620,10 +8629,20 @@ module TencentCloud
|
|
8620
8629
|
# - cycle 周期工作流
|
8621
8630
|
# - manual 手动工作流
|
8622
8631
|
# @type WorkflowType: String
|
8623
|
-
|
8624
|
-
|
8625
|
-
|
8626
|
-
|
8632
|
+
# @param TaskTypeIdList: 任务类型id列表
|
8633
|
+
# @type TaskTypeIdList: Array
|
8634
|
+
# @param InChargeIdList: 责任人id列表
|
8635
|
+
# @type InChargeIdList: Array
|
8636
|
+
# @param OnlyMe: 自身责任人
|
8637
|
+
# @type OnlyMe: Boolean
|
8638
|
+
# @param IncludeCodeTemplate: 是否包含代码模版
|
8639
|
+
# @type IncludeCodeTemplate: Boolean
|
8640
|
+
# @param FolderForm: 编排空间 或代码模版 orchestrationSpace 编排空间 template模版管理
|
8641
|
+
# @type FolderForm: String
|
8642
|
+
|
8643
|
+
attr_accessor :ProjectId, :FirstLevelPull, :FolderId, :WorkflowId, :Keyword, :IncludeWorkflow, :IncludeTask, :IncludeVirtualTask, :TaskFolderId, :DisplayType, :IncludeTaskFolder, :NewFolderTreeMode, :TaskNodeId, :WorkflowType, :TaskTypeIdList, :InChargeIdList, :OnlyMe, :IncludeCodeTemplate, :FolderForm
|
8644
|
+
|
8645
|
+
def initialize(projectid=nil, firstlevelpull=nil, folderid=nil, workflowid=nil, keyword=nil, includeworkflow=nil, includetask=nil, includevirtualtask=nil, taskfolderid=nil, displaytype=nil, includetaskfolder=nil, newfoldertreemode=nil, tasknodeid=nil, workflowtype=nil, tasktypeidlist=nil, inchargeidlist=nil, onlyme=nil, includecodetemplate=nil, folderform=nil)
|
8627
8646
|
@ProjectId = projectid
|
8628
8647
|
@FirstLevelPull = firstlevelpull
|
8629
8648
|
@FolderId = folderid
|
@@ -8638,6 +8657,11 @@ module TencentCloud
|
|
8638
8657
|
@NewFolderTreeMode = newfoldertreemode
|
8639
8658
|
@TaskNodeId = tasknodeid
|
8640
8659
|
@WorkflowType = workflowtype
|
8660
|
+
@TaskTypeIdList = tasktypeidlist
|
8661
|
+
@InChargeIdList = inchargeidlist
|
8662
|
+
@OnlyMe = onlyme
|
8663
|
+
@IncludeCodeTemplate = includecodetemplate
|
8664
|
+
@FolderForm = folderform
|
8641
8665
|
end
|
8642
8666
|
|
8643
8667
|
def deserialize(params)
|
@@ -8655,6 +8679,11 @@ module TencentCloud
|
|
8655
8679
|
@NewFolderTreeMode = params['NewFolderTreeMode']
|
8656
8680
|
@TaskNodeId = params['TaskNodeId']
|
8657
8681
|
@WorkflowType = params['WorkflowType']
|
8682
|
+
@TaskTypeIdList = params['TaskTypeIdList']
|
8683
|
+
@InChargeIdList = params['InChargeIdList']
|
8684
|
+
@OnlyMe = params['OnlyMe']
|
8685
|
+
@IncludeCodeTemplate = params['IncludeCodeTemplate']
|
8686
|
+
@FolderForm = params['FolderForm']
|
8658
8687
|
end
|
8659
8688
|
end
|
8660
8689
|
|
@@ -17168,10 +17197,12 @@ module TencentCloud
|
|
17168
17197
|
# @type SinkSchemaName: String
|
17169
17198
|
# @param Env: 获取源信息的环境
|
17170
17199
|
# @type Env: String
|
17200
|
+
# @param WriteMode: doris写入模式配置
|
17201
|
+
# @type WriteMode: String
|
17171
17202
|
|
17172
|
-
attr_accessor :ProjectId, :SinkDatabase, :Id, :MsType, :DatasourceId, :SourceDatabase, :TableName, :SinkType, :SchemaName, :SourceFieldInfoList, :Partitions, :Properties, :TableMode, :TableVersion, :UpsertFlag, :TableComment, :AddDataFiles, :AddEqualityDeletes, :AddPositionDeletes, :AddDeleteFiles, :TargetDatasourceId, :UpsertKeys, :TableBaseInfo, :SinkSchemaName, :Env
|
17203
|
+
attr_accessor :ProjectId, :SinkDatabase, :Id, :MsType, :DatasourceId, :SourceDatabase, :TableName, :SinkType, :SchemaName, :SourceFieldInfoList, :Partitions, :Properties, :TableMode, :TableVersion, :UpsertFlag, :TableComment, :AddDataFiles, :AddEqualityDeletes, :AddPositionDeletes, :AddDeleteFiles, :TargetDatasourceId, :UpsertKeys, :TableBaseInfo, :SinkSchemaName, :Env, :WriteMode
|
17173
17204
|
|
17174
|
-
def initialize(projectid=nil, sinkdatabase=nil, id=nil, mstype=nil, datasourceid=nil, sourcedatabase=nil, tablename=nil, sinktype=nil, schemaname=nil, sourcefieldinfolist=nil, partitions=nil, properties=nil, tablemode=nil, tableversion=nil, upsertflag=nil, tablecomment=nil, adddatafiles=nil, addequalitydeletes=nil, addpositiondeletes=nil, adddeletefiles=nil, targetdatasourceid=nil, upsertkeys=nil, tablebaseinfo=nil, sinkschemaname=nil, env=nil)
|
17205
|
+
def initialize(projectid=nil, sinkdatabase=nil, id=nil, mstype=nil, datasourceid=nil, sourcedatabase=nil, tablename=nil, sinktype=nil, schemaname=nil, sourcefieldinfolist=nil, partitions=nil, properties=nil, tablemode=nil, tableversion=nil, upsertflag=nil, tablecomment=nil, adddatafiles=nil, addequalitydeletes=nil, addpositiondeletes=nil, adddeletefiles=nil, targetdatasourceid=nil, upsertkeys=nil, tablebaseinfo=nil, sinkschemaname=nil, env=nil, writemode=nil)
|
17175
17206
|
@ProjectId = projectid
|
17176
17207
|
@SinkDatabase = sinkdatabase
|
17177
17208
|
@Id = id
|
@@ -17197,6 +17228,7 @@ module TencentCloud
|
|
17197
17228
|
@TableBaseInfo = tablebaseinfo
|
17198
17229
|
@SinkSchemaName = sinkschemaname
|
17199
17230
|
@Env = env
|
17231
|
+
@WriteMode = writemode
|
17200
17232
|
end
|
17201
17233
|
|
17202
17234
|
def deserialize(params)
|
@@ -17249,6 +17281,7 @@ module TencentCloud
|
|
17249
17281
|
end
|
17250
17282
|
@SinkSchemaName = params['SinkSchemaName']
|
17251
17283
|
@Env = params['Env']
|
17284
|
+
@WriteMode = params['WriteMode']
|
17252
17285
|
end
|
17253
17286
|
end
|
17254
17287
|
|
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.1024
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-20 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|