tencentcloud-sdk-omics 3.0.913 → 3.0.915

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20221128/models.rb +127 -22
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 57389f3d31ccef560daf1760e6c7fec802367e28
4
- data.tar.gz: 601153040e30e7b9322a18844bbd6b2b69943013
3
+ metadata.gz: 885027da5f1364f72c9069169b7e9e178f949ae4
4
+ data.tar.gz: a29c0abaec57a84bb89de46d183b625d14db98a6
5
5
  SHA512:
6
- metadata.gz: 095e8ebdbd273003e43c67b49c66e8a7e16dadeb9cad9876f53ce2d75b336aaa6582a925b5b2812f868b595d41b7707c50e05fb1527762d77b7f8794eb98c1a8
7
- data.tar.gz: b13e6b1949041f5b40523887b93a0fd652c51e70dc52f5896d569fcb8602202b89224a740086fbbedb75338aebbe8ca596b6cfbbaa37cbaa796a75458595c631
6
+ metadata.gz: a557843eaff38ee6d379399aaa68129fb80e7d3359f67892ea646fc9325388cc6c9671b015277873dfe1bf692601697139b197d7bcb13c0b85ba66d98d2a6951
7
+ data.tar.gz: 241dabfd10c74842c4574afb48f84e053634432bb99266a5bdb686755fa43a143d575fe1284a407c43c079121ec5ab62dee50a349a41864343e2dbca4143ebef
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.913
1
+ 3.0.915
@@ -46,10 +46,16 @@ module TencentCloud
46
46
  # @param GitInfo: Git信息。
47
47
  # 注意:此字段可能返回 null,表示取不到有效值。
48
48
  # @type GitInfo: String
49
+ # @param GitSource: Git信息。
50
+ # 注意:此字段可能返回 null,表示取不到有效值。
51
+ # @type GitSource: :class:`Tencentcloud::Omics.v20221128.models.GitInfo`
49
52
 
50
- attr_accessor :Type, :ApplicationVersionId, :Name, :Description, :Entrypoint, :CreateTime, :CreatorName, :CreatorId, :GitInfo
53
+ attr_accessor :Type, :ApplicationVersionId, :Name, :Description, :Entrypoint, :CreateTime, :CreatorName, :CreatorId, :GitInfo, :GitSource
54
+ extend Gem::Deprecate
55
+ deprecate :GitInfo, :none, 2024, 9
56
+ deprecate :GitInfo=, :none, 2024, 9
51
57
 
52
- def initialize(type=nil, applicationversionid=nil, name=nil, description=nil, entrypoint=nil, createtime=nil, creatorname=nil, creatorid=nil, gitinfo=nil)
58
+ def initialize(type=nil, applicationversionid=nil, name=nil, description=nil, entrypoint=nil, createtime=nil, creatorname=nil, creatorid=nil, gitinfo=nil, gitsource=nil)
53
59
  @Type = type
54
60
  @ApplicationVersionId = applicationversionid
55
61
  @Name = name
@@ -59,6 +65,7 @@ module TencentCloud
59
65
  @CreatorName = creatorname
60
66
  @CreatorId = creatorid
61
67
  @GitInfo = gitinfo
68
+ @GitSource = gitsource
62
69
  end
63
70
 
64
71
  def deserialize(params)
@@ -71,6 +78,10 @@ module TencentCloud
71
78
  @CreatorName = params['CreatorName']
72
79
  @CreatorId = params['CreatorId']
73
80
  @GitInfo = params['GitInfo']
81
+ unless params['GitSource'].nil?
82
+ @GitSource = GitInfo.new
83
+ @GitSource.deserialize(params['GitSource'])
84
+ end
74
85
  end
75
86
  end
76
87
 
@@ -476,6 +487,8 @@ module TencentCloud
476
487
  # - Name:任务批次名称
477
488
  # - RunGroupId:任务批次ID
478
489
  # - Status:任务批次状态
490
+ # - ApplicationId:应用ID
491
+ # - Type:类型(支持WDL,NEXTFLOW)
479
492
  # @type Filters: Array
480
493
 
481
494
  attr_accessor :ProjectId, :Limit, :Offset, :Filters
@@ -546,7 +559,8 @@ module TencentCloud
546
559
  # - RunGroupId:任务批次ID
547
560
  # - Status:任务状态
548
561
  # - RunUuid:任务UUID
549
- # - UserDefinedId:用户定义ID
562
+ # - ApplicationId:应用ID
563
+ # - UserDefinedId:用户定义ID(批量运行表格第一列)
550
564
  # @type Filters: Array
551
565
 
552
566
  attr_accessor :ProjectId, :Limit, :Offset, :Filters
@@ -1167,14 +1181,19 @@ module TencentCloud
1167
1181
  # Git信息。
1168
1182
  class GitInfo < TencentCloud::Common::AbstractModel
1169
1183
  # @param GitHttpPath: Git地址。
1184
+ # 注意:此字段可能返回 null,表示取不到有效值。
1170
1185
  # @type GitHttpPath: String
1171
1186
  # @param GitUserName: Git用户名。
1187
+ # 注意:此字段可能返回 null,表示取不到有效值。
1172
1188
  # @type GitUserName: String
1173
1189
  # @param GitTokenOrPassword: Git密码或者Token。
1190
+ # 注意:此字段可能返回 null,表示取不到有效值。
1174
1191
  # @type GitTokenOrPassword: String
1175
1192
  # @param Branch: 分支。
1193
+ # 注意:此字段可能返回 null,表示取不到有效值。
1176
1194
  # @type Branch: String
1177
1195
  # @param Tag: 标签。
1196
+ # 注意:此字段可能返回 null,表示取不到有效值。
1178
1197
  # @type Tag: String
1179
1198
 
1180
1199
  attr_accessor :GitHttpPath, :GitUserName, :GitTokenOrPassword, :Branch, :Tag
@@ -1706,6 +1725,14 @@ module TencentCloud
1706
1725
  # @type ApplicationName: String
1707
1726
  # @param ApplicationType: 应用类型。
1708
1727
  # @type ApplicationType: String
1728
+ # @param ApplicationVersion: 应用版本。
1729
+ # 注意:此字段可能返回 null,表示取不到有效值。
1730
+ # @type ApplicationVersion: :class:`Tencentcloud::Omics.v20221128.models.ApplicationVersion`
1731
+ # @param AccessMode: 应用访问类型:
1732
+ # - PRIVATE 私有应用
1733
+ # - PUBLIC 公共应用
1734
+ # 注意:此字段可能返回 null,表示取不到有效值。
1735
+ # @type AccessMode: String
1709
1736
  # @param EnvironmentId: 环境ID。
1710
1737
  # @type EnvironmentId: String
1711
1738
  # @param EnvironmentName: 环境名称。
@@ -1719,13 +1746,36 @@ module TencentCloud
1719
1746
  # @type Description: String
1720
1747
  # @param Status: 任务状态。
1721
1748
  # @type Status: String
1749
+ # @param Type: 任务批次类型 :
1750
+ # - WDL
1751
+ # - NEXTFLOW
1752
+ # 注意:此字段可能返回 null,表示取不到有效值。
1753
+ # @type Type: String
1754
+ # @param WorkDir: 工作目录。
1755
+ # 注意:此字段可能返回 null,表示取不到有效值。
1756
+ # @type WorkDir: String
1722
1757
  # @param Input: 任务输入。
1723
1758
  # @type Input: String
1759
+ # @param InputType: 任务输入类型:
1760
+ # - JSON: 导入JSON
1761
+ # - MANUAL: 手动输入
1762
+ # - COS: COS文件
1763
+ # 注意:此字段可能返回 null,表示取不到有效值。
1764
+ # @type InputType: String
1765
+ # @param InputCosUri: 输入COS地址。
1766
+ # 注意:此字段可能返回 null,表示取不到有效值。
1767
+ # @type InputCosUri: String
1768
+ # @param InputTemplateId: 输入模版ID。
1769
+ # 注意:此字段可能返回 null,表示取不到有效值。
1770
+ # @type InputTemplateId: String
1724
1771
  # @param Option: WDL运行选项。
1725
1772
  # @type Option: :class:`Tencentcloud::Omics.v20221128.models.RunOption`
1726
1773
  # @param NFOption: Nextflow运行选项。
1727
1774
  # 注意:此字段可能返回 null,表示取不到有效值。
1728
1775
  # @type NFOption: :class:`Tencentcloud::Omics.v20221128.models.NFOption`
1776
+ # @param Volumes: 使用的缓存卷。
1777
+ # 注意:此字段可能返回 null,表示取不到有效值。
1778
+ # @type Volumes: Array
1729
1779
  # @param TotalRun: 任务总数量。
1730
1780
  # @type TotalRun: Integer
1731
1781
  # @param RunStatusCounts: 各状态任务的数量。
@@ -1734,6 +1784,9 @@ module TencentCloud
1734
1784
  # @type ExecutionTime: :class:`Tencentcloud::Omics.v20221128.models.ExecutionTime`
1735
1785
  # @param ErrorMessage: 错误信息。
1736
1786
  # @type ErrorMessage: String
1787
+ # @param ResultNotify: 运行结果通知方式。
1788
+ # 注意:此字段可能返回 null,表示取不到有效值。
1789
+ # @type ResultNotify: String
1737
1790
  # @param CreateTime: 创建时间。
1738
1791
  # @type CreateTime: String
1739
1792
  # @param UpdateTime: 更新时间。
@@ -1744,41 +1797,42 @@ module TencentCloud
1744
1797
  # @param CreatorId: 创建者ID。
1745
1798
  # 注意:此字段可能返回 null,表示取不到有效值。
1746
1799
  # @type CreatorId: String
1747
- # @param ResultNotify: 运行结果通知方式。
1748
- # 注意:此字段可能返回 null,表示取不到有效值。
1749
- # @type ResultNotify: String
1750
- # @param ApplicationVersion: 应用版本。
1751
- # 注意:此字段可能返回 null,表示取不到有效值。
1752
- # @type ApplicationVersion: :class:`Tencentcloud::Omics.v20221128.models.ApplicationVersion`
1753
1800
 
1754
- attr_accessor :RunGroupId, :ProjectId, :ProjectName, :ApplicationId, :ApplicationName, :ApplicationType, :EnvironmentId, :EnvironmentName, :TableId, :Name, :Description, :Status, :Input, :Option, :NFOption, :TotalRun, :RunStatusCounts, :ExecutionTime, :ErrorMessage, :CreateTime, :UpdateTime, :Creator, :CreatorId, :ResultNotify, :ApplicationVersion
1801
+ attr_accessor :RunGroupId, :ProjectId, :ProjectName, :ApplicationId, :ApplicationName, :ApplicationType, :ApplicationVersion, :AccessMode, :EnvironmentId, :EnvironmentName, :TableId, :Name, :Description, :Status, :Type, :WorkDir, :Input, :InputType, :InputCosUri, :InputTemplateId, :Option, :NFOption, :Volumes, :TotalRun, :RunStatusCounts, :ExecutionTime, :ErrorMessage, :ResultNotify, :CreateTime, :UpdateTime, :Creator, :CreatorId
1755
1802
 
1756
- def initialize(rungroupid=nil, projectid=nil, projectname=nil, applicationid=nil, applicationname=nil, applicationtype=nil, environmentid=nil, environmentname=nil, tableid=nil, name=nil, description=nil, status=nil, input=nil, option=nil, nfoption=nil, totalrun=nil, runstatuscounts=nil, executiontime=nil, errormessage=nil, createtime=nil, updatetime=nil, creator=nil, creatorid=nil, resultnotify=nil, applicationversion=nil)
1803
+ def initialize(rungroupid=nil, projectid=nil, projectname=nil, applicationid=nil, applicationname=nil, applicationtype=nil, applicationversion=nil, accessmode=nil, environmentid=nil, environmentname=nil, tableid=nil, name=nil, description=nil, status=nil, type=nil, workdir=nil, input=nil, inputtype=nil, inputcosuri=nil, inputtemplateid=nil, option=nil, nfoption=nil, volumes=nil, totalrun=nil, runstatuscounts=nil, executiontime=nil, errormessage=nil, resultnotify=nil, createtime=nil, updatetime=nil, creator=nil, creatorid=nil)
1757
1804
  @RunGroupId = rungroupid
1758
1805
  @ProjectId = projectid
1759
1806
  @ProjectName = projectname
1760
1807
  @ApplicationId = applicationid
1761
1808
  @ApplicationName = applicationname
1762
1809
  @ApplicationType = applicationtype
1810
+ @ApplicationVersion = applicationversion
1811
+ @AccessMode = accessmode
1763
1812
  @EnvironmentId = environmentid
1764
1813
  @EnvironmentName = environmentname
1765
1814
  @TableId = tableid
1766
1815
  @Name = name
1767
1816
  @Description = description
1768
1817
  @Status = status
1818
+ @Type = type
1819
+ @WorkDir = workdir
1769
1820
  @Input = input
1821
+ @InputType = inputtype
1822
+ @InputCosUri = inputcosuri
1823
+ @InputTemplateId = inputtemplateid
1770
1824
  @Option = option
1771
1825
  @NFOption = nfoption
1826
+ @Volumes = volumes
1772
1827
  @TotalRun = totalrun
1773
1828
  @RunStatusCounts = runstatuscounts
1774
1829
  @ExecutionTime = executiontime
1775
1830
  @ErrorMessage = errormessage
1831
+ @ResultNotify = resultnotify
1776
1832
  @CreateTime = createtime
1777
1833
  @UpdateTime = updatetime
1778
1834
  @Creator = creator
1779
1835
  @CreatorId = creatorid
1780
- @ResultNotify = resultnotify
1781
- @ApplicationVersion = applicationversion
1782
1836
  end
1783
1837
 
1784
1838
  def deserialize(params)
@@ -1788,13 +1842,23 @@ module TencentCloud
1788
1842
  @ApplicationId = params['ApplicationId']
1789
1843
  @ApplicationName = params['ApplicationName']
1790
1844
  @ApplicationType = params['ApplicationType']
1845
+ unless params['ApplicationVersion'].nil?
1846
+ @ApplicationVersion = ApplicationVersion.new
1847
+ @ApplicationVersion.deserialize(params['ApplicationVersion'])
1848
+ end
1849
+ @AccessMode = params['AccessMode']
1791
1850
  @EnvironmentId = params['EnvironmentId']
1792
1851
  @EnvironmentName = params['EnvironmentName']
1793
1852
  @TableId = params['TableId']
1794
1853
  @Name = params['Name']
1795
1854
  @Description = params['Description']
1796
1855
  @Status = params['Status']
1856
+ @Type = params['Type']
1857
+ @WorkDir = params['WorkDir']
1797
1858
  @Input = params['Input']
1859
+ @InputType = params['InputType']
1860
+ @InputCosUri = params['InputCosUri']
1861
+ @InputTemplateId = params['InputTemplateId']
1798
1862
  unless params['Option'].nil?
1799
1863
  @Option = RunOption.new
1800
1864
  @Option.deserialize(params['Option'])
@@ -1803,6 +1867,14 @@ module TencentCloud
1803
1867
  @NFOption = NFOption.new
1804
1868
  @NFOption.deserialize(params['NFOption'])
1805
1869
  end
1870
+ unless params['Volumes'].nil?
1871
+ @Volumes = []
1872
+ params['Volumes'].each do |i|
1873
+ volumeinfo_tmp = VolumeInfo.new
1874
+ volumeinfo_tmp.deserialize(i)
1875
+ @Volumes << volumeinfo_tmp
1876
+ end
1877
+ end
1806
1878
  @TotalRun = params['TotalRun']
1807
1879
  unless params['RunStatusCounts'].nil?
1808
1880
  @RunStatusCounts = []
@@ -1817,15 +1889,11 @@ module TencentCloud
1817
1889
  @ExecutionTime.deserialize(params['ExecutionTime'])
1818
1890
  end
1819
1891
  @ErrorMessage = params['ErrorMessage']
1892
+ @ResultNotify = params['ResultNotify']
1820
1893
  @CreateTime = params['CreateTime']
1821
1894
  @UpdateTime = params['UpdateTime']
1822
1895
  @Creator = params['Creator']
1823
1896
  @CreatorId = params['CreatorId']
1824
- @ResultNotify = params['ResultNotify']
1825
- unless params['ApplicationVersion'].nil?
1826
- @ApplicationVersion = ApplicationVersion.new
1827
- @ApplicationVersion.deserialize(params['ApplicationVersion'])
1828
- end
1829
1897
  end
1830
1898
  end
1831
1899
 
@@ -1885,6 +1953,9 @@ module TencentCloud
1885
1953
  # @param CallCached: Cache命中
1886
1954
  # 注意:此字段可能返回 null,表示取不到有效值。
1887
1955
  # @type CallCached: Boolean
1956
+ # @param WorkDir: 工作目录。
1957
+ # 注意:此字段可能返回 null,表示取不到有效值。
1958
+ # @type WorkDir: String
1888
1959
  # @param Stdout: 标准输出。
1889
1960
  # 注意:此字段可能返回 null,表示取不到有效值。
1890
1961
  # @type Stdout: String
@@ -1895,9 +1966,9 @@ module TencentCloud
1895
1966
  # 注意:此字段可能返回 null,表示取不到有效值。
1896
1967
  # @type Meta: String
1897
1968
 
1898
- attr_accessor :RunType, :RunId, :ParentId, :JobId, :CallName, :ScatterIndex, :Input, :Output, :Status, :ErrorMessage, :StartTime, :SubmitTime, :EndTime, :Command, :Runtime, :Preprocess, :PostProcess, :CallCached, :Stdout, :Stderr, :Meta
1969
+ attr_accessor :RunType, :RunId, :ParentId, :JobId, :CallName, :ScatterIndex, :Input, :Output, :Status, :ErrorMessage, :StartTime, :SubmitTime, :EndTime, :Command, :Runtime, :Preprocess, :PostProcess, :CallCached, :WorkDir, :Stdout, :Stderr, :Meta
1899
1970
 
1900
- def initialize(runtype=nil, runid=nil, parentid=nil, jobid=nil, callname=nil, scatterindex=nil, input=nil, output=nil, status=nil, errormessage=nil, starttime=nil, submittime=nil, endtime=nil, command=nil, runtime=nil, preprocess=nil, postprocess=nil, callcached=nil, stdout=nil, stderr=nil, meta=nil)
1971
+ def initialize(runtype=nil, runid=nil, parentid=nil, jobid=nil, callname=nil, scatterindex=nil, input=nil, output=nil, status=nil, errormessage=nil, starttime=nil, submittime=nil, endtime=nil, command=nil, runtime=nil, preprocess=nil, postprocess=nil, callcached=nil, workdir=nil, stdout=nil, stderr=nil, meta=nil)
1901
1972
  @RunType = runtype
1902
1973
  @RunId = runid
1903
1974
  @ParentId = parentid
@@ -1916,6 +1987,7 @@ module TencentCloud
1916
1987
  @Preprocess = preprocess
1917
1988
  @PostProcess = postprocess
1918
1989
  @CallCached = callcached
1990
+ @WorkDir = workdir
1919
1991
  @Stdout = stdout
1920
1992
  @Stderr = stderr
1921
1993
  @Meta = meta
@@ -1940,6 +2012,7 @@ module TencentCloud
1940
2012
  @Preprocess = params['Preprocess']
1941
2013
  @PostProcess = params['PostProcess']
1942
2014
  @CallCached = params['CallCached']
2015
+ @WorkDir = params['WorkDir']
1943
2016
  @Stdout = params['Stdout']
1944
2017
  @Stderr = params['Stderr']
1945
2018
  @Meta = params['Meta']
@@ -1962,15 +2035,19 @@ module TencentCloud
1962
2035
  # @param UseRelativeOutputPaths: 是否使用相对目录归档输出。
1963
2036
  # 注意:此字段可能返回 null,表示取不到有效值。
1964
2037
  # @type UseRelativeOutputPaths: Boolean
2038
+ # @param AddRunInfoToOutputDir: 是否添加运行信息到输出目录中
2039
+ # 注意:此字段可能返回 null,表示取不到有效值。
2040
+ # @type AddRunInfoToOutputDir: Boolean
1965
2041
 
1966
- attr_accessor :FailureMode, :UseCallCache, :UseErrorOnHold, :FinalWorkflowOutputsDir, :UseRelativeOutputPaths
2042
+ attr_accessor :FailureMode, :UseCallCache, :UseErrorOnHold, :FinalWorkflowOutputsDir, :UseRelativeOutputPaths, :AddRunInfoToOutputDir
1967
2043
 
1968
- def initialize(failuremode=nil, usecallcache=nil, useerroronhold=nil, finalworkflowoutputsdir=nil, userelativeoutputpaths=nil)
2044
+ def initialize(failuremode=nil, usecallcache=nil, useerroronhold=nil, finalworkflowoutputsdir=nil, userelativeoutputpaths=nil, addruninfotooutputdir=nil)
1969
2045
  @FailureMode = failuremode
1970
2046
  @UseCallCache = usecallcache
1971
2047
  @UseErrorOnHold = useerroronhold
1972
2048
  @FinalWorkflowOutputsDir = finalworkflowoutputsdir
1973
2049
  @UseRelativeOutputPaths = userelativeoutputpaths
2050
+ @AddRunInfoToOutputDir = addruninfotooutputdir
1974
2051
  end
1975
2052
 
1976
2053
  def deserialize(params)
@@ -1979,6 +2056,7 @@ module TencentCloud
1979
2056
  @UseErrorOnHold = params['UseErrorOnHold']
1980
2057
  @FinalWorkflowOutputsDir = params['FinalWorkflowOutputsDir']
1981
2058
  @UseRelativeOutputPaths = params['UseRelativeOutputPaths']
2059
+ @AddRunInfoToOutputDir = params['AddRunInfoToOutputDir']
1982
2060
  end
1983
2061
  end
1984
2062
 
@@ -2385,6 +2463,33 @@ module TencentCloud
2385
2463
  end
2386
2464
  end
2387
2465
 
2466
+ # 缓存卷信息。
2467
+ class VolumeInfo < TencentCloud::Common::AbstractModel
2468
+ # @param VolumeId: 缓存卷ID。
2469
+ # 注意:此字段可能返回 null,表示取不到有效值。
2470
+ # @type VolumeId: String
2471
+ # @param Name: 名称。
2472
+ # 注意:此字段可能返回 null,表示取不到有效值。
2473
+ # @type Name: String
2474
+ # @param MountPath: 挂载路径。
2475
+ # 注意:此字段可能返回 null,表示取不到有效值。
2476
+ # @type MountPath: String
2477
+
2478
+ attr_accessor :VolumeId, :Name, :MountPath
2479
+
2480
+ def initialize(volumeid=nil, name=nil, mountpath=nil)
2481
+ @VolumeId = volumeid
2482
+ @Name = name
2483
+ @MountPath = mountpath
2484
+ end
2485
+
2486
+ def deserialize(params)
2487
+ @VolumeId = params['VolumeId']
2488
+ @Name = params['Name']
2489
+ @MountPath = params['MountPath']
2490
+ end
2491
+ end
2492
+
2388
2493
  end
2389
2494
  end
2390
2495
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-omics
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.913
4
+ version: 3.0.915
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-09-24 00:00:00.000000000 Z
11
+ date: 2024-09-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common