tencentcloud-sdk-omics 3.0.1138 → 3.0.1161

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 +75 -6
  4. metadata +3 -3
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9175d52814df3c87c42b0d9dcd0856574ea4bdcb
4
- data.tar.gz: 41f1fea9b567e8635a7663ab911e57259ad51578
3
+ metadata.gz: 83d108245b795a4486e91982b7f0f501b1c36807
4
+ data.tar.gz: 2e88f9b044c168ec4623aeafeb023e2c14accfdf
5
5
  SHA512:
6
- metadata.gz: 907b52d906be4a7da99873e8bcce45cd50a2dd7d0f8426debe79192c202a253dab2a2c72e9865003261ca0a685101a2500c3cbb2f0eec901973e86b8f40bf40b
7
- data.tar.gz: 1b5f3da40e2ecf588e3118226185a092b8d8657a35625704dccc7c8cca4bfc46f9bc665ba7fdb051d55242dc6f58b0cfba851519cb5b8312cfe248f0c9eb8d33
6
+ metadata.gz: 683588ea5eae00c90e35ac511ab86f5ca3c46552043e9c071cab9b0eb6e88a025392dfd788226470a3e2930e0c1f0fedf52cd5129fc993b2316e93377cc5f6e8
7
+ data.tar.gz: 1f0ba821e0d177b83f3c1e3ce6744d4a18e708a3dc46ae61df4c5f4f92a8122eea82d94e58c9aab3d2478e19e0b65ab3e86f936963203466d7a1127920bee0bc
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.1138
1
+ 3.0.1161
@@ -44,8 +44,8 @@ module TencentCloud
44
44
 
45
45
  attr_accessor :Type, :ApplicationVersionId, :Name, :Description, :Entrypoint, :CreateTime, :CreatorName, :CreatorId, :GitInfo, :GitSource, :CosSource
46
46
  extend Gem::Deprecate
47
- deprecate :GitInfo, :none, 2025, 9
48
- deprecate :GitInfo=, :none, 2025, 9
47
+ deprecate :GitInfo, :none, 2025, 10
48
+ deprecate :GitInfo=, :none, 2025, 10
49
49
 
50
50
  def initialize(type=nil, applicationversionid=nil, name=nil, description=nil, entrypoint=nil, createtime=nil, creatorname=nil, creatorid=nil, gitinfo=nil, gitsource=nil, cossource=nil)
51
51
  @Type = type
@@ -326,6 +326,26 @@ module TencentCloud
326
326
  end
327
327
  end
328
328
 
329
+ # Cromwell工作流引擎设置
330
+ class CromwellConfig < TencentCloud::Common::AbstractModel
331
+ # @param MaxConcurrentWorkflows: 工作流并发数
332
+ # @type MaxConcurrentWorkflows: Integer
333
+ # @param ConcurrentJobLimit: 作业并发数
334
+ # @type ConcurrentJobLimit: Integer
335
+
336
+ attr_accessor :MaxConcurrentWorkflows, :ConcurrentJobLimit
337
+
338
+ def initialize(maxconcurrentworkflows=nil, concurrentjoblimit=nil)
339
+ @MaxConcurrentWorkflows = maxconcurrentworkflows
340
+ @ConcurrentJobLimit = concurrentjoblimit
341
+ end
342
+
343
+ def deserialize(params)
344
+ @MaxConcurrentWorkflows = params['MaxConcurrentWorkflows']
345
+ @ConcurrentJobLimit = params['ConcurrentJobLimit']
346
+ end
347
+ end
348
+
329
349
  # 数据库配置。
330
350
  class DatabaseOption < TencentCloud::Common::AbstractModel
331
351
  # @param Zone: 数据库可用区。
@@ -899,10 +919,12 @@ module TencentCloud
899
919
  # @type LastWorkflowUuid: String
900
920
  # @param CreationTime: 创建时间。
901
921
  # @type CreationTime: String
922
+ # @param RuntimeConfig: 运行时配置。
923
+ # @type RuntimeConfig: :class:`Tencentcloud::Omics.v20221128.models.EnvironmentRuntimeConfig`
902
924
 
903
- attr_accessor :EnvironmentId, :Name, :Description, :Region, :Type, :Status, :Available, :IsDefault, :IsManaged, :Message, :ResourceIds, :LastWorkflowUuid, :CreationTime
925
+ attr_accessor :EnvironmentId, :Name, :Description, :Region, :Type, :Status, :Available, :IsDefault, :IsManaged, :Message, :ResourceIds, :LastWorkflowUuid, :CreationTime, :RuntimeConfig
904
926
 
905
- 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)
927
+ 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, runtimeconfig=nil)
906
928
  @EnvironmentId = environmentid
907
929
  @Name = name
908
930
  @Description = description
@@ -916,6 +938,7 @@ module TencentCloud
916
938
  @ResourceIds = resourceids
917
939
  @LastWorkflowUuid = lastworkflowuuid
918
940
  @CreationTime = creationtime
941
+ @RuntimeConfig = runtimeconfig
919
942
  end
920
943
 
921
944
  def deserialize(params)
@@ -935,6 +958,10 @@ module TencentCloud
935
958
  end
936
959
  @LastWorkflowUuid = params['LastWorkflowUuid']
937
960
  @CreationTime = params['CreationTime']
961
+ unless params['RuntimeConfig'].nil?
962
+ @RuntimeConfig = EnvironmentRuntimeConfig.new
963
+ @RuntimeConfig.deserialize(params['RuntimeConfig'])
964
+ end
938
965
  end
939
966
  end
940
967
 
@@ -992,6 +1019,32 @@ module TencentCloud
992
1019
  end
993
1020
  end
994
1021
 
1022
+ # 环境运行时配置
1023
+ class EnvironmentRuntimeConfig < TencentCloud::Common::AbstractModel
1024
+ # @param CromwellConfig: Cromwell工作流引擎设置
1025
+ # @type CromwellConfig: :class:`Tencentcloud::Omics.v20221128.models.CromwellConfig`
1026
+ # @param NextflowConfig: Nextflow工作流引擎设置
1027
+ # @type NextflowConfig: :class:`Tencentcloud::Omics.v20221128.models.NextflowConfig`
1028
+
1029
+ attr_accessor :CromwellConfig, :NextflowConfig
1030
+
1031
+ def initialize(cromwellconfig=nil, nextflowconfig=nil)
1032
+ @CromwellConfig = cromwellconfig
1033
+ @NextflowConfig = nextflowconfig
1034
+ end
1035
+
1036
+ def deserialize(params)
1037
+ unless params['CromwellConfig'].nil?
1038
+ @CromwellConfig = CromwellConfig.new
1039
+ @CromwellConfig.deserialize(params['CromwellConfig'])
1040
+ end
1041
+ unless params['NextflowConfig'].nil?
1042
+ @NextflowConfig = NextflowConfig.new
1043
+ @NextflowConfig.deserialize(params['NextflowConfig'])
1044
+ end
1045
+ end
1046
+ end
1047
+
995
1048
  # 执行时间。
996
1049
  class ExecutionTime < TencentCloud::Common::AbstractModel
997
1050
  # @param SubmitTime: 提交时间。
@@ -1389,6 +1442,22 @@ module TencentCloud
1389
1442
  end
1390
1443
  end
1391
1444
 
1445
+ # Nextflow工作流引擎设置
1446
+ class NextflowConfig < TencentCloud::Common::AbstractModel
1447
+ # @param ExecutorQueueSize: 工作流任务并发数
1448
+ # @type ExecutorQueueSize: Integer
1449
+
1450
+ attr_accessor :ExecutorQueueSize
1451
+
1452
+ def initialize(executorqueuesize=nil)
1453
+ @ExecutorQueueSize = executorqueuesize
1454
+ end
1455
+
1456
+ def deserialize(params)
1457
+ @ExecutorQueueSize = params['ExecutorQueueSize']
1458
+ end
1459
+ end
1460
+
1392
1461
  # 通知类型
1393
1462
  class NotificationType < TencentCloud::Common::AbstractModel
1394
1463
  # @param StationMessage: 腾讯健康组学平台站点信息。
@@ -1588,8 +1657,8 @@ module TencentCloud
1588
1657
 
1589
1658
  attr_accessor :RunUuid, :ProjectId, :ApplicationId, :RunGroupId, :EnvironmentId, :UserDefinedId, :TableId, :TableRowUuid, :Status, :Input, :Option, :ExecutionTime, :Cache, :ErrorMessage, :CreateTime, :UpdateTime
1590
1659
  extend Gem::Deprecate
1591
- deprecate :Option, :none, 2025, 9
1592
- deprecate :Option=, :none, 2025, 9
1660
+ deprecate :Option, :none, 2025, 10
1661
+ deprecate :Option=, :none, 2025, 10
1593
1662
 
1594
1663
  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)
1595
1664
  @RunUuid = runuuid
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.1138
4
+ version: 3.0.1161
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2025-09-10 00:00:00.000000000 Z
11
+ date: 2025-11-04 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common
@@ -33,9 +33,9 @@ executables: []
33
33
  extensions: []
34
34
  extra_rdoc_files: []
35
35
  files:
36
+ - lib/tencentcloud-sdk-omics.rb
36
37
  - lib/v20221128/client.rb
37
38
  - lib/v20221128/models.rb
38
- - lib/tencentcloud-sdk-omics.rb
39
39
  - lib/VERSION
40
40
  homepage: https://github.com/TencentCloud/tencentcloud-sdk-ruby
41
41
  licenses: