tencentcloud-sdk-omics 3.0.685 → 3.0.687
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/VERSION +1 -1
- data/lib/v20221128/client.rb +72 -0
- data/lib/v20221128/models.rb +387 -13
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: e76ab4b495b6526f40d367df47ff7b7596b5fb52
|
4
|
+
data.tar.gz: f4b5827af3850775c27a62d67f435b78bae9c6f6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 1005a5ee05c9bb09d191821dae3685b84c6bd561bc38b42f016ae43277dd41d9bb69d43b20e0be0620260c790eb34efcc71a8e13634aa3f3baadb398ed9abae6
|
7
|
+
data.tar.gz: b728936feed5d1f45dfd73f4371de1a21748ce506907a12b3b0cbb19844634cfbd670428cd1fecd8bfcfe97e3e0e277b8431d2b4f5768f286a3e6cc86cb07f5a
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.687
|
data/lib/v20221128/client.rb
CHANGED
@@ -221,6 +221,30 @@ module TencentCloud
|
|
221
221
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
222
222
|
end
|
223
223
|
|
224
|
+
# 查询任务详情文件。
|
225
|
+
|
226
|
+
# @param request: Request instance for GetRunMetadataFile.
|
227
|
+
# @type request: :class:`Tencentcloud::omics::V20221128::GetRunMetadataFileRequest`
|
228
|
+
# @rtype: :class:`Tencentcloud::omics::V20221128::GetRunMetadataFileResponse`
|
229
|
+
def GetRunMetadataFile(request)
|
230
|
+
body = send_request('GetRunMetadataFile', request.serialize)
|
231
|
+
response = JSON.parse(body)
|
232
|
+
if response['Response'].key?('Error') == false
|
233
|
+
model = GetRunMetadataFileResponse.new
|
234
|
+
model.deserialize(response['Response'])
|
235
|
+
model
|
236
|
+
else
|
237
|
+
code = response['Response']['Error']['Code']
|
238
|
+
message = response['Response']['Error']['Message']
|
239
|
+
reqid = response['Response']['RequestId']
|
240
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
241
|
+
end
|
242
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
243
|
+
raise e
|
244
|
+
rescue StandardError => e
|
245
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
246
|
+
end
|
247
|
+
|
224
248
|
# 查询任务详情。
|
225
249
|
|
226
250
|
# @param request: Request instance for GetRunStatus.
|
@@ -317,6 +341,54 @@ module TencentCloud
|
|
317
341
|
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
318
342
|
end
|
319
343
|
|
344
|
+
# 运行工作流。
|
345
|
+
|
346
|
+
# @param request: Request instance for RunWorkflow.
|
347
|
+
# @type request: :class:`Tencentcloud::omics::V20221128::RunWorkflowRequest`
|
348
|
+
# @rtype: :class:`Tencentcloud::omics::V20221128::RunWorkflowResponse`
|
349
|
+
def RunWorkflow(request)
|
350
|
+
body = send_request('RunWorkflow', request.serialize)
|
351
|
+
response = JSON.parse(body)
|
352
|
+
if response['Response'].key?('Error') == false
|
353
|
+
model = RunWorkflowResponse.new
|
354
|
+
model.deserialize(response['Response'])
|
355
|
+
model
|
356
|
+
else
|
357
|
+
code = response['Response']['Error']['Code']
|
358
|
+
message = response['Response']['Error']['Message']
|
359
|
+
reqid = response['Response']['RequestId']
|
360
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
361
|
+
end
|
362
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
363
|
+
raise e
|
364
|
+
rescue StandardError => e
|
365
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
366
|
+
end
|
367
|
+
|
368
|
+
# 终止任务批次。
|
369
|
+
|
370
|
+
# @param request: Request instance for TerminateRunGroup.
|
371
|
+
# @type request: :class:`Tencentcloud::omics::V20221128::TerminateRunGroupRequest`
|
372
|
+
# @rtype: :class:`Tencentcloud::omics::V20221128::TerminateRunGroupResponse`
|
373
|
+
def TerminateRunGroup(request)
|
374
|
+
body = send_request('TerminateRunGroup', request.serialize)
|
375
|
+
response = JSON.parse(body)
|
376
|
+
if response['Response'].key?('Error') == false
|
377
|
+
model = TerminateRunGroupResponse.new
|
378
|
+
model.deserialize(response['Response'])
|
379
|
+
model
|
380
|
+
else
|
381
|
+
code = response['Response']['Error']['Code']
|
382
|
+
message = response['Response']['Error']['Message']
|
383
|
+
reqid = response['Response']['RequestId']
|
384
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
385
|
+
end
|
386
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
387
|
+
raise e
|
388
|
+
rescue StandardError => e
|
389
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
390
|
+
end
|
391
|
+
|
320
392
|
|
321
393
|
end
|
322
394
|
end
|
data/lib/v20221128/models.rb
CHANGED
@@ -17,6 +17,63 @@
|
|
17
17
|
module TencentCloud
|
18
18
|
module Omics
|
19
19
|
module V20221128
|
20
|
+
# 应用版本。
|
21
|
+
class ApplicationVersion < TencentCloud::Common::AbstractModel
|
22
|
+
# @param Type: 版本类型。
|
23
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
24
|
+
# @type Type: String
|
25
|
+
# @param ApplicationVersionId: 版本ID。
|
26
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
27
|
+
# @type ApplicationVersionId: String
|
28
|
+
# @param Name: 发布名称。
|
29
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
30
|
+
# @type Name: String
|
31
|
+
# @param Description: 发布描述。
|
32
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
33
|
+
# @type Description: String
|
34
|
+
# @param Entrypoint: 入口文件。
|
35
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
36
|
+
# @type Entrypoint: String
|
37
|
+
# @param CreateTime: 创建时间。
|
38
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
39
|
+
# @type CreateTime: String
|
40
|
+
# @param CreatorName: 创建者名称。
|
41
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
42
|
+
# @type CreatorName: String
|
43
|
+
# @param CreatorId: 创建者ID。
|
44
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
45
|
+
# @type CreatorId: String
|
46
|
+
# @param GitInfo: Git信息。
|
47
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
48
|
+
# @type GitInfo: String
|
49
|
+
|
50
|
+
attr_accessor :Type, :ApplicationVersionId, :Name, :Description, :Entrypoint, :CreateTime, :CreatorName, :CreatorId, :GitInfo
|
51
|
+
|
52
|
+
def initialize(type=nil, applicationversionid=nil, name=nil, description=nil, entrypoint=nil, createtime=nil, creatorname=nil, creatorid=nil, gitinfo=nil)
|
53
|
+
@Type = type
|
54
|
+
@ApplicationVersionId = applicationversionid
|
55
|
+
@Name = name
|
56
|
+
@Description = description
|
57
|
+
@Entrypoint = entrypoint
|
58
|
+
@CreateTime = createtime
|
59
|
+
@CreatorName = creatorname
|
60
|
+
@CreatorId = creatorid
|
61
|
+
@GitInfo = gitinfo
|
62
|
+
end
|
63
|
+
|
64
|
+
def deserialize(params)
|
65
|
+
@Type = params['Type']
|
66
|
+
@ApplicationVersionId = params['ApplicationVersionId']
|
67
|
+
@Name = params['Name']
|
68
|
+
@Description = params['Description']
|
69
|
+
@Entrypoint = params['Entrypoint']
|
70
|
+
@CreateTime = params['CreateTime']
|
71
|
+
@CreatorName = params['CreatorName']
|
72
|
+
@CreatorId = params['CreatorId']
|
73
|
+
@GitInfo = params['GitInfo']
|
74
|
+
end
|
75
|
+
end
|
76
|
+
|
20
77
|
# 云服务器配置。
|
21
78
|
class CVMOption < TencentCloud::Common::AbstractModel
|
22
79
|
# @param Zone: 云服务器可用区。
|
@@ -37,6 +94,33 @@ module TencentCloud
|
|
37
94
|
end
|
38
95
|
end
|
39
96
|
|
97
|
+
# 缓存信息。
|
98
|
+
class CacheInfo < TencentCloud::Common::AbstractModel
|
99
|
+
# @param CacheClearDelay: 缓存清理时间(小时)。
|
100
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
101
|
+
# @type CacheClearDelay: Integer
|
102
|
+
# @param CacheClearTime: 缓存清理计划时间。
|
103
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
104
|
+
# @type CacheClearTime: String
|
105
|
+
# @param CacheCleared: 缓存是否已被清理。
|
106
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
107
|
+
# @type CacheCleared: Boolean
|
108
|
+
|
109
|
+
attr_accessor :CacheClearDelay, :CacheClearTime, :CacheCleared
|
110
|
+
|
111
|
+
def initialize(cachecleardelay=nil, cachecleartime=nil, cachecleared=nil)
|
112
|
+
@CacheClearDelay = cachecleardelay
|
113
|
+
@CacheClearTime = cachecleartime
|
114
|
+
@CacheCleared = cachecleared
|
115
|
+
end
|
116
|
+
|
117
|
+
def deserialize(params)
|
118
|
+
@CacheClearDelay = params['CacheClearDelay']
|
119
|
+
@CacheClearTime = params['CacheClearTime']
|
120
|
+
@CacheCleared = params['CacheCleared']
|
121
|
+
end
|
122
|
+
end
|
123
|
+
|
40
124
|
# 计算集群配置。
|
41
125
|
class ClusterOption < TencentCloud::Common::AbstractModel
|
42
126
|
# @param Zone: 计算集群可用区。
|
@@ -229,6 +313,7 @@ module TencentCloud
|
|
229
313
|
# DescribeRunGroups请求参数结构体
|
230
314
|
class DescribeRunGroupsRequest < TencentCloud::Common::AbstractModel
|
231
315
|
# @param ProjectId: 项目ID。
|
316
|
+
# (不填使用指定地域下的默认项目)
|
232
317
|
# @type ProjectId: String
|
233
318
|
# @param Limit: 返回数量,默认为10,最大值为100。
|
234
319
|
# @type Limit: Integer
|
@@ -298,6 +383,7 @@ module TencentCloud
|
|
298
383
|
# DescribeRuns请求参数结构体
|
299
384
|
class DescribeRunsRequest < TencentCloud::Common::AbstractModel
|
300
385
|
# @param ProjectId: 项目ID。
|
386
|
+
# (不填使用指定地域下的默认项目)
|
301
387
|
# @type ProjectId: String
|
302
388
|
# @param Limit: 返回数量,默认为10,最大值为100。
|
303
389
|
# @type Limit: Integer
|
@@ -676,23 +762,24 @@ module TencentCloud
|
|
676
762
|
class GetRunCallsRequest < TencentCloud::Common::AbstractModel
|
677
763
|
# @param RunUuid: 任务Uuid。
|
678
764
|
# @type RunUuid: String
|
679
|
-
# @param ProjectId: 项目ID。
|
680
|
-
# @type ProjectId: String
|
681
765
|
# @param Path: 作业路径
|
682
766
|
# @type Path: String
|
767
|
+
# @param ProjectId: 项目ID。
|
768
|
+
# (不填使用指定地域下的默认项目)
|
769
|
+
# @type ProjectId: String
|
683
770
|
|
684
|
-
attr_accessor :RunUuid, :
|
771
|
+
attr_accessor :RunUuid, :Path, :ProjectId
|
685
772
|
|
686
|
-
def initialize(runuuid=nil,
|
773
|
+
def initialize(runuuid=nil, path=nil, projectid=nil)
|
687
774
|
@RunUuid = runuuid
|
688
|
-
@ProjectId = projectid
|
689
775
|
@Path = path
|
776
|
+
@ProjectId = projectid
|
690
777
|
end
|
691
778
|
|
692
779
|
def deserialize(params)
|
693
780
|
@RunUuid = params['RunUuid']
|
694
|
-
@ProjectId = params['ProjectId']
|
695
781
|
@Path = params['Path']
|
782
|
+
@ProjectId = params['ProjectId']
|
696
783
|
end
|
697
784
|
end
|
698
785
|
|
@@ -723,11 +810,66 @@ module TencentCloud
|
|
723
810
|
end
|
724
811
|
end
|
725
812
|
|
813
|
+
# GetRunMetadataFile请求参数结构体
|
814
|
+
class GetRunMetadataFileRequest < TencentCloud::Common::AbstractModel
|
815
|
+
# @param RunUuid: 任务Uuid。
|
816
|
+
# @type RunUuid: String
|
817
|
+
# @param Key: 需要获取的文件名。
|
818
|
+
|
819
|
+
# 默认支持以下文件:
|
820
|
+
# - nextflow.log
|
821
|
+
|
822
|
+
# 提交时NFOption中report指定为true时,额外支持以下文件:
|
823
|
+
# - execution_report.html
|
824
|
+
# - execution_timeline.html
|
825
|
+
# - execution_trace.txt
|
826
|
+
# - pipeline_dag.html
|
827
|
+
# @type Key: String
|
828
|
+
# @param ProjectId: 项目ID。
|
829
|
+
# (不填使用指定地域下的默认项目)
|
830
|
+
# @type ProjectId: String
|
831
|
+
|
832
|
+
attr_accessor :RunUuid, :Key, :ProjectId
|
833
|
+
|
834
|
+
def initialize(runuuid=nil, key=nil, projectid=nil)
|
835
|
+
@RunUuid = runuuid
|
836
|
+
@Key = key
|
837
|
+
@ProjectId = projectid
|
838
|
+
end
|
839
|
+
|
840
|
+
def deserialize(params)
|
841
|
+
@RunUuid = params['RunUuid']
|
842
|
+
@Key = params['Key']
|
843
|
+
@ProjectId = params['ProjectId']
|
844
|
+
end
|
845
|
+
end
|
846
|
+
|
847
|
+
# GetRunMetadataFile返回参数结构体
|
848
|
+
class GetRunMetadataFileResponse < TencentCloud::Common::AbstractModel
|
849
|
+
# @param CosSignedUrl: 文件预签名链接,一分钟内有效。
|
850
|
+
# @type CosSignedUrl: String
|
851
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
852
|
+
# @type RequestId: String
|
853
|
+
|
854
|
+
attr_accessor :CosSignedUrl, :RequestId
|
855
|
+
|
856
|
+
def initialize(cossignedurl=nil, requestid=nil)
|
857
|
+
@CosSignedUrl = cossignedurl
|
858
|
+
@RequestId = requestid
|
859
|
+
end
|
860
|
+
|
861
|
+
def deserialize(params)
|
862
|
+
@CosSignedUrl = params['CosSignedUrl']
|
863
|
+
@RequestId = params['RequestId']
|
864
|
+
end
|
865
|
+
end
|
866
|
+
|
726
867
|
# GetRunStatus请求参数结构体
|
727
868
|
class GetRunStatusRequest < TencentCloud::Common::AbstractModel
|
728
869
|
# @param RunUuid: 任务Uuid。
|
729
870
|
# @type RunUuid: String
|
730
871
|
# @param ProjectId: 项目ID。
|
872
|
+
# (不填使用指定地域下的默认项目)
|
731
873
|
# @type ProjectId: String
|
732
874
|
|
733
875
|
attr_accessor :RunUuid, :ProjectId
|
@@ -766,6 +908,38 @@ module TencentCloud
|
|
766
908
|
end
|
767
909
|
end
|
768
910
|
|
911
|
+
# Git信息。
|
912
|
+
class GitInfo < TencentCloud::Common::AbstractModel
|
913
|
+
# @param GitHttpPath: Git地址。
|
914
|
+
# @type GitHttpPath: String
|
915
|
+
# @param GitUserName: Git用户名。
|
916
|
+
# @type GitUserName: String
|
917
|
+
# @param GitTokenOrPassword: Git密码或者Token。
|
918
|
+
# @type GitTokenOrPassword: String
|
919
|
+
# @param Branch: 分支。
|
920
|
+
# @type Branch: String
|
921
|
+
# @param Tag: 标签。
|
922
|
+
# @type Tag: String
|
923
|
+
|
924
|
+
attr_accessor :GitHttpPath, :GitUserName, :GitTokenOrPassword, :Branch, :Tag
|
925
|
+
|
926
|
+
def initialize(githttppath=nil, gitusername=nil, gittokenorpassword=nil, branch=nil, tag=nil)
|
927
|
+
@GitHttpPath = githttppath
|
928
|
+
@GitUserName = gitusername
|
929
|
+
@GitTokenOrPassword = gittokenorpassword
|
930
|
+
@Branch = branch
|
931
|
+
@Tag = tag
|
932
|
+
end
|
933
|
+
|
934
|
+
def deserialize(params)
|
935
|
+
@GitHttpPath = params['GitHttpPath']
|
936
|
+
@GitUserName = params['GitUserName']
|
937
|
+
@GitTokenOrPassword = params['GitTokenOrPassword']
|
938
|
+
@Branch = params['Branch']
|
939
|
+
@Tag = params['Tag']
|
940
|
+
end
|
941
|
+
end
|
942
|
+
|
769
943
|
# ImportTableFile请求参数结构体
|
770
944
|
class ImportTableFileRequest < TencentCloud::Common::AbstractModel
|
771
945
|
# @param ProjectId: 表格关联的项目ID。
|
@@ -818,6 +992,38 @@ module TencentCloud
|
|
818
992
|
end
|
819
993
|
end
|
820
994
|
|
995
|
+
# Nextflow选项。
|
996
|
+
class NFOption < TencentCloud::Common::AbstractModel
|
997
|
+
# @param Config: Config。
|
998
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
999
|
+
# @type Config: String
|
1000
|
+
# @param Profile: Profile。
|
1001
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1002
|
+
# @type Profile: String
|
1003
|
+
# @param Report: Report。
|
1004
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1005
|
+
# @type Report: Boolean
|
1006
|
+
# @param Resume: Resume。
|
1007
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1008
|
+
# @type Resume: Boolean
|
1009
|
+
|
1010
|
+
attr_accessor :Config, :Profile, :Report, :Resume
|
1011
|
+
|
1012
|
+
def initialize(config=nil, profile=nil, report=nil, resume=nil)
|
1013
|
+
@Config = config
|
1014
|
+
@Profile = profile
|
1015
|
+
@Report = report
|
1016
|
+
@Resume = resume
|
1017
|
+
end
|
1018
|
+
|
1019
|
+
def deserialize(params)
|
1020
|
+
@Config = params['Config']
|
1021
|
+
@Profile = params['Profile']
|
1022
|
+
@Report = params['Report']
|
1023
|
+
@Resume = params['Resume']
|
1024
|
+
end
|
1025
|
+
end
|
1026
|
+
|
821
1027
|
# 云资源ID。
|
822
1028
|
class ResourceIds < TencentCloud::Common::AbstractModel
|
823
1029
|
# @param VPCId: 私有网络ID。
|
@@ -939,6 +1145,9 @@ module TencentCloud
|
|
939
1145
|
# @type Option: :class:`Tencentcloud::Omics.v20221128.models.RunOption`
|
940
1146
|
# @param ExecutionTime: 执行时间。
|
941
1147
|
# @type ExecutionTime: :class:`Tencentcloud::Omics.v20221128.models.ExecutionTime`
|
1148
|
+
# @param Cache: 缓存信息。
|
1149
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1150
|
+
# @type Cache: :class:`Tencentcloud::Omics.v20221128.models.CacheInfo`
|
942
1151
|
# @param ErrorMessage: 错误信息。
|
943
1152
|
# @type ErrorMessage: String
|
944
1153
|
# @param CreateTime: 创建时间。
|
@@ -946,9 +1155,12 @@ module TencentCloud
|
|
946
1155
|
# @param UpdateTime: 更新时间。
|
947
1156
|
# @type UpdateTime: String
|
948
1157
|
|
949
|
-
attr_accessor :RunUuid, :ProjectId, :ApplicationId, :RunGroupId, :EnvironmentId, :UserDefinedId, :TableId, :TableRowUuid, :Status, :Input, :Option, :ExecutionTime, :ErrorMessage, :CreateTime, :UpdateTime
|
1158
|
+
attr_accessor :RunUuid, :ProjectId, :ApplicationId, :RunGroupId, :EnvironmentId, :UserDefinedId, :TableId, :TableRowUuid, :Status, :Input, :Option, :ExecutionTime, :Cache, :ErrorMessage, :CreateTime, :UpdateTime
|
1159
|
+
extend Gem::Deprecate
|
1160
|
+
deprecate :Option, :none, 2023, 10
|
1161
|
+
deprecate :Option=, :none, 2023, 10
|
950
1162
|
|
951
|
-
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, errormessage=nil, createtime=nil, updatetime=nil)
|
1163
|
+
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)
|
952
1164
|
@RunUuid = runuuid
|
953
1165
|
@ProjectId = projectid
|
954
1166
|
@ApplicationId = applicationid
|
@@ -961,6 +1173,7 @@ module TencentCloud
|
|
961
1173
|
@Input = input
|
962
1174
|
@Option = option
|
963
1175
|
@ExecutionTime = executiontime
|
1176
|
+
@Cache = cache
|
964
1177
|
@ErrorMessage = errormessage
|
965
1178
|
@CreateTime = createtime
|
966
1179
|
@UpdateTime = updatetime
|
@@ -985,6 +1198,10 @@ module TencentCloud
|
|
985
1198
|
@ExecutionTime = ExecutionTime.new
|
986
1199
|
@ExecutionTime.deserialize(params['ExecutionTime'])
|
987
1200
|
end
|
1201
|
+
unless params['Cache'].nil?
|
1202
|
+
@Cache = CacheInfo.new
|
1203
|
+
@Cache.deserialize(params['Cache'])
|
1204
|
+
end
|
988
1205
|
@ErrorMessage = params['ErrorMessage']
|
989
1206
|
@CreateTime = params['CreateTime']
|
990
1207
|
@UpdateTime = params['UpdateTime']
|
@@ -1099,8 +1316,11 @@ module TencentCloud
|
|
1099
1316
|
# @type Status: String
|
1100
1317
|
# @param Input: 任务输入。
|
1101
1318
|
# @type Input: String
|
1102
|
-
# @param Option: 运行选项。
|
1319
|
+
# @param Option: WDL运行选项。
|
1103
1320
|
# @type Option: :class:`Tencentcloud::Omics.v20221128.models.RunOption`
|
1321
|
+
# @param NFOption: Nextflow运行选项。
|
1322
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1323
|
+
# @type NFOption: :class:`Tencentcloud::Omics.v20221128.models.NFOption`
|
1104
1324
|
# @param TotalRun: 任务总数量。
|
1105
1325
|
# @type TotalRun: Integer
|
1106
1326
|
# @param RunStatusCounts: 各状态任务的数量。
|
@@ -1113,10 +1333,22 @@ module TencentCloud
|
|
1113
1333
|
# @type CreateTime: String
|
1114
1334
|
# @param UpdateTime: 更新时间。
|
1115
1335
|
# @type UpdateTime: String
|
1336
|
+
# @param Creator: 创建者。
|
1337
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1338
|
+
# @type Creator: String
|
1339
|
+
# @param CreatorId: 创建者ID。
|
1340
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1341
|
+
# @type CreatorId: String
|
1342
|
+
# @param ResultNotify: 运行结果通知方式。
|
1343
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1344
|
+
# @type ResultNotify: String
|
1345
|
+
# @param ApplicationVersion: 应用版本。
|
1346
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1347
|
+
# @type ApplicationVersion: :class:`Tencentcloud::Omics.v20221128.models.ApplicationVersion`
|
1116
1348
|
|
1117
|
-
attr_accessor :RunGroupId, :ProjectId, :ProjectName, :ApplicationId, :ApplicationName, :ApplicationType, :EnvironmentId, :EnvironmentName, :TableId, :Name, :Description, :Status, :Input, :Option, :TotalRun, :RunStatusCounts, :ExecutionTime, :ErrorMessage, :CreateTime, :UpdateTime
|
1349
|
+
attr_accessor :RunGroupId, :ProjectId, :ProjectName, :ApplicationId, :ApplicationName, :ApplicationType, :EnvironmentId, :EnvironmentName, :TableId, :Name, :Description, :Status, :Input, :Option, :NFOption, :TotalRun, :RunStatusCounts, :ExecutionTime, :ErrorMessage, :CreateTime, :UpdateTime, :Creator, :CreatorId, :ResultNotify, :ApplicationVersion
|
1118
1350
|
|
1119
|
-
def initialize(rungroupid=nil, projectid=nil, projectname=nil, applicationid=nil, applicationname=nil, applicationtype=nil, environmentid=nil, environmentname=nil, tableid=nil, name=nil, description=nil, status=nil, input=nil, option=nil, totalrun=nil, runstatuscounts=nil, executiontime=nil, errormessage=nil, createtime=nil, updatetime=nil)
|
1351
|
+
def initialize(rungroupid=nil, projectid=nil, projectname=nil, applicationid=nil, applicationname=nil, applicationtype=nil, environmentid=nil, environmentname=nil, tableid=nil, name=nil, description=nil, status=nil, input=nil, option=nil, nfoption=nil, totalrun=nil, runstatuscounts=nil, executiontime=nil, errormessage=nil, createtime=nil, updatetime=nil, creator=nil, creatorid=nil, resultnotify=nil, applicationversion=nil)
|
1120
1352
|
@RunGroupId = rungroupid
|
1121
1353
|
@ProjectId = projectid
|
1122
1354
|
@ProjectName = projectname
|
@@ -1131,12 +1363,17 @@ module TencentCloud
|
|
1131
1363
|
@Status = status
|
1132
1364
|
@Input = input
|
1133
1365
|
@Option = option
|
1366
|
+
@NFOption = nfoption
|
1134
1367
|
@TotalRun = totalrun
|
1135
1368
|
@RunStatusCounts = runstatuscounts
|
1136
1369
|
@ExecutionTime = executiontime
|
1137
1370
|
@ErrorMessage = errormessage
|
1138
1371
|
@CreateTime = createtime
|
1139
1372
|
@UpdateTime = updatetime
|
1373
|
+
@Creator = creator
|
1374
|
+
@CreatorId = creatorid
|
1375
|
+
@ResultNotify = resultnotify
|
1376
|
+
@ApplicationVersion = applicationversion
|
1140
1377
|
end
|
1141
1378
|
|
1142
1379
|
def deserialize(params)
|
@@ -1157,6 +1394,10 @@ module TencentCloud
|
|
1157
1394
|
@Option = RunOption.new
|
1158
1395
|
@Option.deserialize(params['Option'])
|
1159
1396
|
end
|
1397
|
+
unless params['NFOption'].nil?
|
1398
|
+
@NFOption = NFOption.new
|
1399
|
+
@NFOption.deserialize(params['NFOption'])
|
1400
|
+
end
|
1160
1401
|
@TotalRun = params['TotalRun']
|
1161
1402
|
unless params['RunStatusCounts'].nil?
|
1162
1403
|
@RunStatusCounts = []
|
@@ -1173,6 +1414,13 @@ module TencentCloud
|
|
1173
1414
|
@ErrorMessage = params['ErrorMessage']
|
1174
1415
|
@CreateTime = params['CreateTime']
|
1175
1416
|
@UpdateTime = params['UpdateTime']
|
1417
|
+
@Creator = params['Creator']
|
1418
|
+
@CreatorId = params['CreatorId']
|
1419
|
+
@ResultNotify = params['ResultNotify']
|
1420
|
+
unless params['ApplicationVersion'].nil?
|
1421
|
+
@ApplicationVersion = ApplicationVersion.new
|
1422
|
+
@ApplicationVersion.deserialize(params['ApplicationVersion'])
|
1423
|
+
end
|
1176
1424
|
end
|
1177
1425
|
end
|
1178
1426
|
|
@@ -1238,10 +1486,13 @@ module TencentCloud
|
|
1238
1486
|
# @param Stderr: 错误输出。
|
1239
1487
|
# 注意:此字段可能返回 null,表示取不到有效值。
|
1240
1488
|
# @type Stderr: String
|
1489
|
+
# @param Meta: 其他信息。
|
1490
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1491
|
+
# @type Meta: String
|
1241
1492
|
|
1242
|
-
attr_accessor :RunType, :RunId, :ParentId, :JobId, :CallName, :ScatterIndex, :Input, :Output, :Status, :ErrorMessage, :StartTime, :SubmitTime, :EndTime, :Command, :Runtime, :Preprocess, :PostProcess, :CallCached, :Stdout, :Stderr
|
1493
|
+
attr_accessor :RunType, :RunId, :ParentId, :JobId, :CallName, :ScatterIndex, :Input, :Output, :Status, :ErrorMessage, :StartTime, :SubmitTime, :EndTime, :Command, :Runtime, :Preprocess, :PostProcess, :CallCached, :Stdout, :Stderr, :Meta
|
1243
1494
|
|
1244
|
-
def initialize(runtype=nil, runid=nil, parentid=nil, jobid=nil, callname=nil, scatterindex=nil, input=nil, output=nil, status=nil, errormessage=nil, starttime=nil, submittime=nil, endtime=nil, command=nil, runtime=nil, preprocess=nil, postprocess=nil, callcached=nil, stdout=nil, stderr=nil)
|
1495
|
+
def initialize(runtype=nil, runid=nil, parentid=nil, jobid=nil, callname=nil, scatterindex=nil, input=nil, output=nil, status=nil, errormessage=nil, starttime=nil, submittime=nil, endtime=nil, command=nil, runtime=nil, preprocess=nil, postprocess=nil, callcached=nil, stdout=nil, stderr=nil, meta=nil)
|
1245
1496
|
@RunType = runtype
|
1246
1497
|
@RunId = runid
|
1247
1498
|
@ParentId = parentid
|
@@ -1262,6 +1513,7 @@ module TencentCloud
|
|
1262
1513
|
@CallCached = callcached
|
1263
1514
|
@Stdout = stdout
|
1264
1515
|
@Stderr = stderr
|
1516
|
+
@Meta = meta
|
1265
1517
|
end
|
1266
1518
|
|
1267
1519
|
def deserialize(params)
|
@@ -1285,6 +1537,7 @@ module TencentCloud
|
|
1285
1537
|
@CallCached = params['CallCached']
|
1286
1538
|
@Stdout = params['Stdout']
|
1287
1539
|
@Stderr = params['Stderr']
|
1540
|
+
@Meta = params['Meta']
|
1288
1541
|
end
|
1289
1542
|
end
|
1290
1543
|
|
@@ -1344,6 +1597,90 @@ module TencentCloud
|
|
1344
1597
|
end
|
1345
1598
|
end
|
1346
1599
|
|
1600
|
+
# RunWorkflow请求参数结构体
|
1601
|
+
class RunWorkflowRequest < TencentCloud::Common::AbstractModel
|
1602
|
+
# @param Name: 任务批次名称。
|
1603
|
+
# @type Name: String
|
1604
|
+
# @param EnvironmentId: 投递环境ID。
|
1605
|
+
# @type EnvironmentId: String
|
1606
|
+
# @param GitSource: 工作流Git仓库信息。
|
1607
|
+
# @type GitSource: :class:`Tencentcloud::Omics.v20221128.models.GitInfo`
|
1608
|
+
# @param Type: 工作流类型。
|
1609
|
+
|
1610
|
+
# 支持类型:
|
1611
|
+
# - NEXTFLOW
|
1612
|
+
# @type Type: String
|
1613
|
+
# @param NFOption: Nextflow选项。
|
1614
|
+
# @type NFOption: :class:`Tencentcloud::Omics.v20221128.models.NFOption`
|
1615
|
+
# @param ProjectId: 项目ID。
|
1616
|
+
# (不填使用指定地域下的默认项目)
|
1617
|
+
# @type ProjectId: String
|
1618
|
+
# @param Description: 任务批次描述。
|
1619
|
+
# @type Description: String
|
1620
|
+
# @param InputBase64: 任务输入JSON。需要进行base64编码。
|
1621
|
+
# (InputBase64和InputCosUri必选其一)
|
1622
|
+
# @type InputBase64: String
|
1623
|
+
# @param InputCosUri: 任务输入COS地址。
|
1624
|
+
# (InputBase64和InputCosUri必选其一)
|
1625
|
+
# @type InputCosUri: String
|
1626
|
+
# @param CacheClearDelay: 任务缓存清理时间。不填表示不清理。
|
1627
|
+
# @type CacheClearDelay: Integer
|
1628
|
+
|
1629
|
+
attr_accessor :Name, :EnvironmentId, :GitSource, :Type, :NFOption, :ProjectId, :Description, :InputBase64, :InputCosUri, :CacheClearDelay
|
1630
|
+
|
1631
|
+
def initialize(name=nil, environmentid=nil, gitsource=nil, type=nil, nfoption=nil, projectid=nil, description=nil, inputbase64=nil, inputcosuri=nil, cachecleardelay=nil)
|
1632
|
+
@Name = name
|
1633
|
+
@EnvironmentId = environmentid
|
1634
|
+
@GitSource = gitsource
|
1635
|
+
@Type = type
|
1636
|
+
@NFOption = nfoption
|
1637
|
+
@ProjectId = projectid
|
1638
|
+
@Description = description
|
1639
|
+
@InputBase64 = inputbase64
|
1640
|
+
@InputCosUri = inputcosuri
|
1641
|
+
@CacheClearDelay = cachecleardelay
|
1642
|
+
end
|
1643
|
+
|
1644
|
+
def deserialize(params)
|
1645
|
+
@Name = params['Name']
|
1646
|
+
@EnvironmentId = params['EnvironmentId']
|
1647
|
+
unless params['GitSource'].nil?
|
1648
|
+
@GitSource = GitInfo.new
|
1649
|
+
@GitSource.deserialize(params['GitSource'])
|
1650
|
+
end
|
1651
|
+
@Type = params['Type']
|
1652
|
+
unless params['NFOption'].nil?
|
1653
|
+
@NFOption = NFOption.new
|
1654
|
+
@NFOption.deserialize(params['NFOption'])
|
1655
|
+
end
|
1656
|
+
@ProjectId = params['ProjectId']
|
1657
|
+
@Description = params['Description']
|
1658
|
+
@InputBase64 = params['InputBase64']
|
1659
|
+
@InputCosUri = params['InputCosUri']
|
1660
|
+
@CacheClearDelay = params['CacheClearDelay']
|
1661
|
+
end
|
1662
|
+
end
|
1663
|
+
|
1664
|
+
# RunWorkflow返回参数结构体
|
1665
|
+
class RunWorkflowResponse < TencentCloud::Common::AbstractModel
|
1666
|
+
# @param RunGroupId: 任务批次ID。
|
1667
|
+
# @type RunGroupId: String
|
1668
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1669
|
+
# @type RequestId: String
|
1670
|
+
|
1671
|
+
attr_accessor :RunGroupId, :RequestId
|
1672
|
+
|
1673
|
+
def initialize(rungroupid=nil, requestid=nil)
|
1674
|
+
@RunGroupId = rungroupid
|
1675
|
+
@RequestId = requestid
|
1676
|
+
end
|
1677
|
+
|
1678
|
+
def deserialize(params)
|
1679
|
+
@RunGroupId = params['RunGroupId']
|
1680
|
+
@RequestId = params['RequestId']
|
1681
|
+
end
|
1682
|
+
end
|
1683
|
+
|
1347
1684
|
# 文件存储配置。
|
1348
1685
|
class StorageOption < TencentCloud::Common::AbstractModel
|
1349
1686
|
# @param StorageType: 文件存储类型,取值范围:
|
@@ -1472,6 +1809,43 @@ module TencentCloud
|
|
1472
1809
|
end
|
1473
1810
|
end
|
1474
1811
|
|
1812
|
+
# TerminateRunGroup请求参数结构体
|
1813
|
+
class TerminateRunGroupRequest < TencentCloud::Common::AbstractModel
|
1814
|
+
# @param RunGroupId: 任务批次ID。
|
1815
|
+
# @type RunGroupId: String
|
1816
|
+
# @param ProjectId: 项目ID。
|
1817
|
+
# (不填使用指定地域下的默认项目)
|
1818
|
+
# @type ProjectId: String
|
1819
|
+
|
1820
|
+
attr_accessor :RunGroupId, :ProjectId
|
1821
|
+
|
1822
|
+
def initialize(rungroupid=nil, projectid=nil)
|
1823
|
+
@RunGroupId = rungroupid
|
1824
|
+
@ProjectId = projectid
|
1825
|
+
end
|
1826
|
+
|
1827
|
+
def deserialize(params)
|
1828
|
+
@RunGroupId = params['RunGroupId']
|
1829
|
+
@ProjectId = params['ProjectId']
|
1830
|
+
end
|
1831
|
+
end
|
1832
|
+
|
1833
|
+
# TerminateRunGroup返回参数结构体
|
1834
|
+
class TerminateRunGroupResponse < TencentCloud::Common::AbstractModel
|
1835
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
1836
|
+
# @type RequestId: String
|
1837
|
+
|
1838
|
+
attr_accessor :RequestId
|
1839
|
+
|
1840
|
+
def initialize(requestid=nil)
|
1841
|
+
@RequestId = requestid
|
1842
|
+
end
|
1843
|
+
|
1844
|
+
def deserialize(params)
|
1845
|
+
@RequestId = params['RequestId']
|
1846
|
+
end
|
1847
|
+
end
|
1848
|
+
|
1475
1849
|
# 私有网络配置。
|
1476
1850
|
class VPCOption < TencentCloud::Common::AbstractModel
|
1477
1851
|
# @param SubnetZone: 子网可用区。
|
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.
|
4
|
+
version: 3.0.687
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Tencent Cloud
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-10-
|
11
|
+
date: 2023-10-30 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|