aws-sdk-omics 1.63.0 → 1.65.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.
data/lib/aws-sdk-omics.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::Omics
55
55
  autoload :EndpointProvider, 'aws-sdk-omics/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-omics/endpoints'
57
57
 
58
- GEM_VERSION = '1.63.0'
58
+ GEM_VERSION = '1.65.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -124,6 +124,15 @@ module Aws
124
124
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
125
125
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
126
126
 
127
+ interface _CancelRunBatchResponseSuccess
128
+ include ::Seahorse::Client::_ResponseSuccess[Types::CancelRunBatchResponse]
129
+ end
130
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#cancel_run_batch-instance_method
131
+ def cancel_run_batch: (
132
+ batch_id: ::String
133
+ ) -> _CancelRunBatchResponseSuccess
134
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CancelRunBatchResponseSuccess
135
+
127
136
  interface _CancelVariantImportJobResponseSuccess
128
137
  include ::Seahorse::Client::_ResponseSuccess[Types::CancelVariantImportResponse]
129
138
  end
@@ -216,6 +225,32 @@ module Aws
216
225
  ) -> _CreateAnnotationStoreVersionResponseSuccess
217
226
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateAnnotationStoreVersionResponseSuccess
218
227
 
228
+ interface _CreateConfigurationResponseSuccess
229
+ include ::Seahorse::Client::_ResponseSuccess[Types::CreateConfigurationResponse]
230
+ def arn: () -> ::String
231
+ def uuid: () -> ::String
232
+ def name: () -> ::String
233
+ def description: () -> ::String
234
+ def run_configurations: () -> Types::RunConfigurationsResponse
235
+ def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "FAILED")
236
+ def creation_time: () -> ::Time
237
+ def tags: () -> ::Hash[::String, ::String]
238
+ end
239
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#create_configuration-instance_method
240
+ def create_configuration: (
241
+ name: ::String,
242
+ ?description: ::String,
243
+ run_configurations: {
244
+ vpc_config: {
245
+ security_group_ids: Array[::String]?,
246
+ subnet_ids: Array[::String]?
247
+ }?
248
+ },
249
+ ?tags: Hash[::String, ::String],
250
+ request_id: ::String
251
+ ) -> _CreateConfigurationResponseSuccess
252
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateConfigurationResponseSuccess
253
+
219
254
  interface _CreateMultipartReadSetUploadResponseSuccess
220
255
  include ::Seahorse::Client::_ResponseSuccess[Types::CreateMultipartReadSetUploadResponse]
221
256
  def sequence_store_id: () -> ::String
@@ -518,6 +553,18 @@ module Aws
518
553
  ) -> _DeleteAnnotationStoreVersionsResponseSuccess
519
554
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAnnotationStoreVersionsResponseSuccess
520
555
 
556
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_batch-instance_method
557
+ def delete_batch: (
558
+ batch_id: ::String
559
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
560
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
561
+
562
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_configuration-instance_method
563
+ def delete_configuration: (
564
+ name: ::String
565
+ ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
566
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
567
+
521
568
  interface _DeleteReferenceResponseSuccess
522
569
  include ::Seahorse::Client::_ResponseSuccess[Types::DeleteReferenceResponse]
523
570
  end
@@ -543,6 +590,15 @@ module Aws
543
590
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
544
591
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
545
592
 
593
+ interface _DeleteRunBatchResponseSuccess
594
+ include ::Seahorse::Client::_ResponseSuccess[Types::DeleteRunBatchResponse]
595
+ end
596
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_run_batch-instance_method
597
+ def delete_run_batch: (
598
+ batch_id: ::String
599
+ ) -> _DeleteRunBatchResponseSuccess
600
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteRunBatchResponseSuccess
601
+
546
602
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#delete_run_cache-instance_method
547
603
  def delete_run_cache: (
548
604
  id: ::String
@@ -676,6 +732,47 @@ module Aws
676
732
  ) -> _GetAnnotationStoreVersionResponseSuccess
677
733
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetAnnotationStoreVersionResponseSuccess
678
734
 
735
+ interface _GetBatchResponseSuccess
736
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetBatchResponse]
737
+ def id: () -> ::String
738
+ def arn: () -> ::String
739
+ def uuid: () -> ::String
740
+ def name: () -> ::String
741
+ def status: () -> ("PENDING" | "SUBMITTING" | "INPROGRESS" | "STOPPING" | "CANCELLED" | "FAILED" | "PROCESSED" | "RUNS_DELETING" | "RUNS_DELETED")
742
+ def tags: () -> ::Hash[::String, ::String]
743
+ def total_runs: () -> ::Integer
744
+ def default_run_setting: () -> Types::DefaultRunSetting
745
+ def submission_summary: () -> Types::SubmissionSummary
746
+ def run_summary: () -> Types::RunSummary
747
+ def creation_time: () -> ::Time
748
+ def submitted_time: () -> ::Time
749
+ def processed_time: () -> ::Time
750
+ def failed_time: () -> ::Time
751
+ def failure_reason: () -> ::String
752
+ end
753
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_batch-instance_method
754
+ def get_batch: (
755
+ batch_id: ::String
756
+ ) -> _GetBatchResponseSuccess
757
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetBatchResponseSuccess
758
+
759
+ interface _GetConfigurationResponseSuccess
760
+ include ::Seahorse::Client::_ResponseSuccess[Types::GetConfigurationResponse]
761
+ def arn: () -> ::String
762
+ def uuid: () -> ::String
763
+ def name: () -> ::String
764
+ def description: () -> ::String
765
+ def run_configurations: () -> Types::RunConfigurationsResponse
766
+ def status: () -> ("CREATING" | "ACTIVE" | "UPDATING" | "DELETING" | "DELETED" | "FAILED")
767
+ def creation_time: () -> ::Time
768
+ def tags: () -> ::Hash[::String, ::String]
769
+ end
770
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_configuration-instance_method
771
+ def get_configuration: (
772
+ name: ::String
773
+ ) -> _GetConfigurationResponseSuccess
774
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetConfigurationResponseSuccess
775
+
679
776
  interface _GetReadSetResponseSuccess
680
777
  include ::Seahorse::Client::_ResponseSuccess[Types::GetReadSetResponse]
681
778
  def payload: () -> ::IO
@@ -852,6 +949,7 @@ module Aws
852
949
  def role_arn: () -> ::String
853
950
  def name: () -> ::String
854
951
  def run_group_id: () -> ::String
952
+ def batch_id: () -> ::String
855
953
  def priority: () -> ::Integer
856
954
  def definition: () -> ::String
857
955
  def digest: () -> ::String
@@ -876,6 +974,9 @@ module Aws
876
974
  def workflow_owner_id: () -> ::String
877
975
  def workflow_version_name: () -> ::String
878
976
  def workflow_uuid: () -> ::String
977
+ def networking_mode: () -> ("RESTRICTED" | "VPC")
978
+ def configuration: () -> Types::ConfigurationDetails
979
+ def vpc_config: () -> Types::VpcConfigResponse
879
980
  end
880
981
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_run-instance_method
881
982
  def get_run: (
@@ -1155,6 +1256,33 @@ module Aws
1155
1256
  ) -> _ListAnnotationStoresResponseSuccess
1156
1257
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListAnnotationStoresResponseSuccess
1157
1258
 
1259
+ interface _ListBatchResponseSuccess
1260
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListBatchResponse]
1261
+ def items: () -> ::Array[Types::BatchListItem]
1262
+ def next_token: () -> ::String
1263
+ end
1264
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_batch-instance_method
1265
+ def list_batch: (
1266
+ ?max_items: ::Integer,
1267
+ ?starting_token: ::String,
1268
+ ?status: ("PENDING" | "SUBMITTING" | "INPROGRESS" | "STOPPING" | "CANCELLED" | "FAILED" | "PROCESSED" | "RUNS_DELETING" | "RUNS_DELETED"),
1269
+ ?name: ::String,
1270
+ ?run_group_id: ::String
1271
+ ) -> _ListBatchResponseSuccess
1272
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListBatchResponseSuccess
1273
+
1274
+ interface _ListConfigurationsResponseSuccess
1275
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListConfigurationsResponse]
1276
+ def items: () -> ::Array[Types::ConfigurationListItem]
1277
+ def next_token: () -> ::String
1278
+ end
1279
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_configurations-instance_method
1280
+ def list_configurations: (
1281
+ ?max_results: ::Integer,
1282
+ ?starting_token: ::String
1283
+ ) -> _ListConfigurationsResponseSuccess
1284
+ | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListConfigurationsResponseSuccess
1285
+
1158
1286
  interface _ListMultipartReadSetUploadsResponseSuccess
1159
1287
  include ::Seahorse::Client::_ResponseSuccess[Types::ListMultipartReadSetUploadsResponse]
1160
1288
  def next_token: () -> ::String
@@ -1367,12 +1495,29 @@ module Aws
1367
1495
  def list_runs: (
1368
1496
  ?name: ::String,
1369
1497
  ?run_group_id: ::String,
1498
+ ?batch_id: ::String,
1370
1499
  ?starting_token: ::String,
1371
1500
  ?max_results: ::Integer,
1372
1501
  ?status: ("PENDING" | "STARTING" | "RUNNING" | "STOPPING" | "COMPLETED" | "DELETED" | "CANCELLED" | "FAILED")
1373
1502
  ) -> _ListRunsResponseSuccess
1374
1503
  | (?Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRunsResponseSuccess
1375
1504
 
1505
+ interface _ListRunsInBatchResponseSuccess
1506
+ include ::Seahorse::Client::_ResponseSuccess[Types::ListRunsInBatchResponse]
1507
+ def runs: () -> ::Array[Types::RunBatchListItem]
1508
+ def next_token: () -> ::String
1509
+ end
1510
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#list_runs_in_batch-instance_method
1511
+ def list_runs_in_batch: (
1512
+ batch_id: ::String,
1513
+ ?max_items: ::Integer,
1514
+ ?starting_token: ::String,
1515
+ ?submission_status: ("SUCCESS" | "FAILED" | "CANCEL_SUCCESS" | "CANCEL_FAILED" | "DELETE_SUCCESS" | "DELETE_FAILED"),
1516
+ ?run_setting_id: ::String,
1517
+ ?run_id: ::String
1518
+ ) -> _ListRunsInBatchResponseSuccess
1519
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _ListRunsInBatchResponseSuccess
1520
+
1376
1521
  interface _ListSequenceStoresResponseSuccess
1377
1522
  include ::Seahorse::Client::_ResponseSuccess[Types::ListSequenceStoresResponse]
1378
1523
  def next_token: () -> ::String
@@ -1639,6 +1784,8 @@ module Aws
1639
1784
  def tags: () -> ::Hash[::String, ::String]
1640
1785
  def uuid: () -> ::String
1641
1786
  def run_output_uri: () -> ::String
1787
+ def configuration: () -> Types::ConfigurationDetails
1788
+ def networking_mode: () -> ::String
1642
1789
  end
1643
1790
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#start_run-instance_method
1644
1791
  def start_run: (
@@ -1661,10 +1808,64 @@ module Aws
1661
1808
  ?retention_mode: ("RETAIN" | "REMOVE"),
1662
1809
  ?storage_type: ("STATIC" | "DYNAMIC"),
1663
1810
  ?workflow_owner_id: ::String,
1664
- ?workflow_version_name: ::String
1811
+ ?workflow_version_name: ::String,
1812
+ ?networking_mode: ("RESTRICTED" | "VPC"),
1813
+ ?configuration_name: ::String
1665
1814
  ) -> _StartRunResponseSuccess
1666
1815
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartRunResponseSuccess
1667
1816
 
1817
+ interface _StartRunBatchResponseSuccess
1818
+ include ::Seahorse::Client::_ResponseSuccess[Types::StartRunBatchResponse]
1819
+ def id: () -> ::String
1820
+ def arn: () -> ::String
1821
+ def status: () -> ("PENDING" | "SUBMITTING" | "INPROGRESS" | "STOPPING" | "CANCELLED" | "FAILED" | "PROCESSED" | "RUNS_DELETING" | "RUNS_DELETED")
1822
+ def uuid: () -> ::String
1823
+ def tags: () -> ::Hash[::String, ::String]
1824
+ end
1825
+ # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#start_run_batch-instance_method
1826
+ def start_run_batch: (
1827
+ ?batch_name: ::String,
1828
+ request_id: ::String,
1829
+ ?tags: Hash[::String, ::String],
1830
+ default_run_setting: {
1831
+ workflow_id: ::String,
1832
+ workflow_type: ("PRIVATE" | "READY2RUN")?,
1833
+ role_arn: ::String,
1834
+ name: ::String?,
1835
+ cache_id: ::String?,
1836
+ cache_behavior: ("CACHE_ON_FAILURE" | "CACHE_ALWAYS")?,
1837
+ run_group_id: ::String?,
1838
+ priority: ::Integer?,
1839
+ parameters: {
1840
+ }?,
1841
+ storage_capacity: ::Integer?,
1842
+ output_uri: ::String?,
1843
+ log_level: ("OFF" | "FATAL" | "ERROR" | "ALL")?,
1844
+ run_tags: Hash[::String, ::String]?,
1845
+ retention_mode: ("RETAIN" | "REMOVE")?,
1846
+ storage_type: ("STATIC" | "DYNAMIC")?,
1847
+ workflow_owner_id: ::String?,
1848
+ output_bucket_owner_id: ::String?,
1849
+ workflow_version_name: ::String?
1850
+ },
1851
+ batch_run_settings: {
1852
+ inline_settings: Array[
1853
+ {
1854
+ run_setting_id: ::String,
1855
+ name: ::String?,
1856
+ output_uri: ::String?,
1857
+ priority: ::Integer?,
1858
+ parameters: {
1859
+ }?,
1860
+ output_bucket_owner_id: ::String?,
1861
+ run_tags: Hash[::String, ::String]?
1862
+ },
1863
+ ]?,
1864
+ s3_uri_settings: ::String?
1865
+ }
1866
+ ) -> _StartRunBatchResponseSuccess
1867
+ | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _StartRunBatchResponseSuccess
1868
+
1668
1869
  interface _StartVariantImportJobResponseSuccess
1669
1870
  include ::Seahorse::Client::_ResponseSuccess[Types::StartVariantImportResponse]
1670
1871
  def job_id: () -> ::String