tencentcloud-sdk-omics 3.0.770 → 3.0.771

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 +45 -17
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: a6ef9a3ede667d8fbab2891d371c7e516ab9d998
4
- data.tar.gz: 63f94f7fdacf1c11406d49a6936cdb08f7651a0b
3
+ metadata.gz: 91cc29f263c83aba3f34f117d72c16f9486e8e4c
4
+ data.tar.gz: 79260e753c89e4ec0eaec0f06c8893d024da6015
5
5
  SHA512:
6
- metadata.gz: 967830a0cf0dbd87524163044d7469ed17ed1ba8f3e069119a35e00ce624ce74543d4020d7a1972e3d0803e72fe60cde865d9e58718dac8e6a525df9a412c83f
7
- data.tar.gz: da8c49f9f3d64b87c84d5a98146facf8218e1742de72d1d867aaf38d614e4ff7ed73068ff7f022086e1511c09866b435cc0ef6a521dc505ad97215aa1b6dca81
6
+ metadata.gz: e0c8d028f14cd9e91e062fd1acd09717645bb6d5f7b10e4c78155e76695edbaca87ff6b9d9517001ada86938a026cf00a7c32dd423052480d375b1b1be7dfb05
7
+ data.tar.gz: e9171b26692768a989424da998e56e5f55fb9db6955df71730f5a66e6917b9bc8f471608f5c2c4b8c947bb0dc32b6d3564789324d14093466584b604d4a05d40
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.770
1
+ 3.0.771
@@ -128,16 +128,19 @@ module TencentCloud
128
128
  # @param Type: 计算集群类型,取值范围:
129
129
  # - KUBERNETES
130
130
  # @type Type: String
131
+ # @param ServiceCidr: 计算集群Service CIDR,不能与VPC网段重合。
132
+ # @type ServiceCidr: String
131
133
  # @param ResourceQuota: 资源配额。
132
134
  # @type ResourceQuota: :class:`Tencentcloud::Omics.v20221128.models.ResourceQuota`
133
135
  # @param LimitRange: 限制范围。
134
136
  # @type LimitRange: :class:`Tencentcloud::Omics.v20221128.models.LimitRange`
135
137
 
136
- attr_accessor :Zone, :Type, :ResourceQuota, :LimitRange
138
+ attr_accessor :Zone, :Type, :ServiceCidr, :ResourceQuota, :LimitRange
137
139
 
138
- def initialize(zone=nil, type=nil, resourcequota=nil, limitrange=nil)
140
+ def initialize(zone=nil, type=nil, servicecidr=nil, resourcequota=nil, limitrange=nil)
139
141
  @Zone = zone
140
142
  @Type = type
143
+ @ServiceCidr = servicecidr
141
144
  @ResourceQuota = resourcequota
142
145
  @LimitRange = limitrange
143
146
  end
@@ -145,6 +148,7 @@ module TencentCloud
145
148
  def deserialize(params)
146
149
  @Zone = params['Zone']
147
150
  @Type = params['Type']
151
+ @ServiceCidr = params['ServiceCidr']
148
152
  unless params['ResourceQuota'].nil?
149
153
  @ResourceQuota = ResourceQuota.new
150
154
  @ResourceQuota.deserialize(params['ResourceQuota'])
@@ -633,6 +637,10 @@ module TencentCloud
633
637
  # @type Status: String
634
638
  # @param Available: 环境是否可用。环境需要可用才能投递计算任务。
635
639
  # @type Available: Boolean
640
+ # @param IsDefault: 环境是否为默认环境。
641
+ # @type IsDefault: Boolean
642
+ # @param IsManaged: 环境是否为托管环境。
643
+ # @type IsManaged: Boolean
636
644
  # @param Message: 环境信息。
637
645
  # @type Message: String
638
646
  # @param ResourceIds: 云资源ID。
@@ -644,9 +652,9 @@ module TencentCloud
644
652
  # 注意:此字段可能返回 null,表示取不到有效值。
645
653
  # @type CreationTime: String
646
654
 
647
- attr_accessor :EnvironmentId, :Name, :Description, :Region, :Type, :Status, :Available, :Message, :ResourceIds, :LastWorkflowUuid, :CreationTime
655
+ attr_accessor :EnvironmentId, :Name, :Description, :Region, :Type, :Status, :Available, :IsDefault, :IsManaged, :Message, :ResourceIds, :LastWorkflowUuid, :CreationTime
648
656
 
649
- def initialize(environmentid=nil, name=nil, description=nil, region=nil, type=nil, status=nil, available=nil, message=nil, resourceids=nil, lastworkflowuuid=nil, creationtime=nil)
657
+ def initialize(environmentid=nil, name=nil, description=nil, region=nil, type=nil, status=nil, available=nil, isdefault=nil, ismanaged=nil, message=nil, resourceids=nil, lastworkflowuuid=nil, creationtime=nil)
650
658
  @EnvironmentId = environmentid
651
659
  @Name = name
652
660
  @Description = description
@@ -654,6 +662,8 @@ module TencentCloud
654
662
  @Type = type
655
663
  @Status = status
656
664
  @Available = available
665
+ @IsDefault = isdefault
666
+ @IsManaged = ismanaged
657
667
  @Message = message
658
668
  @ResourceIds = resourceids
659
669
  @LastWorkflowUuid = lastworkflowuuid
@@ -668,6 +678,8 @@ module TencentCloud
668
678
  @Type = params['Type']
669
679
  @Status = params['Status']
670
680
  @Available = params['Available']
681
+ @IsDefault = params['IsDefault']
682
+ @IsManaged = params['IsManaged']
671
683
  @Message = params['Message']
672
684
  unless params['ResourceIds'].nil?
673
685
  @ResourceIds = ResourceIds.new
@@ -1071,14 +1083,21 @@ module TencentCloud
1071
1083
  # @param Resume: Resume。
1072
1084
  # 注意:此字段可能返回 null,表示取不到有效值。
1073
1085
  # @type Resume: Boolean
1086
+ # @param NFVersion: Nextflow引擎版本,取值范围:
1087
+ # - 22.10.4
1088
+ # - 22.10.8
1089
+ # - 23.10.1
1090
+ # 注意:此字段可能返回 null,表示取不到有效值。
1091
+ # @type NFVersion: String
1074
1092
 
1075
- attr_accessor :Config, :Profile, :Report, :Resume
1093
+ attr_accessor :Config, :Profile, :Report, :Resume, :NFVersion
1076
1094
 
1077
- def initialize(config=nil, profile=nil, report=nil, resume=nil)
1095
+ def initialize(config=nil, profile=nil, report=nil, resume=nil, nfversion=nil)
1078
1096
  @Config = config
1079
1097
  @Profile = profile
1080
1098
  @Report = report
1081
1099
  @Resume = resume
1100
+ @NFVersion = nfversion
1082
1101
  end
1083
1102
 
1084
1103
  def deserialize(params)
@@ -1086,6 +1105,7 @@ module TencentCloud
1086
1105
  @Profile = params['Profile']
1087
1106
  @Report = params['Report']
1088
1107
  @Resume = params['Resume']
1108
+ @NFVersion = params['NFVersion']
1089
1109
  end
1090
1110
  end
1091
1111
 
@@ -1272,8 +1292,8 @@ module TencentCloud
1272
1292
 
1273
1293
  attr_accessor :RunUuid, :ProjectId, :ApplicationId, :RunGroupId, :EnvironmentId, :UserDefinedId, :TableId, :TableRowUuid, :Status, :Input, :Option, :ExecutionTime, :Cache, :ErrorMessage, :CreateTime, :UpdateTime
1274
1294
  extend Gem::Deprecate
1275
- deprecate :Option, :none, 2024, 1
1276
- deprecate :Option=, :none, 2024, 1
1295
+ deprecate :Option, :none, 2024, 2
1296
+ deprecate :Option=, :none, 2024, 2
1277
1297
 
1278
1298
  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)
1279
1299
  @RunUuid = runuuid
@@ -1333,8 +1353,6 @@ module TencentCloud
1333
1353
  # @type EnvironmentId: String
1334
1354
  # @param InputBase64: 任务输入JSON。需要进行base64编码。
1335
1355
  # @type InputBase64: String
1336
- # @param CacheClearDelay: 任务缓存清理时间(小时)。不填表示不清理。
1337
- # @type CacheClearDelay: Integer
1338
1356
  # @param ProjectId: 项目ID。(不填使用指定地域下的默认项目)
1339
1357
  # @type ProjectId: String
1340
1358
  # @param Description: 任务批次描述。
@@ -1343,28 +1361,33 @@ module TencentCloud
1343
1361
  # @type TableId: String
1344
1362
  # @param TableRowUuids: 批量投递表格行UUID。不填表示表格全部行。
1345
1363
  # @type TableRowUuids: Array
1364
+ # @param CacheClearDelay: 任务缓存清理时间(小时)。不填或0表示不清理。
1365
+ # @type CacheClearDelay: Integer
1346
1366
  # @param ApplicationVersionId: 应用版本ID。不填表示使用当前最新版本。
1347
1367
  # @type ApplicationVersionId: String
1348
1368
  # @param Option: WDL运行选项。
1349
1369
  # @type Option: :class:`Tencentcloud::Omics.v20221128.models.RunOption`
1350
1370
  # @param NFOption: Nextflow运行选项。
1351
1371
  # @type NFOption: :class:`Tencentcloud::Omics.v20221128.models.NFOption`
1372
+ # @param WorkDir: 工作目录,使用缓存卷内的相对路径 (暂时仅支持Nextflow)
1373
+ # @type WorkDir: String
1352
1374
 
1353
- attr_accessor :ApplicationId, :Name, :EnvironmentId, :InputBase64, :CacheClearDelay, :ProjectId, :Description, :TableId, :TableRowUuids, :ApplicationVersionId, :Option, :NFOption
1375
+ attr_accessor :ApplicationId, :Name, :EnvironmentId, :InputBase64, :ProjectId, :Description, :TableId, :TableRowUuids, :CacheClearDelay, :ApplicationVersionId, :Option, :NFOption, :WorkDir
1354
1376
 
1355
- def initialize(applicationid=nil, name=nil, environmentid=nil, inputbase64=nil, cachecleardelay=nil, projectid=nil, description=nil, tableid=nil, tablerowuuids=nil, applicationversionid=nil, option=nil, nfoption=nil)
1377
+ def initialize(applicationid=nil, name=nil, environmentid=nil, inputbase64=nil, projectid=nil, description=nil, tableid=nil, tablerowuuids=nil, cachecleardelay=nil, applicationversionid=nil, option=nil, nfoption=nil, workdir=nil)
1356
1378
  @ApplicationId = applicationid
1357
1379
  @Name = name
1358
1380
  @EnvironmentId = environmentid
1359
1381
  @InputBase64 = inputbase64
1360
- @CacheClearDelay = cachecleardelay
1361
1382
  @ProjectId = projectid
1362
1383
  @Description = description
1363
1384
  @TableId = tableid
1364
1385
  @TableRowUuids = tablerowuuids
1386
+ @CacheClearDelay = cachecleardelay
1365
1387
  @ApplicationVersionId = applicationversionid
1366
1388
  @Option = option
1367
1389
  @NFOption = nfoption
1390
+ @WorkDir = workdir
1368
1391
  end
1369
1392
 
1370
1393
  def deserialize(params)
@@ -1372,11 +1395,11 @@ module TencentCloud
1372
1395
  @Name = params['Name']
1373
1396
  @EnvironmentId = params['EnvironmentId']
1374
1397
  @InputBase64 = params['InputBase64']
1375
- @CacheClearDelay = params['CacheClearDelay']
1376
1398
  @ProjectId = params['ProjectId']
1377
1399
  @Description = params['Description']
1378
1400
  @TableId = params['TableId']
1379
1401
  @TableRowUuids = params['TableRowUuids']
1402
+ @CacheClearDelay = params['CacheClearDelay']
1380
1403
  @ApplicationVersionId = params['ApplicationVersionId']
1381
1404
  unless params['Option'].nil?
1382
1405
  @Option = RunOption.new
@@ -1386,6 +1409,7 @@ module TencentCloud
1386
1409
  @NFOption = NFOption.new
1387
1410
  @NFOption.deserialize(params['NFOption'])
1388
1411
  end
1412
+ @WorkDir = params['WorkDir']
1389
1413
  end
1390
1414
  end
1391
1415
 
@@ -1745,12 +1769,14 @@ module TencentCloud
1745
1769
  # @param InputCosUri: 任务输入COS地址。
1746
1770
  # (InputBase64和InputCosUri必选其一)
1747
1771
  # @type InputCosUri: String
1748
- # @param CacheClearDelay: 任务缓存清理时间(小时)。不填表示不清理。
1772
+ # @param CacheClearDelay: 任务缓存清理时间(小时)。不填或0表示不清理。
1749
1773
  # @type CacheClearDelay: Integer
1774
+ # @param WorkDir: 工作目录,使用缓存卷内的相对路径 (暂时仅支持Nextflow)
1775
+ # @type WorkDir: String
1750
1776
 
1751
- attr_accessor :Name, :EnvironmentId, :GitSource, :Type, :NFOption, :ProjectId, :Description, :InputBase64, :InputCosUri, :CacheClearDelay
1777
+ attr_accessor :Name, :EnvironmentId, :GitSource, :Type, :NFOption, :ProjectId, :Description, :InputBase64, :InputCosUri, :CacheClearDelay, :WorkDir
1752
1778
 
1753
- def initialize(name=nil, environmentid=nil, gitsource=nil, type=nil, nfoption=nil, projectid=nil, description=nil, inputbase64=nil, inputcosuri=nil, cachecleardelay=nil)
1779
+ def initialize(name=nil, environmentid=nil, gitsource=nil, type=nil, nfoption=nil, projectid=nil, description=nil, inputbase64=nil, inputcosuri=nil, cachecleardelay=nil, workdir=nil)
1754
1780
  @Name = name
1755
1781
  @EnvironmentId = environmentid
1756
1782
  @GitSource = gitsource
@@ -1761,6 +1787,7 @@ module TencentCloud
1761
1787
  @InputBase64 = inputbase64
1762
1788
  @InputCosUri = inputcosuri
1763
1789
  @CacheClearDelay = cachecleardelay
1790
+ @WorkDir = workdir
1764
1791
  end
1765
1792
 
1766
1793
  def deserialize(params)
@@ -1780,6 +1807,7 @@ module TencentCloud
1780
1807
  @InputBase64 = params['InputBase64']
1781
1808
  @InputCosUri = params['InputCosUri']
1782
1809
  @CacheClearDelay = params['CacheClearDelay']
1810
+ @WorkDir = params['WorkDir']
1783
1811
  end
1784
1812
  end
1785
1813
 
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.770
4
+ version: 3.0.771
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-02-27 00:00:00.000000000 Z
11
+ date: 2024-02-28 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common