aws-sdk-omics 1.25.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: 5d8b18a0c3457518413b1b68730f38a3bb6b97be4f5becf62764dc4cdafd4198
4
- data.tar.gz: e7609d4938ed70d6f4a175ea1a9d6744cd9b1e9a736858770443178c7ae5305b
3
+ metadata.gz: a1944630dd8f4add299ade102cff9b18a882fcee0543e6fc4ac46d689fbc371c
4
+ data.tar.gz: f4d0783e10d23272e6efb87435f96c32a191181ba32fe5f70cc74ead593bfd70
5
5
  SHA512:
6
- metadata.gz: cd36531cae2a356c16f5555ad38a9adec58b3bc327df856828fdaf35ba8fa5e16b73b82ba47e73a05f6d8e4ba0f88c5ece2b905f2a41425f7c2fe5b94ceff21b
7
- data.tar.gz: 62251b75e389d8e487823b7235aa7c3a518ad75a4078f73c98d15a3c9200bc3ea565ac49c31f2a6102af46af19f5fe8aaf09a6e905150091a9b2c263ec963d1e
6
+ metadata.gz: f418dfcf11d0695df091c8e91a272240901d65d79947347cc3242a2018e941fcb33384b3d38222d78a5e3dea8557c8469e5e8adff04e6c09fbda0dbe4adb6358
7
+ data.tar.gz: 14c1e8334a11f538f4b94ed858fa2954fdee179f2887a1c5e217b82270228e6814c2ddf2e9faa84af1cb16c02c776214d7fd0f1e194f1dd5aa85deee265f08d0
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
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
+
4
9
  1.25.0 (2024-04-25)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.25.0
1
+ 1.26.0
@@ -438,10 +438,10 @@ module Aws::Omics
438
438
  req.send_request(options)
439
439
  end
440
440
 
441
- # Accepts a share for an analytics store.
441
+ # Accept a resource share request.
442
442
  #
443
443
  # @option params [required, String] :share_id
444
- # The ID for a share offer for analytics store data.
444
+ # The ID of the resource share.
445
445
  #
446
446
  # @return [Types::AcceptShareResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
447
447
  #
@@ -1069,19 +1069,27 @@ module Aws::Omics
1069
1069
  req.send_request(options)
1070
1070
  end
1071
1071
 
1072
- # Creates a share offer that can be accepted outside the account by a
1073
- # subscriber. The share is created by the owner and accepted by the
1074
- # 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
1075
1083
  #
1076
1084
  # @option params [required, String] :resource_arn
1077
- # The resource ARN for the analytics store to be shared.
1085
+ # The ARN of the resource to be shared.
1078
1086
  #
1079
1087
  # @option params [required, String] :principal_subscriber
1080
- # The principal subscriber is the account being given access to the
1081
- # analytics store data through the share offer.
1088
+ # The principal subscriber is the account being offered shared access to
1089
+ # the resource.
1082
1090
  #
1083
1091
  # @option params [String] :share_name
1084
- # A name given to the share.
1092
+ # A name that the owner defines for the share.
1085
1093
  #
1086
1094
  # @return [Types::CreateShareResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1087
1095
  #
@@ -1195,7 +1203,7 @@ module Aws::Omics
1195
1203
  # A parameter template for the workflow.
1196
1204
  #
1197
1205
  # @option params [Integer] :storage_capacity
1198
- # A storage capacity for the workflow in gibibytes.
1206
+ # The storage capacity for the workflow in gibibytes.
1199
1207
  #
1200
1208
  # @option params [Hash<String,String>] :tags
1201
1209
  # Tags for the workflow.
@@ -1443,10 +1451,12 @@ module Aws::Omics
1443
1451
  req.send_request(options)
1444
1452
  end
1445
1453
 
1446
- # 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.
1447
1457
  #
1448
1458
  # @option params [required, String] :share_id
1449
- # The ID for the share request to be deleted.
1459
+ # The ID for the resource share to be deleted.
1450
1460
  #
1451
1461
  # @return [Types::DeleteShareResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1452
1462
  #
@@ -2222,6 +2232,9 @@ module Aws::Omics
2222
2232
 
2223
2233
  # Gets information about a workflow run.
2224
2234
  #
2235
+ # If a workflow is shared with you, you cannot export information about
2236
+ # the run.
2237
+ #
2225
2238
  # @option params [required, String] :id
2226
2239
  # The run's ID.
2227
2240
  #
@@ -2259,6 +2272,8 @@ module Aws::Omics
2259
2272
  # * {Types::GetRunResponse#log_location #log_location} => Types::RunLogLocation
2260
2273
  # * {Types::GetRunResponse#uuid #uuid} => String
2261
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
2262
2277
  #
2263
2278
  # @example Request syntax with placeholder values
2264
2279
  #
@@ -2300,6 +2315,8 @@ module Aws::Omics
2300
2315
  # resp.log_location.run_log_stream #=> String
2301
2316
  # resp.uuid #=> String
2302
2317
  # resp.run_output_uri #=> String
2318
+ # resp.storage_type #=> String, one of "STATIC", "DYNAMIC"
2319
+ # resp.workflow_owner_id #=> String
2303
2320
  #
2304
2321
  #
2305
2322
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -2469,10 +2486,10 @@ module Aws::Omics
2469
2486
  req.send_request(options)
2470
2487
  end
2471
2488
 
2472
- # Retrieves the metadata for a share.
2489
+ # Retrieves the metadata for the specified resource share.
2473
2490
  #
2474
2491
  # @option params [required, String] :share_id
2475
- # The generated ID for a share.
2492
+ # The ID of the share.
2476
2493
  #
2477
2494
  # @return [Types::GetShareResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2478
2495
  #
@@ -2488,6 +2505,7 @@ module Aws::Omics
2488
2505
  #
2489
2506
  # resp.share.share_id #=> String
2490
2507
  # resp.share.resource_arn #=> String
2508
+ # resp.share.resource_id #=> String
2491
2509
  # resp.share.principal_subscriber #=> String
2492
2510
  # resp.share.owner_id #=> String
2493
2511
  # resp.share.status #=> String, one of "PENDING", "ACTIVATING", "ACTIVE", "DELETING", "DELETED", "FAILED"
@@ -2622,6 +2640,8 @@ module Aws::Omics
2622
2640
 
2623
2641
  # Gets information about a workflow.
2624
2642
  #
2643
+ # If a workflow is shared with you, you cannot export the workflow.
2644
+ #
2625
2645
  # @option params [required, String] :id
2626
2646
  # The workflow's ID.
2627
2647
  #
@@ -2631,6 +2651,9 @@ module Aws::Omics
2631
2651
  # @option params [Array<String>] :export
2632
2652
  # The export format for the workflow.
2633
2653
  #
2654
+ # @option params [String] :workflow_owner_id
2655
+ # The ID of the workflow owner.
2656
+ #
2634
2657
  # @return [Types::GetWorkflowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
2635
2658
  #
2636
2659
  # * {Types::GetWorkflowResponse#arn #arn} => String
@@ -2657,6 +2680,7 @@ module Aws::Omics
2657
2680
  # id: "WorkflowId", # required
2658
2681
  # type: "PRIVATE", # accepts PRIVATE, READY2RUN
2659
2682
  # export: ["DEFINITION"], # accepts DEFINITION
2683
+ # workflow_owner_id: "WorkflowOwnerId",
2660
2684
  # })
2661
2685
  #
2662
2686
  # @example Response structure
@@ -3554,6 +3578,7 @@ module Aws::Omics
3554
3578
  # resp.items[0].creation_time #=> Time
3555
3579
  # resp.items[0].start_time #=> Time
3556
3580
  # resp.items[0].stop_time #=> Time
3581
+ # resp.items[0].storage_type #=> String, one of "STATIC", "DYNAMIC"
3557
3582
  # resp.next_token #=> String
3558
3583
  #
3559
3584
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/ListRuns AWS API Documentation
@@ -3619,13 +3644,15 @@ module Aws::Omics
3619
3644
  req.send_request(options)
3620
3645
  end
3621
3646
 
3622
- # 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.
3623
3649
  #
3624
3650
  # @option params [required, String] :resource_owner
3625
- # The account that owns the analytics store shared.
3651
+ # The account that owns the resource shares.
3626
3652
  #
3627
3653
  # @option params [Types::Filter] :filter
3628
- # 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.
3629
3656
  #
3630
3657
  # @option params [String] :next_token
3631
3658
  # Next token returned in the response of a previous
@@ -3649,6 +3676,7 @@ module Aws::Omics
3649
3676
  # filter: {
3650
3677
  # resource_arns: ["String"],
3651
3678
  # status: ["PENDING"], # accepts PENDING, ACTIVATING, ACTIVE, DELETING, DELETED, FAILED
3679
+ # type: ["VARIANT_STORE"], # accepts VARIANT_STORE, ANNOTATION_STORE, WORKFLOW
3652
3680
  # },
3653
3681
  # next_token: "String",
3654
3682
  # max_results: 1,
@@ -3659,6 +3687,7 @@ module Aws::Omics
3659
3687
  # resp.shares #=> Array
3660
3688
  # resp.shares[0].share_id #=> String
3661
3689
  # resp.shares[0].resource_arn #=> String
3690
+ # resp.shares[0].resource_id #=> String
3662
3691
  # resp.shares[0].principal_subscriber #=> String
3663
3692
  # resp.shares[0].owner_id #=> String
3664
3693
  # resp.shares[0].status #=> String, one of "PENDING", "ACTIVATING", "ACTIVE", "DELETING", "DELETED", "FAILED"
@@ -3826,10 +3855,10 @@ module Aws::Omics
3826
3855
  # Retrieves a list of workflows.
3827
3856
  #
3828
3857
  # @option params [String] :type
3829
- # The workflows' type.
3858
+ # Filter the list by workflow type.
3830
3859
  #
3831
3860
  # @option params [String] :name
3832
- # The workflows' name.
3861
+ # Filter the list by workflow name.
3833
3862
  #
3834
3863
  # @option params [String] :starting_token
3835
3864
  # Specify the pagination token from a previous request to retrieve the
@@ -4185,11 +4214,25 @@ module Aws::Omics
4185
4214
  # Starts a workflow run. To duplicate a run, specify the run's ID and a
4186
4215
  # role ARN. The remaining parameters are copied from the previous run.
4187
4216
  #
4217
+ # StartRun will not support re-run for a workflow that is shared with
4218
+ # you.
4219
+ #
4188
4220
  # The total number of runs in your account is subject to a quota per
4189
4221
  # Region. To avoid needing to delete runs manually, you can set the
4190
4222
  # retention mode to `REMOVE`. Runs with this setting are deleted
4191
4223
  # automatically when the run quoata is exceeded.
4192
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
+ #
4193
4236
  # @option params [String] :workflow_id
4194
4237
  # The run's workflow ID.
4195
4238
  #
@@ -4220,7 +4263,9 @@ module Aws::Omics
4220
4263
  # additional encoding or escaping.
4221
4264
  #
4222
4265
  # @option params [Integer] :storage_capacity
4223
- # 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).
4224
4269
  #
4225
4270
  # @option params [String] :output_uri
4226
4271
  # An output URI for the run.
@@ -4241,6 +4286,15 @@ module Aws::Omics
4241
4286
  # @option params [String] :retention_mode
4242
4287
  # The retention mode for the run.
4243
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
+ #
4244
4298
  # @return [Types::StartRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
4245
4299
  #
4246
4300
  # * {Types::StartRunResponse#arn #arn} => String
@@ -4270,6 +4324,8 @@ module Aws::Omics
4270
4324
  # },
4271
4325
  # request_id: "RunRequestId", # required
4272
4326
  # retention_mode: "RETAIN", # accepts RETAIN, REMOVE
4327
+ # storage_type: "STATIC", # accepts STATIC, DYNAMIC
4328
+ # workflow_owner_id: "WorkflowOwnerId",
4273
4329
  # })
4274
4330
  #
4275
4331
  # @example Response structure
@@ -4673,7 +4729,7 @@ module Aws::Omics
4673
4729
  params: params,
4674
4730
  config: config)
4675
4731
  context[:gem_name] = 'aws-sdk-omics'
4676
- context[:gem_version] = '1.25.0'
4732
+ context[:gem_version] = '1.26.0'
4677
4733
  Seahorse::Client::Request.new(handlers, context)
4678
4734
  end
4679
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.25.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.25.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-25 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