tencentcloud-sdk-wedata 3.0.1022 → 3.0.1023
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 +30 -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: 6425edc9e99dc03b247d9b385636eb93132704bc
|
4
|
+
data.tar.gz: 3cd6e06a0342377ae0ce7bb6dd212883467a0363
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 13aaedc8a7145ed9ee2046f651e3665268cf2122e4ed74233b385792cb26278c82049e23fb2c3107b29cacdbdfec424e524d5250b729d49b649cf084add88ef4
|
7
|
+
data.tar.gz: c973da7c6ee965b9cb4cc3d51543676567a0fd0ec8a909dfe8e4c019047a3cfb8058b2ada8ca00656315819ed19ca290bc161385b864e5df00b5ae12e0943631
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.1023
|
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
|
|
@@ -8620,10 +8624,20 @@ module TencentCloud
|
|
8620
8624
|
# - cycle 周期工作流
|
8621
8625
|
# - manual 手动工作流
|
8622
8626
|
# @type WorkflowType: String
|
8623
|
-
|
8624
|
-
|
8625
|
-
|
8626
|
-
|
8627
|
+
# @param TaskTypeIdList: 任务类型id列表
|
8628
|
+
# @type TaskTypeIdList: Array
|
8629
|
+
# @param InChargeIdList: 责任人id列表
|
8630
|
+
# @type InChargeIdList: Array
|
8631
|
+
# @param OnlyMe: 自身责任人
|
8632
|
+
# @type OnlyMe: Boolean
|
8633
|
+
# @param IncludeCodeTemplate: 是否包含代码模版
|
8634
|
+
# @type IncludeCodeTemplate: Boolean
|
8635
|
+
# @param FolderForm: 编排空间 或代码模版 orchestrationSpace 编排空间 template模版管理
|
8636
|
+
# @type FolderForm: String
|
8637
|
+
|
8638
|
+
attr_accessor :ProjectId, :FirstLevelPull, :FolderId, :WorkflowId, :Keyword, :IncludeWorkflow, :IncludeTask, :IncludeVirtualTask, :TaskFolderId, :DisplayType, :IncludeTaskFolder, :NewFolderTreeMode, :TaskNodeId, :WorkflowType, :TaskTypeIdList, :InChargeIdList, :OnlyMe, :IncludeCodeTemplate, :FolderForm
|
8639
|
+
|
8640
|
+
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
8641
|
@ProjectId = projectid
|
8628
8642
|
@FirstLevelPull = firstlevelpull
|
8629
8643
|
@FolderId = folderid
|
@@ -8638,6 +8652,11 @@ module TencentCloud
|
|
8638
8652
|
@NewFolderTreeMode = newfoldertreemode
|
8639
8653
|
@TaskNodeId = tasknodeid
|
8640
8654
|
@WorkflowType = workflowtype
|
8655
|
+
@TaskTypeIdList = tasktypeidlist
|
8656
|
+
@InChargeIdList = inchargeidlist
|
8657
|
+
@OnlyMe = onlyme
|
8658
|
+
@IncludeCodeTemplate = includecodetemplate
|
8659
|
+
@FolderForm = folderform
|
8641
8660
|
end
|
8642
8661
|
|
8643
8662
|
def deserialize(params)
|
@@ -8655,6 +8674,11 @@ module TencentCloud
|
|
8655
8674
|
@NewFolderTreeMode = params['NewFolderTreeMode']
|
8656
8675
|
@TaskNodeId = params['TaskNodeId']
|
8657
8676
|
@WorkflowType = params['WorkflowType']
|
8677
|
+
@TaskTypeIdList = params['TaskTypeIdList']
|
8678
|
+
@InChargeIdList = params['InChargeIdList']
|
8679
|
+
@OnlyMe = params['OnlyMe']
|
8680
|
+
@IncludeCodeTemplate = params['IncludeCodeTemplate']
|
8681
|
+
@FolderForm = params['FolderForm']
|
8658
8682
|
end
|
8659
8683
|
end
|
8660
8684
|
|
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.1023
|
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-19 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|