tencentcloud-sdk-omics 3.0.563 → 3.0.566

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.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: f3703082cbd3ff719538804bd889ecd864bd1fe9
4
- data.tar.gz: 775eae2ea7c1f713c927c94be4d191dd970ef485
3
+ metadata.gz: ac5ac943944367989617bed67772607d1d3e8f23
4
+ data.tar.gz: 93e7a7bc7e395e23c26011b757a22272ce5d97be
5
5
  SHA512:
6
- metadata.gz: f3365d11de075b857493a371c60be75140840110b918cdb15dca8069920192eb19a163da95d0125dce0916f806005a89040f4d169829008bacce16340743d111
7
- data.tar.gz: ccef97365250766f2189e6d72d19a67c0de66ea333421af4c1472ce92a34c341dcb411010f0c84f023a558ab5af2c3329e55f3f2c6aa64857bcf268a80e6b0ee
6
+ metadata.gz: 3dc4be2105881b3626c44404b4be5be60d0eb58225ee8e5a60d1b9a5058b9b39557f4b77da774b1ebe07e87b0c42ce6cd6f4a8f67d994b7202a28ad7a7cd80ca
7
+ data.tar.gz: f118065128a9b958378d6984d7153c15613f0a6df5d24155180b18c8f834705258cfa283ff66dd528b833f0f7f47525884363a97eb745adb39fe57e4c06e452b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.563
1
+ 3.0.566
@@ -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.
@@ -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。
@@ -773,6 +1154,60 @@ module TencentCloud
773
1154
  end
774
1155
  end
775
1156
 
1157
+ # 文件存储配置。
1158
+ class StorageOption < TencentCloud::Common::AbstractModel
1159
+ # @param StorageType: 文件存储类型,取值范围:
1160
+ # - SD:通用标准型
1161
+ # - HP:通用性能型
1162
+ # - TB:turbo标准型
1163
+ # - TP:turbo性能型
1164
+ # @type StorageType: String
1165
+ # @param Zone: 文件存储可用区。
1166
+ # @type Zone: String
1167
+ # @param Capacity: 文件系统容量,turbo系列必填,单位为GiB。
1168
+ # - turbo标准型起售40TiB,即40960GiB;扩容步长20TiB,即20480 GiB。
1169
+ # - turbo性能型起售20TiB,即20480 GiB;扩容步长10TiB,即10240 GiB。
1170
+ # @type Capacity: Integer
1171
+
1172
+ attr_accessor :StorageType, :Zone, :Capacity
1173
+
1174
+ def initialize(storagetype=nil, zone=nil, capacity=nil)
1175
+ @StorageType = storagetype
1176
+ @Zone = zone
1177
+ @Capacity = capacity
1178
+ end
1179
+
1180
+ def deserialize(params)
1181
+ @StorageType = params['StorageType']
1182
+ @Zone = params['Zone']
1183
+ @Capacity = params['Capacity']
1184
+ end
1185
+ end
1186
+
1187
+ # 私有网络配置。
1188
+ class VPCOption < TencentCloud::Common::AbstractModel
1189
+ # @param SubnetZone: 子网可用区。
1190
+ # @type SubnetZone: String
1191
+ # @param VPCCIDRBlock: 私有网络CIDR。
1192
+ # @type VPCCIDRBlock: String
1193
+ # @param SubnetCIDRBlock: 子网CIDR。
1194
+ # @type SubnetCIDRBlock: String
1195
+
1196
+ attr_accessor :SubnetZone, :VPCCIDRBlock, :SubnetCIDRBlock
1197
+
1198
+ def initialize(subnetzone=nil, vpccidrblock=nil, subnetcidrblock=nil)
1199
+ @SubnetZone = subnetzone
1200
+ @VPCCIDRBlock = vpccidrblock
1201
+ @SubnetCIDRBlock = subnetcidrblock
1202
+ end
1203
+
1204
+ def deserialize(params)
1205
+ @SubnetZone = params['SubnetZone']
1206
+ @VPCCIDRBlock = params['VPCCIDRBlock']
1207
+ @SubnetCIDRBlock = params['SubnetCIDRBlock']
1208
+ end
1209
+ end
1210
+
776
1211
  end
777
1212
  end
778
1213
  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.563
4
+ version: 3.0.566
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-01 00:00:00.000000000 Z
11
+ date: 2023-05-10 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common