aws-sdk-omics 1.48.0 → 1.50.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.
@@ -95,7 +95,7 @@ module Aws::Omics
95
95
  # class name or an instance of a plugin class.
96
96
  #
97
97
  # @option options [required, Aws::CredentialProvider] :credentials
98
- # Your AWS credentials. This can be an instance of any one of the
98
+ # Your AWS credentials used for authentication. This can be an instance of any one of the
99
99
  # following classes:
100
100
  #
101
101
  # * `Aws::Credentials` - Used for configuring static, non-refreshing
@@ -128,18 +128,23 @@ module Aws::Omics
128
128
  # locations will be searched for credentials:
129
129
  #
130
130
  # * `Aws.config[:credentials]`
131
+ #
131
132
  # * The `:access_key_id`, `:secret_access_key`, `:session_token`, and
132
133
  # `:account_id` options.
133
- # * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY'],
134
- # ENV['AWS_SESSION_TOKEN'], and ENV['AWS_ACCOUNT_ID']
134
+ #
135
+ # * `ENV['AWS_ACCESS_KEY_ID']`, `ENV['AWS_SECRET_ACCESS_KEY']`,
136
+ # `ENV['AWS_SESSION_TOKEN']`, and `ENV['AWS_ACCOUNT_ID']`.
137
+ #
135
138
  # * `~/.aws/credentials`
139
+ #
136
140
  # * `~/.aws/config`
141
+ #
137
142
  # * EC2/ECS IMDS instance profile - When used by default, the timeouts
138
143
  # are very aggressive. Construct and pass an instance of
139
144
  # `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
140
145
  # enable retries and extended timeouts. Instance profile credential
141
- # fetching can be disabled by setting ENV['AWS_EC2_METADATA_DISABLED']
142
- # to true.
146
+ # fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
147
+ # to `true`.
143
148
  #
144
149
  # @option options [required, String] :region
145
150
  # The AWS region to connect to. The configured `:region` is
@@ -167,6 +172,11 @@ module Aws::Omics
167
172
  # When false, the request will raise a `RetryCapacityNotAvailableError` and will
168
173
  # not retry instead of sleeping.
169
174
  #
175
+ # @option options [Array<String>] :auth_scheme_preference
176
+ # A list of preferred authentication schemes to use when making a request. Supported values are:
177
+ # `sigv4`, `sigv4a`, `httpBearerAuth`, and `noAuth`. When set using `ENV['AWS_AUTH_SCHEME_PREFERENCE']` or in
178
+ # shared config as `auth_scheme_preference`, the value should be a comma-separated list.
179
+ #
170
180
  # @option options [Boolean] :client_side_monitoring (false)
171
181
  # When `true`, client-side metrics will be collected for all API requests from
172
182
  # this client.
@@ -253,8 +263,8 @@ module Aws::Omics
253
263
  # 4 times. Used in `standard` and `adaptive` retry modes.
254
264
  #
255
265
  # @option options [String] :profile ("default")
256
- # Used when loading credentials from the shared credentials file
257
- # at HOME/.aws/credentials. When not specified, 'default' is used.
266
+ # Used when loading credentials from the shared credentials file at `HOME/.aws/credentials`.
267
+ # When not specified, 'default' is used.
258
268
  #
259
269
  # @option options [String] :request_checksum_calculation ("when_supported")
260
270
  # Determines when a checksum will be calculated for request payloads. Values are:
@@ -367,7 +377,7 @@ module Aws::Omics
367
377
  # `Aws::Telemetry::OTelProvider` for telemetry provider.
368
378
  #
369
379
  # @option options [Aws::TokenProvider] :token_provider
370
- # A Bearer Token Provider. This can be an instance of any one of the
380
+ # Your Bearer token used for authentication. This can be an instance of any one of the
371
381
  # following classes:
372
382
  #
373
383
  # * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
@@ -580,7 +590,9 @@ module Aws::Omics
580
590
  req.send_request(options)
581
591
  end
582
592
 
583
- # Cancels a run.
593
+ # Cancels a run using its ID and returns a response with no body if the
594
+ # operation is successful. To confirm that the run has been cancelled,
595
+ # use the `ListRuns` API operation to check that it is no longer listed.
584
596
  #
585
597
  # @option params [required, String] :id
586
598
  # The run's ID.
@@ -989,19 +1001,20 @@ module Aws::Omics
989
1001
  req.send_request(options)
990
1002
  end
991
1003
 
992
- # You can create a run cache to save the task outputs from completed
993
- # tasks in a run for a private workflow. Subsequent runs use the task
994
- # outputs from the cache, rather than computing the task outputs again.
995
- # You specify an Amazon S3 location where Amazon Web Services
1004
+ # Creates a run cache to store and reference task outputs from completed
1005
+ # private runs. Specify an Amazon S3 location where Amazon Web Services
996
1006
  # HealthOmics saves the cached data. This data must be immediately
997
- # accessible (not in an archived state).
1007
+ # accessible and not in an archived state. You can save intermediate
1008
+ # task files to a run cache if they are declared as task outputs in the
1009
+ # workflow definition file.
998
1010
  #
999
- # For more information, see [Creating a run cache][1] in the Amazon Web
1000
- # Services HealthOmics User Guide.
1011
+ # For more information, see [Call caching][1] and [Creating a run
1012
+ # cache][2] in the *Amazon Web Services HealthOmics User Guide*.
1001
1013
  #
1002
1014
  #
1003
1015
  #
1004
- # [1]: https://docs.aws.amazon.com/omics/latest/dev/workflow-cache-create.html
1016
+ # [1]: https://docs.aws.amazon.com/omics/latest/dev/workflows-call-caching.html
1017
+ # [2]: https://docs.aws.amazon.com/omics/latest/dev/workflow-cache-create.html
1005
1018
  #
1006
1019
  # @option params [String] :cache_behavior
1007
1020
  # Default cache behavior for runs that use this cache. Supported values
@@ -1022,8 +1035,8 @@ module Aws::Omics
1022
1035
  # CACHE\_ON\_FAILURE. When you start a run that uses this cache, you can
1023
1036
  # override the default cache behavior.
1024
1037
  #
1025
- # For more information, see [Run cache behavior][1] in the Amazon Web
1026
- # Services HealthOmics User Guide.
1038
+ # For more information, see [Run cache behavior][1] in the *Amazon Web
1039
+ # Services HealthOmics User Guide*.
1027
1040
  #
1028
1041
  #
1029
1042
  #
@@ -1093,8 +1106,9 @@ module Aws::Omics
1093
1106
  req.send_request(options)
1094
1107
  end
1095
1108
 
1096
- # You can optionally create a run group to limit the compute resources
1097
- # for the runs that you add to the group.
1109
+ # Creates a run group to limit the compute resources for the runs that
1110
+ # are added to the group. Returns an ARN, ID, and tags for the run
1111
+ # group.
1098
1112
  #
1099
1113
  # @option params [String] :name
1100
1114
  # A name for the group.
@@ -1369,67 +1383,99 @@ module Aws::Omics
1369
1383
  req.send_request(options)
1370
1384
  end
1371
1385
 
1372
- # Creates a private workflow.Private workflows depend on a variety of
1373
- # resources that you create and configure before creating the workflow:
1374
- #
1375
- # * *Input data*: Input data for the workflow, stored in an S3 bucket or
1376
- # a Amazon Web Services HealthOmics sequence store.
1386
+ # Creates a private workflow. Before you create a private workflow, you
1387
+ # must create and configure these required resources:
1377
1388
  #
1378
1389
  # * *Workflow definition files*: Define your workflow in one or more
1379
1390
  # workflow definition files, written in WDL, Nextflow, or CWL. The
1380
1391
  # workflow definition specifies the inputs and outputs for runs that
1381
1392
  # use the workflow. It also includes specifications for the runs and
1382
1393
  # run tasks for your workflow, including compute and memory
1383
- # requirements.
1394
+ # requirements. The workflow definition file must be in .zip format.
1384
1395
  #
1385
- # * *Parameter template files*: Define run parameters using a parameter
1386
- # template file (written in JSON).
1396
+ # * (Optional) *Parameter template*: You can create a parameter template
1397
+ # file that defines the run parameters, or Amazon Web Services
1398
+ # HealthOmics can generate the parameter template for you.
1387
1399
  #
1388
1400
  # * *ECR container images*: Create one or more container images for the
1389
1401
  # workflow. Store the images in a private ECR repository.
1390
1402
  #
1391
- # * (Optional) *Sentieon licenses*: Request a Sentieon license if you
1392
- # plan to use Sentieon software in a private workflow.
1403
+ # * (Optional) *Sentieon licenses*: Request a Sentieon license if using
1404
+ # the Sentieon software in a private workflow.
1393
1405
  #
1394
1406
  # For more information, see [Creating or updating a private workflow in
1395
- # Amazon Web Services HealthOmics][1] in the Amazon Web Services
1396
- # HealthOmics User Guide.
1407
+ # Amazon Web Services HealthOmics][1] in the *Amazon Web Services
1408
+ # HealthOmics User Guide*.
1397
1409
  #
1398
1410
  #
1399
1411
  #
1400
1412
  # [1]: https://docs.aws.amazon.com/omics/latest/dev/creating-private-workflows.html
1401
1413
  #
1402
1414
  # @option params [String] :name
1403
- # A name for the workflow.
1415
+ # Name (optional but highly recommended) for the workflow to locate
1416
+ # relevant information in the CloudWatch logs and Amazon Web Services
1417
+ # HealthOmics console.
1404
1418
  #
1405
1419
  # @option params [String] :description
1406
1420
  # A description for the workflow.
1407
1421
  #
1408
1422
  # @option params [String] :engine
1409
- # The workflow engine for the workflow.
1423
+ # The workflow engine for the workflow. This is only required if you
1424
+ # have workflow definition files from more than one engine in your zip
1425
+ # file. Otherwise, the service can detect the engine automatically from
1426
+ # your workflow definition.
1410
1427
  #
1411
1428
  # @option params [String, StringIO, File] :definition_zip
1412
- # A ZIP archive for the workflow.
1429
+ # A ZIP archive containing the main workflow definition file and
1430
+ # dependencies that it imports for the workflow. You can use a file with
1431
+ # a ://fileb prefix instead of the Base64 string. For more information,
1432
+ # see [Workflow definition requirements][1] in the *Amazon Web Services
1433
+ # HealthOmics User Guide*.
1434
+ #
1435
+ #
1436
+ #
1437
+ # [1]: https://docs.aws.amazon.com/omics/latest/dev/workflow-defn-requirements.html
1413
1438
  #
1414
1439
  # @option params [String] :definition_uri
1415
- # The URI of a definition for the workflow.
1440
+ # The S3 URI of a definition for the workflow. The S3 bucket must be in
1441
+ # the same region as the workflow.
1416
1442
  #
1417
1443
  # @option params [String] :main
1418
- # The path of the main definition file for the workflow.
1444
+ # The path of the main definition file for the workflow. This parameter
1445
+ # is not required if the ZIP archive contains only one workflow
1446
+ # definition file, or if the main definition file is named “main”. An
1447
+ # example path is: `workflow-definition/main-file.wdl`.
1419
1448
  #
1420
1449
  # @option params [Hash<String,Types::WorkflowParameter>] :parameter_template
1421
- # A parameter template for the workflow.
1450
+ # A parameter template for the workflow. If this field is blank, Amazon
1451
+ # Web Services HealthOmics will automatically parse the parameter
1452
+ # template values from your workflow definition file. To override these
1453
+ # service generated default values, provide a parameter template. To
1454
+ # view an example of a parameter template, see [Parameter template
1455
+ # files][1] in the *Amazon Web Services HealthOmics User Guide*.
1456
+ #
1457
+ #
1458
+ #
1459
+ # [1]: https://docs.aws.amazon.com/omics/latest/dev/parameter-templates.html
1422
1460
  #
1423
1461
  # @option params [Integer] :storage_capacity
1424
1462
  # The default static storage capacity (in gibibytes) for runs that use
1425
- # this workflow or workflow version.
1463
+ # this workflow or workflow version. The `storageCapacity` can be
1464
+ # overwritten at run time. The storage capacity is not required for runs
1465
+ # with a `DYNAMIC` storage type.
1426
1466
  #
1427
1467
  # @option params [Hash<String,String>] :tags
1428
- # Tags for the workflow.
1468
+ # Tags for the workflow. You can define up to 50 tags for the workflow.
1469
+ # For more information, see [Adding a tag][1] in the *Amazon Web
1470
+ # Services HealthOmics User Guide*.
1471
+ #
1472
+ #
1473
+ #
1474
+ # [1]: https://docs.aws.amazon.com/omics/latest/dev/add-a-tag.html
1429
1475
  #
1430
1476
  # @option params [required, String] :request_id
1431
- # To ensure that requests don't run multiple times, specify a unique ID
1432
- # for each request.
1477
+ # An idempotency token to ensure that duplicate workflows are not
1478
+ # created when Amazon Web Services HealthOmics submits retry requests.
1433
1479
  #
1434
1480
  # **A suitable default value is auto-generated.** You should normally
1435
1481
  # not need to pass this option.**
@@ -1438,16 +1484,53 @@ module Aws::Omics
1438
1484
  # The computational accelerator specified to run the workflow.
1439
1485
  #
1440
1486
  # @option params [String] :storage_type
1441
- # The default storage type for runs that use this workflow. STATIC
1442
- # storage allocates a fixed amount of storage. DYNAMIC storage
1487
+ # The default storage type for runs that use this workflow. The
1488
+ # `storageType` can be overridden at run time. `DYNAMIC` storage
1443
1489
  # dynamically scales the storage up or down, based on file system
1444
- # utilization. For more information about static and dynamic storage,
1445
- # see [Running workflows][1] in the *Amazon Web Services HealthOmics
1446
- # User Guide*.
1490
+ # utilization. `STATIC` storage allocates a fixed amount of storage. For
1491
+ # more information about dynamic and static storage types, see [Run
1492
+ # storage types][1] in the *Amazon Web Services HealthOmics User Guide*.
1447
1493
  #
1448
1494
  #
1449
1495
  #
1450
- # [1]: https://docs.aws.amazon.com/omics/latest/dev/Using-workflows.html
1496
+ # [1]: https://docs.aws.amazon.com/omics/latest/dev/workflows-run-types.html
1497
+ #
1498
+ # @option params [String] :readme_markdown
1499
+ # The markdown content for the workflow's README file. This provides
1500
+ # documentation and usage information for users of the workflow.
1501
+ #
1502
+ # @option params [String] :parameter_template_path
1503
+ # The path to the workflow parameter template JSON file within the
1504
+ # repository. This file defines the input parameters for runs that use
1505
+ # this workflow. If not specified, the workflow will be created without
1506
+ # a parameter template.
1507
+ #
1508
+ # @option params [String] :readme_path
1509
+ # The path to the workflow README markdown file within the repository.
1510
+ # This file provides documentation and usage information for the
1511
+ # workflow. If not specified, the `README.md` file from the root
1512
+ # directory of the repository will be used.
1513
+ #
1514
+ # @option params [Types::DefinitionRepository] :definition_repository
1515
+ # The repository information for the workflow definition. This allows
1516
+ # you to source your workflow definition directly from a code
1517
+ # repository.
1518
+ #
1519
+ # @option params [String] :workflow_bucket_owner_id
1520
+ # The Amazon Web Services account ID of the expected owner of the S3
1521
+ # bucket that contains the workflow definition. If not specified, the
1522
+ # service skips the validation.
1523
+ #
1524
+ # @option params [String] :readme_uri
1525
+ # The S3 URI of the README file for the workflow. This file provides
1526
+ # documentation and usage information for the workflow. Requirements
1527
+ # include:
1528
+ #
1529
+ # * The S3 URI must begin with `s3://USER-OWNED-BUCKET/`
1530
+ #
1531
+ # * The requester must have access to the S3 bucket and object.
1532
+ #
1533
+ # * The max README content length is 500 KiB.
1451
1534
  #
1452
1535
  # @return [Types::CreateWorkflowResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1453
1536
  #
@@ -1479,6 +1562,20 @@ module Aws::Omics
1479
1562
  # request_id: "WorkflowRequestId", # required
1480
1563
  # accelerators: "GPU", # accepts GPU
1481
1564
  # storage_type: "STATIC", # accepts STATIC, DYNAMIC
1565
+ # readme_markdown: "ReadmeMarkdown",
1566
+ # parameter_template_path: "ParameterTemplatePath",
1567
+ # readme_path: "ReadmePath",
1568
+ # definition_repository: {
1569
+ # connection_arn: "ConnectionArn", # required
1570
+ # full_repository_id: "FullRepositoryId", # required
1571
+ # source_reference: {
1572
+ # type: "BRANCH", # required, accepts BRANCH, TAG, COMMIT
1573
+ # value: "SourceReferenceValue", # required
1574
+ # },
1575
+ # exclude_file_patterns: ["String"],
1576
+ # },
1577
+ # workflow_bucket_owner_id: "WorkflowBucketOwnerId",
1578
+ # readme_uri: "S3UriForObject",
1482
1579
  # })
1483
1580
  #
1484
1581
  # @example Response structure
@@ -1515,7 +1612,7 @@ module Aws::Omics
1515
1612
  # </note>
1516
1613
  #
1517
1614
  # For more information, see [Workflow versioning in Amazon Web Services
1518
- # HealthOmics][1] in the Amazon Web Services HealthOmics User Guide.
1615
+ # HealthOmics][1] in the *Amazon Web Services HealthOmics User Guide*.
1519
1616
  #
1520
1617
  #
1521
1618
  #
@@ -1591,6 +1688,39 @@ module Aws::Omics
1591
1688
  # workflow definition. You need to specify this parameter if your
1592
1689
  # account is not the bucket owner.
1593
1690
  #
1691
+ # @option params [String] :readme_markdown
1692
+ # The markdown content for the workflow version's README file. This
1693
+ # provides documentation and usage information for users of this
1694
+ # specific workflow version.
1695
+ #
1696
+ # @option params [String] :parameter_template_path
1697
+ # The path to the workflow version parameter template JSON file within
1698
+ # the repository. This file defines the input parameters for runs that
1699
+ # use this workflow version. If not specified, the workflow version will
1700
+ # be created without a parameter template.
1701
+ #
1702
+ # @option params [String] :readme_path
1703
+ # The path to the workflow version README markdown file within the
1704
+ # repository. This file provides documentation and usage information for
1705
+ # the workflow. If not specified, the `README.md` file from the root
1706
+ # directory of the repository will be used.
1707
+ #
1708
+ # @option params [Types::DefinitionRepository] :definition_repository
1709
+ # The repository information for the workflow version definition. This
1710
+ # allows you to source your workflow version definition directly from a
1711
+ # code repository.
1712
+ #
1713
+ # @option params [String] :readme_uri
1714
+ # The S3 URI of the README file for the workflow version. This file
1715
+ # provides documentation and usage information for the workflow version.
1716
+ # Requirements include:
1717
+ #
1718
+ # * The S3 URI must begin with `s3://USER-OWNED-BUCKET/`
1719
+ #
1720
+ # * The requester must have access to the S3 bucket and object.
1721
+ #
1722
+ # * The max README content length is 500 KiB.
1723
+ #
1594
1724
  # @return [Types::CreateWorkflowVersionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1595
1725
  #
1596
1726
  # * {Types::CreateWorkflowVersionResponse#arn #arn} => String
@@ -1624,6 +1754,19 @@ module Aws::Omics
1624
1754
  # "TagKey" => "TagValue",
1625
1755
  # },
1626
1756
  # workflow_bucket_owner_id: "WorkflowBucketOwnerId",
1757
+ # readme_markdown: "ReadmeMarkdown",
1758
+ # parameter_template_path: "ParameterTemplatePath",
1759
+ # readme_path: "ReadmePath",
1760
+ # definition_repository: {
1761
+ # connection_arn: "ConnectionArn", # required
1762
+ # full_repository_id: "FullRepositoryId", # required
1763
+ # source_reference: {
1764
+ # type: "BRANCH", # required, accepts BRANCH, TAG, COMMIT
1765
+ # value: "SourceReferenceValue", # required
1766
+ # },
1767
+ # exclude_file_patterns: ["String"],
1768
+ # },
1769
+ # readme_uri: "S3UriForObject",
1627
1770
  # })
1628
1771
  #
1629
1772
  # @example Response structure
@@ -1765,7 +1908,19 @@ module Aws::Omics
1765
1908
  req.send_request(options)
1766
1909
  end
1767
1910
 
1768
- # Deletes a workflow run.
1911
+ # Deletes a run and returns a response with no body if the operation is
1912
+ # successful. You can only delete a run that has reached a `COMPLETED`,
1913
+ # `FAILED`, or `CANCELLED` stage. A completed run has delivered an
1914
+ # output, or was cancelled and resulted in no output. When you delete a
1915
+ # run, only the metadata associated with the run is deleted. The run
1916
+ # outputs remain in Amazon S3 and logs remain in CloudWatch.
1917
+ #
1918
+ # To verify that the workflow is deleted:
1919
+ #
1920
+ # * Use `ListRuns` to confirm the workflow no longer appears in the
1921
+ # list.
1922
+ #
1923
+ # * Use `GetRun` to verify the workflow cannot be found.
1769
1924
  #
1770
1925
  # @option params [required, String] :id
1771
1926
  # The run's ID.
@@ -1787,14 +1942,15 @@ module Aws::Omics
1787
1942
  req.send_request(options)
1788
1943
  end
1789
1944
 
1790
- # Delete a run cache. This action removes the cache metadata stored in
1791
- # the service account, but doesn't delete the data in Amazon S3. You
1945
+ # Deletes a run cache and returns a response with no body if the
1946
+ # operation is successful. This action removes the cache metadata stored
1947
+ # in the service account, but does not delete the data in Amazon S3. You
1792
1948
  # can access the cache data in Amazon S3, for inspection or to
1793
1949
  # troubleshoot issues. You can remove old cache data using standard S3
1794
1950
  # `Delete` operations.
1795
1951
  #
1796
- # For more information, see [Deleting a run cache][1] in the Amazon Web
1797
- # Services HealthOmics User Guide.
1952
+ # For more information, see [Deleting a run cache][1] in the *Amazon Web
1953
+ # Services HealthOmics User Guide*.
1798
1954
  #
1799
1955
  #
1800
1956
  #
@@ -1820,7 +1976,15 @@ module Aws::Omics
1820
1976
  req.send_request(options)
1821
1977
  end
1822
1978
 
1823
- # Deletes a workflow run group.
1979
+ # Deletes a run group and returns a response with no body if the
1980
+ # operation is successful.
1981
+ #
1982
+ # To verify that the run group is deleted:
1983
+ #
1984
+ # * Use `ListRunGroups` to confirm the workflow no longer appears in the
1985
+ # list.
1986
+ #
1987
+ # * Use `GetRunGroup` to verify the workflow cannot be found.
1824
1988
  #
1825
1989
  # @option params [required, String] :id
1826
1990
  # The run group's ID.
@@ -1948,7 +2112,15 @@ module Aws::Omics
1948
2112
  req.send_request(options)
1949
2113
  end
1950
2114
 
1951
- # Deletes a workflow.
2115
+ # Deletes a workflow by specifying its ID. No response is returned if
2116
+ # the deletion is successful.
2117
+ #
2118
+ # To verify that the workflow is deleted:
2119
+ #
2120
+ # * Use `ListWorkflows` to confirm the workflow no longer appears in the
2121
+ # list.
2122
+ #
2123
+ # * Use `GetWorkflow` to verify the workflow cannot be found.
1952
2124
  #
1953
2125
  # @option params [required, String] :id
1954
2126
  # The workflow's ID.
@@ -1974,7 +2146,7 @@ module Aws::Omics
1974
2146
  # affect any ongoing runs that are using the workflow version.
1975
2147
  #
1976
2148
  # For more information, see [Workflow versioning in Amazon Web Services
1977
- # HealthOmics][1] in the Amazon Web Services HealthOmics User Guide.
2149
+ # HealthOmics][1] in the *Amazon Web Services HealthOmics User Guide*.
1978
2150
  #
1979
2151
  #
1980
2152
  #
@@ -2707,20 +2879,18 @@ module Aws::Omics
2707
2879
  req.send_request(options)
2708
2880
  end
2709
2881
 
2710
- # Gets information about a workflow run.
2711
- #
2712
- # If a workflow is shared with you, you cannot export information about
2713
- # the run.
2882
+ # Gets detailed information about a specific run using its ID.
2714
2883
  #
2715
- # Amazon Web Services HealthOmics stores a fixed number of runs that are
2716
- # available to the console and API. If GetRun doesn't return the
2717
- # requested run, you can find run logs for all runs in the CloudWatch
2718
- # logs. For more information about viewing the run logs, see [CloudWatch
2719
- # logs][1] in the *in the Amazon Web Services HealthOmics User Guide*.
2884
+ # Amazon Web Services HealthOmics stores a configurable number of runs,
2885
+ # as determined by service limits, that are available to the console and
2886
+ # API. If `GetRun` does not return the requested run, you can find all
2887
+ # run logs in the CloudWatch logs. For more information about viewing
2888
+ # the run logs, see [CloudWatch logs][1] in the *Amazon Web Services
2889
+ # HealthOmics User Guide*.
2720
2890
  #
2721
2891
  #
2722
2892
  #
2723
- # [1]: https://docs.aws.amazon.com/omics/latest/dev/cloudwatch-logs.html
2893
+ # [1]: https://docs.aws.amazon.com/omics/latest/dev/monitoring-cloudwatch-logs.html
2724
2894
  #
2725
2895
  # @option params [required, String] :id
2726
2896
  # The run's ID.
@@ -2830,15 +3000,16 @@ module Aws::Omics
2830
3000
  req.send_request(options)
2831
3001
  end
2832
3002
 
2833
- # Retrieve the details for the specified run cache.
3003
+ # Retrieves detailed information about the specified run cache using its
3004
+ # ID.
2834
3005
  #
2835
3006
  # For more information, see [Call caching for Amazon Web Services
2836
- # HealthOmics runs][1] in the Amazon Web Services HealthOmics User
2837
- # Guide.
3007
+ # HealthOmics runs][1] in the *Amazon Web Services HealthOmics User
3008
+ # Guide*.
2838
3009
  #
2839
3010
  #
2840
3011
  #
2841
- # [1]: https://docs.aws.amazon.com/omics/latest/dev/workflow-call-caching.html
3012
+ # [1]: https://docs.aws.amazon.com/omics/latest/dev/workflows-call-caching.html
2842
3013
  #
2843
3014
  # @option params [required, String] :id
2844
3015
  # The identifier of the run cache to retrieve.
@@ -2885,7 +3056,7 @@ module Aws::Omics
2885
3056
  req.send_request(options)
2886
3057
  end
2887
3058
 
2888
- # Gets information about a workflow run group.
3059
+ # Gets information about a run group and returns its metadata.
2889
3060
  #
2890
3061
  # @option params [required, String] :id
2891
3062
  # The group's ID.
@@ -2930,7 +3101,7 @@ module Aws::Omics
2930
3101
  req.send_request(options)
2931
3102
  end
2932
3103
 
2933
- # Gets information about a workflow run task.
3104
+ # Gets detailed information about a run task using its ID.
2934
3105
  #
2935
3106
  # @option params [required, String] :id
2936
3107
  # The workflow run ID.
@@ -3240,10 +3411,18 @@ module Aws::Omics
3240
3411
  req.send_request(options)
3241
3412
  end
3242
3413
 
3243
- # Gets information about a workflow.
3414
+ # Gets all information about a workflow using its ID.
3244
3415
  #
3245
3416
  # If a workflow is shared with you, you cannot export the workflow.
3246
3417
  #
3418
+ # For more information about your workflow status, see [Verify the
3419
+ # workflow status][1] in the *Amazon Web Services HealthOmics User
3420
+ # Guide*.
3421
+ #
3422
+ #
3423
+ #
3424
+ # [1]: https://docs.aws.amazon.com/omics/latest/dev/using-get-workflow.html
3425
+ #
3247
3426
  # @option params [required, String] :id
3248
3427
  # The workflow's ID.
3249
3428
  #
@@ -3277,13 +3456,16 @@ module Aws::Omics
3277
3456
  # * {Types::GetWorkflowResponse#accelerators #accelerators} => String
3278
3457
  # * {Types::GetWorkflowResponse#storage_type #storage_type} => String
3279
3458
  # * {Types::GetWorkflowResponse#uuid #uuid} => String
3459
+ # * {Types::GetWorkflowResponse#readme #readme} => String
3460
+ # * {Types::GetWorkflowResponse#definition_repository_details #definition_repository_details} => Types::DefinitionRepositoryDetails
3461
+ # * {Types::GetWorkflowResponse#readme_path #readme_path} => String
3280
3462
  #
3281
3463
  # @example Request syntax with placeholder values
3282
3464
  #
3283
3465
  # resp = client.get_workflow({
3284
3466
  # id: "WorkflowId", # required
3285
3467
  # type: "PRIVATE", # accepts PRIVATE, READY2RUN
3286
- # export: ["DEFINITION"], # accepts DEFINITION
3468
+ # export: ["DEFINITION"], # accepts DEFINITION, README
3287
3469
  # workflow_owner_id: "WorkflowOwnerId",
3288
3470
  # })
3289
3471
  #
@@ -3312,6 +3494,14 @@ module Aws::Omics
3312
3494
  # resp.accelerators #=> String, one of "GPU"
3313
3495
  # resp.storage_type #=> String, one of "STATIC", "DYNAMIC"
3314
3496
  # resp.uuid #=> String
3497
+ # resp.readme #=> String
3498
+ # resp.definition_repository_details.connection_arn #=> String
3499
+ # resp.definition_repository_details.full_repository_id #=> String
3500
+ # resp.definition_repository_details.source_reference.type #=> String, one of "BRANCH", "TAG", "COMMIT"
3501
+ # resp.definition_repository_details.source_reference.value #=> String
3502
+ # resp.definition_repository_details.provider_type #=> String
3503
+ # resp.definition_repository_details.provider_endpoint #=> String
3504
+ # resp.readme_path #=> String
3315
3505
  #
3316
3506
  #
3317
3507
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -3329,7 +3519,7 @@ module Aws::Omics
3329
3519
 
3330
3520
  # Gets information about a workflow version. For more information, see
3331
3521
  # [Workflow versioning in Amazon Web Services HealthOmics][1] in the
3332
- # Amazon Web Services HealthOmics User Guide.
3522
+ # *Amazon Web Services HealthOmics User Guide*.
3333
3523
  #
3334
3524
  #
3335
3525
  #
@@ -3372,6 +3562,9 @@ module Aws::Omics
3372
3562
  # * {Types::GetWorkflowVersionResponse#tags #tags} => Hash&lt;String,String&gt;
3373
3563
  # * {Types::GetWorkflowVersionResponse#uuid #uuid} => String
3374
3564
  # * {Types::GetWorkflowVersionResponse#workflow_bucket_owner_id #workflow_bucket_owner_id} => String
3565
+ # * {Types::GetWorkflowVersionResponse#readme #readme} => String
3566
+ # * {Types::GetWorkflowVersionResponse#definition_repository_details #definition_repository_details} => Types::DefinitionRepositoryDetails
3567
+ # * {Types::GetWorkflowVersionResponse#readme_path #readme_path} => String
3375
3568
  #
3376
3569
  # @example Request syntax with placeholder values
3377
3570
  #
@@ -3379,7 +3572,7 @@ module Aws::Omics
3379
3572
  # workflow_id: "WorkflowId", # required
3380
3573
  # version_name: "WorkflowVersionName", # required
3381
3574
  # type: "PRIVATE", # accepts PRIVATE, READY2RUN
3382
- # export: ["DEFINITION"], # accepts DEFINITION
3575
+ # export: ["DEFINITION"], # accepts DEFINITION, README
3383
3576
  # workflow_owner_id: "WorkflowOwnerId",
3384
3577
  # })
3385
3578
  #
@@ -3409,6 +3602,14 @@ module Aws::Omics
3409
3602
  # resp.tags["TagKey"] #=> String
3410
3603
  # resp.uuid #=> String
3411
3604
  # resp.workflow_bucket_owner_id #=> String
3605
+ # resp.readme #=> String
3606
+ # resp.definition_repository_details.connection_arn #=> String
3607
+ # resp.definition_repository_details.full_repository_id #=> String
3608
+ # resp.definition_repository_details.source_reference.type #=> String, one of "BRANCH", "TAG", "COMMIT"
3609
+ # resp.definition_repository_details.source_reference.value #=> String
3610
+ # resp.definition_repository_details.provider_type #=> String
3611
+ # resp.definition_repository_details.provider_endpoint #=> String
3612
+ # resp.readme_path #=> String
3412
3613
  #
3413
3614
  #
3414
3615
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -4129,7 +4330,7 @@ module Aws::Omics
4129
4330
  req.send_request(options)
4130
4331
  end
4131
4332
 
4132
- # Retrieves a list of your run caches.
4333
+ # Retrieves a list of your run caches and the metadata for each cache.
4133
4334
  #
4134
4335
  # @option params [Integer] :max_results
4135
4336
  # The maximum number of results to return.
@@ -4173,7 +4374,8 @@ module Aws::Omics
4173
4374
  req.send_request(options)
4174
4375
  end
4175
4376
 
4176
- # Retrieves a list of run groups.
4377
+ # Retrieves a list of all run groups and returns the metadata for each
4378
+ # run group.
4177
4379
  #
4178
4380
  # @option params [String] :name
4179
4381
  # The run groups' name.
@@ -4222,7 +4424,9 @@ module Aws::Omics
4222
4424
  req.send_request(options)
4223
4425
  end
4224
4426
 
4225
- # Retrieves a list of tasks for a run.
4427
+ # Returns a list of tasks and status information within their specified
4428
+ # run. Use this operation to monitor runs and to identify which specific
4429
+ # tasks have failed.
4226
4430
  #
4227
4431
  # @option params [required, String] :id
4228
4432
  # The run's ID.
@@ -4279,18 +4483,18 @@ module Aws::Omics
4279
4483
  req.send_request(options)
4280
4484
  end
4281
4485
 
4282
- # Retrieves a list of runs.
4486
+ # Retrieves a list of runs and returns each run's metadata and status.
4283
4487
  #
4284
- # Amazon Web Services HealthOmics stores a fixed number of runs that are
4285
- # available to the console and API. If the ListRuns response doesn't
4286
- # include specific runs that you expected, you can find run logs for all
4287
- # runs in the CloudWatch logs. For more information about viewing the
4288
- # run logs, see [CloudWatch logs][1] in the *Amazon Web Services
4289
- # HealthOmics User Guide*.
4488
+ # Amazon Web Services HealthOmics stores a configurable number of runs,
4489
+ # as determined by service limits, that are available to the console and
4490
+ # API. If the `ListRuns` response doesn't include specific runs that
4491
+ # you expected, you can find all run logs in the CloudWatch logs. For
4492
+ # more information about viewing the run logs, see [CloudWatch logs][1]
4493
+ # in the *Amazon Web Services HealthOmics User Guide*.
4290
4494
  #
4291
4495
  #
4292
4496
  #
4293
- # [1]: https://docs.aws.amazon.com/omics/latest/dev/cloudwatch-logs.html
4497
+ # [1]: https://docs.aws.amazon.com/omics/latest/dev/monitoring-cloudwatch-logs.html
4294
4498
  #
4295
4499
  # @option params [String] :name
4296
4500
  # Filter the list by run name.
@@ -4621,7 +4825,7 @@ module Aws::Omics
4621
4825
 
4622
4826
  # Lists the workflow versions for the specified workflow. For more
4623
4827
  # information, see [Workflow versioning in Amazon Web Services
4624
- # HealthOmics][1] in the Amazon Web Services HealthOmics User Guide.
4828
+ # HealthOmics][1] in the *Amazon Web Services HealthOmics User Guide*.
4625
4829
  #
4626
4830
  #
4627
4831
  #
@@ -4684,7 +4888,12 @@ module Aws::Omics
4684
4888
  req.send_request(options)
4685
4889
  end
4686
4890
 
4687
- # Retrieves a list of workflows.
4891
+ # Retrieves a list of existing workflows. You can filter for specific
4892
+ # workflows by their name and type. Using the type parameter, specify
4893
+ # `PRIVATE` to retrieve a list of private workflows or specify
4894
+ # `READY2RUN` for a list of all Ready2Run workflows. If you do not
4895
+ # specify the type of workflow, this operation returns a list of
4896
+ # existing workflows.
4688
4897
  #
4689
4898
  # @option params [String] :type
4690
4899
  # Filter the list by workflow type.
@@ -5083,37 +5292,89 @@ module Aws::Omics
5083
5292
  req.send_request(options)
5084
5293
  end
5085
5294
 
5086
- # Starts a new run or duplicates an existing run.
5295
+ # Starts a new run and returns details about the run, or duplicates an
5296
+ # existing run. A run is a single invocation of a workflow. If you
5297
+ # provide request IDs, Amazon Web Services HealthOmics identifies
5298
+ # duplicate requests and starts the run only once. Monitor the progress
5299
+ # of the run by calling the `GetRun` API operation.
5087
5300
  #
5088
- # For a new run, specify a unique `requestId`, the `workflowId`, and a
5089
- # role ARN. If you're using static run storage (the default), specify
5090
- # the required `storageCapacity`.
5301
+ # To start a new run, the following inputs are required:
5091
5302
  #
5092
- # You duplicate a run by specifing a unique `requestId`, the `runID` of
5093
- # the run to duplicate, and a role ARN.
5303
+ # * A service role ARN (`roleArn`).
5094
5304
  #
5095
- # For more information about the optional parameters in the StartRun
5096
- # request, see [Starting a run][1] in the *Amazon Web Services
5097
- # HealthOmics User Guide*.
5305
+ # * The run's workflow ID (`workflowId`, not the `uuid` or `runId`).
5306
+ #
5307
+ # * An Amazon S3 location (`outputUri`) where the run outputs will be
5308
+ # saved.
5309
+ #
5310
+ # * All required workflow parameters (`parameter`), which can include
5311
+ # optional parameters from the parameter template. The run cannot
5312
+ # include any parameters that are not defined in the parameter
5313
+ # template. To see all possible parameters, use the `GetRun` API
5314
+ # operation.
5315
+ #
5316
+ # * For runs with a `STATIC` (default) storage type, specify the
5317
+ # required storage capacity (in gibibytes). A storage capacity value
5318
+ # is not required for runs that use `DYNAMIC` storage.
5319
+ #
5320
+ # `StartRun` can also duplicate an existing run using the run's default
5321
+ # values. You can modify these default values and/or add other optional
5322
+ # inputs. To duplicate a run, the following inputs are required:
5323
+ #
5324
+ # * A service role ARN (`roleArn`).
5325
+ #
5326
+ # * The ID of the run to duplicate (`runId`).
5327
+ #
5328
+ # * An Amazon S3 location where the run outputs will be saved
5329
+ # (`outputUri`).
5330
+ #
5331
+ # To learn more about the optional parameters for `StartRun`, see
5332
+ # [Starting a run][1] in the *Amazon Web Services HealthOmics User
5333
+ # Guide*.
5334
+ #
5335
+ # Use the `retentionMode` input to control how long the metadata for
5336
+ # each run is stored in CloudWatch. There are two retention modes:
5337
+ #
5338
+ # * Specify `REMOVE` to automatically remove the oldest runs when you
5339
+ # reach the maximum service retention limit for runs. It is
5340
+ # recommended that you use the `REMOVE` mode to initiate major run
5341
+ # requests so that your runs do not fail when you reach the limit.
5342
+ #
5343
+ # * The `retentionMode` is set to the `RETAIN` mode by default, which
5344
+ # allows you to manually remove runs after reaching the maximum
5345
+ # service retention limit. Under this setting, you cannot create
5346
+ # additional runs until you remove the excess runs.
5347
+ #
5348
+ # To learn more about the retention modes, see [Run retention mode][2]
5349
+ # in the *Amazon Web Services HealthOmics User Guide*.
5098
5350
  #
5099
5351
  #
5100
5352
  #
5101
5353
  # [1]: https://docs.aws.amazon.com/omics/latest/dev/starting-a-run.html
5354
+ # [2]: https://docs.aws.amazon.com/omics/latest/dev/run-retention.html
5102
5355
  #
5103
5356
  # @option params [String] :workflow_id
5104
- # The run's workflow ID.
5357
+ # The run's workflow ID. The `workflowId` is not the UUID.
5105
5358
  #
5106
5359
  # @option params [String] :workflow_type
5107
- # The run's workflow type.
5360
+ # The run's workflow type. The `workflowType` must be specified if you
5361
+ # are running a `READY2RUN` workflow. If you are running a `PRIVATE`
5362
+ # workflow (default), you do not need to include the workflow type.
5108
5363
  #
5109
5364
  # @option params [String] :run_id
5110
5365
  # The ID of a run to duplicate.
5111
5366
  #
5112
5367
  # @option params [required, String] :role_arn
5113
- # A service role for the run.
5368
+ # A service role for the run. The `roleArn` requires access to Amazon
5369
+ # Web Services HealthOmics, S3, Cloudwatch logs, and EC2. An example
5370
+ # `roleArn` is
5371
+ # `arn:aws:iam::123456789012:role/omics-service-role-serviceRole-W8O1XMPL7QZ`.
5372
+ # In this example, the AWS account ID is `123456789012` and the role
5373
+ # name is `omics-service-role-serviceRole-W8O1XMPL7QZ`.
5114
5374
  #
5115
5375
  # @option params [String] :name
5116
- # A name for the run.
5376
+ # A name for the run. This is recommended to view and organize runs in
5377
+ # the Amazon Web Services HealthOmics console and CloudWatch logs.
5117
5378
  #
5118
5379
  # @option params [String] :cache_id
5119
5380
  # Identifier of the cache associated with this run. If you don't
@@ -5123,20 +5384,34 @@ module Aws::Omics
5123
5384
  # The cache behavior for the run. You specify this value if you want to
5124
5385
  # override the default behavior for the cache. You had set the default
5125
5386
  # value when you created the cache. For more information, see [Run cache
5126
- # behavior][1] in the Amazon Web Services HealthOmics User Guide.
5387
+ # behavior][1] in the *Amazon Web Services HealthOmics User Guide*.
5127
5388
  #
5128
5389
  #
5129
5390
  #
5130
5391
  # [1]: https://docs.aws.amazon.com/omics/latest/dev/how-run-cache.html#run-cache-behavior
5131
5392
  #
5132
5393
  # @option params [String] :run_group_id
5133
- # The run's group ID.
5394
+ # The run's group ID. Use a run group to cap the compute resources (and
5395
+ # number of concurrent runs) for the runs that you add to the run group.
5134
5396
  #
5135
5397
  # @option params [Integer] :priority
5136
- # A priority for the run.
5398
+ # Use the run priority (highest: 1) to establish the order of runs in a
5399
+ # run group when you start a run. If multiple runs share the same
5400
+ # priority, the run that was initiated first will have the higher
5401
+ # priority. Runs that do not belong to a run group can be assigned a
5402
+ # priority. The priorities of these runs are ranked among other runs
5403
+ # that are not in a run group. For more information, see [Run
5404
+ # priority][1] in the *Amazon Web Services HealthOmics User Guide*.
5405
+ #
5406
+ #
5407
+ #
5408
+ # [1]: https://docs.aws.amazon.com/omics/latest/dev/creating-run-groups.html#run-priority
5137
5409
  #
5138
5410
  # @option params [Hash,Array,String,Numeric,Boolean] :parameters
5139
- # Parameters for the run.
5411
+ # Parameters for the run. The run needs all required parameters and can
5412
+ # include optional parameters. The run cannot include any parameters
5413
+ # that are not defined in the parameter template. To retrieve parameters
5414
+ # from the run, use the GetRun API operation.
5140
5415
  #
5141
5416
  # Document type used to carry open content
5142
5417
  # (Hash,Array,String,Numeric,Boolean). A document type value is
@@ -5144,35 +5419,47 @@ module Aws::Omics
5144
5419
  # additional encoding or escaping.
5145
5420
  #
5146
5421
  # @option params [Integer] :storage_capacity
5147
- # The static storage capacity (in gibibytes) for this run. This field is
5148
- # not required if the storage type is dynamic (the system ignores any
5149
- # value that you enter).
5422
+ # The `STATIC` storage capacity (in gibibytes, GiB) for this run. The
5423
+ # default run storage capacity is 1200 GiB. If your requested storage
5424
+ # capacity is unavailable, the system rounds up the value to the nearest
5425
+ # 1200 GiB multiple. If the requested storage capacity is still
5426
+ # unavailable, the system rounds up the value to the nearest 2400 GiB
5427
+ # multiple. This field is not required if the storage type is `DYNAMIC`
5428
+ # (the system ignores any value that you enter).
5150
5429
  #
5151
5430
  # @option params [String] :output_uri
5152
- # An output URI for the run.
5431
+ # An output S3 URI for the run. The S3 bucket must be in the same region
5432
+ # as the workflow. The role ARN must have permission to write to this S3
5433
+ # bucket.
5153
5434
  #
5154
5435
  # @option params [String] :log_level
5155
5436
  # A log level for the run.
5156
5437
  #
5157
5438
  # @option params [Hash<String,String>] :tags
5158
- # Tags for the run.
5439
+ # Tags for the run. You can add up to 50 tags per run. For more
5440
+ # information, see [Adding a tag][1] in the *Amazon Web Services
5441
+ # HealthOmics User Guide*.
5442
+ #
5443
+ #
5444
+ #
5445
+ # [1]: https://docs.aws.amazon.com/omics/latest/dev/add-a-tag.html
5159
5446
  #
5160
5447
  # @option params [required, String] :request_id
5161
- # To ensure that requests don't run multiple times, specify a unique ID
5162
- # for each request.
5448
+ # An idempotency token used to dedupe retry requests so that duplicate
5449
+ # runs are not created.
5163
5450
  #
5164
5451
  # **A suitable default value is auto-generated.** You should normally
5165
5452
  # not need to pass this option.**
5166
5453
  #
5167
5454
  # @option params [String] :retention_mode
5168
- # The retention mode for the run. The default value is RETAIN.
5455
+ # The retention mode for the run. The default value is `RETAIN`.
5169
5456
  #
5170
5457
  # Amazon Web Services HealthOmics stores a fixed number of runs that are
5171
- # available to the console and API. In the default mode (RETAIN), you
5458
+ # available to the console and API. In the default mode (`RETAIN`), you
5172
5459
  # need to remove runs manually when the number of run exceeds the
5173
5460
  # maximum. If you set the retention mode to `REMOVE`, Amazon Web
5174
5461
  # Services HealthOmics automatically removes runs (that have mode set to
5175
- # REMOVE) when the number of run exceeds the maximum. All run logs are
5462
+ # `REMOVE`) when the number of run exceeds the maximum. All run logs are
5176
5463
  # available in CloudWatch logs, if you need information about a run that
5177
5464
  # is no longer available to the API.
5178
5465
  #
@@ -5185,22 +5472,34 @@ module Aws::Omics
5185
5472
  # [1]: https://docs.aws.amazon.com/omics/latest/dev/starting-a-run.html
5186
5473
  #
5187
5474
  # @option params [String] :storage_type
5188
- # The storage type for the run. By default, the run uses STATIC storage
5189
- # type, which allocates a fixed amount of storage. If you set the
5190
- # storage type to DYNAMIC, Amazon Web Services HealthOmics dynamically
5191
- # scales the storage up or down, based on file system utilization. For
5192
- # more information about static and dynamic storage, see [Running
5193
- # workflows][1] in the *Amazon Web Services HealthOmics User Guide*.
5475
+ # The storage type for the run. If you set the storage type to
5476
+ # `DYNAMIC`, Amazon Web Services HealthOmics dynamically scales the
5477
+ # storage up or down, based on file system utilization. By default, the
5478
+ # run uses `STATIC` storage type, which allocates a fixed amount of
5479
+ # storage. For more information about `DYNAMIC` and `STATIC` storage,
5480
+ # see [Run storage types][1] in the *Amazon Web Services HealthOmics
5481
+ # User Guide*.
5194
5482
  #
5195
5483
  #
5196
5484
  #
5197
- # [1]: https://docs.aws.amazon.com/omics/latest/dev/Using-workflows.html
5485
+ # [1]: https://docs.aws.amazon.com/omics/latest/dev/workflows-run-types.html
5198
5486
  #
5199
5487
  # @option params [String] :workflow_owner_id
5200
- # The ID of the workflow owner.
5488
+ # The 12-digit account ID of the workflow owner that is used for running
5489
+ # a shared workflow. The workflow owner ID can be retrieved using the
5490
+ # `GetShare` API operation. If you are the workflow owner, you do not
5491
+ # need to include this ID.
5201
5492
  #
5202
5493
  # @option params [String] :workflow_version_name
5203
- # The name of the workflow version.
5494
+ # The name of the workflow version. Use workflow versions to track and
5495
+ # organize changes to the workflow. If your workflow has multiple
5496
+ # versions, the run uses the default version unless you specify a
5497
+ # version name. To learn more, see [Workflow versioning][1] in the
5498
+ # *Amazon Web Services HealthOmics User Guide*.
5499
+ #
5500
+ #
5501
+ #
5502
+ # [1]: https://docs.aws.amazon.com/omics/latest/dev/workflow-versions.html
5204
5503
  #
5205
5504
  # @return [Types::StartRunResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
5206
5505
  #
@@ -5464,7 +5763,19 @@ module Aws::Omics
5464
5763
  req.send_request(options)
5465
5764
  end
5466
5765
 
5467
- # Update a run cache.
5766
+ # Updates a run cache using its ID and returns a response with no body
5767
+ # if the operation is successful. You can update the run cache
5768
+ # description, name, or the default run cache behavior with
5769
+ # `CACHE_ON_FAILURE` or `CACHE_ALWAYS`. To confirm that your run cache
5770
+ # settings have been properly updated, use the `GetRunCache` API
5771
+ # operation.
5772
+ #
5773
+ # For more information, see [How call caching works][1] in the *Amazon
5774
+ # Web Services HealthOmics User Guide*.
5775
+ #
5776
+ #
5777
+ #
5778
+ # [1]: https://docs.aws.amazon.com/omics/latest/dev/how-run-cache.html
5468
5779
  #
5469
5780
  # @option params [String] :cache_behavior
5470
5781
  # Update the default run cache behavior.
@@ -5498,7 +5809,24 @@ module Aws::Omics
5498
5809
  req.send_request(options)
5499
5810
  end
5500
5811
 
5501
- # Updates a run group.
5812
+ # Updates the settings of a run group and returns a response with no
5813
+ # body if the operation is successful.
5814
+ #
5815
+ # You can update the following settings with `UpdateRunGroup`:
5816
+ #
5817
+ # * Maximum number of CPUs
5818
+ #
5819
+ # * Run time (measured in minutes)
5820
+ #
5821
+ # * Number of GPUs
5822
+ #
5823
+ # * Number of concurrent runs
5824
+ #
5825
+ # * Group name
5826
+ #
5827
+ # To confirm that the settings have been successfully updated, use the
5828
+ # `ListRunGroups` or `GetRunGroup` API operations to verify that the
5829
+ # desired changes have been made.
5502
5830
  #
5503
5831
  # @option params [required, String] :id
5504
5832
  # The group's ID.
@@ -5672,9 +6000,24 @@ module Aws::Omics
5672
6000
  req.send_request(options)
5673
6001
  end
5674
6002
 
5675
- # Updates information about a workflow. For more information, see
5676
- # [Update a private workflow][1] in the Amazon Web Services HealthOmics
5677
- # User Guide.
6003
+ # Updates information about a workflow.
6004
+ #
6005
+ # You can update the following workflow information:
6006
+ #
6007
+ # * Name
6008
+ #
6009
+ # * Description
6010
+ #
6011
+ # * Default storage type
6012
+ #
6013
+ # * Default storage capacity (with workflow ID)
6014
+ #
6015
+ # This operation returns a response with no body if the operation is
6016
+ # successful. You can check the workflow updates by calling the
6017
+ # `GetWorkflow` API operation.
6018
+ #
6019
+ # For more information, see [Update a private workflow][1] in the
6020
+ # *Amazon Web Services HealthOmics User Guide*.
5678
6021
  #
5679
6022
  #
5680
6023
  #
@@ -5705,6 +6048,10 @@ module Aws::Omics
5705
6048
  # The default static storage capacity (in gibibytes) for runs that use
5706
6049
  # this workflow or workflow version.
5707
6050
  #
6051
+ # @option params [String] :readme_markdown
6052
+ # The markdown content for the workflow's README file. This provides
6053
+ # documentation and usage information for users of the workflow.
6054
+ #
5708
6055
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5709
6056
  #
5710
6057
  # @example Request syntax with placeholder values
@@ -5715,6 +6062,7 @@ module Aws::Omics
5715
6062
  # description: "WorkflowDescription",
5716
6063
  # storage_type: "STATIC", # accepts STATIC, DYNAMIC
5717
6064
  # storage_capacity: 1,
6065
+ # readme_markdown: "ReadmeMarkdown",
5718
6066
  # })
5719
6067
  #
5720
6068
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/UpdateWorkflow AWS API Documentation
@@ -5728,7 +6076,7 @@ module Aws::Omics
5728
6076
 
5729
6077
  # Updates information about the workflow version. For more information,
5730
6078
  # see [Workflow versioning in Amazon Web Services HealthOmics][1] in the
5731
- # Amazon Web Services HealthOmics User Guide.
6079
+ # *Amazon Web Services HealthOmics User Guide*.
5732
6080
  #
5733
6081
  #
5734
6082
  #
@@ -5759,6 +6107,11 @@ module Aws::Omics
5759
6107
  # The default static storage capacity (in gibibytes) for runs that use
5760
6108
  # this workflow or workflow version.
5761
6109
  #
6110
+ # @option params [String] :readme_markdown
6111
+ # The markdown content for the workflow version's README file. This
6112
+ # provides documentation and usage information for users of this
6113
+ # specific workflow version.
6114
+ #
5762
6115
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
5763
6116
  #
5764
6117
  # @example Request syntax with placeholder values
@@ -5769,6 +6122,7 @@ module Aws::Omics
5769
6122
  # description: "WorkflowVersionDescription",
5770
6123
  # storage_type: "STATIC", # accepts STATIC, DYNAMIC
5771
6124
  # storage_capacity: 1,
6125
+ # readme_markdown: "ReadmeMarkdown",
5772
6126
  # })
5773
6127
  #
5774
6128
  # @see http://docs.aws.amazon.com/goto/WebAPI/omics-2022-11-28/UpdateWorkflowVersion AWS API Documentation
@@ -5844,7 +6198,7 @@ module Aws::Omics
5844
6198
  tracer: tracer
5845
6199
  )
5846
6200
  context[:gem_name] = 'aws-sdk-omics'
5847
- context[:gem_version] = '1.48.0'
6201
+ context[:gem_version] = '1.50.0'
5848
6202
  Seahorse::Client::Request.new(handlers, context)
5849
6203
  end
5850
6204