aws-sdk-omics 1.31.0 → 1.32.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 +21 -9
- data/lib/aws-sdk-omics/client_api.rb +10 -1
- data/lib/aws-sdk-omics/types.rb +38 -10
- data/lib/aws-sdk-omics.rb +1 -1
- data/sig/client.rbs +3 -0
- data/sig/types.rbs +5 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: c41d53e21b3b41298b6a4d6df1aee771a33cce23de15ab95e8cfbf1db840f220
|
4
|
+
data.tar.gz: fcf53913bd879e664d69d47b06e8d4744d7764aabf4542b0796db8ab522a7e23
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: f7fed63a1aaf900c6c1654690fe797be1d96b9e74623912071648b3baf0a4265e60831ec3be1b62442b5ea61afa04e4d544e16cf196caa73f17db5ad9552230b
|
7
|
+
data.tar.gz: 6ad599f8d737c710ffca54aac58607d6b59452a9f2cddc7cf5600fd4a453ba6e3d3457aeb4566fec1b72eb1a4de4dabcf8033e4caf652fdc07c54bba7fd821e9
|
data/CHANGELOG.md
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.32.0
|
data/lib/aws-sdk-omics/client.rb
CHANGED
@@ -945,19 +945,22 @@ module Aws::Omics
|
|
945
945
|
req.send_request(options)
|
946
946
|
end
|
947
947
|
|
948
|
-
#
|
948
|
+
# You can optionally create a run group to limit the compute resources
|
949
|
+
# for the runs that you add to the group.
|
949
950
|
#
|
950
951
|
# @option params [String] :name
|
951
952
|
# A name for the group.
|
952
953
|
#
|
953
954
|
# @option params [Integer] :max_cpus
|
954
|
-
# The maximum number of CPUs
|
955
|
+
# The maximum number of CPUs that can run concurrently across all active
|
956
|
+
# runs in the run group.
|
955
957
|
#
|
956
958
|
# @option params [Integer] :max_runs
|
957
|
-
# The maximum number of
|
959
|
+
# The maximum number of runs that can be running at the same time.
|
958
960
|
#
|
959
961
|
# @option params [Integer] :max_duration
|
960
|
-
#
|
962
|
+
# The maximum time for each run (in minutes). If a run exceeds the
|
963
|
+
# maximum run time, the run fails automatically.
|
961
964
|
#
|
962
965
|
# @option params [Hash<String,String>] :tags
|
963
966
|
# Tags for the group.
|
@@ -970,7 +973,8 @@ module Aws::Omics
|
|
970
973
|
# not need to pass this option.**
|
971
974
|
#
|
972
975
|
# @option params [Integer] :max_gpus
|
973
|
-
# The maximum GPUs that can
|
976
|
+
# The maximum number of GPUs that can run concurrently across all active
|
977
|
+
# runs in the run group.
|
974
978
|
#
|
975
979
|
# @return [Types::CreateRunGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
976
980
|
#
|
@@ -1088,9 +1092,9 @@ module Aws::Omics
|
|
1088
1092
|
#
|
1089
1093
|
# The following resources support cross-account sharing:
|
1090
1094
|
#
|
1091
|
-
# *
|
1095
|
+
# * HealthOmics variant stores
|
1092
1096
|
#
|
1093
|
-
# *
|
1097
|
+
# * HealthOmics annotation stores
|
1094
1098
|
#
|
1095
1099
|
# * Private workflows
|
1096
1100
|
#
|
@@ -1216,7 +1220,7 @@ module Aws::Omics
|
|
1216
1220
|
# A parameter template for the workflow.
|
1217
1221
|
#
|
1218
1222
|
# @option params [Integer] :storage_capacity
|
1219
|
-
# The storage capacity for the workflow in gibibytes.
|
1223
|
+
# The default storage capacity for the workflow runs, in gibibytes.
|
1220
1224
|
#
|
1221
1225
|
# @option params [Hash<String,String>] :tags
|
1222
1226
|
# Tags for the workflow.
|
@@ -1952,6 +1956,7 @@ module Aws::Omics
|
|
1952
1956
|
# resp.sources[0].description #=> String
|
1953
1957
|
# resp.sources[0].tags #=> Hash
|
1954
1958
|
# resp.sources[0].tags["TagKey"] #=> String
|
1959
|
+
# resp.sources[0].read_set_id #=> String
|
1955
1960
|
#
|
1956
1961
|
#
|
1957
1962
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -1993,6 +1998,7 @@ module Aws::Omics
|
|
1993
1998
|
# * {Types::GetReadSetMetadataResponse#status_message #status_message} => String
|
1994
1999
|
# * {Types::GetReadSetMetadataResponse#creation_type #creation_type} => String
|
1995
2000
|
# * {Types::GetReadSetMetadataResponse#etag #etag} => Types::ETag
|
2001
|
+
# * {Types::GetReadSetMetadataResponse#creation_job_id #creation_job_id} => String
|
1996
2002
|
#
|
1997
2003
|
# @example Request syntax with placeholder values
|
1998
2004
|
#
|
@@ -2035,6 +2041,7 @@ module Aws::Omics
|
|
2035
2041
|
# resp.etag.algorithm #=> String, one of "FASTQ_MD5up", "BAM_MD5up", "CRAM_MD5up", "FASTQ_SHA256up", "BAM_SHA256up", "CRAM_SHA256up", "FASTQ_SHA512up", "BAM_SHA512up", "CRAM_SHA512up"
|
2036
2042
|
# resp.etag.source1 #=> String
|
2037
2043
|
# resp.etag.source2 #=> String
|
2044
|
+
# resp.creation_job_id #=> String
|
2038
2045
|
#
|
2039
2046
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetReadSetMetadata AWS API Documentation
|
2040
2047
|
#
|
@@ -2132,6 +2139,7 @@ module Aws::Omics
|
|
2132
2139
|
# resp.sources[0].description #=> String
|
2133
2140
|
# resp.sources[0].tags #=> Hash
|
2134
2141
|
# resp.sources[0].tags["TagKey"] #=> String
|
2142
|
+
# resp.sources[0].reference_id #=> String
|
2135
2143
|
#
|
2136
2144
|
#
|
2137
2145
|
# The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
|
@@ -2167,6 +2175,8 @@ module Aws::Omics
|
|
2167
2175
|
# * {Types::GetReferenceMetadataResponse#creation_time #creation_time} => Time
|
2168
2176
|
# * {Types::GetReferenceMetadataResponse#update_time #update_time} => Time
|
2169
2177
|
# * {Types::GetReferenceMetadataResponse#files #files} => Types::ReferenceFiles
|
2178
|
+
# * {Types::GetReferenceMetadataResponse#creation_type #creation_type} => String
|
2179
|
+
# * {Types::GetReferenceMetadataResponse#creation_job_id #creation_job_id} => String
|
2170
2180
|
#
|
2171
2181
|
# @example Request syntax with placeholder values
|
2172
2182
|
#
|
@@ -2194,6 +2204,8 @@ module Aws::Omics
|
|
2194
2204
|
# resp.files.index.part_size #=> Integer
|
2195
2205
|
# resp.files.index.content_length #=> Integer
|
2196
2206
|
# resp.files.index.s3_access.s3_uri #=> String
|
2207
|
+
# resp.creation_type #=> String, one of "IMPORT"
|
2208
|
+
# resp.creation_job_id #=> String
|
2197
2209
|
#
|
2198
2210
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetReferenceMetadata AWS API Documentation
|
2199
2211
|
#
|
@@ -4742,7 +4754,7 @@ module Aws::Omics
|
|
4742
4754
|
params: params,
|
4743
4755
|
config: config)
|
4744
4756
|
context[:gem_name] = 'aws-sdk-omics'
|
4745
|
-
context[:gem_version] = '1.
|
4757
|
+
context[:gem_version] = '1.32.0'
|
4746
4758
|
Seahorse::Client::Request.new(handlers, context)
|
4747
4759
|
end
|
4748
4760
|
|
@@ -83,6 +83,7 @@ module Aws::Omics
|
|
83
83
|
CreateWorkflowRequest = Shapes::StructureShape.new(name: 'CreateWorkflowRequest')
|
84
84
|
CreateWorkflowRequestStorageCapacityInteger = Shapes::IntegerShape.new(name: 'CreateWorkflowRequestStorageCapacityInteger')
|
85
85
|
CreateWorkflowResponse = Shapes::StructureShape.new(name: 'CreateWorkflowResponse')
|
86
|
+
CreationJobId = Shapes::StringShape.new(name: 'CreationJobId')
|
86
87
|
CreationTime = Shapes::TimestampShape.new(name: 'CreationTime', timestampFormat: "iso8601")
|
87
88
|
CreationType = Shapes::StringShape.new(name: 'CreationType')
|
88
89
|
DeleteAnnotationStoreRequest = Shapes::StructureShape.new(name: 'DeleteAnnotationStoreRequest')
|
@@ -317,6 +318,7 @@ module Aws::Omics
|
|
317
318
|
ReadSetUploadPartListItemPartSizeLong = Shapes::IntegerShape.new(name: 'ReadSetUploadPartListItemPartSizeLong')
|
318
319
|
ReferenceArn = Shapes::StringShape.new(name: 'ReferenceArn')
|
319
320
|
ReferenceArnFilter = Shapes::StringShape.new(name: 'ReferenceArnFilter')
|
321
|
+
ReferenceCreationType = Shapes::StringShape.new(name: 'ReferenceCreationType')
|
320
322
|
ReferenceDescription = Shapes::StringShape.new(name: 'ReferenceDescription')
|
321
323
|
ReferenceFile = Shapes::StringShape.new(name: 'ReferenceFile')
|
322
324
|
ReferenceFiles = Shapes::StructureShape.new(name: 'ReferenceFiles')
|
@@ -1043,6 +1045,7 @@ module Aws::Omics
|
|
1043
1045
|
GetReadSetMetadataResponse.add_member(:status_message, Shapes::ShapeRef.new(shape: ReadSetStatusMessage, location_name: "statusMessage"))
|
1044
1046
|
GetReadSetMetadataResponse.add_member(:creation_type, Shapes::ShapeRef.new(shape: CreationType, location_name: "creationType"))
|
1045
1047
|
GetReadSetMetadataResponse.add_member(:etag, Shapes::ShapeRef.new(shape: ETag, location_name: "etag"))
|
1048
|
+
GetReadSetMetadataResponse.add_member(:creation_job_id, Shapes::ShapeRef.new(shape: CreationJobId, location_name: "creationJobId"))
|
1046
1049
|
GetReadSetMetadataResponse.struct_class = Types::GetReadSetMetadataResponse
|
1047
1050
|
|
1048
1051
|
GetReadSetRequest.add_member(:id, Shapes::ShapeRef.new(shape: ReadSetId, required: true, location: "uri", location_name: "id"))
|
@@ -1084,6 +1087,8 @@ module Aws::Omics
|
|
1084
1087
|
GetReferenceMetadataResponse.add_member(:creation_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "creationTime"))
|
1085
1088
|
GetReferenceMetadataResponse.add_member(:update_time, Shapes::ShapeRef.new(shape: SyntheticTimestamp_date_time, required: true, location_name: "updateTime"))
|
1086
1089
|
GetReferenceMetadataResponse.add_member(:files, Shapes::ShapeRef.new(shape: ReferenceFiles, location_name: "files"))
|
1090
|
+
GetReferenceMetadataResponse.add_member(:creation_type, Shapes::ShapeRef.new(shape: ReferenceCreationType, location_name: "creationType"))
|
1091
|
+
GetReferenceMetadataResponse.add_member(:creation_job_id, Shapes::ShapeRef.new(shape: CreationJobId, location_name: "creationJobId"))
|
1087
1092
|
GetReferenceMetadataResponse.struct_class = Types::GetReferenceMetadataResponse
|
1088
1093
|
|
1089
1094
|
GetReferenceRequest.add_member(:id, Shapes::ShapeRef.new(shape: ReferenceId, required: true, location: "uri", location_name: "id"))
|
@@ -1283,6 +1288,7 @@ module Aws::Omics
|
|
1283
1288
|
ImportReadSetSourceItem.add_member(:name, Shapes::ShapeRef.new(shape: ReadSetName, location_name: "name"))
|
1284
1289
|
ImportReadSetSourceItem.add_member(:description, Shapes::ShapeRef.new(shape: ReadSetDescription, location_name: "description"))
|
1285
1290
|
ImportReadSetSourceItem.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
1291
|
+
ImportReadSetSourceItem.add_member(:read_set_id, Shapes::ShapeRef.new(shape: ReadSetId, location_name: "readSetId"))
|
1286
1292
|
ImportReadSetSourceItem.struct_class = Types::ImportReadSetSourceItem
|
1287
1293
|
|
1288
1294
|
ImportReadSetSourceList.member = Shapes::ShapeRef.new(shape: ImportReadSetSourceItem)
|
@@ -1308,6 +1314,7 @@ module Aws::Omics
|
|
1308
1314
|
ImportReferenceSourceItem.add_member(:name, Shapes::ShapeRef.new(shape: ReferenceName, location_name: "name"))
|
1309
1315
|
ImportReferenceSourceItem.add_member(:description, Shapes::ShapeRef.new(shape: ReferenceDescription, location_name: "description"))
|
1310
1316
|
ImportReferenceSourceItem.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
|
1317
|
+
ImportReferenceSourceItem.add_member(:reference_id, Shapes::ShapeRef.new(shape: ReferenceId, location_name: "referenceId"))
|
1311
1318
|
ImportReferenceSourceItem.struct_class = Types::ImportReferenceSourceItem
|
1312
1319
|
|
1313
1320
|
ImportReferenceSourceList.member = Shapes::ShapeRef.new(shape: ImportReferenceSourceItem)
|
@@ -2131,9 +2138,10 @@ module Aws::Omics
|
|
2131
2138
|
|
2132
2139
|
api.metadata = {
|
2133
2140
|
"apiVersion" => "2022-11-28",
|
2141
|
+
"auth" => ["aws.auth#sigv4"],
|
2134
2142
|
"endpointPrefix" => "omics",
|
2135
|
-
"jsonVersion" => "1.1",
|
2136
2143
|
"protocol" => "rest-json",
|
2144
|
+
"protocols" => ["rest-json"],
|
2137
2145
|
"serviceFullName" => "Amazon Omics",
|
2138
2146
|
"serviceId" => "Omics",
|
2139
2147
|
"signatureVersion" => "v4",
|
@@ -3694,6 +3702,7 @@ module Aws::Omics
|
|
3694
3702
|
o.http_method = "PUT"
|
3695
3703
|
o.http_request_uri = "/sequencestore/{sequenceStoreId}/upload/{uploadId}/part"
|
3696
3704
|
o['authtype'] = "v4-unsigned-body"
|
3705
|
+
o['unsignedPayload'] = true
|
3697
3706
|
o.endpoint_pattern = {
|
3698
3707
|
"hostPrefix" => "storage-",
|
3699
3708
|
}
|
data/lib/aws-sdk-omics/types.rb
CHANGED
@@ -898,15 +898,17 @@ module Aws::Omics
|
|
898
898
|
# @return [String]
|
899
899
|
#
|
900
900
|
# @!attribute [rw] max_cpus
|
901
|
-
# The maximum number of CPUs
|
901
|
+
# The maximum number of CPUs that can run concurrently across all
|
902
|
+
# active runs in the run group.
|
902
903
|
# @return [Integer]
|
903
904
|
#
|
904
905
|
# @!attribute [rw] max_runs
|
905
|
-
# The maximum number of
|
906
|
+
# The maximum number of runs that can be running at the same time.
|
906
907
|
# @return [Integer]
|
907
908
|
#
|
908
909
|
# @!attribute [rw] max_duration
|
909
|
-
#
|
910
|
+
# The maximum time for each run (in minutes). If a run exceeds the
|
911
|
+
# maximum run time, the run fails automatically.
|
910
912
|
# @return [Integer]
|
911
913
|
#
|
912
914
|
# @!attribute [rw] tags
|
@@ -922,7 +924,8 @@ module Aws::Omics
|
|
922
924
|
# @return [String]
|
923
925
|
#
|
924
926
|
# @!attribute [rw] max_gpus
|
925
|
-
# The maximum GPUs that can
|
927
|
+
# The maximum number of GPUs that can run concurrently across all
|
928
|
+
# active runs in the run group.
|
926
929
|
# @return [Integer]
|
927
930
|
#
|
928
931
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/CreateRunGroupRequest AWS API Documentation
|
@@ -1191,7 +1194,7 @@ module Aws::Omics
|
|
1191
1194
|
# @return [Hash<String,Types::WorkflowParameter>]
|
1192
1195
|
#
|
1193
1196
|
# @!attribute [rw] storage_capacity
|
1194
|
-
# The storage capacity for the workflow in gibibytes.
|
1197
|
+
# The default storage capacity for the workflow runs, in gibibytes.
|
1195
1198
|
# @return [Integer]
|
1196
1199
|
#
|
1197
1200
|
# @!attribute [rw] tags
|
@@ -2216,6 +2219,10 @@ module Aws::Omics
|
|
2216
2219
|
# semantic content.
|
2217
2220
|
# @return [Types::ETag]
|
2218
2221
|
#
|
2222
|
+
# @!attribute [rw] creation_job_id
|
2223
|
+
# The read set's creation job ID.
|
2224
|
+
# @return [String]
|
2225
|
+
#
|
2219
2226
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetReadSetMetadataResponse AWS API Documentation
|
2220
2227
|
#
|
2221
2228
|
class GetReadSetMetadataResponse < Struct.new(
|
@@ -2234,7 +2241,8 @@ module Aws::Omics
|
|
2234
2241
|
:files,
|
2235
2242
|
:status_message,
|
2236
2243
|
:creation_type,
|
2237
|
-
:etag
|
2244
|
+
:etag,
|
2245
|
+
:creation_job_id)
|
2238
2246
|
SENSITIVE = []
|
2239
2247
|
include Aws::Structure
|
2240
2248
|
end
|
@@ -2399,6 +2407,14 @@ module Aws::Omics
|
|
2399
2407
|
# The reference's files.
|
2400
2408
|
# @return [Types::ReferenceFiles]
|
2401
2409
|
#
|
2410
|
+
# @!attribute [rw] creation_type
|
2411
|
+
# The reference's creation type.
|
2412
|
+
# @return [String]
|
2413
|
+
#
|
2414
|
+
# @!attribute [rw] creation_job_id
|
2415
|
+
# The reference's creation job ID.
|
2416
|
+
# @return [String]
|
2417
|
+
#
|
2402
2418
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetReferenceMetadataResponse AWS API Documentation
|
2403
2419
|
#
|
2404
2420
|
class GetReferenceMetadataResponse < Struct.new(
|
@@ -2411,7 +2427,9 @@ module Aws::Omics
|
|
2411
2427
|
:description,
|
2412
2428
|
:creation_time,
|
2413
2429
|
:update_time,
|
2414
|
-
:files
|
2430
|
+
:files,
|
2431
|
+
:creation_type,
|
2432
|
+
:creation_job_id)
|
2415
2433
|
SENSITIVE = []
|
2416
2434
|
include Aws::Structure
|
2417
2435
|
end
|
@@ -3159,7 +3177,7 @@ module Aws::Omics
|
|
3159
3177
|
# @return [Hash<String,Types::WorkflowParameter>]
|
3160
3178
|
#
|
3161
3179
|
# @!attribute [rw] storage_capacity
|
3162
|
-
# The workflow's storage capacity in gibibytes.
|
3180
|
+
# The workflow's default run storage capacity in gibibytes.
|
3163
3181
|
# @return [Integer]
|
3164
3182
|
#
|
3165
3183
|
# @!attribute [rw] creation_time
|
@@ -3315,6 +3333,10 @@ module Aws::Omics
|
|
3315
3333
|
# The source's tags.
|
3316
3334
|
# @return [Hash<String,String>]
|
3317
3335
|
#
|
3336
|
+
# @!attribute [rw] read_set_id
|
3337
|
+
# The source's read set ID.
|
3338
|
+
# @return [String]
|
3339
|
+
#
|
3318
3340
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ImportReadSetSourceItem AWS API Documentation
|
3319
3341
|
#
|
3320
3342
|
class ImportReadSetSourceItem < Struct.new(
|
@@ -3328,7 +3350,8 @@ module Aws::Omics
|
|
3328
3350
|
:reference_arn,
|
3329
3351
|
:name,
|
3330
3352
|
:description,
|
3331
|
-
:tags
|
3353
|
+
:tags,
|
3354
|
+
:read_set_id)
|
3332
3355
|
SENSITIVE = []
|
3333
3356
|
include Aws::Structure
|
3334
3357
|
end
|
@@ -3422,6 +3445,10 @@ module Aws::Omics
|
|
3422
3445
|
# The source's tags.
|
3423
3446
|
# @return [Hash<String,String>]
|
3424
3447
|
#
|
3448
|
+
# @!attribute [rw] reference_id
|
3449
|
+
# The source's reference ID.
|
3450
|
+
# @return [String]
|
3451
|
+
#
|
3425
3452
|
# @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ImportReferenceSourceItem AWS API Documentation
|
3426
3453
|
#
|
3427
3454
|
class ImportReferenceSourceItem < Struct.new(
|
@@ -3430,7 +3457,8 @@ module Aws::Omics
|
|
3430
3457
|
:status_message,
|
3431
3458
|
:name,
|
3432
3459
|
:description,
|
3433
|
-
:tags
|
3460
|
+
:tags,
|
3461
|
+
:reference_id)
|
3434
3462
|
SENSITIVE = []
|
3435
3463
|
include Aws::Structure
|
3436
3464
|
end
|
data/lib/aws-sdk-omics.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -612,6 +612,7 @@ module Aws
|
|
612
612
|
def status_message: () -> ::String
|
613
613
|
def creation_type: () -> ("IMPORT" | "UPLOAD")
|
614
614
|
def etag: () -> Types::ETag
|
615
|
+
def creation_job_id: () -> ::String
|
615
616
|
end
|
616
617
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_read_set_metadata-instance_method
|
617
618
|
def get_read_set_metadata: (
|
@@ -664,6 +665,8 @@ module Aws
|
|
664
665
|
def creation_time: () -> ::Time
|
665
666
|
def update_time: () -> ::Time
|
666
667
|
def files: () -> Types::ReferenceFiles
|
668
|
+
def creation_type: () -> ("IMPORT")
|
669
|
+
def creation_job_id: () -> ::String
|
667
670
|
end
|
668
671
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_reference_metadata-instance_method
|
669
672
|
def get_reference_metadata: (
|
data/sig/types.rbs
CHANGED
@@ -649,6 +649,7 @@ module Aws::Omics
|
|
649
649
|
attr_accessor status_message: ::String
|
650
650
|
attr_accessor creation_type: ("IMPORT" | "UPLOAD")
|
651
651
|
attr_accessor etag: Types::ETag
|
652
|
+
attr_accessor creation_job_id: ::String
|
652
653
|
SENSITIVE: []
|
653
654
|
end
|
654
655
|
|
@@ -700,6 +701,8 @@ module Aws::Omics
|
|
700
701
|
attr_accessor creation_time: ::Time
|
701
702
|
attr_accessor update_time: ::Time
|
702
703
|
attr_accessor files: Types::ReferenceFiles
|
704
|
+
attr_accessor creation_type: ("IMPORT")
|
705
|
+
attr_accessor creation_job_id: ::String
|
703
706
|
SENSITIVE: []
|
704
707
|
end
|
705
708
|
|
@@ -941,6 +944,7 @@ module Aws::Omics
|
|
941
944
|
attr_accessor name: ::String
|
942
945
|
attr_accessor description: ::String
|
943
946
|
attr_accessor tags: ::Hash[::String, ::String]
|
947
|
+
attr_accessor read_set_id: ::String
|
944
948
|
SENSITIVE: []
|
945
949
|
end
|
946
950
|
|
@@ -968,6 +972,7 @@ module Aws::Omics
|
|
968
972
|
attr_accessor name: ::String
|
969
973
|
attr_accessor description: ::String
|
970
974
|
attr_accessor tags: ::Hash[::String, ::String]
|
975
|
+
attr_accessor reference_id: ::String
|
971
976
|
SENSITIVE: []
|
972
977
|
end
|
973
978
|
|
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.32.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: 2024-
|
11
|
+
date: 2024-08-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -36,14 +36,14 @@ dependencies:
|
|
36
36
|
requirements:
|
37
37
|
- - "~>"
|
38
38
|
- !ruby/object:Gem::Version
|
39
|
-
version: '1.
|
39
|
+
version: '1.5'
|
40
40
|
type: :runtime
|
41
41
|
prerelease: false
|
42
42
|
version_requirements: !ruby/object:Gem::Requirement
|
43
43
|
requirements:
|
44
44
|
- - "~>"
|
45
45
|
- !ruby/object:Gem::Version
|
46
|
-
version: '1.
|
46
|
+
version: '1.5'
|
47
47
|
description: Official AWS Ruby gem for Amazon Omics. This gem is part of the AWS SDK
|
48
48
|
for Ruby.
|
49
49
|
email:
|