aws-sdk-omics 1.31.0 → 1.33.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: b75a15fcf82e97f33aec962f0effa34b9d37c226f07def7d1a125b34e8fa8c74
4
- data.tar.gz: a64a8e3de647f1107bc0b010bd8d23bcf1b5dc1271b6144ea7a4363344779979
3
+ metadata.gz: ee0589f9082b3c6b1e86188ea6473f09146f2beb130c6e41392be0bc35cd24f4
4
+ data.tar.gz: 59dddd7bf1825a10d0ed62811250ba5a6acb3517d91f792a8b1a398f764549df
5
5
  SHA512:
6
- metadata.gz: 9080886f3b0e1f353c47682a95b431cc6e41d047731b9d4b8645736c385ffaa2bcec9d13ddba8c5fda0e90b77a79777f4e34c86c1535123e06c9947a8746e757
7
- data.tar.gz: ed53980551e2bc6f1cad211fe4667e861cf3ce55f8df45201bf2e973e2138ad6c49f2ba079c86483f86fedd0eeec5564ec41544d98883b0b39dc936bff1abfe5
6
+ metadata.gz: ecc68ea14b67621ce3c64c646a40110edbcc6b17ef9eba4a1202a965f63aa5ce2b81469168208abd35c2ef96fa441afa066a975e6a6a538e37def24aa09326a2
7
+ data.tar.gz: 3f0ad651d83a76992568bd1e16c54c0ab92c9747512295e8ef4084781115f55ad28c909c51a425c388555a1be463f144dcbe11b100c14b274a4f167a344a2d82
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.33.0 (2024-09-03)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
9
+ 1.32.0 (2024-08-27)
10
+ ------------------
11
+
12
+ * Feature - Adds data provenance to import jobs from read sets and references
13
+
4
14
  1.31.0 (2024-07-02)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.31.0
1
+ 1.33.0
@@ -32,6 +32,7 @@ require 'aws-sdk-core/plugins/checksum_algorithm.rb'
32
32
  require 'aws-sdk-core/plugins/request_compression.rb'
33
33
  require 'aws-sdk-core/plugins/defaults_mode.rb'
34
34
  require 'aws-sdk-core/plugins/recursion_detection.rb'
35
+ require 'aws-sdk-core/plugins/telemetry.rb'
35
36
  require 'aws-sdk-core/plugins/sign.rb'
36
37
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
37
38
 
@@ -83,6 +84,7 @@ module Aws::Omics
83
84
  add_plugin(Aws::Plugins::RequestCompression)
84
85
  add_plugin(Aws::Plugins::DefaultsMode)
85
86
  add_plugin(Aws::Plugins::RecursionDetection)
87
+ add_plugin(Aws::Plugins::Telemetry)
86
88
  add_plugin(Aws::Plugins::Sign)
87
89
  add_plugin(Aws::Plugins::Protocols::RestJson)
88
90
  add_plugin(Aws::Omics::Plugins::Endpoints)
@@ -330,6 +332,16 @@ module Aws::Omics
330
332
  # ** Please note ** When response stubbing is enabled, no HTTP
331
333
  # requests are made, and retries are disabled.
332
334
  #
335
+ # @option options [Aws::Telemetry::TelemetryProviderBase] :telemetry_provider (Aws::Telemetry::NoOpTelemetryProvider)
336
+ # Allows you to provide a telemetry provider, which is used to
337
+ # emit telemetry data. By default, uses `NoOpTelemetryProvider` which
338
+ # will not record or emit any telemetry data. The SDK supports the
339
+ # following telemetry providers:
340
+ #
341
+ # * OpenTelemetry (OTel) - To use the OTel provider, install and require the
342
+ # `opentelemetry-sdk` gem and then, pass in an instance of a
343
+ # `Aws::Telemetry::OTelProvider` for telemetry provider.
344
+ #
333
345
  # @option options [Aws::TokenProvider] :token_provider
334
346
  # A Bearer Token Provider. This can be an instance of any one of the
335
347
  # following classes:
@@ -945,19 +957,22 @@ module Aws::Omics
945
957
  req.send_request(options)
946
958
  end
947
959
 
948
- # Creates a run group.
960
+ # You can optionally create a run group to limit the compute resources
961
+ # for the runs that you add to the group.
949
962
  #
950
963
  # @option params [String] :name
951
964
  # A name for the group.
952
965
  #
953
966
  # @option params [Integer] :max_cpus
954
- # The maximum number of CPUs to use in the group.
967
+ # The maximum number of CPUs that can run concurrently across all active
968
+ # runs in the run group.
955
969
  #
956
970
  # @option params [Integer] :max_runs
957
- # The maximum number of concurrent runs for the group.
971
+ # The maximum number of runs that can be running at the same time.
958
972
  #
959
973
  # @option params [Integer] :max_duration
960
- # A maximum run time for the group in minutes.
974
+ # The maximum time for each run (in minutes). If a run exceeds the
975
+ # maximum run time, the run fails automatically.
961
976
  #
962
977
  # @option params [Hash<String,String>] :tags
963
978
  # Tags for the group.
@@ -970,7 +985,8 @@ module Aws::Omics
970
985
  # not need to pass this option.**
971
986
  #
972
987
  # @option params [Integer] :max_gpus
973
- # The maximum GPUs that can be used by a run group.
988
+ # The maximum number of GPUs that can run concurrently across all active
989
+ # runs in the run group.
974
990
  #
975
991
  # @return [Types::CreateRunGroupResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
976
992
  #
@@ -1088,9 +1104,9 @@ module Aws::Omics
1088
1104
  #
1089
1105
  # The following resources support cross-account sharing:
1090
1106
  #
1091
- # * Healthomics variant stores
1107
+ # * HealthOmics variant stores
1092
1108
  #
1093
- # * Healthomics annotation stores
1109
+ # * HealthOmics annotation stores
1094
1110
  #
1095
1111
  # * Private workflows
1096
1112
  #
@@ -1216,7 +1232,7 @@ module Aws::Omics
1216
1232
  # A parameter template for the workflow.
1217
1233
  #
1218
1234
  # @option params [Integer] :storage_capacity
1219
- # The storage capacity for the workflow in gibibytes.
1235
+ # The default storage capacity for the workflow runs, in gibibytes.
1220
1236
  #
1221
1237
  # @option params [Hash<String,String>] :tags
1222
1238
  # Tags for the workflow.
@@ -1952,6 +1968,7 @@ module Aws::Omics
1952
1968
  # resp.sources[0].description #=> String
1953
1969
  # resp.sources[0].tags #=> Hash
1954
1970
  # resp.sources[0].tags["TagKey"] #=> String
1971
+ # resp.sources[0].read_set_id #=> String
1955
1972
  #
1956
1973
  #
1957
1974
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -1993,6 +2010,7 @@ module Aws::Omics
1993
2010
  # * {Types::GetReadSetMetadataResponse#status_message #status_message} => String
1994
2011
  # * {Types::GetReadSetMetadataResponse#creation_type #creation_type} => String
1995
2012
  # * {Types::GetReadSetMetadataResponse#etag #etag} => Types::ETag
2013
+ # * {Types::GetReadSetMetadataResponse#creation_job_id #creation_job_id} => String
1996
2014
  #
1997
2015
  # @example Request syntax with placeholder values
1998
2016
  #
@@ -2035,6 +2053,7 @@ module Aws::Omics
2035
2053
  # 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
2054
  # resp.etag.source1 #=> String
2037
2055
  # resp.etag.source2 #=> String
2056
+ # resp.creation_job_id #=> String
2038
2057
  #
2039
2058
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetReadSetMetadata AWS API Documentation
2040
2059
  #
@@ -2132,6 +2151,7 @@ module Aws::Omics
2132
2151
  # resp.sources[0].description #=> String
2133
2152
  # resp.sources[0].tags #=> Hash
2134
2153
  # resp.sources[0].tags["TagKey"] #=> String
2154
+ # resp.sources[0].reference_id #=> String
2135
2155
  #
2136
2156
  #
2137
2157
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -2167,6 +2187,8 @@ module Aws::Omics
2167
2187
  # * {Types::GetReferenceMetadataResponse#creation_time #creation_time} => Time
2168
2188
  # * {Types::GetReferenceMetadataResponse#update_time #update_time} => Time
2169
2189
  # * {Types::GetReferenceMetadataResponse#files #files} => Types::ReferenceFiles
2190
+ # * {Types::GetReferenceMetadataResponse#creation_type #creation_type} => String
2191
+ # * {Types::GetReferenceMetadataResponse#creation_job_id #creation_job_id} => String
2170
2192
  #
2171
2193
  # @example Request syntax with placeholder values
2172
2194
  #
@@ -2194,6 +2216,8 @@ module Aws::Omics
2194
2216
  # resp.files.index.part_size #=> Integer
2195
2217
  # resp.files.index.content_length #=> Integer
2196
2218
  # resp.files.index.s3_access.s3_uri #=> String
2219
+ # resp.creation_type #=> String, one of "IMPORT"
2220
+ # resp.creation_job_id #=> String
2197
2221
  #
2198
2222
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetReferenceMetadata AWS API Documentation
2199
2223
  #
@@ -4735,14 +4759,19 @@ module Aws::Omics
4735
4759
  # @api private
4736
4760
  def build_request(operation_name, params = {})
4737
4761
  handlers = @handlers.for(operation_name)
4762
+ tracer = config.telemetry_provider.tracer_provider.tracer(
4763
+ Aws::Telemetry.module_to_tracer_name('Aws::Omics')
4764
+ )
4738
4765
  context = Seahorse::Client::RequestContext.new(
4739
4766
  operation_name: operation_name,
4740
4767
  operation: config.api.operation(operation_name),
4741
4768
  client: self,
4742
4769
  params: params,
4743
- config: config)
4770
+ config: config,
4771
+ tracer: tracer
4772
+ )
4744
4773
  context[:gem_name] = 'aws-sdk-omics'
4745
- context[:gem_version] = '1.31.0'
4774
+ context[:gem_version] = '1.33.0'
4746
4775
  Seahorse::Client::Request.new(handlers, context)
4747
4776
  end
4748
4777
 
@@ -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
  }
@@ -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 to use in the group.
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 concurrent runs for the group.
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
- # A maximum run time for the group in minutes.
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 be used by a run group.
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
@@ -53,6 +53,6 @@ require_relative 'aws-sdk-omics/customizations'
53
53
  # @!group service
54
54
  module Aws::Omics
55
55
 
56
- GEM_VERSION = '1.31.0'
56
+ GEM_VERSION = '1.33.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
@@ -612,6 +613,7 @@ module Aws
612
613
  def status_message: () -> ::String
613
614
  def creation_type: () -> ("IMPORT" | "UPLOAD")
614
615
  def etag: () -> Types::ETag
616
+ def creation_job_id: () -> ::String
615
617
  end
616
618
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_read_set_metadata-instance_method
617
619
  def get_read_set_metadata: (
@@ -664,6 +666,8 @@ module Aws
664
666
  def creation_time: () -> ::Time
665
667
  def update_time: () -> ::Time
666
668
  def files: () -> Types::ReferenceFiles
669
+ def creation_type: () -> ("IMPORT")
670
+ def creation_job_id: () -> ::String
667
671
  end
668
672
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_reference_metadata-instance_method
669
673
  def get_reference_metadata: (
data/sig/resource.rbs CHANGED
@@ -50,6 +50,7 @@ module Aws
50
50
  ?session_token: String,
51
51
  ?sigv4a_signing_region_set: Array[String],
52
52
  ?stub_responses: untyped,
53
+ ?telemetry_provider: Aws::Telemetry::TelemetryProviderBase,
53
54
  ?token_provider: untyped,
54
55
  ?use_dualstack_endpoint: bool,
55
56
  ?use_fips_endpoint: bool,
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.31.0
4
+ version: 1.33.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-07-02 00:00:00.000000000 Z
11
+ date: 2024-09-03 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.201.0
22
+ version: 3.203.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,21 +29,21 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.201.0
32
+ version: 3.203.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
36
36
  requirements:
37
37
  - - "~>"
38
38
  - !ruby/object:Gem::Version
39
- version: '1.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.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: