aws-sdk-schemas 1.5.1 → 1.10.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/lib/aws-sdk-schemas.rb +5 -2
- data/lib/aws-sdk-schemas/client.rb +71 -8
- data/lib/aws-sdk-schemas/client_api.rb +42 -0
- data/lib/aws-sdk-schemas/errors.rb +2 -0
- data/lib/aws-sdk-schemas/resource.rb +2 -0
- data/lib/aws-sdk-schemas/types.rb +204 -2
- data/lib/aws-sdk-schemas/waiters.rb +2 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5c617216095119910cc76a191f60bf608f5f5d1dca670b9c06d576e5cbd97fbf
|
4
|
+
data.tar.gz: b5494f618add17a08d56f6baebaeda7b1fbaf9c24bdd76fc06c0ff9de2b88381
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 8f71e5f17146b48e346dca1234b364bc636c5ee2adf8d10bf9a231bc06ee2e4cb6e9c9129fdd5b01341a065a35beb3beeb73c7b953cecd76ed9d7fc9f2f3a39f
|
7
|
+
data.tar.gz: cc0410b451c450be35cd0e7e6c327a4c6e1a61797a32c0c101be1d2dbec6443ad31f9082b98c62c78a84ee6c2629b91679ecec32db1d8f09f58b4d7d051fb269
|
data/lib/aws-sdk-schemas.rb
CHANGED
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -5,6 +7,7 @@
|
|
5
7
|
#
|
6
8
|
# WARNING ABOUT GENERATED CODE
|
7
9
|
|
10
|
+
|
8
11
|
require 'aws-sdk-core'
|
9
12
|
require 'aws-sigv4'
|
10
13
|
|
@@ -43,9 +46,9 @@ require_relative 'aws-sdk-schemas/customizations'
|
|
43
46
|
#
|
44
47
|
# See {Errors} for more information.
|
45
48
|
#
|
46
|
-
#
|
49
|
+
# @!group service
|
47
50
|
module Aws::Schemas
|
48
51
|
|
49
|
-
GEM_VERSION = '1.
|
52
|
+
GEM_VERSION = '1.10.0'
|
50
53
|
|
51
54
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -83,13 +85,28 @@ module Aws::Schemas
|
|
83
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
84
86
|
# credentials.
|
85
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
86
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
87
103
|
# from an EC2 IMDS on an EC2 instance.
|
88
104
|
#
|
89
|
-
# * `Aws::
|
90
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
91
107
|
#
|
92
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
93
110
|
#
|
94
111
|
# When `:credentials` are not configured directly, the following
|
95
112
|
# locations will be searched for credentials:
|
@@ -99,10 +116,10 @@ module Aws::Schemas
|
|
99
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
100
117
|
# * `~/.aws/credentials`
|
101
118
|
# * `~/.aws/config`
|
102
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
103
|
-
# very aggressive. Construct and pass an instance of
|
104
|
-
# `Aws::InstanceProfileCredentails`
|
105
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
106
123
|
#
|
107
124
|
# @option options [required, String] :region
|
108
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -965,6 +982,7 @@ module Aws::Schemas
|
|
965
982
|
# resp.schema_versions[0].schema_arn #=> String
|
966
983
|
# resp.schema_versions[0].schema_name #=> String
|
967
984
|
# resp.schema_versions[0].schema_version #=> String
|
985
|
+
# resp.schema_versions[0].type #=> String
|
968
986
|
#
|
969
987
|
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ListSchemaVersions AWS API Documentation
|
970
988
|
#
|
@@ -1165,6 +1183,7 @@ module Aws::Schemas
|
|
1165
1183
|
# resp.schemas[0].schema_versions #=> Array
|
1166
1184
|
# resp.schemas[0].schema_versions[0].created_date #=> Time
|
1167
1185
|
# resp.schemas[0].schema_versions[0].schema_version #=> String
|
1186
|
+
# resp.schemas[0].schema_versions[0].type #=> String
|
1168
1187
|
#
|
1169
1188
|
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/SearchSchemas AWS API Documentation
|
1170
1189
|
#
|
@@ -1425,6 +1444,50 @@ module Aws::Schemas
|
|
1425
1444
|
req.send_request(options)
|
1426
1445
|
end
|
1427
1446
|
|
1447
|
+
# Exports a schema to a different specification.
|
1448
|
+
#
|
1449
|
+
# @option params [required, String] :registry_name
|
1450
|
+
#
|
1451
|
+
# @option params [required, String] :schema_name
|
1452
|
+
#
|
1453
|
+
# @option params [String] :schema_version
|
1454
|
+
#
|
1455
|
+
# @option params [required, String] :type
|
1456
|
+
#
|
1457
|
+
# @return [Types::ExportSchemaResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1458
|
+
#
|
1459
|
+
# * {Types::ExportSchemaResponse#content #content} => String
|
1460
|
+
# * {Types::ExportSchemaResponse#schema_arn #schema_arn} => String
|
1461
|
+
# * {Types::ExportSchemaResponse#schema_name #schema_name} => String
|
1462
|
+
# * {Types::ExportSchemaResponse#schema_version #schema_version} => String
|
1463
|
+
# * {Types::ExportSchemaResponse#type #type} => String
|
1464
|
+
#
|
1465
|
+
# @example Request syntax with placeholder values
|
1466
|
+
#
|
1467
|
+
# resp = client.export_schema({
|
1468
|
+
# registry_name: "__string", # required
|
1469
|
+
# schema_name: "__string", # required
|
1470
|
+
# schema_version: "__string",
|
1471
|
+
# type: "__string", # required
|
1472
|
+
# })
|
1473
|
+
#
|
1474
|
+
# @example Response structure
|
1475
|
+
#
|
1476
|
+
# resp.content #=> String
|
1477
|
+
# resp.schema_arn #=> String
|
1478
|
+
# resp.schema_name #=> String
|
1479
|
+
# resp.schema_version #=> String
|
1480
|
+
# resp.type #=> String
|
1481
|
+
#
|
1482
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ExportSchema AWS API Documentation
|
1483
|
+
#
|
1484
|
+
# @overload export_schema(params = {})
|
1485
|
+
# @param [Hash] params ({})
|
1486
|
+
def export_schema(params = {}, options = {})
|
1487
|
+
req = build_request(:export_schema, params)
|
1488
|
+
req.send_request(options)
|
1489
|
+
end
|
1490
|
+
|
1428
1491
|
# @!endgroup
|
1429
1492
|
|
1430
1493
|
# @param params ({})
|
@@ -1438,7 +1501,7 @@ module Aws::Schemas
|
|
1438
1501
|
params: params,
|
1439
1502
|
config: config)
|
1440
1503
|
context[:gem_name] = 'aws-sdk-schemas'
|
1441
|
-
context[:gem_version] = '1.
|
1504
|
+
context[:gem_version] = '1.10.0'
|
1442
1505
|
Seahorse::Client::Request.new(handlers, context)
|
1443
1506
|
end
|
1444
1507
|
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -44,6 +46,9 @@ module Aws::Schemas
|
|
44
46
|
DiscovererStateOutput = Shapes::StructureShape.new(name: 'DiscovererStateOutput')
|
45
47
|
DiscovererSummary = Shapes::StructureShape.new(name: 'DiscovererSummary')
|
46
48
|
ErrorOutput = Shapes::StructureShape.new(name: 'ErrorOutput')
|
49
|
+
ExportSchemaOutput = Shapes::StructureShape.new(name: 'ExportSchemaOutput')
|
50
|
+
ExportSchemaRequest = Shapes::StructureShape.new(name: 'ExportSchemaRequest')
|
51
|
+
ExportSchemaResponse = Shapes::StructureShape.new(name: 'ExportSchemaResponse')
|
47
52
|
ForbiddenException = Shapes::StructureShape.new(name: 'ForbiddenException')
|
48
53
|
GetCodeBindingSourceOutput = Shapes::StringShape.new(name: 'GetCodeBindingSourceOutput')
|
49
54
|
GetCodeBindingSourceRequest = Shapes::StructureShape.new(name: 'GetCodeBindingSourceRequest')
|
@@ -313,6 +318,26 @@ module Aws::Schemas
|
|
313
318
|
ErrorOutput.add_member(:message, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "Message"))
|
314
319
|
ErrorOutput.struct_class = Types::ErrorOutput
|
315
320
|
|
321
|
+
ExportSchemaOutput.add_member(:content, Shapes::ShapeRef.new(shape: __string, location_name: "Content"))
|
322
|
+
ExportSchemaOutput.add_member(:schema_arn, Shapes::ShapeRef.new(shape: __string, location_name: "SchemaArn"))
|
323
|
+
ExportSchemaOutput.add_member(:schema_name, Shapes::ShapeRef.new(shape: __string, location_name: "SchemaName"))
|
324
|
+
ExportSchemaOutput.add_member(:schema_version, Shapes::ShapeRef.new(shape: __string, location_name: "SchemaVersion"))
|
325
|
+
ExportSchemaOutput.add_member(:type, Shapes::ShapeRef.new(shape: __string, location_name: "Type"))
|
326
|
+
ExportSchemaOutput.struct_class = Types::ExportSchemaOutput
|
327
|
+
|
328
|
+
ExportSchemaRequest.add_member(:registry_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "registryName"))
|
329
|
+
ExportSchemaRequest.add_member(:schema_name, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "schemaName"))
|
330
|
+
ExportSchemaRequest.add_member(:schema_version, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "schemaVersion"))
|
331
|
+
ExportSchemaRequest.add_member(:type, Shapes::ShapeRef.new(shape: __string, required: true, location: "querystring", location_name: "type"))
|
332
|
+
ExportSchemaRequest.struct_class = Types::ExportSchemaRequest
|
333
|
+
|
334
|
+
ExportSchemaResponse.add_member(:content, Shapes::ShapeRef.new(shape: __string, location_name: "Content"))
|
335
|
+
ExportSchemaResponse.add_member(:schema_arn, Shapes::ShapeRef.new(shape: __string, location_name: "SchemaArn"))
|
336
|
+
ExportSchemaResponse.add_member(:schema_name, Shapes::ShapeRef.new(shape: __string, location_name: "SchemaName"))
|
337
|
+
ExportSchemaResponse.add_member(:schema_version, Shapes::ShapeRef.new(shape: __string, location_name: "SchemaVersion"))
|
338
|
+
ExportSchemaResponse.add_member(:type, Shapes::ShapeRef.new(shape: __string, location_name: "Type"))
|
339
|
+
ExportSchemaResponse.struct_class = Types::ExportSchemaResponse
|
340
|
+
|
316
341
|
ForbiddenException.add_member(:code, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "Code"))
|
317
342
|
ForbiddenException.add_member(:message, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "Message"))
|
318
343
|
ForbiddenException.struct_class = Types::ForbiddenException
|
@@ -512,6 +537,7 @@ module Aws::Schemas
|
|
512
537
|
SchemaVersionSummary.add_member(:schema_arn, Shapes::ShapeRef.new(shape: __string, location_name: "SchemaArn"))
|
513
538
|
SchemaVersionSummary.add_member(:schema_name, Shapes::ShapeRef.new(shape: __string, location_name: "SchemaName"))
|
514
539
|
SchemaVersionSummary.add_member(:schema_version, Shapes::ShapeRef.new(shape: __string, location_name: "SchemaVersion"))
|
540
|
+
SchemaVersionSummary.add_member(:type, Shapes::ShapeRef.new(shape: __string, location_name: "Type"))
|
515
541
|
SchemaVersionSummary.struct_class = Types::SchemaVersionSummary
|
516
542
|
|
517
543
|
SearchSchemaSummary.add_member(:registry_name, Shapes::ShapeRef.new(shape: __string, location_name: "RegistryName"))
|
@@ -522,6 +548,7 @@ module Aws::Schemas
|
|
522
548
|
|
523
549
|
SearchSchemaVersionSummary.add_member(:created_date, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "CreatedDate"))
|
524
550
|
SearchSchemaVersionSummary.add_member(:schema_version, Shapes::ShapeRef.new(shape: __string, location_name: "SchemaVersion"))
|
551
|
+
SearchSchemaVersionSummary.add_member(:type, Shapes::ShapeRef.new(shape: __string, location_name: "Type"))
|
525
552
|
SearchSchemaVersionSummary.struct_class = Types::SearchSchemaVersionSummary
|
526
553
|
|
527
554
|
SearchSchemasOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "NextToken"))
|
@@ -1109,6 +1136,21 @@ module Aws::Schemas
|
|
1109
1136
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1110
1137
|
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
1111
1138
|
end)
|
1139
|
+
|
1140
|
+
api.add_operation(:export_schema, Seahorse::Model::Operation.new.tap do |o|
|
1141
|
+
o.name = "ExportSchema"
|
1142
|
+
o.http_method = "GET"
|
1143
|
+
o.http_request_uri = "/v1/registries/name/{registryName}/schemas/name/{schemaName}/export"
|
1144
|
+
o.input = Shapes::ShapeRef.new(shape: ExportSchemaRequest)
|
1145
|
+
o.output = Shapes::ShapeRef.new(shape: ExportSchemaResponse)
|
1146
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
1147
|
+
o.errors << Shapes::ShapeRef.new(shape: UnauthorizedException)
|
1148
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
1149
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
1150
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
1151
|
+
o.errors << Shapes::ShapeRef.new(shape: ServiceUnavailableException)
|
1152
|
+
o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
|
1153
|
+
end)
|
1112
1154
|
end
|
1113
1155
|
|
1114
1156
|
end
|
@@ -1,3 +1,5 @@
|
|
1
|
+
# frozen_string_literal: true
|
2
|
+
|
1
3
|
# WARNING ABOUT GENERATED CODE
|
2
4
|
#
|
3
5
|
# This file is generated. See the contributing guide for more information:
|
@@ -19,6 +21,7 @@ module Aws::Schemas
|
|
19
21
|
class BadRequestException < Struct.new(
|
20
22
|
:code,
|
21
23
|
:message)
|
24
|
+
SENSITIVE = []
|
22
25
|
include Aws::Structure
|
23
26
|
end
|
24
27
|
|
@@ -45,6 +48,7 @@ module Aws::Schemas
|
|
45
48
|
:last_modified,
|
46
49
|
:schema_version,
|
47
50
|
:status)
|
51
|
+
SENSITIVE = []
|
48
52
|
include Aws::Structure
|
49
53
|
end
|
50
54
|
|
@@ -59,6 +63,7 @@ module Aws::Schemas
|
|
59
63
|
class ConflictException < Struct.new(
|
60
64
|
:code,
|
61
65
|
:message)
|
66
|
+
SENSITIVE = []
|
62
67
|
include Aws::Structure
|
63
68
|
end
|
64
69
|
|
@@ -80,6 +85,7 @@ module Aws::Schemas
|
|
80
85
|
:description,
|
81
86
|
:source_arn,
|
82
87
|
:tags)
|
88
|
+
SENSITIVE = []
|
83
89
|
include Aws::Structure
|
84
90
|
end
|
85
91
|
|
@@ -110,6 +116,7 @@ module Aws::Schemas
|
|
110
116
|
:description,
|
111
117
|
:source_arn,
|
112
118
|
:tags)
|
119
|
+
SENSITIVE = []
|
113
120
|
include Aws::Structure
|
114
121
|
end
|
115
122
|
|
@@ -141,6 +148,7 @@ module Aws::Schemas
|
|
141
148
|
:source_arn,
|
142
149
|
:state,
|
143
150
|
:tags)
|
151
|
+
SENSITIVE = []
|
144
152
|
include Aws::Structure
|
145
153
|
end
|
146
154
|
|
@@ -157,6 +165,7 @@ module Aws::Schemas
|
|
157
165
|
class CreateRegistryInput < Struct.new(
|
158
166
|
:description,
|
159
167
|
:tags)
|
168
|
+
SENSITIVE = []
|
160
169
|
include Aws::Structure
|
161
170
|
end
|
162
171
|
|
@@ -187,6 +196,7 @@ module Aws::Schemas
|
|
187
196
|
:description,
|
188
197
|
:registry_name,
|
189
198
|
:tags)
|
199
|
+
SENSITIVE = []
|
190
200
|
include Aws::Structure
|
191
201
|
end
|
192
202
|
|
@@ -210,6 +220,7 @@ module Aws::Schemas
|
|
210
220
|
:registry_arn,
|
211
221
|
:registry_name,
|
212
222
|
:tags)
|
223
|
+
SENSITIVE = []
|
213
224
|
include Aws::Structure
|
214
225
|
end
|
215
226
|
|
@@ -236,6 +247,7 @@ module Aws::Schemas
|
|
236
247
|
:description,
|
237
248
|
:tags,
|
238
249
|
:type)
|
250
|
+
SENSITIVE = []
|
239
251
|
include Aws::Structure
|
240
252
|
end
|
241
253
|
|
@@ -281,6 +293,7 @@ module Aws::Schemas
|
|
281
293
|
:schema_name,
|
282
294
|
:tags,
|
283
295
|
:type)
|
296
|
+
SENSITIVE = []
|
284
297
|
include Aws::Structure
|
285
298
|
end
|
286
299
|
|
@@ -320,6 +333,7 @@ module Aws::Schemas
|
|
320
333
|
:tags,
|
321
334
|
:type,
|
322
335
|
:version_created_date)
|
336
|
+
SENSITIVE = []
|
323
337
|
include Aws::Structure
|
324
338
|
end
|
325
339
|
|
@@ -337,6 +351,7 @@ module Aws::Schemas
|
|
337
351
|
#
|
338
352
|
class DeleteDiscovererRequest < Struct.new(
|
339
353
|
:discoverer_id)
|
354
|
+
SENSITIVE = []
|
340
355
|
include Aws::Structure
|
341
356
|
end
|
342
357
|
|
@@ -354,6 +369,7 @@ module Aws::Schemas
|
|
354
369
|
#
|
355
370
|
class DeleteRegistryRequest < Struct.new(
|
356
371
|
:registry_name)
|
372
|
+
SENSITIVE = []
|
357
373
|
include Aws::Structure
|
358
374
|
end
|
359
375
|
|
@@ -371,6 +387,7 @@ module Aws::Schemas
|
|
371
387
|
#
|
372
388
|
class DeleteResourcePolicyRequest < Struct.new(
|
373
389
|
:registry_name)
|
390
|
+
SENSITIVE = []
|
374
391
|
include Aws::Structure
|
375
392
|
end
|
376
393
|
|
@@ -393,6 +410,7 @@ module Aws::Schemas
|
|
393
410
|
class DeleteSchemaRequest < Struct.new(
|
394
411
|
:registry_name,
|
395
412
|
:schema_name)
|
413
|
+
SENSITIVE = []
|
396
414
|
include Aws::Structure
|
397
415
|
end
|
398
416
|
|
@@ -420,6 +438,7 @@ module Aws::Schemas
|
|
420
438
|
:registry_name,
|
421
439
|
:schema_name,
|
422
440
|
:schema_version)
|
441
|
+
SENSITIVE = []
|
423
442
|
include Aws::Structure
|
424
443
|
end
|
425
444
|
|
@@ -452,6 +471,7 @@ module Aws::Schemas
|
|
452
471
|
:registry_name,
|
453
472
|
:schema_name,
|
454
473
|
:schema_version)
|
474
|
+
SENSITIVE = []
|
455
475
|
include Aws::Structure
|
456
476
|
end
|
457
477
|
|
@@ -474,6 +494,7 @@ module Aws::Schemas
|
|
474
494
|
:last_modified,
|
475
495
|
:schema_version,
|
476
496
|
:status)
|
497
|
+
SENSITIVE = []
|
477
498
|
include Aws::Structure
|
478
499
|
end
|
479
500
|
|
@@ -491,6 +512,7 @@ module Aws::Schemas
|
|
491
512
|
#
|
492
513
|
class DescribeDiscovererRequest < Struct.new(
|
493
514
|
:discoverer_id)
|
515
|
+
SENSITIVE = []
|
494
516
|
include Aws::Structure
|
495
517
|
end
|
496
518
|
|
@@ -522,6 +544,7 @@ module Aws::Schemas
|
|
522
544
|
:source_arn,
|
523
545
|
:state,
|
524
546
|
:tags)
|
547
|
+
SENSITIVE = []
|
525
548
|
include Aws::Structure
|
526
549
|
end
|
527
550
|
|
@@ -539,6 +562,7 @@ module Aws::Schemas
|
|
539
562
|
#
|
540
563
|
class DescribeRegistryRequest < Struct.new(
|
541
564
|
:registry_name)
|
565
|
+
SENSITIVE = []
|
542
566
|
include Aws::Structure
|
543
567
|
end
|
544
568
|
|
@@ -562,6 +586,7 @@ module Aws::Schemas
|
|
562
586
|
:registry_arn,
|
563
587
|
:registry_name,
|
564
588
|
:tags)
|
589
|
+
SENSITIVE = []
|
565
590
|
include Aws::Structure
|
566
591
|
end
|
567
592
|
|
@@ -613,6 +638,7 @@ module Aws::Schemas
|
|
613
638
|
:tags,
|
614
639
|
:type,
|
615
640
|
:version_created_date)
|
641
|
+
SENSITIVE = []
|
616
642
|
include Aws::Structure
|
617
643
|
end
|
618
644
|
|
@@ -640,6 +666,7 @@ module Aws::Schemas
|
|
640
666
|
:registry_name,
|
641
667
|
:schema_name,
|
642
668
|
:schema_version)
|
669
|
+
SENSITIVE = []
|
643
670
|
include Aws::Structure
|
644
671
|
end
|
645
672
|
|
@@ -683,6 +710,7 @@ module Aws::Schemas
|
|
683
710
|
:tags,
|
684
711
|
:type,
|
685
712
|
:version_created_date)
|
713
|
+
SENSITIVE = []
|
686
714
|
include Aws::Structure
|
687
715
|
end
|
688
716
|
|
@@ -719,6 +747,7 @@ module Aws::Schemas
|
|
719
747
|
:source_arn,
|
720
748
|
:state,
|
721
749
|
:tags)
|
750
|
+
SENSITIVE = []
|
722
751
|
include Aws::Structure
|
723
752
|
end
|
724
753
|
|
@@ -735,6 +764,7 @@ module Aws::Schemas
|
|
735
764
|
class DiscovererStateOutput < Struct.new(
|
736
765
|
:discoverer_id,
|
737
766
|
:state)
|
767
|
+
SENSITIVE = []
|
738
768
|
include Aws::Structure
|
739
769
|
end
|
740
770
|
|
@@ -766,6 +796,7 @@ module Aws::Schemas
|
|
766
796
|
:source_arn,
|
767
797
|
:state,
|
768
798
|
:tags)
|
799
|
+
SENSITIVE = []
|
769
800
|
include Aws::Structure
|
770
801
|
end
|
771
802
|
|
@@ -782,6 +813,7 @@ module Aws::Schemas
|
|
782
813
|
class ErrorOutput < Struct.new(
|
783
814
|
:code,
|
784
815
|
:message)
|
816
|
+
SENSITIVE = []
|
785
817
|
include Aws::Structure
|
786
818
|
end
|
787
819
|
|
@@ -796,6 +828,7 @@ module Aws::Schemas
|
|
796
828
|
class ForbiddenException < Struct.new(
|
797
829
|
:code,
|
798
830
|
:message)
|
831
|
+
SENSITIVE = []
|
799
832
|
include Aws::Structure
|
800
833
|
end
|
801
834
|
|
@@ -828,6 +861,7 @@ module Aws::Schemas
|
|
828
861
|
:registry_name,
|
829
862
|
:schema_name,
|
830
863
|
:schema_version)
|
864
|
+
SENSITIVE = []
|
831
865
|
include Aws::Structure
|
832
866
|
end
|
833
867
|
|
@@ -838,6 +872,7 @@ module Aws::Schemas
|
|
838
872
|
#
|
839
873
|
class GetCodeBindingSourceResponse < Struct.new(
|
840
874
|
:body)
|
875
|
+
SENSITIVE = []
|
841
876
|
include Aws::Structure
|
842
877
|
end
|
843
878
|
|
@@ -856,6 +891,7 @@ module Aws::Schemas
|
|
856
891
|
class GetDiscoveredSchemaInput < Struct.new(
|
857
892
|
:events,
|
858
893
|
:type)
|
894
|
+
SENSITIVE = []
|
859
895
|
include Aws::Structure
|
860
896
|
end
|
861
897
|
|
@@ -867,6 +903,7 @@ module Aws::Schemas
|
|
867
903
|
#
|
868
904
|
class GetDiscoveredSchemaOutput < Struct.new(
|
869
905
|
:content)
|
906
|
+
SENSITIVE = []
|
870
907
|
include Aws::Structure
|
871
908
|
end
|
872
909
|
|
@@ -889,6 +926,7 @@ module Aws::Schemas
|
|
889
926
|
class GetDiscoveredSchemaRequest < Struct.new(
|
890
927
|
:events,
|
891
928
|
:type)
|
929
|
+
SENSITIVE = []
|
892
930
|
include Aws::Structure
|
893
931
|
end
|
894
932
|
|
@@ -899,6 +937,7 @@ module Aws::Schemas
|
|
899
937
|
#
|
900
938
|
class GetDiscoveredSchemaResponse < Struct.new(
|
901
939
|
:content)
|
940
|
+
SENSITIVE = []
|
902
941
|
include Aws::Structure
|
903
942
|
end
|
904
943
|
|
@@ -917,6 +956,7 @@ module Aws::Schemas
|
|
917
956
|
class GetResourcePolicyOutput < Struct.new(
|
918
957
|
:policy,
|
919
958
|
:revision_id)
|
959
|
+
SENSITIVE = []
|
920
960
|
include Aws::Structure
|
921
961
|
end
|
922
962
|
|
@@ -934,6 +974,7 @@ module Aws::Schemas
|
|
934
974
|
#
|
935
975
|
class GetResourcePolicyRequest < Struct.new(
|
936
976
|
:registry_name)
|
977
|
+
SENSITIVE = []
|
937
978
|
include Aws::Structure
|
938
979
|
end
|
939
980
|
|
@@ -948,6 +989,7 @@ module Aws::Schemas
|
|
948
989
|
class GetResourcePolicyResponse < Struct.new(
|
949
990
|
:policy,
|
950
991
|
:revision_id)
|
992
|
+
SENSITIVE = []
|
951
993
|
include Aws::Structure
|
952
994
|
end
|
953
995
|
|
@@ -962,6 +1004,7 @@ module Aws::Schemas
|
|
962
1004
|
class GoneException < Struct.new(
|
963
1005
|
:code,
|
964
1006
|
:message)
|
1007
|
+
SENSITIVE = []
|
965
1008
|
include Aws::Structure
|
966
1009
|
end
|
967
1010
|
|
@@ -976,6 +1019,7 @@ module Aws::Schemas
|
|
976
1019
|
class InternalServerErrorException < Struct.new(
|
977
1020
|
:code,
|
978
1021
|
:message)
|
1022
|
+
SENSITIVE = []
|
979
1023
|
include Aws::Structure
|
980
1024
|
end
|
981
1025
|
|
@@ -994,6 +1038,7 @@ module Aws::Schemas
|
|
994
1038
|
class ListDiscoverersOutput < Struct.new(
|
995
1039
|
:discoverers,
|
996
1040
|
:next_token)
|
1041
|
+
SENSITIVE = []
|
997
1042
|
include Aws::Structure
|
998
1043
|
end
|
999
1044
|
|
@@ -1026,6 +1071,7 @@ module Aws::Schemas
|
|
1026
1071
|
:limit,
|
1027
1072
|
:next_token,
|
1028
1073
|
:source_arn_prefix)
|
1074
|
+
SENSITIVE = []
|
1029
1075
|
include Aws::Structure
|
1030
1076
|
end
|
1031
1077
|
|
@@ -1040,6 +1086,7 @@ module Aws::Schemas
|
|
1040
1086
|
class ListDiscoverersResponse < Struct.new(
|
1041
1087
|
:discoverers,
|
1042
1088
|
:next_token)
|
1089
|
+
SENSITIVE = []
|
1043
1090
|
include Aws::Structure
|
1044
1091
|
end
|
1045
1092
|
|
@@ -1060,6 +1107,7 @@ module Aws::Schemas
|
|
1060
1107
|
class ListRegistriesOutput < Struct.new(
|
1061
1108
|
:next_token,
|
1062
1109
|
:registries)
|
1110
|
+
SENSITIVE = []
|
1063
1111
|
include Aws::Structure
|
1064
1112
|
end
|
1065
1113
|
|
@@ -1092,6 +1140,7 @@ module Aws::Schemas
|
|
1092
1140
|
:next_token,
|
1093
1141
|
:registry_name_prefix,
|
1094
1142
|
:scope)
|
1143
|
+
SENSITIVE = []
|
1095
1144
|
include Aws::Structure
|
1096
1145
|
end
|
1097
1146
|
|
@@ -1106,6 +1155,7 @@ module Aws::Schemas
|
|
1106
1155
|
class ListRegistriesResponse < Struct.new(
|
1107
1156
|
:next_token,
|
1108
1157
|
:registries)
|
1158
|
+
SENSITIVE = []
|
1109
1159
|
include Aws::Structure
|
1110
1160
|
end
|
1111
1161
|
|
@@ -1124,6 +1174,7 @@ module Aws::Schemas
|
|
1124
1174
|
class ListSchemaVersionsOutput < Struct.new(
|
1125
1175
|
:next_token,
|
1126
1176
|
:schema_versions)
|
1177
|
+
SENSITIVE = []
|
1127
1178
|
include Aws::Structure
|
1128
1179
|
end
|
1129
1180
|
|
@@ -1156,6 +1207,7 @@ module Aws::Schemas
|
|
1156
1207
|
:next_token,
|
1157
1208
|
:registry_name,
|
1158
1209
|
:schema_name)
|
1210
|
+
SENSITIVE = []
|
1159
1211
|
include Aws::Structure
|
1160
1212
|
end
|
1161
1213
|
|
@@ -1170,6 +1222,7 @@ module Aws::Schemas
|
|
1170
1222
|
class ListSchemaVersionsResponse < Struct.new(
|
1171
1223
|
:next_token,
|
1172
1224
|
:schema_versions)
|
1225
|
+
SENSITIVE = []
|
1173
1226
|
include Aws::Structure
|
1174
1227
|
end
|
1175
1228
|
|
@@ -1188,6 +1241,7 @@ module Aws::Schemas
|
|
1188
1241
|
class ListSchemasOutput < Struct.new(
|
1189
1242
|
:next_token,
|
1190
1243
|
:schemas)
|
1244
|
+
SENSITIVE = []
|
1191
1245
|
include Aws::Structure
|
1192
1246
|
end
|
1193
1247
|
|
@@ -1220,6 +1274,7 @@ module Aws::Schemas
|
|
1220
1274
|
:next_token,
|
1221
1275
|
:registry_name,
|
1222
1276
|
:schema_name_prefix)
|
1277
|
+
SENSITIVE = []
|
1223
1278
|
include Aws::Structure
|
1224
1279
|
end
|
1225
1280
|
|
@@ -1234,6 +1289,7 @@ module Aws::Schemas
|
|
1234
1289
|
class ListSchemasResponse < Struct.new(
|
1235
1290
|
:next_token,
|
1236
1291
|
:schemas)
|
1292
|
+
SENSITIVE = []
|
1237
1293
|
include Aws::Structure
|
1238
1294
|
end
|
1239
1295
|
|
@@ -1245,6 +1301,7 @@ module Aws::Schemas
|
|
1245
1301
|
#
|
1246
1302
|
class ListTagsForResourceOutput < Struct.new(
|
1247
1303
|
:tags)
|
1304
|
+
SENSITIVE = []
|
1248
1305
|
include Aws::Structure
|
1249
1306
|
end
|
1250
1307
|
|
@@ -1262,6 +1319,7 @@ module Aws::Schemas
|
|
1262
1319
|
#
|
1263
1320
|
class ListTagsForResourceRequest < Struct.new(
|
1264
1321
|
:resource_arn)
|
1322
|
+
SENSITIVE = []
|
1265
1323
|
include Aws::Structure
|
1266
1324
|
end
|
1267
1325
|
|
@@ -1273,6 +1331,7 @@ module Aws::Schemas
|
|
1273
1331
|
#
|
1274
1332
|
class ListTagsForResourceResponse < Struct.new(
|
1275
1333
|
:tags)
|
1334
|
+
SENSITIVE = []
|
1276
1335
|
include Aws::Structure
|
1277
1336
|
end
|
1278
1337
|
|
@@ -1287,6 +1346,7 @@ module Aws::Schemas
|
|
1287
1346
|
class LockServiceLinkedRoleInput < Struct.new(
|
1288
1347
|
:role_arn,
|
1289
1348
|
:timeout)
|
1349
|
+
SENSITIVE = []
|
1290
1350
|
include Aws::Structure
|
1291
1351
|
end
|
1292
1352
|
|
@@ -1305,6 +1365,7 @@ module Aws::Schemas
|
|
1305
1365
|
:can_be_deleted,
|
1306
1366
|
:reason_of_failure,
|
1307
1367
|
:related_resources)
|
1368
|
+
SENSITIVE = []
|
1308
1369
|
include Aws::Structure
|
1309
1370
|
end
|
1310
1371
|
|
@@ -1319,6 +1380,7 @@ module Aws::Schemas
|
|
1319
1380
|
class LockServiceLinkedRoleRequest < Struct.new(
|
1320
1381
|
:role_arn,
|
1321
1382
|
:timeout)
|
1383
|
+
SENSITIVE = []
|
1322
1384
|
include Aws::Structure
|
1323
1385
|
end
|
1324
1386
|
|
@@ -1337,6 +1399,7 @@ module Aws::Schemas
|
|
1337
1399
|
:can_be_deleted,
|
1338
1400
|
:reason_of_failure,
|
1339
1401
|
:related_resources)
|
1402
|
+
SENSITIVE = []
|
1340
1403
|
include Aws::Structure
|
1341
1404
|
end
|
1342
1405
|
|
@@ -1351,6 +1414,7 @@ module Aws::Schemas
|
|
1351
1414
|
class NotFoundException < Struct.new(
|
1352
1415
|
:code,
|
1353
1416
|
:message)
|
1417
|
+
SENSITIVE = []
|
1354
1418
|
include Aws::Structure
|
1355
1419
|
end
|
1356
1420
|
|
@@ -1365,6 +1429,7 @@ module Aws::Schemas
|
|
1365
1429
|
class PreconditionFailedException < Struct.new(
|
1366
1430
|
:code,
|
1367
1431
|
:message)
|
1432
|
+
SENSITIVE = []
|
1368
1433
|
include Aws::Structure
|
1369
1434
|
end
|
1370
1435
|
|
@@ -1397,6 +1462,7 @@ module Aws::Schemas
|
|
1397
1462
|
:registry_name,
|
1398
1463
|
:schema_name,
|
1399
1464
|
:schema_version)
|
1465
|
+
SENSITIVE = []
|
1400
1466
|
include Aws::Structure
|
1401
1467
|
end
|
1402
1468
|
|
@@ -1419,6 +1485,7 @@ module Aws::Schemas
|
|
1419
1485
|
:last_modified,
|
1420
1486
|
:schema_version,
|
1421
1487
|
:status)
|
1488
|
+
SENSITIVE = []
|
1422
1489
|
include Aws::Structure
|
1423
1490
|
end
|
1424
1491
|
|
@@ -1439,6 +1506,7 @@ module Aws::Schemas
|
|
1439
1506
|
class PutResourcePolicyInput < Struct.new(
|
1440
1507
|
:policy,
|
1441
1508
|
:revision_id)
|
1509
|
+
SENSITIVE = []
|
1442
1510
|
include Aws::Structure
|
1443
1511
|
end
|
1444
1512
|
|
@@ -1457,6 +1525,7 @@ module Aws::Schemas
|
|
1457
1525
|
class PutResourcePolicyOutput < Struct.new(
|
1458
1526
|
:policy,
|
1459
1527
|
:revision_id)
|
1528
|
+
SENSITIVE = []
|
1460
1529
|
include Aws::Structure
|
1461
1530
|
end
|
1462
1531
|
|
@@ -1484,6 +1553,7 @@ module Aws::Schemas
|
|
1484
1553
|
:policy,
|
1485
1554
|
:registry_name,
|
1486
1555
|
:revision_id)
|
1556
|
+
SENSITIVE = []
|
1487
1557
|
include Aws::Structure
|
1488
1558
|
end
|
1489
1559
|
|
@@ -1498,6 +1568,7 @@ module Aws::Schemas
|
|
1498
1568
|
class PutResourcePolicyResponse < Struct.new(
|
1499
1569
|
:policy,
|
1500
1570
|
:revision_id)
|
1571
|
+
SENSITIVE = []
|
1501
1572
|
include Aws::Structure
|
1502
1573
|
end
|
1503
1574
|
|
@@ -1524,6 +1595,7 @@ module Aws::Schemas
|
|
1524
1595
|
:registry_arn,
|
1525
1596
|
:registry_name,
|
1526
1597
|
:tags)
|
1598
|
+
SENSITIVE = []
|
1527
1599
|
include Aws::Structure
|
1528
1600
|
end
|
1529
1601
|
|
@@ -1545,6 +1617,7 @@ module Aws::Schemas
|
|
1545
1617
|
:registry_arn,
|
1546
1618
|
:registry_name,
|
1547
1619
|
:tags)
|
1620
|
+
SENSITIVE = []
|
1548
1621
|
include Aws::Structure
|
1549
1622
|
end
|
1550
1623
|
|
@@ -1591,6 +1664,7 @@ module Aws::Schemas
|
|
1591
1664
|
:tags,
|
1592
1665
|
:type,
|
1593
1666
|
:version_created_date)
|
1667
|
+
SENSITIVE = []
|
1594
1668
|
include Aws::Structure
|
1595
1669
|
end
|
1596
1670
|
|
@@ -1624,6 +1698,7 @@ module Aws::Schemas
|
|
1624
1698
|
:schema_name,
|
1625
1699
|
:tags,
|
1626
1700
|
:version_count)
|
1701
|
+
SENSITIVE = []
|
1627
1702
|
include Aws::Structure
|
1628
1703
|
end
|
1629
1704
|
|
@@ -1639,12 +1714,17 @@ module Aws::Schemas
|
|
1639
1714
|
# The version number of the schema.
|
1640
1715
|
# @return [String]
|
1641
1716
|
#
|
1717
|
+
# @!attribute [rw] type
|
1718
|
+
# @return [String]
|
1719
|
+
#
|
1642
1720
|
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/SchemaVersionSummary AWS API Documentation
|
1643
1721
|
#
|
1644
1722
|
class SchemaVersionSummary < Struct.new(
|
1645
1723
|
:schema_arn,
|
1646
1724
|
:schema_name,
|
1647
|
-
:schema_version
|
1725
|
+
:schema_version,
|
1726
|
+
:type)
|
1727
|
+
SENSITIVE = []
|
1648
1728
|
include Aws::Structure
|
1649
1729
|
end
|
1650
1730
|
|
@@ -1671,6 +1751,7 @@ module Aws::Schemas
|
|
1671
1751
|
:schema_arn,
|
1672
1752
|
:schema_name,
|
1673
1753
|
:schema_versions)
|
1754
|
+
SENSITIVE = []
|
1674
1755
|
include Aws::Structure
|
1675
1756
|
end
|
1676
1757
|
|
@@ -1682,11 +1763,16 @@ module Aws::Schemas
|
|
1682
1763
|
# The version number of the schema
|
1683
1764
|
# @return [String]
|
1684
1765
|
#
|
1766
|
+
# @!attribute [rw] type
|
1767
|
+
# @return [String]
|
1768
|
+
#
|
1685
1769
|
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/SearchSchemaVersionSummary AWS API Documentation
|
1686
1770
|
#
|
1687
1771
|
class SearchSchemaVersionSummary < Struct.new(
|
1688
1772
|
:created_date,
|
1689
|
-
:schema_version
|
1773
|
+
:schema_version,
|
1774
|
+
:type)
|
1775
|
+
SENSITIVE = []
|
1690
1776
|
include Aws::Structure
|
1691
1777
|
end
|
1692
1778
|
|
@@ -1705,6 +1791,7 @@ module Aws::Schemas
|
|
1705
1791
|
class SearchSchemasOutput < Struct.new(
|
1706
1792
|
:next_token,
|
1707
1793
|
:schemas)
|
1794
|
+
SENSITIVE = []
|
1708
1795
|
include Aws::Structure
|
1709
1796
|
end
|
1710
1797
|
|
@@ -1737,6 +1824,7 @@ module Aws::Schemas
|
|
1737
1824
|
:limit,
|
1738
1825
|
:next_token,
|
1739
1826
|
:registry_name)
|
1827
|
+
SENSITIVE = []
|
1740
1828
|
include Aws::Structure
|
1741
1829
|
end
|
1742
1830
|
|
@@ -1751,6 +1839,7 @@ module Aws::Schemas
|
|
1751
1839
|
class SearchSchemasResponse < Struct.new(
|
1752
1840
|
:next_token,
|
1753
1841
|
:schemas)
|
1842
|
+
SENSITIVE = []
|
1754
1843
|
include Aws::Structure
|
1755
1844
|
end
|
1756
1845
|
|
@@ -1765,6 +1854,7 @@ module Aws::Schemas
|
|
1765
1854
|
class ServiceUnavailableException < Struct.new(
|
1766
1855
|
:code,
|
1767
1856
|
:message)
|
1857
|
+
SENSITIVE = []
|
1768
1858
|
include Aws::Structure
|
1769
1859
|
end
|
1770
1860
|
|
@@ -1782,6 +1872,7 @@ module Aws::Schemas
|
|
1782
1872
|
#
|
1783
1873
|
class StartDiscovererRequest < Struct.new(
|
1784
1874
|
:discoverer_id)
|
1875
|
+
SENSITIVE = []
|
1785
1876
|
include Aws::Structure
|
1786
1877
|
end
|
1787
1878
|
|
@@ -1796,6 +1887,7 @@ module Aws::Schemas
|
|
1796
1887
|
class StartDiscovererResponse < Struct.new(
|
1797
1888
|
:discoverer_id,
|
1798
1889
|
:state)
|
1890
|
+
SENSITIVE = []
|
1799
1891
|
include Aws::Structure
|
1800
1892
|
end
|
1801
1893
|
|
@@ -1813,6 +1905,7 @@ module Aws::Schemas
|
|
1813
1905
|
#
|
1814
1906
|
class StopDiscovererRequest < Struct.new(
|
1815
1907
|
:discoverer_id)
|
1908
|
+
SENSITIVE = []
|
1816
1909
|
include Aws::Structure
|
1817
1910
|
end
|
1818
1911
|
|
@@ -1827,6 +1920,7 @@ module Aws::Schemas
|
|
1827
1920
|
class StopDiscovererResponse < Struct.new(
|
1828
1921
|
:discoverer_id,
|
1829
1922
|
:state)
|
1923
|
+
SENSITIVE = []
|
1830
1924
|
include Aws::Structure
|
1831
1925
|
end
|
1832
1926
|
|
@@ -1838,6 +1932,7 @@ module Aws::Schemas
|
|
1838
1932
|
#
|
1839
1933
|
class TagResourceInput < Struct.new(
|
1840
1934
|
:tags)
|
1935
|
+
SENSITIVE = []
|
1841
1936
|
include Aws::Structure
|
1842
1937
|
end
|
1843
1938
|
|
@@ -1863,6 +1958,7 @@ module Aws::Schemas
|
|
1863
1958
|
class TagResourceRequest < Struct.new(
|
1864
1959
|
:resource_arn,
|
1865
1960
|
:tags)
|
1961
|
+
SENSITIVE = []
|
1866
1962
|
include Aws::Structure
|
1867
1963
|
end
|
1868
1964
|
|
@@ -1877,6 +1973,7 @@ module Aws::Schemas
|
|
1877
1973
|
class TooManyRequestsException < Struct.new(
|
1878
1974
|
:code,
|
1879
1975
|
:message)
|
1976
|
+
SENSITIVE = []
|
1880
1977
|
include Aws::Structure
|
1881
1978
|
end
|
1882
1979
|
|
@@ -1891,6 +1988,7 @@ module Aws::Schemas
|
|
1891
1988
|
class UnauthorizedException < Struct.new(
|
1892
1989
|
:code,
|
1893
1990
|
:message)
|
1991
|
+
SENSITIVE = []
|
1894
1992
|
include Aws::Structure
|
1895
1993
|
end
|
1896
1994
|
|
@@ -1901,6 +1999,7 @@ module Aws::Schemas
|
|
1901
1999
|
#
|
1902
2000
|
class UnlockServiceLinkedRoleInput < Struct.new(
|
1903
2001
|
:role_arn)
|
2002
|
+
SENSITIVE = []
|
1904
2003
|
include Aws::Structure
|
1905
2004
|
end
|
1906
2005
|
|
@@ -1911,6 +2010,7 @@ module Aws::Schemas
|
|
1911
2010
|
#
|
1912
2011
|
class UnlockServiceLinkedRoleRequest < Struct.new(
|
1913
2012
|
:role_arn)
|
2013
|
+
SENSITIVE = []
|
1914
2014
|
include Aws::Structure
|
1915
2015
|
end
|
1916
2016
|
|
@@ -1937,6 +2037,7 @@ module Aws::Schemas
|
|
1937
2037
|
class UntagResourceRequest < Struct.new(
|
1938
2038
|
:resource_arn,
|
1939
2039
|
:tag_keys)
|
2040
|
+
SENSITIVE = []
|
1940
2041
|
include Aws::Structure
|
1941
2042
|
end
|
1942
2043
|
|
@@ -1948,6 +2049,7 @@ module Aws::Schemas
|
|
1948
2049
|
#
|
1949
2050
|
class UpdateDiscovererInput < Struct.new(
|
1950
2051
|
:description)
|
2052
|
+
SENSITIVE = []
|
1951
2053
|
include Aws::Structure
|
1952
2054
|
end
|
1953
2055
|
|
@@ -1970,6 +2072,7 @@ module Aws::Schemas
|
|
1970
2072
|
class UpdateDiscovererRequest < Struct.new(
|
1971
2073
|
:description,
|
1972
2074
|
:discoverer_id)
|
2075
|
+
SENSITIVE = []
|
1973
2076
|
include Aws::Structure
|
1974
2077
|
end
|
1975
2078
|
|
@@ -2001,6 +2104,7 @@ module Aws::Schemas
|
|
2001
2104
|
:source_arn,
|
2002
2105
|
:state,
|
2003
2106
|
:tags)
|
2107
|
+
SENSITIVE = []
|
2004
2108
|
include Aws::Structure
|
2005
2109
|
end
|
2006
2110
|
|
@@ -2012,6 +2116,7 @@ module Aws::Schemas
|
|
2012
2116
|
#
|
2013
2117
|
class UpdateRegistryInput < Struct.new(
|
2014
2118
|
:description)
|
2119
|
+
SENSITIVE = []
|
2015
2120
|
include Aws::Structure
|
2016
2121
|
end
|
2017
2122
|
|
@@ -2034,6 +2139,7 @@ module Aws::Schemas
|
|
2034
2139
|
class UpdateRegistryRequest < Struct.new(
|
2035
2140
|
:description,
|
2036
2141
|
:registry_name)
|
2142
|
+
SENSITIVE = []
|
2037
2143
|
include Aws::Structure
|
2038
2144
|
end
|
2039
2145
|
|
@@ -2057,6 +2163,7 @@ module Aws::Schemas
|
|
2057
2163
|
:registry_arn,
|
2058
2164
|
:registry_name,
|
2059
2165
|
:tags)
|
2166
|
+
SENSITIVE = []
|
2060
2167
|
include Aws::Structure
|
2061
2168
|
end
|
2062
2169
|
|
@@ -2086,6 +2193,7 @@ module Aws::Schemas
|
|
2086
2193
|
:content,
|
2087
2194
|
:description,
|
2088
2195
|
:type)
|
2196
|
+
SENSITIVE = []
|
2089
2197
|
include Aws::Structure
|
2090
2198
|
end
|
2091
2199
|
|
@@ -2130,6 +2238,7 @@ module Aws::Schemas
|
|
2130
2238
|
:registry_name,
|
2131
2239
|
:schema_name,
|
2132
2240
|
:type)
|
2241
|
+
SENSITIVE = []
|
2133
2242
|
include Aws::Structure
|
2134
2243
|
end
|
2135
2244
|
|
@@ -2169,6 +2278,99 @@ module Aws::Schemas
|
|
2169
2278
|
:tags,
|
2170
2279
|
:type,
|
2171
2280
|
:version_created_date)
|
2281
|
+
SENSITIVE = []
|
2282
|
+
include Aws::Structure
|
2283
|
+
end
|
2284
|
+
|
2285
|
+
# @!attribute [rw] content
|
2286
|
+
# The content of the schema.
|
2287
|
+
# @return [String]
|
2288
|
+
#
|
2289
|
+
# @!attribute [rw] schema_arn
|
2290
|
+
# The ARN of the schema to export.
|
2291
|
+
# @return [String]
|
2292
|
+
#
|
2293
|
+
# @!attribute [rw] schema_name
|
2294
|
+
# The name of the schema to export.
|
2295
|
+
# @return [String]
|
2296
|
+
#
|
2297
|
+
# @!attribute [rw] schema_version
|
2298
|
+
# The version of the schema to export.
|
2299
|
+
# @return [String]
|
2300
|
+
#
|
2301
|
+
# @!attribute [rw] type
|
2302
|
+
# The type of schema to export.
|
2303
|
+
# @return [String]
|
2304
|
+
#
|
2305
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ExportSchemaOutput AWS API Documentation
|
2306
|
+
#
|
2307
|
+
class ExportSchemaOutput < Struct.new(
|
2308
|
+
:content,
|
2309
|
+
:schema_arn,
|
2310
|
+
:schema_name,
|
2311
|
+
:schema_version,
|
2312
|
+
:type)
|
2313
|
+
SENSITIVE = []
|
2314
|
+
include Aws::Structure
|
2315
|
+
end
|
2316
|
+
|
2317
|
+
# @note When making an API call, you may pass ExportSchemaRequest
|
2318
|
+
# data as a hash:
|
2319
|
+
#
|
2320
|
+
# {
|
2321
|
+
# registry_name: "__string", # required
|
2322
|
+
# schema_name: "__string", # required
|
2323
|
+
# schema_version: "__string",
|
2324
|
+
# type: "__string", # required
|
2325
|
+
# }
|
2326
|
+
#
|
2327
|
+
# @!attribute [rw] registry_name
|
2328
|
+
# @return [String]
|
2329
|
+
#
|
2330
|
+
# @!attribute [rw] schema_name
|
2331
|
+
# @return [String]
|
2332
|
+
#
|
2333
|
+
# @!attribute [rw] schema_version
|
2334
|
+
# @return [String]
|
2335
|
+
#
|
2336
|
+
# @!attribute [rw] type
|
2337
|
+
# @return [String]
|
2338
|
+
#
|
2339
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ExportSchemaRequest AWS API Documentation
|
2340
|
+
#
|
2341
|
+
class ExportSchemaRequest < Struct.new(
|
2342
|
+
:registry_name,
|
2343
|
+
:schema_name,
|
2344
|
+
:schema_version,
|
2345
|
+
:type)
|
2346
|
+
SENSITIVE = []
|
2347
|
+
include Aws::Structure
|
2348
|
+
end
|
2349
|
+
|
2350
|
+
# @!attribute [rw] content
|
2351
|
+
# @return [String]
|
2352
|
+
#
|
2353
|
+
# @!attribute [rw] schema_arn
|
2354
|
+
# @return [String]
|
2355
|
+
#
|
2356
|
+
# @!attribute [rw] schema_name
|
2357
|
+
# @return [String]
|
2358
|
+
#
|
2359
|
+
# @!attribute [rw] schema_version
|
2360
|
+
# @return [String]
|
2361
|
+
#
|
2362
|
+
# @!attribute [rw] type
|
2363
|
+
# @return [String]
|
2364
|
+
#
|
2365
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ExportSchemaResponse AWS API Documentation
|
2366
|
+
#
|
2367
|
+
class ExportSchemaResponse < Struct.new(
|
2368
|
+
:content,
|
2369
|
+
:schema_arn,
|
2370
|
+
:schema_name,
|
2371
|
+
:schema_version,
|
2372
|
+
:type)
|
2373
|
+
SENSITIVE = []
|
2172
2374
|
include Aws::Structure
|
2173
2375
|
end
|
2174
2376
|
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-schemas
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.10.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-09-30 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.
|
22
|
+
version: 3.109.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.
|
32
|
+
version: 3.109.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|