aws-sdk-schemas 1.34.0 → 1.35.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-schemas/client.rb +1 -1
- data/lib/aws-sdk-schemas/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-schemas.rb +1 -1
- data/sig/client.rbs +491 -0
- data/sig/errors.rbs +56 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +701 -0
- data/sig/waiters.rbs +26 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,701 @@
|
|
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::Schemas
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class BadRequestException
|
12
|
+
attr_accessor code: ::String
|
13
|
+
attr_accessor message: ::String
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
17
|
+
class CodeBindingOutput
|
18
|
+
attr_accessor creation_date: ::Time
|
19
|
+
attr_accessor last_modified: ::Time
|
20
|
+
attr_accessor schema_version: ::String
|
21
|
+
attr_accessor status: ("CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "CREATE_FAILED")
|
22
|
+
SENSITIVE: []
|
23
|
+
end
|
24
|
+
|
25
|
+
class ConflictException
|
26
|
+
attr_accessor code: ::String
|
27
|
+
attr_accessor message: ::String
|
28
|
+
SENSITIVE: []
|
29
|
+
end
|
30
|
+
|
31
|
+
class CreateDiscovererInput
|
32
|
+
attr_accessor description: ::String
|
33
|
+
attr_accessor source_arn: ::String
|
34
|
+
attr_accessor cross_account: bool
|
35
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
36
|
+
SENSITIVE: []
|
37
|
+
end
|
38
|
+
|
39
|
+
class CreateDiscovererRequest
|
40
|
+
attr_accessor description: ::String
|
41
|
+
attr_accessor source_arn: ::String
|
42
|
+
attr_accessor cross_account: bool
|
43
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
44
|
+
SENSITIVE: []
|
45
|
+
end
|
46
|
+
|
47
|
+
class CreateDiscovererResponse
|
48
|
+
attr_accessor description: ::String
|
49
|
+
attr_accessor discoverer_arn: ::String
|
50
|
+
attr_accessor discoverer_id: ::String
|
51
|
+
attr_accessor source_arn: ::String
|
52
|
+
attr_accessor state: ("STARTED" | "STOPPED")
|
53
|
+
attr_accessor cross_account: bool
|
54
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
55
|
+
SENSITIVE: []
|
56
|
+
end
|
57
|
+
|
58
|
+
class CreateRegistryInput
|
59
|
+
attr_accessor description: ::String
|
60
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
61
|
+
SENSITIVE: []
|
62
|
+
end
|
63
|
+
|
64
|
+
class CreateRegistryRequest
|
65
|
+
attr_accessor description: ::String
|
66
|
+
attr_accessor registry_name: ::String
|
67
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
68
|
+
SENSITIVE: []
|
69
|
+
end
|
70
|
+
|
71
|
+
class CreateRegistryResponse
|
72
|
+
attr_accessor description: ::String
|
73
|
+
attr_accessor registry_arn: ::String
|
74
|
+
attr_accessor registry_name: ::String
|
75
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
76
|
+
SENSITIVE: []
|
77
|
+
end
|
78
|
+
|
79
|
+
class CreateSchemaInput
|
80
|
+
attr_accessor content: ::String
|
81
|
+
attr_accessor description: ::String
|
82
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
83
|
+
attr_accessor type: ("OpenApi3")
|
84
|
+
SENSITIVE: []
|
85
|
+
end
|
86
|
+
|
87
|
+
class CreateSchemaRequest
|
88
|
+
attr_accessor content: ::String
|
89
|
+
attr_accessor description: ::String
|
90
|
+
attr_accessor registry_name: ::String
|
91
|
+
attr_accessor schema_name: ::String
|
92
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
93
|
+
attr_accessor type: ("OpenApi3")
|
94
|
+
SENSITIVE: []
|
95
|
+
end
|
96
|
+
|
97
|
+
class CreateSchemaResponse
|
98
|
+
attr_accessor description: ::String
|
99
|
+
attr_accessor last_modified: ::Time
|
100
|
+
attr_accessor schema_arn: ::String
|
101
|
+
attr_accessor schema_name: ::String
|
102
|
+
attr_accessor schema_version: ::String
|
103
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
104
|
+
attr_accessor type: ::String
|
105
|
+
attr_accessor version_created_date: ::Time
|
106
|
+
SENSITIVE: []
|
107
|
+
end
|
108
|
+
|
109
|
+
class DeleteDiscovererRequest
|
110
|
+
attr_accessor discoverer_id: ::String
|
111
|
+
SENSITIVE: []
|
112
|
+
end
|
113
|
+
|
114
|
+
class DeleteRegistryRequest
|
115
|
+
attr_accessor registry_name: ::String
|
116
|
+
SENSITIVE: []
|
117
|
+
end
|
118
|
+
|
119
|
+
class DeleteResourcePolicyRequest
|
120
|
+
attr_accessor registry_name: ::String
|
121
|
+
SENSITIVE: []
|
122
|
+
end
|
123
|
+
|
124
|
+
class DeleteSchemaRequest
|
125
|
+
attr_accessor registry_name: ::String
|
126
|
+
attr_accessor schema_name: ::String
|
127
|
+
SENSITIVE: []
|
128
|
+
end
|
129
|
+
|
130
|
+
class DeleteSchemaVersionRequest
|
131
|
+
attr_accessor registry_name: ::String
|
132
|
+
attr_accessor schema_name: ::String
|
133
|
+
attr_accessor schema_version: ::String
|
134
|
+
SENSITIVE: []
|
135
|
+
end
|
136
|
+
|
137
|
+
class DescribeCodeBindingRequest
|
138
|
+
attr_accessor language: ::String
|
139
|
+
attr_accessor registry_name: ::String
|
140
|
+
attr_accessor schema_name: ::String
|
141
|
+
attr_accessor schema_version: ::String
|
142
|
+
SENSITIVE: []
|
143
|
+
end
|
144
|
+
|
145
|
+
class DescribeCodeBindingResponse
|
146
|
+
attr_accessor creation_date: ::Time
|
147
|
+
attr_accessor last_modified: ::Time
|
148
|
+
attr_accessor schema_version: ::String
|
149
|
+
attr_accessor status: ("CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "CREATE_FAILED")
|
150
|
+
SENSITIVE: []
|
151
|
+
end
|
152
|
+
|
153
|
+
class DescribeDiscovererRequest
|
154
|
+
attr_accessor discoverer_id: ::String
|
155
|
+
SENSITIVE: []
|
156
|
+
end
|
157
|
+
|
158
|
+
class DescribeDiscovererResponse
|
159
|
+
attr_accessor description: ::String
|
160
|
+
attr_accessor discoverer_arn: ::String
|
161
|
+
attr_accessor discoverer_id: ::String
|
162
|
+
attr_accessor source_arn: ::String
|
163
|
+
attr_accessor state: ("STARTED" | "STOPPED")
|
164
|
+
attr_accessor cross_account: bool
|
165
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
166
|
+
SENSITIVE: []
|
167
|
+
end
|
168
|
+
|
169
|
+
class DescribeRegistryRequest
|
170
|
+
attr_accessor registry_name: ::String
|
171
|
+
SENSITIVE: []
|
172
|
+
end
|
173
|
+
|
174
|
+
class DescribeRegistryResponse
|
175
|
+
attr_accessor description: ::String
|
176
|
+
attr_accessor registry_arn: ::String
|
177
|
+
attr_accessor registry_name: ::String
|
178
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
179
|
+
SENSITIVE: []
|
180
|
+
end
|
181
|
+
|
182
|
+
class DescribeSchemaOutput
|
183
|
+
attr_accessor content: ::String
|
184
|
+
attr_accessor description: ::String
|
185
|
+
attr_accessor last_modified: ::Time
|
186
|
+
attr_accessor schema_arn: ::String
|
187
|
+
attr_accessor schema_name: ::String
|
188
|
+
attr_accessor schema_version: ::String
|
189
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
190
|
+
attr_accessor type: ::String
|
191
|
+
attr_accessor version_created_date: ::Time
|
192
|
+
SENSITIVE: []
|
193
|
+
end
|
194
|
+
|
195
|
+
class DescribeSchemaRequest
|
196
|
+
attr_accessor registry_name: ::String
|
197
|
+
attr_accessor schema_name: ::String
|
198
|
+
attr_accessor schema_version: ::String
|
199
|
+
SENSITIVE: []
|
200
|
+
end
|
201
|
+
|
202
|
+
class DescribeSchemaResponse
|
203
|
+
attr_accessor content: ::String
|
204
|
+
attr_accessor description: ::String
|
205
|
+
attr_accessor last_modified: ::Time
|
206
|
+
attr_accessor schema_arn: ::String
|
207
|
+
attr_accessor schema_name: ::String
|
208
|
+
attr_accessor schema_version: ::String
|
209
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
210
|
+
attr_accessor type: ::String
|
211
|
+
attr_accessor version_created_date: ::Time
|
212
|
+
SENSITIVE: []
|
213
|
+
end
|
214
|
+
|
215
|
+
class DiscovererOutput
|
216
|
+
attr_accessor description: ::String
|
217
|
+
attr_accessor discoverer_arn: ::String
|
218
|
+
attr_accessor discoverer_id: ::String
|
219
|
+
attr_accessor source_arn: ::String
|
220
|
+
attr_accessor state: ("STARTED" | "STOPPED")
|
221
|
+
attr_accessor cross_account: bool
|
222
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
223
|
+
SENSITIVE: []
|
224
|
+
end
|
225
|
+
|
226
|
+
class DiscovererStateOutput
|
227
|
+
attr_accessor discoverer_id: ::String
|
228
|
+
attr_accessor state: ("STARTED" | "STOPPED")
|
229
|
+
SENSITIVE: []
|
230
|
+
end
|
231
|
+
|
232
|
+
class DiscovererSummary
|
233
|
+
attr_accessor discoverer_arn: ::String
|
234
|
+
attr_accessor discoverer_id: ::String
|
235
|
+
attr_accessor source_arn: ::String
|
236
|
+
attr_accessor state: ("STARTED" | "STOPPED")
|
237
|
+
attr_accessor cross_account: bool
|
238
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
239
|
+
SENSITIVE: []
|
240
|
+
end
|
241
|
+
|
242
|
+
class ErrorOutput
|
243
|
+
attr_accessor code: ::String
|
244
|
+
attr_accessor message: ::String
|
245
|
+
SENSITIVE: []
|
246
|
+
end
|
247
|
+
|
248
|
+
class ForbiddenException
|
249
|
+
attr_accessor code: ::String
|
250
|
+
attr_accessor message: ::String
|
251
|
+
SENSITIVE: []
|
252
|
+
end
|
253
|
+
|
254
|
+
class GetCodeBindingSourceRequest
|
255
|
+
attr_accessor language: ::String
|
256
|
+
attr_accessor registry_name: ::String
|
257
|
+
attr_accessor schema_name: ::String
|
258
|
+
attr_accessor schema_version: ::String
|
259
|
+
SENSITIVE: []
|
260
|
+
end
|
261
|
+
|
262
|
+
class GetCodeBindingSourceResponse
|
263
|
+
attr_accessor body: ::IO
|
264
|
+
SENSITIVE: []
|
265
|
+
end
|
266
|
+
|
267
|
+
class GetDiscoveredSchemaInput
|
268
|
+
attr_accessor events: ::Array[::String]
|
269
|
+
attr_accessor type: ("OpenApi3")
|
270
|
+
SENSITIVE: []
|
271
|
+
end
|
272
|
+
|
273
|
+
class GetDiscoveredSchemaOutput
|
274
|
+
attr_accessor content: ::String
|
275
|
+
SENSITIVE: []
|
276
|
+
end
|
277
|
+
|
278
|
+
class GetDiscoveredSchemaRequest
|
279
|
+
attr_accessor events: ::Array[::String]
|
280
|
+
attr_accessor type: ("OpenApi3")
|
281
|
+
SENSITIVE: []
|
282
|
+
end
|
283
|
+
|
284
|
+
class GetDiscoveredSchemaResponse
|
285
|
+
attr_accessor content: ::String
|
286
|
+
SENSITIVE: []
|
287
|
+
end
|
288
|
+
|
289
|
+
class GetResourcePolicyOutput
|
290
|
+
attr_accessor policy: ::String
|
291
|
+
attr_accessor revision_id: ::String
|
292
|
+
SENSITIVE: []
|
293
|
+
end
|
294
|
+
|
295
|
+
class GetResourcePolicyRequest
|
296
|
+
attr_accessor registry_name: ::String
|
297
|
+
SENSITIVE: []
|
298
|
+
end
|
299
|
+
|
300
|
+
class GetResourcePolicyResponse
|
301
|
+
attr_accessor policy: ::String
|
302
|
+
attr_accessor revision_id: ::String
|
303
|
+
SENSITIVE: []
|
304
|
+
end
|
305
|
+
|
306
|
+
class GoneException
|
307
|
+
attr_accessor code: ::String
|
308
|
+
attr_accessor message: ::String
|
309
|
+
SENSITIVE: []
|
310
|
+
end
|
311
|
+
|
312
|
+
class InternalServerErrorException
|
313
|
+
attr_accessor code: ::String
|
314
|
+
attr_accessor message: ::String
|
315
|
+
SENSITIVE: []
|
316
|
+
end
|
317
|
+
|
318
|
+
class ListDiscoverersOutput
|
319
|
+
attr_accessor discoverers: ::Array[Types::DiscovererSummary]
|
320
|
+
attr_accessor next_token: ::String
|
321
|
+
SENSITIVE: []
|
322
|
+
end
|
323
|
+
|
324
|
+
class ListDiscoverersRequest
|
325
|
+
attr_accessor discoverer_id_prefix: ::String
|
326
|
+
attr_accessor limit: ::Integer
|
327
|
+
attr_accessor next_token: ::String
|
328
|
+
attr_accessor source_arn_prefix: ::String
|
329
|
+
SENSITIVE: []
|
330
|
+
end
|
331
|
+
|
332
|
+
class ListDiscoverersResponse
|
333
|
+
attr_accessor discoverers: ::Array[Types::DiscovererSummary]
|
334
|
+
attr_accessor next_token: ::String
|
335
|
+
SENSITIVE: []
|
336
|
+
end
|
337
|
+
|
338
|
+
class ListRegistriesOutput
|
339
|
+
attr_accessor next_token: ::String
|
340
|
+
attr_accessor registries: ::Array[Types::RegistrySummary]
|
341
|
+
SENSITIVE: []
|
342
|
+
end
|
343
|
+
|
344
|
+
class ListRegistriesRequest
|
345
|
+
attr_accessor limit: ::Integer
|
346
|
+
attr_accessor next_token: ::String
|
347
|
+
attr_accessor registry_name_prefix: ::String
|
348
|
+
attr_accessor scope: ::String
|
349
|
+
SENSITIVE: []
|
350
|
+
end
|
351
|
+
|
352
|
+
class ListRegistriesResponse
|
353
|
+
attr_accessor next_token: ::String
|
354
|
+
attr_accessor registries: ::Array[Types::RegistrySummary]
|
355
|
+
SENSITIVE: []
|
356
|
+
end
|
357
|
+
|
358
|
+
class ListSchemaVersionsOutput
|
359
|
+
attr_accessor next_token: ::String
|
360
|
+
attr_accessor schema_versions: ::Array[Types::SchemaVersionSummary]
|
361
|
+
SENSITIVE: []
|
362
|
+
end
|
363
|
+
|
364
|
+
class ListSchemaVersionsRequest
|
365
|
+
attr_accessor limit: ::Integer
|
366
|
+
attr_accessor next_token: ::String
|
367
|
+
attr_accessor registry_name: ::String
|
368
|
+
attr_accessor schema_name: ::String
|
369
|
+
SENSITIVE: []
|
370
|
+
end
|
371
|
+
|
372
|
+
class ListSchemaVersionsResponse
|
373
|
+
attr_accessor next_token: ::String
|
374
|
+
attr_accessor schema_versions: ::Array[Types::SchemaVersionSummary]
|
375
|
+
SENSITIVE: []
|
376
|
+
end
|
377
|
+
|
378
|
+
class ListSchemasOutput
|
379
|
+
attr_accessor next_token: ::String
|
380
|
+
attr_accessor schemas: ::Array[Types::SchemaSummary]
|
381
|
+
SENSITIVE: []
|
382
|
+
end
|
383
|
+
|
384
|
+
class ListSchemasRequest
|
385
|
+
attr_accessor limit: ::Integer
|
386
|
+
attr_accessor next_token: ::String
|
387
|
+
attr_accessor registry_name: ::String
|
388
|
+
attr_accessor schema_name_prefix: ::String
|
389
|
+
SENSITIVE: []
|
390
|
+
end
|
391
|
+
|
392
|
+
class ListSchemasResponse
|
393
|
+
attr_accessor next_token: ::String
|
394
|
+
attr_accessor schemas: ::Array[Types::SchemaSummary]
|
395
|
+
SENSITIVE: []
|
396
|
+
end
|
397
|
+
|
398
|
+
class ListTagsForResourceOutput
|
399
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
400
|
+
SENSITIVE: []
|
401
|
+
end
|
402
|
+
|
403
|
+
class ListTagsForResourceRequest
|
404
|
+
attr_accessor resource_arn: ::String
|
405
|
+
SENSITIVE: []
|
406
|
+
end
|
407
|
+
|
408
|
+
class ListTagsForResourceResponse
|
409
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
410
|
+
SENSITIVE: []
|
411
|
+
end
|
412
|
+
|
413
|
+
class NotFoundException
|
414
|
+
attr_accessor code: ::String
|
415
|
+
attr_accessor message: ::String
|
416
|
+
SENSITIVE: []
|
417
|
+
end
|
418
|
+
|
419
|
+
class PreconditionFailedException
|
420
|
+
attr_accessor code: ::String
|
421
|
+
attr_accessor message: ::String
|
422
|
+
SENSITIVE: []
|
423
|
+
end
|
424
|
+
|
425
|
+
class PutCodeBindingRequest
|
426
|
+
attr_accessor language: ::String
|
427
|
+
attr_accessor registry_name: ::String
|
428
|
+
attr_accessor schema_name: ::String
|
429
|
+
attr_accessor schema_version: ::String
|
430
|
+
SENSITIVE: []
|
431
|
+
end
|
432
|
+
|
433
|
+
class PutCodeBindingResponse
|
434
|
+
attr_accessor creation_date: ::Time
|
435
|
+
attr_accessor last_modified: ::Time
|
436
|
+
attr_accessor schema_version: ::String
|
437
|
+
attr_accessor status: ("CREATE_IN_PROGRESS" | "CREATE_COMPLETE" | "CREATE_FAILED")
|
438
|
+
SENSITIVE: []
|
439
|
+
end
|
440
|
+
|
441
|
+
class PutResourcePolicyInput
|
442
|
+
attr_accessor policy: ::String
|
443
|
+
attr_accessor revision_id: ::String
|
444
|
+
SENSITIVE: []
|
445
|
+
end
|
446
|
+
|
447
|
+
class PutResourcePolicyOutput
|
448
|
+
attr_accessor policy: ::String
|
449
|
+
attr_accessor revision_id: ::String
|
450
|
+
SENSITIVE: []
|
451
|
+
end
|
452
|
+
|
453
|
+
class PutResourcePolicyRequest
|
454
|
+
attr_accessor policy: ::String
|
455
|
+
attr_accessor registry_name: ::String
|
456
|
+
attr_accessor revision_id: ::String
|
457
|
+
SENSITIVE: []
|
458
|
+
end
|
459
|
+
|
460
|
+
class PutResourcePolicyResponse
|
461
|
+
attr_accessor policy: ::String
|
462
|
+
attr_accessor revision_id: ::String
|
463
|
+
SENSITIVE: []
|
464
|
+
end
|
465
|
+
|
466
|
+
class RegistryOutput
|
467
|
+
attr_accessor description: ::String
|
468
|
+
attr_accessor registry_arn: ::String
|
469
|
+
attr_accessor registry_name: ::String
|
470
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
471
|
+
SENSITIVE: []
|
472
|
+
end
|
473
|
+
|
474
|
+
class RegistrySummary
|
475
|
+
attr_accessor registry_arn: ::String
|
476
|
+
attr_accessor registry_name: ::String
|
477
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
478
|
+
SENSITIVE: []
|
479
|
+
end
|
480
|
+
|
481
|
+
class SchemaOutput
|
482
|
+
attr_accessor description: ::String
|
483
|
+
attr_accessor last_modified: ::Time
|
484
|
+
attr_accessor schema_arn: ::String
|
485
|
+
attr_accessor schema_name: ::String
|
486
|
+
attr_accessor schema_version: ::String
|
487
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
488
|
+
attr_accessor type: ::String
|
489
|
+
attr_accessor version_created_date: ::Time
|
490
|
+
SENSITIVE: []
|
491
|
+
end
|
492
|
+
|
493
|
+
class SchemaSummary
|
494
|
+
attr_accessor last_modified: ::Time
|
495
|
+
attr_accessor schema_arn: ::String
|
496
|
+
attr_accessor schema_name: ::String
|
497
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
498
|
+
attr_accessor version_count: ::Integer
|
499
|
+
SENSITIVE: []
|
500
|
+
end
|
501
|
+
|
502
|
+
class SchemaVersionSummary
|
503
|
+
attr_accessor schema_arn: ::String
|
504
|
+
attr_accessor schema_name: ::String
|
505
|
+
attr_accessor schema_version: ::String
|
506
|
+
attr_accessor type: ::String
|
507
|
+
SENSITIVE: []
|
508
|
+
end
|
509
|
+
|
510
|
+
class SearchSchemaSummary
|
511
|
+
attr_accessor registry_name: ::String
|
512
|
+
attr_accessor schema_arn: ::String
|
513
|
+
attr_accessor schema_name: ::String
|
514
|
+
attr_accessor schema_versions: ::Array[Types::SearchSchemaVersionSummary]
|
515
|
+
SENSITIVE: []
|
516
|
+
end
|
517
|
+
|
518
|
+
class SearchSchemaVersionSummary
|
519
|
+
attr_accessor created_date: ::Time
|
520
|
+
attr_accessor schema_version: ::String
|
521
|
+
attr_accessor type: ::String
|
522
|
+
SENSITIVE: []
|
523
|
+
end
|
524
|
+
|
525
|
+
class SearchSchemasOutput
|
526
|
+
attr_accessor next_token: ::String
|
527
|
+
attr_accessor schemas: ::Array[Types::SearchSchemaSummary]
|
528
|
+
SENSITIVE: []
|
529
|
+
end
|
530
|
+
|
531
|
+
class SearchSchemasRequest
|
532
|
+
attr_accessor keywords: ::String
|
533
|
+
attr_accessor limit: ::Integer
|
534
|
+
attr_accessor next_token: ::String
|
535
|
+
attr_accessor registry_name: ::String
|
536
|
+
SENSITIVE: []
|
537
|
+
end
|
538
|
+
|
539
|
+
class SearchSchemasResponse
|
540
|
+
attr_accessor next_token: ::String
|
541
|
+
attr_accessor schemas: ::Array[Types::SearchSchemaSummary]
|
542
|
+
SENSITIVE: []
|
543
|
+
end
|
544
|
+
|
545
|
+
class ServiceUnavailableException
|
546
|
+
attr_accessor code: ::String
|
547
|
+
attr_accessor message: ::String
|
548
|
+
SENSITIVE: []
|
549
|
+
end
|
550
|
+
|
551
|
+
class StartDiscovererRequest
|
552
|
+
attr_accessor discoverer_id: ::String
|
553
|
+
SENSITIVE: []
|
554
|
+
end
|
555
|
+
|
556
|
+
class StartDiscovererResponse
|
557
|
+
attr_accessor discoverer_id: ::String
|
558
|
+
attr_accessor state: ("STARTED" | "STOPPED")
|
559
|
+
SENSITIVE: []
|
560
|
+
end
|
561
|
+
|
562
|
+
class StopDiscovererRequest
|
563
|
+
attr_accessor discoverer_id: ::String
|
564
|
+
SENSITIVE: []
|
565
|
+
end
|
566
|
+
|
567
|
+
class StopDiscovererResponse
|
568
|
+
attr_accessor discoverer_id: ::String
|
569
|
+
attr_accessor state: ("STARTED" | "STOPPED")
|
570
|
+
SENSITIVE: []
|
571
|
+
end
|
572
|
+
|
573
|
+
class TagResourceInput
|
574
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
575
|
+
SENSITIVE: []
|
576
|
+
end
|
577
|
+
|
578
|
+
class TagResourceRequest
|
579
|
+
attr_accessor resource_arn: ::String
|
580
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
581
|
+
SENSITIVE: []
|
582
|
+
end
|
583
|
+
|
584
|
+
class TooManyRequestsException
|
585
|
+
attr_accessor code: ::String
|
586
|
+
attr_accessor message: ::String
|
587
|
+
SENSITIVE: []
|
588
|
+
end
|
589
|
+
|
590
|
+
class UnauthorizedException
|
591
|
+
attr_accessor code: ::String
|
592
|
+
attr_accessor message: ::String
|
593
|
+
SENSITIVE: []
|
594
|
+
end
|
595
|
+
|
596
|
+
class UntagResourceRequest
|
597
|
+
attr_accessor resource_arn: ::String
|
598
|
+
attr_accessor tag_keys: ::Array[::String]
|
599
|
+
SENSITIVE: []
|
600
|
+
end
|
601
|
+
|
602
|
+
class UpdateDiscovererInput
|
603
|
+
attr_accessor description: ::String
|
604
|
+
attr_accessor cross_account: bool
|
605
|
+
SENSITIVE: []
|
606
|
+
end
|
607
|
+
|
608
|
+
class UpdateDiscovererRequest
|
609
|
+
attr_accessor description: ::String
|
610
|
+
attr_accessor discoverer_id: ::String
|
611
|
+
attr_accessor cross_account: bool
|
612
|
+
SENSITIVE: []
|
613
|
+
end
|
614
|
+
|
615
|
+
class UpdateDiscovererResponse
|
616
|
+
attr_accessor description: ::String
|
617
|
+
attr_accessor discoverer_arn: ::String
|
618
|
+
attr_accessor discoverer_id: ::String
|
619
|
+
attr_accessor source_arn: ::String
|
620
|
+
attr_accessor state: ("STARTED" | "STOPPED")
|
621
|
+
attr_accessor cross_account: bool
|
622
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
623
|
+
SENSITIVE: []
|
624
|
+
end
|
625
|
+
|
626
|
+
class UpdateRegistryInput
|
627
|
+
attr_accessor description: ::String
|
628
|
+
SENSITIVE: []
|
629
|
+
end
|
630
|
+
|
631
|
+
class UpdateRegistryRequest
|
632
|
+
attr_accessor description: ::String
|
633
|
+
attr_accessor registry_name: ::String
|
634
|
+
SENSITIVE: []
|
635
|
+
end
|
636
|
+
|
637
|
+
class UpdateRegistryResponse
|
638
|
+
attr_accessor description: ::String
|
639
|
+
attr_accessor registry_arn: ::String
|
640
|
+
attr_accessor registry_name: ::String
|
641
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
642
|
+
SENSITIVE: []
|
643
|
+
end
|
644
|
+
|
645
|
+
class UpdateSchemaInput
|
646
|
+
attr_accessor client_token_id: ::String
|
647
|
+
attr_accessor content: ::String
|
648
|
+
attr_accessor description: ::String
|
649
|
+
attr_accessor type: ("OpenApi3")
|
650
|
+
SENSITIVE: []
|
651
|
+
end
|
652
|
+
|
653
|
+
class UpdateSchemaRequest
|
654
|
+
attr_accessor client_token_id: ::String
|
655
|
+
attr_accessor content: ::String
|
656
|
+
attr_accessor description: ::String
|
657
|
+
attr_accessor registry_name: ::String
|
658
|
+
attr_accessor schema_name: ::String
|
659
|
+
attr_accessor type: ("OpenApi3")
|
660
|
+
SENSITIVE: []
|
661
|
+
end
|
662
|
+
|
663
|
+
class UpdateSchemaResponse
|
664
|
+
attr_accessor description: ::String
|
665
|
+
attr_accessor last_modified: ::Time
|
666
|
+
attr_accessor schema_arn: ::String
|
667
|
+
attr_accessor schema_name: ::String
|
668
|
+
attr_accessor schema_version: ::String
|
669
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
670
|
+
attr_accessor type: ::String
|
671
|
+
attr_accessor version_created_date: ::Time
|
672
|
+
SENSITIVE: []
|
673
|
+
end
|
674
|
+
|
675
|
+
class ExportSchemaOutput
|
676
|
+
attr_accessor content: ::String
|
677
|
+
attr_accessor schema_arn: ::String
|
678
|
+
attr_accessor schema_name: ::String
|
679
|
+
attr_accessor schema_version: ::String
|
680
|
+
attr_accessor type: ::String
|
681
|
+
SENSITIVE: []
|
682
|
+
end
|
683
|
+
|
684
|
+
class ExportSchemaRequest
|
685
|
+
attr_accessor registry_name: ::String
|
686
|
+
attr_accessor schema_name: ::String
|
687
|
+
attr_accessor schema_version: ::String
|
688
|
+
attr_accessor type: ::String
|
689
|
+
SENSITIVE: []
|
690
|
+
end
|
691
|
+
|
692
|
+
class ExportSchemaResponse
|
693
|
+
attr_accessor content: ::String
|
694
|
+
attr_accessor schema_arn: ::String
|
695
|
+
attr_accessor schema_name: ::String
|
696
|
+
attr_accessor schema_version: ::String
|
697
|
+
attr_accessor type: ::String
|
698
|
+
SENSITIVE: []
|
699
|
+
end
|
700
|
+
end
|
701
|
+
end
|
data/sig/waiters.rbs
ADDED
@@ -0,0 +1,26 @@
|
|
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 Schemas
|
10
|
+
module Waiters
|
11
|
+
|
12
|
+
class CodeBindingExists
|
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
|
+
language: ::String,
|
18
|
+
registry_name: ::String,
|
19
|
+
schema_name: ::String,
|
20
|
+
?schema_version: ::String
|
21
|
+
) -> Client::_DescribeCodeBindingResponseSuccess
|
22
|
+
| (Hash[Symbol, untyped]) -> Client::_DescribeCodeBindingResponseSuccess
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
end
|