aws-sdk-mwaaserverless 1.0.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.
- checksums.yaml +7 -0
- data/CHANGELOG.md +8 -0
- data/LICENSE.txt +202 -0
- data/VERSION +1 -0
- data/lib/aws-sdk-mwaaserverless/client.rb +1427 -0
- data/lib/aws-sdk-mwaaserverless/client_api.rb +694 -0
- data/lib/aws-sdk-mwaaserverless/customizations.rb +0 -0
- data/lib/aws-sdk-mwaaserverless/endpoint_parameters.rb +59 -0
- data/lib/aws-sdk-mwaaserverless/endpoint_provider.rb +32 -0
- data/lib/aws-sdk-mwaaserverless/endpoints.rb +20 -0
- data/lib/aws-sdk-mwaaserverless/errors.rb +248 -0
- data/lib/aws-sdk-mwaaserverless/plugins/endpoints.rb +77 -0
- data/lib/aws-sdk-mwaaserverless/resource.rb +26 -0
- data/lib/aws-sdk-mwaaserverless/types.rb +1613 -0
- data/lib/aws-sdk-mwaaserverless/waiters.rb +15 -0
- data/lib/aws-sdk-mwaaserverless.rb +62 -0
- data/sig/client.rbs +344 -0
- data/sig/errors.rbs +54 -0
- data/sig/resource.rbs +86 -0
- data/sig/types.rbs +404 -0
- data/sig/waiters.rbs +13 -0
- metadata +97 -0
data/sig/types.rbs
ADDED
|
@@ -0,0 +1,404 @@
|
|
|
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::MWAAServerless
|
|
9
|
+
module Types
|
|
10
|
+
|
|
11
|
+
class AccessDeniedException
|
|
12
|
+
attr_accessor message: ::String
|
|
13
|
+
SENSITIVE: []
|
|
14
|
+
end
|
|
15
|
+
|
|
16
|
+
class ConflictException
|
|
17
|
+
attr_accessor message: ::String
|
|
18
|
+
attr_accessor resource_id: ::String
|
|
19
|
+
attr_accessor resource_type: ::String
|
|
20
|
+
SENSITIVE: []
|
|
21
|
+
end
|
|
22
|
+
|
|
23
|
+
class CreateWorkflowRequest
|
|
24
|
+
attr_accessor name: ::String
|
|
25
|
+
attr_accessor client_token: ::String
|
|
26
|
+
attr_accessor definition_s3_location: Types::DefinitionS3Location
|
|
27
|
+
attr_accessor role_arn: ::String
|
|
28
|
+
attr_accessor description: ::String
|
|
29
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
30
|
+
attr_accessor logging_configuration: Types::LoggingConfiguration
|
|
31
|
+
attr_accessor engine_version: ::Integer
|
|
32
|
+
attr_accessor network_configuration: Types::NetworkConfiguration
|
|
33
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
34
|
+
attr_accessor trigger_mode: ::String
|
|
35
|
+
SENSITIVE: []
|
|
36
|
+
end
|
|
37
|
+
|
|
38
|
+
class CreateWorkflowResponse
|
|
39
|
+
attr_accessor workflow_arn: ::String
|
|
40
|
+
attr_accessor created_at: ::Time
|
|
41
|
+
attr_accessor revision_id: ::String
|
|
42
|
+
attr_accessor workflow_status: ("READY" | "DELETING")
|
|
43
|
+
attr_accessor workflow_version: ::String
|
|
44
|
+
attr_accessor is_latest_version: bool
|
|
45
|
+
attr_accessor warnings: ::Array[::String]
|
|
46
|
+
SENSITIVE: []
|
|
47
|
+
end
|
|
48
|
+
|
|
49
|
+
class DefinitionS3Location
|
|
50
|
+
attr_accessor bucket: ::String
|
|
51
|
+
attr_accessor object_key: ::String
|
|
52
|
+
attr_accessor version_id: ::String
|
|
53
|
+
SENSITIVE: []
|
|
54
|
+
end
|
|
55
|
+
|
|
56
|
+
class DeleteWorkflowRequest
|
|
57
|
+
attr_accessor workflow_arn: ::String
|
|
58
|
+
attr_accessor workflow_version: ::String
|
|
59
|
+
SENSITIVE: []
|
|
60
|
+
end
|
|
61
|
+
|
|
62
|
+
class DeleteWorkflowResponse
|
|
63
|
+
attr_accessor workflow_arn: ::String
|
|
64
|
+
attr_accessor workflow_version: ::String
|
|
65
|
+
SENSITIVE: []
|
|
66
|
+
end
|
|
67
|
+
|
|
68
|
+
class EncryptionConfiguration
|
|
69
|
+
attr_accessor type: ("AWS_MANAGED_KEY" | "CUSTOMER_MANAGED_KEY")
|
|
70
|
+
attr_accessor kms_key_id: ::String
|
|
71
|
+
SENSITIVE: []
|
|
72
|
+
end
|
|
73
|
+
|
|
74
|
+
class GetTaskInstanceRequest
|
|
75
|
+
attr_accessor workflow_arn: ::String
|
|
76
|
+
attr_accessor task_instance_id: ::String
|
|
77
|
+
attr_accessor run_id: ::String
|
|
78
|
+
SENSITIVE: []
|
|
79
|
+
end
|
|
80
|
+
|
|
81
|
+
class GetTaskInstanceResponse
|
|
82
|
+
attr_accessor workflow_arn: ::String
|
|
83
|
+
attr_accessor run_id: ::String
|
|
84
|
+
attr_accessor task_instance_id: ::String
|
|
85
|
+
attr_accessor workflow_version: ::String
|
|
86
|
+
attr_accessor status: ("QUEUED" | "FAILED" | "SCHEDULED" | "RUNNING" | "SUCCESS" | "UP_FOR_RESCHEDULE" | "UP_FOR_RETRY" | "UPSTREAM_FAILED" | "REMOVED" | "RESTARTING" | "DEFERRED" | "NONE" | "CANCELLED" | "TIMEOUT")
|
|
87
|
+
attr_accessor duration_in_seconds: ::Integer
|
|
88
|
+
attr_accessor operator_name: ::String
|
|
89
|
+
attr_accessor modified_at: ::Time
|
|
90
|
+
attr_accessor ended_at: ::Time
|
|
91
|
+
attr_accessor started_at: ::Time
|
|
92
|
+
attr_accessor attempt_number: ::Integer
|
|
93
|
+
attr_accessor error_message: ::String
|
|
94
|
+
attr_accessor task_id: ::String
|
|
95
|
+
attr_accessor log_stream: ::String
|
|
96
|
+
attr_accessor xcom: ::Hash[::String, ::String]
|
|
97
|
+
SENSITIVE: []
|
|
98
|
+
end
|
|
99
|
+
|
|
100
|
+
class GetWorkflowRequest
|
|
101
|
+
attr_accessor workflow_arn: ::String
|
|
102
|
+
attr_accessor workflow_version: ::String
|
|
103
|
+
SENSITIVE: []
|
|
104
|
+
end
|
|
105
|
+
|
|
106
|
+
class GetWorkflowResponse
|
|
107
|
+
attr_accessor workflow_arn: ::String
|
|
108
|
+
attr_accessor workflow_version: ::String
|
|
109
|
+
attr_accessor name: ::String
|
|
110
|
+
attr_accessor description: ::String
|
|
111
|
+
attr_accessor created_at: ::Time
|
|
112
|
+
attr_accessor modified_at: ::Time
|
|
113
|
+
attr_accessor encryption_configuration: Types::EncryptionConfiguration
|
|
114
|
+
attr_accessor logging_configuration: Types::LoggingConfiguration
|
|
115
|
+
attr_accessor engine_version: ::Integer
|
|
116
|
+
attr_accessor workflow_status: ("READY" | "DELETING")
|
|
117
|
+
attr_accessor definition_s3_location: Types::DefinitionS3Location
|
|
118
|
+
attr_accessor schedule_configuration: Types::ScheduleConfiguration
|
|
119
|
+
attr_accessor role_arn: ::String
|
|
120
|
+
attr_accessor network_configuration: Types::NetworkConfiguration
|
|
121
|
+
attr_accessor trigger_mode: ::String
|
|
122
|
+
attr_accessor workflow_definition: ::String
|
|
123
|
+
SENSITIVE: []
|
|
124
|
+
end
|
|
125
|
+
|
|
126
|
+
class GetWorkflowRunRequest
|
|
127
|
+
attr_accessor workflow_arn: ::String
|
|
128
|
+
attr_accessor run_id: ::String
|
|
129
|
+
SENSITIVE: []
|
|
130
|
+
end
|
|
131
|
+
|
|
132
|
+
class GetWorkflowRunResponse
|
|
133
|
+
attr_accessor workflow_arn: ::String
|
|
134
|
+
attr_accessor workflow_version: ::String
|
|
135
|
+
attr_accessor run_id: ::String
|
|
136
|
+
attr_accessor run_type: ("ON_DEMAND" | "SCHEDULED")
|
|
137
|
+
attr_accessor override_parameters: ::Hash[::String, untyped]
|
|
138
|
+
attr_accessor run_detail: Types::WorkflowRunDetail
|
|
139
|
+
SENSITIVE: [:override_parameters]
|
|
140
|
+
end
|
|
141
|
+
|
|
142
|
+
class InternalServerException
|
|
143
|
+
attr_accessor message: ::String
|
|
144
|
+
attr_accessor retry_after_seconds: ::Integer
|
|
145
|
+
SENSITIVE: []
|
|
146
|
+
end
|
|
147
|
+
|
|
148
|
+
class ListTagsForResourceRequest
|
|
149
|
+
attr_accessor resource_arn: ::String
|
|
150
|
+
SENSITIVE: []
|
|
151
|
+
end
|
|
152
|
+
|
|
153
|
+
class ListTagsForResourceResponse
|
|
154
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
155
|
+
SENSITIVE: []
|
|
156
|
+
end
|
|
157
|
+
|
|
158
|
+
class ListTaskInstancesRequest
|
|
159
|
+
attr_accessor workflow_arn: ::String
|
|
160
|
+
attr_accessor run_id: ::String
|
|
161
|
+
attr_accessor max_results: ::Integer
|
|
162
|
+
attr_accessor next_token: ::String
|
|
163
|
+
SENSITIVE: []
|
|
164
|
+
end
|
|
165
|
+
|
|
166
|
+
class ListTaskInstancesResponse
|
|
167
|
+
attr_accessor task_instances: ::Array[Types::TaskInstanceSummary]
|
|
168
|
+
attr_accessor next_token: ::String
|
|
169
|
+
SENSITIVE: []
|
|
170
|
+
end
|
|
171
|
+
|
|
172
|
+
class ListWorkflowRunsRequest
|
|
173
|
+
attr_accessor max_results: ::Integer
|
|
174
|
+
attr_accessor next_token: ::String
|
|
175
|
+
attr_accessor workflow_arn: ::String
|
|
176
|
+
attr_accessor workflow_version: ::String
|
|
177
|
+
SENSITIVE: []
|
|
178
|
+
end
|
|
179
|
+
|
|
180
|
+
class ListWorkflowRunsResponse
|
|
181
|
+
attr_accessor workflow_runs: ::Array[Types::WorkflowRunSummary]
|
|
182
|
+
attr_accessor next_token: ::String
|
|
183
|
+
SENSITIVE: []
|
|
184
|
+
end
|
|
185
|
+
|
|
186
|
+
class ListWorkflowVersionsRequest
|
|
187
|
+
attr_accessor max_results: ::Integer
|
|
188
|
+
attr_accessor next_token: ::String
|
|
189
|
+
attr_accessor workflow_arn: ::String
|
|
190
|
+
SENSITIVE: []
|
|
191
|
+
end
|
|
192
|
+
|
|
193
|
+
class ListWorkflowVersionsResponse
|
|
194
|
+
attr_accessor workflow_versions: ::Array[Types::WorkflowVersionSummary]
|
|
195
|
+
attr_accessor next_token: ::String
|
|
196
|
+
SENSITIVE: []
|
|
197
|
+
end
|
|
198
|
+
|
|
199
|
+
class ListWorkflowsRequest
|
|
200
|
+
attr_accessor max_results: ::Integer
|
|
201
|
+
attr_accessor next_token: ::String
|
|
202
|
+
SENSITIVE: []
|
|
203
|
+
end
|
|
204
|
+
|
|
205
|
+
class ListWorkflowsResponse
|
|
206
|
+
attr_accessor workflows: ::Array[Types::WorkflowSummary]
|
|
207
|
+
attr_accessor next_token: ::String
|
|
208
|
+
SENSITIVE: []
|
|
209
|
+
end
|
|
210
|
+
|
|
211
|
+
class LoggingConfiguration
|
|
212
|
+
attr_accessor log_group_name: ::String
|
|
213
|
+
SENSITIVE: []
|
|
214
|
+
end
|
|
215
|
+
|
|
216
|
+
class NetworkConfiguration
|
|
217
|
+
attr_accessor security_group_ids: ::Array[::String]
|
|
218
|
+
attr_accessor subnet_ids: ::Array[::String]
|
|
219
|
+
SENSITIVE: []
|
|
220
|
+
end
|
|
221
|
+
|
|
222
|
+
class OperationTimeoutException
|
|
223
|
+
attr_accessor message: ::String
|
|
224
|
+
SENSITIVE: []
|
|
225
|
+
end
|
|
226
|
+
|
|
227
|
+
class ResourceNotFoundException
|
|
228
|
+
attr_accessor message: ::String
|
|
229
|
+
attr_accessor resource_id: ::String
|
|
230
|
+
attr_accessor resource_type: ::String
|
|
231
|
+
SENSITIVE: []
|
|
232
|
+
end
|
|
233
|
+
|
|
234
|
+
class RunDetailSummary
|
|
235
|
+
attr_accessor status: ("STARTING" | "QUEUED" | "RUNNING" | "SUCCESS" | "FAILED" | "TIMEOUT" | "STOPPING" | "STOPPED")
|
|
236
|
+
attr_accessor created_on: ::Time
|
|
237
|
+
attr_accessor started_at: ::Time
|
|
238
|
+
attr_accessor ended_at: ::Time
|
|
239
|
+
SENSITIVE: []
|
|
240
|
+
end
|
|
241
|
+
|
|
242
|
+
class ScheduleConfiguration
|
|
243
|
+
attr_accessor cron_expression: ::String
|
|
244
|
+
SENSITIVE: []
|
|
245
|
+
end
|
|
246
|
+
|
|
247
|
+
class ServiceQuotaExceededException
|
|
248
|
+
attr_accessor message: ::String
|
|
249
|
+
attr_accessor resource_id: ::String
|
|
250
|
+
attr_accessor resource_type: ::String
|
|
251
|
+
attr_accessor service_code: ::String
|
|
252
|
+
attr_accessor quota_code: ::String
|
|
253
|
+
SENSITIVE: []
|
|
254
|
+
end
|
|
255
|
+
|
|
256
|
+
class StartWorkflowRunRequest
|
|
257
|
+
attr_accessor workflow_arn: ::String
|
|
258
|
+
attr_accessor client_token: ::String
|
|
259
|
+
attr_accessor override_parameters: ::Hash[::String, untyped]
|
|
260
|
+
attr_accessor workflow_version: ::String
|
|
261
|
+
SENSITIVE: [:override_parameters]
|
|
262
|
+
end
|
|
263
|
+
|
|
264
|
+
class StartWorkflowRunResponse
|
|
265
|
+
attr_accessor run_id: ::String
|
|
266
|
+
attr_accessor status: ("STARTING" | "QUEUED" | "RUNNING" | "SUCCESS" | "FAILED" | "TIMEOUT" | "STOPPING" | "STOPPED")
|
|
267
|
+
attr_accessor started_at: ::Time
|
|
268
|
+
SENSITIVE: []
|
|
269
|
+
end
|
|
270
|
+
|
|
271
|
+
class StopWorkflowRunRequest
|
|
272
|
+
attr_accessor workflow_arn: ::String
|
|
273
|
+
attr_accessor run_id: ::String
|
|
274
|
+
SENSITIVE: []
|
|
275
|
+
end
|
|
276
|
+
|
|
277
|
+
class StopWorkflowRunResponse
|
|
278
|
+
attr_accessor workflow_arn: ::String
|
|
279
|
+
attr_accessor workflow_version: ::String
|
|
280
|
+
attr_accessor run_id: ::String
|
|
281
|
+
attr_accessor status: ("STARTING" | "QUEUED" | "RUNNING" | "SUCCESS" | "FAILED" | "TIMEOUT" | "STOPPING" | "STOPPED")
|
|
282
|
+
SENSITIVE: []
|
|
283
|
+
end
|
|
284
|
+
|
|
285
|
+
class TagResourceRequest
|
|
286
|
+
attr_accessor resource_arn: ::String
|
|
287
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
|
288
|
+
SENSITIVE: []
|
|
289
|
+
end
|
|
290
|
+
|
|
291
|
+
class TagResourceResponse < Aws::EmptyStructure
|
|
292
|
+
end
|
|
293
|
+
|
|
294
|
+
class TaskInstanceSummary
|
|
295
|
+
attr_accessor workflow_arn: ::String
|
|
296
|
+
attr_accessor workflow_version: ::String
|
|
297
|
+
attr_accessor run_id: ::String
|
|
298
|
+
attr_accessor task_instance_id: ::String
|
|
299
|
+
attr_accessor status: ("QUEUED" | "FAILED" | "SCHEDULED" | "RUNNING" | "SUCCESS" | "UP_FOR_RESCHEDULE" | "UP_FOR_RETRY" | "UPSTREAM_FAILED" | "REMOVED" | "RESTARTING" | "DEFERRED" | "NONE" | "CANCELLED" | "TIMEOUT")
|
|
300
|
+
attr_accessor duration_in_seconds: ::Integer
|
|
301
|
+
attr_accessor operator_name: ::String
|
|
302
|
+
SENSITIVE: []
|
|
303
|
+
end
|
|
304
|
+
|
|
305
|
+
class ThrottlingException
|
|
306
|
+
attr_accessor message: ::String
|
|
307
|
+
attr_accessor service_code: ::String
|
|
308
|
+
attr_accessor quota_code: ::String
|
|
309
|
+
attr_accessor retry_after_seconds: ::Integer
|
|
310
|
+
SENSITIVE: []
|
|
311
|
+
end
|
|
312
|
+
|
|
313
|
+
class UntagResourceRequest
|
|
314
|
+
attr_accessor resource_arn: ::String
|
|
315
|
+
attr_accessor tag_keys: ::Array[::String]
|
|
316
|
+
SENSITIVE: []
|
|
317
|
+
end
|
|
318
|
+
|
|
319
|
+
class UntagResourceResponse < Aws::EmptyStructure
|
|
320
|
+
end
|
|
321
|
+
|
|
322
|
+
class UpdateWorkflowRequest
|
|
323
|
+
attr_accessor workflow_arn: ::String
|
|
324
|
+
attr_accessor definition_s3_location: Types::DefinitionS3Location
|
|
325
|
+
attr_accessor role_arn: ::String
|
|
326
|
+
attr_accessor description: ::String
|
|
327
|
+
attr_accessor logging_configuration: Types::LoggingConfiguration
|
|
328
|
+
attr_accessor engine_version: ::Integer
|
|
329
|
+
attr_accessor network_configuration: Types::NetworkConfiguration
|
|
330
|
+
attr_accessor trigger_mode: ::String
|
|
331
|
+
SENSITIVE: []
|
|
332
|
+
end
|
|
333
|
+
|
|
334
|
+
class UpdateWorkflowResponse
|
|
335
|
+
attr_accessor workflow_arn: ::String
|
|
336
|
+
attr_accessor modified_at: ::Time
|
|
337
|
+
attr_accessor workflow_version: ::String
|
|
338
|
+
attr_accessor warnings: ::Array[::String]
|
|
339
|
+
SENSITIVE: []
|
|
340
|
+
end
|
|
341
|
+
|
|
342
|
+
class ValidationException
|
|
343
|
+
attr_accessor message: ::String
|
|
344
|
+
attr_accessor reason: ("unknownOperation" | "cannotParse" | "fieldValidationFailed" | "other")
|
|
345
|
+
attr_accessor field_list: ::Array[Types::ValidationExceptionField]
|
|
346
|
+
SENSITIVE: []
|
|
347
|
+
end
|
|
348
|
+
|
|
349
|
+
class ValidationExceptionField
|
|
350
|
+
attr_accessor name: ::String
|
|
351
|
+
attr_accessor message: ::String
|
|
352
|
+
SENSITIVE: []
|
|
353
|
+
end
|
|
354
|
+
|
|
355
|
+
class WorkflowRunDetail
|
|
356
|
+
attr_accessor workflow_arn: ::String
|
|
357
|
+
attr_accessor workflow_version: ::String
|
|
358
|
+
attr_accessor run_id: ::String
|
|
359
|
+
attr_accessor run_type: ("ON_DEMAND" | "SCHEDULED")
|
|
360
|
+
attr_accessor started_on: ::Time
|
|
361
|
+
attr_accessor created_at: ::Time
|
|
362
|
+
attr_accessor completed_on: ::Time
|
|
363
|
+
attr_accessor modified_at: ::Time
|
|
364
|
+
attr_accessor duration: ::Integer
|
|
365
|
+
attr_accessor error_message: ::String
|
|
366
|
+
attr_accessor task_instances: ::Array[::String]
|
|
367
|
+
attr_accessor run_state: ("STARTING" | "QUEUED" | "RUNNING" | "SUCCESS" | "FAILED" | "TIMEOUT" | "STOPPING" | "STOPPED")
|
|
368
|
+
SENSITIVE: []
|
|
369
|
+
end
|
|
370
|
+
|
|
371
|
+
class WorkflowRunSummary
|
|
372
|
+
attr_accessor run_id: ::String
|
|
373
|
+
attr_accessor workflow_arn: ::String
|
|
374
|
+
attr_accessor workflow_version: ::String
|
|
375
|
+
attr_accessor run_type: ("ON_DEMAND" | "SCHEDULED")
|
|
376
|
+
attr_accessor run_detail_summary: Types::RunDetailSummary
|
|
377
|
+
SENSITIVE: []
|
|
378
|
+
end
|
|
379
|
+
|
|
380
|
+
class WorkflowSummary
|
|
381
|
+
attr_accessor workflow_arn: ::String
|
|
382
|
+
attr_accessor workflow_version: ::String
|
|
383
|
+
attr_accessor name: ::String
|
|
384
|
+
attr_accessor description: ::String
|
|
385
|
+
attr_accessor created_at: ::Time
|
|
386
|
+
attr_accessor modified_at: ::Time
|
|
387
|
+
attr_accessor workflow_status: ("READY" | "DELETING")
|
|
388
|
+
attr_accessor trigger_mode: ::String
|
|
389
|
+
SENSITIVE: []
|
|
390
|
+
end
|
|
391
|
+
|
|
392
|
+
class WorkflowVersionSummary
|
|
393
|
+
attr_accessor workflow_version: ::String
|
|
394
|
+
attr_accessor workflow_arn: ::String
|
|
395
|
+
attr_accessor is_latest_version: bool
|
|
396
|
+
attr_accessor created_at: ::Time
|
|
397
|
+
attr_accessor modified_at: ::Time
|
|
398
|
+
attr_accessor definition_s3_location: Types::DefinitionS3Location
|
|
399
|
+
attr_accessor schedule_configuration: Types::ScheduleConfiguration
|
|
400
|
+
attr_accessor trigger_mode: ::String
|
|
401
|
+
SENSITIVE: []
|
|
402
|
+
end
|
|
403
|
+
end
|
|
404
|
+
end
|
data/sig/waiters.rbs
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
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 MWAAServerless
|
|
10
|
+
module Waiters
|
|
11
|
+
end
|
|
12
|
+
end
|
|
13
|
+
end
|
metadata
ADDED
|
@@ -0,0 +1,97 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: aws-sdk-mwaaserverless
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 1.0.0
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Amazon Web Services
|
|
8
|
+
bindir: bin
|
|
9
|
+
cert_chain: []
|
|
10
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
|
11
|
+
dependencies:
|
|
12
|
+
- !ruby/object:Gem::Dependency
|
|
13
|
+
name: aws-sdk-core
|
|
14
|
+
requirement: !ruby/object:Gem::Requirement
|
|
15
|
+
requirements:
|
|
16
|
+
- - "~>"
|
|
17
|
+
- !ruby/object:Gem::Version
|
|
18
|
+
version: '3'
|
|
19
|
+
- - ">="
|
|
20
|
+
- !ruby/object:Gem::Version
|
|
21
|
+
version: 3.234.0
|
|
22
|
+
type: :runtime
|
|
23
|
+
prerelease: false
|
|
24
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
25
|
+
requirements:
|
|
26
|
+
- - "~>"
|
|
27
|
+
- !ruby/object:Gem::Version
|
|
28
|
+
version: '3'
|
|
29
|
+
- - ">="
|
|
30
|
+
- !ruby/object:Gem::Version
|
|
31
|
+
version: 3.234.0
|
|
32
|
+
- !ruby/object:Gem::Dependency
|
|
33
|
+
name: aws-sigv4
|
|
34
|
+
requirement: !ruby/object:Gem::Requirement
|
|
35
|
+
requirements:
|
|
36
|
+
- - "~>"
|
|
37
|
+
- !ruby/object:Gem::Version
|
|
38
|
+
version: '1.5'
|
|
39
|
+
type: :runtime
|
|
40
|
+
prerelease: false
|
|
41
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
42
|
+
requirements:
|
|
43
|
+
- - "~>"
|
|
44
|
+
- !ruby/object:Gem::Version
|
|
45
|
+
version: '1.5'
|
|
46
|
+
description: Official AWS Ruby gem for AmazonMWAAServerless. This gem is part of the
|
|
47
|
+
AWS SDK for Ruby.
|
|
48
|
+
email:
|
|
49
|
+
- aws-dr-rubygems@amazon.com
|
|
50
|
+
executables: []
|
|
51
|
+
extensions: []
|
|
52
|
+
extra_rdoc_files: []
|
|
53
|
+
files:
|
|
54
|
+
- CHANGELOG.md
|
|
55
|
+
- LICENSE.txt
|
|
56
|
+
- VERSION
|
|
57
|
+
- lib/aws-sdk-mwaaserverless.rb
|
|
58
|
+
- lib/aws-sdk-mwaaserverless/client.rb
|
|
59
|
+
- lib/aws-sdk-mwaaserverless/client_api.rb
|
|
60
|
+
- lib/aws-sdk-mwaaserverless/customizations.rb
|
|
61
|
+
- lib/aws-sdk-mwaaserverless/endpoint_parameters.rb
|
|
62
|
+
- lib/aws-sdk-mwaaserverless/endpoint_provider.rb
|
|
63
|
+
- lib/aws-sdk-mwaaserverless/endpoints.rb
|
|
64
|
+
- lib/aws-sdk-mwaaserverless/errors.rb
|
|
65
|
+
- lib/aws-sdk-mwaaserverless/plugins/endpoints.rb
|
|
66
|
+
- lib/aws-sdk-mwaaserverless/resource.rb
|
|
67
|
+
- lib/aws-sdk-mwaaserverless/types.rb
|
|
68
|
+
- lib/aws-sdk-mwaaserverless/waiters.rb
|
|
69
|
+
- sig/client.rbs
|
|
70
|
+
- sig/errors.rbs
|
|
71
|
+
- sig/resource.rbs
|
|
72
|
+
- sig/types.rbs
|
|
73
|
+
- sig/waiters.rbs
|
|
74
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
|
75
|
+
licenses:
|
|
76
|
+
- Apache-2.0
|
|
77
|
+
metadata:
|
|
78
|
+
source_code_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mwaaserverless
|
|
79
|
+
changelog_uri: https://github.com/aws/aws-sdk-ruby/tree/version-3/gems/aws-sdk-mwaaserverless/CHANGELOG.md
|
|
80
|
+
rdoc_options: []
|
|
81
|
+
require_paths:
|
|
82
|
+
- lib
|
|
83
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
84
|
+
requirements:
|
|
85
|
+
- - ">="
|
|
86
|
+
- !ruby/object:Gem::Version
|
|
87
|
+
version: '2.7'
|
|
88
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
89
|
+
requirements:
|
|
90
|
+
- - ">="
|
|
91
|
+
- !ruby/object:Gem::Version
|
|
92
|
+
version: '0'
|
|
93
|
+
requirements: []
|
|
94
|
+
rubygems_version: 3.6.7
|
|
95
|
+
specification_version: 4
|
|
96
|
+
summary: AWS SDK for Ruby - AmazonMWAAServerless
|
|
97
|
+
test_files: []
|