aws-sdk-omics 1.22.0 → 1.24.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/waiters.rbs ADDED
@@ -0,0 +1,195 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module Omics
10
+ module Waiters
11
+
12
+ class AnnotationImportJobCreated
13
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
14
+ | (?Hash[Symbol, untyped]) -> void
15
+
16
+ def wait: (
17
+ job_id: ::String
18
+ ) -> Client::_GetAnnotationImportJobResponseSuccess
19
+ | (Hash[Symbol, untyped]) -> Client::_GetAnnotationImportJobResponseSuccess
20
+ end
21
+
22
+ class AnnotationStoreCreated
23
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
24
+ | (?Hash[Symbol, untyped]) -> void
25
+
26
+ def wait: (
27
+ name: ::String
28
+ ) -> Client::_GetAnnotationStoreResponseSuccess
29
+ | (Hash[Symbol, untyped]) -> Client::_GetAnnotationStoreResponseSuccess
30
+ end
31
+
32
+ class AnnotationStoreDeleted
33
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
34
+ | (?Hash[Symbol, untyped]) -> void
35
+
36
+ def wait: (
37
+ name: ::String
38
+ ) -> Client::_GetAnnotationStoreResponseSuccess
39
+ | (Hash[Symbol, untyped]) -> Client::_GetAnnotationStoreResponseSuccess
40
+ end
41
+
42
+ class AnnotationStoreVersionCreated
43
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
44
+ | (?Hash[Symbol, untyped]) -> void
45
+
46
+ def wait: (
47
+ name: ::String,
48
+ version_name: ::String
49
+ ) -> Client::_GetAnnotationStoreVersionResponseSuccess
50
+ | (Hash[Symbol, untyped]) -> Client::_GetAnnotationStoreVersionResponseSuccess
51
+ end
52
+
53
+ class AnnotationStoreVersionDeleted
54
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
55
+ | (?Hash[Symbol, untyped]) -> void
56
+
57
+ def wait: (
58
+ name: ::String,
59
+ version_name: ::String
60
+ ) -> Client::_GetAnnotationStoreVersionResponseSuccess
61
+ | (Hash[Symbol, untyped]) -> Client::_GetAnnotationStoreVersionResponseSuccess
62
+ end
63
+
64
+ class ReadSetActivationJobCompleted
65
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
66
+ | (?Hash[Symbol, untyped]) -> void
67
+
68
+ def wait: (
69
+ id: ::String,
70
+ sequence_store_id: ::String
71
+ ) -> Client::_GetReadSetActivationJobResponseSuccess
72
+ | (Hash[Symbol, untyped]) -> Client::_GetReadSetActivationJobResponseSuccess
73
+ end
74
+
75
+ class ReadSetExportJobCompleted
76
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
77
+ | (?Hash[Symbol, untyped]) -> void
78
+
79
+ def wait: (
80
+ sequence_store_id: ::String,
81
+ id: ::String
82
+ ) -> Client::_GetReadSetExportJobResponseSuccess
83
+ | (Hash[Symbol, untyped]) -> Client::_GetReadSetExportJobResponseSuccess
84
+ end
85
+
86
+ class ReadSetImportJobCompleted
87
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
88
+ | (?Hash[Symbol, untyped]) -> void
89
+
90
+ def wait: (
91
+ id: ::String,
92
+ sequence_store_id: ::String
93
+ ) -> Client::_GetReadSetImportJobResponseSuccess
94
+ | (Hash[Symbol, untyped]) -> Client::_GetReadSetImportJobResponseSuccess
95
+ end
96
+
97
+ class ReferenceImportJobCompleted
98
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
99
+ | (?Hash[Symbol, untyped]) -> void
100
+
101
+ def wait: (
102
+ id: ::String,
103
+ reference_store_id: ::String
104
+ ) -> Client::_GetReferenceImportJobResponseSuccess
105
+ | (Hash[Symbol, untyped]) -> Client::_GetReferenceImportJobResponseSuccess
106
+ end
107
+
108
+ class RunCompleted
109
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
110
+ | (?Hash[Symbol, untyped]) -> void
111
+
112
+ def wait: (
113
+ id: ::String,
114
+ ?export: Array[("DEFINITION")]
115
+ ) -> Client::_GetRunResponseSuccess
116
+ | (Hash[Symbol, untyped]) -> Client::_GetRunResponseSuccess
117
+ end
118
+
119
+ class RunRunning
120
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
121
+ | (?Hash[Symbol, untyped]) -> void
122
+
123
+ def wait: (
124
+ id: ::String,
125
+ ?export: Array[("DEFINITION")]
126
+ ) -> Client::_GetRunResponseSuccess
127
+ | (Hash[Symbol, untyped]) -> Client::_GetRunResponseSuccess
128
+ end
129
+
130
+ class TaskCompleted
131
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
132
+ | (?Hash[Symbol, untyped]) -> void
133
+
134
+ def wait: (
135
+ id: ::String,
136
+ task_id: ::String
137
+ ) -> Client::_GetRunTaskResponseSuccess
138
+ | (Hash[Symbol, untyped]) -> Client::_GetRunTaskResponseSuccess
139
+ end
140
+
141
+ class TaskRunning
142
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
143
+ | (?Hash[Symbol, untyped]) -> void
144
+
145
+ def wait: (
146
+ id: ::String,
147
+ task_id: ::String
148
+ ) -> Client::_GetRunTaskResponseSuccess
149
+ | (Hash[Symbol, untyped]) -> Client::_GetRunTaskResponseSuccess
150
+ end
151
+
152
+ class VariantImportJobCreated
153
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
154
+ | (?Hash[Symbol, untyped]) -> void
155
+
156
+ def wait: (
157
+ job_id: ::String
158
+ ) -> Client::_GetVariantImportJobResponseSuccess
159
+ | (Hash[Symbol, untyped]) -> Client::_GetVariantImportJobResponseSuccess
160
+ end
161
+
162
+ class VariantStoreCreated
163
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
164
+ | (?Hash[Symbol, untyped]) -> void
165
+
166
+ def wait: (
167
+ name: ::String
168
+ ) -> Client::_GetVariantStoreResponseSuccess
169
+ | (Hash[Symbol, untyped]) -> Client::_GetVariantStoreResponseSuccess
170
+ end
171
+
172
+ class VariantStoreDeleted
173
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
174
+ | (?Hash[Symbol, untyped]) -> void
175
+
176
+ def wait: (
177
+ name: ::String
178
+ ) -> Client::_GetVariantStoreResponseSuccess
179
+ | (Hash[Symbol, untyped]) -> Client::_GetVariantStoreResponseSuccess
180
+ end
181
+
182
+ class WorkflowActive
183
+ def initialize: (?client: Client, ?max_attempts: Integer, ?delay: Integer, ?before_attempt: Proc, ?before_wait: Proc) -> void
184
+ | (?Hash[Symbol, untyped]) -> void
185
+
186
+ def wait: (
187
+ id: ::String,
188
+ ?type: ("PRIVATE" | "READY2RUN"),
189
+ ?export: Array[("DEFINITION")]
190
+ ) -> Client::_GetWorkflowResponseSuccess
191
+ | (Hash[Symbol, untyped]) -> Client::_GetWorkflowResponseSuccess
192
+ end
193
+ end
194
+ end
195
+ 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.22.0
4
+ version: 1.24.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
- autorequire:
8
+ autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-12-22 00:00:00.000000000 Z
11
+ date: 2024-04-11 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.188.0
22
+ version: 3.191.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.188.0
32
+ version: 3.191.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -67,13 +67,18 @@ files:
67
67
  - lib/aws-sdk-omics/resource.rb
68
68
  - lib/aws-sdk-omics/types.rb
69
69
  - lib/aws-sdk-omics/waiters.rb
70
+ - sig/client.rbs
71
+ - sig/errors.rbs
72
+ - sig/resource.rbs
73
+ - sig/types.rbs
74
+ - sig/waiters.rbs
70
75
  homepage: https://github.com/aws/aws-sdk-ruby
71
76
  licenses:
72
77
  - Apache-2.0
73
78
  metadata:
74
79
  source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-omics
75
80
  changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-omics/CHANGELOG.md
76
- post_install_message:
81
+ post_install_message:
77
82
  rdoc_options: []
78
83
  require_paths:
79
84
  - lib
@@ -88,8 +93,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
88
93
  - !ruby/object:Gem::Version
89
94
  version: '0'
90
95
  requirements: []
91
- rubygems_version: 3.1.6
92
- signing_key:
96
+ rubygems_version: 3.4.10
97
+ signing_key:
93
98
  specification_version: 4
94
99
  summary: AWS SDK for Ruby - Amazon Omics
95
100
  test_files: []