tencentcloud-sdk-omics 3.0.905 → 3.0.906

Sign up to get free protection for your applications and to get access to all the features.
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: 752df27b54e22def1e382d5d69db376c9cc8624d
4
- data.tar.gz: 1b24623ff8fddb16c73311266d95cd8e0289f77e
3
+ metadata.gz: 4138394133f253c1dfba6a399b0231c80a7f7715
4
+ data.tar.gz: 26f7406bc04b8725ee7d5e596a96a9f0f5458352
5
5
  SHA512:
6
- metadata.gz: 5035f27495dd9f1b2519d86d89650db99d3099cf7862d3e4f5661dca379c0e77ab023e65793b7a4afa6236adc4fa2e828bc020dfa9de158f7e573e960a857f34
7
- data.tar.gz: 62189c08cc317a294997332dd0430f5c1b9fe13937dec89f8e06dabec7c267c568a5e92da1c8f2fffea73228608b2283fc5be755db8ac051c1caf494f6062113
6
+ metadata.gz: 7a74fcdbd0a13af0a5a6d4cbae94240726d769f206ace3a797eaa37ce7fa53bf221ab0a19507b333bf353b6fdf72e9dc382d136f6f33ce862111dafa651b796f
7
+ data.tar.gz: 71a73cb3e75b3b336152b4238ec21d2a474311b1376f1e3ba278dc7a5b235dae549385b99b5ebc03f046ab7ca467f1da0d994f5b6b79e6e08130f0dee2e15335
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.905
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.905
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-12 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