aws-sdk-mq 1.63.0 → 1.65.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mq/client.rb +7 -7
- data/lib/aws-sdk-mq/client_api.rb +7 -6
- data/lib/aws-sdk-mq/endpoint_provider.rb +1 -1
- data/lib/aws-sdk-mq/types.rb +67 -34
- data/lib/aws-sdk-mq.rb +1 -1
- data/sig/client.rbs +3 -3
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8e3cda83ce324e00a022422360e3b686573036b4ab6bc6b40a03ffb1c394c483
|
4
|
+
data.tar.gz: 4afe656cc13368d5da7d5554e7e41d6edf80093c4e4d69d39b6784f5e04917c7
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: b125a25dd531b860e34345d4ab5b2b33a7b1ba5b9390f807162effa21d7ca516cf19d116d169748e24220af9ab526db8e14b861d6ebdbc961128b0305a00c568
|
7
|
+
data.tar.gz: d1c630b9b4d4b2641445a5e90e2472f0e5bb44be26bc9a9dcf08855d4c48de228411533bfd5fecacb5d3315b4f6a23693d5b387263490dff185fa1ca8e5b7c7d
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.65.0 (2024-06-27)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release makes the EngineVersion field optional for both broker and configuration and uses the latest available version by default. The AutoMinorVersionUpgrade field is also now optional for broker creation and defaults to 'true'.
|
8
|
+
|
9
|
+
1.64.0 (2024-06-25)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.63.0 (2024-06-24)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.65.0
|
data/lib/aws-sdk-mq/client.rb
CHANGED
@@ -464,7 +464,7 @@ module Aws::MQ
|
|
464
464
|
# Optional. The authentication strategy used to secure the broker. The
|
465
465
|
# default is SIMPLE.
|
466
466
|
#
|
467
|
-
# @option params [
|
467
|
+
# @option params [Boolean] :auto_minor_version_upgrade
|
468
468
|
#
|
469
469
|
# @option params [required, String] :broker_name
|
470
470
|
#
|
@@ -484,7 +484,7 @@ module Aws::MQ
|
|
484
484
|
# @option params [required, String] :engine_type
|
485
485
|
# The type of broker engine. Amazon MQ supports ActiveMQ and RabbitMQ.
|
486
486
|
#
|
487
|
-
# @option params [
|
487
|
+
# @option params [String] :engine_version
|
488
488
|
#
|
489
489
|
# @option params [required, String] :host_instance_type
|
490
490
|
#
|
@@ -531,7 +531,7 @@ module Aws::MQ
|
|
531
531
|
#
|
532
532
|
# resp = client.create_broker({
|
533
533
|
# authentication_strategy: "SIMPLE", # accepts SIMPLE, LDAP
|
534
|
-
# auto_minor_version_upgrade: false,
|
534
|
+
# auto_minor_version_upgrade: false,
|
535
535
|
# broker_name: "__string", # required
|
536
536
|
# configuration: {
|
537
537
|
# id: "__string", # required
|
@@ -544,7 +544,7 @@ module Aws::MQ
|
|
544
544
|
# use_aws_owned_key: false, # required
|
545
545
|
# },
|
546
546
|
# engine_type: "ACTIVEMQ", # required, accepts ACTIVEMQ, RABBITMQ
|
547
|
-
# engine_version: "__string",
|
547
|
+
# engine_version: "__string",
|
548
548
|
# host_instance_type: "__string", # required
|
549
549
|
# ldap_server_metadata: {
|
550
550
|
# hosts: ["__string"], # required
|
@@ -613,7 +613,7 @@ module Aws::MQ
|
|
613
613
|
# @option params [required, String] :engine_type
|
614
614
|
# The type of broker engine. Amazon MQ supports ActiveMQ and RabbitMQ.
|
615
615
|
#
|
616
|
-
# @option params [
|
616
|
+
# @option params [String] :engine_version
|
617
617
|
#
|
618
618
|
# @option params [required, String] :name
|
619
619
|
#
|
@@ -633,7 +633,7 @@ module Aws::MQ
|
|
633
633
|
# resp = client.create_configuration({
|
634
634
|
# authentication_strategy: "SIMPLE", # accepts SIMPLE, LDAP
|
635
635
|
# engine_type: "ACTIVEMQ", # required, accepts ACTIVEMQ, RABBITMQ
|
636
|
-
# engine_version: "__string",
|
636
|
+
# engine_version: "__string",
|
637
637
|
# name: "__string", # required
|
638
638
|
# tags: {
|
639
639
|
# "__string" => "__string",
|
@@ -1650,7 +1650,7 @@ module Aws::MQ
|
|
1650
1650
|
params: params,
|
1651
1651
|
config: config)
|
1652
1652
|
context[:gem_name] = 'aws-sdk-mq'
|
1653
|
-
context[:gem_version] = '1.
|
1653
|
+
context[:gem_version] = '1.65.0'
|
1654
1654
|
Seahorse::Client::Request.new(handlers, context)
|
1655
1655
|
end
|
1656
1656
|
|
@@ -226,7 +226,7 @@ module Aws::MQ
|
|
226
226
|
ConflictException.struct_class = Types::ConflictException
|
227
227
|
|
228
228
|
CreateBrokerInput.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
229
|
-
CreateBrokerInput.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean,
|
229
|
+
CreateBrokerInput.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, location_name: "autoMinorVersionUpgrade"))
|
230
230
|
CreateBrokerInput.add_member(:broker_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "brokerName"))
|
231
231
|
CreateBrokerInput.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "configuration"))
|
232
232
|
CreateBrokerInput.add_member(:creator_request_id, Shapes::ShapeRef.new(shape: __string, location_name: "creatorRequestId", metadata: {"idempotencyToken"=>true}))
|
@@ -235,7 +235,7 @@ module Aws::MQ
|
|
235
235
|
CreateBrokerInput.add_member(:data_replication_primary_broker_arn, Shapes::ShapeRef.new(shape: __string, location_name: "dataReplicationPrimaryBrokerArn"))
|
236
236
|
CreateBrokerInput.add_member(:encryption_options, Shapes::ShapeRef.new(shape: EncryptionOptions, location_name: "encryptionOptions"))
|
237
237
|
CreateBrokerInput.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, required: true, location_name: "engineType"))
|
238
|
-
CreateBrokerInput.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string,
|
238
|
+
CreateBrokerInput.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
239
239
|
CreateBrokerInput.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "hostInstanceType"))
|
240
240
|
CreateBrokerInput.add_member(:ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataInput, location_name: "ldapServerMetadata"))
|
241
241
|
CreateBrokerInput.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
|
@@ -253,14 +253,14 @@ module Aws::MQ
|
|
253
253
|
CreateBrokerOutput.struct_class = Types::CreateBrokerOutput
|
254
254
|
|
255
255
|
CreateBrokerRequest.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
256
|
-
CreateBrokerRequest.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean,
|
256
|
+
CreateBrokerRequest.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, location_name: "autoMinorVersionUpgrade"))
|
257
257
|
CreateBrokerRequest.add_member(:broker_name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "brokerName"))
|
258
258
|
CreateBrokerRequest.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "configuration"))
|
259
259
|
CreateBrokerRequest.add_member(:creator_request_id, Shapes::ShapeRef.new(shape: __string, location_name: "creatorRequestId", metadata: {"idempotencyToken"=>true}))
|
260
260
|
CreateBrokerRequest.add_member(:deployment_mode, Shapes::ShapeRef.new(shape: DeploymentMode, required: true, location_name: "deploymentMode"))
|
261
261
|
CreateBrokerRequest.add_member(:encryption_options, Shapes::ShapeRef.new(shape: EncryptionOptions, location_name: "encryptionOptions"))
|
262
262
|
CreateBrokerRequest.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, required: true, location_name: "engineType"))
|
263
|
-
CreateBrokerRequest.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string,
|
263
|
+
CreateBrokerRequest.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
264
264
|
CreateBrokerRequest.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "hostInstanceType"))
|
265
265
|
CreateBrokerRequest.add_member(:ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataInput, location_name: "ldapServerMetadata"))
|
266
266
|
CreateBrokerRequest.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
|
@@ -281,7 +281,7 @@ module Aws::MQ
|
|
281
281
|
|
282
282
|
CreateConfigurationInput.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
283
283
|
CreateConfigurationInput.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, required: true, location_name: "engineType"))
|
284
|
-
CreateConfigurationInput.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string,
|
284
|
+
CreateConfigurationInput.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
285
285
|
CreateConfigurationInput.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
|
286
286
|
CreateConfigurationInput.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
287
287
|
CreateConfigurationInput.struct_class = Types::CreateConfigurationInput
|
@@ -296,7 +296,7 @@ module Aws::MQ
|
|
296
296
|
|
297
297
|
CreateConfigurationRequest.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
298
298
|
CreateConfigurationRequest.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, required: true, location_name: "engineType"))
|
299
|
-
CreateConfigurationRequest.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string,
|
299
|
+
CreateConfigurationRequest.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
300
300
|
CreateConfigurationRequest.add_member(:name, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "name"))
|
301
301
|
CreateConfigurationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
302
302
|
CreateConfigurationRequest.struct_class = Types::CreateConfigurationRequest
|
@@ -821,6 +821,7 @@ module Aws::MQ
|
|
821
821
|
|
822
822
|
api.metadata = {
|
823
823
|
"apiVersion" => "2017-11-27",
|
824
|
+
"auth" => ["aws.auth#sigv4"],
|
824
825
|
"endpointPrefix" => "mq",
|
825
826
|
"jsonVersion" => "1.1",
|
826
827
|
"protocol" => "rest-json",
|
@@ -32,7 +32,7 @@ module Aws::MQ
|
|
32
32
|
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
33
33
|
end
|
34
34
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
35
|
-
if Aws::Endpoints::Matchers.boolean_equals?(
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"), true)
|
36
36
|
return Aws::Endpoints::Endpoint.new(url: "https://mq-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
37
37
|
end
|
38
38
|
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
data/lib/aws-sdk-mq/types.rb
CHANGED
@@ -275,12 +275,15 @@ module Aws::MQ
|
|
275
275
|
# @return [String]
|
276
276
|
#
|
277
277
|
# @!attribute [rw] engine_version
|
278
|
-
#
|
279
|
-
# engine
|
278
|
+
# The broker engine version. Defaults to the latest available version
|
279
|
+
# for the specified broker engine type. For a list of supported engine
|
280
|
+
# versions, see the [ActiveMQ version management][1] and the [RabbitMQ
|
281
|
+
# version management][2] sections in the Amazon MQ Developer Guide.
|
280
282
|
#
|
281
283
|
#
|
282
284
|
#
|
283
|
-
# [1]: https://docs.aws.amazon.com//amazon-mq/latest/developer-guide/
|
285
|
+
# [1]: https://docs.aws.amazon.com//amazon-mq/latest/developer-guide/activemq-version-management.html
|
286
|
+
# [2]: https://docs.aws.amazon.com//amazon-mq/latest/developer-guide/rabbitmq-version-management.html
|
284
287
|
# @return [String]
|
285
288
|
#
|
286
289
|
# @!attribute [rw] id
|
@@ -412,11 +415,15 @@ module Aws::MQ
|
|
412
415
|
# @return [String]
|
413
416
|
#
|
414
417
|
# @!attribute [rw] auto_minor_version_upgrade
|
415
|
-
# Enables automatic upgrades to new
|
418
|
+
# Enables automatic upgrades to new patch versions for brokers as new
|
416
419
|
# versions are released and supported by Amazon MQ. Automatic upgrades
|
417
|
-
# occur during the scheduled maintenance window
|
418
|
-
#
|
419
|
-
#
|
420
|
+
# occur during the scheduled maintenance window or after a manual
|
421
|
+
# broker reboot. Set to true by default, if no value is specified.
|
422
|
+
#
|
423
|
+
# <note markdown="1">Must be set to true for ActiveMQ brokers version 5.18 and above and
|
424
|
+
# for RabbitMQ brokers version 3.13 and above.
|
425
|
+
#
|
426
|
+
# </note>
|
420
427
|
# @return [Boolean]
|
421
428
|
#
|
422
429
|
# @!attribute [rw] broker_name
|
@@ -475,12 +482,15 @@ module Aws::MQ
|
|
475
482
|
# @return [String]
|
476
483
|
#
|
477
484
|
# @!attribute [rw] engine_version
|
478
|
-
#
|
479
|
-
# engine
|
485
|
+
# The broker engine version. Defaults to the latest available version
|
486
|
+
# for the specified broker engine type. For more information, see the
|
487
|
+
# [ActiveMQ version management][1] and the [RabbitMQ version
|
488
|
+
# management][2] sections in the Amazon MQ Developer Guide.
|
480
489
|
#
|
481
490
|
#
|
482
491
|
#
|
483
|
-
# [1]: https://docs.aws.amazon.com//amazon-mq/latest/developer-guide/
|
492
|
+
# [1]: https://docs.aws.amazon.com//amazon-mq/latest/developer-guide/activemq-version-management.html
|
493
|
+
# [2]: https://docs.aws.amazon.com//amazon-mq/latest/developer-guide/rabbitmq-version-management.html
|
484
494
|
# @return [String]
|
485
495
|
#
|
486
496
|
# @!attribute [rw] host_instance_type
|
@@ -741,12 +751,15 @@ module Aws::MQ
|
|
741
751
|
# @return [String]
|
742
752
|
#
|
743
753
|
# @!attribute [rw] engine_version
|
744
|
-
#
|
745
|
-
# engine
|
754
|
+
# The broker engine version. Defaults to the latest available version
|
755
|
+
# for the specified broker engine type. For more information, see the
|
756
|
+
# [ActiveMQ version management][1] and the [RabbitMQ version
|
757
|
+
# management][2] sections in the Amazon MQ Developer Guide.
|
746
758
|
#
|
747
759
|
#
|
748
760
|
#
|
749
|
-
# [1]: https://docs.aws.amazon.com//amazon-mq/latest/developer-guide/
|
761
|
+
# [1]: https://docs.aws.amazon.com//amazon-mq/latest/developer-guide/activemq-version-management.html
|
762
|
+
# [2]: https://docs.aws.amazon.com//amazon-mq/latest/developer-guide/rabbitmq-version-management.html
|
750
763
|
# @return [String]
|
751
764
|
#
|
752
765
|
# @!attribute [rw] name
|
@@ -1171,10 +1184,10 @@ module Aws::MQ
|
|
1171
1184
|
# @return [String]
|
1172
1185
|
#
|
1173
1186
|
# @!attribute [rw] auto_minor_version_upgrade
|
1174
|
-
# Enables automatic upgrades to new
|
1187
|
+
# Enables automatic upgrades to new patch versions for brokers as new
|
1175
1188
|
# versions are released and supported by Amazon MQ. Automatic upgrades
|
1176
|
-
# occur during the scheduled maintenance window
|
1177
|
-
#
|
1189
|
+
# occur during the scheduled maintenance window or after a manual
|
1190
|
+
# broker reboot.
|
1178
1191
|
# @return [Boolean]
|
1179
1192
|
#
|
1180
1193
|
# @!attribute [rw] broker_arn
|
@@ -1231,12 +1244,14 @@ module Aws::MQ
|
|
1231
1244
|
# @return [String]
|
1232
1245
|
#
|
1233
1246
|
# @!attribute [rw] engine_version
|
1234
|
-
# The broker engine
|
1235
|
-
#
|
1247
|
+
# The broker engine version. For more information, see the [ActiveMQ
|
1248
|
+
# version management][1] and the [RabbitMQ version management][2]
|
1249
|
+
# sections in the Amazon MQ Developer Guide.
|
1236
1250
|
#
|
1237
1251
|
#
|
1238
1252
|
#
|
1239
|
-
# [1]: https://docs.aws.amazon.com//amazon-mq/latest/developer-guide/
|
1253
|
+
# [1]: https://docs.aws.amazon.com//amazon-mq/latest/developer-guide/activemq-version-management.html
|
1254
|
+
# [2]: https://docs.aws.amazon.com//amazon-mq/latest/developer-guide/rabbitmq-version-management.html
|
1240
1255
|
# @return [String]
|
1241
1256
|
#
|
1242
1257
|
# @!attribute [rw] host_instance_type
|
@@ -1273,12 +1288,14 @@ module Aws::MQ
|
|
1273
1288
|
# @return [String]
|
1274
1289
|
#
|
1275
1290
|
# @!attribute [rw] pending_engine_version
|
1276
|
-
# The broker engine version to upgrade to. For
|
1277
|
-
#
|
1291
|
+
# The broker engine version to upgrade to. For more information, see
|
1292
|
+
# the [ActiveMQ version management][1] and the [RabbitMQ version
|
1293
|
+
# management][2] sections in the Amazon MQ Developer Guide.
|
1278
1294
|
#
|
1279
1295
|
#
|
1280
1296
|
#
|
1281
|
-
# [1]: https://docs.aws.amazon.com//amazon-mq/latest/developer-guide/
|
1297
|
+
# [1]: https://docs.aws.amazon.com//amazon-mq/latest/developer-guide/activemq-version-management.html
|
1298
|
+
# [2]: https://docs.aws.amazon.com//amazon-mq/latest/developer-guide/rabbitmq-version-management.html
|
1282
1299
|
# @return [String]
|
1283
1300
|
#
|
1284
1301
|
# @!attribute [rw] pending_host_instance_type
|
@@ -2561,10 +2578,15 @@ module Aws::MQ
|
|
2561
2578
|
# @return [String]
|
2562
2579
|
#
|
2563
2580
|
# @!attribute [rw] auto_minor_version_upgrade
|
2564
|
-
# Enables automatic upgrades to new
|
2581
|
+
# Enables automatic upgrades to new patch versions for brokers as new
|
2565
2582
|
# versions are released and supported by Amazon MQ. Automatic upgrades
|
2566
|
-
# occur during the scheduled maintenance window
|
2567
|
-
#
|
2583
|
+
# occur during the scheduled maintenance window or after a manual
|
2584
|
+
# broker reboot.
|
2585
|
+
#
|
2586
|
+
# <note markdown="1">Must be set to true for ActiveMQ brokers version 5.18 and above and
|
2587
|
+
# for RabbitMQ brokers version 3.13 and above.
|
2588
|
+
#
|
2589
|
+
# </note>
|
2568
2590
|
# @return [Boolean]
|
2569
2591
|
#
|
2570
2592
|
# @!attribute [rw] configuration
|
@@ -2576,12 +2598,20 @@ module Aws::MQ
|
|
2576
2598
|
# @return [String]
|
2577
2599
|
#
|
2578
2600
|
# @!attribute [rw] engine_version
|
2579
|
-
# The broker engine version. For
|
2580
|
-
#
|
2601
|
+
# The broker engine version. For more information, see the [ActiveMQ
|
2602
|
+
# version management][1] and the [RabbitMQ version management][2]
|
2603
|
+
# sections in the Amazon MQ Developer Guide.
|
2604
|
+
#
|
2605
|
+
# <note markdown="1">When upgrading to ActiveMQ version 5.18 and above or RabbitMQ
|
2606
|
+
# version 3.13 and above, you must have autoMinorVersionUpgrade set to
|
2607
|
+
# true for the broker.
|
2581
2608
|
#
|
2609
|
+
# </note>
|
2582
2610
|
#
|
2583
2611
|
#
|
2584
|
-
#
|
2612
|
+
#
|
2613
|
+
# [1]: https://docs.aws.amazon.com//amazon-mq/latest/developer-guide/activemq-version-management.html
|
2614
|
+
# [2]: https://docs.aws.amazon.com//amazon-mq/latest/developer-guide/rabbitmq-version-management.html
|
2585
2615
|
# @return [String]
|
2586
2616
|
#
|
2587
2617
|
# @!attribute [rw] host_instance_type
|
@@ -2637,9 +2667,10 @@ module Aws::MQ
|
|
2637
2667
|
# @return [String]
|
2638
2668
|
#
|
2639
2669
|
# @!attribute [rw] auto_minor_version_upgrade
|
2640
|
-
#
|
2641
|
-
#
|
2642
|
-
#
|
2670
|
+
# Enables automatic upgrades to new patch versions for brokers as new
|
2671
|
+
# versions are released and supported by Amazon MQ. Automatic upgrades
|
2672
|
+
# occur during the scheduled maintenance window or after a manual
|
2673
|
+
# broker reboot.
|
2643
2674
|
# @return [Boolean]
|
2644
2675
|
#
|
2645
2676
|
# @!attribute [rw] broker_id
|
@@ -2660,12 +2691,14 @@ module Aws::MQ
|
|
2660
2691
|
# @return [String]
|
2661
2692
|
#
|
2662
2693
|
# @!attribute [rw] engine_version
|
2663
|
-
# The broker engine version to upgrade to. For
|
2664
|
-
#
|
2694
|
+
# The broker engine version to upgrade to. For more information, see
|
2695
|
+
# the [ActiveMQ version management][1] and the [RabbitMQ version
|
2696
|
+
# management][2] sections in the Amazon MQ Developer Guide.
|
2665
2697
|
#
|
2666
2698
|
#
|
2667
2699
|
#
|
2668
|
-
# [1]: https://docs.aws.amazon.com//amazon-mq/latest/developer-guide/
|
2700
|
+
# [1]: https://docs.aws.amazon.com//amazon-mq/latest/developer-guide/activemq-version-management.html
|
2701
|
+
# [2]: https://docs.aws.amazon.com//amazon-mq/latest/developer-guide/rabbitmq-version-management.html
|
2669
2702
|
# @return [String]
|
2670
2703
|
#
|
2671
2704
|
# @!attribute [rw] host_instance_type
|
data/lib/aws-sdk-mq.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -80,7 +80,7 @@ module Aws
|
|
80
80
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MQ/Client.html#create_broker-instance_method
|
81
81
|
def create_broker: (
|
82
82
|
?authentication_strategy: ("SIMPLE" | "LDAP"),
|
83
|
-
auto_minor_version_upgrade: bool,
|
83
|
+
?auto_minor_version_upgrade: bool,
|
84
84
|
broker_name: ::String,
|
85
85
|
?configuration: {
|
86
86
|
id: ::String,
|
@@ -93,7 +93,7 @@ module Aws
|
|
93
93
|
use_aws_owned_key: bool
|
94
94
|
},
|
95
95
|
engine_type: ("ACTIVEMQ" | "RABBITMQ"),
|
96
|
-
engine_version: ::String,
|
96
|
+
?engine_version: ::String,
|
97
97
|
host_instance_type: ::String,
|
98
98
|
?ldap_server_metadata: {
|
99
99
|
hosts: Array[::String],
|
@@ -149,7 +149,7 @@ module Aws
|
|
149
149
|
def create_configuration: (
|
150
150
|
?authentication_strategy: ("SIMPLE" | "LDAP"),
|
151
151
|
engine_type: ("ACTIVEMQ" | "RABBITMQ"),
|
152
|
-
engine_version: ::String,
|
152
|
+
?engine_version: ::String,
|
153
153
|
name: ::String,
|
154
154
|
?tags: Hash[::String, ::String]
|
155
155
|
) -> _CreateConfigurationResponseSuccess
|
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.65.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: 2024-06-
|
11
|
+
date: 2024-06-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.199.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.199.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|