tencentcloud-sdk-omics 3.0.905 → 3.0.907

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: 53a900acfbe105fc924ac6db26690f6b0d405ee4
4
+ data.tar.gz: cb8182ce09b70b981afae1316d4c1b5e24935c9a
5
5
  SHA512:
6
- metadata.gz: 5035f27495dd9f1b2519d86d89650db99d3099cf7862d3e4f5661dca379c0e77ab023e65793b7a4afa6236adc4fa2e828bc020dfa9de158f7e573e960a857f34
7
- data.tar.gz: 62189c08cc317a294997332dd0430f5c1b9fe13937dec89f8e06dabec7c267c568a5e92da1c8f2fffea73228608b2283fc5be755db8ac051c1caf494f6062113
6
+ metadata.gz: ea3949771c1a6070d83b02d135d99614271cee8f7ecd38226969e53be9df106e3bfd3c98f05ec9e9abac3cc62109a4f54754fe70e66500f2115841e62b4a4101
7
+ data.tar.gz: a57e356166fdae849ed402c0f75d4900ac5459387f9746716ff52b162e892ddf7ee481dddd1ceadccfdb4bdbed8e33e9544b5c6d8b5eb730c15cec78b3903761
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.905
1
+ 3.0.907
@@ -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.907
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-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common