aws-sdk-mq 1.30.0 → 1.35.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 +3 -2
- data/lib/aws-sdk-mq/client.rb +44 -30
- data/lib/aws-sdk-mq/client_api.rb +1 -0
- data/lib/aws-sdk-mq/types.rb +65 -55
- 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: 6973cd1d0277d240dfd68553ec5929acb434d467db7b06b1ac20d22630c00060
|
4
|
+
data.tar.gz: 2f2d2ee6a285e7d21d603dc29251a95662f96a64b9f2d0283fd28fc26888aa17
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 93d0c1ed60d072303c7bd2576ff4bb26de7fb1ce43cd75ced2094584bc9f9b56535af2efbd6fb80c683cd51ef4a06c362f0f56df57fc345e4ba23205c05967b1
|
7
|
+
data.tar.gz: b75419f26e0dbca290af2bfed51a13a2d9f3a5e2eba45a9f36a1bfe796e578e1e20987e4fbb3731540236feb12c98624f81ca0e0fa659be374575c4ba46e8f1c
|
data/lib/aws-sdk-mq.rb
CHANGED
@@ -7,6 +7,7 @@
|
|
7
7
|
#
|
8
8
|
# WARNING ABOUT GENERATED CODE
|
9
9
|
|
10
|
+
|
10
11
|
require 'aws-sdk-core'
|
11
12
|
require 'aws-sigv4'
|
12
13
|
|
@@ -44,9 +45,9 @@ require_relative 'aws-sdk-mq/customizations'
|
|
44
45
|
#
|
45
46
|
# See {Errors} for more information.
|
46
47
|
#
|
47
|
-
#
|
48
|
+
# @!group service
|
48
49
|
module Aws::MQ
|
49
50
|
|
50
|
-
GEM_VERSION = '1.
|
51
|
+
GEM_VERSION = '1.35.0'
|
51
52
|
|
52
53
|
end
|
data/lib/aws-sdk-mq/client.rb
CHANGED
@@ -85,13 +85,28 @@ module Aws::MQ
|
|
85
85
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
86
86
|
# credentials.
|
87
87
|
#
|
88
|
+
# * `Aws::SharedCredentials` - Used for loading static credentials from a
|
89
|
+
# shared file, such as `~/.aws/config`.
|
90
|
+
#
|
91
|
+
# * `Aws::AssumeRoleCredentials` - Used when you need to assume a role.
|
92
|
+
#
|
93
|
+
# * `Aws::AssumeRoleWebIdentityCredentials` - Used when you need to
|
94
|
+
# assume a role after providing credentials via the web.
|
95
|
+
#
|
96
|
+
# * `Aws::SSOCredentials` - Used for loading credentials from AWS SSO using an
|
97
|
+
# access token generated from `aws login`.
|
98
|
+
#
|
99
|
+
# * `Aws::ProcessCredentials` - Used for loading credentials from a
|
100
|
+
# process that outputs to stdout.
|
101
|
+
#
|
88
102
|
# * `Aws::InstanceProfileCredentials` - Used for loading credentials
|
89
103
|
# from an EC2 IMDS on an EC2 instance.
|
90
104
|
#
|
91
|
-
# * `Aws::
|
92
|
-
#
|
105
|
+
# * `Aws::ECSCredentials` - Used for loading credentials from
|
106
|
+
# instances running in ECS.
|
93
107
|
#
|
94
|
-
# * `Aws::
|
108
|
+
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
109
|
+
# from the Cognito Identity service.
|
95
110
|
#
|
96
111
|
# When `:credentials` are not configured directly, the following
|
97
112
|
# locations will be searched for credentials:
|
@@ -101,10 +116,10 @@ module Aws::MQ
|
|
101
116
|
# * ENV['AWS_ACCESS_KEY_ID'], ENV['AWS_SECRET_ACCESS_KEY']
|
102
117
|
# * `~/.aws/credentials`
|
103
118
|
# * `~/.aws/config`
|
104
|
-
# * EC2 IMDS instance profile - When used by default, the timeouts
|
105
|
-
# very aggressive. Construct and pass an instance of
|
106
|
-
# `Aws::InstanceProfileCredentails`
|
107
|
-
# timeouts.
|
119
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
120
|
+
# are very aggressive. Construct and pass an instance of
|
121
|
+
# `Aws::InstanceProfileCredentails` or `Aws::ECSCredentials` to
|
122
|
+
# enable retries and extended timeouts.
|
108
123
|
#
|
109
124
|
# @option options [required, String] :region
|
110
125
|
# The AWS region to connect to. The configured `:region` is
|
@@ -322,7 +337,7 @@ module Aws::MQ
|
|
322
337
|
# @option params [String] :broker_name
|
323
338
|
#
|
324
339
|
# @option params [Types::ConfigurationId] :configuration
|
325
|
-
# A list of information about the configuration.
|
340
|
+
# A list of information about the configuration. Does not apply to RabbitMQ brokers.
|
326
341
|
#
|
327
342
|
# @option params [String] :creator_request_id
|
328
343
|
# **A suitable default value is auto-generated.** You should normally
|
@@ -335,16 +350,15 @@ module Aws::MQ
|
|
335
350
|
# Encryption options for the broker.
|
336
351
|
#
|
337
352
|
# @option params [String] :engine_type
|
338
|
-
# The type of broker engine. Note: Currently, Amazon MQ supports
|
339
|
-
# ActiveMQ.
|
353
|
+
# The type of broker engine. Note: Currently, Amazon MQ supports
|
354
|
+
# ActiveMQ and RabbitMQ.
|
340
355
|
#
|
341
356
|
# @option params [String] :engine_version
|
342
357
|
#
|
343
358
|
# @option params [String] :host_instance_type
|
344
359
|
#
|
345
360
|
# @option params [Types::LdapServerMetadataInput] :ldap_server_metadata
|
346
|
-
# The metadata of the LDAP server used to authenticate and authorize
|
347
|
-
# connections to the broker.
|
361
|
+
# The metadata of the LDAP server used to authenticate and authorize connections to the broker. Currently not supported for RabbitMQ engine type.
|
348
362
|
#
|
349
363
|
# @option params [Types::Logs] :logs
|
350
364
|
# The list of information about logs to be enabled for the specified
|
@@ -359,7 +373,7 @@ module Aws::MQ
|
|
359
373
|
# @option params [Array<String>] :security_groups
|
360
374
|
#
|
361
375
|
# @option params [String] :storage_type
|
362
|
-
# The storage type of the broker.
|
376
|
+
# The storage type of the broker. EFS is currently not Supported for RabbitMQ engine type.
|
363
377
|
#
|
364
378
|
# @option params [Array<String>] :subnet_ids
|
365
379
|
#
|
@@ -383,12 +397,12 @@ module Aws::MQ
|
|
383
397
|
# revision: 1,
|
384
398
|
# },
|
385
399
|
# creator_request_id: "__string",
|
386
|
-
# deployment_mode: "SINGLE_INSTANCE", # accepts SINGLE_INSTANCE, ACTIVE_STANDBY_MULTI_AZ
|
400
|
+
# deployment_mode: "SINGLE_INSTANCE", # accepts SINGLE_INSTANCE, ACTIVE_STANDBY_MULTI_AZ, CLUSTER_MULTI_AZ
|
387
401
|
# encryption_options: {
|
388
402
|
# kms_key_id: "__string",
|
389
403
|
# use_aws_owned_key: false, # required
|
390
404
|
# },
|
391
|
-
# engine_type: "ACTIVEMQ", # accepts ACTIVEMQ
|
405
|
+
# engine_type: "ACTIVEMQ", # accepts ACTIVEMQ, RABBITMQ
|
392
406
|
# engine_version: "__string",
|
393
407
|
# host_instance_type: "__string",
|
394
408
|
# ldap_server_metadata: {
|
@@ -452,8 +466,8 @@ module Aws::MQ
|
|
452
466
|
# The authentication strategy used to secure the broker.
|
453
467
|
#
|
454
468
|
# @option params [String] :engine_type
|
455
|
-
# The type of broker engine. Note: Currently, Amazon MQ supports
|
456
|
-
# ActiveMQ.
|
469
|
+
# The type of broker engine. Note: Currently, Amazon MQ supports
|
470
|
+
# ActiveMQ and RabbitMQ.
|
457
471
|
#
|
458
472
|
# @option params [String] :engine_version
|
459
473
|
#
|
@@ -474,7 +488,7 @@ module Aws::MQ
|
|
474
488
|
#
|
475
489
|
# resp = client.create_configuration({
|
476
490
|
# authentication_strategy: "SIMPLE", # accepts SIMPLE, LDAP
|
477
|
-
# engine_type: "ACTIVEMQ", # accepts ACTIVEMQ
|
491
|
+
# engine_type: "ACTIVEMQ", # accepts ACTIVEMQ, RABBITMQ
|
478
492
|
# engine_version: "__string",
|
479
493
|
# name: "__string",
|
480
494
|
# tags: {
|
@@ -698,10 +712,10 @@ module Aws::MQ
|
|
698
712
|
# resp.configurations.pending.id #=> String
|
699
713
|
# resp.configurations.pending.revision #=> Integer
|
700
714
|
# resp.created #=> Time
|
701
|
-
# resp.deployment_mode #=> String, one of "SINGLE_INSTANCE", "ACTIVE_STANDBY_MULTI_AZ"
|
715
|
+
# resp.deployment_mode #=> String, one of "SINGLE_INSTANCE", "ACTIVE_STANDBY_MULTI_AZ", "CLUSTER_MULTI_AZ"
|
702
716
|
# resp.encryption_options.kms_key_id #=> String
|
703
717
|
# resp.encryption_options.use_aws_owned_key #=> Boolean
|
704
|
-
# resp.engine_type #=> String, one of "ACTIVEMQ"
|
718
|
+
# resp.engine_type #=> String, one of "ACTIVEMQ", "RABBITMQ"
|
705
719
|
# resp.engine_version #=> String
|
706
720
|
# resp.host_instance_type #=> String
|
707
721
|
# resp.ldap_server_metadata.hosts #=> Array
|
@@ -786,7 +800,7 @@ module Aws::MQ
|
|
786
800
|
# @example Response structure
|
787
801
|
#
|
788
802
|
# resp.broker_engine_types #=> Array
|
789
|
-
# resp.broker_engine_types[0].engine_type #=> String, one of "ACTIVEMQ"
|
803
|
+
# resp.broker_engine_types[0].engine_type #=> String, one of "ACTIVEMQ", "RABBITMQ"
|
790
804
|
# resp.broker_engine_types[0].engine_versions #=> Array
|
791
805
|
# resp.broker_engine_types[0].engine_versions[0].name #=> String
|
792
806
|
# resp.max_results #=> Integer
|
@@ -834,11 +848,11 @@ module Aws::MQ
|
|
834
848
|
# resp.broker_instance_options #=> Array
|
835
849
|
# resp.broker_instance_options[0].availability_zones #=> Array
|
836
850
|
# resp.broker_instance_options[0].availability_zones[0].name #=> String
|
837
|
-
# resp.broker_instance_options[0].engine_type #=> String, one of "ACTIVEMQ"
|
851
|
+
# resp.broker_instance_options[0].engine_type #=> String, one of "ACTIVEMQ", "RABBITMQ"
|
838
852
|
# resp.broker_instance_options[0].host_instance_type #=> String
|
839
853
|
# resp.broker_instance_options[0].storage_type #=> String, one of "EBS", "EFS"
|
840
854
|
# resp.broker_instance_options[0].supported_deployment_modes #=> Array
|
841
|
-
# resp.broker_instance_options[0].supported_deployment_modes[0] #=> String, one of "SINGLE_INSTANCE", "ACTIVE_STANDBY_MULTI_AZ"
|
855
|
+
# resp.broker_instance_options[0].supported_deployment_modes[0] #=> String, one of "SINGLE_INSTANCE", "ACTIVE_STANDBY_MULTI_AZ", "CLUSTER_MULTI_AZ"
|
842
856
|
# resp.broker_instance_options[0].supported_engine_versions #=> Array
|
843
857
|
# resp.broker_instance_options[0].supported_engine_versions[0] #=> String
|
844
858
|
# resp.max_results #=> Integer
|
@@ -882,7 +896,7 @@ module Aws::MQ
|
|
882
896
|
# resp.authentication_strategy #=> String, one of "SIMPLE", "LDAP"
|
883
897
|
# resp.created #=> Time
|
884
898
|
# resp.description #=> String
|
885
|
-
# resp.engine_type #=> String, one of "ACTIVEMQ"
|
899
|
+
# resp.engine_type #=> String, one of "ACTIVEMQ", "RABBITMQ"
|
886
900
|
# resp.engine_version #=> String
|
887
901
|
# resp.id #=> String
|
888
902
|
# resp.latest_revision.created #=> Time
|
@@ -1008,7 +1022,8 @@ module Aws::MQ
|
|
1008
1022
|
# resp.broker_summaries[0].broker_name #=> String
|
1009
1023
|
# resp.broker_summaries[0].broker_state #=> String, one of "CREATION_IN_PROGRESS", "CREATION_FAILED", "DELETION_IN_PROGRESS", "RUNNING", "REBOOT_IN_PROGRESS"
|
1010
1024
|
# resp.broker_summaries[0].created #=> Time
|
1011
|
-
# resp.broker_summaries[0].deployment_mode #=> String, one of "SINGLE_INSTANCE", "ACTIVE_STANDBY_MULTI_AZ"
|
1025
|
+
# resp.broker_summaries[0].deployment_mode #=> String, one of "SINGLE_INSTANCE", "ACTIVE_STANDBY_MULTI_AZ", "CLUSTER_MULTI_AZ"
|
1026
|
+
# resp.broker_summaries[0].engine_type #=> String, one of "ACTIVEMQ", "RABBITMQ"
|
1012
1027
|
# resp.broker_summaries[0].host_instance_type #=> String
|
1013
1028
|
# resp.next_token #=> String
|
1014
1029
|
#
|
@@ -1089,7 +1104,7 @@ module Aws::MQ
|
|
1089
1104
|
# resp.configurations[0].authentication_strategy #=> String, one of "SIMPLE", "LDAP"
|
1090
1105
|
# resp.configurations[0].created #=> Time
|
1091
1106
|
# resp.configurations[0].description #=> String
|
1092
|
-
# resp.configurations[0].engine_type #=> String, one of "ACTIVEMQ"
|
1107
|
+
# resp.configurations[0].engine_type #=> String, one of "ACTIVEMQ", "RABBITMQ"
|
1093
1108
|
# resp.configurations[0].engine_version #=> String
|
1094
1109
|
# resp.configurations[0].id #=> String
|
1095
1110
|
# resp.configurations[0].latest_revision.created #=> Time
|
@@ -1210,15 +1225,14 @@ module Aws::MQ
|
|
1210
1225
|
# @option params [required, String] :broker_id
|
1211
1226
|
#
|
1212
1227
|
# @option params [Types::ConfigurationId] :configuration
|
1213
|
-
# A list of information about the configuration.
|
1228
|
+
# A list of information about the configuration. Does not apply to RabbitMQ brokers.
|
1214
1229
|
#
|
1215
1230
|
# @option params [String] :engine_version
|
1216
1231
|
#
|
1217
1232
|
# @option params [String] :host_instance_type
|
1218
1233
|
#
|
1219
1234
|
# @option params [Types::LdapServerMetadataInput] :ldap_server_metadata
|
1220
|
-
# The metadata of the LDAP server used to authenticate and authorize
|
1221
|
-
# connections to the broker.
|
1235
|
+
# The metadata of the LDAP server used to authenticate and authorize connections to the broker. Currently not supported for RabbitMQ engine type.
|
1222
1236
|
#
|
1223
1237
|
# @option params [Types::Logs] :logs
|
1224
1238
|
# The list of information about logs to be enabled for the specified
|
@@ -1398,7 +1412,7 @@ module Aws::MQ
|
|
1398
1412
|
params: params,
|
1399
1413
|
config: config)
|
1400
1414
|
context[:gem_name] = 'aws-sdk-mq'
|
1401
|
-
context[:gem_version] = '1.
|
1415
|
+
context[:gem_version] = '1.35.0'
|
1402
1416
|
Seahorse::Client::Request.new(handlers, context)
|
1403
1417
|
end
|
1404
1418
|
|
@@ -177,6 +177,7 @@ module Aws::MQ
|
|
177
177
|
BrokerSummary.add_member(:broker_state, Shapes::ShapeRef.new(shape: BrokerState, location_name: "brokerState"))
|
178
178
|
BrokerSummary.add_member(:created, Shapes::ShapeRef.new(shape: __timestampIso8601, location_name: "created"))
|
179
179
|
BrokerSummary.add_member(:deployment_mode, Shapes::ShapeRef.new(shape: DeploymentMode, location_name: "deploymentMode"))
|
180
|
+
BrokerSummary.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
|
180
181
|
BrokerSummary.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
|
181
182
|
BrokerSummary.struct_class = Types::BrokerSummary
|
182
183
|
|
data/lib/aws-sdk-mq/types.rb
CHANGED
@@ -90,7 +90,7 @@ module Aws::MQ
|
|
90
90
|
# Returns information about all brokers.
|
91
91
|
#
|
92
92
|
# @!attribute [rw] console_url
|
93
|
-
# The URL of the broker's
|
93
|
+
# The URL of the broker's Web Console.
|
94
94
|
# @return [String]
|
95
95
|
#
|
96
96
|
# @!attribute [rw] endpoints
|
@@ -99,7 +99,7 @@ module Aws::MQ
|
|
99
99
|
#
|
100
100
|
# @!attribute [rw] ip_address
|
101
101
|
# The IP address of the Elastic Network Interface (ENI) attached to
|
102
|
-
# the broker.
|
102
|
+
# the broker. Does not apply to RabbitMQ brokers
|
103
103
|
# @return [String]
|
104
104
|
#
|
105
105
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/BrokerInstance AWS API Documentation
|
@@ -207,6 +207,10 @@ module Aws::MQ
|
|
207
207
|
# Required. The deployment mode of the broker.
|
208
208
|
# @return [String]
|
209
209
|
#
|
210
|
+
# @!attribute [rw] engine_type
|
211
|
+
# Required. The type of broker engine.
|
212
|
+
# @return [String]
|
213
|
+
#
|
210
214
|
# @!attribute [rw] host_instance_type
|
211
215
|
# The broker's instance type.
|
212
216
|
# @return [String]
|
@@ -220,6 +224,7 @@ module Aws::MQ
|
|
220
224
|
:broker_state,
|
221
225
|
:created,
|
222
226
|
:deployment_mode,
|
227
|
+
:engine_type,
|
223
228
|
:host_instance_type)
|
224
229
|
SENSITIVE = []
|
225
230
|
include Aws::Structure
|
@@ -245,7 +250,7 @@ module Aws::MQ
|
|
245
250
|
#
|
246
251
|
# @!attribute [rw] engine_type
|
247
252
|
# Required. The type of broker engine. Note: Currently, Amazon MQ
|
248
|
-
# supports
|
253
|
+
# supports ACTIVEMQ and RABBITMQ.
|
249
254
|
# @return [String]
|
250
255
|
#
|
251
256
|
# @!attribute [rw] engine_version
|
@@ -290,7 +295,7 @@ module Aws::MQ
|
|
290
295
|
include Aws::Structure
|
291
296
|
end
|
292
297
|
|
293
|
-
# A list of information about the configuration.
|
298
|
+
# A list of information about the configuration. Does not apply to RabbitMQ brokers.
|
294
299
|
#
|
295
300
|
# @note When making an API call, you may pass ConfigurationId
|
296
301
|
# data as a hash:
|
@@ -424,7 +429,7 @@ module Aws::MQ
|
|
424
429
|
#
|
425
430
|
# @!attribute [rw] engine_type
|
426
431
|
# Required. The type of broker engine. Note: Currently, Amazon MQ
|
427
|
-
# supports
|
432
|
+
# supports ACTIVEMQ and RABBITMQ.
|
428
433
|
# @return [String]
|
429
434
|
#
|
430
435
|
# @!attribute [rw] engine_version
|
@@ -465,11 +470,13 @@ module Aws::MQ
|
|
465
470
|
# @return [String]
|
466
471
|
#
|
467
472
|
# @!attribute [rw] subnet_ids
|
468
|
-
# The list of groups
|
469
|
-
#
|
470
|
-
#
|
471
|
-
#
|
472
|
-
#
|
473
|
+
# The list of groups that define which subnets and IP ranges the
|
474
|
+
# broker can use from different Availability Zones. A SINGLE\_INSTANCE
|
475
|
+
# deployment requires one subnet (for example, the default subnet). An
|
476
|
+
# ACTIVE\_STANDBY\_MULTI\_AZ deployment (ACTIVEMQ) requires two
|
477
|
+
# subnets. A CLUSTER\_MULTI\_AZ deployment (RABBITMQ) has no subnet
|
478
|
+
# requirements when deployed with public accessibility, deployment
|
479
|
+
# without public accessibility requires at least one subnet.
|
473
480
|
# @return [Array<String>]
|
474
481
|
#
|
475
482
|
# @!attribute [rw] tags
|
@@ -477,10 +484,14 @@ module Aws::MQ
|
|
477
484
|
# @return [Hash<String,String>]
|
478
485
|
#
|
479
486
|
# @!attribute [rw] users
|
480
|
-
# Required. The list of
|
481
|
-
#
|
482
|
-
#
|
483
|
-
# .
|
487
|
+
# Required. The list of broker users (persons or applications) who can
|
488
|
+
# access queues and topics. For RabbitMQ brokers, one and only one
|
489
|
+
# administrative user is accepted and created when a broker is first
|
490
|
+
# provisioned. All subsequent broker users are created by making
|
491
|
+
# RabbitMQ API calls directly to brokers or via the RabbitMQ Web
|
492
|
+
# Console. This value can contain only alphanumeric characters,
|
493
|
+
# dashes, periods, underscores, and tildes (- . \_ ~). This value must
|
494
|
+
# be 2-100 characters long.
|
484
495
|
# @return [Array<Types::User>]
|
485
496
|
#
|
486
497
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/CreateBrokerInput AWS API Documentation
|
@@ -540,12 +551,12 @@ module Aws::MQ
|
|
540
551
|
# revision: 1,
|
541
552
|
# },
|
542
553
|
# creator_request_id: "__string",
|
543
|
-
# deployment_mode: "SINGLE_INSTANCE", # accepts SINGLE_INSTANCE, ACTIVE_STANDBY_MULTI_AZ
|
554
|
+
# deployment_mode: "SINGLE_INSTANCE", # accepts SINGLE_INSTANCE, ACTIVE_STANDBY_MULTI_AZ, CLUSTER_MULTI_AZ
|
544
555
|
# encryption_options: {
|
545
556
|
# kms_key_id: "__string",
|
546
557
|
# use_aws_owned_key: false, # required
|
547
558
|
# },
|
548
|
-
# engine_type: "ACTIVEMQ", # accepts ACTIVEMQ
|
559
|
+
# engine_type: "ACTIVEMQ", # accepts ACTIVEMQ, RABBITMQ
|
549
560
|
# engine_version: "__string",
|
550
561
|
# host_instance_type: "__string",
|
551
562
|
# ldap_server_metadata: {
|
@@ -598,7 +609,7 @@ module Aws::MQ
|
|
598
609
|
# @return [String]
|
599
610
|
#
|
600
611
|
# @!attribute [rw] configuration
|
601
|
-
# A list of information about the configuration.
|
612
|
+
# A list of information about the configuration. Does not apply to RabbitMQ brokers.
|
602
613
|
# @return [Types::ConfigurationId]
|
603
614
|
#
|
604
615
|
# @!attribute [rw] creator_request_id
|
@@ -615,8 +626,8 @@ module Aws::MQ
|
|
615
626
|
# @return [Types::EncryptionOptions]
|
616
627
|
#
|
617
628
|
# @!attribute [rw] engine_type
|
618
|
-
# The type of broker engine. Note: Currently, Amazon MQ supports
|
619
|
-
# ActiveMQ.
|
629
|
+
# The type of broker engine. Note: Currently, Amazon MQ supports
|
630
|
+
# ActiveMQ and RabbitMQ.
|
620
631
|
# @return [String]
|
621
632
|
#
|
622
633
|
# @!attribute [rw] engine_version
|
@@ -626,8 +637,7 @@ module Aws::MQ
|
|
626
637
|
# @return [String]
|
627
638
|
#
|
628
639
|
# @!attribute [rw] ldap_server_metadata
|
629
|
-
# The metadata of the LDAP server used to authenticate and authorize
|
630
|
-
# connections to the broker.
|
640
|
+
# The metadata of the LDAP server used to authenticate and authorize connections to the broker. Currently not supported for RabbitMQ engine type.
|
631
641
|
# @return [Types::LdapServerMetadataInput]
|
632
642
|
#
|
633
643
|
# @!attribute [rw] logs
|
@@ -647,7 +657,7 @@ module Aws::MQ
|
|
647
657
|
# @return [Array<String>]
|
648
658
|
#
|
649
659
|
# @!attribute [rw] storage_type
|
650
|
-
# The storage type of the broker.
|
660
|
+
# The storage type of the broker. EFS is currently not Supported for RabbitMQ engine type.
|
651
661
|
# @return [String]
|
652
662
|
#
|
653
663
|
# @!attribute [rw] subnet_ids
|
@@ -710,7 +720,7 @@ module Aws::MQ
|
|
710
720
|
#
|
711
721
|
# @!attribute [rw] engine_type
|
712
722
|
# Required. The type of broker engine. Note: Currently, Amazon MQ
|
713
|
-
# supports
|
723
|
+
# supports ACTIVEMQ and RABBITMQ.
|
714
724
|
# @return [String]
|
715
725
|
#
|
716
726
|
# @!attribute [rw] engine_version
|
@@ -788,7 +798,7 @@ module Aws::MQ
|
|
788
798
|
#
|
789
799
|
# {
|
790
800
|
# authentication_strategy: "SIMPLE", # accepts SIMPLE, LDAP
|
791
|
-
# engine_type: "ACTIVEMQ", # accepts ACTIVEMQ
|
801
|
+
# engine_type: "ACTIVEMQ", # accepts ACTIVEMQ, RABBITMQ
|
792
802
|
# engine_version: "__string",
|
793
803
|
# name: "__string",
|
794
804
|
# tags: {
|
@@ -801,8 +811,8 @@ module Aws::MQ
|
|
801
811
|
# @return [String]
|
802
812
|
#
|
803
813
|
# @!attribute [rw] engine_type
|
804
|
-
# The type of broker engine. Note: Currently, Amazon MQ supports
|
805
|
-
# ActiveMQ.
|
814
|
+
# The type of broker engine. Note: Currently, Amazon MQ supports
|
815
|
+
# ActiveMQ and RabbitMQ.
|
806
816
|
# @return [String]
|
807
817
|
#
|
808
818
|
# @!attribute [rw] engine_version
|
@@ -887,8 +897,7 @@ module Aws::MQ
|
|
887
897
|
# Creates a new ActiveMQ user.
|
888
898
|
#
|
889
899
|
# @!attribute [rw] console_access
|
890
|
-
# Enables access to the
|
891
|
-
# user.
|
900
|
+
# Enables access to the ActiveMQ Web Console for the ActiveMQ user.
|
892
901
|
# @return [Boolean]
|
893
902
|
#
|
894
903
|
# @!attribute [rw] groups
|
@@ -1209,7 +1218,7 @@ module Aws::MQ
|
|
1209
1218
|
#
|
1210
1219
|
# @!attribute [rw] engine_type
|
1211
1220
|
# Required. The type of broker engine. Note: Currently, Amazon MQ
|
1212
|
-
# supports
|
1221
|
+
# supports ACTIVEMQ and RABBITMQ.
|
1213
1222
|
# @return [String]
|
1214
1223
|
#
|
1215
1224
|
# @!attribute [rw] engine_version
|
@@ -1278,11 +1287,13 @@ module Aws::MQ
|
|
1278
1287
|
# @return [String]
|
1279
1288
|
#
|
1280
1289
|
# @!attribute [rw] subnet_ids
|
1281
|
-
# The list of groups
|
1282
|
-
#
|
1283
|
-
#
|
1284
|
-
#
|
1285
|
-
#
|
1290
|
+
# The list of groups that define which subnets and IP ranges the
|
1291
|
+
# broker can use from different Availability Zones. A SINGLE\_INSTANCE
|
1292
|
+
# deployment requires one subnet (for example, the default subnet). An
|
1293
|
+
# ACTIVE\_STANDBY\_MULTI\_AZ deployment (ACTIVEMQ) requires two
|
1294
|
+
# subnets. A CLUSTER\_MULTI\_AZ deployment (RABBITMQ) has no subnet
|
1295
|
+
# requirements when deployed with public accessibility, deployment
|
1296
|
+
# without public accessibility requires at least one subnet.
|
1286
1297
|
# @return [Array<String>]
|
1287
1298
|
#
|
1288
1299
|
# @!attribute [rw] tags
|
@@ -1290,7 +1301,7 @@ module Aws::MQ
|
|
1290
1301
|
# @return [Hash<String,String>]
|
1291
1302
|
#
|
1292
1303
|
# @!attribute [rw] users
|
1293
|
-
# The list of all
|
1304
|
+
# The list of all broker usernames for the specified broker.
|
1294
1305
|
# @return [Array<Types::UserSummary>]
|
1295
1306
|
#
|
1296
1307
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/DescribeBrokerOutput AWS API Documentation
|
@@ -1385,8 +1396,8 @@ module Aws::MQ
|
|
1385
1396
|
# @return [Types::EncryptionOptions]
|
1386
1397
|
#
|
1387
1398
|
# @!attribute [rw] engine_type
|
1388
|
-
# The type of broker engine. Note: Currently, Amazon MQ supports
|
1389
|
-
# ActiveMQ.
|
1399
|
+
# The type of broker engine. Note: Currently, Amazon MQ supports
|
1400
|
+
# ActiveMQ and RabbitMQ.
|
1390
1401
|
# @return [String]
|
1391
1402
|
#
|
1392
1403
|
# @!attribute [rw] engine_version
|
@@ -1435,7 +1446,7 @@ module Aws::MQ
|
|
1435
1446
|
# @return [Array<String>]
|
1436
1447
|
#
|
1437
1448
|
# @!attribute [rw] storage_type
|
1438
|
-
# The storage type of the broker.
|
1449
|
+
# The storage type of the broker. EFS is currently not Supported for RabbitMQ engine type.
|
1439
1450
|
# @return [String]
|
1440
1451
|
#
|
1441
1452
|
# @!attribute [rw] subnet_ids
|
@@ -1514,8 +1525,8 @@ module Aws::MQ
|
|
1514
1525
|
# @return [String]
|
1515
1526
|
#
|
1516
1527
|
# @!attribute [rw] engine_type
|
1517
|
-
# The type of broker engine. Note: Currently, Amazon MQ supports
|
1518
|
-
# ActiveMQ.
|
1528
|
+
# The type of broker engine. Note: Currently, Amazon MQ supports
|
1529
|
+
# ActiveMQ and RabbitMQ.
|
1519
1530
|
# @return [String]
|
1520
1531
|
#
|
1521
1532
|
# @!attribute [rw] engine_version
|
@@ -1818,8 +1829,7 @@ module Aws::MQ
|
|
1818
1829
|
include Aws::Structure
|
1819
1830
|
end
|
1820
1831
|
|
1821
|
-
# The metadata of the LDAP server used to authenticate and authorize
|
1822
|
-
# connections to the broker.
|
1832
|
+
# The metadata of the LDAP server used to authenticate and authorize connections to the broker. Currently not supported for RabbitMQ engine type.
|
1823
1833
|
#
|
1824
1834
|
# @note When making an API call, you may pass LdapServerMetadataInput
|
1825
1835
|
# data as a hash:
|
@@ -2307,7 +2317,8 @@ module Aws::MQ
|
|
2307
2317
|
#
|
2308
2318
|
# @!attribute [rw] audit
|
2309
2319
|
# Enables audit logging. Every user management action made using JMX
|
2310
|
-
# or the ActiveMQ Web Console is logged.
|
2320
|
+
# or the ActiveMQ Web Console is logged. Does not apply to RabbitMQ
|
2321
|
+
# brokers.
|
2311
2322
|
# @return [Boolean]
|
2312
2323
|
#
|
2313
2324
|
# @!attribute [rw] general
|
@@ -2643,7 +2654,7 @@ module Aws::MQ
|
|
2643
2654
|
# @return [String]
|
2644
2655
|
#
|
2645
2656
|
# @!attribute [rw] configuration
|
2646
|
-
# A list of information about the configuration.
|
2657
|
+
# A list of information about the configuration. Does not apply to RabbitMQ brokers.
|
2647
2658
|
# @return [Types::ConfigurationId]
|
2648
2659
|
#
|
2649
2660
|
# @!attribute [rw] engine_version
|
@@ -2653,8 +2664,7 @@ module Aws::MQ
|
|
2653
2664
|
# @return [String]
|
2654
2665
|
#
|
2655
2666
|
# @!attribute [rw] ldap_server_metadata
|
2656
|
-
# The metadata of the LDAP server used to authenticate and authorize
|
2657
|
-
# connections to the broker.
|
2667
|
+
# The metadata of the LDAP server used to authenticate and authorize connections to the broker. Currently not supported for RabbitMQ engine type.
|
2658
2668
|
# @return [Types::LdapServerMetadataInput]
|
2659
2669
|
#
|
2660
2670
|
# @!attribute [rw] logs
|
@@ -2692,7 +2702,7 @@ module Aws::MQ
|
|
2692
2702
|
# @return [String]
|
2693
2703
|
#
|
2694
2704
|
# @!attribute [rw] configuration
|
2695
|
-
# A list of information about the configuration.
|
2705
|
+
# A list of information about the configuration. Does not apply to RabbitMQ brokers.
|
2696
2706
|
# @return [Types::ConfigurationId]
|
2697
2707
|
#
|
2698
2708
|
# @!attribute [rw] engine_version
|
@@ -2924,7 +2934,7 @@ module Aws::MQ
|
|
2924
2934
|
#
|
2925
2935
|
class UpdateUserResponse < Aws::EmptyStructure; end
|
2926
2936
|
|
2927
|
-
#
|
2937
|
+
# A user associated with the broker.
|
2928
2938
|
#
|
2929
2939
|
# @note When making an API call, you may pass User
|
2930
2940
|
# data as a hash:
|
@@ -2937,8 +2947,8 @@ module Aws::MQ
|
|
2937
2947
|
# }
|
2938
2948
|
#
|
2939
2949
|
# @!attribute [rw] console_access
|
2940
|
-
# Enables access to the
|
2941
|
-
#
|
2950
|
+
# Enables access to the ActiveMQ Web Console for the ActiveMQ user
|
2951
|
+
# (Does not apply to RabbitMQ brokers).
|
2942
2952
|
# @return [Boolean]
|
2943
2953
|
#
|
2944
2954
|
# @!attribute [rw] groups
|
@@ -2949,13 +2959,13 @@ module Aws::MQ
|
|
2949
2959
|
# @return [Array<String>]
|
2950
2960
|
#
|
2951
2961
|
# @!attribute [rw] password
|
2952
|
-
# Required. The password of the
|
2962
|
+
# Required. The password of the broker user. This value must be at
|
2953
2963
|
# least 12 characters long, must contain at least 4 unique characters,
|
2954
2964
|
# and must not contain commas.
|
2955
2965
|
# @return [String]
|
2956
2966
|
#
|
2957
2967
|
# @!attribute [rw] username
|
2958
|
-
# Required. The username of the
|
2968
|
+
# Required. The username of the broker user. This value can contain
|
2959
2969
|
# only alphanumeric characters, dashes, periods, underscores, and
|
2960
2970
|
# tildes (- . \_ ~). This value must be 2-100 characters long.
|
2961
2971
|
# @return [String]
|
@@ -3000,14 +3010,14 @@ module Aws::MQ
|
|
3000
3010
|
include Aws::Structure
|
3001
3011
|
end
|
3002
3012
|
|
3003
|
-
# Returns a list of all
|
3013
|
+
# Returns a list of all broker users.
|
3004
3014
|
#
|
3005
3015
|
# @!attribute [rw] pending_change
|
3006
|
-
# The type of change pending for the
|
3016
|
+
# The type of change pending for the broker user.
|
3007
3017
|
# @return [String]
|
3008
3018
|
#
|
3009
3019
|
# @!attribute [rw] username
|
3010
|
-
# Required. The username of the
|
3020
|
+
# Required. The username of the broker user. This value can contain
|
3011
3021
|
# only alphanumeric characters, dashes, periods, underscores, and
|
3012
3022
|
# tildes (- . \_ ~). This value must be 2-100 characters long.
|
3013
3023
|
# @return [String]
|
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.35.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:
|
11
|
+
date: 2021-02-02 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.112.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.112.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|