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.
data/sig/client.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
@@ -398,7 +399,21 @@ module Aws
398
399
  ?tags: Hash[::String, ::String],
399
400
  request_id: ::String,
400
401
  ?accelerators: ("GPU"),
401
- ?storage_type: ("STATIC" | "DYNAMIC")
402
+ ?storage_type: ("STATIC" | "DYNAMIC"),
403
+ ?readme_markdown: ::String,
404
+ ?parameter_template_path: ::String,
405
+ ?readme_path: ::String,
406
+ ?definition_repository: {
407
+ connection_arn: ::String,
408
+ full_repository_id: ::String,
409
+ source_reference: {
410
+ type: ("BRANCH" | "TAG" | "COMMIT"),
411
+ value: ::String
412
+ }?,
413
+ exclude_file_patterns: Array[::String]?
414
+ },
415
+ ?workflow_bucket_owner_id: ::String,
416
+ ?readme_uri: ::String
402
417
  ) -> _CreateWorkflowResponseSuccess
403
418
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkflowResponseSuccess
404
419
 
@@ -429,7 +444,20 @@ module Aws
429
444
  ?storage_type: ("STATIC" | "DYNAMIC"),
430
445
  ?storage_capacity: ::Integer,
431
446
  ?tags: Hash[::String, ::String],
432
- ?workflow_bucket_owner_id: ::String
447
+ ?workflow_bucket_owner_id: ::String,
448
+ ?readme_markdown: ::String,
449
+ ?parameter_template_path: ::String,
450
+ ?readme_path: ::String,
451
+ ?definition_repository: {
452
+ connection_arn: ::String,
453
+ full_repository_id: ::String,
454
+ source_reference: {
455
+ type: ("BRANCH" | "TAG" | "COMMIT"),
456
+ value: ::String
457
+ }?,
458
+ exclude_file_patterns: Array[::String]?
459
+ },
460
+ ?readme_uri: ::String
433
461
  ) -> _CreateWorkflowVersionResponseSuccess
434
462
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateWorkflowVersionResponseSuccess
435
463
 
@@ -992,12 +1020,15 @@ module Aws
992
1020
  def accelerators: () -> ("GPU")
993
1021
  def storage_type: () -> ("STATIC" | "DYNAMIC")
994
1022
  def uuid: () -> ::String
1023
+ def readme: () -> ::String
1024
+ def definition_repository_details: () -> Types::DefinitionRepositoryDetails
1025
+ def readme_path: () -> ::String
995
1026
  end
996
1027
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_workflow-instance_method
997
1028
  def get_workflow: (
998
1029
  id: ::String,
999
1030
  ?type: ("PRIVATE" | "READY2RUN"),
1000
- ?export: Array[("DEFINITION")],
1031
+ ?export: Array[("DEFINITION" | "README")],
1001
1032
  ?workflow_owner_id: ::String
1002
1033
  ) -> _GetWorkflowResponseSuccess
1003
1034
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetWorkflowResponseSuccess
@@ -1024,13 +1055,16 @@ module Aws
1024
1055
  def tags: () -> ::Hash[::String, ::String]
1025
1056
  def uuid: () -> ::String
1026
1057
  def workflow_bucket_owner_id: () -> ::String
1058
+ def readme: () -> ::String
1059
+ def definition_repository_details: () -> Types::DefinitionRepositoryDetails
1060
+ def readme_path: () -> ::String
1027
1061
  end
1028
1062
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/Omics/Client.html#get_workflow_version-instance_method
1029
1063
  def get_workflow_version: (
1030
1064
  workflow_id: ::String,
1031
1065
  version_name: ::String,
1032
1066
  ?type: ("PRIVATE" | "READY2RUN"),
1033
- ?export: Array[("DEFINITION")],
1067
+ ?export: Array[("DEFINITION" | "README")],
1034
1068
  ?workflow_owner_id: ::String
1035
1069
  ) -> _GetWorkflowVersionResponseSuccess
1036
1070
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _GetWorkflowVersionResponseSuccess
@@ -1743,7 +1777,8 @@ module Aws
1743
1777
  ?name: ::String,
1744
1778
  ?description: ::String,
1745
1779
  ?storage_type: ("STATIC" | "DYNAMIC"),
1746
- ?storage_capacity: ::Integer
1780
+ ?storage_capacity: ::Integer,
1781
+ ?readme_markdown: ::String
1747
1782
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1748
1783
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1749
1784
 
@@ -1753,7 +1788,8 @@ module Aws
1753
1788
  version_name: ::String,
1754
1789
  ?description: ::String,
1755
1790
  ?storage_type: ("STATIC" | "DYNAMIC"),
1756
- ?storage_capacity: ::Integer
1791
+ ?storage_capacity: ::Integer,
1792
+ ?readme_markdown: ::String
1757
1793
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1758
1794
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
1759
1795
 
@@ -1849,7 +1885,7 @@ module Aws
1849
1885
  | (:workflow_active waiter_name,
1850
1886
  id: ::String,
1851
1887
  ?type: ("PRIVATE" | "READY2RUN"),
1852
- ?export: Array[("DEFINITION")],
1888
+ ?export: Array[("DEFINITION" | "README")],
1853
1889
  ?workflow_owner_id: ::String
1854
1890
  ) -> Client::_GetWorkflowResponseSuccess
1855
1891
  | (:workflow_active waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetWorkflowResponseSuccess
@@ -1857,7 +1893,7 @@ module Aws
1857
1893
  workflow_id: ::String,
1858
1894
  version_name: ::String,
1859
1895
  ?type: ("PRIVATE" | "READY2RUN"),
1860
- ?export: Array[("DEFINITION")],
1896
+ ?export: Array[("DEFINITION" | "README")],
1861
1897
  ?workflow_owner_id: ::String
1862
1898
  ) -> Client::_GetWorkflowVersionResponseSuccess
1863
1899
  | (:workflow_version_active waiter_name, Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> Client::_GetWorkflowVersionResponseSuccess
data/sig/resource.rbs CHANGED
@@ -18,6 +18,7 @@ module Aws
18
18
  ?account_id: String,
19
19
  ?active_endpoint_cache: bool,
20
20
  ?adaptive_retry_wait_to_fill: bool,
21
+ ?auth_scheme_preference: Array[String],
21
22
  ?client_side_monitoring: bool,
22
23
  ?client_side_monitoring_client_id: String,
23
24
  ?client_side_monitoring_host: String,
data/sig/types.rbs CHANGED
@@ -370,6 +370,12 @@ module Aws::Omics
370
370
  attr_accessor request_id: ::String
371
371
  attr_accessor accelerators: ("GPU")
372
372
  attr_accessor storage_type: ("STATIC" | "DYNAMIC")
373
+ attr_accessor readme_markdown: ::String
374
+ attr_accessor parameter_template_path: ::String
375
+ attr_accessor readme_path: ::String
376
+ attr_accessor definition_repository: Types::DefinitionRepository
377
+ attr_accessor workflow_bucket_owner_id: ::String
378
+ attr_accessor readme_uri: ::String
373
379
  SENSITIVE: []
374
380
  end
375
381
 
@@ -397,6 +403,11 @@ module Aws::Omics
397
403
  attr_accessor storage_capacity: ::Integer
398
404
  attr_accessor tags: ::Hash[::String, ::String]
399
405
  attr_accessor workflow_bucket_owner_id: ::String
406
+ attr_accessor readme_markdown: ::String
407
+ attr_accessor parameter_template_path: ::String
408
+ attr_accessor readme_path: ::String
409
+ attr_accessor definition_repository: Types::DefinitionRepository
410
+ attr_accessor readme_uri: ::String
400
411
  SENSITIVE: []
401
412
  end
402
413
 
@@ -410,6 +421,23 @@ module Aws::Omics
410
421
  SENSITIVE: []
411
422
  end
412
423
 
424
+ class DefinitionRepository
425
+ attr_accessor connection_arn: ::String
426
+ attr_accessor full_repository_id: ::String
427
+ attr_accessor source_reference: Types::SourceReference
428
+ attr_accessor exclude_file_patterns: ::Array[::String]
429
+ SENSITIVE: []
430
+ end
431
+
432
+ class DefinitionRepositoryDetails
433
+ attr_accessor connection_arn: ::String
434
+ attr_accessor full_repository_id: ::String
435
+ attr_accessor source_reference: Types::SourceReference
436
+ attr_accessor provider_type: ::String
437
+ attr_accessor provider_endpoint: ::String
438
+ SENSITIVE: []
439
+ end
440
+
413
441
  class DeleteAnnotationStoreRequest
414
442
  attr_accessor name: ::String
415
443
  attr_accessor force: bool
@@ -1007,7 +1035,7 @@ module Aws::Omics
1007
1035
  class GetWorkflowRequest
1008
1036
  attr_accessor id: ::String
1009
1037
  attr_accessor type: ("PRIVATE" | "READY2RUN")
1010
- attr_accessor export: ::Array[("DEFINITION")]
1038
+ attr_accessor export: ::Array[("DEFINITION" | "README")]
1011
1039
  attr_accessor workflow_owner_id: ::String
1012
1040
  SENSITIVE: []
1013
1041
  end
@@ -1032,6 +1060,9 @@ module Aws::Omics
1032
1060
  attr_accessor accelerators: ("GPU")
1033
1061
  attr_accessor storage_type: ("STATIC" | "DYNAMIC")
1034
1062
  attr_accessor uuid: ::String
1063
+ attr_accessor readme: ::String
1064
+ attr_accessor definition_repository_details: Types::DefinitionRepositoryDetails
1065
+ attr_accessor readme_path: ::String
1035
1066
  SENSITIVE: []
1036
1067
  end
1037
1068
 
@@ -1039,7 +1070,7 @@ module Aws::Omics
1039
1070
  attr_accessor workflow_id: ::String
1040
1071
  attr_accessor version_name: ::String
1041
1072
  attr_accessor type: ("PRIVATE" | "READY2RUN")
1042
- attr_accessor export: ::Array[("DEFINITION")]
1073
+ attr_accessor export: ::Array[("DEFINITION" | "README")]
1043
1074
  attr_accessor workflow_owner_id: ::String
1044
1075
  SENSITIVE: []
1045
1076
  end
@@ -1065,6 +1096,9 @@ module Aws::Omics
1065
1096
  attr_accessor tags: ::Hash[::String, ::String]
1066
1097
  attr_accessor uuid: ::String
1067
1098
  attr_accessor workflow_bucket_owner_id: ::String
1099
+ attr_accessor readme: ::String
1100
+ attr_accessor definition_repository_details: Types::DefinitionRepositoryDetails
1101
+ attr_accessor readme_path: ::String
1068
1102
  SENSITIVE: []
1069
1103
  end
1070
1104
 
@@ -1775,6 +1809,12 @@ module Aws::Omics
1775
1809
  SENSITIVE: []
1776
1810
  end
1777
1811
 
1812
+ class SourceReference
1813
+ attr_accessor type: ("BRANCH" | "TAG" | "COMMIT")
1814
+ attr_accessor value: ::String
1815
+ SENSITIVE: []
1816
+ end
1817
+
1778
1818
  class SseConfig
1779
1819
  attr_accessor type: ("KMS")
1780
1820
  attr_accessor key_arn: ::String
@@ -2113,6 +2153,7 @@ module Aws::Omics
2113
2153
  attr_accessor description: ::String
2114
2154
  attr_accessor storage_type: ("STATIC" | "DYNAMIC")
2115
2155
  attr_accessor storage_capacity: ::Integer
2156
+ attr_accessor readme_markdown: ::String
2116
2157
  SENSITIVE: []
2117
2158
  end
2118
2159
 
@@ -2122,6 +2163,7 @@ module Aws::Omics
2122
2163
  attr_accessor description: ::String
2123
2164
  attr_accessor storage_type: ("STATIC" | "DYNAMIC")
2124
2165
  attr_accessor storage_capacity: ::Integer
2166
+ attr_accessor readme_markdown: ::String
2125
2167
  SENSITIVE: []
2126
2168
  end
2127
2169
 
data/sig/waiters.rbs CHANGED
@@ -186,7 +186,7 @@ module Aws
186
186
  def wait: (
187
187
  id: ::String,
188
188
  ?type: ("PRIVATE" | "READY2RUN"),
189
- ?export: Array[("DEFINITION")],
189
+ ?export: Array[("DEFINITION" | "README")],
190
190
  ?workflow_owner_id: ::String
191
191
  ) -> Client::_GetWorkflowResponseSuccess
192
192
  | (Hash[Symbol, untyped]) -> Client::_GetWorkflowResponseSuccess
@@ -200,7 +200,7 @@ module Aws
200
200
  workflow_id: ::String,
201
201
  version_name: ::String,
202
202
  ?type: ("PRIVATE" | "READY2RUN"),
203
- ?export: Array[("DEFINITION")],
203
+ ?export: Array[("DEFINITION" | "README")],
204
204
  ?workflow_owner_id: ::String
205
205
  ) -> Client::_GetWorkflowVersionResponseSuccess
206
206
  | (Hash[Symbol, untyped]) -> Client::_GetWorkflowVersionResponseSuccess
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-omics
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.48.0
4
+ version: 1.50.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -18,7 +18,7 @@ dependencies:
18
18
  version: '3'
19
19
  - - ">="
20
20
  - !ruby/object:Gem::Version
21
- version: 3.225.0
21
+ version: 3.227.0
22
22
  type: :runtime
23
23
  prerelease: false
24
24
  version_requirements: !ruby/object:Gem::Requirement
@@ -28,7 +28,7 @@ dependencies:
28
28
  version: '3'
29
29
  - - ">="
30
30
  - !ruby/object:Gem::Version
31
- version: 3.225.0
31
+ version: 3.227.0
32
32
  - !ruby/object:Gem::Dependency
33
33
  name: aws-sigv4
34
34
  requirement: !ruby/object:Gem::Requirement