aws-sdk-mq 1.29.0 → 1.30.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/lib/aws-sdk-mq.rb +1 -1
- data/lib/aws-sdk-mq/client.rb +96 -1
- data/lib/aws-sdk-mq/client_api.rb +60 -0
- data/lib/aws-sdk-mq/types.rb +331 -5
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 6de081d7d2ee1aa020b66a2b63705be7cb5de8bfda99aa927d4ebe9e564fd4ab
|
4
|
+
data.tar.gz: 43afa560b753824969782cccfea44596c214d332ea57452f516df45acb425584
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 359ff3c61d097a6d62f9b7844a3d63c3a921618d81ba51c0ee766874c46c53cd6171b2f6135688e07f9b9e60e4fa08f68e58c580ab87ac7892dcb0bb44afdcbb
|
7
|
+
data.tar.gz: 9cab9694a9549e82857242dd8d8a83b3bf2dd10f6d7ac61b841852fcc85b54282d8e696cecf4a9074c0d1079ba965a131ebe5aeaa33e530c7ece287d440ff737
|
data/lib/aws-sdk-mq.rb
CHANGED
data/lib/aws-sdk-mq/client.rb
CHANGED
@@ -314,6 +314,9 @@ module Aws::MQ
|
|
314
314
|
|
315
315
|
# Creates a broker. Note: This API is asynchronous.
|
316
316
|
#
|
317
|
+
# @option params [String] :authentication_strategy
|
318
|
+
# The authentication strategy used to secure the broker.
|
319
|
+
#
|
317
320
|
# @option params [Boolean] :auto_minor_version_upgrade
|
318
321
|
#
|
319
322
|
# @option params [String] :broker_name
|
@@ -339,6 +342,10 @@ module Aws::MQ
|
|
339
342
|
#
|
340
343
|
# @option params [String] :host_instance_type
|
341
344
|
#
|
345
|
+
# @option params [Types::LdapServerMetadataInput] :ldap_server_metadata
|
346
|
+
# The metadata of the LDAP server used to authenticate and authorize
|
347
|
+
# connections to the broker.
|
348
|
+
#
|
342
349
|
# @option params [Types::Logs] :logs
|
343
350
|
# The list of information about logs to be enabled for the specified
|
344
351
|
# broker.
|
@@ -368,6 +375,7 @@ module Aws::MQ
|
|
368
375
|
# @example Request syntax with placeholder values
|
369
376
|
#
|
370
377
|
# resp = client.create_broker({
|
378
|
+
# authentication_strategy: "SIMPLE", # accepts SIMPLE, LDAP
|
371
379
|
# auto_minor_version_upgrade: false,
|
372
380
|
# broker_name: "__string",
|
373
381
|
# configuration: {
|
@@ -383,6 +391,19 @@ module Aws::MQ
|
|
383
391
|
# engine_type: "ACTIVEMQ", # accepts ACTIVEMQ
|
384
392
|
# engine_version: "__string",
|
385
393
|
# host_instance_type: "__string",
|
394
|
+
# ldap_server_metadata: {
|
395
|
+
# hosts: ["__string"],
|
396
|
+
# role_base: "__string",
|
397
|
+
# role_name: "__string",
|
398
|
+
# role_search_matching: "__string",
|
399
|
+
# role_search_subtree: false,
|
400
|
+
# service_account_password: "__string",
|
401
|
+
# service_account_username: "__string",
|
402
|
+
# user_base: "__string",
|
403
|
+
# user_role_name: "__string",
|
404
|
+
# user_search_matching: "__string",
|
405
|
+
# user_search_subtree: false,
|
406
|
+
# },
|
386
407
|
# logs: {
|
387
408
|
# audit: false,
|
388
409
|
# general: false,
|
@@ -427,6 +448,9 @@ module Aws::MQ
|
|
427
448
|
# Amazon MQ uses the default configuration (the engine type and
|
428
449
|
# version).
|
429
450
|
#
|
451
|
+
# @option params [String] :authentication_strategy
|
452
|
+
# The authentication strategy used to secure the broker.
|
453
|
+
#
|
430
454
|
# @option params [String] :engine_type
|
431
455
|
# The type of broker engine. Note: Currently, Amazon MQ supports only
|
432
456
|
# ActiveMQ.
|
@@ -440,6 +464,7 @@ module Aws::MQ
|
|
440
464
|
# @return [Types::CreateConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
441
465
|
#
|
442
466
|
# * {Types::CreateConfigurationResponse#arn #arn} => String
|
467
|
+
# * {Types::CreateConfigurationResponse#authentication_strategy #authentication_strategy} => String
|
443
468
|
# * {Types::CreateConfigurationResponse#created #created} => Time
|
444
469
|
# * {Types::CreateConfigurationResponse#id #id} => String
|
445
470
|
# * {Types::CreateConfigurationResponse#latest_revision #latest_revision} => Types::ConfigurationRevision
|
@@ -448,6 +473,7 @@ module Aws::MQ
|
|
448
473
|
# @example Request syntax with placeholder values
|
449
474
|
#
|
450
475
|
# resp = client.create_configuration({
|
476
|
+
# authentication_strategy: "SIMPLE", # accepts SIMPLE, LDAP
|
451
477
|
# engine_type: "ACTIVEMQ", # accepts ACTIVEMQ
|
452
478
|
# engine_version: "__string",
|
453
479
|
# name: "__string",
|
@@ -459,6 +485,7 @@ module Aws::MQ
|
|
459
485
|
# @example Response structure
|
460
486
|
#
|
461
487
|
# resp.arn #=> String
|
488
|
+
# resp.authentication_strategy #=> String, one of "SIMPLE", "LDAP"
|
462
489
|
# resp.created #=> Time
|
463
490
|
# resp.id #=> String
|
464
491
|
# resp.latest_revision.created #=> Time
|
@@ -615,6 +642,7 @@ module Aws::MQ
|
|
615
642
|
#
|
616
643
|
# @return [Types::DescribeBrokerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
617
644
|
#
|
645
|
+
# * {Types::DescribeBrokerResponse#authentication_strategy #authentication_strategy} => String
|
618
646
|
# * {Types::DescribeBrokerResponse#auto_minor_version_upgrade #auto_minor_version_upgrade} => Boolean
|
619
647
|
# * {Types::DescribeBrokerResponse#broker_arn #broker_arn} => String
|
620
648
|
# * {Types::DescribeBrokerResponse#broker_id #broker_id} => String
|
@@ -628,10 +656,13 @@ module Aws::MQ
|
|
628
656
|
# * {Types::DescribeBrokerResponse#engine_type #engine_type} => String
|
629
657
|
# * {Types::DescribeBrokerResponse#engine_version #engine_version} => String
|
630
658
|
# * {Types::DescribeBrokerResponse#host_instance_type #host_instance_type} => String
|
659
|
+
# * {Types::DescribeBrokerResponse#ldap_server_metadata #ldap_server_metadata} => Types::LdapServerMetadataOutput
|
631
660
|
# * {Types::DescribeBrokerResponse#logs #logs} => Types::LogsSummary
|
632
661
|
# * {Types::DescribeBrokerResponse#maintenance_window_start_time #maintenance_window_start_time} => Types::WeeklyStartTime
|
662
|
+
# * {Types::DescribeBrokerResponse#pending_authentication_strategy #pending_authentication_strategy} => String
|
633
663
|
# * {Types::DescribeBrokerResponse#pending_engine_version #pending_engine_version} => String
|
634
664
|
# * {Types::DescribeBrokerResponse#pending_host_instance_type #pending_host_instance_type} => String
|
665
|
+
# * {Types::DescribeBrokerResponse#pending_ldap_server_metadata #pending_ldap_server_metadata} => Types::LdapServerMetadataOutput
|
635
666
|
# * {Types::DescribeBrokerResponse#pending_security_groups #pending_security_groups} => Array<String>
|
636
667
|
# * {Types::DescribeBrokerResponse#publicly_accessible #publicly_accessible} => Boolean
|
637
668
|
# * {Types::DescribeBrokerResponse#security_groups #security_groups} => Array<String>
|
@@ -648,6 +679,7 @@ module Aws::MQ
|
|
648
679
|
#
|
649
680
|
# @example Response structure
|
650
681
|
#
|
682
|
+
# resp.authentication_strategy #=> String, one of "SIMPLE", "LDAP"
|
651
683
|
# resp.auto_minor_version_upgrade #=> Boolean
|
652
684
|
# resp.broker_arn #=> String
|
653
685
|
# resp.broker_id #=> String
|
@@ -672,6 +704,17 @@ module Aws::MQ
|
|
672
704
|
# resp.engine_type #=> String, one of "ACTIVEMQ"
|
673
705
|
# resp.engine_version #=> String
|
674
706
|
# resp.host_instance_type #=> String
|
707
|
+
# resp.ldap_server_metadata.hosts #=> Array
|
708
|
+
# resp.ldap_server_metadata.hosts[0] #=> String
|
709
|
+
# resp.ldap_server_metadata.role_base #=> String
|
710
|
+
# resp.ldap_server_metadata.role_name #=> String
|
711
|
+
# resp.ldap_server_metadata.role_search_matching #=> String
|
712
|
+
# resp.ldap_server_metadata.role_search_subtree #=> Boolean
|
713
|
+
# resp.ldap_server_metadata.service_account_username #=> String
|
714
|
+
# resp.ldap_server_metadata.user_base #=> String
|
715
|
+
# resp.ldap_server_metadata.user_role_name #=> String
|
716
|
+
# resp.ldap_server_metadata.user_search_matching #=> String
|
717
|
+
# resp.ldap_server_metadata.user_search_subtree #=> Boolean
|
675
718
|
# resp.logs.audit #=> Boolean
|
676
719
|
# resp.logs.audit_log_group #=> String
|
677
720
|
# resp.logs.general #=> Boolean
|
@@ -681,8 +724,20 @@ module Aws::MQ
|
|
681
724
|
# resp.maintenance_window_start_time.day_of_week #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
682
725
|
# resp.maintenance_window_start_time.time_of_day #=> String
|
683
726
|
# resp.maintenance_window_start_time.time_zone #=> String
|
727
|
+
# resp.pending_authentication_strategy #=> String, one of "SIMPLE", "LDAP"
|
684
728
|
# resp.pending_engine_version #=> String
|
685
729
|
# resp.pending_host_instance_type #=> String
|
730
|
+
# resp.pending_ldap_server_metadata.hosts #=> Array
|
731
|
+
# resp.pending_ldap_server_metadata.hosts[0] #=> String
|
732
|
+
# resp.pending_ldap_server_metadata.role_base #=> String
|
733
|
+
# resp.pending_ldap_server_metadata.role_name #=> String
|
734
|
+
# resp.pending_ldap_server_metadata.role_search_matching #=> String
|
735
|
+
# resp.pending_ldap_server_metadata.role_search_subtree #=> Boolean
|
736
|
+
# resp.pending_ldap_server_metadata.service_account_username #=> String
|
737
|
+
# resp.pending_ldap_server_metadata.user_base #=> String
|
738
|
+
# resp.pending_ldap_server_metadata.user_role_name #=> String
|
739
|
+
# resp.pending_ldap_server_metadata.user_search_matching #=> String
|
740
|
+
# resp.pending_ldap_server_metadata.user_search_subtree #=> Boolean
|
686
741
|
# resp.pending_security_groups #=> Array
|
687
742
|
# resp.pending_security_groups[0] #=> String
|
688
743
|
# resp.publicly_accessible #=> Boolean
|
@@ -805,6 +860,7 @@ module Aws::MQ
|
|
805
860
|
# @return [Types::DescribeConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
806
861
|
#
|
807
862
|
# * {Types::DescribeConfigurationResponse#arn #arn} => String
|
863
|
+
# * {Types::DescribeConfigurationResponse#authentication_strategy #authentication_strategy} => String
|
808
864
|
# * {Types::DescribeConfigurationResponse#created #created} => Time
|
809
865
|
# * {Types::DescribeConfigurationResponse#description #description} => String
|
810
866
|
# * {Types::DescribeConfigurationResponse#engine_type #engine_type} => String
|
@@ -823,6 +879,7 @@ module Aws::MQ
|
|
823
879
|
# @example Response structure
|
824
880
|
#
|
825
881
|
# resp.arn #=> String
|
882
|
+
# resp.authentication_strategy #=> String, one of "SIMPLE", "LDAP"
|
826
883
|
# resp.created #=> Time
|
827
884
|
# resp.description #=> String
|
828
885
|
# resp.engine_type #=> String, one of "ACTIVEMQ"
|
@@ -934,6 +991,8 @@ module Aws::MQ
|
|
934
991
|
# * {Types::ListBrokersResponse#broker_summaries #broker_summaries} => Array<Types::BrokerSummary>
|
935
992
|
# * {Types::ListBrokersResponse#next_token #next_token} => String
|
936
993
|
#
|
994
|
+
# The returned {Seahorse::Client::Response response} is a pageable response and is Enumerable. For details on usage see {Aws::PageableResponse PageableResponse}.
|
995
|
+
#
|
937
996
|
# @example Request syntax with placeholder values
|
938
997
|
#
|
939
998
|
# resp = client.list_brokers({
|
@@ -1027,6 +1086,7 @@ module Aws::MQ
|
|
1027
1086
|
#
|
1028
1087
|
# resp.configurations #=> Array
|
1029
1088
|
# resp.configurations[0].arn #=> String
|
1089
|
+
# resp.configurations[0].authentication_strategy #=> String, one of "SIMPLE", "LDAP"
|
1030
1090
|
# resp.configurations[0].created #=> Time
|
1031
1091
|
# resp.configurations[0].description #=> String
|
1032
1092
|
# resp.configurations[0].engine_type #=> String, one of "ACTIVEMQ"
|
@@ -1142,6 +1202,9 @@ module Aws::MQ
|
|
1142
1202
|
|
1143
1203
|
# Adds a pending configuration change to a broker.
|
1144
1204
|
#
|
1205
|
+
# @option params [String] :authentication_strategy
|
1206
|
+
# The authentication strategy used to secure the broker.
|
1207
|
+
#
|
1145
1208
|
# @option params [Boolean] :auto_minor_version_upgrade
|
1146
1209
|
#
|
1147
1210
|
# @option params [required, String] :broker_id
|
@@ -1153,6 +1216,10 @@ module Aws::MQ
|
|
1153
1216
|
#
|
1154
1217
|
# @option params [String] :host_instance_type
|
1155
1218
|
#
|
1219
|
+
# @option params [Types::LdapServerMetadataInput] :ldap_server_metadata
|
1220
|
+
# The metadata of the LDAP server used to authenticate and authorize
|
1221
|
+
# connections to the broker.
|
1222
|
+
#
|
1156
1223
|
# @option params [Types::Logs] :logs
|
1157
1224
|
# The list of information about logs to be enabled for the specified
|
1158
1225
|
# broker.
|
@@ -1161,17 +1228,20 @@ module Aws::MQ
|
|
1161
1228
|
#
|
1162
1229
|
# @return [Types::UpdateBrokerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
1163
1230
|
#
|
1231
|
+
# * {Types::UpdateBrokerResponse#authentication_strategy #authentication_strategy} => String
|
1164
1232
|
# * {Types::UpdateBrokerResponse#auto_minor_version_upgrade #auto_minor_version_upgrade} => Boolean
|
1165
1233
|
# * {Types::UpdateBrokerResponse#broker_id #broker_id} => String
|
1166
1234
|
# * {Types::UpdateBrokerResponse#configuration #configuration} => Types::ConfigurationId
|
1167
1235
|
# * {Types::UpdateBrokerResponse#engine_version #engine_version} => String
|
1168
1236
|
# * {Types::UpdateBrokerResponse#host_instance_type #host_instance_type} => String
|
1237
|
+
# * {Types::UpdateBrokerResponse#ldap_server_metadata #ldap_server_metadata} => Types::LdapServerMetadataOutput
|
1169
1238
|
# * {Types::UpdateBrokerResponse#logs #logs} => Types::Logs
|
1170
1239
|
# * {Types::UpdateBrokerResponse#security_groups #security_groups} => Array<String>
|
1171
1240
|
#
|
1172
1241
|
# @example Request syntax with placeholder values
|
1173
1242
|
#
|
1174
1243
|
# resp = client.update_broker({
|
1244
|
+
# authentication_strategy: "SIMPLE", # accepts SIMPLE, LDAP
|
1175
1245
|
# auto_minor_version_upgrade: false,
|
1176
1246
|
# broker_id: "__string", # required
|
1177
1247
|
# configuration: {
|
@@ -1180,6 +1250,19 @@ module Aws::MQ
|
|
1180
1250
|
# },
|
1181
1251
|
# engine_version: "__string",
|
1182
1252
|
# host_instance_type: "__string",
|
1253
|
+
# ldap_server_metadata: {
|
1254
|
+
# hosts: ["__string"],
|
1255
|
+
# role_base: "__string",
|
1256
|
+
# role_name: "__string",
|
1257
|
+
# role_search_matching: "__string",
|
1258
|
+
# role_search_subtree: false,
|
1259
|
+
# service_account_password: "__string",
|
1260
|
+
# service_account_username: "__string",
|
1261
|
+
# user_base: "__string",
|
1262
|
+
# user_role_name: "__string",
|
1263
|
+
# user_search_matching: "__string",
|
1264
|
+
# user_search_subtree: false,
|
1265
|
+
# },
|
1183
1266
|
# logs: {
|
1184
1267
|
# audit: false,
|
1185
1268
|
# general: false,
|
@@ -1189,12 +1272,24 @@ module Aws::MQ
|
|
1189
1272
|
#
|
1190
1273
|
# @example Response structure
|
1191
1274
|
#
|
1275
|
+
# resp.authentication_strategy #=> String, one of "SIMPLE", "LDAP"
|
1192
1276
|
# resp.auto_minor_version_upgrade #=> Boolean
|
1193
1277
|
# resp.broker_id #=> String
|
1194
1278
|
# resp.configuration.id #=> String
|
1195
1279
|
# resp.configuration.revision #=> Integer
|
1196
1280
|
# resp.engine_version #=> String
|
1197
1281
|
# resp.host_instance_type #=> String
|
1282
|
+
# resp.ldap_server_metadata.hosts #=> Array
|
1283
|
+
# resp.ldap_server_metadata.hosts[0] #=> String
|
1284
|
+
# resp.ldap_server_metadata.role_base #=> String
|
1285
|
+
# resp.ldap_server_metadata.role_name #=> String
|
1286
|
+
# resp.ldap_server_metadata.role_search_matching #=> String
|
1287
|
+
# resp.ldap_server_metadata.role_search_subtree #=> Boolean
|
1288
|
+
# resp.ldap_server_metadata.service_account_username #=> String
|
1289
|
+
# resp.ldap_server_metadata.user_base #=> String
|
1290
|
+
# resp.ldap_server_metadata.user_role_name #=> String
|
1291
|
+
# resp.ldap_server_metadata.user_search_matching #=> String
|
1292
|
+
# resp.ldap_server_metadata.user_search_subtree #=> Boolean
|
1198
1293
|
# resp.logs.audit #=> Boolean
|
1199
1294
|
# resp.logs.general #=> Boolean
|
1200
1295
|
# resp.security_groups #=> Array
|
@@ -1303,7 +1398,7 @@ module Aws::MQ
|
|
1303
1398
|
params: params,
|
1304
1399
|
config: config)
|
1305
1400
|
context[:gem_name] = 'aws-sdk-mq'
|
1306
|
-
context[:gem_version] = '1.
|
1401
|
+
context[:gem_version] = '1.30.0'
|
1307
1402
|
Seahorse::Client::Request.new(handlers, context)
|
1308
1403
|
end
|
1309
1404
|
|
@@ -13,6 +13,7 @@ module Aws::MQ
|
|
13
13
|
|
14
14
|
include Seahorse::Model
|
15
15
|
|
16
|
+
AuthenticationStrategy = Shapes::StringShape.new(name: 'AuthenticationStrategy')
|
16
17
|
AvailabilityZone = Shapes::StructureShape.new(name: 'AvailabilityZone')
|
17
18
|
BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
|
18
19
|
BrokerEngineType = Shapes::StructureShape.new(name: 'BrokerEngineType')
|
@@ -70,6 +71,8 @@ module Aws::MQ
|
|
70
71
|
Error = Shapes::StructureShape.new(name: 'Error')
|
71
72
|
ForbiddenException = Shapes::StructureShape.new(name: 'ForbiddenException')
|
72
73
|
InternalServerErrorException = Shapes::StructureShape.new(name: 'InternalServerErrorException')
|
74
|
+
LdapServerMetadataInput = Shapes::StructureShape.new(name: 'LdapServerMetadataInput')
|
75
|
+
LdapServerMetadataOutput = Shapes::StructureShape.new(name: 'LdapServerMetadataOutput')
|
73
76
|
ListBrokersOutput = Shapes::StructureShape.new(name: 'ListBrokersOutput')
|
74
77
|
ListBrokersRequest = Shapes::StructureShape.new(name: 'ListBrokersRequest')
|
75
78
|
ListBrokersResponse = Shapes::StructureShape.new(name: 'ListBrokersResponse')
|
@@ -178,6 +181,7 @@ module Aws::MQ
|
|
178
181
|
BrokerSummary.struct_class = Types::BrokerSummary
|
179
182
|
|
180
183
|
Configuration.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
184
|
+
Configuration.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
181
185
|
Configuration.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
|
182
186
|
Configuration.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
183
187
|
Configuration.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
|
@@ -206,6 +210,7 @@ module Aws::MQ
|
|
206
210
|
ConflictException.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
207
211
|
ConflictException.struct_class = Types::ConflictException
|
208
212
|
|
213
|
+
CreateBrokerInput.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
209
214
|
CreateBrokerInput.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, location_name: "autoMinorVersionUpgrade"))
|
210
215
|
CreateBrokerInput.add_member(:broker_name, Shapes::ShapeRef.new(shape: __string, location_name: "brokerName"))
|
211
216
|
CreateBrokerInput.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "configuration"))
|
@@ -215,6 +220,7 @@ module Aws::MQ
|
|
215
220
|
CreateBrokerInput.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
|
216
221
|
CreateBrokerInput.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
217
222
|
CreateBrokerInput.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
|
223
|
+
CreateBrokerInput.add_member(:ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataInput, location_name: "ldapServerMetadata"))
|
218
224
|
CreateBrokerInput.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
|
219
225
|
CreateBrokerInput.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
|
220
226
|
CreateBrokerInput.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, location_name: "publiclyAccessible"))
|
@@ -229,6 +235,7 @@ module Aws::MQ
|
|
229
235
|
CreateBrokerOutput.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
|
230
236
|
CreateBrokerOutput.struct_class = Types::CreateBrokerOutput
|
231
237
|
|
238
|
+
CreateBrokerRequest.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
232
239
|
CreateBrokerRequest.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, location_name: "autoMinorVersionUpgrade"))
|
233
240
|
CreateBrokerRequest.add_member(:broker_name, Shapes::ShapeRef.new(shape: __string, location_name: "brokerName"))
|
234
241
|
CreateBrokerRequest.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "configuration"))
|
@@ -238,6 +245,7 @@ module Aws::MQ
|
|
238
245
|
CreateBrokerRequest.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
|
239
246
|
CreateBrokerRequest.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
240
247
|
CreateBrokerRequest.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
|
248
|
+
CreateBrokerRequest.add_member(:ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataInput, location_name: "ldapServerMetadata"))
|
241
249
|
CreateBrokerRequest.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
|
242
250
|
CreateBrokerRequest.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
|
243
251
|
CreateBrokerRequest.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, location_name: "publiclyAccessible"))
|
@@ -252,6 +260,7 @@ module Aws::MQ
|
|
252
260
|
CreateBrokerResponse.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
|
253
261
|
CreateBrokerResponse.struct_class = Types::CreateBrokerResponse
|
254
262
|
|
263
|
+
CreateConfigurationInput.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
255
264
|
CreateConfigurationInput.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
|
256
265
|
CreateConfigurationInput.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
257
266
|
CreateConfigurationInput.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
@@ -259,12 +268,14 @@ module Aws::MQ
|
|
259
268
|
CreateConfigurationInput.struct_class = Types::CreateConfigurationInput
|
260
269
|
|
261
270
|
CreateConfigurationOutput.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
271
|
+
CreateConfigurationOutput.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
262
272
|
CreateConfigurationOutput.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
|
263
273
|
CreateConfigurationOutput.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
264
274
|
CreateConfigurationOutput.add_member(:latest_revision, Shapes::ShapeRef.new(shape: ConfigurationRevision, location_name: "latestRevision"))
|
265
275
|
CreateConfigurationOutput.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
266
276
|
CreateConfigurationOutput.struct_class = Types::CreateConfigurationOutput
|
267
277
|
|
278
|
+
CreateConfigurationRequest.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
268
279
|
CreateConfigurationRequest.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
|
269
280
|
CreateConfigurationRequest.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
270
281
|
CreateConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
@@ -272,6 +283,7 @@ module Aws::MQ
|
|
272
283
|
CreateConfigurationRequest.struct_class = Types::CreateConfigurationRequest
|
273
284
|
|
274
285
|
CreateConfigurationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
286
|
+
CreateConfigurationResponse.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
275
287
|
CreateConfigurationResponse.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
|
276
288
|
CreateConfigurationResponse.add_member(:id, Shapes::ShapeRef.new(shape: __string, location_name: "id"))
|
277
289
|
CreateConfigurationResponse.add_member(:latest_revision, Shapes::ShapeRef.new(shape: ConfigurationRevision, location_name: "latestRevision"))
|
@@ -337,6 +349,7 @@ module Aws::MQ
|
|
337
349
|
DescribeBrokerInstanceOptionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
|
338
350
|
DescribeBrokerInstanceOptionsResponse.struct_class = Types::DescribeBrokerInstanceOptionsResponse
|
339
351
|
|
352
|
+
DescribeBrokerOutput.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
340
353
|
DescribeBrokerOutput.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, location_name: "autoMinorVersionUpgrade"))
|
341
354
|
DescribeBrokerOutput.add_member(:broker_arn, Shapes::ShapeRef.new(shape: __string, location_name: "brokerArn"))
|
342
355
|
DescribeBrokerOutput.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
|
@@ -350,10 +363,13 @@ module Aws::MQ
|
|
350
363
|
DescribeBrokerOutput.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
|
351
364
|
DescribeBrokerOutput.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
352
365
|
DescribeBrokerOutput.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
|
366
|
+
DescribeBrokerOutput.add_member(:ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataOutput, location_name: "ldapServerMetadata"))
|
353
367
|
DescribeBrokerOutput.add_member(:logs, Shapes::ShapeRef.new(shape: LogsSummary, location_name: "logs"))
|
354
368
|
DescribeBrokerOutput.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
|
369
|
+
DescribeBrokerOutput.add_member(:pending_authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "pendingAuthenticationStrategy"))
|
355
370
|
DescribeBrokerOutput.add_member(:pending_engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "pendingEngineVersion"))
|
356
371
|
DescribeBrokerOutput.add_member(:pending_host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "pendingHostInstanceType"))
|
372
|
+
DescribeBrokerOutput.add_member(:pending_ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataOutput, location_name: "pendingLdapServerMetadata"))
|
357
373
|
DescribeBrokerOutput.add_member(:pending_security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "pendingSecurityGroups"))
|
358
374
|
DescribeBrokerOutput.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, location_name: "publiclyAccessible"))
|
359
375
|
DescribeBrokerOutput.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
@@ -366,6 +382,7 @@ module Aws::MQ
|
|
366
382
|
DescribeBrokerRequest.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "broker-id"))
|
367
383
|
DescribeBrokerRequest.struct_class = Types::DescribeBrokerRequest
|
368
384
|
|
385
|
+
DescribeBrokerResponse.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
369
386
|
DescribeBrokerResponse.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, location_name: "autoMinorVersionUpgrade"))
|
370
387
|
DescribeBrokerResponse.add_member(:broker_arn, Shapes::ShapeRef.new(shape: __string, location_name: "brokerArn"))
|
371
388
|
DescribeBrokerResponse.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
|
@@ -379,10 +396,13 @@ module Aws::MQ
|
|
379
396
|
DescribeBrokerResponse.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
|
380
397
|
DescribeBrokerResponse.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
381
398
|
DescribeBrokerResponse.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
|
399
|
+
DescribeBrokerResponse.add_member(:ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataOutput, location_name: "ldapServerMetadata"))
|
382
400
|
DescribeBrokerResponse.add_member(:logs, Shapes::ShapeRef.new(shape: LogsSummary, location_name: "logs"))
|
383
401
|
DescribeBrokerResponse.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
|
402
|
+
DescribeBrokerResponse.add_member(:pending_authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "pendingAuthenticationStrategy"))
|
384
403
|
DescribeBrokerResponse.add_member(:pending_engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "pendingEngineVersion"))
|
385
404
|
DescribeBrokerResponse.add_member(:pending_host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "pendingHostInstanceType"))
|
405
|
+
DescribeBrokerResponse.add_member(:pending_ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataOutput, location_name: "pendingLdapServerMetadata"))
|
386
406
|
DescribeBrokerResponse.add_member(:pending_security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "pendingSecurityGroups"))
|
387
407
|
DescribeBrokerResponse.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, location_name: "publiclyAccessible"))
|
388
408
|
DescribeBrokerResponse.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
@@ -396,6 +416,7 @@ module Aws::MQ
|
|
396
416
|
DescribeConfigurationRequest.struct_class = Types::DescribeConfigurationRequest
|
397
417
|
|
398
418
|
DescribeConfigurationResponse.add_member(:arn, Shapes::ShapeRef.new(shape: __string, location_name: "arn"))
|
419
|
+
DescribeConfigurationResponse.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
399
420
|
DescribeConfigurationResponse.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
|
400
421
|
DescribeConfigurationResponse.add_member(:description, Shapes::ShapeRef.new(shape: __string, location_name: "description"))
|
401
422
|
DescribeConfigurationResponse.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
|
@@ -459,6 +480,31 @@ module Aws::MQ
|
|
459
480
|
InternalServerErrorException.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
460
481
|
InternalServerErrorException.struct_class = Types::InternalServerErrorException
|
461
482
|
|
483
|
+
LdapServerMetadataInput.add_member(:hosts, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "hosts"))
|
484
|
+
LdapServerMetadataInput.add_member(:role_base, Shapes::ShapeRef.new(shape: __string, location_name: "roleBase"))
|
485
|
+
LdapServerMetadataInput.add_member(:role_name, Shapes::ShapeRef.new(shape: __string, location_name: "roleName"))
|
486
|
+
LdapServerMetadataInput.add_member(:role_search_matching, Shapes::ShapeRef.new(shape: __string, location_name: "roleSearchMatching"))
|
487
|
+
LdapServerMetadataInput.add_member(:role_search_subtree, Shapes::ShapeRef.new(shape: __boolean, location_name: "roleSearchSubtree"))
|
488
|
+
LdapServerMetadataInput.add_member(:service_account_password, Shapes::ShapeRef.new(shape: __string, location_name: "serviceAccountPassword"))
|
489
|
+
LdapServerMetadataInput.add_member(:service_account_username, Shapes::ShapeRef.new(shape: __string, location_name: "serviceAccountUsername"))
|
490
|
+
LdapServerMetadataInput.add_member(:user_base, Shapes::ShapeRef.new(shape: __string, location_name: "userBase"))
|
491
|
+
LdapServerMetadataInput.add_member(:user_role_name, Shapes::ShapeRef.new(shape: __string, location_name: "userRoleName"))
|
492
|
+
LdapServerMetadataInput.add_member(:user_search_matching, Shapes::ShapeRef.new(shape: __string, location_name: "userSearchMatching"))
|
493
|
+
LdapServerMetadataInput.add_member(:user_search_subtree, Shapes::ShapeRef.new(shape: __boolean, location_name: "userSearchSubtree"))
|
494
|
+
LdapServerMetadataInput.struct_class = Types::LdapServerMetadataInput
|
495
|
+
|
496
|
+
LdapServerMetadataOutput.add_member(:hosts, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "hosts"))
|
497
|
+
LdapServerMetadataOutput.add_member(:role_base, Shapes::ShapeRef.new(shape: __string, location_name: "roleBase"))
|
498
|
+
LdapServerMetadataOutput.add_member(:role_name, Shapes::ShapeRef.new(shape: __string, location_name: "roleName"))
|
499
|
+
LdapServerMetadataOutput.add_member(:role_search_matching, Shapes::ShapeRef.new(shape: __string, location_name: "roleSearchMatching"))
|
500
|
+
LdapServerMetadataOutput.add_member(:role_search_subtree, Shapes::ShapeRef.new(shape: __boolean, location_name: "roleSearchSubtree"))
|
501
|
+
LdapServerMetadataOutput.add_member(:service_account_username, Shapes::ShapeRef.new(shape: __string, location_name: "serviceAccountUsername"))
|
502
|
+
LdapServerMetadataOutput.add_member(:user_base, Shapes::ShapeRef.new(shape: __string, location_name: "userBase"))
|
503
|
+
LdapServerMetadataOutput.add_member(:user_role_name, Shapes::ShapeRef.new(shape: __string, location_name: "userRoleName"))
|
504
|
+
LdapServerMetadataOutput.add_member(:user_search_matching, Shapes::ShapeRef.new(shape: __string, location_name: "userSearchMatching"))
|
505
|
+
LdapServerMetadataOutput.add_member(:user_search_subtree, Shapes::ShapeRef.new(shape: __boolean, location_name: "userSearchSubtree"))
|
506
|
+
LdapServerMetadataOutput.struct_class = Types::LdapServerMetadataOutput
|
507
|
+
|
462
508
|
ListBrokersOutput.add_member(:broker_summaries, Shapes::ShapeRef.new(shape: __listOfBrokerSummary, location_name: "brokerSummaries"))
|
463
509
|
ListBrokersOutput.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
|
464
510
|
ListBrokersOutput.struct_class = Types::ListBrokersOutput
|
@@ -561,37 +607,45 @@ module Aws::MQ
|
|
561
607
|
UnauthorizedException.add_member(:message, Shapes::ShapeRef.new(shape: __string, location_name: "message"))
|
562
608
|
UnauthorizedException.struct_class = Types::UnauthorizedException
|
563
609
|
|
610
|
+
UpdateBrokerInput.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
564
611
|
UpdateBrokerInput.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, location_name: "autoMinorVersionUpgrade"))
|
565
612
|
UpdateBrokerInput.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "configuration"))
|
566
613
|
UpdateBrokerInput.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
567
614
|
UpdateBrokerInput.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
|
615
|
+
UpdateBrokerInput.add_member(:ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataInput, location_name: "ldapServerMetadata"))
|
568
616
|
UpdateBrokerInput.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
|
569
617
|
UpdateBrokerInput.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
570
618
|
UpdateBrokerInput.struct_class = Types::UpdateBrokerInput
|
571
619
|
|
620
|
+
UpdateBrokerOutput.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
572
621
|
UpdateBrokerOutput.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, location_name: "autoMinorVersionUpgrade"))
|
573
622
|
UpdateBrokerOutput.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
|
574
623
|
UpdateBrokerOutput.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "configuration"))
|
575
624
|
UpdateBrokerOutput.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
576
625
|
UpdateBrokerOutput.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
|
626
|
+
UpdateBrokerOutput.add_member(:ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataOutput, location_name: "ldapServerMetadata"))
|
577
627
|
UpdateBrokerOutput.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
|
578
628
|
UpdateBrokerOutput.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
579
629
|
UpdateBrokerOutput.struct_class = Types::UpdateBrokerOutput
|
580
630
|
|
631
|
+
UpdateBrokerRequest.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
581
632
|
UpdateBrokerRequest.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, location_name: "autoMinorVersionUpgrade"))
|
582
633
|
UpdateBrokerRequest.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "broker-id"))
|
583
634
|
UpdateBrokerRequest.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "configuration"))
|
584
635
|
UpdateBrokerRequest.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
585
636
|
UpdateBrokerRequest.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
|
637
|
+
UpdateBrokerRequest.add_member(:ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataInput, location_name: "ldapServerMetadata"))
|
586
638
|
UpdateBrokerRequest.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
|
587
639
|
UpdateBrokerRequest.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
588
640
|
UpdateBrokerRequest.struct_class = Types::UpdateBrokerRequest
|
589
641
|
|
642
|
+
UpdateBrokerResponse.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
590
643
|
UpdateBrokerResponse.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, location_name: "autoMinorVersionUpgrade"))
|
591
644
|
UpdateBrokerResponse.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
|
592
645
|
UpdateBrokerResponse.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "configuration"))
|
593
646
|
UpdateBrokerResponse.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
594
647
|
UpdateBrokerResponse.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
|
648
|
+
UpdateBrokerResponse.add_member(:ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataOutput, location_name: "ldapServerMetadata"))
|
595
649
|
UpdateBrokerResponse.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
|
596
650
|
UpdateBrokerResponse.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
597
651
|
UpdateBrokerResponse.struct_class = Types::UpdateBrokerResponse
|
@@ -869,6 +923,12 @@ module Aws::MQ
|
|
869
923
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
870
924
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
871
925
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
926
|
+
o[:pager] = Aws::Pager.new(
|
927
|
+
limit_key: "max_results",
|
928
|
+
tokens: {
|
929
|
+
"next_token" => "next_token"
|
930
|
+
}
|
931
|
+
)
|
872
932
|
end)
|
873
933
|
|
874
934
|
api.add_operation(:list_configuration_revisions, Seahorse::Model::Operation.new.tap do |o|
|
data/lib/aws-sdk-mq/types.rb
CHANGED
@@ -231,6 +231,10 @@ module Aws::MQ
|
|
231
231
|
# Required. The ARN of the configuration.
|
232
232
|
# @return [String]
|
233
233
|
#
|
234
|
+
# @!attribute [rw] authentication_strategy
|
235
|
+
# The authentication strategy associated with the configuration.
|
236
|
+
# @return [String]
|
237
|
+
#
|
234
238
|
# @!attribute [rw] created
|
235
239
|
# Required. The date and time of the configuration revision.
|
236
240
|
# @return [Time]
|
@@ -273,6 +277,7 @@ module Aws::MQ
|
|
273
277
|
#
|
274
278
|
class Configuration < Struct.new(
|
275
279
|
:arn,
|
280
|
+
:authentication_strategy,
|
276
281
|
:created,
|
277
282
|
:description,
|
278
283
|
:engine_type,
|
@@ -378,8 +383,13 @@ module Aws::MQ
|
|
378
383
|
include Aws::Structure
|
379
384
|
end
|
380
385
|
|
381
|
-
# Required. The
|
382
|
-
#
|
386
|
+
# Required. The version of the broker engine. For a list of supported
|
387
|
+
# engine versions, see
|
388
|
+
# https://docs.aws.amazon.com/amazon-mq/latest/developer-guide/broker-engine.html
|
389
|
+
#
|
390
|
+
# @!attribute [rw] authentication_strategy
|
391
|
+
# The authentication strategy used to secure the broker.
|
392
|
+
# @return [String]
|
383
393
|
#
|
384
394
|
# @!attribute [rw] auto_minor_version_upgrade
|
385
395
|
# Required. Enables automatic upgrades to new minor versions for
|
@@ -427,6 +437,11 @@ module Aws::MQ
|
|
427
437
|
# Required. The broker's instance type.
|
428
438
|
# @return [String]
|
429
439
|
#
|
440
|
+
# @!attribute [rw] ldap_server_metadata
|
441
|
+
# The metadata of the LDAP server used to authenticate and authorize
|
442
|
+
# connections to the broker.
|
443
|
+
# @return [Types::LdapServerMetadataInput]
|
444
|
+
#
|
430
445
|
# @!attribute [rw] logs
|
431
446
|
# Enables Amazon CloudWatch logging for brokers.
|
432
447
|
# @return [Types::Logs]
|
@@ -471,6 +486,7 @@ module Aws::MQ
|
|
471
486
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/CreateBrokerInput AWS API Documentation
|
472
487
|
#
|
473
488
|
class CreateBrokerInput < Struct.new(
|
489
|
+
:authentication_strategy,
|
474
490
|
:auto_minor_version_upgrade,
|
475
491
|
:broker_name,
|
476
492
|
:configuration,
|
@@ -480,6 +496,7 @@ module Aws::MQ
|
|
480
496
|
:engine_type,
|
481
497
|
:engine_version,
|
482
498
|
:host_instance_type,
|
499
|
+
:ldap_server_metadata,
|
483
500
|
:logs,
|
484
501
|
:maintenance_window_start_time,
|
485
502
|
:publicly_accessible,
|
@@ -515,6 +532,7 @@ module Aws::MQ
|
|
515
532
|
# data as a hash:
|
516
533
|
#
|
517
534
|
# {
|
535
|
+
# authentication_strategy: "SIMPLE", # accepts SIMPLE, LDAP
|
518
536
|
# auto_minor_version_upgrade: false,
|
519
537
|
# broker_name: "__string",
|
520
538
|
# configuration: {
|
@@ -530,6 +548,19 @@ module Aws::MQ
|
|
530
548
|
# engine_type: "ACTIVEMQ", # accepts ACTIVEMQ
|
531
549
|
# engine_version: "__string",
|
532
550
|
# host_instance_type: "__string",
|
551
|
+
# ldap_server_metadata: {
|
552
|
+
# hosts: ["__string"],
|
553
|
+
# role_base: "__string",
|
554
|
+
# role_name: "__string",
|
555
|
+
# role_search_matching: "__string",
|
556
|
+
# role_search_subtree: false,
|
557
|
+
# service_account_password: "__string",
|
558
|
+
# service_account_username: "__string",
|
559
|
+
# user_base: "__string",
|
560
|
+
# user_role_name: "__string",
|
561
|
+
# user_search_matching: "__string",
|
562
|
+
# user_search_subtree: false,
|
563
|
+
# },
|
533
564
|
# logs: {
|
534
565
|
# audit: false,
|
535
566
|
# general: false,
|
@@ -556,6 +587,10 @@ module Aws::MQ
|
|
556
587
|
# ],
|
557
588
|
# }
|
558
589
|
#
|
590
|
+
# @!attribute [rw] authentication_strategy
|
591
|
+
# The authentication strategy used to secure the broker.
|
592
|
+
# @return [String]
|
593
|
+
#
|
559
594
|
# @!attribute [rw] auto_minor_version_upgrade
|
560
595
|
# @return [Boolean]
|
561
596
|
#
|
@@ -590,6 +625,11 @@ module Aws::MQ
|
|
590
625
|
# @!attribute [rw] host_instance_type
|
591
626
|
# @return [String]
|
592
627
|
#
|
628
|
+
# @!attribute [rw] ldap_server_metadata
|
629
|
+
# The metadata of the LDAP server used to authenticate and authorize
|
630
|
+
# connections to the broker.
|
631
|
+
# @return [Types::LdapServerMetadataInput]
|
632
|
+
#
|
593
633
|
# @!attribute [rw] logs
|
594
634
|
# The list of information about logs to be enabled for the specified
|
595
635
|
# broker.
|
@@ -622,6 +662,7 @@ module Aws::MQ
|
|
622
662
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/CreateBrokerRequest AWS API Documentation
|
623
663
|
#
|
624
664
|
class CreateBrokerRequest < Struct.new(
|
665
|
+
:authentication_strategy,
|
625
666
|
:auto_minor_version_upgrade,
|
626
667
|
:broker_name,
|
627
668
|
:configuration,
|
@@ -631,6 +672,7 @@ module Aws::MQ
|
|
631
672
|
:engine_type,
|
632
673
|
:engine_version,
|
633
674
|
:host_instance_type,
|
675
|
+
:ldap_server_metadata,
|
634
676
|
:logs,
|
635
677
|
:maintenance_window_start_time,
|
636
678
|
:publicly_accessible,
|
@@ -662,6 +704,10 @@ module Aws::MQ
|
|
662
704
|
# Amazon MQ uses the default configuration (the engine type and
|
663
705
|
# version).
|
664
706
|
#
|
707
|
+
# @!attribute [rw] authentication_strategy
|
708
|
+
# The authentication strategy associated with the configuration.
|
709
|
+
# @return [String]
|
710
|
+
#
|
665
711
|
# @!attribute [rw] engine_type
|
666
712
|
# Required. The type of broker engine. Note: Currently, Amazon MQ
|
667
713
|
# supports only ACTIVEMQ.
|
@@ -686,6 +732,7 @@ module Aws::MQ
|
|
686
732
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/CreateConfigurationInput AWS API Documentation
|
687
733
|
#
|
688
734
|
class CreateConfigurationInput < Struct.new(
|
735
|
+
:authentication_strategy,
|
689
736
|
:engine_type,
|
690
737
|
:engine_version,
|
691
738
|
:name,
|
@@ -700,6 +747,10 @@ module Aws::MQ
|
|
700
747
|
# Required. The Amazon Resource Name (ARN) of the configuration.
|
701
748
|
# @return [String]
|
702
749
|
#
|
750
|
+
# @!attribute [rw] authentication_strategy
|
751
|
+
# The authentication strategy associated with the configuration.
|
752
|
+
# @return [String]
|
753
|
+
#
|
703
754
|
# @!attribute [rw] created
|
704
755
|
# Required. The date and time of the configuration.
|
705
756
|
# @return [Time]
|
@@ -723,6 +774,7 @@ module Aws::MQ
|
|
723
774
|
#
|
724
775
|
class CreateConfigurationOutput < Struct.new(
|
725
776
|
:arn,
|
777
|
+
:authentication_strategy,
|
726
778
|
:created,
|
727
779
|
:id,
|
728
780
|
:latest_revision,
|
@@ -735,6 +787,7 @@ module Aws::MQ
|
|
735
787
|
# data as a hash:
|
736
788
|
#
|
737
789
|
# {
|
790
|
+
# authentication_strategy: "SIMPLE", # accepts SIMPLE, LDAP
|
738
791
|
# engine_type: "ACTIVEMQ", # accepts ACTIVEMQ
|
739
792
|
# engine_version: "__string",
|
740
793
|
# name: "__string",
|
@@ -743,6 +796,10 @@ module Aws::MQ
|
|
743
796
|
# },
|
744
797
|
# }
|
745
798
|
#
|
799
|
+
# @!attribute [rw] authentication_strategy
|
800
|
+
# The authentication strategy used to secure the broker.
|
801
|
+
# @return [String]
|
802
|
+
#
|
746
803
|
# @!attribute [rw] engine_type
|
747
804
|
# The type of broker engine. Note: Currently, Amazon MQ supports only
|
748
805
|
# ActiveMQ.
|
@@ -760,6 +817,7 @@ module Aws::MQ
|
|
760
817
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/CreateConfigurationRequest AWS API Documentation
|
761
818
|
#
|
762
819
|
class CreateConfigurationRequest < Struct.new(
|
820
|
+
:authentication_strategy,
|
763
821
|
:engine_type,
|
764
822
|
:engine_version,
|
765
823
|
:name,
|
@@ -771,6 +829,10 @@ module Aws::MQ
|
|
771
829
|
# @!attribute [rw] arn
|
772
830
|
# @return [String]
|
773
831
|
#
|
832
|
+
# @!attribute [rw] authentication_strategy
|
833
|
+
# The authentication strategy used to secure the broker.
|
834
|
+
# @return [String]
|
835
|
+
#
|
774
836
|
# @!attribute [rw] created
|
775
837
|
# @return [Time]
|
776
838
|
#
|
@@ -788,6 +850,7 @@ module Aws::MQ
|
|
788
850
|
#
|
789
851
|
class CreateConfigurationResponse < Struct.new(
|
790
852
|
:arn,
|
853
|
+
:authentication_strategy,
|
791
854
|
:created,
|
792
855
|
:id,
|
793
856
|
:latest_revision,
|
@@ -1094,6 +1157,10 @@ module Aws::MQ
|
|
1094
1157
|
# versions, see
|
1095
1158
|
# https://docs.aws.amazon.com/amazon-mq/latest/developer-guide/broker-engine.html
|
1096
1159
|
#
|
1160
|
+
# @!attribute [rw] authentication_strategy
|
1161
|
+
# The authentication strategy used to secure the broker.
|
1162
|
+
# @return [String]
|
1163
|
+
#
|
1097
1164
|
# @!attribute [rw] auto_minor_version_upgrade
|
1098
1165
|
# Required. Enables automatic upgrades to new minor versions for
|
1099
1166
|
# brokers, as Apache releases the versions. The automatic upgrades
|
@@ -1155,6 +1222,11 @@ module Aws::MQ
|
|
1155
1222
|
# The broker's instance type.
|
1156
1223
|
# @return [String]
|
1157
1224
|
#
|
1225
|
+
# @!attribute [rw] ldap_server_metadata
|
1226
|
+
# The metadata of the LDAP server used to authenticate and authorize
|
1227
|
+
# connections to the broker.
|
1228
|
+
# @return [Types::LdapServerMetadataOutput]
|
1229
|
+
#
|
1158
1230
|
# @!attribute [rw] logs
|
1159
1231
|
# The list of information about logs currently enabled and pending to
|
1160
1232
|
# be deployed for the specified broker.
|
@@ -1164,6 +1236,11 @@ module Aws::MQ
|
|
1164
1236
|
# The parameters that determine the WeeklyStartTime.
|
1165
1237
|
# @return [Types::WeeklyStartTime]
|
1166
1238
|
#
|
1239
|
+
# @!attribute [rw] pending_authentication_strategy
|
1240
|
+
# The authentication strategy that will be applied when the broker is
|
1241
|
+
# rebooted.
|
1242
|
+
# @return [String]
|
1243
|
+
#
|
1167
1244
|
# @!attribute [rw] pending_engine_version
|
1168
1245
|
# The version of the broker engine to upgrade to. For a list of
|
1169
1246
|
# supported engine versions, see
|
@@ -1176,6 +1253,11 @@ module Aws::MQ
|
|
1176
1253
|
# https://docs.aws.amazon.com/amazon-mq/latest/developer-guide//broker.html#broker-instance-types
|
1177
1254
|
# @return [String]
|
1178
1255
|
#
|
1256
|
+
# @!attribute [rw] pending_ldap_server_metadata
|
1257
|
+
# The metadata of the LDAP server that will be used to authenticate
|
1258
|
+
# and authorize connections to the broker once it is rebooted.
|
1259
|
+
# @return [Types::LdapServerMetadataOutput]
|
1260
|
+
#
|
1179
1261
|
# @!attribute [rw] pending_security_groups
|
1180
1262
|
# The list of pending security groups to authorize connections to
|
1181
1263
|
# brokers.
|
@@ -1214,6 +1296,7 @@ module Aws::MQ
|
|
1214
1296
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/DescribeBrokerOutput AWS API Documentation
|
1215
1297
|
#
|
1216
1298
|
class DescribeBrokerOutput < Struct.new(
|
1299
|
+
:authentication_strategy,
|
1217
1300
|
:auto_minor_version_upgrade,
|
1218
1301
|
:broker_arn,
|
1219
1302
|
:broker_id,
|
@@ -1227,10 +1310,13 @@ module Aws::MQ
|
|
1227
1310
|
:engine_type,
|
1228
1311
|
:engine_version,
|
1229
1312
|
:host_instance_type,
|
1313
|
+
:ldap_server_metadata,
|
1230
1314
|
:logs,
|
1231
1315
|
:maintenance_window_start_time,
|
1316
|
+
:pending_authentication_strategy,
|
1232
1317
|
:pending_engine_version,
|
1233
1318
|
:pending_host_instance_type,
|
1319
|
+
:pending_ldap_server_metadata,
|
1234
1320
|
:pending_security_groups,
|
1235
1321
|
:publicly_accessible,
|
1236
1322
|
:security_groups,
|
@@ -1260,6 +1346,10 @@ module Aws::MQ
|
|
1260
1346
|
include Aws::Structure
|
1261
1347
|
end
|
1262
1348
|
|
1349
|
+
# @!attribute [rw] authentication_strategy
|
1350
|
+
# The authentication strategy used to secure the broker.
|
1351
|
+
# @return [String]
|
1352
|
+
#
|
1263
1353
|
# @!attribute [rw] auto_minor_version_upgrade
|
1264
1354
|
# @return [Boolean]
|
1265
1355
|
#
|
@@ -1305,6 +1395,11 @@ module Aws::MQ
|
|
1305
1395
|
# @!attribute [rw] host_instance_type
|
1306
1396
|
# @return [String]
|
1307
1397
|
#
|
1398
|
+
# @!attribute [rw] ldap_server_metadata
|
1399
|
+
# The metadata of the LDAP server used to authenticate and authorize
|
1400
|
+
# connections to the broker.
|
1401
|
+
# @return [Types::LdapServerMetadataOutput]
|
1402
|
+
#
|
1308
1403
|
# @!attribute [rw] logs
|
1309
1404
|
# The list of information about logs currently enabled and pending to
|
1310
1405
|
# be deployed for the specified broker.
|
@@ -1315,12 +1410,21 @@ module Aws::MQ
|
|
1315
1410
|
# begins to apply pending updates or patches to the broker.
|
1316
1411
|
# @return [Types::WeeklyStartTime]
|
1317
1412
|
#
|
1413
|
+
# @!attribute [rw] pending_authentication_strategy
|
1414
|
+
# The authentication strategy used to secure the broker.
|
1415
|
+
# @return [String]
|
1416
|
+
#
|
1318
1417
|
# @!attribute [rw] pending_engine_version
|
1319
1418
|
# @return [String]
|
1320
1419
|
#
|
1321
1420
|
# @!attribute [rw] pending_host_instance_type
|
1322
1421
|
# @return [String]
|
1323
1422
|
#
|
1423
|
+
# @!attribute [rw] pending_ldap_server_metadata
|
1424
|
+
# The metadata of the LDAP server used to authenticate and authorize
|
1425
|
+
# connections to the broker.
|
1426
|
+
# @return [Types::LdapServerMetadataOutput]
|
1427
|
+
#
|
1324
1428
|
# @!attribute [rw] pending_security_groups
|
1325
1429
|
# @return [Array<String>]
|
1326
1430
|
#
|
@@ -1346,6 +1450,7 @@ module Aws::MQ
|
|
1346
1450
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/DescribeBrokerResponse AWS API Documentation
|
1347
1451
|
#
|
1348
1452
|
class DescribeBrokerResponse < Struct.new(
|
1453
|
+
:authentication_strategy,
|
1349
1454
|
:auto_minor_version_upgrade,
|
1350
1455
|
:broker_arn,
|
1351
1456
|
:broker_id,
|
@@ -1359,10 +1464,13 @@ module Aws::MQ
|
|
1359
1464
|
:engine_type,
|
1360
1465
|
:engine_version,
|
1361
1466
|
:host_instance_type,
|
1467
|
+
:ldap_server_metadata,
|
1362
1468
|
:logs,
|
1363
1469
|
:maintenance_window_start_time,
|
1470
|
+
:pending_authentication_strategy,
|
1364
1471
|
:pending_engine_version,
|
1365
1472
|
:pending_host_instance_type,
|
1473
|
+
:pending_ldap_server_metadata,
|
1366
1474
|
:pending_security_groups,
|
1367
1475
|
:publicly_accessible,
|
1368
1476
|
:security_groups,
|
@@ -1395,6 +1503,10 @@ module Aws::MQ
|
|
1395
1503
|
# @!attribute [rw] arn
|
1396
1504
|
# @return [String]
|
1397
1505
|
#
|
1506
|
+
# @!attribute [rw] authentication_strategy
|
1507
|
+
# The authentication strategy used to secure the broker.
|
1508
|
+
# @return [String]
|
1509
|
+
#
|
1398
1510
|
# @!attribute [rw] created
|
1399
1511
|
# @return [Time]
|
1400
1512
|
#
|
@@ -1426,6 +1538,7 @@ module Aws::MQ
|
|
1426
1538
|
#
|
1427
1539
|
class DescribeConfigurationResponse < Struct.new(
|
1428
1540
|
:arn,
|
1541
|
+
:authentication_strategy,
|
1429
1542
|
:created,
|
1430
1543
|
:description,
|
1431
1544
|
:engine_type,
|
@@ -1618,9 +1731,10 @@ module Aws::MQ
|
|
1618
1731
|
# }
|
1619
1732
|
#
|
1620
1733
|
# @!attribute [rw] kms_key_id
|
1621
|
-
# The customer master key (CMK) to use for the AWS Key
|
1622
|
-
# Service (KMS). This key is used to encrypt your data at
|
1623
|
-
# provided, Amazon MQ will use a default CMK to encrypt
|
1734
|
+
# The symmetric customer master key (CMK) to use for the AWS Key
|
1735
|
+
# Management Service (KMS). This key is used to encrypt your data at
|
1736
|
+
# rest. If not provided, Amazon MQ will use a default CMK to encrypt
|
1737
|
+
# your data.
|
1624
1738
|
# @return [String]
|
1625
1739
|
#
|
1626
1740
|
# @!attribute [rw] use_aws_owned_key
|
@@ -1704,6 +1818,160 @@ module Aws::MQ
|
|
1704
1818
|
include Aws::Structure
|
1705
1819
|
end
|
1706
1820
|
|
1821
|
+
# The metadata of the LDAP server used to authenticate and authorize
|
1822
|
+
# connections to the broker.
|
1823
|
+
#
|
1824
|
+
# @note When making an API call, you may pass LdapServerMetadataInput
|
1825
|
+
# data as a hash:
|
1826
|
+
#
|
1827
|
+
# {
|
1828
|
+
# hosts: ["__string"],
|
1829
|
+
# role_base: "__string",
|
1830
|
+
# role_name: "__string",
|
1831
|
+
# role_search_matching: "__string",
|
1832
|
+
# role_search_subtree: false,
|
1833
|
+
# service_account_password: "__string",
|
1834
|
+
# service_account_username: "__string",
|
1835
|
+
# user_base: "__string",
|
1836
|
+
# user_role_name: "__string",
|
1837
|
+
# user_search_matching: "__string",
|
1838
|
+
# user_search_subtree: false,
|
1839
|
+
# }
|
1840
|
+
#
|
1841
|
+
# @!attribute [rw] hosts
|
1842
|
+
# Fully qualified domain name of the LDAP server. Optional failover
|
1843
|
+
# server.
|
1844
|
+
# @return [Array<String>]
|
1845
|
+
#
|
1846
|
+
# @!attribute [rw] role_base
|
1847
|
+
# Fully qualified name of the directory to search for a user’s groups.
|
1848
|
+
# @return [String]
|
1849
|
+
#
|
1850
|
+
# @!attribute [rw] role_name
|
1851
|
+
# Specifies the LDAP attribute that identifies the group name
|
1852
|
+
# attribute in the object returned from the group membership query.
|
1853
|
+
# @return [String]
|
1854
|
+
#
|
1855
|
+
# @!attribute [rw] role_search_matching
|
1856
|
+
# The search criteria for groups.
|
1857
|
+
# @return [String]
|
1858
|
+
#
|
1859
|
+
# @!attribute [rw] role_search_subtree
|
1860
|
+
# The directory search scope for the role. If set to true, scope is to
|
1861
|
+
# search the entire sub-tree.
|
1862
|
+
# @return [Boolean]
|
1863
|
+
#
|
1864
|
+
# @!attribute [rw] service_account_password
|
1865
|
+
# Service account password.
|
1866
|
+
# @return [String]
|
1867
|
+
#
|
1868
|
+
# @!attribute [rw] service_account_username
|
1869
|
+
# Service account username.
|
1870
|
+
# @return [String]
|
1871
|
+
#
|
1872
|
+
# @!attribute [rw] user_base
|
1873
|
+
# Fully qualified name of the directory where you want to search for
|
1874
|
+
# users.
|
1875
|
+
# @return [String]
|
1876
|
+
#
|
1877
|
+
# @!attribute [rw] user_role_name
|
1878
|
+
# Specifies the name of the LDAP attribute for the user group
|
1879
|
+
# membership.
|
1880
|
+
# @return [String]
|
1881
|
+
#
|
1882
|
+
# @!attribute [rw] user_search_matching
|
1883
|
+
# The search criteria for users.
|
1884
|
+
# @return [String]
|
1885
|
+
#
|
1886
|
+
# @!attribute [rw] user_search_subtree
|
1887
|
+
# The directory search scope for the user. If set to true, scope is to
|
1888
|
+
# search the entire sub-tree.
|
1889
|
+
# @return [Boolean]
|
1890
|
+
#
|
1891
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/LdapServerMetadataInput AWS API Documentation
|
1892
|
+
#
|
1893
|
+
class LdapServerMetadataInput < Struct.new(
|
1894
|
+
:hosts,
|
1895
|
+
:role_base,
|
1896
|
+
:role_name,
|
1897
|
+
:role_search_matching,
|
1898
|
+
:role_search_subtree,
|
1899
|
+
:service_account_password,
|
1900
|
+
:service_account_username,
|
1901
|
+
:user_base,
|
1902
|
+
:user_role_name,
|
1903
|
+
:user_search_matching,
|
1904
|
+
:user_search_subtree)
|
1905
|
+
SENSITIVE = []
|
1906
|
+
include Aws::Structure
|
1907
|
+
end
|
1908
|
+
|
1909
|
+
# The metadata of the LDAP server used to authenticate and authorize
|
1910
|
+
# connections to the broker.
|
1911
|
+
#
|
1912
|
+
# @!attribute [rw] hosts
|
1913
|
+
# Fully qualified domain name of the LDAP server. Optional failover
|
1914
|
+
# server.
|
1915
|
+
# @return [Array<String>]
|
1916
|
+
#
|
1917
|
+
# @!attribute [rw] role_base
|
1918
|
+
# Fully qualified name of the directory to search for a user’s groups.
|
1919
|
+
# @return [String]
|
1920
|
+
#
|
1921
|
+
# @!attribute [rw] role_name
|
1922
|
+
# Specifies the LDAP attribute that identifies the group name
|
1923
|
+
# attribute in the object returned from the group membership query.
|
1924
|
+
# @return [String]
|
1925
|
+
#
|
1926
|
+
# @!attribute [rw] role_search_matching
|
1927
|
+
# The search criteria for groups.
|
1928
|
+
# @return [String]
|
1929
|
+
#
|
1930
|
+
# @!attribute [rw] role_search_subtree
|
1931
|
+
# The directory search scope for the role. If set to true, scope is to
|
1932
|
+
# search the entire sub-tree.
|
1933
|
+
# @return [Boolean]
|
1934
|
+
#
|
1935
|
+
# @!attribute [rw] service_account_username
|
1936
|
+
# Service account username.
|
1937
|
+
# @return [String]
|
1938
|
+
#
|
1939
|
+
# @!attribute [rw] user_base
|
1940
|
+
# Fully qualified name of the directory where you want to search for
|
1941
|
+
# users.
|
1942
|
+
# @return [String]
|
1943
|
+
#
|
1944
|
+
# @!attribute [rw] user_role_name
|
1945
|
+
# Specifies the name of the LDAP attribute for the user group
|
1946
|
+
# membership.
|
1947
|
+
# @return [String]
|
1948
|
+
#
|
1949
|
+
# @!attribute [rw] user_search_matching
|
1950
|
+
# The search criteria for users.
|
1951
|
+
# @return [String]
|
1952
|
+
#
|
1953
|
+
# @!attribute [rw] user_search_subtree
|
1954
|
+
# The directory search scope for the user. If set to true, scope is to
|
1955
|
+
# search the entire sub-tree.
|
1956
|
+
# @return [Boolean]
|
1957
|
+
#
|
1958
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/LdapServerMetadataOutput AWS API Documentation
|
1959
|
+
#
|
1960
|
+
class LdapServerMetadataOutput < Struct.new(
|
1961
|
+
:hosts,
|
1962
|
+
:role_base,
|
1963
|
+
:role_name,
|
1964
|
+
:role_search_matching,
|
1965
|
+
:role_search_subtree,
|
1966
|
+
:service_account_username,
|
1967
|
+
:user_base,
|
1968
|
+
:user_role_name,
|
1969
|
+
:user_search_matching,
|
1970
|
+
:user_search_subtree)
|
1971
|
+
SENSITIVE = []
|
1972
|
+
include Aws::Structure
|
1973
|
+
end
|
1974
|
+
|
1707
1975
|
# A list of information about all brokers.
|
1708
1976
|
#
|
1709
1977
|
# @!attribute [rw] broker_summaries
|
@@ -2213,6 +2481,10 @@ module Aws::MQ
|
|
2213
2481
|
|
2214
2482
|
# Updates the broker using the specified properties.
|
2215
2483
|
#
|
2484
|
+
# @!attribute [rw] authentication_strategy
|
2485
|
+
# The authentication strategy used to secure the broker.
|
2486
|
+
# @return [String]
|
2487
|
+
#
|
2216
2488
|
# @!attribute [rw] auto_minor_version_upgrade
|
2217
2489
|
# Enables automatic upgrades to new minor versions for brokers, as
|
2218
2490
|
# Apache releases the versions. The automatic upgrades occur during
|
@@ -2236,6 +2508,11 @@ module Aws::MQ
|
|
2236
2508
|
# https://docs.aws.amazon.com/amazon-mq/latest/developer-guide//broker.html#broker-instance-types
|
2237
2509
|
# @return [String]
|
2238
2510
|
#
|
2511
|
+
# @!attribute [rw] ldap_server_metadata
|
2512
|
+
# The metadata of the LDAP server used to authenticate and authorize
|
2513
|
+
# connections to the broker.
|
2514
|
+
# @return [Types::LdapServerMetadataInput]
|
2515
|
+
#
|
2239
2516
|
# @!attribute [rw] logs
|
2240
2517
|
# Enables Amazon CloudWatch logging for brokers.
|
2241
2518
|
# @return [Types::Logs]
|
@@ -2248,10 +2525,12 @@ module Aws::MQ
|
|
2248
2525
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/UpdateBrokerInput AWS API Documentation
|
2249
2526
|
#
|
2250
2527
|
class UpdateBrokerInput < Struct.new(
|
2528
|
+
:authentication_strategy,
|
2251
2529
|
:auto_minor_version_upgrade,
|
2252
2530
|
:configuration,
|
2253
2531
|
:engine_version,
|
2254
2532
|
:host_instance_type,
|
2533
|
+
:ldap_server_metadata,
|
2255
2534
|
:logs,
|
2256
2535
|
:security_groups)
|
2257
2536
|
SENSITIVE = []
|
@@ -2260,6 +2539,10 @@ module Aws::MQ
|
|
2260
2539
|
|
2261
2540
|
# Returns information about the updated broker.
|
2262
2541
|
#
|
2542
|
+
# @!attribute [rw] authentication_strategy
|
2543
|
+
# The authentication strategy used to secure the broker.
|
2544
|
+
# @return [String]
|
2545
|
+
#
|
2263
2546
|
# @!attribute [rw] auto_minor_version_upgrade
|
2264
2547
|
# The new value of automatic upgrades to new minor version for
|
2265
2548
|
# brokers.
|
@@ -2285,6 +2568,11 @@ module Aws::MQ
|
|
2285
2568
|
# https://docs.aws.amazon.com/amazon-mq/latest/developer-guide//broker.html#broker-instance-types
|
2286
2569
|
# @return [String]
|
2287
2570
|
#
|
2571
|
+
# @!attribute [rw] ldap_server_metadata
|
2572
|
+
# The metadata of the LDAP server used to authenticate and authorize
|
2573
|
+
# connections to the broker.
|
2574
|
+
# @return [Types::LdapServerMetadataOutput]
|
2575
|
+
#
|
2288
2576
|
# @!attribute [rw] logs
|
2289
2577
|
# The list of information about logs to be enabled for the specified
|
2290
2578
|
# broker.
|
@@ -2298,11 +2586,13 @@ module Aws::MQ
|
|
2298
2586
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/UpdateBrokerOutput AWS API Documentation
|
2299
2587
|
#
|
2300
2588
|
class UpdateBrokerOutput < Struct.new(
|
2589
|
+
:authentication_strategy,
|
2301
2590
|
:auto_minor_version_upgrade,
|
2302
2591
|
:broker_id,
|
2303
2592
|
:configuration,
|
2304
2593
|
:engine_version,
|
2305
2594
|
:host_instance_type,
|
2595
|
+
:ldap_server_metadata,
|
2306
2596
|
:logs,
|
2307
2597
|
:security_groups)
|
2308
2598
|
SENSITIVE = []
|
@@ -2313,6 +2603,7 @@ module Aws::MQ
|
|
2313
2603
|
# data as a hash:
|
2314
2604
|
#
|
2315
2605
|
# {
|
2606
|
+
# authentication_strategy: "SIMPLE", # accepts SIMPLE, LDAP
|
2316
2607
|
# auto_minor_version_upgrade: false,
|
2317
2608
|
# broker_id: "__string", # required
|
2318
2609
|
# configuration: {
|
@@ -2321,6 +2612,19 @@ module Aws::MQ
|
|
2321
2612
|
# },
|
2322
2613
|
# engine_version: "__string",
|
2323
2614
|
# host_instance_type: "__string",
|
2615
|
+
# ldap_server_metadata: {
|
2616
|
+
# hosts: ["__string"],
|
2617
|
+
# role_base: "__string",
|
2618
|
+
# role_name: "__string",
|
2619
|
+
# role_search_matching: "__string",
|
2620
|
+
# role_search_subtree: false,
|
2621
|
+
# service_account_password: "__string",
|
2622
|
+
# service_account_username: "__string",
|
2623
|
+
# user_base: "__string",
|
2624
|
+
# user_role_name: "__string",
|
2625
|
+
# user_search_matching: "__string",
|
2626
|
+
# user_search_subtree: false,
|
2627
|
+
# },
|
2324
2628
|
# logs: {
|
2325
2629
|
# audit: false,
|
2326
2630
|
# general: false,
|
@@ -2328,6 +2632,10 @@ module Aws::MQ
|
|
2328
2632
|
# security_groups: ["__string"],
|
2329
2633
|
# }
|
2330
2634
|
#
|
2635
|
+
# @!attribute [rw] authentication_strategy
|
2636
|
+
# The authentication strategy used to secure the broker.
|
2637
|
+
# @return [String]
|
2638
|
+
#
|
2331
2639
|
# @!attribute [rw] auto_minor_version_upgrade
|
2332
2640
|
# @return [Boolean]
|
2333
2641
|
#
|
@@ -2344,6 +2652,11 @@ module Aws::MQ
|
|
2344
2652
|
# @!attribute [rw] host_instance_type
|
2345
2653
|
# @return [String]
|
2346
2654
|
#
|
2655
|
+
# @!attribute [rw] ldap_server_metadata
|
2656
|
+
# The metadata of the LDAP server used to authenticate and authorize
|
2657
|
+
# connections to the broker.
|
2658
|
+
# @return [Types::LdapServerMetadataInput]
|
2659
|
+
#
|
2347
2660
|
# @!attribute [rw] logs
|
2348
2661
|
# The list of information about logs to be enabled for the specified
|
2349
2662
|
# broker.
|
@@ -2355,17 +2668,23 @@ module Aws::MQ
|
|
2355
2668
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/UpdateBrokerRequest AWS API Documentation
|
2356
2669
|
#
|
2357
2670
|
class UpdateBrokerRequest < Struct.new(
|
2671
|
+
:authentication_strategy,
|
2358
2672
|
:auto_minor_version_upgrade,
|
2359
2673
|
:broker_id,
|
2360
2674
|
:configuration,
|
2361
2675
|
:engine_version,
|
2362
2676
|
:host_instance_type,
|
2677
|
+
:ldap_server_metadata,
|
2363
2678
|
:logs,
|
2364
2679
|
:security_groups)
|
2365
2680
|
SENSITIVE = []
|
2366
2681
|
include Aws::Structure
|
2367
2682
|
end
|
2368
2683
|
|
2684
|
+
# @!attribute [rw] authentication_strategy
|
2685
|
+
# The authentication strategy used to secure the broker.
|
2686
|
+
# @return [String]
|
2687
|
+
#
|
2369
2688
|
# @!attribute [rw] auto_minor_version_upgrade
|
2370
2689
|
# @return [Boolean]
|
2371
2690
|
#
|
@@ -2382,6 +2701,11 @@ module Aws::MQ
|
|
2382
2701
|
# @!attribute [rw] host_instance_type
|
2383
2702
|
# @return [String]
|
2384
2703
|
#
|
2704
|
+
# @!attribute [rw] ldap_server_metadata
|
2705
|
+
# The metadata of the LDAP server used to authenticate and authorize
|
2706
|
+
# connections to the broker.
|
2707
|
+
# @return [Types::LdapServerMetadataOutput]
|
2708
|
+
#
|
2385
2709
|
# @!attribute [rw] logs
|
2386
2710
|
# The list of information about logs to be enabled for the specified
|
2387
2711
|
# broker.
|
@@ -2393,11 +2717,13 @@ module Aws::MQ
|
|
2393
2717
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/UpdateBrokerResponse AWS API Documentation
|
2394
2718
|
#
|
2395
2719
|
class UpdateBrokerResponse < Struct.new(
|
2720
|
+
:authentication_strategy,
|
2396
2721
|
:auto_minor_version_upgrade,
|
2397
2722
|
:broker_id,
|
2398
2723
|
:configuration,
|
2399
2724
|
:engine_version,
|
2400
2725
|
:host_instance_type,
|
2726
|
+
:ldap_server_metadata,
|
2401
2727
|
:logs,
|
2402
2728
|
:security_groups)
|
2403
2729
|
SENSITIVE = []
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-mq
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.30.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2020-
|
11
|
+
date: 2020-07-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|