tencentcloud-sdk-omics 3.0.565 → 3.0.567
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 +447 -2
- 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: b333840f1556ac34acf4cfd90cd80a67d0871a0c
|
4
|
+
data.tar.gz: be6e8a705cc320422fd7ca85d80cdd7148211257
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f3a8c1f6b2027855febf329f54c131ec885d494543be0a22473acf75b3cf52f620f27e186e93ad295c2044f053dbf514797185dfb1cdce30e61e03e73d2da023
|
7
|
+
data.tar.gz: 84de33a5e756ba8ed0cbf169abae2ad856a8e3f7be3baf967dac9cc5cf5cbc4b02bc8f1dc2208b55d03bc69de5ad2350041e12ff48bb3002414317d4d730a7fe
|
data/lib/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
3.0.
|
1
|
+
3.0.567
|
data/lib/v20221128/client.rb
CHANGED
@@ -29,6 +29,78 @@ module TencentCloud
|
|
29
29
|
end
|
30
30
|
|
31
31
|
|
32
|
+
# 创建组学平台计算环境。
|
33
|
+
|
34
|
+
# @param request: Request instance for CreateEnvironment.
|
35
|
+
# @type request: :class:`Tencentcloud::omics::V20221128::CreateEnvironmentRequest`
|
36
|
+
# @rtype: :class:`Tencentcloud::omics::V20221128::CreateEnvironmentResponse`
|
37
|
+
def CreateEnvironment(request)
|
38
|
+
body = send_request('CreateEnvironment', request.serialize)
|
39
|
+
response = JSON.parse(body)
|
40
|
+
if response['Response'].key?('Error') == false
|
41
|
+
model = CreateEnvironmentResponse.new
|
42
|
+
model.deserialize(response['Response'])
|
43
|
+
model
|
44
|
+
else
|
45
|
+
code = response['Response']['Error']['Code']
|
46
|
+
message = response['Response']['Error']['Message']
|
47
|
+
reqid = response['Response']['RequestId']
|
48
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
49
|
+
end
|
50
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
51
|
+
raise e
|
52
|
+
rescue StandardError => e
|
53
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
54
|
+
end
|
55
|
+
|
56
|
+
# 删除环境。
|
57
|
+
|
58
|
+
# @param request: Request instance for DeleteEnvironment.
|
59
|
+
# @type request: :class:`Tencentcloud::omics::V20221128::DeleteEnvironmentRequest`
|
60
|
+
# @rtype: :class:`Tencentcloud::omics::V20221128::DeleteEnvironmentResponse`
|
61
|
+
def DeleteEnvironment(request)
|
62
|
+
body = send_request('DeleteEnvironment', request.serialize)
|
63
|
+
response = JSON.parse(body)
|
64
|
+
if response['Response'].key?('Error') == false
|
65
|
+
model = DeleteEnvironmentResponse.new
|
66
|
+
model.deserialize(response['Response'])
|
67
|
+
model
|
68
|
+
else
|
69
|
+
code = response['Response']['Error']['Code']
|
70
|
+
message = response['Response']['Error']['Message']
|
71
|
+
reqid = response['Response']['RequestId']
|
72
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
73
|
+
end
|
74
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
75
|
+
raise e
|
76
|
+
rescue StandardError => e
|
77
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
78
|
+
end
|
79
|
+
|
80
|
+
# 查询环境列表。
|
81
|
+
|
82
|
+
# @param request: Request instance for DescribeEnvironments.
|
83
|
+
# @type request: :class:`Tencentcloud::omics::V20221128::DescribeEnvironmentsRequest`
|
84
|
+
# @rtype: :class:`Tencentcloud::omics::V20221128::DescribeEnvironmentsResponse`
|
85
|
+
def DescribeEnvironments(request)
|
86
|
+
body = send_request('DescribeEnvironments', request.serialize)
|
87
|
+
response = JSON.parse(body)
|
88
|
+
if response['Response'].key?('Error') == false
|
89
|
+
model = DescribeEnvironmentsResponse.new
|
90
|
+
model.deserialize(response['Response'])
|
91
|
+
model
|
92
|
+
else
|
93
|
+
code = response['Response']['Error']['Code']
|
94
|
+
message = response['Response']['Error']['Message']
|
95
|
+
reqid = response['Response']['RequestId']
|
96
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(code, message, reqid)
|
97
|
+
end
|
98
|
+
rescue TencentCloud::Common::TencentCloudSDKException => e
|
99
|
+
raise e
|
100
|
+
rescue StandardError => e
|
101
|
+
raise TencentCloud::Common::TencentCloudSDKException.new(nil, e.inspect)
|
102
|
+
end
|
103
|
+
|
32
104
|
# 查询任务批次列表。
|
33
105
|
|
34
106
|
# @param request: Request instance for DescribeRunGroups.
|
data/lib/v20221128/models.rb
CHANGED
@@ -17,6 +17,215 @@
|
|
17
17
|
module TencentCloud
|
18
18
|
module Omics
|
19
19
|
module V20221128
|
20
|
+
# 云服务器配置。
|
21
|
+
class CVMOption < TencentCloud::Common::AbstractModel
|
22
|
+
# @param Zone: 云服务器可用区。
|
23
|
+
# @type Zone: String
|
24
|
+
# @param InstanceType: 云服务器实例规格。
|
25
|
+
# @type InstanceType: String
|
26
|
+
|
27
|
+
attr_accessor :Zone, :InstanceType
|
28
|
+
|
29
|
+
def initialize(zone=nil, instancetype=nil)
|
30
|
+
@Zone = zone
|
31
|
+
@InstanceType = instancetype
|
32
|
+
end
|
33
|
+
|
34
|
+
def deserialize(params)
|
35
|
+
@Zone = params['Zone']
|
36
|
+
@InstanceType = params['InstanceType']
|
37
|
+
end
|
38
|
+
end
|
39
|
+
|
40
|
+
# 计算集群配置。
|
41
|
+
class ClusterOption < TencentCloud::Common::AbstractModel
|
42
|
+
# @param Zone: 计算集群可用区。
|
43
|
+
# @type Zone: String
|
44
|
+
# @param Type: 计算集群类型,取值范围:
|
45
|
+
# - KUBERNETES
|
46
|
+
# @type Type: String
|
47
|
+
|
48
|
+
attr_accessor :Zone, :Type
|
49
|
+
|
50
|
+
def initialize(zone=nil, type=nil)
|
51
|
+
@Zone = zone
|
52
|
+
@Type = type
|
53
|
+
end
|
54
|
+
|
55
|
+
def deserialize(params)
|
56
|
+
@Zone = params['Zone']
|
57
|
+
@Type = params['Type']
|
58
|
+
end
|
59
|
+
end
|
60
|
+
|
61
|
+
# CreateEnvironment请求参数结构体
|
62
|
+
class CreateEnvironmentRequest < TencentCloud::Common::AbstractModel
|
63
|
+
# @param Name: 环境名称。
|
64
|
+
# @type Name: String
|
65
|
+
# @param Config: 环境配置信息。
|
66
|
+
# @type Config: :class:`Tencentcloud::Omics.v20221128.models.EnvironmentConfig`
|
67
|
+
# @param Description: 环境描述。
|
68
|
+
# @type Description: String
|
69
|
+
|
70
|
+
attr_accessor :Name, :Config, :Description
|
71
|
+
|
72
|
+
def initialize(name=nil, config=nil, description=nil)
|
73
|
+
@Name = name
|
74
|
+
@Config = config
|
75
|
+
@Description = description
|
76
|
+
end
|
77
|
+
|
78
|
+
def deserialize(params)
|
79
|
+
@Name = params['Name']
|
80
|
+
unless params['Config'].nil?
|
81
|
+
@Config = EnvironmentConfig.new
|
82
|
+
@Config.deserialize(params['Config'])
|
83
|
+
end
|
84
|
+
@Description = params['Description']
|
85
|
+
end
|
86
|
+
end
|
87
|
+
|
88
|
+
# CreateEnvironment返回参数结构体
|
89
|
+
class CreateEnvironmentResponse < TencentCloud::Common::AbstractModel
|
90
|
+
# @param EnvironmentId: 环境ID。
|
91
|
+
# @type EnvironmentId: String
|
92
|
+
# @param WorkflowUuid: 工作流UUID。
|
93
|
+
# @type WorkflowUuid: String
|
94
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
95
|
+
# @type RequestId: String
|
96
|
+
|
97
|
+
attr_accessor :EnvironmentId, :WorkflowUuid, :RequestId
|
98
|
+
|
99
|
+
def initialize(environmentid=nil, workflowuuid=nil, requestid=nil)
|
100
|
+
@EnvironmentId = environmentid
|
101
|
+
@WorkflowUuid = workflowuuid
|
102
|
+
@RequestId = requestid
|
103
|
+
end
|
104
|
+
|
105
|
+
def deserialize(params)
|
106
|
+
@EnvironmentId = params['EnvironmentId']
|
107
|
+
@WorkflowUuid = params['WorkflowUuid']
|
108
|
+
@RequestId = params['RequestId']
|
109
|
+
end
|
110
|
+
end
|
111
|
+
|
112
|
+
# 数据库配置。
|
113
|
+
class DatabaseOption < TencentCloud::Common::AbstractModel
|
114
|
+
# @param Zone: 数据库可用区。
|
115
|
+
# @type Zone: String
|
116
|
+
|
117
|
+
attr_accessor :Zone
|
118
|
+
|
119
|
+
def initialize(zone=nil)
|
120
|
+
@Zone = zone
|
121
|
+
end
|
122
|
+
|
123
|
+
def deserialize(params)
|
124
|
+
@Zone = params['Zone']
|
125
|
+
end
|
126
|
+
end
|
127
|
+
|
128
|
+
# DeleteEnvironment请求参数结构体
|
129
|
+
class DeleteEnvironmentRequest < TencentCloud::Common::AbstractModel
|
130
|
+
# @param EnvironmentId: 环境ID。
|
131
|
+
# @type EnvironmentId: String
|
132
|
+
|
133
|
+
attr_accessor :EnvironmentId
|
134
|
+
|
135
|
+
def initialize(environmentid=nil)
|
136
|
+
@EnvironmentId = environmentid
|
137
|
+
end
|
138
|
+
|
139
|
+
def deserialize(params)
|
140
|
+
@EnvironmentId = params['EnvironmentId']
|
141
|
+
end
|
142
|
+
end
|
143
|
+
|
144
|
+
# DeleteEnvironment返回参数结构体
|
145
|
+
class DeleteEnvironmentResponse < TencentCloud::Common::AbstractModel
|
146
|
+
# @param WorkflowUuid: 工作流UUID。
|
147
|
+
# @type WorkflowUuid: String
|
148
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
149
|
+
# @type RequestId: String
|
150
|
+
|
151
|
+
attr_accessor :WorkflowUuid, :RequestId
|
152
|
+
|
153
|
+
def initialize(workflowuuid=nil, requestid=nil)
|
154
|
+
@WorkflowUuid = workflowuuid
|
155
|
+
@RequestId = requestid
|
156
|
+
end
|
157
|
+
|
158
|
+
def deserialize(params)
|
159
|
+
@WorkflowUuid = params['WorkflowUuid']
|
160
|
+
@RequestId = params['RequestId']
|
161
|
+
end
|
162
|
+
end
|
163
|
+
|
164
|
+
# DescribeEnvironments请求参数结构体
|
165
|
+
class DescribeEnvironmentsRequest < TencentCloud::Common::AbstractModel
|
166
|
+
# @param Offset: 偏移量,默认为0。
|
167
|
+
# @type Offset: Integer
|
168
|
+
# @param Limit: 返回数量,默认为20,最大值为100。
|
169
|
+
# @type Limit: Integer
|
170
|
+
# @param Filters: 过滤器,支持过滤字段:
|
171
|
+
# - EnvironmentId:环境ID
|
172
|
+
# - Name:名称
|
173
|
+
# - Status:环境状态
|
174
|
+
# @type Filters: Array
|
175
|
+
|
176
|
+
attr_accessor :Offset, :Limit, :Filters
|
177
|
+
|
178
|
+
def initialize(offset=nil, limit=nil, filters=nil)
|
179
|
+
@Offset = offset
|
180
|
+
@Limit = limit
|
181
|
+
@Filters = filters
|
182
|
+
end
|
183
|
+
|
184
|
+
def deserialize(params)
|
185
|
+
@Offset = params['Offset']
|
186
|
+
@Limit = params['Limit']
|
187
|
+
unless params['Filters'].nil?
|
188
|
+
@Filters = []
|
189
|
+
params['Filters'].each do |i|
|
190
|
+
filter_tmp = Filter.new
|
191
|
+
filter_tmp.deserialize(i)
|
192
|
+
@Filters << filter_tmp
|
193
|
+
end
|
194
|
+
end
|
195
|
+
end
|
196
|
+
end
|
197
|
+
|
198
|
+
# DescribeEnvironments返回参数结构体
|
199
|
+
class DescribeEnvironmentsResponse < TencentCloud::Common::AbstractModel
|
200
|
+
# @param TotalCount: 符合条件的数量。
|
201
|
+
# @type TotalCount: Integer
|
202
|
+
# @param Environments: 环境详情列表。
|
203
|
+
# @type Environments: Array
|
204
|
+
# @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
|
205
|
+
# @type RequestId: String
|
206
|
+
|
207
|
+
attr_accessor :TotalCount, :Environments, :RequestId
|
208
|
+
|
209
|
+
def initialize(totalcount=nil, environments=nil, requestid=nil)
|
210
|
+
@TotalCount = totalcount
|
211
|
+
@Environments = environments
|
212
|
+
@RequestId = requestid
|
213
|
+
end
|
214
|
+
|
215
|
+
def deserialize(params)
|
216
|
+
@TotalCount = params['TotalCount']
|
217
|
+
unless params['Environments'].nil?
|
218
|
+
@Environments = []
|
219
|
+
params['Environments'].each do |i|
|
220
|
+
environment_tmp = Environment.new
|
221
|
+
environment_tmp.deserialize(i)
|
222
|
+
@Environments << environment_tmp
|
223
|
+
end
|
224
|
+
end
|
225
|
+
@RequestId = params['RequestId']
|
226
|
+
end
|
227
|
+
end
|
228
|
+
|
20
229
|
# DescribeRunGroups请求参数结构体
|
21
230
|
class DescribeRunGroupsRequest < TencentCloud::Common::AbstractModel
|
22
231
|
# @param ProjectId: 项目ID。
|
@@ -156,6 +365,122 @@ module TencentCloud
|
|
156
365
|
end
|
157
366
|
end
|
158
367
|
|
368
|
+
# 组学平台环境详情。
|
369
|
+
class Environment < TencentCloud::Common::AbstractModel
|
370
|
+
# @param EnvironmentId: 环境ID。
|
371
|
+
# @type EnvironmentId: String
|
372
|
+
# @param Name: 环境名称。
|
373
|
+
# @type Name: String
|
374
|
+
# @param Description: 环境描述信息。
|
375
|
+
# @type Description: String
|
376
|
+
# @param Region: 环境地域。
|
377
|
+
# @type Region: String
|
378
|
+
# @param Type: 环境类型,取值范围:
|
379
|
+
# - KUBERNETES:Kubernetes容器集群
|
380
|
+
# - HPC:HPC高性能计算集群
|
381
|
+
# @type Type: String
|
382
|
+
# @param Status: 环境状态,取值范围:
|
383
|
+
# - INITIALIZING:创建中
|
384
|
+
# - INITIALIZATION_ERROR:创建失败
|
385
|
+
# - RUNNING:运行中
|
386
|
+
# - ERROR:异常
|
387
|
+
# - DELETING:正在删除
|
388
|
+
# - DELETE_ERROR:删除失败
|
389
|
+
# @type Status: String
|
390
|
+
# @param Available: 环境是否可用。环境需要可用才能投递计算任务。
|
391
|
+
# @type Available: Boolean
|
392
|
+
# @param Message: 环境信息。
|
393
|
+
# @type Message: String
|
394
|
+
# @param ResourceIds: 云资源ID。
|
395
|
+
# @type ResourceIds: :class:`Tencentcloud::Omics.v20221128.models.ResourceIds`
|
396
|
+
# @param LastWorkflowUuid: 上个工作流UUID。
|
397
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
398
|
+
# @type LastWorkflowUuid: String
|
399
|
+
# @param CreationTime: 创建时间。
|
400
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
401
|
+
# @type CreationTime: String
|
402
|
+
|
403
|
+
attr_accessor :EnvironmentId, :Name, :Description, :Region, :Type, :Status, :Available, :Message, :ResourceIds, :LastWorkflowUuid, :CreationTime
|
404
|
+
|
405
|
+
def initialize(environmentid=nil, name=nil, description=nil, region=nil, type=nil, status=nil, available=nil, message=nil, resourceids=nil, lastworkflowuuid=nil, creationtime=nil)
|
406
|
+
@EnvironmentId = environmentid
|
407
|
+
@Name = name
|
408
|
+
@Description = description
|
409
|
+
@Region = region
|
410
|
+
@Type = type
|
411
|
+
@Status = status
|
412
|
+
@Available = available
|
413
|
+
@Message = message
|
414
|
+
@ResourceIds = resourceids
|
415
|
+
@LastWorkflowUuid = lastworkflowuuid
|
416
|
+
@CreationTime = creationtime
|
417
|
+
end
|
418
|
+
|
419
|
+
def deserialize(params)
|
420
|
+
@EnvironmentId = params['EnvironmentId']
|
421
|
+
@Name = params['Name']
|
422
|
+
@Description = params['Description']
|
423
|
+
@Region = params['Region']
|
424
|
+
@Type = params['Type']
|
425
|
+
@Status = params['Status']
|
426
|
+
@Available = params['Available']
|
427
|
+
@Message = params['Message']
|
428
|
+
unless params['ResourceIds'].nil?
|
429
|
+
@ResourceIds = ResourceIds.new
|
430
|
+
@ResourceIds.deserialize(params['ResourceIds'])
|
431
|
+
end
|
432
|
+
@LastWorkflowUuid = params['LastWorkflowUuid']
|
433
|
+
@CreationTime = params['CreationTime']
|
434
|
+
end
|
435
|
+
end
|
436
|
+
|
437
|
+
# 环境配置。
|
438
|
+
class EnvironmentConfig < TencentCloud::Common::AbstractModel
|
439
|
+
# @param VPCOption: 私有网络配置。
|
440
|
+
# @type VPCOption: :class:`Tencentcloud::Omics.v20221128.models.VPCOption`
|
441
|
+
# @param ClusterOption: 计算集群配置。
|
442
|
+
# @type ClusterOption: :class:`Tencentcloud::Omics.v20221128.models.ClusterOption`
|
443
|
+
# @param DatabaseOption: 数据库配置。
|
444
|
+
# @type DatabaseOption: :class:`Tencentcloud::Omics.v20221128.models.DatabaseOption`
|
445
|
+
# @param StorageOption: 存储配置。
|
446
|
+
# @type StorageOption: :class:`Tencentcloud::Omics.v20221128.models.StorageOption`
|
447
|
+
# @param CVMOption: 云服务器配置。
|
448
|
+
# @type CVMOption: :class:`Tencentcloud::Omics.v20221128.models.CVMOption`
|
449
|
+
|
450
|
+
attr_accessor :VPCOption, :ClusterOption, :DatabaseOption, :StorageOption, :CVMOption
|
451
|
+
|
452
|
+
def initialize(vpcoption=nil, clusteroption=nil, databaseoption=nil, storageoption=nil, cvmoption=nil)
|
453
|
+
@VPCOption = vpcoption
|
454
|
+
@ClusterOption = clusteroption
|
455
|
+
@DatabaseOption = databaseoption
|
456
|
+
@StorageOption = storageoption
|
457
|
+
@CVMOption = cvmoption
|
458
|
+
end
|
459
|
+
|
460
|
+
def deserialize(params)
|
461
|
+
unless params['VPCOption'].nil?
|
462
|
+
@VPCOption = VPCOption.new
|
463
|
+
@VPCOption.deserialize(params['VPCOption'])
|
464
|
+
end
|
465
|
+
unless params['ClusterOption'].nil?
|
466
|
+
@ClusterOption = ClusterOption.new
|
467
|
+
@ClusterOption.deserialize(params['ClusterOption'])
|
468
|
+
end
|
469
|
+
unless params['DatabaseOption'].nil?
|
470
|
+
@DatabaseOption = DatabaseOption.new
|
471
|
+
@DatabaseOption.deserialize(params['DatabaseOption'])
|
472
|
+
end
|
473
|
+
unless params['StorageOption'].nil?
|
474
|
+
@StorageOption = StorageOption.new
|
475
|
+
@StorageOption.deserialize(params['StorageOption'])
|
476
|
+
end
|
477
|
+
unless params['CVMOption'].nil?
|
478
|
+
@CVMOption = CVMOption.new
|
479
|
+
@CVMOption.deserialize(params['CVMOption'])
|
480
|
+
end
|
481
|
+
end
|
482
|
+
end
|
483
|
+
|
159
484
|
# 执行时间。
|
160
485
|
class ExecutionTime < TencentCloud::Common::AbstractModel
|
161
486
|
# @param SubmitTime: 提交时间。
|
@@ -353,6 +678,62 @@ module TencentCloud
|
|
353
678
|
end
|
354
679
|
end
|
355
680
|
|
681
|
+
# 云资源ID。
|
682
|
+
class ResourceIds < TencentCloud::Common::AbstractModel
|
683
|
+
# @param VPCId: 私有网络ID。
|
684
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
685
|
+
# @type VPCId: String
|
686
|
+
# @param SubnetId: 子网ID。
|
687
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
688
|
+
# @type SubnetId: String
|
689
|
+
# @param SecurityGroupId: 安全组ID。
|
690
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
691
|
+
# @type SecurityGroupId: String
|
692
|
+
# @param TDSQLCId: TDSQL-C Mysql版数据库ID。
|
693
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
694
|
+
# @type TDSQLCId: String
|
695
|
+
# @param CFSId: 文件存储ID。
|
696
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
697
|
+
# @type CFSId: String
|
698
|
+
# @param CFSStorageType: 文件存储类型:取值范围:
|
699
|
+
# - SD:通用标准型
|
700
|
+
# - HP:通用性能型
|
701
|
+
# - TB:turbo标准型
|
702
|
+
# - TP:turbo性能型
|
703
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
704
|
+
# @type CFSStorageType: String
|
705
|
+
# @param CVMId: 云服务器ID。
|
706
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
707
|
+
# @type CVMId: String
|
708
|
+
# @param EKSId: 弹性容器集群ID。
|
709
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
710
|
+
# @type EKSId: String
|
711
|
+
|
712
|
+
attr_accessor :VPCId, :SubnetId, :SecurityGroupId, :TDSQLCId, :CFSId, :CFSStorageType, :CVMId, :EKSId
|
713
|
+
|
714
|
+
def initialize(vpcid=nil, subnetid=nil, securitygroupid=nil, tdsqlcid=nil, cfsid=nil, cfsstoragetype=nil, cvmid=nil, eksid=nil)
|
715
|
+
@VPCId = vpcid
|
716
|
+
@SubnetId = subnetid
|
717
|
+
@SecurityGroupId = securitygroupid
|
718
|
+
@TDSQLCId = tdsqlcid
|
719
|
+
@CFSId = cfsid
|
720
|
+
@CFSStorageType = cfsstoragetype
|
721
|
+
@CVMId = cvmid
|
722
|
+
@EKSId = eksid
|
723
|
+
end
|
724
|
+
|
725
|
+
def deserialize(params)
|
726
|
+
@VPCId = params['VPCId']
|
727
|
+
@SubnetId = params['SubnetId']
|
728
|
+
@SecurityGroupId = params['SecurityGroupId']
|
729
|
+
@TDSQLCId = params['TDSQLCId']
|
730
|
+
@CFSId = params['CFSId']
|
731
|
+
@CFSStorageType = params['CFSStorageType']
|
732
|
+
@CVMId = params['CVMId']
|
733
|
+
@EKSId = params['EKSId']
|
734
|
+
end
|
735
|
+
end
|
736
|
+
|
356
737
|
# 任务。
|
357
738
|
class Run < TencentCloud::Common::AbstractModel
|
358
739
|
# @param RunUuid: 任务UUID。
|
@@ -737,19 +1118,29 @@ module TencentCloud
|
|
737
1118
|
# @type UseCallCache: Boolean
|
738
1119
|
# @param UseErrorOnHold: 是否使用错误挂起功能。
|
739
1120
|
# @type UseErrorOnHold: Boolean
|
1121
|
+
# @param FinalWorkflowOutputsDir: 输出归档COS路径。
|
1122
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1123
|
+
# @type FinalWorkflowOutputsDir: String
|
1124
|
+
# @param UseRelativeOutputPaths: 是否使用相对目录归档输出。
|
1125
|
+
# 注意:此字段可能返回 null,表示取不到有效值。
|
1126
|
+
# @type UseRelativeOutputPaths: Boolean
|
740
1127
|
|
741
|
-
attr_accessor :FailureMode, :UseCallCache, :UseErrorOnHold
|
1128
|
+
attr_accessor :FailureMode, :UseCallCache, :UseErrorOnHold, :FinalWorkflowOutputsDir, :UseRelativeOutputPaths
|
742
1129
|
|
743
|
-
def initialize(failuremode=nil, usecallcache=nil, useerroronhold=nil)
|
1130
|
+
def initialize(failuremode=nil, usecallcache=nil, useerroronhold=nil, finalworkflowoutputsdir=nil, userelativeoutputpaths=nil)
|
744
1131
|
@FailureMode = failuremode
|
745
1132
|
@UseCallCache = usecallcache
|
746
1133
|
@UseErrorOnHold = useerroronhold
|
1134
|
+
@FinalWorkflowOutputsDir = finalworkflowoutputsdir
|
1135
|
+
@UseRelativeOutputPaths = userelativeoutputpaths
|
747
1136
|
end
|
748
1137
|
|
749
1138
|
def deserialize(params)
|
750
1139
|
@FailureMode = params['FailureMode']
|
751
1140
|
@UseCallCache = params['UseCallCache']
|
752
1141
|
@UseErrorOnHold = params['UseErrorOnHold']
|
1142
|
+
@FinalWorkflowOutputsDir = params['FinalWorkflowOutputsDir']
|
1143
|
+
@UseRelativeOutputPaths = params['UseRelativeOutputPaths']
|
753
1144
|
end
|
754
1145
|
end
|
755
1146
|
|
@@ -773,6 +1164,60 @@ module TencentCloud
|
|
773
1164
|
end
|
774
1165
|
end
|
775
1166
|
|
1167
|
+
# 文件存储配置。
|
1168
|
+
class StorageOption < TencentCloud::Common::AbstractModel
|
1169
|
+
# @param StorageType: 文件存储类型,取值范围:
|
1170
|
+
# - SD:通用标准型
|
1171
|
+
# - HP:通用性能型
|
1172
|
+
# - TB:turbo标准型
|
1173
|
+
# - TP:turbo性能型
|
1174
|
+
# @type StorageType: String
|
1175
|
+
# @param Zone: 文件存储可用区。
|
1176
|
+
# @type Zone: String
|
1177
|
+
# @param Capacity: 文件系统容量,turbo系列必填,单位为GiB。
|
1178
|
+
# - turbo标准型起售40TiB,即40960GiB;扩容步长20TiB,即20480 GiB。
|
1179
|
+
# - turbo性能型起售20TiB,即20480 GiB;扩容步长10TiB,即10240 GiB。
|
1180
|
+
# @type Capacity: Integer
|
1181
|
+
|
1182
|
+
attr_accessor :StorageType, :Zone, :Capacity
|
1183
|
+
|
1184
|
+
def initialize(storagetype=nil, zone=nil, capacity=nil)
|
1185
|
+
@StorageType = storagetype
|
1186
|
+
@Zone = zone
|
1187
|
+
@Capacity = capacity
|
1188
|
+
end
|
1189
|
+
|
1190
|
+
def deserialize(params)
|
1191
|
+
@StorageType = params['StorageType']
|
1192
|
+
@Zone = params['Zone']
|
1193
|
+
@Capacity = params['Capacity']
|
1194
|
+
end
|
1195
|
+
end
|
1196
|
+
|
1197
|
+
# 私有网络配置。
|
1198
|
+
class VPCOption < TencentCloud::Common::AbstractModel
|
1199
|
+
# @param SubnetZone: 子网可用区。
|
1200
|
+
# @type SubnetZone: String
|
1201
|
+
# @param VPCCIDRBlock: 私有网络CIDR。
|
1202
|
+
# @type VPCCIDRBlock: String
|
1203
|
+
# @param SubnetCIDRBlock: 子网CIDR。
|
1204
|
+
# @type SubnetCIDRBlock: String
|
1205
|
+
|
1206
|
+
attr_accessor :SubnetZone, :VPCCIDRBlock, :SubnetCIDRBlock
|
1207
|
+
|
1208
|
+
def initialize(subnetzone=nil, vpccidrblock=nil, subnetcidrblock=nil)
|
1209
|
+
@SubnetZone = subnetzone
|
1210
|
+
@VPCCIDRBlock = vpccidrblock
|
1211
|
+
@SubnetCIDRBlock = subnetcidrblock
|
1212
|
+
end
|
1213
|
+
|
1214
|
+
def deserialize(params)
|
1215
|
+
@SubnetZone = params['SubnetZone']
|
1216
|
+
@VPCCIDRBlock = params['VPCCIDRBlock']
|
1217
|
+
@SubnetCIDRBlock = params['SubnetCIDRBlock']
|
1218
|
+
end
|
1219
|
+
end
|
1220
|
+
|
776
1221
|
end
|
777
1222
|
end
|
778
1223
|
end
|
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.567
|
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-05-
|
11
|
+
date: 2023-05-11 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: tencentcloud-sdk-common
|