aws-sdk-omics 1.24.0 → 1.26.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 2bf8834ad3e0cda3cbc5f02233f65c56f9b91c944bc3e5493b3f5f6cd0b6eb84
4
- data.tar.gz: 39dbffbb43ceac218a0249c3466c50edd405b2b2e6da1d85d8138c169103ad33
3
+ metadata.gz: a1944630dd8f4add299ade102cff9b18a882fcee0543e6fc4ac46d689fbc371c
4
+ data.tar.gz: f4d0783e10d23272e6efb87435f96c32a191181ba32fe5f70cc74ead593bfd70
5
5
  SHA512:
6
- metadata.gz: 8ac0e71d026029066020a1b4be991b331fb74a935ea776a5d727a0516bb5d347cae4ea77bcfd3842a2b5f0b8c9601471da13d6d9ac6fb0cdfc5414838e75b1bb
7
- data.tar.gz: b8cdf39e60c32a4e7018ee262abb411374d2365028aa927a61466ac9435bbb6f567725ee2fe5aa0bc38caa1cb8b6ce13c05001f67ed55ad26edc6a5e86c4f0ee
6
+ metadata.gz: f418dfcf11d0695df091c8e91a272240901d65d79947347cc3242a2018e941fcb33384b3d38222d78a5e3dea8557c8469e5e8adff04e6c09fbda0dbe4adb6358
7
+ data.tar.gz: 14c1e8334a11f538f4b94ed858fa2954fdee179f2887a1c5e217b82270228e6814c2ddf2e9faa84af1cb16c02c776214d7fd0f1e194f1dd5aa85deee265f08d0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,16 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.26.0 (2024-04-30)
5
+ ------------------
6
+
7
+ * Feature - Add support for workflow sharing and dynamic run storage
8
+
9
+ 1.25.0 (2024-04-25)
10
+ ------------------
11
+
12
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
13
+
4
14
  1.24.0 (2024-04-11)
5
15
  ------------------
6
16
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.24.0
1
+ 1.26.0
@@ -22,6 +22,7 @@ require 'aws-sdk-core/plugins/endpoint_pattern.rb'
22
22
  require 'aws-sdk-core/plugins/response_paging.rb'
23
23
  require 'aws-sdk-core/plugins/stub_responses.rb'
24
24
  require 'aws-sdk-core/plugins/idempotency_token.rb'
25
+ require 'aws-sdk-core/plugins/invocation_id.rb'
25
26
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
26
27
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
27
28
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
@@ -72,6 +73,7 @@ module Aws::Omics
72
73
  add_plugin(Aws::Plugins::ResponsePaging)
73
74
  add_plugin(Aws::Plugins::StubResponses)
74
75
  add_plugin(Aws::Plugins::IdempotencyToken)
76
+ add_plugin(Aws::Plugins::InvocationId)
75
77
  add_plugin(Aws::Plugins::JsonvalueConverter)
76
78
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
77
79
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
@@ -196,10 +198,17 @@ module Aws::Omics
196
198
  # When set to 'true' the request body will not be compressed
197
199
  # for supported operations.
198
200
  #
199
- # @option options [String] :endpoint
200
- # The client endpoint is normally constructed from the `:region`
201
- # option. You should only configure an `:endpoint` when connecting
202
- # to test or custom endpoints. This should be a valid HTTP(S) URI.
201
+ # @option options [String, URI::HTTPS, URI::HTTP] :endpoint
202
+ # Normally you should not configure the `:endpoint` option
203
+ # directly. This is normally constructed from the `:region`
204
+ # option. Configuring `:endpoint` is normally reserved for
205
+ # connecting to test or custom endpoints. The endpoint should
206
+ # be a URI formatted like:
207
+ #
208
+ # 'http://example.com'
209
+ # 'https://example.com'
210
+ # 'http://example.com:123'
211
+ #
203
212
  #
204
213
  # @option options [Integer] :endpoint_cache_max_entries (1000)
205
214
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -337,50 +346,65 @@ module Aws::Omics
337
346
  # @option options [Aws::Omics::EndpointProvider] :endpoint_provider
338
347
  # The endpoint provider used to resolve endpoints. Any object that responds to `#resolve_endpoint(parameters)` where `parameters` is a Struct similar to `Aws::Omics::EndpointParameters`
339
348
  #
340
- # @option options [URI::HTTP,String] :http_proxy A proxy to send
341
- # requests through. Formatted like 'http://proxy.com:123'.
342
- #
343
- # @option options [Float] :http_open_timeout (15) The number of
344
- # seconds to wait when opening a HTTP session before raising a
345
- # `Timeout::Error`.
346
- #
347
- # @option options [Float] :http_read_timeout (60) The default
348
- # number of seconds to wait for response data. This value can
349
- # safely be set per-request on the session.
350
- #
351
- # @option options [Float] :http_idle_timeout (5) The number of
352
- # seconds a connection is allowed to sit idle before it is
353
- # considered stale. Stale connections are closed and removed
354
- # from the pool before making a request.
355
- #
356
- # @option options [Float] :http_continue_timeout (1) The number of
357
- # seconds to wait for a 100-continue response before sending the
358
- # request body. This option has no effect unless the request has
359
- # "Expect" header set to "100-continue". Defaults to `nil` which
360
- # disables this behaviour. This value can safely be set per
361
- # request on the session.
362
- #
363
- # @option options [Float] :ssl_timeout (nil) Sets the SSL timeout
364
- # in seconds.
365
- #
366
- # @option options [Boolean] :http_wire_trace (false) When `true`,
367
- # HTTP debug output will be sent to the `:logger`.
349
+ # @option options [Float] :http_continue_timeout (1)
350
+ # The number of seconds to wait for a 100-continue response before sending the
351
+ # request body. This option has no effect unless the request has "Expect"
352
+ # header set to "100-continue". Defaults to `nil` which disables this
353
+ # behaviour. This value can safely be set per request on the session.
354
+ #
355
+ # @option options [Float] :http_idle_timeout (5)
356
+ # The number of seconds a connection is allowed to sit idle before it
357
+ # is considered stale. Stale connections are closed and removed from the
358
+ # pool before making a request.
359
+ #
360
+ # @option options [Float] :http_open_timeout (15)
361
+ # The default number of seconds to wait for response data.
362
+ # This value can safely be set per-request on the session.
363
+ #
364
+ # @option options [URI::HTTP,String] :http_proxy
365
+ # A proxy to send requests through. Formatted like 'http://proxy.com:123'.
366
+ #
367
+ # @option options [Float] :http_read_timeout (60)
368
+ # The default number of seconds to wait for response data.
369
+ # This value can safely be set per-request on the session.
370
+ #
371
+ # @option options [Boolean] :http_wire_trace (false)
372
+ # When `true`, HTTP debug output will be sent to the `:logger`.
373
+ #
374
+ # @option options [Proc] :on_chunk_received
375
+ # When a Proc object is provided, it will be used as callback when each chunk
376
+ # of the response body is received. It provides three arguments: the chunk,
377
+ # the number of bytes received, and the total number of
378
+ # bytes in the response (or nil if the server did not send a `content-length`).
379
+ #
380
+ # @option options [Proc] :on_chunk_sent
381
+ # When a Proc object is provided, it will be used as callback when each chunk
382
+ # of the request body is sent. It provides three arguments: the chunk,
383
+ # the number of bytes read from the body, and the total number of
384
+ # bytes in the body.
385
+ #
386
+ # @option options [Boolean] :raise_response_errors (true)
387
+ # When `true`, response errors are raised.
388
+ #
389
+ # @option options [String] :ssl_ca_bundle
390
+ # Full path to the SSL certificate authority bundle file that should be used when
391
+ # verifying peer certificates. If you do not pass `:ssl_ca_bundle` or
392
+ # `:ssl_ca_directory` the the system default will be used if available.
393
+ #
394
+ # @option options [String] :ssl_ca_directory
395
+ # Full path of the directory that contains the unbundled SSL certificate
396
+ # authority files for verifying peer certificates. If you do
397
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the system
398
+ # default will be used if available.
368
399
  #
369
- # @option options [Boolean] :ssl_verify_peer (true) When `true`,
370
- # SSL peer certificates are verified when establishing a
371
- # connection.
400
+ # @option options [String] :ssl_ca_store
401
+ # Sets the X509::Store to verify peer certificate.
372
402
  #
373
- # @option options [String] :ssl_ca_bundle Full path to the SSL
374
- # certificate authority bundle file that should be used when
375
- # verifying peer certificates. If you do not pass
376
- # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
377
- # will be used if available.
403
+ # @option options [Float] :ssl_timeout
404
+ # Sets the SSL timeout in seconds
378
405
  #
379
- # @option options [String] :ssl_ca_directory Full path of the
380
- # directory that contains the unbundled SSL certificate
381
- # authority files for verifying peer certificates. If you do
382
- # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
383
- # system default will be used if available.
406
+ # @option options [Boolean] :ssl_verify_peer (true)
407
+ # When `true`, SSL peer certificates are verified when establishing a connection.
384
408
  #
385
409
  def initialize(*args)
386
410
  super
@@ -414,10 +438,10 @@ module Aws::Omics
414
438
  req.send_request(options)
415
439
  end
416
440
 
417
- # Accepts a share for an analytics store.
441
+ # Accept a resource share request.
418
442
  #
419
443
  # @option params [required, String] :share_id
420
- # The ID for a share offer for analytics store data.
444
+ # The ID of the resource share.
421
445
  #
422
446
  # @return [Types::AcceptShareResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
423
447
  #
@@ -1045,19 +1069,27 @@ module Aws::Omics
1045
1069
  req.send_request(options)
1046
1070
  end
1047
1071
 
1048
- # Creates a share offer that can be accepted outside the account by a
1049
- # subscriber. The share is created by the owner and accepted by the
1050
- # principal subscriber.
1072
+ # Creates a cross-account shared resource. The resource owner makes an
1073
+ # offer to share the resource with the principal subscriber (an AWS user
1074
+ # with a different account than the resource owner).
1075
+ #
1076
+ # The following resources support cross-account sharing:
1077
+ #
1078
+ # * Healthomics variant stores
1079
+ #
1080
+ # * Healthomics annotation stores
1081
+ #
1082
+ # * Private workflows
1051
1083
  #
1052
1084
  # @option params [required, String] :resource_arn
1053
- # The resource ARN for the analytics store to be shared.
1085
+ # The ARN of the resource to be shared.
1054
1086
  #
1055
1087
  # @option params [required, String] :principal_subscriber
1056
- # The principal subscriber is the account being given access to the
1057
- # analytics store data through the share offer.
1088
+ # The principal subscriber is the account being offered shared access to
1089
+ # the resource.
1058
1090
  #
1059
1091
  # @option params [String] :share_name
1060
- # A name given to the share.
1092
+ # A name that the owner defines for the share.
1061
1093
  #
1062
1094
  # @return [Types::CreateShareResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1063
1095
  #
@@ -1171,7 +1203,7 @@ module Aws::Omics
1171
1203
  # A parameter template for the workflow.
1172
1204
  #
1173
1205
  # @option params [Integer] :storage_capacity
1174
- # A storage capacity for the workflow in gibibytes.
1206
+ # The storage capacity for the workflow in gibibytes.
1175
1207
  #
1176
1208
  # @option params [Hash<String,String>] :tags
1177
1209
  # Tags for the workflow.
@@ -1419,10 +1451,12 @@ module Aws::Omics
1419
1451
  req.send_request(options)
1420
1452
  end
1421
1453
 
1422
- # Deletes a share of an analytics store.
1454
+ # Deletes a resource share. If you are the resource owner, the
1455
+ # subscriber will no longer have access to the shared resource. If you
1456
+ # are the subscriber, this operation deletes your access to the share.
1423
1457
  #
1424
1458
  # @option params [required, String] :share_id
1425
- # The ID for the share request to be deleted.
1459
+ # The ID for the resource share to be deleted.
1426
1460
  #
1427
1461
  # @return [Types::DeleteShareResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1428
1462
  #
@@ -2198,6 +2232,9 @@ module Aws::Omics
2198
2232
 
2199
2233
  # Gets information about a workflow run.
2200
2234
  #
2235
+ # If a workflow is shared with you, you cannot export information about
2236
+ # the run.
2237
+ #
2201
2238
  # @option params [required, String] :id
2202
2239
  # The run's ID.
2203
2240
  #
@@ -2235,6 +2272,8 @@ module Aws::Omics
2235
2272
  # * {Types::GetRunResponse#log_location #log_location} => Types::RunLogLocation
2236
2273
  # * {Types::GetRunResponse#uuid #uuid} => String
2237
2274
  # * {Types::GetRunResponse#run_output_uri #run_output_uri} => String
2275
+ # * {Types::GetRunResponse#storage_type #storage_type} => String
2276
+ # * {Types::GetRunResponse#workflow_owner_id #workflow_owner_id} => String
2238
2277
  #
2239
2278
  # @example Request syntax with placeholder values
2240
2279
  #
@@ -2276,6 +2315,8 @@ module Aws::Omics
2276
2315
  # resp.log_location.run_log_stream #=> String
2277
2316
  # resp.uuid #=> String
2278
2317
  # resp.run_output_uri #=> String
2318
+ # resp.storage_type #=> String, one of "STATIC", "DYNAMIC"
2319
+ # resp.workflow_owner_id #=> String
2279
2320
  #
2280
2321
  #
2281
2322
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -2445,10 +2486,10 @@ module Aws::Omics
2445
2486
  req.send_request(options)
2446
2487
  end
2447
2488
 
2448
- # Retrieves the metadata for a share.
2489
+ # Retrieves the metadata for the specified resource share.
2449
2490
  #
2450
2491
  # @option params [required, String] :share_id
2451
- # The generated ID for a share.
2492
+ # The ID of the share.
2452
2493
  #
2453
2494
  # @return [Types::GetShareResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2454
2495
  #
@@ -2464,6 +2505,7 @@ module Aws::Omics
2464
2505
  #
2465
2506
  # resp.share.share_id #=> String
2466
2507
  # resp.share.resource_arn #=> String
2508
+ # resp.share.resource_id #=> String
2467
2509
  # resp.share.principal_subscriber #=> String
2468
2510
  # resp.share.owner_id #=> String
2469
2511
  # resp.share.status #=> String, one of "PENDING", "ACTIVATING", "ACTIVE", "DELETING", "DELETED", "FAILED"
@@ -2598,6 +2640,8 @@ module Aws::Omics
2598
2640
 
2599
2641
  # Gets information about a workflow.
2600
2642
  #
2643
+ # If a workflow is shared with you, you cannot export the workflow.
2644
+ #
2601
2645
  # @option params [required, String] :id
2602
2646
  # The workflow's ID.
2603
2647
  #
@@ -2607,6 +2651,9 @@ module Aws::Omics
2607
2651
  # @option params [Array<String>] :export
2608
2652
  # The export format for the workflow.
2609
2653
  #
2654
+ # @option params [String] :workflow_owner_id
2655
+ # The ID of the workflow owner.
2656
+ #
2610
2657
  # @return [Types::GetWorkflowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2611
2658
  #
2612
2659
  # * {Types::GetWorkflowResponse#arn #arn} => String
@@ -2633,6 +2680,7 @@ module Aws::Omics
2633
2680
  # id: "WorkflowId", # required
2634
2681
  # type: "PRIVATE", # accepts PRIVATE, READY2RUN
2635
2682
  # export: ["DEFINITION"], # accepts DEFINITION
2683
+ # workflow_owner_id: "WorkflowOwnerId",
2636
2684
  # })
2637
2685
  #
2638
2686
  # @example Response structure
@@ -3530,6 +3578,7 @@ module Aws::Omics
3530
3578
  # resp.items[0].creation_time #=> Time
3531
3579
  # resp.items[0].start_time #=> Time
3532
3580
  # resp.items[0].stop_time #=> Time
3581
+ # resp.items[0].storage_type #=> String, one of "STATIC", "DYNAMIC"
3533
3582
  # resp.next_token #=> String
3534
3583
  #
3535
3584
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListRuns AWS API Documentation
@@ -3595,13 +3644,15 @@ module Aws::Omics
3595
3644
  req.send_request(options)
3596
3645
  end
3597
3646
 
3598
- # Lists all shares associated with an account.
3647
+ # Retrieves the resource shares associated with an account. Use the
3648
+ # filter parameter to retrieve a specific subset of the shares.
3599
3649
  #
3600
3650
  # @option params [required, String] :resource_owner
3601
- # The account that owns the analytics store shared.
3651
+ # The account that owns the resource shares.
3602
3652
  #
3603
3653
  # @option params [Types::Filter] :filter
3604
- # Attributes used to filter for a specific subset of shares.
3654
+ # Attributes that you use to filter for a specific subset of resource
3655
+ # shares.
3605
3656
  #
3606
3657
  # @option params [String] :next_token
3607
3658
  # Next token returned in the response of a previous
@@ -3625,6 +3676,7 @@ module Aws::Omics
3625
3676
  # filter: {
3626
3677
  # resource_arns: ["String"],
3627
3678
  # status: ["PENDING"], # accepts PENDING, ACTIVATING, ACTIVE, DELETING, DELETED, FAILED
3679
+ # type: ["VARIANT_STORE"], # accepts VARIANT_STORE, ANNOTATION_STORE, WORKFLOW
3628
3680
  # },
3629
3681
  # next_token: "String",
3630
3682
  # max_results: 1,
@@ -3635,6 +3687,7 @@ module Aws::Omics
3635
3687
  # resp.shares #=> Array
3636
3688
  # resp.shares[0].share_id #=> String
3637
3689
  # resp.shares[0].resource_arn #=> String
3690
+ # resp.shares[0].resource_id #=> String
3638
3691
  # resp.shares[0].principal_subscriber #=> String
3639
3692
  # resp.shares[0].owner_id #=> String
3640
3693
  # resp.shares[0].status #=> String, one of "PENDING", "ACTIVATING", "ACTIVE", "DELETING", "DELETED", "FAILED"
@@ -3802,10 +3855,10 @@ module Aws::Omics
3802
3855
  # Retrieves a list of workflows.
3803
3856
  #
3804
3857
  # @option params [String] :type
3805
- # The workflows' type.
3858
+ # Filter the list by workflow type.
3806
3859
  #
3807
3860
  # @option params [String] :name
3808
- # The workflows' name.
3861
+ # Filter the list by workflow name.
3809
3862
  #
3810
3863
  # @option params [String] :starting_token
3811
3864
  # Specify the pagination token from a previous request to retrieve the
@@ -4161,11 +4214,25 @@ module Aws::Omics
4161
4214
  # Starts a workflow run. To duplicate a run, specify the run's ID and a
4162
4215
  # role ARN. The remaining parameters are copied from the previous run.
4163
4216
  #
4217
+ # StartRun will not support re-run for a workflow that is shared with
4218
+ # you.
4219
+ #
4164
4220
  # The total number of runs in your account is subject to a quota per
4165
4221
  # Region. To avoid needing to delete runs manually, you can set the
4166
4222
  # retention mode to `REMOVE`. Runs with this setting are deleted
4167
4223
  # automatically when the run quoata is exceeded.
4168
4224
  #
4225
+ # By default, the run uses STATIC storage. For STATIC storage, set the
4226
+ # `storageCapacity` field. You can set the storage type to DYNAMIC. You
4227
+ # do not set `storageCapacity`, because HealthOmics dynamically scales
4228
+ # the storage up or down as required. For more information about static
4229
+ # and dynamic storage, see [Running workflows][1] in the *AWS
4230
+ # HealthOmics User Guide*.
4231
+ #
4232
+ #
4233
+ #
4234
+ # [1]: https://docs.aws.amazon.com/omics/latest/dev/Using-workflows.html
4235
+ #
4169
4236
  # @option params [String] :workflow_id
4170
4237
  # The run's workflow ID.
4171
4238
  #
@@ -4196,7 +4263,9 @@ module Aws::Omics
4196
4263
  # additional encoding or escaping.
4197
4264
  #
4198
4265
  # @option params [Integer] :storage_capacity
4199
- # A storage capacity for the run in gibibytes.
4266
+ # A storage capacity for the run in gibibytes. This field is not
4267
+ # required if the storage type is dynamic (the system ignores any value
4268
+ # that you enter).
4200
4269
  #
4201
4270
  # @option params [String] :output_uri
4202
4271
  # An output URI for the run.
@@ -4217,6 +4286,15 @@ module Aws::Omics
4217
4286
  # @option params [String] :retention_mode
4218
4287
  # The retention mode for the run.
4219
4288
  #
4289
+ # @option params [String] :storage_type
4290
+ # The run's storage type. By default, the run uses STATIC storage type,
4291
+ # which allocates a fixed amount of storage. If you set the storage type
4292
+ # to DYNAMIC, HealthOmics dynamically scales the storage up or down,
4293
+ # based on file system utilization.
4294
+ #
4295
+ # @option params [String] :workflow_owner_id
4296
+ # The ID of the workflow owner.
4297
+ #
4220
4298
  # @return [Types::StartRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4221
4299
  #
4222
4300
  # * {Types::StartRunResponse#arn #arn} => String
@@ -4246,6 +4324,8 @@ module Aws::Omics
4246
4324
  # },
4247
4325
  # request_id: "RunRequestId", # required
4248
4326
  # retention_mode: "RETAIN", # accepts RETAIN, REMOVE
4327
+ # storage_type: "STATIC", # accepts STATIC, DYNAMIC
4328
+ # workflow_owner_id: "WorkflowOwnerId",
4249
4329
  # })
4250
4330
  #
4251
4331
  # @example Response structure
@@ -4649,7 +4729,7 @@ module Aws::Omics
4649
4729
  params: params,
4650
4730
  config: config)
4651
4731
  context[:gem_name] = 'aws-sdk-omics'
4652
- context[:gem_version] = '1.24.0'
4732
+ context[:gem_version] = '1.26.0'
4653
4733
  Seahorse::Client::Request.new(handlers, context)
4654
4734
  end
4655
4735
 
@@ -404,6 +404,7 @@ module Aws::Omics
404
404
  ShareDetails = Shapes::StructureShape.new(name: 'ShareDetails')
405
405
  ShareDetailsList = Shapes::ListShape.new(name: 'ShareDetailsList')
406
406
  ShareName = Shapes::StringShape.new(name: 'ShareName')
407
+ ShareResourceType = Shapes::StringShape.new(name: 'ShareResourceType')
407
408
  ShareStatus = Shapes::StringShape.new(name: 'ShareStatus')
408
409
  SourceFiles = Shapes::StructureShape.new(name: 'SourceFiles')
409
410
  SseConfig = Shapes::StructureShape.new(name: 'SseConfig')
@@ -433,6 +434,7 @@ module Aws::Omics
433
434
  StartVariantImportResponse = Shapes::StructureShape.new(name: 'StartVariantImportResponse')
434
435
  StatusList = Shapes::ListShape.new(name: 'StatusList')
435
436
  StatusMessage = Shapes::StringShape.new(name: 'StatusMessage')
437
+ StorageType = Shapes::StringShape.new(name: 'StorageType')
436
438
  StoreFormat = Shapes::StringShape.new(name: 'StoreFormat')
437
439
  StoreName = Shapes::StringShape.new(name: 'StoreName')
438
440
  StoreOptions = Shapes::UnionShape.new(name: 'StoreOptions')
@@ -468,6 +470,7 @@ module Aws::Omics
468
470
  TsvStoreOptionsSchemaList = Shapes::ListShape.new(name: 'TsvStoreOptionsSchemaList')
469
471
  TsvVersionOptions = Shapes::StructureShape.new(name: 'TsvVersionOptions')
470
472
  TsvVersionOptionsSchemaList = Shapes::ListShape.new(name: 'TsvVersionOptionsSchemaList')
473
+ TypeList = Shapes::ListShape.new(name: 'TypeList')
471
474
  UntagResourceRequest = Shapes::StructureShape.new(name: 'UntagResourceRequest')
472
475
  UntagResourceResponse = Shapes::StructureShape.new(name: 'UntagResourceResponse')
473
476
  UpdateAnnotationStoreRequest = Shapes::StructureShape.new(name: 'UpdateAnnotationStoreRequest')
@@ -519,6 +522,7 @@ module Aws::Omics
519
522
  WorkflowMetadataKey = Shapes::StringShape.new(name: 'WorkflowMetadataKey')
520
523
  WorkflowMetadataValue = Shapes::StringShape.new(name: 'WorkflowMetadataValue')
521
524
  WorkflowName = Shapes::StringShape.new(name: 'WorkflowName')
525
+ WorkflowOwnerId = Shapes::StringShape.new(name: 'WorkflowOwnerId')
522
526
  WorkflowParameter = Shapes::StructureShape.new(name: 'WorkflowParameter')
523
527
  WorkflowParameterDescription = Shapes::StringShape.new(name: 'WorkflowParameterDescription')
524
528
  WorkflowParameterName = Shapes::StringShape.new(name: 'WorkflowParameterName')
@@ -907,6 +911,7 @@ module Aws::Omics
907
911
 
908
912
  Filter.add_member(:resource_arns, Shapes::ShapeRef.new(shape: ArnList, location_name: "resourceArns"))
909
913
  Filter.add_member(:status, Shapes::ShapeRef.new(shape: StatusList, location_name: "status"))
914
+ Filter.add_member(:type, Shapes::ShapeRef.new(shape: TypeList, location_name: "type"))
910
915
  Filter.struct_class = Types::Filter
911
916
 
912
917
  FormatOptions.add_member(:tsv_options, Shapes::ShapeRef.new(shape: TsvOptions, location_name: "tsvOptions"))
@@ -1151,6 +1156,8 @@ module Aws::Omics
1151
1156
  GetRunResponse.add_member(:log_location, Shapes::ShapeRef.new(shape: RunLogLocation, location_name: "logLocation"))
1152
1157
  GetRunResponse.add_member(:uuid, Shapes::ShapeRef.new(shape: RunUuid, location_name: "uuid"))
1153
1158
  GetRunResponse.add_member(:run_output_uri, Shapes::ShapeRef.new(shape: RunOutputUri, location_name: "runOutputUri"))
1159
+ GetRunResponse.add_member(:storage_type, Shapes::ShapeRef.new(shape: StorageType, location_name: "storageType"))
1160
+ GetRunResponse.add_member(:workflow_owner_id, Shapes::ShapeRef.new(shape: WorkflowOwnerId, location_name: "workflowOwnerId"))
1154
1161
  GetRunResponse.struct_class = Types::GetRunResponse
1155
1162
 
1156
1163
  GetRunTaskRequest.add_member(:id, Shapes::ShapeRef.new(shape: RunId, required: true, location: "uri", location_name: "id"))
@@ -1228,6 +1235,7 @@ module Aws::Omics
1228
1235
  GetWorkflowRequest.add_member(:id, Shapes::ShapeRef.new(shape: WorkflowId, required: true, location: "uri", location_name: "id"))
1229
1236
  GetWorkflowRequest.add_member(:type, Shapes::ShapeRef.new(shape: WorkflowType, location: "querystring", location_name: "type"))
1230
1237
  GetWorkflowRequest.add_member(:export, Shapes::ShapeRef.new(shape: WorkflowExportList, location: "querystring", location_name: "export"))
1238
+ GetWorkflowRequest.add_member(:workflow_owner_id, Shapes::ShapeRef.new(shape: WorkflowOwnerId, location: "querystring", location_name: "workflowOwnerId"))
1231
1239
  GetWorkflowRequest.struct_class = Types::GetWorkflowRequest
1232
1240
 
1233
1241
  GetWorkflowResponse.add_member(:arn, Shapes::ShapeRef.new(shape: WorkflowArn, location_name: "arn"))
@@ -1706,6 +1714,7 @@ module Aws::Omics
1706
1714
  RunListItem.add_member(:creation_time, Shapes::ShapeRef.new(shape: RunTimestamp, location_name: "creationTime"))
1707
1715
  RunListItem.add_member(:start_time, Shapes::ShapeRef.new(shape: RunTimestamp, location_name: "startTime"))
1708
1716
  RunListItem.add_member(:stop_time, Shapes::ShapeRef.new(shape: RunTimestamp, location_name: "stopTime"))
1717
+ RunListItem.add_member(:storage_type, Shapes::ShapeRef.new(shape: StorageType, location_name: "storageType"))
1709
1718
  RunListItem.struct_class = Types::RunListItem
1710
1719
 
1711
1720
  RunLogLocation.add_member(:engine_log_stream, Shapes::ShapeRef.new(shape: EngineLogStream, location_name: "engineLogStream"))
@@ -1750,6 +1759,7 @@ module Aws::Omics
1750
1759
 
1751
1760
  ShareDetails.add_member(:share_id, Shapes::ShapeRef.new(shape: String, location_name: "shareId"))
1752
1761
  ShareDetails.add_member(:resource_arn, Shapes::ShapeRef.new(shape: String, location_name: "resourceArn"))
1762
+ ShareDetails.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, location_name: "resourceId"))
1753
1763
  ShareDetails.add_member(:principal_subscriber, Shapes::ShapeRef.new(shape: String, location_name: "principalSubscriber"))
1754
1764
  ShareDetails.add_member(:owner_id, Shapes::ShapeRef.new(shape: String, location_name: "ownerId"))
1755
1765
  ShareDetails.add_member(:status, Shapes::ShapeRef.new(shape: ShareStatus, location_name: "status"))
@@ -1874,6 +1884,8 @@ module Aws::Omics
1874
1884
  StartRunRequest.add_member(:tags, Shapes::ShapeRef.new(shape: TagMap, location_name: "tags"))
1875
1885
  StartRunRequest.add_member(:request_id, Shapes::ShapeRef.new(shape: RunRequestId, required: true, location_name: "requestId", metadata: {"idempotencyToken"=>true}))
1876
1886
  StartRunRequest.add_member(:retention_mode, Shapes::ShapeRef.new(shape: RunRetentionMode, location_name: "retentionMode"))
1887
+ StartRunRequest.add_member(:storage_type, Shapes::ShapeRef.new(shape: StorageType, location_name: "storageType"))
1888
+ StartRunRequest.add_member(:workflow_owner_id, Shapes::ShapeRef.new(shape: WorkflowOwnerId, location_name: "workflowOwnerId"))
1877
1889
  StartRunRequest.struct_class = Types::StartRunRequest
1878
1890
 
1879
1891
  StartRunResponse.add_member(:arn, Shapes::ShapeRef.new(shape: RunArn, location_name: "arn"))
@@ -1950,6 +1962,8 @@ module Aws::Omics
1950
1962
 
1951
1963
  TsvVersionOptionsSchemaList.member = Shapes::ShapeRef.new(shape: SchemaItem)
1952
1964
 
1965
+ TypeList.member = Shapes::ShapeRef.new(shape: ShareResourceType)
1966
+
1953
1967
  UntagResourceRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: TagArn, required: true, location: "uri", location_name: "resourceArn"))
1954
1968
  UntagResourceRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: TagKeyList, required: true, location: "querystring", location_name: "tagKeys"))
1955
1969
  UntagResourceRequest.struct_class = Types::UntagResourceRequest
@@ -33,7 +33,7 @@ module Aws::Omics
33
33
  class AbortMultipartReadSetUploadResponse < Aws::EmptyStructure; end
34
34
 
35
35
  # @!attribute [rw] share_id
36
- # The ID for a share offer for analytics store data.
36
+ # The ID of the resource share.
37
37
  # @return [String]
38
38
  #
39
39
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/AcceptShareRequest AWS API Documentation
@@ -45,7 +45,7 @@ module Aws::Omics
45
45
  end
46
46
 
47
47
  # @!attribute [rw] status
48
- # The status of an analytics store share.
48
+ # The status of the resource share.
49
49
  # @return [String]
50
50
  #
51
51
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/AcceptShareResponse AWS API Documentation
@@ -1054,16 +1054,16 @@ module Aws::Omics
1054
1054
  end
1055
1055
 
1056
1056
  # @!attribute [rw] resource_arn
1057
- # The resource ARN for the analytics store to be shared.
1057
+ # The ARN of the resource to be shared.
1058
1058
  # @return [String]
1059
1059
  #
1060
1060
  # @!attribute [rw] principal_subscriber
1061
- # The principal subscriber is the account being given access to the
1062
- # analytics store data through the share offer.
1061
+ # The principal subscriber is the account being offered shared access
1062
+ # to the resource.
1063
1063
  # @return [String]
1064
1064
  #
1065
1065
  # @!attribute [rw] share_name
1066
- # A name given to the share.
1066
+ # A name that the owner defines for the share.
1067
1067
  # @return [String]
1068
1068
  #
1069
1069
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/CreateShareRequest AWS API Documentation
@@ -1077,15 +1077,15 @@ module Aws::Omics
1077
1077
  end
1078
1078
 
1079
1079
  # @!attribute [rw] share_id
1080
- # An ID generated for the share.
1080
+ # The ID that HealthOmics generates for the share.
1081
1081
  # @return [String]
1082
1082
  #
1083
1083
  # @!attribute [rw] status
1084
- # The status of a share.
1084
+ # The status of the share.
1085
1085
  # @return [String]
1086
1086
  #
1087
1087
  # @!attribute [rw] share_name
1088
- # A name given to the share.
1088
+ # The name of the share.
1089
1089
  # @return [String]
1090
1090
  #
1091
1091
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/CreateShareResponse AWS API Documentation
@@ -1191,7 +1191,7 @@ module Aws::Omics
1191
1191
  # @return [Hash<String,Types::WorkflowParameter>]
1192
1192
  #
1193
1193
  # @!attribute [rw] storage_capacity
1194
- # A storage capacity for the workflow in gibibytes.
1194
+ # The storage capacity for the workflow in gibibytes.
1195
1195
  # @return [Integer]
1196
1196
  #
1197
1197
  # @!attribute [rw] tags
@@ -1399,7 +1399,7 @@ module Aws::Omics
1399
1399
  class DeleteSequenceStoreResponse < Aws::EmptyStructure; end
1400
1400
 
1401
1401
  # @!attribute [rw] share_id
1402
- # The ID for the share request to be deleted.
1402
+ # The ID for the resource share to be deleted.
1403
1403
  # @return [String]
1404
1404
  #
1405
1405
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/DeleteShareRequest AWS API Documentation
@@ -1618,22 +1618,30 @@ module Aws::Omics
1618
1618
  include Aws::Structure
1619
1619
  end
1620
1620
 
1621
- # Use filters to focus the returned annotation store versions on a
1622
- # specific parameter, such as the status of the annotation store.
1621
+ # Use filters to return a subset of resources. You can define filters
1622
+ # for specific parameters, such as the resource status.
1623
1623
  #
1624
1624
  # @!attribute [rw] resource_arns
1625
- # The Amazon Resource Number (Arn) for an analytics store.
1625
+ # Filter based on the Amazon Resource Number (ARN) of the resource.
1626
+ # You can specify up to 10 values.
1626
1627
  # @return [Array<String>]
1627
1628
  #
1628
1629
  # @!attribute [rw] status
1629
- # The status of an annotation store version.
1630
+ # Filter based on the resource status. You can specify up to 10
1631
+ # values.
1632
+ # @return [Array<String>]
1633
+ #
1634
+ # @!attribute [rw] type
1635
+ # The type of resources to be filtered. You can specify one or more of
1636
+ # the resource types.
1630
1637
  # @return [Array<String>]
1631
1638
  #
1632
1639
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/Filter AWS API Documentation
1633
1640
  #
1634
1641
  class Filter < Struct.new(
1635
1642
  :resource_arns,
1636
- :status)
1643
+ :status,
1644
+ :type)
1637
1645
  SENSITIVE = []
1638
1646
  include Aws::Structure
1639
1647
  end
@@ -2635,7 +2643,9 @@ module Aws::Omics
2635
2643
  # @return [Hash,Array,String,Numeric,Boolean]
2636
2644
  #
2637
2645
  # @!attribute [rw] storage_capacity
2638
- # The run's storage capacity in gigabytes.
2646
+ # The run's storage capacity in gibibytes. For dynamic storage, after
2647
+ # the run has completed, this value is the maximum amount of storage
2648
+ # used during the run.
2639
2649
  # @return [Integer]
2640
2650
  #
2641
2651
  # @!attribute [rw] output_uri
@@ -2698,6 +2708,14 @@ module Aws::Omics
2698
2708
  # The destination for workflow outputs.
2699
2709
  # @return [String]
2700
2710
  #
2711
+ # @!attribute [rw] storage_type
2712
+ # The run's storage type.
2713
+ # @return [String]
2714
+ #
2715
+ # @!attribute [rw] workflow_owner_id
2716
+ # The ID of the workflow owner.
2717
+ # @return [String]
2718
+ #
2701
2719
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetRunResponse AWS API Documentation
2702
2720
  #
2703
2721
  class GetRunResponse < Struct.new(
@@ -2729,7 +2747,9 @@ module Aws::Omics
2729
2747
  :failure_reason,
2730
2748
  :log_location,
2731
2749
  :uuid,
2732
- :run_output_uri)
2750
+ :run_output_uri,
2751
+ :storage_type,
2752
+ :workflow_owner_id)
2733
2753
  SENSITIVE = []
2734
2754
  include Aws::Structure
2735
2755
  end
@@ -2890,7 +2910,7 @@ module Aws::Omics
2890
2910
  end
2891
2911
 
2892
2912
  # @!attribute [rw] share_id
2893
- # The generated ID for a share.
2913
+ # The ID of the share.
2894
2914
  # @return [String]
2895
2915
  #
2896
2916
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetShareRequest AWS API Documentation
@@ -2902,8 +2922,8 @@ module Aws::Omics
2902
2922
  end
2903
2923
 
2904
2924
  # @!attribute [rw] share
2905
- # An analytic store share details object. contains status,
2906
- # resourceArn, ownerId, etc.
2925
+ # A resource share details object. The object includes the status, the
2926
+ # resourceArn, and ownerId.
2907
2927
  # @return [Types::ShareDetails]
2908
2928
  #
2909
2929
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetShareResponse AWS API Documentation
@@ -3079,12 +3099,17 @@ module Aws::Omics
3079
3099
  # The export format for the workflow.
3080
3100
  # @return [Array<String>]
3081
3101
  #
3102
+ # @!attribute [rw] workflow_owner_id
3103
+ # The ID of the workflow owner.
3104
+ # @return [String]
3105
+ #
3082
3106
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/GetWorkflowRequest AWS API Documentation
3083
3107
  #
3084
3108
  class GetWorkflowRequest < Struct.new(
3085
3109
  :id,
3086
3110
  :type,
3087
- :export)
3111
+ :export,
3112
+ :workflow_owner_id)
3088
3113
  SENSITIVE = []
3089
3114
  include Aws::Structure
3090
3115
  end
@@ -3134,7 +3159,7 @@ module Aws::Omics
3134
3159
  # @return [Hash<String,Types::WorkflowParameter>]
3135
3160
  #
3136
3161
  # @!attribute [rw] storage_capacity
3137
- # The workflow's storage capacity in gigabytes.
3162
+ # The workflow's storage capacity in gibibytes.
3138
3163
  # @return [Integer]
3139
3164
  #
3140
3165
  # @!attribute [rw] creation_time
@@ -4197,11 +4222,12 @@ module Aws::Omics
4197
4222
  end
4198
4223
 
4199
4224
  # @!attribute [rw] resource_owner
4200
- # The account that owns the analytics store shared.
4225
+ # The account that owns the resource shares.
4201
4226
  # @return [String]
4202
4227
  #
4203
4228
  # @!attribute [rw] filter
4204
- # Attributes used to filter for a specific subset of shares.
4229
+ # Attributes that you use to filter for a specific subset of resource
4230
+ # shares.
4205
4231
  # @return [Types::Filter]
4206
4232
  #
4207
4233
  # @!attribute [rw] next_token
@@ -4226,7 +4252,7 @@ module Aws::Omics
4226
4252
  end
4227
4253
 
4228
4254
  # @!attribute [rw] shares
4229
- # The shares available and their meta details.
4255
+ # The shares available and their metadata details.
4230
4256
  # @return [Array<Types::ShareDetails>]
4231
4257
  #
4232
4258
  # @!attribute [rw] next_token
@@ -4391,11 +4417,11 @@ module Aws::Omics
4391
4417
  end
4392
4418
 
4393
4419
  # @!attribute [rw] type
4394
- # The workflows' type.
4420
+ # Filter the list by workflow type.
4395
4421
  # @return [String]
4396
4422
  #
4397
4423
  # @!attribute [rw] name
4398
- # The workflows' name.
4424
+ # Filter the list by workflow name.
4399
4425
  # @return [String]
4400
4426
  #
4401
4427
  # @!attribute [rw] starting_token
@@ -4419,7 +4445,7 @@ module Aws::Omics
4419
4445
  end
4420
4446
 
4421
4447
  # @!attribute [rw] items
4422
- # The workflows' items.
4448
+ # A list of workflow items.
4423
4449
  # @return [Array<Types::WorkflowListItem>]
4424
4450
  #
4425
4451
  # @!attribute [rw] next_token
@@ -5135,7 +5161,9 @@ module Aws::Omics
5135
5161
  # @return [Integer]
5136
5162
  #
5137
5163
  # @!attribute [rw] storage_capacity
5138
- # The run's storage capacity.
5164
+ # The run's storage capacity in gibibytes. For dynamic storage, after
5165
+ # the run has completed, this value is the maximum amount of storage
5166
+ # used during the run.
5139
5167
  # @return [Integer]
5140
5168
  #
5141
5169
  # @!attribute [rw] creation_time
@@ -5150,6 +5178,10 @@ module Aws::Omics
5150
5178
  # When the run stopped.
5151
5179
  # @return [Time]
5152
5180
  #
5181
+ # @!attribute [rw] storage_type
5182
+ # The run's storage type.
5183
+ # @return [String]
5184
+ #
5153
5185
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/RunListItem AWS API Documentation
5154
5186
  #
5155
5187
  class RunListItem < Struct.new(
@@ -5162,7 +5194,8 @@ module Aws::Omics
5162
5194
  :storage_capacity,
5163
5195
  :creation_time,
5164
5196
  :start_time,
5165
- :stop_time)
5197
+ :stop_time,
5198
+ :storage_type)
5166
5199
  SENSITIVE = []
5167
5200
  include Aws::Structure
5168
5201
  end
@@ -5322,45 +5355,49 @@ module Aws::Omics
5322
5355
  include Aws::Structure
5323
5356
  end
5324
5357
 
5325
- # The details of a share.
5358
+ # The details of a resource share.
5326
5359
  #
5327
5360
  # @!attribute [rw] share_id
5328
- # The ID for a share offer for an analytics store .
5361
+ # The ID of the resource share.
5329
5362
  # @return [String]
5330
5363
  #
5331
5364
  # @!attribute [rw] resource_arn
5332
- # The resource Arn of the analytics store being shared.
5365
+ # The Arn of the shared resource.
5366
+ # @return [String]
5367
+ #
5368
+ # @!attribute [rw] resource_id
5369
+ # The ID of the shared resource.
5333
5370
  # @return [String]
5334
5371
  #
5335
5372
  # @!attribute [rw] principal_subscriber
5336
- # The principal subscriber is the account the analytics store data is
5337
- # being shared with.
5373
+ # The principal subscriber is the account that is sharing the
5374
+ # resource.
5338
5375
  # @return [String]
5339
5376
  #
5340
5377
  # @!attribute [rw] owner_id
5341
- # The account ID for the data owner. The owner creates the share
5342
- # offer.
5378
+ # The account ID for the data owner. The owner creates the resource
5379
+ # share.
5343
5380
  # @return [String]
5344
5381
  #
5345
5382
  # @!attribute [rw] status
5346
- # The status of a share.
5383
+ # The status of the share.
5347
5384
  # @return [String]
5348
5385
  #
5349
5386
  # @!attribute [rw] status_message
5350
- # The status message for a share. It provides more details on the
5351
- # status of the share.
5387
+ # The status message for a resource share. It provides additional
5388
+ # details about the share status.
5352
5389
  # @return [String]
5353
5390
  #
5354
5391
  # @!attribute [rw] share_name
5355
- # The name of the share.
5392
+ # The name of the resource share.
5356
5393
  # @return [String]
5357
5394
  #
5358
5395
  # @!attribute [rw] creation_time
5359
- # The timestamp for when the share was created.
5396
+ # The timestamp of when the resource share was created.
5360
5397
  # @return [Time]
5361
5398
  #
5362
5399
  # @!attribute [rw] update_time
5363
- # The timestamp of the share update.
5400
+ # The timestamp of the resource share update.
5364
5401
  # @return [Time]
5365
5402
  #
5366
5403
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ShareDetails AWS API Documentation
@@ -5368,6 +5405,7 @@ module Aws::Omics
5368
5405
  class ShareDetails < Struct.new(
5369
5406
  :share_id,
5370
5407
  :resource_arn,
5408
+ :resource_id,
5371
5409
  :principal_subscriber,
5372
5410
  :owner_id,
5373
5411
  :status,
@@ -5836,7 +5874,9 @@ module Aws::Omics
5836
5874
  # @return [Hash,Array,String,Numeric,Boolean]
5837
5875
  #
5838
5876
  # @!attribute [rw] storage_capacity
5839
- # A storage capacity for the run in gibibytes.
5877
+ # A storage capacity for the run in gibibytes. This field is not
5878
+ # required if the storage type is dynamic (the system ignores any
5879
+ # value that you enter).
5840
5880
  # @return [Integer]
5841
5881
  #
5842
5882
  # @!attribute [rw] output_uri
@@ -5863,6 +5903,17 @@ module Aws::Omics
5863
5903
  # The retention mode for the run.
5864
5904
  # @return [String]
5865
5905
  #
5906
+ # @!attribute [rw] storage_type
5907
+ # The run's storage type. By default, the run uses STATIC storage
5908
+ # type, which allocates a fixed amount of storage. If you set the
5909
+ # storage type to DYNAMIC, HealthOmics dynamically scales the storage
5910
+ # up or down, based on file system utilization.
5911
+ # @return [String]
5912
+ #
5913
+ # @!attribute [rw] workflow_owner_id
5914
+ # The ID of the workflow owner.
5915
+ # @return [String]
5916
+ #
5866
5917
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/StartRunRequest AWS API Documentation
5867
5918
  #
5868
5919
  class StartRunRequest < Struct.new(
@@ -5879,7 +5930,9 @@ module Aws::Omics
5879
5930
  :log_level,
5880
5931
  :tags,
5881
5932
  :request_id,
5882
- :retention_mode)
5933
+ :retention_mode,
5934
+ :storage_type,
5935
+ :workflow_owner_id)
5883
5936
  SENSITIVE = []
5884
5937
  include Aws::Structure
5885
5938
  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.24.0'
56
+ GEM_VERSION = '1.26.0'
57
57
 
58
58
  end
data/sig/client.rbs CHANGED
@@ -717,6 +717,8 @@ module Aws
717
717
  def log_location: () -> Types::RunLogLocation
718
718
  def uuid: () -> ::String
719
719
  def run_output_uri: () -> ::String
720
+ def storage_type: () -> ("STATIC" | "DYNAMIC")
721
+ def workflow_owner_id: () -> ::String
720
722
  end
721
723
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_run-instance_method
722
724
  def get_run: (
@@ -859,7 +861,8 @@ module Aws
859
861
  def get_workflow: (
860
862
  id: ::String,
861
863
  ?type: ("PRIVATE" | "READY2RUN"),
862
- ?export: Array[("DEFINITION")]
864
+ ?export: Array[("DEFINITION")],
865
+ ?workflow_owner_id: ::String
863
866
  ) -> _GetWorkflowResponseSuccess
864
867
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetWorkflowResponseSuccess
865
868
 
@@ -1145,7 +1148,8 @@ module Aws
1145
1148
  resource_owner: ("SELF" | "OTHER"),
1146
1149
  ?filter: {
1147
1150
  resource_arns: Array[::String]?,
1148
- status: Array[("PENDING" | "ACTIVATING" | "ACTIVE" | "DELETING" | "DELETED" | "FAILED")]?
1151
+ status: Array[("PENDING" | "ACTIVATING" | "ACTIVE" | "DELETING" | "DELETED" | "FAILED")]?,
1152
+ type: Array[("VARIANT_STORE" | "ANNOTATION_STORE" | "WORKFLOW")]?
1149
1153
  },
1150
1154
  ?next_token: ::String,
1151
1155
  ?max_results: ::Integer
@@ -1369,7 +1373,9 @@ module Aws
1369
1373
  ?log_level: ("OFF" | "FATAL" | "ERROR" | "ALL"),
1370
1374
  ?tags: Hash[::String, ::String],
1371
1375
  request_id: ::String,
1372
- ?retention_mode: ("RETAIN" | "REMOVE")
1376
+ ?retention_mode: ("RETAIN" | "REMOVE"),
1377
+ ?storage_type: ("STATIC" | "DYNAMIC"),
1378
+ ?workflow_owner_id: ::String
1373
1379
  ) -> _StartRunResponseSuccess
1374
1380
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartRunResponseSuccess
1375
1381
 
@@ -1577,7 +1583,8 @@ module Aws
1577
1583
  | (:workflow_active waiter_name,
1578
1584
  id: ::String,
1579
1585
  ?type: ("PRIVATE" | "READY2RUN"),
1580
- ?export: Array[("DEFINITION")]
1586
+ ?export: Array[("DEFINITION")],
1587
+ ?workflow_owner_id: ::String
1581
1588
  ) -> Client::_GetWorkflowResponseSuccess
1582
1589
  | (:workflow_active waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetWorkflowResponseSuccess
1583
1590
  end
data/sig/types.rbs CHANGED
@@ -486,6 +486,7 @@ module Aws::Omics
486
486
  class Filter
487
487
  attr_accessor resource_arns: ::Array[::String]
488
488
  attr_accessor status: ::Array[("PENDING" | "ACTIVATING" | "ACTIVE" | "DELETING" | "DELETED" | "FAILED")]
489
+ attr_accessor type: ::Array[("VARIANT_STORE" | "ANNOTATION_STORE" | "WORKFLOW")]
489
490
  SENSITIVE: []
490
491
  end
491
492
 
@@ -785,6 +786,8 @@ module Aws::Omics
785
786
  attr_accessor log_location: Types::RunLogLocation
786
787
  attr_accessor uuid: ::String
787
788
  attr_accessor run_output_uri: ::String
789
+ attr_accessor storage_type: ("STATIC" | "DYNAMIC")
790
+ attr_accessor workflow_owner_id: ::String
788
791
  SENSITIVE: []
789
792
  end
790
793
 
@@ -884,6 +887,7 @@ module Aws::Omics
884
887
  attr_accessor id: ::String
885
888
  attr_accessor type: ("PRIVATE" | "READY2RUN")
886
889
  attr_accessor export: ::Array[("DEFINITION")]
890
+ attr_accessor workflow_owner_id: ::String
887
891
  SENSITIVE: []
888
892
  end
889
893
 
@@ -1481,6 +1485,7 @@ module Aws::Omics
1481
1485
  attr_accessor creation_time: ::Time
1482
1486
  attr_accessor start_time: ::Time
1483
1487
  attr_accessor stop_time: ::Time
1488
+ attr_accessor storage_type: ("STATIC" | "DYNAMIC")
1484
1489
  SENSITIVE: []
1485
1490
  end
1486
1491
 
@@ -1531,6 +1536,7 @@ module Aws::Omics
1531
1536
  class ShareDetails
1532
1537
  attr_accessor share_id: ::String
1533
1538
  attr_accessor resource_arn: ::String
1539
+ attr_accessor resource_id: ::String
1534
1540
  attr_accessor principal_subscriber: ::String
1535
1541
  attr_accessor owner_id: ::String
1536
1542
  attr_accessor status: ("PENDING" | "ACTIVATING" | "ACTIVE" | "DELETING" | "DELETED" | "FAILED")
@@ -1677,6 +1683,8 @@ module Aws::Omics
1677
1683
  attr_accessor tags: ::Hash[::String, ::String]
1678
1684
  attr_accessor request_id: ::String
1679
1685
  attr_accessor retention_mode: ("RETAIN" | "REMOVE")
1686
+ attr_accessor storage_type: ("STATIC" | "DYNAMIC")
1687
+ attr_accessor workflow_owner_id: ::String
1680
1688
  SENSITIVE: []
1681
1689
  end
1682
1690
 
data/sig/waiters.rbs CHANGED
@@ -186,7 +186,8 @@ module Aws
186
186
  def wait: (
187
187
  id: ::String,
188
188
  ?type: ("PRIVATE" | "READY2RUN"),
189
- ?export: Array[("DEFINITION")]
189
+ ?export: Array[("DEFINITION")],
190
+ ?workflow_owner_id: ::String
190
191
  ) -> Client::_GetWorkflowResponseSuccess
191
192
  | (Hash[Symbol, untyped]) -> Client::_GetWorkflowResponseSuccess
192
193
  end
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.24.0
4
+ version: 1.26.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-04-11 00:00:00.000000000 Z
11
+ date: 2024-04-30 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.191.0
22
+ version: 3.193.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.191.0
32
+ version: 3.193.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement