aws-sdk-mq 1.58.0 → 1.60.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 +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mq/client.rb +70 -46
- data/lib/aws-sdk-mq/plugins/endpoints.rb +1 -0
- data/lib/aws-sdk-mq.rb +1 -1
- data/sig/client.rbs +499 -0
- data/sig/errors.rbs +40 -0
- data/sig/resource.rbs +79 -0
- data/sig/types.rbs +836 -0
- data/sig/waiters.rbs +13 -0
- metadata +13 -8
data/sig/types.rbs
ADDED
@@ -0,0 +1,836 @@
|
|
1
|
+
# WARNING ABOUT GENERATED CODE
|
2
|
+
#
|
3
|
+
# This file is generated. See the contributing guide for more information:
|
4
|
+
# https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
|
5
|
+
#
|
6
|
+
# WARNING ABOUT GENERATED CODE
|
7
|
+
|
8
|
+
module Aws::MQ
|
9
|
+
module Types
|
10
|
+
|
11
|
+
class ActionRequired
|
12
|
+
attr_accessor action_required_code: ::String
|
13
|
+
attr_accessor action_required_info: ::String
|
14
|
+
SENSITIVE: []
|
15
|
+
end
|
16
|
+
|
17
|
+
class AvailabilityZone
|
18
|
+
attr_accessor name: ::String
|
19
|
+
SENSITIVE: []
|
20
|
+
end
|
21
|
+
|
22
|
+
class BadRequestException
|
23
|
+
attr_accessor error_attribute: ::String
|
24
|
+
attr_accessor message: ::String
|
25
|
+
SENSITIVE: []
|
26
|
+
end
|
27
|
+
|
28
|
+
class BrokerEngineType
|
29
|
+
attr_accessor engine_type: ("ACTIVEMQ" | "RABBITMQ")
|
30
|
+
attr_accessor engine_versions: ::Array[Types::EngineVersion]
|
31
|
+
SENSITIVE: []
|
32
|
+
end
|
33
|
+
|
34
|
+
class BrokerEngineTypeOutput
|
35
|
+
attr_accessor broker_engine_types: ::Array[Types::BrokerEngineType]
|
36
|
+
attr_accessor max_results: ::Integer
|
37
|
+
attr_accessor next_token: ::String
|
38
|
+
SENSITIVE: []
|
39
|
+
end
|
40
|
+
|
41
|
+
class BrokerInstance
|
42
|
+
attr_accessor console_url: ::String
|
43
|
+
attr_accessor endpoints: ::Array[::String]
|
44
|
+
attr_accessor ip_address: ::String
|
45
|
+
SENSITIVE: []
|
46
|
+
end
|
47
|
+
|
48
|
+
class BrokerInstanceOption
|
49
|
+
attr_accessor availability_zones: ::Array[Types::AvailabilityZone]
|
50
|
+
attr_accessor engine_type: ("ACTIVEMQ" | "RABBITMQ")
|
51
|
+
attr_accessor host_instance_type: ::String
|
52
|
+
attr_accessor storage_type: ("EBS" | "EFS")
|
53
|
+
attr_accessor supported_deployment_modes: ::Array[("SINGLE_INSTANCE" | "ACTIVE_STANDBY_MULTI_AZ" | "CLUSTER_MULTI_AZ")]
|
54
|
+
attr_accessor supported_engine_versions: ::Array[::String]
|
55
|
+
SENSITIVE: []
|
56
|
+
end
|
57
|
+
|
58
|
+
class BrokerInstanceOptionsOutput
|
59
|
+
attr_accessor broker_instance_options: ::Array[Types::BrokerInstanceOption]
|
60
|
+
attr_accessor max_results: ::Integer
|
61
|
+
attr_accessor next_token: ::String
|
62
|
+
SENSITIVE: []
|
63
|
+
end
|
64
|
+
|
65
|
+
class BrokerSummary
|
66
|
+
attr_accessor broker_arn: ::String
|
67
|
+
attr_accessor broker_id: ::String
|
68
|
+
attr_accessor broker_name: ::String
|
69
|
+
attr_accessor broker_state: ("CREATION_IN_PROGRESS" | "CREATION_FAILED" | "DELETION_IN_PROGRESS" | "RUNNING" | "REBOOT_IN_PROGRESS" | "CRITICAL_ACTION_REQUIRED" | "REPLICA")
|
70
|
+
attr_accessor created: ::Time
|
71
|
+
attr_accessor deployment_mode: ("SINGLE_INSTANCE" | "ACTIVE_STANDBY_MULTI_AZ" | "CLUSTER_MULTI_AZ")
|
72
|
+
attr_accessor engine_type: ("ACTIVEMQ" | "RABBITMQ")
|
73
|
+
attr_accessor host_instance_type: ::String
|
74
|
+
SENSITIVE: []
|
75
|
+
end
|
76
|
+
|
77
|
+
class Configuration
|
78
|
+
attr_accessor arn: ::String
|
79
|
+
attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
|
80
|
+
attr_accessor created: ::Time
|
81
|
+
attr_accessor description: ::String
|
82
|
+
attr_accessor engine_type: ("ACTIVEMQ" | "RABBITMQ")
|
83
|
+
attr_accessor engine_version: ::String
|
84
|
+
attr_accessor id: ::String
|
85
|
+
attr_accessor latest_revision: Types::ConfigurationRevision
|
86
|
+
attr_accessor name: ::String
|
87
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
88
|
+
SENSITIVE: []
|
89
|
+
end
|
90
|
+
|
91
|
+
class ConfigurationId
|
92
|
+
attr_accessor id: ::String
|
93
|
+
attr_accessor revision: ::Integer
|
94
|
+
SENSITIVE: []
|
95
|
+
end
|
96
|
+
|
97
|
+
class ConfigurationRevision
|
98
|
+
attr_accessor created: ::Time
|
99
|
+
attr_accessor description: ::String
|
100
|
+
attr_accessor revision: ::Integer
|
101
|
+
SENSITIVE: []
|
102
|
+
end
|
103
|
+
|
104
|
+
class Configurations
|
105
|
+
attr_accessor current: Types::ConfigurationId
|
106
|
+
attr_accessor history: ::Array[Types::ConfigurationId]
|
107
|
+
attr_accessor pending: Types::ConfigurationId
|
108
|
+
SENSITIVE: []
|
109
|
+
end
|
110
|
+
|
111
|
+
class ConflictException
|
112
|
+
attr_accessor error_attribute: ::String
|
113
|
+
attr_accessor message: ::String
|
114
|
+
SENSITIVE: []
|
115
|
+
end
|
116
|
+
|
117
|
+
class CreateBrokerInput
|
118
|
+
attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
|
119
|
+
attr_accessor auto_minor_version_upgrade: bool
|
120
|
+
attr_accessor broker_name: ::String
|
121
|
+
attr_accessor configuration: Types::ConfigurationId
|
122
|
+
attr_accessor creator_request_id: ::String
|
123
|
+
attr_accessor deployment_mode: ("SINGLE_INSTANCE" | "ACTIVE_STANDBY_MULTI_AZ" | "CLUSTER_MULTI_AZ")
|
124
|
+
attr_accessor data_replication_mode: ("NONE" | "CRDR")
|
125
|
+
attr_accessor data_replication_primary_broker_arn: ::String
|
126
|
+
attr_accessor encryption_options: Types::EncryptionOptions
|
127
|
+
attr_accessor engine_type: ("ACTIVEMQ" | "RABBITMQ")
|
128
|
+
attr_accessor engine_version: ::String
|
129
|
+
attr_accessor host_instance_type: ::String
|
130
|
+
attr_accessor ldap_server_metadata: Types::LdapServerMetadataInput
|
131
|
+
attr_accessor logs: Types::Logs
|
132
|
+
attr_accessor maintenance_window_start_time: Types::WeeklyStartTime
|
133
|
+
attr_accessor publicly_accessible: bool
|
134
|
+
attr_accessor security_groups: ::Array[::String]
|
135
|
+
attr_accessor storage_type: ("EBS" | "EFS")
|
136
|
+
attr_accessor subnet_ids: ::Array[::String]
|
137
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
138
|
+
attr_accessor users: ::Array[Types::User]
|
139
|
+
SENSITIVE: []
|
140
|
+
end
|
141
|
+
|
142
|
+
class CreateBrokerOutput
|
143
|
+
attr_accessor broker_arn: ::String
|
144
|
+
attr_accessor broker_id: ::String
|
145
|
+
SENSITIVE: []
|
146
|
+
end
|
147
|
+
|
148
|
+
class CreateBrokerRequest
|
149
|
+
attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
|
150
|
+
attr_accessor auto_minor_version_upgrade: bool
|
151
|
+
attr_accessor broker_name: ::String
|
152
|
+
attr_accessor configuration: Types::ConfigurationId
|
153
|
+
attr_accessor creator_request_id: ::String
|
154
|
+
attr_accessor deployment_mode: ("SINGLE_INSTANCE" | "ACTIVE_STANDBY_MULTI_AZ" | "CLUSTER_MULTI_AZ")
|
155
|
+
attr_accessor encryption_options: Types::EncryptionOptions
|
156
|
+
attr_accessor engine_type: ("ACTIVEMQ" | "RABBITMQ")
|
157
|
+
attr_accessor engine_version: ::String
|
158
|
+
attr_accessor host_instance_type: ::String
|
159
|
+
attr_accessor ldap_server_metadata: Types::LdapServerMetadataInput
|
160
|
+
attr_accessor logs: Types::Logs
|
161
|
+
attr_accessor maintenance_window_start_time: Types::WeeklyStartTime
|
162
|
+
attr_accessor publicly_accessible: bool
|
163
|
+
attr_accessor security_groups: ::Array[::String]
|
164
|
+
attr_accessor storage_type: ("EBS" | "EFS")
|
165
|
+
attr_accessor subnet_ids: ::Array[::String]
|
166
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
167
|
+
attr_accessor users: ::Array[Types::User]
|
168
|
+
attr_accessor data_replication_mode: ("NONE" | "CRDR")
|
169
|
+
attr_accessor data_replication_primary_broker_arn: ::String
|
170
|
+
SENSITIVE: []
|
171
|
+
end
|
172
|
+
|
173
|
+
class CreateBrokerResponse
|
174
|
+
attr_accessor broker_arn: ::String
|
175
|
+
attr_accessor broker_id: ::String
|
176
|
+
SENSITIVE: []
|
177
|
+
end
|
178
|
+
|
179
|
+
class CreateConfigurationInput
|
180
|
+
attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
|
181
|
+
attr_accessor engine_type: ("ACTIVEMQ" | "RABBITMQ")
|
182
|
+
attr_accessor engine_version: ::String
|
183
|
+
attr_accessor name: ::String
|
184
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
185
|
+
SENSITIVE: []
|
186
|
+
end
|
187
|
+
|
188
|
+
class CreateConfigurationOutput
|
189
|
+
attr_accessor arn: ::String
|
190
|
+
attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
|
191
|
+
attr_accessor created: ::Time
|
192
|
+
attr_accessor id: ::String
|
193
|
+
attr_accessor latest_revision: Types::ConfigurationRevision
|
194
|
+
attr_accessor name: ::String
|
195
|
+
SENSITIVE: []
|
196
|
+
end
|
197
|
+
|
198
|
+
class CreateConfigurationRequest
|
199
|
+
attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
|
200
|
+
attr_accessor engine_type: ("ACTIVEMQ" | "RABBITMQ")
|
201
|
+
attr_accessor engine_version: ::String
|
202
|
+
attr_accessor name: ::String
|
203
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
204
|
+
SENSITIVE: []
|
205
|
+
end
|
206
|
+
|
207
|
+
class CreateConfigurationResponse
|
208
|
+
attr_accessor arn: ::String
|
209
|
+
attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
|
210
|
+
attr_accessor created: ::Time
|
211
|
+
attr_accessor id: ::String
|
212
|
+
attr_accessor latest_revision: Types::ConfigurationRevision
|
213
|
+
attr_accessor name: ::String
|
214
|
+
SENSITIVE: []
|
215
|
+
end
|
216
|
+
|
217
|
+
class CreateTagsRequest
|
218
|
+
attr_accessor resource_arn: ::String
|
219
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
220
|
+
SENSITIVE: []
|
221
|
+
end
|
222
|
+
|
223
|
+
class CreateUserInput
|
224
|
+
attr_accessor console_access: bool
|
225
|
+
attr_accessor groups: ::Array[::String]
|
226
|
+
attr_accessor password: ::String
|
227
|
+
attr_accessor replication_user: bool
|
228
|
+
SENSITIVE: []
|
229
|
+
end
|
230
|
+
|
231
|
+
class CreateUserRequest
|
232
|
+
attr_accessor broker_id: ::String
|
233
|
+
attr_accessor console_access: bool
|
234
|
+
attr_accessor groups: ::Array[::String]
|
235
|
+
attr_accessor password: ::String
|
236
|
+
attr_accessor username: ::String
|
237
|
+
attr_accessor replication_user: bool
|
238
|
+
SENSITIVE: []
|
239
|
+
end
|
240
|
+
|
241
|
+
class CreateUserResponse < Aws::EmptyStructure
|
242
|
+
end
|
243
|
+
|
244
|
+
class DataReplicationCounterpart
|
245
|
+
attr_accessor broker_id: ::String
|
246
|
+
attr_accessor region: ::String
|
247
|
+
SENSITIVE: []
|
248
|
+
end
|
249
|
+
|
250
|
+
class DataReplicationMetadataOutput
|
251
|
+
attr_accessor data_replication_counterpart: Types::DataReplicationCounterpart
|
252
|
+
attr_accessor data_replication_role: ::String
|
253
|
+
SENSITIVE: []
|
254
|
+
end
|
255
|
+
|
256
|
+
class DeleteBrokerOutput
|
257
|
+
attr_accessor broker_id: ::String
|
258
|
+
SENSITIVE: []
|
259
|
+
end
|
260
|
+
|
261
|
+
class DeleteBrokerRequest
|
262
|
+
attr_accessor broker_id: ::String
|
263
|
+
SENSITIVE: []
|
264
|
+
end
|
265
|
+
|
266
|
+
class DeleteBrokerResponse
|
267
|
+
attr_accessor broker_id: ::String
|
268
|
+
SENSITIVE: []
|
269
|
+
end
|
270
|
+
|
271
|
+
class DeleteTagsRequest
|
272
|
+
attr_accessor resource_arn: ::String
|
273
|
+
attr_accessor tag_keys: ::Array[::String]
|
274
|
+
SENSITIVE: []
|
275
|
+
end
|
276
|
+
|
277
|
+
class DeleteUserRequest
|
278
|
+
attr_accessor broker_id: ::String
|
279
|
+
attr_accessor username: ::String
|
280
|
+
SENSITIVE: []
|
281
|
+
end
|
282
|
+
|
283
|
+
class DeleteUserResponse < Aws::EmptyStructure
|
284
|
+
end
|
285
|
+
|
286
|
+
class DescribeBrokerEngineTypesRequest
|
287
|
+
attr_accessor engine_type: ::String
|
288
|
+
attr_accessor max_results: ::Integer
|
289
|
+
attr_accessor next_token: ::String
|
290
|
+
SENSITIVE: []
|
291
|
+
end
|
292
|
+
|
293
|
+
class DescribeBrokerEngineTypesResponse
|
294
|
+
attr_accessor broker_engine_types: ::Array[Types::BrokerEngineType]
|
295
|
+
attr_accessor max_results: ::Integer
|
296
|
+
attr_accessor next_token: ::String
|
297
|
+
SENSITIVE: []
|
298
|
+
end
|
299
|
+
|
300
|
+
class DescribeBrokerInstanceOptionsRequest
|
301
|
+
attr_accessor engine_type: ::String
|
302
|
+
attr_accessor host_instance_type: ::String
|
303
|
+
attr_accessor max_results: ::Integer
|
304
|
+
attr_accessor next_token: ::String
|
305
|
+
attr_accessor storage_type: ::String
|
306
|
+
SENSITIVE: []
|
307
|
+
end
|
308
|
+
|
309
|
+
class DescribeBrokerInstanceOptionsResponse
|
310
|
+
attr_accessor broker_instance_options: ::Array[Types::BrokerInstanceOption]
|
311
|
+
attr_accessor max_results: ::Integer
|
312
|
+
attr_accessor next_token: ::String
|
313
|
+
SENSITIVE: []
|
314
|
+
end
|
315
|
+
|
316
|
+
class DescribeBrokerOutput
|
317
|
+
attr_accessor actions_required: ::Array[Types::ActionRequired]
|
318
|
+
attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
|
319
|
+
attr_accessor auto_minor_version_upgrade: bool
|
320
|
+
attr_accessor broker_arn: ::String
|
321
|
+
attr_accessor broker_id: ::String
|
322
|
+
attr_accessor broker_instances: ::Array[Types::BrokerInstance]
|
323
|
+
attr_accessor broker_name: ::String
|
324
|
+
attr_accessor broker_state: ("CREATION_IN_PROGRESS" | "CREATION_FAILED" | "DELETION_IN_PROGRESS" | "RUNNING" | "REBOOT_IN_PROGRESS" | "CRITICAL_ACTION_REQUIRED" | "REPLICA")
|
325
|
+
attr_accessor configurations: Types::Configurations
|
326
|
+
attr_accessor created: ::Time
|
327
|
+
attr_accessor deployment_mode: ("SINGLE_INSTANCE" | "ACTIVE_STANDBY_MULTI_AZ" | "CLUSTER_MULTI_AZ")
|
328
|
+
attr_accessor data_replication_metadata: Types::DataReplicationMetadataOutput
|
329
|
+
attr_accessor data_replication_mode: ("NONE" | "CRDR")
|
330
|
+
attr_accessor encryption_options: Types::EncryptionOptions
|
331
|
+
attr_accessor engine_type: ("ACTIVEMQ" | "RABBITMQ")
|
332
|
+
attr_accessor engine_version: ::String
|
333
|
+
attr_accessor host_instance_type: ::String
|
334
|
+
attr_accessor ldap_server_metadata: Types::LdapServerMetadataOutput
|
335
|
+
attr_accessor logs: Types::LogsSummary
|
336
|
+
attr_accessor maintenance_window_start_time: Types::WeeklyStartTime
|
337
|
+
attr_accessor pending_authentication_strategy: ("SIMPLE" | "LDAP")
|
338
|
+
attr_accessor pending_data_replication_metadata: Types::DataReplicationMetadataOutput
|
339
|
+
attr_accessor pending_data_replication_mode: ("NONE" | "CRDR")
|
340
|
+
attr_accessor pending_engine_version: ::String
|
341
|
+
attr_accessor pending_host_instance_type: ::String
|
342
|
+
attr_accessor pending_ldap_server_metadata: Types::LdapServerMetadataOutput
|
343
|
+
attr_accessor pending_security_groups: ::Array[::String]
|
344
|
+
attr_accessor publicly_accessible: bool
|
345
|
+
attr_accessor security_groups: ::Array[::String]
|
346
|
+
attr_accessor storage_type: ("EBS" | "EFS")
|
347
|
+
attr_accessor subnet_ids: ::Array[::String]
|
348
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
349
|
+
attr_accessor users: ::Array[Types::UserSummary]
|
350
|
+
SENSITIVE: []
|
351
|
+
end
|
352
|
+
|
353
|
+
class DescribeBrokerRequest
|
354
|
+
attr_accessor broker_id: ::String
|
355
|
+
SENSITIVE: []
|
356
|
+
end
|
357
|
+
|
358
|
+
class DescribeBrokerResponse
|
359
|
+
attr_accessor actions_required: ::Array[Types::ActionRequired]
|
360
|
+
attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
|
361
|
+
attr_accessor auto_minor_version_upgrade: bool
|
362
|
+
attr_accessor broker_arn: ::String
|
363
|
+
attr_accessor broker_id: ::String
|
364
|
+
attr_accessor broker_instances: ::Array[Types::BrokerInstance]
|
365
|
+
attr_accessor broker_name: ::String
|
366
|
+
attr_accessor broker_state: ("CREATION_IN_PROGRESS" | "CREATION_FAILED" | "DELETION_IN_PROGRESS" | "RUNNING" | "REBOOT_IN_PROGRESS" | "CRITICAL_ACTION_REQUIRED" | "REPLICA")
|
367
|
+
attr_accessor configurations: Types::Configurations
|
368
|
+
attr_accessor created: ::Time
|
369
|
+
attr_accessor deployment_mode: ("SINGLE_INSTANCE" | "ACTIVE_STANDBY_MULTI_AZ" | "CLUSTER_MULTI_AZ")
|
370
|
+
attr_accessor encryption_options: Types::EncryptionOptions
|
371
|
+
attr_accessor engine_type: ("ACTIVEMQ" | "RABBITMQ")
|
372
|
+
attr_accessor engine_version: ::String
|
373
|
+
attr_accessor host_instance_type: ::String
|
374
|
+
attr_accessor ldap_server_metadata: Types::LdapServerMetadataOutput
|
375
|
+
attr_accessor logs: Types::LogsSummary
|
376
|
+
attr_accessor maintenance_window_start_time: Types::WeeklyStartTime
|
377
|
+
attr_accessor pending_authentication_strategy: ("SIMPLE" | "LDAP")
|
378
|
+
attr_accessor pending_engine_version: ::String
|
379
|
+
attr_accessor pending_host_instance_type: ::String
|
380
|
+
attr_accessor pending_ldap_server_metadata: Types::LdapServerMetadataOutput
|
381
|
+
attr_accessor pending_security_groups: ::Array[::String]
|
382
|
+
attr_accessor publicly_accessible: bool
|
383
|
+
attr_accessor security_groups: ::Array[::String]
|
384
|
+
attr_accessor storage_type: ("EBS" | "EFS")
|
385
|
+
attr_accessor subnet_ids: ::Array[::String]
|
386
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
387
|
+
attr_accessor users: ::Array[Types::UserSummary]
|
388
|
+
attr_accessor data_replication_metadata: Types::DataReplicationMetadataOutput
|
389
|
+
attr_accessor data_replication_mode: ("NONE" | "CRDR")
|
390
|
+
attr_accessor pending_data_replication_metadata: Types::DataReplicationMetadataOutput
|
391
|
+
attr_accessor pending_data_replication_mode: ("NONE" | "CRDR")
|
392
|
+
SENSITIVE: []
|
393
|
+
end
|
394
|
+
|
395
|
+
class DescribeConfigurationRequest
|
396
|
+
attr_accessor configuration_id: ::String
|
397
|
+
SENSITIVE: []
|
398
|
+
end
|
399
|
+
|
400
|
+
class DescribeConfigurationResponse
|
401
|
+
attr_accessor arn: ::String
|
402
|
+
attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
|
403
|
+
attr_accessor created: ::Time
|
404
|
+
attr_accessor description: ::String
|
405
|
+
attr_accessor engine_type: ("ACTIVEMQ" | "RABBITMQ")
|
406
|
+
attr_accessor engine_version: ::String
|
407
|
+
attr_accessor id: ::String
|
408
|
+
attr_accessor latest_revision: Types::ConfigurationRevision
|
409
|
+
attr_accessor name: ::String
|
410
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
411
|
+
SENSITIVE: []
|
412
|
+
end
|
413
|
+
|
414
|
+
class DescribeConfigurationRevisionOutput
|
415
|
+
attr_accessor configuration_id: ::String
|
416
|
+
attr_accessor created: ::Time
|
417
|
+
attr_accessor data: ::String
|
418
|
+
attr_accessor description: ::String
|
419
|
+
SENSITIVE: []
|
420
|
+
end
|
421
|
+
|
422
|
+
class DescribeConfigurationRevisionRequest
|
423
|
+
attr_accessor configuration_id: ::String
|
424
|
+
attr_accessor configuration_revision: ::String
|
425
|
+
SENSITIVE: []
|
426
|
+
end
|
427
|
+
|
428
|
+
class DescribeConfigurationRevisionResponse
|
429
|
+
attr_accessor configuration_id: ::String
|
430
|
+
attr_accessor created: ::Time
|
431
|
+
attr_accessor data: ::String
|
432
|
+
attr_accessor description: ::String
|
433
|
+
SENSITIVE: []
|
434
|
+
end
|
435
|
+
|
436
|
+
class DescribeUserOutput
|
437
|
+
attr_accessor broker_id: ::String
|
438
|
+
attr_accessor console_access: bool
|
439
|
+
attr_accessor groups: ::Array[::String]
|
440
|
+
attr_accessor pending: Types::UserPendingChanges
|
441
|
+
attr_accessor replication_user: bool
|
442
|
+
attr_accessor username: ::String
|
443
|
+
SENSITIVE: []
|
444
|
+
end
|
445
|
+
|
446
|
+
class DescribeUserRequest
|
447
|
+
attr_accessor broker_id: ::String
|
448
|
+
attr_accessor username: ::String
|
449
|
+
SENSITIVE: []
|
450
|
+
end
|
451
|
+
|
452
|
+
class DescribeUserResponse
|
453
|
+
attr_accessor broker_id: ::String
|
454
|
+
attr_accessor console_access: bool
|
455
|
+
attr_accessor groups: ::Array[::String]
|
456
|
+
attr_accessor pending: Types::UserPendingChanges
|
457
|
+
attr_accessor username: ::String
|
458
|
+
attr_accessor replication_user: bool
|
459
|
+
SENSITIVE: []
|
460
|
+
end
|
461
|
+
|
462
|
+
class EncryptionOptions
|
463
|
+
attr_accessor kms_key_id: ::String
|
464
|
+
attr_accessor use_aws_owned_key: bool
|
465
|
+
SENSITIVE: []
|
466
|
+
end
|
467
|
+
|
468
|
+
class EngineVersion
|
469
|
+
attr_accessor name: ::String
|
470
|
+
SENSITIVE: []
|
471
|
+
end
|
472
|
+
|
473
|
+
class Error
|
474
|
+
attr_accessor error_attribute: ::String
|
475
|
+
attr_accessor message: ::String
|
476
|
+
SENSITIVE: []
|
477
|
+
end
|
478
|
+
|
479
|
+
class ForbiddenException
|
480
|
+
attr_accessor error_attribute: ::String
|
481
|
+
attr_accessor message: ::String
|
482
|
+
SENSITIVE: []
|
483
|
+
end
|
484
|
+
|
485
|
+
class InternalServerErrorException
|
486
|
+
attr_accessor error_attribute: ::String
|
487
|
+
attr_accessor message: ::String
|
488
|
+
SENSITIVE: []
|
489
|
+
end
|
490
|
+
|
491
|
+
class LdapServerMetadataInput
|
492
|
+
attr_accessor hosts: ::Array[::String]
|
493
|
+
attr_accessor role_base: ::String
|
494
|
+
attr_accessor role_name: ::String
|
495
|
+
attr_accessor role_search_matching: ::String
|
496
|
+
attr_accessor role_search_subtree: bool
|
497
|
+
attr_accessor service_account_password: ::String
|
498
|
+
attr_accessor service_account_username: ::String
|
499
|
+
attr_accessor user_base: ::String
|
500
|
+
attr_accessor user_role_name: ::String
|
501
|
+
attr_accessor user_search_matching: ::String
|
502
|
+
attr_accessor user_search_subtree: bool
|
503
|
+
SENSITIVE: []
|
504
|
+
end
|
505
|
+
|
506
|
+
class LdapServerMetadataOutput
|
507
|
+
attr_accessor hosts: ::Array[::String]
|
508
|
+
attr_accessor role_base: ::String
|
509
|
+
attr_accessor role_name: ::String
|
510
|
+
attr_accessor role_search_matching: ::String
|
511
|
+
attr_accessor role_search_subtree: bool
|
512
|
+
attr_accessor service_account_username: ::String
|
513
|
+
attr_accessor user_base: ::String
|
514
|
+
attr_accessor user_role_name: ::String
|
515
|
+
attr_accessor user_search_matching: ::String
|
516
|
+
attr_accessor user_search_subtree: bool
|
517
|
+
SENSITIVE: []
|
518
|
+
end
|
519
|
+
|
520
|
+
class ListBrokersOutput
|
521
|
+
attr_accessor broker_summaries: ::Array[Types::BrokerSummary]
|
522
|
+
attr_accessor next_token: ::String
|
523
|
+
SENSITIVE: []
|
524
|
+
end
|
525
|
+
|
526
|
+
class ListBrokersRequest
|
527
|
+
attr_accessor max_results: ::Integer
|
528
|
+
attr_accessor next_token: ::String
|
529
|
+
SENSITIVE: []
|
530
|
+
end
|
531
|
+
|
532
|
+
class ListBrokersResponse
|
533
|
+
attr_accessor broker_summaries: ::Array[Types::BrokerSummary]
|
534
|
+
attr_accessor next_token: ::String
|
535
|
+
SENSITIVE: []
|
536
|
+
end
|
537
|
+
|
538
|
+
class ListConfigurationRevisionsOutput
|
539
|
+
attr_accessor configuration_id: ::String
|
540
|
+
attr_accessor max_results: ::Integer
|
541
|
+
attr_accessor next_token: ::String
|
542
|
+
attr_accessor revisions: ::Array[Types::ConfigurationRevision]
|
543
|
+
SENSITIVE: []
|
544
|
+
end
|
545
|
+
|
546
|
+
class ListConfigurationRevisionsRequest
|
547
|
+
attr_accessor configuration_id: ::String
|
548
|
+
attr_accessor max_results: ::Integer
|
549
|
+
attr_accessor next_token: ::String
|
550
|
+
SENSITIVE: []
|
551
|
+
end
|
552
|
+
|
553
|
+
class ListConfigurationRevisionsResponse
|
554
|
+
attr_accessor configuration_id: ::String
|
555
|
+
attr_accessor max_results: ::Integer
|
556
|
+
attr_accessor next_token: ::String
|
557
|
+
attr_accessor revisions: ::Array[Types::ConfigurationRevision]
|
558
|
+
SENSITIVE: []
|
559
|
+
end
|
560
|
+
|
561
|
+
class ListConfigurationsOutput
|
562
|
+
attr_accessor configurations: ::Array[Types::Configuration]
|
563
|
+
attr_accessor max_results: ::Integer
|
564
|
+
attr_accessor next_token: ::String
|
565
|
+
SENSITIVE: []
|
566
|
+
end
|
567
|
+
|
568
|
+
class ListConfigurationsRequest
|
569
|
+
attr_accessor max_results: ::Integer
|
570
|
+
attr_accessor next_token: ::String
|
571
|
+
SENSITIVE: []
|
572
|
+
end
|
573
|
+
|
574
|
+
class ListConfigurationsResponse
|
575
|
+
attr_accessor configurations: ::Array[Types::Configuration]
|
576
|
+
attr_accessor max_results: ::Integer
|
577
|
+
attr_accessor next_token: ::String
|
578
|
+
SENSITIVE: []
|
579
|
+
end
|
580
|
+
|
581
|
+
class ListTagsRequest
|
582
|
+
attr_accessor resource_arn: ::String
|
583
|
+
SENSITIVE: []
|
584
|
+
end
|
585
|
+
|
586
|
+
class ListTagsResponse
|
587
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
588
|
+
SENSITIVE: []
|
589
|
+
end
|
590
|
+
|
591
|
+
class ListUsersOutput
|
592
|
+
attr_accessor broker_id: ::String
|
593
|
+
attr_accessor max_results: ::Integer
|
594
|
+
attr_accessor next_token: ::String
|
595
|
+
attr_accessor users: ::Array[Types::UserSummary]
|
596
|
+
SENSITIVE: []
|
597
|
+
end
|
598
|
+
|
599
|
+
class ListUsersRequest
|
600
|
+
attr_accessor broker_id: ::String
|
601
|
+
attr_accessor max_results: ::Integer
|
602
|
+
attr_accessor next_token: ::String
|
603
|
+
SENSITIVE: []
|
604
|
+
end
|
605
|
+
|
606
|
+
class ListUsersResponse
|
607
|
+
attr_accessor broker_id: ::String
|
608
|
+
attr_accessor max_results: ::Integer
|
609
|
+
attr_accessor next_token: ::String
|
610
|
+
attr_accessor users: ::Array[Types::UserSummary]
|
611
|
+
SENSITIVE: []
|
612
|
+
end
|
613
|
+
|
614
|
+
class Logs
|
615
|
+
attr_accessor audit: bool
|
616
|
+
attr_accessor general: bool
|
617
|
+
SENSITIVE: []
|
618
|
+
end
|
619
|
+
|
620
|
+
class LogsSummary
|
621
|
+
attr_accessor audit: bool
|
622
|
+
attr_accessor audit_log_group: ::String
|
623
|
+
attr_accessor general: bool
|
624
|
+
attr_accessor general_log_group: ::String
|
625
|
+
attr_accessor pending: Types::PendingLogs
|
626
|
+
SENSITIVE: []
|
627
|
+
end
|
628
|
+
|
629
|
+
class NotFoundException
|
630
|
+
attr_accessor error_attribute: ::String
|
631
|
+
attr_accessor message: ::String
|
632
|
+
SENSITIVE: []
|
633
|
+
end
|
634
|
+
|
635
|
+
class PendingLogs
|
636
|
+
attr_accessor audit: bool
|
637
|
+
attr_accessor general: bool
|
638
|
+
SENSITIVE: []
|
639
|
+
end
|
640
|
+
|
641
|
+
class PromoteInput
|
642
|
+
attr_accessor mode: ("SWITCHOVER" | "FAILOVER")
|
643
|
+
SENSITIVE: []
|
644
|
+
end
|
645
|
+
|
646
|
+
class PromoteOutput
|
647
|
+
attr_accessor broker_id: ::String
|
648
|
+
SENSITIVE: []
|
649
|
+
end
|
650
|
+
|
651
|
+
class PromoteRequest
|
652
|
+
attr_accessor broker_id: ::String
|
653
|
+
attr_accessor mode: ("SWITCHOVER" | "FAILOVER")
|
654
|
+
SENSITIVE: []
|
655
|
+
end
|
656
|
+
|
657
|
+
class PromoteResponse
|
658
|
+
attr_accessor broker_id: ::String
|
659
|
+
SENSITIVE: []
|
660
|
+
end
|
661
|
+
|
662
|
+
class RebootBrokerRequest
|
663
|
+
attr_accessor broker_id: ::String
|
664
|
+
SENSITIVE: []
|
665
|
+
end
|
666
|
+
|
667
|
+
class RebootBrokerResponse < Aws::EmptyStructure
|
668
|
+
end
|
669
|
+
|
670
|
+
class SanitizationWarning
|
671
|
+
attr_accessor attribute_name: ::String
|
672
|
+
attr_accessor element_name: ::String
|
673
|
+
attr_accessor reason: ("DISALLOWED_ELEMENT_REMOVED" | "DISALLOWED_ATTRIBUTE_REMOVED" | "INVALID_ATTRIBUTE_VALUE_REMOVED")
|
674
|
+
SENSITIVE: []
|
675
|
+
end
|
676
|
+
|
677
|
+
class Tags
|
678
|
+
attr_accessor tags: ::Hash[::String, ::String]
|
679
|
+
SENSITIVE: []
|
680
|
+
end
|
681
|
+
|
682
|
+
class UnauthorizedException
|
683
|
+
attr_accessor error_attribute: ::String
|
684
|
+
attr_accessor message: ::String
|
685
|
+
SENSITIVE: []
|
686
|
+
end
|
687
|
+
|
688
|
+
class UpdateBrokerInput
|
689
|
+
attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
|
690
|
+
attr_accessor auto_minor_version_upgrade: bool
|
691
|
+
attr_accessor configuration: Types::ConfigurationId
|
692
|
+
attr_accessor data_replication_mode: ("NONE" | "CRDR")
|
693
|
+
attr_accessor engine_version: ::String
|
694
|
+
attr_accessor host_instance_type: ::String
|
695
|
+
attr_accessor ldap_server_metadata: Types::LdapServerMetadataInput
|
696
|
+
attr_accessor logs: Types::Logs
|
697
|
+
attr_accessor maintenance_window_start_time: Types::WeeklyStartTime
|
698
|
+
attr_accessor security_groups: ::Array[::String]
|
699
|
+
SENSITIVE: []
|
700
|
+
end
|
701
|
+
|
702
|
+
class UpdateBrokerOutput
|
703
|
+
attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
|
704
|
+
attr_accessor auto_minor_version_upgrade: bool
|
705
|
+
attr_accessor broker_id: ::String
|
706
|
+
attr_accessor configuration: Types::ConfigurationId
|
707
|
+
attr_accessor data_replication_metadata: Types::DataReplicationMetadataOutput
|
708
|
+
attr_accessor data_replication_mode: ("NONE" | "CRDR")
|
709
|
+
attr_accessor engine_version: ::String
|
710
|
+
attr_accessor host_instance_type: ::String
|
711
|
+
attr_accessor ldap_server_metadata: Types::LdapServerMetadataOutput
|
712
|
+
attr_accessor logs: Types::Logs
|
713
|
+
attr_accessor maintenance_window_start_time: Types::WeeklyStartTime
|
714
|
+
attr_accessor pending_data_replication_metadata: Types::DataReplicationMetadataOutput
|
715
|
+
attr_accessor pending_data_replication_mode: ("NONE" | "CRDR")
|
716
|
+
attr_accessor security_groups: ::Array[::String]
|
717
|
+
SENSITIVE: []
|
718
|
+
end
|
719
|
+
|
720
|
+
class UpdateBrokerRequest
|
721
|
+
attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
|
722
|
+
attr_accessor auto_minor_version_upgrade: bool
|
723
|
+
attr_accessor broker_id: ::String
|
724
|
+
attr_accessor configuration: Types::ConfigurationId
|
725
|
+
attr_accessor engine_version: ::String
|
726
|
+
attr_accessor host_instance_type: ::String
|
727
|
+
attr_accessor ldap_server_metadata: Types::LdapServerMetadataInput
|
728
|
+
attr_accessor logs: Types::Logs
|
729
|
+
attr_accessor maintenance_window_start_time: Types::WeeklyStartTime
|
730
|
+
attr_accessor security_groups: ::Array[::String]
|
731
|
+
attr_accessor data_replication_mode: ("NONE" | "CRDR")
|
732
|
+
SENSITIVE: []
|
733
|
+
end
|
734
|
+
|
735
|
+
class UpdateBrokerResponse
|
736
|
+
attr_accessor authentication_strategy: ("SIMPLE" | "LDAP")
|
737
|
+
attr_accessor auto_minor_version_upgrade: bool
|
738
|
+
attr_accessor broker_id: ::String
|
739
|
+
attr_accessor configuration: Types::ConfigurationId
|
740
|
+
attr_accessor engine_version: ::String
|
741
|
+
attr_accessor host_instance_type: ::String
|
742
|
+
attr_accessor ldap_server_metadata: Types::LdapServerMetadataOutput
|
743
|
+
attr_accessor logs: Types::Logs
|
744
|
+
attr_accessor maintenance_window_start_time: Types::WeeklyStartTime
|
745
|
+
attr_accessor security_groups: ::Array[::String]
|
746
|
+
attr_accessor data_replication_metadata: Types::DataReplicationMetadataOutput
|
747
|
+
attr_accessor data_replication_mode: ("NONE" | "CRDR")
|
748
|
+
attr_accessor pending_data_replication_metadata: Types::DataReplicationMetadataOutput
|
749
|
+
attr_accessor pending_data_replication_mode: ("NONE" | "CRDR")
|
750
|
+
SENSITIVE: []
|
751
|
+
end
|
752
|
+
|
753
|
+
class UpdateConfigurationInput
|
754
|
+
attr_accessor data: ::String
|
755
|
+
attr_accessor description: ::String
|
756
|
+
SENSITIVE: []
|
757
|
+
end
|
758
|
+
|
759
|
+
class UpdateConfigurationOutput
|
760
|
+
attr_accessor arn: ::String
|
761
|
+
attr_accessor created: ::Time
|
762
|
+
attr_accessor id: ::String
|
763
|
+
attr_accessor latest_revision: Types::ConfigurationRevision
|
764
|
+
attr_accessor name: ::String
|
765
|
+
attr_accessor warnings: ::Array[Types::SanitizationWarning]
|
766
|
+
SENSITIVE: []
|
767
|
+
end
|
768
|
+
|
769
|
+
class UpdateConfigurationRequest
|
770
|
+
attr_accessor configuration_id: ::String
|
771
|
+
attr_accessor data: ::String
|
772
|
+
attr_accessor description: ::String
|
773
|
+
SENSITIVE: []
|
774
|
+
end
|
775
|
+
|
776
|
+
class UpdateConfigurationResponse
|
777
|
+
attr_accessor arn: ::String
|
778
|
+
attr_accessor created: ::Time
|
779
|
+
attr_accessor id: ::String
|
780
|
+
attr_accessor latest_revision: Types::ConfigurationRevision
|
781
|
+
attr_accessor name: ::String
|
782
|
+
attr_accessor warnings: ::Array[Types::SanitizationWarning]
|
783
|
+
SENSITIVE: []
|
784
|
+
end
|
785
|
+
|
786
|
+
class UpdateUserInput
|
787
|
+
attr_accessor console_access: bool
|
788
|
+
attr_accessor groups: ::Array[::String]
|
789
|
+
attr_accessor password: ::String
|
790
|
+
attr_accessor replication_user: bool
|
791
|
+
SENSITIVE: []
|
792
|
+
end
|
793
|
+
|
794
|
+
class UpdateUserRequest
|
795
|
+
attr_accessor broker_id: ::String
|
796
|
+
attr_accessor console_access: bool
|
797
|
+
attr_accessor groups: ::Array[::String]
|
798
|
+
attr_accessor password: ::String
|
799
|
+
attr_accessor username: ::String
|
800
|
+
attr_accessor replication_user: bool
|
801
|
+
SENSITIVE: []
|
802
|
+
end
|
803
|
+
|
804
|
+
class UpdateUserResponse < Aws::EmptyStructure
|
805
|
+
end
|
806
|
+
|
807
|
+
class User
|
808
|
+
attr_accessor console_access: bool
|
809
|
+
attr_accessor groups: ::Array[::String]
|
810
|
+
attr_accessor password: ::String
|
811
|
+
attr_accessor username: ::String
|
812
|
+
attr_accessor replication_user: bool
|
813
|
+
SENSITIVE: []
|
814
|
+
end
|
815
|
+
|
816
|
+
class UserPendingChanges
|
817
|
+
attr_accessor console_access: bool
|
818
|
+
attr_accessor groups: ::Array[::String]
|
819
|
+
attr_accessor pending_change: ("CREATE" | "UPDATE" | "DELETE")
|
820
|
+
SENSITIVE: []
|
821
|
+
end
|
822
|
+
|
823
|
+
class UserSummary
|
824
|
+
attr_accessor pending_change: ("CREATE" | "UPDATE" | "DELETE")
|
825
|
+
attr_accessor username: ::String
|
826
|
+
SENSITIVE: []
|
827
|
+
end
|
828
|
+
|
829
|
+
class WeeklyStartTime
|
830
|
+
attr_accessor day_of_week: ("MONDAY" | "TUESDAY" | "WEDNESDAY" | "THURSDAY" | "FRIDAY" | "SATURDAY" | "SUNDAY")
|
831
|
+
attr_accessor time_of_day: ::String
|
832
|
+
attr_accessor time_zone: ::String
|
833
|
+
SENSITIVE: []
|
834
|
+
end
|
835
|
+
end
|
836
|
+
end
|