tencentcloud-sdk-omics 3.0.904 → 3.0.906

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 +11 -7
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 552442585fd42bb141878e61956afe54ccce2c5e
4
- data.tar.gz: f60a7e0433160fa0a265d5d16540962cbba846b4
3
+ metadata.gz: 4138394133f253c1dfba6a399b0231c80a7f7715
4
+ data.tar.gz: 26f7406bc04b8725ee7d5e596a96a9f0f5458352
5
5
  SHA512:
6
- metadata.gz: b37df2e3148115e208e2799cdbd34ec3645e98413b6c08104ca868c27dd33c3f6a63e0e66443ad711811ce5943a5c602685447647afb796ca1d751ef3f2da412
7
- data.tar.gz: 26be2aab4a3e95c60ec70bb11fb4b8a43d2e5a002f4108fd3d2b33fe493d8849e5e634984103d177d47056495af6bf312d10cf641cdd2166dee4d8e17377e5df
6
+ metadata.gz: 7a74fcdbd0a13af0a5a6d4cbae94240726d769f206ace3a797eaa37ce7fa53bf221ab0a19507b333bf353b6fdf72e9dc382d136f6f33ce862111dafa651b796f
7
+ data.tar.gz: 71a73cb3e75b3b336152b4238ec21d2a474311b1376f1e3ba278dc7a5b235dae549385b99b5ebc03f046ab7ca467f1da0d994f5b6b79e6e08130f0dee2e15335
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.904
1
+ 3.0.906
@@ -1325,20 +1325,23 @@ module TencentCloud
1325
1325
  # 注意:此字段可能返回 null,表示取不到有效值。
1326
1326
  # @type Resume: Boolean
1327
1327
  # @param NFVersion: Nextflow引擎版本,取值范围:
1328
- # - 22.10.4
1329
- # - 22.10.8
1328
+ # - 22.10.7
1330
1329
  # - 23.10.1
1331
1330
  # 注意:此字段可能返回 null,表示取不到有效值。
1332
1331
  # @type NFVersion: String
1332
+ # @param LaunchDir: 启动路径。可填写指定缓存卷内的绝对路径,nextflow run 命令将在此路径执行。当WorkDir为COS路径时必填;当WorkDir为缓存卷路径时选填,不填默认使用WorkDir作为LaunchDir。
1333
+ # 注意:此字段可能返回 null,表示取不到有效值。
1334
+ # @type LaunchDir: String
1333
1335
 
1334
- attr_accessor :Config, :Profile, :Report, :Resume, :NFVersion
1336
+ attr_accessor :Config, :Profile, :Report, :Resume, :NFVersion, :LaunchDir
1335
1337
 
1336
- def initialize(config=nil, profile=nil, report=nil, resume=nil, nfversion=nil)
1338
+ def initialize(config=nil, profile=nil, report=nil, resume=nil, nfversion=nil, launchdir=nil)
1337
1339
  @Config = config
1338
1340
  @Profile = profile
1339
1341
  @Report = report
1340
1342
  @Resume = resume
1341
1343
  @NFVersion = nfversion
1344
+ @LaunchDir = launchdir
1342
1345
  end
1343
1346
 
1344
1347
  def deserialize(params)
@@ -1347,6 +1350,7 @@ module TencentCloud
1347
1350
  @Report = params['Report']
1348
1351
  @Resume = params['Resume']
1349
1352
  @NFVersion = params['NFVersion']
1353
+ @LaunchDir = params['LaunchDir']
1350
1354
  end
1351
1355
  end
1352
1356
 
@@ -1533,8 +1537,8 @@ module TencentCloud
1533
1537
 
1534
1538
  attr_accessor :RunUuid, :ProjectId, :ApplicationId, :RunGroupId, :EnvironmentId, :UserDefinedId, :TableId, :TableRowUuid, :Status, :Input, :Option, :ExecutionTime, :Cache, :ErrorMessage, :CreateTime, :UpdateTime
1535
1539
  extend Gem::Deprecate
1536
- deprecate :Option, :none, 2024, 6
1537
- deprecate :Option=, :none, 2024, 6
1540
+ deprecate :Option, :none, 2024, 9
1541
+ deprecate :Option=, :none, 2024, 9
1538
1542
 
1539
1543
  def initialize(runuuid=nil, projectid=nil, applicationid=nil, rungroupid=nil, environmentid=nil, userdefinedid=nil, tableid=nil, tablerowuuid=nil, status=nil, input=nil, option=nil, executiontime=nil, cache=nil, errormessage=nil, createtime=nil, updatetime=nil)
1540
1544
  @RunUuid = runuuid
@@ -1612,7 +1616,7 @@ module TencentCloud
1612
1616
  # @type Option: :class:`Tencentcloud::Omics.v20221128.models.RunOption`
1613
1617
  # @param NFOption: Nextflow运行选项。
1614
1618
  # @type NFOption: :class:`Tencentcloud::Omics.v20221128.models.NFOption`
1615
- # @param WorkDir: 工作目录,可填写指定缓存卷内的绝对路径,不填使用默认缓存卷内的默认路径,暂时仅支持Nextflow
1619
+ # @param WorkDir: 工作目录,当前仅支持Nextflow。可填写指定缓存卷内的绝对路径或者COS路径,不填使用默认缓存卷内的默认路径。如果使用COS路径,NFOption中LaunchDir需填写指定缓存卷内的绝对路径作为启动路径。
1616
1620
  # @type WorkDir: String
1617
1621
  # @param AccessMode: 访问模式,不填默认私有。取值范围
1618
1622
  # - PRIVATE:私有应用
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.904
4
+ version: 3.0.906
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-11 00:00:00.000000000 Z
11
+ date: 2024-09-15 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common