aws-sdk-schemas 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/lib/aws-sdk-schemas.rb +48 -0
- data/lib/aws-sdk-schemas/client.rb +1466 -0
- data/lib/aws-sdk-schemas/client_api.rb +1050 -0
- data/lib/aws-sdk-schemas/customizations.rb +0 -0
- data/lib/aws-sdk-schemas/errors.rb +203 -0
- data/lib/aws-sdk-schemas/resource.rb +23 -0
- data/lib/aws-sdk-schemas/types.rb +2013 -0
- data/lib/aws-sdk-schemas/waiters.rb +69 -0
- metadata +89 -0
File without changes
|
@@ -0,0 +1,203 @@
|
|
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/master/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::Schemas
|
9
|
+
module Errors
|
10
|
+
|
11
|
+
extend Aws::Errors::DynamicErrors
|
12
|
+
|
13
|
+
class BadRequestException < ServiceError
|
14
|
+
|
15
|
+
# @param [Seahorse::Client::RequestContext] context
|
16
|
+
# @param [String] message
|
17
|
+
# @param [Aws::Schemas::Types::BadRequestException] data
|
18
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
19
|
+
super(context, message, data)
|
20
|
+
end
|
21
|
+
|
22
|
+
# @return [String]
|
23
|
+
def code
|
24
|
+
@code || @data[:code]
|
25
|
+
end
|
26
|
+
|
27
|
+
# @return [String]
|
28
|
+
def message
|
29
|
+
@message || @data[:message]
|
30
|
+
end
|
31
|
+
|
32
|
+
end
|
33
|
+
|
34
|
+
class ConflictException < ServiceError
|
35
|
+
|
36
|
+
# @param [Seahorse::Client::RequestContext] context
|
37
|
+
# @param [String] message
|
38
|
+
# @param [Aws::Schemas::Types::ConflictException] data
|
39
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
40
|
+
super(context, message, data)
|
41
|
+
end
|
42
|
+
|
43
|
+
# @return [String]
|
44
|
+
def code
|
45
|
+
@code || @data[:code]
|
46
|
+
end
|
47
|
+
|
48
|
+
# @return [String]
|
49
|
+
def message
|
50
|
+
@message || @data[:message]
|
51
|
+
end
|
52
|
+
|
53
|
+
end
|
54
|
+
|
55
|
+
class ForbiddenException < ServiceError
|
56
|
+
|
57
|
+
# @param [Seahorse::Client::RequestContext] context
|
58
|
+
# @param [String] message
|
59
|
+
# @param [Aws::Schemas::Types::ForbiddenException] data
|
60
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
61
|
+
super(context, message, data)
|
62
|
+
end
|
63
|
+
|
64
|
+
# @return [String]
|
65
|
+
def code
|
66
|
+
@code || @data[:code]
|
67
|
+
end
|
68
|
+
|
69
|
+
# @return [String]
|
70
|
+
def message
|
71
|
+
@message || @data[:message]
|
72
|
+
end
|
73
|
+
|
74
|
+
end
|
75
|
+
|
76
|
+
class GoneException < ServiceError
|
77
|
+
|
78
|
+
# @param [Seahorse::Client::RequestContext] context
|
79
|
+
# @param [String] message
|
80
|
+
# @param [Aws::Schemas::Types::GoneException] data
|
81
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
82
|
+
super(context, message, data)
|
83
|
+
end
|
84
|
+
|
85
|
+
# @return [String]
|
86
|
+
def code
|
87
|
+
@code || @data[:code]
|
88
|
+
end
|
89
|
+
|
90
|
+
# @return [String]
|
91
|
+
def message
|
92
|
+
@message || @data[:message]
|
93
|
+
end
|
94
|
+
|
95
|
+
end
|
96
|
+
|
97
|
+
class InternalServerErrorException < ServiceError
|
98
|
+
|
99
|
+
# @param [Seahorse::Client::RequestContext] context
|
100
|
+
# @param [String] message
|
101
|
+
# @param [Aws::Schemas::Types::InternalServerErrorException] data
|
102
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
103
|
+
super(context, message, data)
|
104
|
+
end
|
105
|
+
|
106
|
+
# @return [String]
|
107
|
+
def code
|
108
|
+
@code || @data[:code]
|
109
|
+
end
|
110
|
+
|
111
|
+
# @return [String]
|
112
|
+
def message
|
113
|
+
@message || @data[:message]
|
114
|
+
end
|
115
|
+
|
116
|
+
end
|
117
|
+
|
118
|
+
class NotFoundException < ServiceError
|
119
|
+
|
120
|
+
# @param [Seahorse::Client::RequestContext] context
|
121
|
+
# @param [String] message
|
122
|
+
# @param [Aws::Schemas::Types::NotFoundException] data
|
123
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
124
|
+
super(context, message, data)
|
125
|
+
end
|
126
|
+
|
127
|
+
# @return [String]
|
128
|
+
def code
|
129
|
+
@code || @data[:code]
|
130
|
+
end
|
131
|
+
|
132
|
+
# @return [String]
|
133
|
+
def message
|
134
|
+
@message || @data[:message]
|
135
|
+
end
|
136
|
+
|
137
|
+
end
|
138
|
+
|
139
|
+
class ServiceUnavailableException < ServiceError
|
140
|
+
|
141
|
+
# @param [Seahorse::Client::RequestContext] context
|
142
|
+
# @param [String] message
|
143
|
+
# @param [Aws::Schemas::Types::ServiceUnavailableException] data
|
144
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
145
|
+
super(context, message, data)
|
146
|
+
end
|
147
|
+
|
148
|
+
# @return [String]
|
149
|
+
def code
|
150
|
+
@code || @data[:code]
|
151
|
+
end
|
152
|
+
|
153
|
+
# @return [String]
|
154
|
+
def message
|
155
|
+
@message || @data[:message]
|
156
|
+
end
|
157
|
+
|
158
|
+
end
|
159
|
+
|
160
|
+
class TooManyRequestsException < ServiceError
|
161
|
+
|
162
|
+
# @param [Seahorse::Client::RequestContext] context
|
163
|
+
# @param [String] message
|
164
|
+
# @param [Aws::Schemas::Types::TooManyRequestsException] data
|
165
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
166
|
+
super(context, message, data)
|
167
|
+
end
|
168
|
+
|
169
|
+
# @return [String]
|
170
|
+
def code
|
171
|
+
@code || @data[:code]
|
172
|
+
end
|
173
|
+
|
174
|
+
# @return [String]
|
175
|
+
def message
|
176
|
+
@message || @data[:message]
|
177
|
+
end
|
178
|
+
|
179
|
+
end
|
180
|
+
|
181
|
+
class UnauthorizedException < ServiceError
|
182
|
+
|
183
|
+
# @param [Seahorse::Client::RequestContext] context
|
184
|
+
# @param [String] message
|
185
|
+
# @param [Aws::Schemas::Types::UnauthorizedException] data
|
186
|
+
def initialize(context, message, data = Aws::EmptyStructure.new)
|
187
|
+
super(context, message, data)
|
188
|
+
end
|
189
|
+
|
190
|
+
# @return [String]
|
191
|
+
def code
|
192
|
+
@code || @data[:code]
|
193
|
+
end
|
194
|
+
|
195
|
+
# @return [String]
|
196
|
+
def message
|
197
|
+
@message || @data[:message]
|
198
|
+
end
|
199
|
+
|
200
|
+
end
|
201
|
+
|
202
|
+
end
|
203
|
+
end
|
@@ -0,0 +1,23 @@
|
|
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/master/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::Schemas
|
9
|
+
class Resource
|
10
|
+
|
11
|
+
# @param options ({})
|
12
|
+
# @option options [Client] :client
|
13
|
+
def initialize(options = {})
|
14
|
+
@client = options[:client] || Client.new(options)
|
15
|
+
end
|
16
|
+
|
17
|
+
# @return [Client]
|
18
|
+
def client
|
19
|
+
@client
|
20
|
+
end
|
21
|
+
|
22
|
+
end
|
23
|
+
end
|
@@ -0,0 +1,2013 @@
|
|
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/master/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::Schemas
|
9
|
+
module Types
|
10
|
+
|
11
|
+
# @!attribute [rw] code
|
12
|
+
# @return [String]
|
13
|
+
#
|
14
|
+
# @!attribute [rw] message
|
15
|
+
# @return [String]
|
16
|
+
#
|
17
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/BadRequestException AWS API Documentation
|
18
|
+
#
|
19
|
+
class BadRequestException < Struct.new(
|
20
|
+
:code,
|
21
|
+
:message)
|
22
|
+
include Aws::Structure
|
23
|
+
end
|
24
|
+
|
25
|
+
# @!attribute [rw] creation_date
|
26
|
+
# The time and date that the code binding was created.
|
27
|
+
# @return [Time]
|
28
|
+
#
|
29
|
+
# @!attribute [rw] last_modified
|
30
|
+
# The date and time that code bindings were modified.
|
31
|
+
# @return [Time]
|
32
|
+
#
|
33
|
+
# @!attribute [rw] schema_version
|
34
|
+
# The version number of the schema.
|
35
|
+
# @return [String]
|
36
|
+
#
|
37
|
+
# @!attribute [rw] status
|
38
|
+
# The current status of code binding generation.
|
39
|
+
# @return [String]
|
40
|
+
#
|
41
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/CodeBindingOutput AWS API Documentation
|
42
|
+
#
|
43
|
+
class CodeBindingOutput < Struct.new(
|
44
|
+
:creation_date,
|
45
|
+
:last_modified,
|
46
|
+
:schema_version,
|
47
|
+
:status)
|
48
|
+
include Aws::Structure
|
49
|
+
end
|
50
|
+
|
51
|
+
# @!attribute [rw] code
|
52
|
+
# @return [String]
|
53
|
+
#
|
54
|
+
# @!attribute [rw] message
|
55
|
+
# @return [String]
|
56
|
+
#
|
57
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ConflictException AWS API Documentation
|
58
|
+
#
|
59
|
+
class ConflictException < Struct.new(
|
60
|
+
:code,
|
61
|
+
:message)
|
62
|
+
include Aws::Structure
|
63
|
+
end
|
64
|
+
|
65
|
+
# @!attribute [rw] description
|
66
|
+
# A description for the discoverer.
|
67
|
+
# @return [String]
|
68
|
+
#
|
69
|
+
# @!attribute [rw] source_arn
|
70
|
+
# The ARN of the event bus.
|
71
|
+
# @return [String]
|
72
|
+
#
|
73
|
+
# @!attribute [rw] tags
|
74
|
+
# Tags associated with the resource.
|
75
|
+
# @return [Hash<String,String>]
|
76
|
+
#
|
77
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/CreateDiscovererInput AWS API Documentation
|
78
|
+
#
|
79
|
+
class CreateDiscovererInput < Struct.new(
|
80
|
+
:description,
|
81
|
+
:source_arn,
|
82
|
+
:tags)
|
83
|
+
include Aws::Structure
|
84
|
+
end
|
85
|
+
|
86
|
+
# @note When making an API call, you may pass CreateDiscovererRequest
|
87
|
+
# data as a hash:
|
88
|
+
#
|
89
|
+
# {
|
90
|
+
# description: "__stringMin0Max256",
|
91
|
+
# source_arn: "__stringMin20Max1600", # required
|
92
|
+
# tags: {
|
93
|
+
# "__string" => "__string",
|
94
|
+
# },
|
95
|
+
# }
|
96
|
+
#
|
97
|
+
# @!attribute [rw] description
|
98
|
+
# @return [String]
|
99
|
+
#
|
100
|
+
# @!attribute [rw] source_arn
|
101
|
+
# @return [String]
|
102
|
+
#
|
103
|
+
# @!attribute [rw] tags
|
104
|
+
# Key-value pairs associated with a resource.
|
105
|
+
# @return [Hash<String,String>]
|
106
|
+
#
|
107
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/CreateDiscovererRequest AWS API Documentation
|
108
|
+
#
|
109
|
+
class CreateDiscovererRequest < Struct.new(
|
110
|
+
:description,
|
111
|
+
:source_arn,
|
112
|
+
:tags)
|
113
|
+
include Aws::Structure
|
114
|
+
end
|
115
|
+
|
116
|
+
# @!attribute [rw] description
|
117
|
+
# @return [String]
|
118
|
+
#
|
119
|
+
# @!attribute [rw] discoverer_arn
|
120
|
+
# @return [String]
|
121
|
+
#
|
122
|
+
# @!attribute [rw] discoverer_id
|
123
|
+
# @return [String]
|
124
|
+
#
|
125
|
+
# @!attribute [rw] source_arn
|
126
|
+
# @return [String]
|
127
|
+
#
|
128
|
+
# @!attribute [rw] state
|
129
|
+
# @return [String]
|
130
|
+
#
|
131
|
+
# @!attribute [rw] tags
|
132
|
+
# Key-value pairs associated with a resource.
|
133
|
+
# @return [Hash<String,String>]
|
134
|
+
#
|
135
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/CreateDiscovererResponse AWS API Documentation
|
136
|
+
#
|
137
|
+
class CreateDiscovererResponse < Struct.new(
|
138
|
+
:description,
|
139
|
+
:discoverer_arn,
|
140
|
+
:discoverer_id,
|
141
|
+
:source_arn,
|
142
|
+
:state,
|
143
|
+
:tags)
|
144
|
+
include Aws::Structure
|
145
|
+
end
|
146
|
+
|
147
|
+
# @!attribute [rw] description
|
148
|
+
# A description of the registry to be created.
|
149
|
+
# @return [String]
|
150
|
+
#
|
151
|
+
# @!attribute [rw] tags
|
152
|
+
# Tags to associate with the registry.
|
153
|
+
# @return [Hash<String,String>]
|
154
|
+
#
|
155
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/CreateRegistryInput AWS API Documentation
|
156
|
+
#
|
157
|
+
class CreateRegistryInput < Struct.new(
|
158
|
+
:description,
|
159
|
+
:tags)
|
160
|
+
include Aws::Structure
|
161
|
+
end
|
162
|
+
|
163
|
+
# @note When making an API call, you may pass CreateRegistryRequest
|
164
|
+
# data as a hash:
|
165
|
+
#
|
166
|
+
# {
|
167
|
+
# description: "__stringMin0Max256",
|
168
|
+
# registry_name: "__string", # required
|
169
|
+
# tags: {
|
170
|
+
# "__string" => "__string",
|
171
|
+
# },
|
172
|
+
# }
|
173
|
+
#
|
174
|
+
# @!attribute [rw] description
|
175
|
+
# @return [String]
|
176
|
+
#
|
177
|
+
# @!attribute [rw] registry_name
|
178
|
+
# @return [String]
|
179
|
+
#
|
180
|
+
# @!attribute [rw] tags
|
181
|
+
# Key-value pairs associated with a resource.
|
182
|
+
# @return [Hash<String,String>]
|
183
|
+
#
|
184
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/CreateRegistryRequest AWS API Documentation
|
185
|
+
#
|
186
|
+
class CreateRegistryRequest < Struct.new(
|
187
|
+
:description,
|
188
|
+
:registry_name,
|
189
|
+
:tags)
|
190
|
+
include Aws::Structure
|
191
|
+
end
|
192
|
+
|
193
|
+
# @!attribute [rw] description
|
194
|
+
# @return [String]
|
195
|
+
#
|
196
|
+
# @!attribute [rw] registry_arn
|
197
|
+
# @return [String]
|
198
|
+
#
|
199
|
+
# @!attribute [rw] registry_name
|
200
|
+
# @return [String]
|
201
|
+
#
|
202
|
+
# @!attribute [rw] tags
|
203
|
+
# Key-value pairs associated with a resource.
|
204
|
+
# @return [Hash<String,String>]
|
205
|
+
#
|
206
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/CreateRegistryResponse AWS API Documentation
|
207
|
+
#
|
208
|
+
class CreateRegistryResponse < Struct.new(
|
209
|
+
:description,
|
210
|
+
:registry_arn,
|
211
|
+
:registry_name,
|
212
|
+
:tags)
|
213
|
+
include Aws::Structure
|
214
|
+
end
|
215
|
+
|
216
|
+
# @!attribute [rw] content
|
217
|
+
# @return [String]
|
218
|
+
#
|
219
|
+
# @!attribute [rw] description
|
220
|
+
# A description of the schema.
|
221
|
+
# @return [String]
|
222
|
+
#
|
223
|
+
# @!attribute [rw] tags
|
224
|
+
# Tags associated with the schema.
|
225
|
+
# @return [Hash<String,String>]
|
226
|
+
#
|
227
|
+
# @!attribute [rw] type
|
228
|
+
# @return [String]
|
229
|
+
#
|
230
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/CreateSchemaInput AWS API Documentation
|
231
|
+
#
|
232
|
+
class CreateSchemaInput < Struct.new(
|
233
|
+
:content,
|
234
|
+
:description,
|
235
|
+
:tags,
|
236
|
+
:type)
|
237
|
+
include Aws::Structure
|
238
|
+
end
|
239
|
+
|
240
|
+
# @note When making an API call, you may pass CreateSchemaRequest
|
241
|
+
# data as a hash:
|
242
|
+
#
|
243
|
+
# {
|
244
|
+
# content: "__stringMin1Max100000", # required
|
245
|
+
# description: "__stringMin0Max256",
|
246
|
+
# registry_name: "__string", # required
|
247
|
+
# schema_name: "__string", # required
|
248
|
+
# tags: {
|
249
|
+
# "__string" => "__string",
|
250
|
+
# },
|
251
|
+
# type: "OpenApi3", # required, accepts OpenApi3
|
252
|
+
# }
|
253
|
+
#
|
254
|
+
# @!attribute [rw] content
|
255
|
+
# @return [String]
|
256
|
+
#
|
257
|
+
# @!attribute [rw] description
|
258
|
+
# @return [String]
|
259
|
+
#
|
260
|
+
# @!attribute [rw] registry_name
|
261
|
+
# @return [String]
|
262
|
+
#
|
263
|
+
# @!attribute [rw] schema_name
|
264
|
+
# @return [String]
|
265
|
+
#
|
266
|
+
# @!attribute [rw] tags
|
267
|
+
# Key-value pairs associated with a resource.
|
268
|
+
# @return [Hash<String,String>]
|
269
|
+
#
|
270
|
+
# @!attribute [rw] type
|
271
|
+
# @return [String]
|
272
|
+
#
|
273
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/CreateSchemaRequest AWS API Documentation
|
274
|
+
#
|
275
|
+
class CreateSchemaRequest < Struct.new(
|
276
|
+
:content,
|
277
|
+
:description,
|
278
|
+
:registry_name,
|
279
|
+
:schema_name,
|
280
|
+
:tags,
|
281
|
+
:type)
|
282
|
+
include Aws::Structure
|
283
|
+
end
|
284
|
+
|
285
|
+
# @!attribute [rw] description
|
286
|
+
# @return [String]
|
287
|
+
#
|
288
|
+
# @!attribute [rw] last_modified
|
289
|
+
# @return [Time]
|
290
|
+
#
|
291
|
+
# @!attribute [rw] schema_arn
|
292
|
+
# @return [String]
|
293
|
+
#
|
294
|
+
# @!attribute [rw] schema_name
|
295
|
+
# @return [String]
|
296
|
+
#
|
297
|
+
# @!attribute [rw] schema_version
|
298
|
+
# @return [String]
|
299
|
+
#
|
300
|
+
# @!attribute [rw] tags
|
301
|
+
# Key-value pairs associated with a resource.
|
302
|
+
# @return [Hash<String,String>]
|
303
|
+
#
|
304
|
+
# @!attribute [rw] type
|
305
|
+
# @return [String]
|
306
|
+
#
|
307
|
+
# @!attribute [rw] version_created_date
|
308
|
+
# @return [Time]
|
309
|
+
#
|
310
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/CreateSchemaResponse AWS API Documentation
|
311
|
+
#
|
312
|
+
class CreateSchemaResponse < Struct.new(
|
313
|
+
:description,
|
314
|
+
:last_modified,
|
315
|
+
:schema_arn,
|
316
|
+
:schema_name,
|
317
|
+
:schema_version,
|
318
|
+
:tags,
|
319
|
+
:type,
|
320
|
+
:version_created_date)
|
321
|
+
include Aws::Structure
|
322
|
+
end
|
323
|
+
|
324
|
+
# @note When making an API call, you may pass DeleteDiscovererRequest
|
325
|
+
# data as a hash:
|
326
|
+
#
|
327
|
+
# {
|
328
|
+
# discoverer_id: "__string", # required
|
329
|
+
# }
|
330
|
+
#
|
331
|
+
# @!attribute [rw] discoverer_id
|
332
|
+
# @return [String]
|
333
|
+
#
|
334
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/DeleteDiscovererRequest AWS API Documentation
|
335
|
+
#
|
336
|
+
class DeleteDiscovererRequest < Struct.new(
|
337
|
+
:discoverer_id)
|
338
|
+
include Aws::Structure
|
339
|
+
end
|
340
|
+
|
341
|
+
# @note When making an API call, you may pass DeleteRegistryRequest
|
342
|
+
# data as a hash:
|
343
|
+
#
|
344
|
+
# {
|
345
|
+
# registry_name: "__string", # required
|
346
|
+
# }
|
347
|
+
#
|
348
|
+
# @!attribute [rw] registry_name
|
349
|
+
# @return [String]
|
350
|
+
#
|
351
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/DeleteRegistryRequest AWS API Documentation
|
352
|
+
#
|
353
|
+
class DeleteRegistryRequest < Struct.new(
|
354
|
+
:registry_name)
|
355
|
+
include Aws::Structure
|
356
|
+
end
|
357
|
+
|
358
|
+
# @note When making an API call, you may pass DeleteSchemaRequest
|
359
|
+
# data as a hash:
|
360
|
+
#
|
361
|
+
# {
|
362
|
+
# registry_name: "__string", # required
|
363
|
+
# schema_name: "__string", # required
|
364
|
+
# }
|
365
|
+
#
|
366
|
+
# @!attribute [rw] registry_name
|
367
|
+
# @return [String]
|
368
|
+
#
|
369
|
+
# @!attribute [rw] schema_name
|
370
|
+
# @return [String]
|
371
|
+
#
|
372
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/DeleteSchemaRequest AWS API Documentation
|
373
|
+
#
|
374
|
+
class DeleteSchemaRequest < Struct.new(
|
375
|
+
:registry_name,
|
376
|
+
:schema_name)
|
377
|
+
include Aws::Structure
|
378
|
+
end
|
379
|
+
|
380
|
+
# @note When making an API call, you may pass DeleteSchemaVersionRequest
|
381
|
+
# data as a hash:
|
382
|
+
#
|
383
|
+
# {
|
384
|
+
# registry_name: "__string", # required
|
385
|
+
# schema_name: "__string", # required
|
386
|
+
# schema_version: "__string", # required
|
387
|
+
# }
|
388
|
+
#
|
389
|
+
# @!attribute [rw] registry_name
|
390
|
+
# @return [String]
|
391
|
+
#
|
392
|
+
# @!attribute [rw] schema_name
|
393
|
+
# @return [String]
|
394
|
+
#
|
395
|
+
# @!attribute [rw] schema_version
|
396
|
+
# @return [String]
|
397
|
+
#
|
398
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/DeleteSchemaVersionRequest AWS API Documentation
|
399
|
+
#
|
400
|
+
class DeleteSchemaVersionRequest < Struct.new(
|
401
|
+
:registry_name,
|
402
|
+
:schema_name,
|
403
|
+
:schema_version)
|
404
|
+
include Aws::Structure
|
405
|
+
end
|
406
|
+
|
407
|
+
# @note When making an API call, you may pass DescribeCodeBindingRequest
|
408
|
+
# data as a hash:
|
409
|
+
#
|
410
|
+
# {
|
411
|
+
# language: "__string", # required
|
412
|
+
# registry_name: "__string", # required
|
413
|
+
# schema_name: "__string", # required
|
414
|
+
# schema_version: "__string",
|
415
|
+
# }
|
416
|
+
#
|
417
|
+
# @!attribute [rw] language
|
418
|
+
# @return [String]
|
419
|
+
#
|
420
|
+
# @!attribute [rw] registry_name
|
421
|
+
# @return [String]
|
422
|
+
#
|
423
|
+
# @!attribute [rw] schema_name
|
424
|
+
# @return [String]
|
425
|
+
#
|
426
|
+
# @!attribute [rw] schema_version
|
427
|
+
# @return [String]
|
428
|
+
#
|
429
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/DescribeCodeBindingRequest AWS API Documentation
|
430
|
+
#
|
431
|
+
class DescribeCodeBindingRequest < Struct.new(
|
432
|
+
:language,
|
433
|
+
:registry_name,
|
434
|
+
:schema_name,
|
435
|
+
:schema_version)
|
436
|
+
include Aws::Structure
|
437
|
+
end
|
438
|
+
|
439
|
+
# @!attribute [rw] creation_date
|
440
|
+
# @return [Time]
|
441
|
+
#
|
442
|
+
# @!attribute [rw] last_modified
|
443
|
+
# @return [Time]
|
444
|
+
#
|
445
|
+
# @!attribute [rw] schema_version
|
446
|
+
# @return [String]
|
447
|
+
#
|
448
|
+
# @!attribute [rw] status
|
449
|
+
# @return [String]
|
450
|
+
#
|
451
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/DescribeCodeBindingResponse AWS API Documentation
|
452
|
+
#
|
453
|
+
class DescribeCodeBindingResponse < Struct.new(
|
454
|
+
:creation_date,
|
455
|
+
:last_modified,
|
456
|
+
:schema_version,
|
457
|
+
:status)
|
458
|
+
include Aws::Structure
|
459
|
+
end
|
460
|
+
|
461
|
+
# @note When making an API call, you may pass DescribeDiscovererRequest
|
462
|
+
# data as a hash:
|
463
|
+
#
|
464
|
+
# {
|
465
|
+
# discoverer_id: "__string", # required
|
466
|
+
# }
|
467
|
+
#
|
468
|
+
# @!attribute [rw] discoverer_id
|
469
|
+
# @return [String]
|
470
|
+
#
|
471
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/DescribeDiscovererRequest AWS API Documentation
|
472
|
+
#
|
473
|
+
class DescribeDiscovererRequest < Struct.new(
|
474
|
+
:discoverer_id)
|
475
|
+
include Aws::Structure
|
476
|
+
end
|
477
|
+
|
478
|
+
# @!attribute [rw] description
|
479
|
+
# @return [String]
|
480
|
+
#
|
481
|
+
# @!attribute [rw] discoverer_arn
|
482
|
+
# @return [String]
|
483
|
+
#
|
484
|
+
# @!attribute [rw] discoverer_id
|
485
|
+
# @return [String]
|
486
|
+
#
|
487
|
+
# @!attribute [rw] source_arn
|
488
|
+
# @return [String]
|
489
|
+
#
|
490
|
+
# @!attribute [rw] state
|
491
|
+
# @return [String]
|
492
|
+
#
|
493
|
+
# @!attribute [rw] tags
|
494
|
+
# Key-value pairs associated with a resource.
|
495
|
+
# @return [Hash<String,String>]
|
496
|
+
#
|
497
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/DescribeDiscovererResponse AWS API Documentation
|
498
|
+
#
|
499
|
+
class DescribeDiscovererResponse < Struct.new(
|
500
|
+
:description,
|
501
|
+
:discoverer_arn,
|
502
|
+
:discoverer_id,
|
503
|
+
:source_arn,
|
504
|
+
:state,
|
505
|
+
:tags)
|
506
|
+
include Aws::Structure
|
507
|
+
end
|
508
|
+
|
509
|
+
# @note When making an API call, you may pass DescribeRegistryRequest
|
510
|
+
# data as a hash:
|
511
|
+
#
|
512
|
+
# {
|
513
|
+
# registry_name: "__string", # required
|
514
|
+
# }
|
515
|
+
#
|
516
|
+
# @!attribute [rw] registry_name
|
517
|
+
# @return [String]
|
518
|
+
#
|
519
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/DescribeRegistryRequest AWS API Documentation
|
520
|
+
#
|
521
|
+
class DescribeRegistryRequest < Struct.new(
|
522
|
+
:registry_name)
|
523
|
+
include Aws::Structure
|
524
|
+
end
|
525
|
+
|
526
|
+
# @!attribute [rw] description
|
527
|
+
# @return [String]
|
528
|
+
#
|
529
|
+
# @!attribute [rw] registry_arn
|
530
|
+
# @return [String]
|
531
|
+
#
|
532
|
+
# @!attribute [rw] registry_name
|
533
|
+
# @return [String]
|
534
|
+
#
|
535
|
+
# @!attribute [rw] tags
|
536
|
+
# Key-value pairs associated with a resource.
|
537
|
+
# @return [Hash<String,String>]
|
538
|
+
#
|
539
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/DescribeRegistryResponse AWS API Documentation
|
540
|
+
#
|
541
|
+
class DescribeRegistryResponse < Struct.new(
|
542
|
+
:description,
|
543
|
+
:registry_arn,
|
544
|
+
:registry_name,
|
545
|
+
:tags)
|
546
|
+
include Aws::Structure
|
547
|
+
end
|
548
|
+
|
549
|
+
# @!attribute [rw] content
|
550
|
+
# @return [String]
|
551
|
+
#
|
552
|
+
# @!attribute [rw] description
|
553
|
+
# The description of the schema.
|
554
|
+
# @return [String]
|
555
|
+
#
|
556
|
+
# @!attribute [rw] last_modified
|
557
|
+
# The date and time that schema was modified.
|
558
|
+
# @return [Time]
|
559
|
+
#
|
560
|
+
# @!attribute [rw] schema_arn
|
561
|
+
# The ARN of the schema.
|
562
|
+
# @return [String]
|
563
|
+
#
|
564
|
+
# @!attribute [rw] schema_name
|
565
|
+
# The name of the schema.
|
566
|
+
# @return [String]
|
567
|
+
#
|
568
|
+
# @!attribute [rw] schema_version
|
569
|
+
# The version number of the schema
|
570
|
+
# @return [String]
|
571
|
+
#
|
572
|
+
# @!attribute [rw] tags
|
573
|
+
# Tags associated with the resource.
|
574
|
+
# @return [Hash<String,String>]
|
575
|
+
#
|
576
|
+
# @!attribute [rw] type
|
577
|
+
# The type of the schema.
|
578
|
+
# @return [String]
|
579
|
+
#
|
580
|
+
# @!attribute [rw] version_created_date
|
581
|
+
# The date the schema version was created.
|
582
|
+
# @return [Time]
|
583
|
+
#
|
584
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/DescribeSchemaOutput AWS API Documentation
|
585
|
+
#
|
586
|
+
class DescribeSchemaOutput < Struct.new(
|
587
|
+
:content,
|
588
|
+
:description,
|
589
|
+
:last_modified,
|
590
|
+
:schema_arn,
|
591
|
+
:schema_name,
|
592
|
+
:schema_version,
|
593
|
+
:tags,
|
594
|
+
:type,
|
595
|
+
:version_created_date)
|
596
|
+
include Aws::Structure
|
597
|
+
end
|
598
|
+
|
599
|
+
# @note When making an API call, you may pass DescribeSchemaRequest
|
600
|
+
# data as a hash:
|
601
|
+
#
|
602
|
+
# {
|
603
|
+
# registry_name: "__string", # required
|
604
|
+
# schema_name: "__string", # required
|
605
|
+
# schema_version: "__string",
|
606
|
+
# }
|
607
|
+
#
|
608
|
+
# @!attribute [rw] registry_name
|
609
|
+
# @return [String]
|
610
|
+
#
|
611
|
+
# @!attribute [rw] schema_name
|
612
|
+
# @return [String]
|
613
|
+
#
|
614
|
+
# @!attribute [rw] schema_version
|
615
|
+
# @return [String]
|
616
|
+
#
|
617
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/DescribeSchemaRequest AWS API Documentation
|
618
|
+
#
|
619
|
+
class DescribeSchemaRequest < Struct.new(
|
620
|
+
:registry_name,
|
621
|
+
:schema_name,
|
622
|
+
:schema_version)
|
623
|
+
include Aws::Structure
|
624
|
+
end
|
625
|
+
|
626
|
+
# @!attribute [rw] content
|
627
|
+
# @return [String]
|
628
|
+
#
|
629
|
+
# @!attribute [rw] description
|
630
|
+
# @return [String]
|
631
|
+
#
|
632
|
+
# @!attribute [rw] last_modified
|
633
|
+
# @return [Time]
|
634
|
+
#
|
635
|
+
# @!attribute [rw] schema_arn
|
636
|
+
# @return [String]
|
637
|
+
#
|
638
|
+
# @!attribute [rw] schema_name
|
639
|
+
# @return [String]
|
640
|
+
#
|
641
|
+
# @!attribute [rw] schema_version
|
642
|
+
# @return [String]
|
643
|
+
#
|
644
|
+
# @!attribute [rw] tags
|
645
|
+
# Key-value pairs associated with a resource.
|
646
|
+
# @return [Hash<String,String>]
|
647
|
+
#
|
648
|
+
# @!attribute [rw] type
|
649
|
+
# @return [String]
|
650
|
+
#
|
651
|
+
# @!attribute [rw] version_created_date
|
652
|
+
# @return [Time]
|
653
|
+
#
|
654
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/DescribeSchemaResponse AWS API Documentation
|
655
|
+
#
|
656
|
+
class DescribeSchemaResponse < Struct.new(
|
657
|
+
:content,
|
658
|
+
:description,
|
659
|
+
:last_modified,
|
660
|
+
:schema_arn,
|
661
|
+
:schema_name,
|
662
|
+
:schema_version,
|
663
|
+
:tags,
|
664
|
+
:type,
|
665
|
+
:version_created_date)
|
666
|
+
include Aws::Structure
|
667
|
+
end
|
668
|
+
|
669
|
+
# @!attribute [rw] description
|
670
|
+
# The description of the discoverer.
|
671
|
+
# @return [String]
|
672
|
+
#
|
673
|
+
# @!attribute [rw] discoverer_arn
|
674
|
+
# The ARN of the discoverer.
|
675
|
+
# @return [String]
|
676
|
+
#
|
677
|
+
# @!attribute [rw] discoverer_id
|
678
|
+
# The ID of the discoverer.
|
679
|
+
# @return [String]
|
680
|
+
#
|
681
|
+
# @!attribute [rw] source_arn
|
682
|
+
# The ARN of the event bus.
|
683
|
+
# @return [String]
|
684
|
+
#
|
685
|
+
# @!attribute [rw] state
|
686
|
+
# The state of the discoverer.
|
687
|
+
# @return [String]
|
688
|
+
#
|
689
|
+
# @!attribute [rw] tags
|
690
|
+
# Tags associated with the resource.
|
691
|
+
# @return [Hash<String,String>]
|
692
|
+
#
|
693
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/DiscovererOutput AWS API Documentation
|
694
|
+
#
|
695
|
+
class DiscovererOutput < Struct.new(
|
696
|
+
:description,
|
697
|
+
:discoverer_arn,
|
698
|
+
:discoverer_id,
|
699
|
+
:source_arn,
|
700
|
+
:state,
|
701
|
+
:tags)
|
702
|
+
include Aws::Structure
|
703
|
+
end
|
704
|
+
|
705
|
+
# @!attribute [rw] discoverer_id
|
706
|
+
# The ID of the discoverer.
|
707
|
+
# @return [String]
|
708
|
+
#
|
709
|
+
# @!attribute [rw] state
|
710
|
+
# The state of the discoverer.
|
711
|
+
# @return [String]
|
712
|
+
#
|
713
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/DiscovererStateOutput AWS API Documentation
|
714
|
+
#
|
715
|
+
class DiscovererStateOutput < Struct.new(
|
716
|
+
:discoverer_id,
|
717
|
+
:state)
|
718
|
+
include Aws::Structure
|
719
|
+
end
|
720
|
+
|
721
|
+
# @!attribute [rw] discoverer_arn
|
722
|
+
# The ARN of the discoverer.
|
723
|
+
# @return [String]
|
724
|
+
#
|
725
|
+
# @!attribute [rw] discoverer_id
|
726
|
+
# The ID of the discoverer.
|
727
|
+
# @return [String]
|
728
|
+
#
|
729
|
+
# @!attribute [rw] source_arn
|
730
|
+
# The ARN of the event bus.
|
731
|
+
# @return [String]
|
732
|
+
#
|
733
|
+
# @!attribute [rw] state
|
734
|
+
# @return [String]
|
735
|
+
#
|
736
|
+
# @!attribute [rw] tags
|
737
|
+
# Tags associated with the resource.
|
738
|
+
# @return [Hash<String,String>]
|
739
|
+
#
|
740
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/DiscovererSummary AWS API Documentation
|
741
|
+
#
|
742
|
+
class DiscovererSummary < Struct.new(
|
743
|
+
:discoverer_arn,
|
744
|
+
:discoverer_id,
|
745
|
+
:source_arn,
|
746
|
+
:state,
|
747
|
+
:tags)
|
748
|
+
include Aws::Structure
|
749
|
+
end
|
750
|
+
|
751
|
+
# @!attribute [rw] code
|
752
|
+
# The error code.
|
753
|
+
# @return [String]
|
754
|
+
#
|
755
|
+
# @!attribute [rw] message
|
756
|
+
# The message string of the error output.
|
757
|
+
# @return [String]
|
758
|
+
#
|
759
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ErrorOutput AWS API Documentation
|
760
|
+
#
|
761
|
+
class ErrorOutput < Struct.new(
|
762
|
+
:code,
|
763
|
+
:message)
|
764
|
+
include Aws::Structure
|
765
|
+
end
|
766
|
+
|
767
|
+
# @!attribute [rw] code
|
768
|
+
# @return [String]
|
769
|
+
#
|
770
|
+
# @!attribute [rw] message
|
771
|
+
# @return [String]
|
772
|
+
#
|
773
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ForbiddenException AWS API Documentation
|
774
|
+
#
|
775
|
+
class ForbiddenException < Struct.new(
|
776
|
+
:code,
|
777
|
+
:message)
|
778
|
+
include Aws::Structure
|
779
|
+
end
|
780
|
+
|
781
|
+
# @note When making an API call, you may pass GetCodeBindingSourceRequest
|
782
|
+
# data as a hash:
|
783
|
+
#
|
784
|
+
# {
|
785
|
+
# language: "__string", # required
|
786
|
+
# registry_name: "__string", # required
|
787
|
+
# schema_name: "__string", # required
|
788
|
+
# schema_version: "__string",
|
789
|
+
# }
|
790
|
+
#
|
791
|
+
# @!attribute [rw] language
|
792
|
+
# @return [String]
|
793
|
+
#
|
794
|
+
# @!attribute [rw] registry_name
|
795
|
+
# @return [String]
|
796
|
+
#
|
797
|
+
# @!attribute [rw] schema_name
|
798
|
+
# @return [String]
|
799
|
+
#
|
800
|
+
# @!attribute [rw] schema_version
|
801
|
+
# @return [String]
|
802
|
+
#
|
803
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/GetCodeBindingSourceRequest AWS API Documentation
|
804
|
+
#
|
805
|
+
class GetCodeBindingSourceRequest < Struct.new(
|
806
|
+
:language,
|
807
|
+
:registry_name,
|
808
|
+
:schema_name,
|
809
|
+
:schema_version)
|
810
|
+
include Aws::Structure
|
811
|
+
end
|
812
|
+
|
813
|
+
# @!attribute [rw] body
|
814
|
+
# @return [String]
|
815
|
+
#
|
816
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/GetCodeBindingSourceResponse AWS API Documentation
|
817
|
+
#
|
818
|
+
class GetCodeBindingSourceResponse < Struct.new(
|
819
|
+
:body)
|
820
|
+
include Aws::Structure
|
821
|
+
end
|
822
|
+
|
823
|
+
# @!attribute [rw] events
|
824
|
+
# An array of strings that
|
825
|
+
# @return [Array<String>]
|
826
|
+
#
|
827
|
+
# @!attribute [rw] type
|
828
|
+
# The type of event.
|
829
|
+
# @return [String]
|
830
|
+
#
|
831
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/GetDiscoveredSchemaInput AWS API Documentation
|
832
|
+
#
|
833
|
+
class GetDiscoveredSchemaInput < Struct.new(
|
834
|
+
:events,
|
835
|
+
:type)
|
836
|
+
include Aws::Structure
|
837
|
+
end
|
838
|
+
|
839
|
+
# @!attribute [rw] content
|
840
|
+
# @return [String]
|
841
|
+
#
|
842
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/GetDiscoveredSchemaOutput AWS API Documentation
|
843
|
+
#
|
844
|
+
class GetDiscoveredSchemaOutput < Struct.new(
|
845
|
+
:content)
|
846
|
+
include Aws::Structure
|
847
|
+
end
|
848
|
+
|
849
|
+
# @note When making an API call, you may pass GetDiscoveredSchemaRequest
|
850
|
+
# data as a hash:
|
851
|
+
#
|
852
|
+
# {
|
853
|
+
# events: ["GetDiscoveredSchemaVersionItemInput"], # required
|
854
|
+
# type: "OpenApi3", # required, accepts OpenApi3
|
855
|
+
# }
|
856
|
+
#
|
857
|
+
# @!attribute [rw] events
|
858
|
+
# @return [Array<String>]
|
859
|
+
#
|
860
|
+
# @!attribute [rw] type
|
861
|
+
# @return [String]
|
862
|
+
#
|
863
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/GetDiscoveredSchemaRequest AWS API Documentation
|
864
|
+
#
|
865
|
+
class GetDiscoveredSchemaRequest < Struct.new(
|
866
|
+
:events,
|
867
|
+
:type)
|
868
|
+
include Aws::Structure
|
869
|
+
end
|
870
|
+
|
871
|
+
# @!attribute [rw] content
|
872
|
+
# @return [String]
|
873
|
+
#
|
874
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/GetDiscoveredSchemaResponse AWS API Documentation
|
875
|
+
#
|
876
|
+
class GetDiscoveredSchemaResponse < Struct.new(
|
877
|
+
:content)
|
878
|
+
include Aws::Structure
|
879
|
+
end
|
880
|
+
|
881
|
+
# @!attribute [rw] code
|
882
|
+
# @return [String]
|
883
|
+
#
|
884
|
+
# @!attribute [rw] message
|
885
|
+
# @return [String]
|
886
|
+
#
|
887
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/GoneException AWS API Documentation
|
888
|
+
#
|
889
|
+
class GoneException < Struct.new(
|
890
|
+
:code,
|
891
|
+
:message)
|
892
|
+
include Aws::Structure
|
893
|
+
end
|
894
|
+
|
895
|
+
# @!attribute [rw] code
|
896
|
+
# @return [String]
|
897
|
+
#
|
898
|
+
# @!attribute [rw] message
|
899
|
+
# @return [String]
|
900
|
+
#
|
901
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/InternalServerErrorException AWS API Documentation
|
902
|
+
#
|
903
|
+
class InternalServerErrorException < Struct.new(
|
904
|
+
:code,
|
905
|
+
:message)
|
906
|
+
include Aws::Structure
|
907
|
+
end
|
908
|
+
|
909
|
+
# @!attribute [rw] discoverers
|
910
|
+
# An array of DiscovererSummary information.
|
911
|
+
# @return [Array<Types::DiscovererSummary>]
|
912
|
+
#
|
913
|
+
# @!attribute [rw] next_token
|
914
|
+
# The token that specifies the next page of results to return. To
|
915
|
+
# request the first page, leave NextToken empty. The token will expire
|
916
|
+
# in 24 hours, and cannot be shared with other accounts.
|
917
|
+
# @return [String]
|
918
|
+
#
|
919
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ListDiscoverersOutput AWS API Documentation
|
920
|
+
#
|
921
|
+
class ListDiscoverersOutput < Struct.new(
|
922
|
+
:discoverers,
|
923
|
+
:next_token)
|
924
|
+
include Aws::Structure
|
925
|
+
end
|
926
|
+
|
927
|
+
# @note When making an API call, you may pass ListDiscoverersRequest
|
928
|
+
# data as a hash:
|
929
|
+
#
|
930
|
+
# {
|
931
|
+
# discoverer_id_prefix: "__string",
|
932
|
+
# limit: 1,
|
933
|
+
# next_token: "__string",
|
934
|
+
# source_arn_prefix: "__string",
|
935
|
+
# }
|
936
|
+
#
|
937
|
+
# @!attribute [rw] discoverer_id_prefix
|
938
|
+
# @return [String]
|
939
|
+
#
|
940
|
+
# @!attribute [rw] limit
|
941
|
+
# @return [Integer]
|
942
|
+
#
|
943
|
+
# @!attribute [rw] next_token
|
944
|
+
# @return [String]
|
945
|
+
#
|
946
|
+
# @!attribute [rw] source_arn_prefix
|
947
|
+
# @return [String]
|
948
|
+
#
|
949
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ListDiscoverersRequest AWS API Documentation
|
950
|
+
#
|
951
|
+
class ListDiscoverersRequest < Struct.new(
|
952
|
+
:discoverer_id_prefix,
|
953
|
+
:limit,
|
954
|
+
:next_token,
|
955
|
+
:source_arn_prefix)
|
956
|
+
include Aws::Structure
|
957
|
+
end
|
958
|
+
|
959
|
+
# @!attribute [rw] discoverers
|
960
|
+
# @return [Array<Types::DiscovererSummary>]
|
961
|
+
#
|
962
|
+
# @!attribute [rw] next_token
|
963
|
+
# @return [String]
|
964
|
+
#
|
965
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ListDiscoverersResponse AWS API Documentation
|
966
|
+
#
|
967
|
+
class ListDiscoverersResponse < Struct.new(
|
968
|
+
:discoverers,
|
969
|
+
:next_token)
|
970
|
+
include Aws::Structure
|
971
|
+
end
|
972
|
+
|
973
|
+
# List the registries.
|
974
|
+
#
|
975
|
+
# @!attribute [rw] next_token
|
976
|
+
# The token that specifies the next page of results to return. To
|
977
|
+
# request the first page, leave NextToken empty. The token will expire
|
978
|
+
# in 24 hours, and cannot be shared with other accounts.
|
979
|
+
# @return [String]
|
980
|
+
#
|
981
|
+
# @!attribute [rw] registries
|
982
|
+
# An array of registry summaries.
|
983
|
+
# @return [Array<Types::RegistrySummary>]
|
984
|
+
#
|
985
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ListRegistriesOutput AWS API Documentation
|
986
|
+
#
|
987
|
+
class ListRegistriesOutput < Struct.new(
|
988
|
+
:next_token,
|
989
|
+
:registries)
|
990
|
+
include Aws::Structure
|
991
|
+
end
|
992
|
+
|
993
|
+
# @note When making an API call, you may pass ListRegistriesRequest
|
994
|
+
# data as a hash:
|
995
|
+
#
|
996
|
+
# {
|
997
|
+
# limit: 1,
|
998
|
+
# next_token: "__string",
|
999
|
+
# registry_name_prefix: "__string",
|
1000
|
+
# scope: "__string",
|
1001
|
+
# }
|
1002
|
+
#
|
1003
|
+
# @!attribute [rw] limit
|
1004
|
+
# @return [Integer]
|
1005
|
+
#
|
1006
|
+
# @!attribute [rw] next_token
|
1007
|
+
# @return [String]
|
1008
|
+
#
|
1009
|
+
# @!attribute [rw] registry_name_prefix
|
1010
|
+
# @return [String]
|
1011
|
+
#
|
1012
|
+
# @!attribute [rw] scope
|
1013
|
+
# @return [String]
|
1014
|
+
#
|
1015
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ListRegistriesRequest AWS API Documentation
|
1016
|
+
#
|
1017
|
+
class ListRegistriesRequest < Struct.new(
|
1018
|
+
:limit,
|
1019
|
+
:next_token,
|
1020
|
+
:registry_name_prefix,
|
1021
|
+
:scope)
|
1022
|
+
include Aws::Structure
|
1023
|
+
end
|
1024
|
+
|
1025
|
+
# @!attribute [rw] next_token
|
1026
|
+
# @return [String]
|
1027
|
+
#
|
1028
|
+
# @!attribute [rw] registries
|
1029
|
+
# @return [Array<Types::RegistrySummary>]
|
1030
|
+
#
|
1031
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ListRegistriesResponse AWS API Documentation
|
1032
|
+
#
|
1033
|
+
class ListRegistriesResponse < Struct.new(
|
1034
|
+
:next_token,
|
1035
|
+
:registries)
|
1036
|
+
include Aws::Structure
|
1037
|
+
end
|
1038
|
+
|
1039
|
+
# @!attribute [rw] next_token
|
1040
|
+
# The token that specifies the next page of results to return. To
|
1041
|
+
# request the first page, leave NextToken empty. The token will expire
|
1042
|
+
# in 24 hours, and cannot be shared with other accounts.
|
1043
|
+
# @return [String]
|
1044
|
+
#
|
1045
|
+
# @!attribute [rw] schema_versions
|
1046
|
+
# An array of schema version summaries.
|
1047
|
+
# @return [Array<Types::SchemaVersionSummary>]
|
1048
|
+
#
|
1049
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ListSchemaVersionsOutput AWS API Documentation
|
1050
|
+
#
|
1051
|
+
class ListSchemaVersionsOutput < Struct.new(
|
1052
|
+
:next_token,
|
1053
|
+
:schema_versions)
|
1054
|
+
include Aws::Structure
|
1055
|
+
end
|
1056
|
+
|
1057
|
+
# @note When making an API call, you may pass ListSchemaVersionsRequest
|
1058
|
+
# data as a hash:
|
1059
|
+
#
|
1060
|
+
# {
|
1061
|
+
# limit: 1,
|
1062
|
+
# next_token: "__string",
|
1063
|
+
# registry_name: "__string", # required
|
1064
|
+
# schema_name: "__string", # required
|
1065
|
+
# }
|
1066
|
+
#
|
1067
|
+
# @!attribute [rw] limit
|
1068
|
+
# @return [Integer]
|
1069
|
+
#
|
1070
|
+
# @!attribute [rw] next_token
|
1071
|
+
# @return [String]
|
1072
|
+
#
|
1073
|
+
# @!attribute [rw] registry_name
|
1074
|
+
# @return [String]
|
1075
|
+
#
|
1076
|
+
# @!attribute [rw] schema_name
|
1077
|
+
# @return [String]
|
1078
|
+
#
|
1079
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ListSchemaVersionsRequest AWS API Documentation
|
1080
|
+
#
|
1081
|
+
class ListSchemaVersionsRequest < Struct.new(
|
1082
|
+
:limit,
|
1083
|
+
:next_token,
|
1084
|
+
:registry_name,
|
1085
|
+
:schema_name)
|
1086
|
+
include Aws::Structure
|
1087
|
+
end
|
1088
|
+
|
1089
|
+
# @!attribute [rw] next_token
|
1090
|
+
# @return [String]
|
1091
|
+
#
|
1092
|
+
# @!attribute [rw] schema_versions
|
1093
|
+
# @return [Array<Types::SchemaVersionSummary>]
|
1094
|
+
#
|
1095
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ListSchemaVersionsResponse AWS API Documentation
|
1096
|
+
#
|
1097
|
+
class ListSchemaVersionsResponse < Struct.new(
|
1098
|
+
:next_token,
|
1099
|
+
:schema_versions)
|
1100
|
+
include Aws::Structure
|
1101
|
+
end
|
1102
|
+
|
1103
|
+
# @!attribute [rw] next_token
|
1104
|
+
# The token that specifies the next page of results to return. To
|
1105
|
+
# request the first page, leave NextToken empty. The token will expire
|
1106
|
+
# in 24 hours, and cannot be shared with other accounts.
|
1107
|
+
# @return [String]
|
1108
|
+
#
|
1109
|
+
# @!attribute [rw] schemas
|
1110
|
+
# An array of schema summaries.
|
1111
|
+
# @return [Array<Types::SchemaSummary>]
|
1112
|
+
#
|
1113
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ListSchemasOutput AWS API Documentation
|
1114
|
+
#
|
1115
|
+
class ListSchemasOutput < Struct.new(
|
1116
|
+
:next_token,
|
1117
|
+
:schemas)
|
1118
|
+
include Aws::Structure
|
1119
|
+
end
|
1120
|
+
|
1121
|
+
# @note When making an API call, you may pass ListSchemasRequest
|
1122
|
+
# data as a hash:
|
1123
|
+
#
|
1124
|
+
# {
|
1125
|
+
# limit: 1,
|
1126
|
+
# next_token: "__string",
|
1127
|
+
# registry_name: "__string", # required
|
1128
|
+
# schema_name_prefix: "__string",
|
1129
|
+
# }
|
1130
|
+
#
|
1131
|
+
# @!attribute [rw] limit
|
1132
|
+
# @return [Integer]
|
1133
|
+
#
|
1134
|
+
# @!attribute [rw] next_token
|
1135
|
+
# @return [String]
|
1136
|
+
#
|
1137
|
+
# @!attribute [rw] registry_name
|
1138
|
+
# @return [String]
|
1139
|
+
#
|
1140
|
+
# @!attribute [rw] schema_name_prefix
|
1141
|
+
# @return [String]
|
1142
|
+
#
|
1143
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ListSchemasRequest AWS API Documentation
|
1144
|
+
#
|
1145
|
+
class ListSchemasRequest < Struct.new(
|
1146
|
+
:limit,
|
1147
|
+
:next_token,
|
1148
|
+
:registry_name,
|
1149
|
+
:schema_name_prefix)
|
1150
|
+
include Aws::Structure
|
1151
|
+
end
|
1152
|
+
|
1153
|
+
# @!attribute [rw] next_token
|
1154
|
+
# @return [String]
|
1155
|
+
#
|
1156
|
+
# @!attribute [rw] schemas
|
1157
|
+
# @return [Array<Types::SchemaSummary>]
|
1158
|
+
#
|
1159
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ListSchemasResponse AWS API Documentation
|
1160
|
+
#
|
1161
|
+
class ListSchemasResponse < Struct.new(
|
1162
|
+
:next_token,
|
1163
|
+
:schemas)
|
1164
|
+
include Aws::Structure
|
1165
|
+
end
|
1166
|
+
|
1167
|
+
# @note When making an API call, you may pass ListTagsForResourceRequest
|
1168
|
+
# data as a hash:
|
1169
|
+
#
|
1170
|
+
# {
|
1171
|
+
# resource_arn: "__string", # required
|
1172
|
+
# }
|
1173
|
+
#
|
1174
|
+
# @!attribute [rw] resource_arn
|
1175
|
+
# @return [String]
|
1176
|
+
#
|
1177
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ListTagsForResourceRequest AWS API Documentation
|
1178
|
+
#
|
1179
|
+
class ListTagsForResourceRequest < Struct.new(
|
1180
|
+
:resource_arn)
|
1181
|
+
include Aws::Structure
|
1182
|
+
end
|
1183
|
+
|
1184
|
+
# @!attribute [rw] tags
|
1185
|
+
# Key-value pairs associated with a resource.
|
1186
|
+
# @return [Hash<String,String>]
|
1187
|
+
#
|
1188
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ListTagsForResourceResponse AWS API Documentation
|
1189
|
+
#
|
1190
|
+
class ListTagsForResourceResponse < Struct.new(
|
1191
|
+
:tags)
|
1192
|
+
include Aws::Structure
|
1193
|
+
end
|
1194
|
+
|
1195
|
+
# @!attribute [rw] role_arn
|
1196
|
+
# @return [String]
|
1197
|
+
#
|
1198
|
+
# @!attribute [rw] timeout
|
1199
|
+
# @return [Integer]
|
1200
|
+
#
|
1201
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/LockServiceLinkedRoleInput AWS API Documentation
|
1202
|
+
#
|
1203
|
+
class LockServiceLinkedRoleInput < Struct.new(
|
1204
|
+
:role_arn,
|
1205
|
+
:timeout)
|
1206
|
+
include Aws::Structure
|
1207
|
+
end
|
1208
|
+
|
1209
|
+
# @!attribute [rw] can_be_deleted
|
1210
|
+
# @return [Boolean]
|
1211
|
+
#
|
1212
|
+
# @!attribute [rw] reason_of_failure
|
1213
|
+
# @return [String]
|
1214
|
+
#
|
1215
|
+
# @!attribute [rw] related_resources
|
1216
|
+
# @return [Array<Types::DiscovererSummary>]
|
1217
|
+
#
|
1218
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/LockServiceLinkedRoleOutput AWS API Documentation
|
1219
|
+
#
|
1220
|
+
class LockServiceLinkedRoleOutput < Struct.new(
|
1221
|
+
:can_be_deleted,
|
1222
|
+
:reason_of_failure,
|
1223
|
+
:related_resources)
|
1224
|
+
include Aws::Structure
|
1225
|
+
end
|
1226
|
+
|
1227
|
+
# @note When making an API call, you may pass LockServiceLinkedRoleRequest
|
1228
|
+
# data as a hash:
|
1229
|
+
#
|
1230
|
+
# {
|
1231
|
+
# role_arn: "__stringMin1Max1600", # required
|
1232
|
+
# timeout: 1, # required
|
1233
|
+
# }
|
1234
|
+
#
|
1235
|
+
# @!attribute [rw] role_arn
|
1236
|
+
# @return [String]
|
1237
|
+
#
|
1238
|
+
# @!attribute [rw] timeout
|
1239
|
+
# @return [Integer]
|
1240
|
+
#
|
1241
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/LockServiceLinkedRoleRequest AWS API Documentation
|
1242
|
+
#
|
1243
|
+
class LockServiceLinkedRoleRequest < Struct.new(
|
1244
|
+
:role_arn,
|
1245
|
+
:timeout)
|
1246
|
+
include Aws::Structure
|
1247
|
+
end
|
1248
|
+
|
1249
|
+
# @!attribute [rw] can_be_deleted
|
1250
|
+
# @return [Boolean]
|
1251
|
+
#
|
1252
|
+
# @!attribute [rw] reason_of_failure
|
1253
|
+
# @return [String]
|
1254
|
+
#
|
1255
|
+
# @!attribute [rw] related_resources
|
1256
|
+
# @return [Array<Types::DiscovererSummary>]
|
1257
|
+
#
|
1258
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/LockServiceLinkedRoleResponse AWS API Documentation
|
1259
|
+
#
|
1260
|
+
class LockServiceLinkedRoleResponse < Struct.new(
|
1261
|
+
:can_be_deleted,
|
1262
|
+
:reason_of_failure,
|
1263
|
+
:related_resources)
|
1264
|
+
include Aws::Structure
|
1265
|
+
end
|
1266
|
+
|
1267
|
+
# @!attribute [rw] code
|
1268
|
+
# @return [String]
|
1269
|
+
#
|
1270
|
+
# @!attribute [rw] message
|
1271
|
+
# @return [String]
|
1272
|
+
#
|
1273
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/NotFoundException AWS API Documentation
|
1274
|
+
#
|
1275
|
+
class NotFoundException < Struct.new(
|
1276
|
+
:code,
|
1277
|
+
:message)
|
1278
|
+
include Aws::Structure
|
1279
|
+
end
|
1280
|
+
|
1281
|
+
# @note When making an API call, you may pass PutCodeBindingRequest
|
1282
|
+
# data as a hash:
|
1283
|
+
#
|
1284
|
+
# {
|
1285
|
+
# language: "__string", # required
|
1286
|
+
# registry_name: "__string", # required
|
1287
|
+
# schema_name: "__string", # required
|
1288
|
+
# schema_version: "__string",
|
1289
|
+
# }
|
1290
|
+
#
|
1291
|
+
# @!attribute [rw] language
|
1292
|
+
# @return [String]
|
1293
|
+
#
|
1294
|
+
# @!attribute [rw] registry_name
|
1295
|
+
# @return [String]
|
1296
|
+
#
|
1297
|
+
# @!attribute [rw] schema_name
|
1298
|
+
# @return [String]
|
1299
|
+
#
|
1300
|
+
# @!attribute [rw] schema_version
|
1301
|
+
# @return [String]
|
1302
|
+
#
|
1303
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/PutCodeBindingRequest AWS API Documentation
|
1304
|
+
#
|
1305
|
+
class PutCodeBindingRequest < Struct.new(
|
1306
|
+
:language,
|
1307
|
+
:registry_name,
|
1308
|
+
:schema_name,
|
1309
|
+
:schema_version)
|
1310
|
+
include Aws::Structure
|
1311
|
+
end
|
1312
|
+
|
1313
|
+
# @!attribute [rw] creation_date
|
1314
|
+
# @return [Time]
|
1315
|
+
#
|
1316
|
+
# @!attribute [rw] last_modified
|
1317
|
+
# @return [Time]
|
1318
|
+
#
|
1319
|
+
# @!attribute [rw] schema_version
|
1320
|
+
# @return [String]
|
1321
|
+
#
|
1322
|
+
# @!attribute [rw] status
|
1323
|
+
# @return [String]
|
1324
|
+
#
|
1325
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/PutCodeBindingResponse AWS API Documentation
|
1326
|
+
#
|
1327
|
+
class PutCodeBindingResponse < Struct.new(
|
1328
|
+
:creation_date,
|
1329
|
+
:last_modified,
|
1330
|
+
:schema_version,
|
1331
|
+
:status)
|
1332
|
+
include Aws::Structure
|
1333
|
+
end
|
1334
|
+
|
1335
|
+
# @!attribute [rw] description
|
1336
|
+
# The description of the registry.
|
1337
|
+
# @return [String]
|
1338
|
+
#
|
1339
|
+
# @!attribute [rw] registry_arn
|
1340
|
+
# The ARN of the registry.
|
1341
|
+
# @return [String]
|
1342
|
+
#
|
1343
|
+
# @!attribute [rw] registry_name
|
1344
|
+
# The name of the registry.
|
1345
|
+
# @return [String]
|
1346
|
+
#
|
1347
|
+
# @!attribute [rw] tags
|
1348
|
+
# Tags associated with the registry.
|
1349
|
+
# @return [Hash<String,String>]
|
1350
|
+
#
|
1351
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/RegistryOutput AWS API Documentation
|
1352
|
+
#
|
1353
|
+
class RegistryOutput < Struct.new(
|
1354
|
+
:description,
|
1355
|
+
:registry_arn,
|
1356
|
+
:registry_name,
|
1357
|
+
:tags)
|
1358
|
+
include Aws::Structure
|
1359
|
+
end
|
1360
|
+
|
1361
|
+
# @!attribute [rw] registry_arn
|
1362
|
+
# The ARN of the registry.
|
1363
|
+
# @return [String]
|
1364
|
+
#
|
1365
|
+
# @!attribute [rw] registry_name
|
1366
|
+
# The name of the registry.
|
1367
|
+
# @return [String]
|
1368
|
+
#
|
1369
|
+
# @!attribute [rw] tags
|
1370
|
+
# Tags associated with the registry.
|
1371
|
+
# @return [Hash<String,String>]
|
1372
|
+
#
|
1373
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/RegistrySummary AWS API Documentation
|
1374
|
+
#
|
1375
|
+
class RegistrySummary < Struct.new(
|
1376
|
+
:registry_arn,
|
1377
|
+
:registry_name,
|
1378
|
+
:tags)
|
1379
|
+
include Aws::Structure
|
1380
|
+
end
|
1381
|
+
|
1382
|
+
# @!attribute [rw] description
|
1383
|
+
# The description of the schema.
|
1384
|
+
# @return [String]
|
1385
|
+
#
|
1386
|
+
# @!attribute [rw] last_modified
|
1387
|
+
# The date and time that schema was modified.
|
1388
|
+
# @return [Time]
|
1389
|
+
#
|
1390
|
+
# @!attribute [rw] schema_arn
|
1391
|
+
# The ARN of the schema.
|
1392
|
+
# @return [String]
|
1393
|
+
#
|
1394
|
+
# @!attribute [rw] schema_name
|
1395
|
+
# The name of the schema.
|
1396
|
+
# @return [String]
|
1397
|
+
#
|
1398
|
+
# @!attribute [rw] schema_version
|
1399
|
+
# The version number of the schema
|
1400
|
+
# @return [String]
|
1401
|
+
#
|
1402
|
+
# @!attribute [rw] tags
|
1403
|
+
# Key-value pairs associated with a resource.
|
1404
|
+
# @return [Hash<String,String>]
|
1405
|
+
#
|
1406
|
+
# @!attribute [rw] type
|
1407
|
+
# The type of the schema.
|
1408
|
+
# @return [String]
|
1409
|
+
#
|
1410
|
+
# @!attribute [rw] version_created_date
|
1411
|
+
# The date the schema version was created.
|
1412
|
+
# @return [Time]
|
1413
|
+
#
|
1414
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/SchemaOutput AWS API Documentation
|
1415
|
+
#
|
1416
|
+
class SchemaOutput < Struct.new(
|
1417
|
+
:description,
|
1418
|
+
:last_modified,
|
1419
|
+
:schema_arn,
|
1420
|
+
:schema_name,
|
1421
|
+
:schema_version,
|
1422
|
+
:tags,
|
1423
|
+
:type,
|
1424
|
+
:version_created_date)
|
1425
|
+
include Aws::Structure
|
1426
|
+
end
|
1427
|
+
|
1428
|
+
# A summary of schema details.
|
1429
|
+
#
|
1430
|
+
# @!attribute [rw] last_modified
|
1431
|
+
# The date and time that schema was modified.
|
1432
|
+
# @return [Time]
|
1433
|
+
#
|
1434
|
+
# @!attribute [rw] schema_arn
|
1435
|
+
# The ARN of the schema.
|
1436
|
+
# @return [String]
|
1437
|
+
#
|
1438
|
+
# @!attribute [rw] schema_name
|
1439
|
+
# The name of the schema.
|
1440
|
+
# @return [String]
|
1441
|
+
#
|
1442
|
+
# @!attribute [rw] tags
|
1443
|
+
# Tags associated with the schema.
|
1444
|
+
# @return [Hash<String,String>]
|
1445
|
+
#
|
1446
|
+
# @!attribute [rw] version_count
|
1447
|
+
# The number of versions available for the schema.
|
1448
|
+
# @return [Integer]
|
1449
|
+
#
|
1450
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/SchemaSummary AWS API Documentation
|
1451
|
+
#
|
1452
|
+
class SchemaSummary < Struct.new(
|
1453
|
+
:last_modified,
|
1454
|
+
:schema_arn,
|
1455
|
+
:schema_name,
|
1456
|
+
:tags,
|
1457
|
+
:version_count)
|
1458
|
+
include Aws::Structure
|
1459
|
+
end
|
1460
|
+
|
1461
|
+
# @!attribute [rw] schema_arn
|
1462
|
+
# The ARN of the schema version.
|
1463
|
+
# @return [String]
|
1464
|
+
#
|
1465
|
+
# @!attribute [rw] schema_name
|
1466
|
+
# The name of the schema.
|
1467
|
+
# @return [String]
|
1468
|
+
#
|
1469
|
+
# @!attribute [rw] schema_version
|
1470
|
+
# The version number of the schema.
|
1471
|
+
# @return [String]
|
1472
|
+
#
|
1473
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/SchemaVersionSummary AWS API Documentation
|
1474
|
+
#
|
1475
|
+
class SchemaVersionSummary < Struct.new(
|
1476
|
+
:schema_arn,
|
1477
|
+
:schema_name,
|
1478
|
+
:schema_version)
|
1479
|
+
include Aws::Structure
|
1480
|
+
end
|
1481
|
+
|
1482
|
+
# @!attribute [rw] registry_name
|
1483
|
+
# The name of the registry.
|
1484
|
+
# @return [String]
|
1485
|
+
#
|
1486
|
+
# @!attribute [rw] schema_arn
|
1487
|
+
# The ARN of the schema.
|
1488
|
+
# @return [String]
|
1489
|
+
#
|
1490
|
+
# @!attribute [rw] schema_name
|
1491
|
+
# The name of the schema.
|
1492
|
+
# @return [String]
|
1493
|
+
#
|
1494
|
+
# @!attribute [rw] schema_versions
|
1495
|
+
# An array of schema version summaries.
|
1496
|
+
# @return [Array<Types::SearchSchemaVersionSummary>]
|
1497
|
+
#
|
1498
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/SearchSchemaSummary AWS API Documentation
|
1499
|
+
#
|
1500
|
+
class SearchSchemaSummary < Struct.new(
|
1501
|
+
:registry_name,
|
1502
|
+
:schema_arn,
|
1503
|
+
:schema_name,
|
1504
|
+
:schema_versions)
|
1505
|
+
include Aws::Structure
|
1506
|
+
end
|
1507
|
+
|
1508
|
+
# @!attribute [rw] created_date
|
1509
|
+
# @return [Time]
|
1510
|
+
#
|
1511
|
+
# @!attribute [rw] schema_version
|
1512
|
+
# The version number of the schema
|
1513
|
+
# @return [String]
|
1514
|
+
#
|
1515
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/SearchSchemaVersionSummary AWS API Documentation
|
1516
|
+
#
|
1517
|
+
class SearchSchemaVersionSummary < Struct.new(
|
1518
|
+
:created_date,
|
1519
|
+
:schema_version)
|
1520
|
+
include Aws::Structure
|
1521
|
+
end
|
1522
|
+
|
1523
|
+
# @!attribute [rw] next_token
|
1524
|
+
# The token that specifies the next page of results to return. To
|
1525
|
+
# request the first page, leave NextToken empty. The token will expire
|
1526
|
+
# in 24 hours, and cannot be shared with other accounts.
|
1527
|
+
# @return [String]
|
1528
|
+
#
|
1529
|
+
# @!attribute [rw] schemas
|
1530
|
+
# An array of SearchSchemaSummary information.
|
1531
|
+
# @return [Array<Types::SearchSchemaSummary>]
|
1532
|
+
#
|
1533
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/SearchSchemasOutput AWS API Documentation
|
1534
|
+
#
|
1535
|
+
class SearchSchemasOutput < Struct.new(
|
1536
|
+
:next_token,
|
1537
|
+
:schemas)
|
1538
|
+
include Aws::Structure
|
1539
|
+
end
|
1540
|
+
|
1541
|
+
# @note When making an API call, you may pass SearchSchemasRequest
|
1542
|
+
# data as a hash:
|
1543
|
+
#
|
1544
|
+
# {
|
1545
|
+
# keywords: "__string", # required
|
1546
|
+
# limit: 1,
|
1547
|
+
# next_token: "__string",
|
1548
|
+
# registry_name: "__string", # required
|
1549
|
+
# }
|
1550
|
+
#
|
1551
|
+
# @!attribute [rw] keywords
|
1552
|
+
# @return [String]
|
1553
|
+
#
|
1554
|
+
# @!attribute [rw] limit
|
1555
|
+
# @return [Integer]
|
1556
|
+
#
|
1557
|
+
# @!attribute [rw] next_token
|
1558
|
+
# @return [String]
|
1559
|
+
#
|
1560
|
+
# @!attribute [rw] registry_name
|
1561
|
+
# @return [String]
|
1562
|
+
#
|
1563
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/SearchSchemasRequest AWS API Documentation
|
1564
|
+
#
|
1565
|
+
class SearchSchemasRequest < Struct.new(
|
1566
|
+
:keywords,
|
1567
|
+
:limit,
|
1568
|
+
:next_token,
|
1569
|
+
:registry_name)
|
1570
|
+
include Aws::Structure
|
1571
|
+
end
|
1572
|
+
|
1573
|
+
# @!attribute [rw] next_token
|
1574
|
+
# @return [String]
|
1575
|
+
#
|
1576
|
+
# @!attribute [rw] schemas
|
1577
|
+
# @return [Array<Types::SearchSchemaSummary>]
|
1578
|
+
#
|
1579
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/SearchSchemasResponse AWS API Documentation
|
1580
|
+
#
|
1581
|
+
class SearchSchemasResponse < Struct.new(
|
1582
|
+
:next_token,
|
1583
|
+
:schemas)
|
1584
|
+
include Aws::Structure
|
1585
|
+
end
|
1586
|
+
|
1587
|
+
# @!attribute [rw] code
|
1588
|
+
# @return [String]
|
1589
|
+
#
|
1590
|
+
# @!attribute [rw] message
|
1591
|
+
# @return [String]
|
1592
|
+
#
|
1593
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/ServiceUnavailableException AWS API Documentation
|
1594
|
+
#
|
1595
|
+
class ServiceUnavailableException < Struct.new(
|
1596
|
+
:code,
|
1597
|
+
:message)
|
1598
|
+
include Aws::Structure
|
1599
|
+
end
|
1600
|
+
|
1601
|
+
# @note When making an API call, you may pass StartDiscovererRequest
|
1602
|
+
# data as a hash:
|
1603
|
+
#
|
1604
|
+
# {
|
1605
|
+
# discoverer_id: "__string", # required
|
1606
|
+
# }
|
1607
|
+
#
|
1608
|
+
# @!attribute [rw] discoverer_id
|
1609
|
+
# @return [String]
|
1610
|
+
#
|
1611
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/StartDiscovererRequest AWS API Documentation
|
1612
|
+
#
|
1613
|
+
class StartDiscovererRequest < Struct.new(
|
1614
|
+
:discoverer_id)
|
1615
|
+
include Aws::Structure
|
1616
|
+
end
|
1617
|
+
|
1618
|
+
# @!attribute [rw] discoverer_id
|
1619
|
+
# @return [String]
|
1620
|
+
#
|
1621
|
+
# @!attribute [rw] state
|
1622
|
+
# @return [String]
|
1623
|
+
#
|
1624
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/StartDiscovererResponse AWS API Documentation
|
1625
|
+
#
|
1626
|
+
class StartDiscovererResponse < Struct.new(
|
1627
|
+
:discoverer_id,
|
1628
|
+
:state)
|
1629
|
+
include Aws::Structure
|
1630
|
+
end
|
1631
|
+
|
1632
|
+
# @note When making an API call, you may pass StopDiscovererRequest
|
1633
|
+
# data as a hash:
|
1634
|
+
#
|
1635
|
+
# {
|
1636
|
+
# discoverer_id: "__string", # required
|
1637
|
+
# }
|
1638
|
+
#
|
1639
|
+
# @!attribute [rw] discoverer_id
|
1640
|
+
# @return [String]
|
1641
|
+
#
|
1642
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/StopDiscovererRequest AWS API Documentation
|
1643
|
+
#
|
1644
|
+
class StopDiscovererRequest < Struct.new(
|
1645
|
+
:discoverer_id)
|
1646
|
+
include Aws::Structure
|
1647
|
+
end
|
1648
|
+
|
1649
|
+
# @!attribute [rw] discoverer_id
|
1650
|
+
# @return [String]
|
1651
|
+
#
|
1652
|
+
# @!attribute [rw] state
|
1653
|
+
# @return [String]
|
1654
|
+
#
|
1655
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/StopDiscovererResponse AWS API Documentation
|
1656
|
+
#
|
1657
|
+
class StopDiscovererResponse < Struct.new(
|
1658
|
+
:discoverer_id,
|
1659
|
+
:state)
|
1660
|
+
include Aws::Structure
|
1661
|
+
end
|
1662
|
+
|
1663
|
+
# @!attribute [rw] tags
|
1664
|
+
# Key-value pairs associated with a resource.
|
1665
|
+
# @return [Hash<String,String>]
|
1666
|
+
#
|
1667
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/TagResourceInput AWS API Documentation
|
1668
|
+
#
|
1669
|
+
class TagResourceInput < Struct.new(
|
1670
|
+
:tags)
|
1671
|
+
include Aws::Structure
|
1672
|
+
end
|
1673
|
+
|
1674
|
+
# @note When making an API call, you may pass TagResourceRequest
|
1675
|
+
# data as a hash:
|
1676
|
+
#
|
1677
|
+
# {
|
1678
|
+
# resource_arn: "__string", # required
|
1679
|
+
# tags: { # required
|
1680
|
+
# "__string" => "__string",
|
1681
|
+
# },
|
1682
|
+
# }
|
1683
|
+
#
|
1684
|
+
# @!attribute [rw] resource_arn
|
1685
|
+
# @return [String]
|
1686
|
+
#
|
1687
|
+
# @!attribute [rw] tags
|
1688
|
+
# Key-value pairs associated with a resource.
|
1689
|
+
# @return [Hash<String,String>]
|
1690
|
+
#
|
1691
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/TagResourceRequest AWS API Documentation
|
1692
|
+
#
|
1693
|
+
class TagResourceRequest < Struct.new(
|
1694
|
+
:resource_arn,
|
1695
|
+
:tags)
|
1696
|
+
include Aws::Structure
|
1697
|
+
end
|
1698
|
+
|
1699
|
+
# @!attribute [rw] code
|
1700
|
+
# @return [String]
|
1701
|
+
#
|
1702
|
+
# @!attribute [rw] message
|
1703
|
+
# @return [String]
|
1704
|
+
#
|
1705
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/TooManyRequestsException AWS API Documentation
|
1706
|
+
#
|
1707
|
+
class TooManyRequestsException < Struct.new(
|
1708
|
+
:code,
|
1709
|
+
:message)
|
1710
|
+
include Aws::Structure
|
1711
|
+
end
|
1712
|
+
|
1713
|
+
# @!attribute [rw] code
|
1714
|
+
# @return [String]
|
1715
|
+
#
|
1716
|
+
# @!attribute [rw] message
|
1717
|
+
# @return [String]
|
1718
|
+
#
|
1719
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/UnauthorizedException AWS API Documentation
|
1720
|
+
#
|
1721
|
+
class UnauthorizedException < Struct.new(
|
1722
|
+
:code,
|
1723
|
+
:message)
|
1724
|
+
include Aws::Structure
|
1725
|
+
end
|
1726
|
+
|
1727
|
+
# @!attribute [rw] role_arn
|
1728
|
+
# @return [String]
|
1729
|
+
#
|
1730
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/UnlockServiceLinkedRoleInput AWS API Documentation
|
1731
|
+
#
|
1732
|
+
class UnlockServiceLinkedRoleInput < Struct.new(
|
1733
|
+
:role_arn)
|
1734
|
+
include Aws::Structure
|
1735
|
+
end
|
1736
|
+
|
1737
|
+
# @note When making an API call, you may pass UnlockServiceLinkedRoleRequest
|
1738
|
+
# data as a hash:
|
1739
|
+
#
|
1740
|
+
# {
|
1741
|
+
# role_arn: "__stringMin1Max1600", # required
|
1742
|
+
# }
|
1743
|
+
#
|
1744
|
+
# @!attribute [rw] role_arn
|
1745
|
+
# @return [String]
|
1746
|
+
#
|
1747
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/UnlockServiceLinkedRoleRequest AWS API Documentation
|
1748
|
+
#
|
1749
|
+
class UnlockServiceLinkedRoleRequest < Struct.new(
|
1750
|
+
:role_arn)
|
1751
|
+
include Aws::Structure
|
1752
|
+
end
|
1753
|
+
|
1754
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/UnlockServiceLinkedRoleResponse AWS API Documentation
|
1755
|
+
#
|
1756
|
+
class UnlockServiceLinkedRoleResponse < Aws::EmptyStructure; end
|
1757
|
+
|
1758
|
+
# @note When making an API call, you may pass UntagResourceRequest
|
1759
|
+
# data as a hash:
|
1760
|
+
#
|
1761
|
+
# {
|
1762
|
+
# resource_arn: "__string", # required
|
1763
|
+
# tag_keys: ["__string"], # required
|
1764
|
+
# }
|
1765
|
+
#
|
1766
|
+
# @!attribute [rw] resource_arn
|
1767
|
+
# @return [String]
|
1768
|
+
#
|
1769
|
+
# @!attribute [rw] tag_keys
|
1770
|
+
# @return [Array<String>]
|
1771
|
+
#
|
1772
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/UntagResourceRequest AWS API Documentation
|
1773
|
+
#
|
1774
|
+
class UntagResourceRequest < Struct.new(
|
1775
|
+
:resource_arn,
|
1776
|
+
:tag_keys)
|
1777
|
+
include Aws::Structure
|
1778
|
+
end
|
1779
|
+
|
1780
|
+
# @!attribute [rw] description
|
1781
|
+
# The description of the discoverer to update.
|
1782
|
+
# @return [String]
|
1783
|
+
#
|
1784
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/UpdateDiscovererInput AWS API Documentation
|
1785
|
+
#
|
1786
|
+
class UpdateDiscovererInput < Struct.new(
|
1787
|
+
:description)
|
1788
|
+
include Aws::Structure
|
1789
|
+
end
|
1790
|
+
|
1791
|
+
# @note When making an API call, you may pass UpdateDiscovererRequest
|
1792
|
+
# data as a hash:
|
1793
|
+
#
|
1794
|
+
# {
|
1795
|
+
# description: "__stringMin0Max256",
|
1796
|
+
# discoverer_id: "__string", # required
|
1797
|
+
# }
|
1798
|
+
#
|
1799
|
+
# @!attribute [rw] description
|
1800
|
+
# @return [String]
|
1801
|
+
#
|
1802
|
+
# @!attribute [rw] discoverer_id
|
1803
|
+
# @return [String]
|
1804
|
+
#
|
1805
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/UpdateDiscovererRequest AWS API Documentation
|
1806
|
+
#
|
1807
|
+
class UpdateDiscovererRequest < Struct.new(
|
1808
|
+
:description,
|
1809
|
+
:discoverer_id)
|
1810
|
+
include Aws::Structure
|
1811
|
+
end
|
1812
|
+
|
1813
|
+
# @!attribute [rw] description
|
1814
|
+
# @return [String]
|
1815
|
+
#
|
1816
|
+
# @!attribute [rw] discoverer_arn
|
1817
|
+
# @return [String]
|
1818
|
+
#
|
1819
|
+
# @!attribute [rw] discoverer_id
|
1820
|
+
# @return [String]
|
1821
|
+
#
|
1822
|
+
# @!attribute [rw] source_arn
|
1823
|
+
# @return [String]
|
1824
|
+
#
|
1825
|
+
# @!attribute [rw] state
|
1826
|
+
# @return [String]
|
1827
|
+
#
|
1828
|
+
# @!attribute [rw] tags
|
1829
|
+
# Key-value pairs associated with a resource.
|
1830
|
+
# @return [Hash<String,String>]
|
1831
|
+
#
|
1832
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/UpdateDiscovererResponse AWS API Documentation
|
1833
|
+
#
|
1834
|
+
class UpdateDiscovererResponse < Struct.new(
|
1835
|
+
:description,
|
1836
|
+
:discoverer_arn,
|
1837
|
+
:discoverer_id,
|
1838
|
+
:source_arn,
|
1839
|
+
:state,
|
1840
|
+
:tags)
|
1841
|
+
include Aws::Structure
|
1842
|
+
end
|
1843
|
+
|
1844
|
+
# @!attribute [rw] description
|
1845
|
+
# The description of the registry to update.
|
1846
|
+
# @return [String]
|
1847
|
+
#
|
1848
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/UpdateRegistryInput AWS API Documentation
|
1849
|
+
#
|
1850
|
+
class UpdateRegistryInput < Struct.new(
|
1851
|
+
:description)
|
1852
|
+
include Aws::Structure
|
1853
|
+
end
|
1854
|
+
|
1855
|
+
# @note When making an API call, you may pass UpdateRegistryRequest
|
1856
|
+
# data as a hash:
|
1857
|
+
#
|
1858
|
+
# {
|
1859
|
+
# description: "__stringMin0Max256",
|
1860
|
+
# registry_name: "__string", # required
|
1861
|
+
# }
|
1862
|
+
#
|
1863
|
+
# @!attribute [rw] description
|
1864
|
+
# @return [String]
|
1865
|
+
#
|
1866
|
+
# @!attribute [rw] registry_name
|
1867
|
+
# @return [String]
|
1868
|
+
#
|
1869
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/UpdateRegistryRequest AWS API Documentation
|
1870
|
+
#
|
1871
|
+
class UpdateRegistryRequest < Struct.new(
|
1872
|
+
:description,
|
1873
|
+
:registry_name)
|
1874
|
+
include Aws::Structure
|
1875
|
+
end
|
1876
|
+
|
1877
|
+
# @!attribute [rw] description
|
1878
|
+
# @return [String]
|
1879
|
+
#
|
1880
|
+
# @!attribute [rw] registry_arn
|
1881
|
+
# @return [String]
|
1882
|
+
#
|
1883
|
+
# @!attribute [rw] registry_name
|
1884
|
+
# @return [String]
|
1885
|
+
#
|
1886
|
+
# @!attribute [rw] tags
|
1887
|
+
# Key-value pairs associated with a resource.
|
1888
|
+
# @return [Hash<String,String>]
|
1889
|
+
#
|
1890
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/UpdateRegistryResponse AWS API Documentation
|
1891
|
+
#
|
1892
|
+
class UpdateRegistryResponse < Struct.new(
|
1893
|
+
:description,
|
1894
|
+
:registry_arn,
|
1895
|
+
:registry_name,
|
1896
|
+
:tags)
|
1897
|
+
include Aws::Structure
|
1898
|
+
end
|
1899
|
+
|
1900
|
+
# @!attribute [rw] client_token_id
|
1901
|
+
# The ID of the client token.
|
1902
|
+
#
|
1903
|
+
# **A suitable default value is auto-generated.** You should normally
|
1904
|
+
# not need to pass this option.
|
1905
|
+
# @return [String]
|
1906
|
+
#
|
1907
|
+
# @!attribute [rw] content
|
1908
|
+
# The source of the schema definition.
|
1909
|
+
# @return [String]
|
1910
|
+
#
|
1911
|
+
# @!attribute [rw] description
|
1912
|
+
# The description of the schema.
|
1913
|
+
# @return [String]
|
1914
|
+
#
|
1915
|
+
# @!attribute [rw] type
|
1916
|
+
# The schema type for the events schema.
|
1917
|
+
# @return [String]
|
1918
|
+
#
|
1919
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/UpdateSchemaInput AWS API Documentation
|
1920
|
+
#
|
1921
|
+
class UpdateSchemaInput < Struct.new(
|
1922
|
+
:client_token_id,
|
1923
|
+
:content,
|
1924
|
+
:description,
|
1925
|
+
:type)
|
1926
|
+
include Aws::Structure
|
1927
|
+
end
|
1928
|
+
|
1929
|
+
# @note When making an API call, you may pass UpdateSchemaRequest
|
1930
|
+
# data as a hash:
|
1931
|
+
#
|
1932
|
+
# {
|
1933
|
+
# client_token_id: "__stringMin0Max36",
|
1934
|
+
# content: "__stringMin1Max100000",
|
1935
|
+
# description: "__stringMin0Max256",
|
1936
|
+
# registry_name: "__string", # required
|
1937
|
+
# schema_name: "__string", # required
|
1938
|
+
# type: "OpenApi3", # accepts OpenApi3
|
1939
|
+
# }
|
1940
|
+
#
|
1941
|
+
# @!attribute [rw] client_token_id
|
1942
|
+
# **A suitable default value is auto-generated.** You should normally
|
1943
|
+
# not need to pass this option.
|
1944
|
+
# @return [String]
|
1945
|
+
#
|
1946
|
+
# @!attribute [rw] content
|
1947
|
+
# @return [String]
|
1948
|
+
#
|
1949
|
+
# @!attribute [rw] description
|
1950
|
+
# @return [String]
|
1951
|
+
#
|
1952
|
+
# @!attribute [rw] registry_name
|
1953
|
+
# @return [String]
|
1954
|
+
#
|
1955
|
+
# @!attribute [rw] schema_name
|
1956
|
+
# @return [String]
|
1957
|
+
#
|
1958
|
+
# @!attribute [rw] type
|
1959
|
+
# @return [String]
|
1960
|
+
#
|
1961
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/UpdateSchemaRequest AWS API Documentation
|
1962
|
+
#
|
1963
|
+
class UpdateSchemaRequest < Struct.new(
|
1964
|
+
:client_token_id,
|
1965
|
+
:content,
|
1966
|
+
:description,
|
1967
|
+
:registry_name,
|
1968
|
+
:schema_name,
|
1969
|
+
:type)
|
1970
|
+
include Aws::Structure
|
1971
|
+
end
|
1972
|
+
|
1973
|
+
# @!attribute [rw] description
|
1974
|
+
# @return [String]
|
1975
|
+
#
|
1976
|
+
# @!attribute [rw] last_modified
|
1977
|
+
# @return [Time]
|
1978
|
+
#
|
1979
|
+
# @!attribute [rw] schema_arn
|
1980
|
+
# @return [String]
|
1981
|
+
#
|
1982
|
+
# @!attribute [rw] schema_name
|
1983
|
+
# @return [String]
|
1984
|
+
#
|
1985
|
+
# @!attribute [rw] schema_version
|
1986
|
+
# @return [String]
|
1987
|
+
#
|
1988
|
+
# @!attribute [rw] tags
|
1989
|
+
# Key-value pairs associated with a resource.
|
1990
|
+
# @return [Hash<String,String>]
|
1991
|
+
#
|
1992
|
+
# @!attribute [rw] type
|
1993
|
+
# @return [String]
|
1994
|
+
#
|
1995
|
+
# @!attribute [rw] version_created_date
|
1996
|
+
# @return [Time]
|
1997
|
+
#
|
1998
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/schemas-2019-12-02/UpdateSchemaResponse AWS API Documentation
|
1999
|
+
#
|
2000
|
+
class UpdateSchemaResponse < Struct.new(
|
2001
|
+
:description,
|
2002
|
+
:last_modified,
|
2003
|
+
:schema_arn,
|
2004
|
+
:schema_name,
|
2005
|
+
:schema_version,
|
2006
|
+
:tags,
|
2007
|
+
:type,
|
2008
|
+
:version_created_date)
|
2009
|
+
include Aws::Structure
|
2010
|
+
end
|
2011
|
+
|
2012
|
+
end
|
2013
|
+
end
|