aws-sdk-omics 1.11.0 → 1.12.0
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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-omics/client.rb +5 -2
- data/lib/aws-sdk-omics/client_api.rb +3 -0
- data/lib/aws-sdk-omics/types.rb +16 -5
- data/lib/aws-sdk-omics.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: f765f55a07c6598c5702dd62a9264a50986eb71fe47eeaa53343ddc3ef3f05ed
|
4
|
+
data.tar.gz: 6e9b9cc345dc600f02877ac3bc6a6b9dfba572589ad8b631b47ed6c2f4e388d1
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 96cf328bb119aeb13b545b63214e2dc079f674129f85ce8759bcc548cf19be138e2ac038a757a43e66786d9262f579aedc0da873c24605d5f7d20864bd41109e
|
7
|
+
data.tar.gz: ec55df30e58af42e9b97f2b207da51117909bf6128f301a12feee3b3de4aaa556a3daaad77897d05073a758df682951250a01a1b89d8a04a15fba7097307ceae
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.12.0
|
data/lib/aws-sdk-omics/client.rb
CHANGED
@@ -2035,6 +2035,7 @@ module Aws::Omics
|
|
2035
2035
|
# * {Types::GetRunTaskResponse#status_message #status_message} => String
|
2036
2036
|
# * {Types::GetRunTaskResponse#log_stream #log_stream} => String
|
2037
2037
|
# * {Types::GetRunTaskResponse#gpus #gpus} => Integer
|
2038
|
+
# * {Types::GetRunTaskResponse#instance_type #instance_type} => String
|
2038
2039
|
#
|
2039
2040
|
# @example Request syntax with placeholder values
|
2040
2041
|
#
|
@@ -2056,6 +2057,7 @@ module Aws::Omics
|
|
2056
2057
|
# resp.status_message #=> String
|
2057
2058
|
# resp.log_stream #=> String
|
2058
2059
|
# resp.gpus #=> Integer
|
2060
|
+
# resp.instance_type #=> String
|
2059
2061
|
#
|
2060
2062
|
#
|
2061
2063
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -2314,7 +2316,7 @@ module Aws::Omics
|
|
2314
2316
|
# IDs of annotation import jobs to retrieve.
|
2315
2317
|
#
|
2316
2318
|
# @option params [String] :next_token
|
2317
|
-
#
|
2319
|
+
# Specifies the pagination token from a previous request to retrieve the
|
2318
2320
|
# next page of results.
|
2319
2321
|
#
|
2320
2322
|
# @option params [Types::ListAnnotationImportJobsFilter] :filter
|
@@ -3037,6 +3039,7 @@ module Aws::Omics
|
|
3037
3039
|
# resp.items[0].start_time #=> Time
|
3038
3040
|
# resp.items[0].stop_time #=> Time
|
3039
3041
|
# resp.items[0].gpus #=> Integer
|
3042
|
+
# resp.items[0].instance_type #=> String
|
3040
3043
|
# resp.next_token #=> String
|
3041
3044
|
#
|
3042
3045
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListRunTasks AWS API Documentation
|
@@ -4088,7 +4091,7 @@ module Aws::Omics
|
|
4088
4091
|
params: params,
|
4089
4092
|
config: config)
|
4090
4093
|
context[:gem_name] = 'aws-sdk-omics'
|
4091
|
-
context[:gem_version] = '1.
|
4094
|
+
context[:gem_version] = '1.12.0'
|
4092
4095
|
Seahorse::Client::Request.new(handlers, context)
|
4093
4096
|
end
|
4094
4097
|
|
@@ -405,6 +405,7 @@ module Aws::Omics
|
|
405
405
|
TagResourceResponse = Shapes::StructureShape.new(name: 'TagResourceResponse')
|
406
406
|
TagValue = Shapes::StringShape.new(name: 'TagValue')
|
407
407
|
TaskId = Shapes::StringShape.new(name: 'TaskId')
|
408
|
+
TaskInstanceType = Shapes::StringShape.new(name: 'TaskInstanceType')
|
408
409
|
TaskList = Shapes::ListShape.new(name: 'TaskList')
|
409
410
|
TaskListItem = Shapes::StructureShape.new(name: 'TaskListItem')
|
410
411
|
TaskListItemCpusInteger = Shapes::IntegerShape.new(name: 'TaskListItemCpusInteger')
|
@@ -1007,6 +1008,7 @@ module Aws::Omics
|
|
1007
1008
|
GetRunTaskResponse.add_member(:status_message, Shapes::ShapeRef.new(shape: TaskStatusMessage, location_name: "statusMessage"))
|
1008
1009
|
GetRunTaskResponse.add_member(:log_stream, Shapes::ShapeRef.new(shape: TaskLogStream, location_name: "logStream"))
|
1009
1010
|
GetRunTaskResponse.add_member(:gpus, Shapes::ShapeRef.new(shape: GetRunTaskResponseGpusInteger, location_name: "gpus"))
|
1011
|
+
GetRunTaskResponse.add_member(:instance_type, Shapes::ShapeRef.new(shape: TaskInstanceType, location_name: "instanceType"))
|
1010
1012
|
GetRunTaskResponse.struct_class = Types::GetRunTaskResponse
|
1011
1013
|
|
1012
1014
|
GetSequenceStoreRequest.add_member(:id, Shapes::ShapeRef.new(shape: SequenceStoreId, required: true, location: "uri", location_name: "id"))
|
@@ -1701,6 +1703,7 @@ module Aws::Omics
|
|
1701
1703
|
TaskListItem.add_member(:start_time, Shapes::ShapeRef.new(shape: TaskTimestamp, location_name: "startTime"))
|
1702
1704
|
TaskListItem.add_member(:stop_time, Shapes::ShapeRef.new(shape: TaskTimestamp, location_name: "stopTime"))
|
1703
1705
|
TaskListItem.add_member(:gpus, Shapes::ShapeRef.new(shape: TaskListItemGpusInteger, location_name: "gpus"))
|
1706
|
+
TaskListItem.add_member(:instance_type, Shapes::ShapeRef.new(shape: TaskInstanceType, location_name: "instanceType"))
|
1704
1707
|
TaskListItem.struct_class = Types::TaskListItem
|
1705
1708
|
|
1706
1709
|
ThrottlingException.add_member(:message, Shapes::ShapeRef.new(shape: String, required: true, location_name: "message"))
|
data/lib/aws-sdk-omics/types.rb
CHANGED
@@ -2310,6 +2310,10 @@ module Aws::Omics
|
|
2310
2310
|
# The number of Graphics Processing Units (GPU) specified in the task.
|
2311
2311
|
# @return [Integer]
|
2312
2312
|
#
|
2313
|
+
# @!attribute [rw] instance_type
|
2314
|
+
# The instance type for a task.
|
2315
|
+
# @return [String]
|
2316
|
+
#
|
2313
2317
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetRunTaskResponse AWS API Documentation
|
2314
2318
|
#
|
2315
2319
|
class GetRunTaskResponse < Struct.new(
|
@@ -2323,7 +2327,8 @@ module Aws::Omics
|
|
2323
2327
|
:stop_time,
|
2324
2328
|
:status_message,
|
2325
2329
|
:log_stream,
|
2326
|
-
:gpus
|
2330
|
+
:gpus,
|
2331
|
+
:instance_type)
|
2327
2332
|
SENSITIVE = []
|
2328
2333
|
include Aws::Structure
|
2329
2334
|
end
|
@@ -2920,8 +2925,8 @@ module Aws::Omics
|
|
2920
2925
|
# @return [Array<String>]
|
2921
2926
|
#
|
2922
2927
|
# @!attribute [rw] next_token
|
2923
|
-
#
|
2924
|
-
# next page of results.
|
2928
|
+
# Specifies the pagination token from a previous request to retrieve
|
2929
|
+
# the next page of results.
|
2925
2930
|
# @return [String]
|
2926
2931
|
#
|
2927
2932
|
# @!attribute [rw] filter
|
@@ -2944,7 +2949,8 @@ module Aws::Omics
|
|
2944
2949
|
# @return [Array<Types::AnnotationImportJobItem>]
|
2945
2950
|
#
|
2946
2951
|
# @!attribute [rw] next_token
|
2947
|
-
#
|
2952
|
+
# Specifies the pagination token from a previous request to retrieve
|
2953
|
+
# the next page of results.
|
2948
2954
|
# @return [String]
|
2949
2955
|
#
|
2950
2956
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListAnnotationImportJobsResponse AWS API Documentation
|
@@ -5266,6 +5272,10 @@ module Aws::Omics
|
|
5266
5272
|
# task.
|
5267
5273
|
# @return [Integer]
|
5268
5274
|
#
|
5275
|
+
# @!attribute [rw] instance_type
|
5276
|
+
# The instance type for a task.
|
5277
|
+
# @return [String]
|
5278
|
+
#
|
5269
5279
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/TaskListItem AWS API Documentation
|
5270
5280
|
#
|
5271
5281
|
class TaskListItem < Struct.new(
|
@@ -5277,7 +5287,8 @@ module Aws::Omics
|
|
5277
5287
|
:creation_time,
|
5278
5288
|
:start_time,
|
5279
5289
|
:stop_time,
|
5280
|
-
:gpus
|
5290
|
+
:gpus,
|
5291
|
+
:instance_type)
|
5281
5292
|
SENSITIVE = []
|
5282
5293
|
include Aws::Structure
|
5283
5294
|
end
|
data/lib/aws-sdk-omics.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-omics
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.12.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2023-
|
11
|
+
date: 2023-08-10 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|