aws-sdk-mq 1.23.0 → 1.24.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 +15 -3
- data/lib/aws-sdk-mq/client_api.rb +13 -2
- data/lib/aws-sdk-mq/types.rb +51 -15
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 9e5bc5aaabc868a21a41be3ad4e0fcb725212289
|
4
|
+
data.tar.gz: 88a067cc42befa4de530ad28c24bc39fefbc962d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 341c1a8fcd8cafeaaab1c50d946db515bdb037546ad14ecbc5dcf3714d3bb3ca553af4cff39c0f1f69b926f8835aa023c5d5f7939a58fb1b3487143461463952
|
7
|
+
data.tar.gz: dbf051ca924d241d4b8fb4098a7f4bad9b457da53803dd933a08e5396b13b1bf613c4985ee1a82cec9a599f1ea6a6e897259bf61a67912010e236dbc4660bb5f
|
data/lib/aws-sdk-mq.rb
CHANGED
data/lib/aws-sdk-mq/client.rb
CHANGED
@@ -293,6 +293,9 @@ module Aws::MQ
|
|
293
293
|
#
|
294
294
|
# @option params [Array<String>] :security_groups
|
295
295
|
#
|
296
|
+
# @option params [String] :storage_type
|
297
|
+
# The storage type of the broker.
|
298
|
+
#
|
296
299
|
# @option params [Array<String>] :subnet_ids
|
297
300
|
#
|
298
301
|
# @option params [Hash<String,String>] :tags
|
@@ -333,6 +336,7 @@ module Aws::MQ
|
|
333
336
|
# },
|
334
337
|
# publicly_accessible: false,
|
335
338
|
# security_groups: ["__string"],
|
339
|
+
# storage_type: "EBS", # accepts EBS, EFS
|
336
340
|
# subnet_ids: ["__string"],
|
337
341
|
# tags: {
|
338
342
|
# "__string" => "__string",
|
@@ -569,10 +573,11 @@ module Aws::MQ
|
|
569
573
|
# * {Types::DescribeBrokerResponse#logs #logs} => Types::LogsSummary
|
570
574
|
# * {Types::DescribeBrokerResponse#maintenance_window_start_time #maintenance_window_start_time} => Types::WeeklyStartTime
|
571
575
|
# * {Types::DescribeBrokerResponse#pending_engine_version #pending_engine_version} => String
|
572
|
-
# * {Types::DescribeBrokerResponse#pending_security_groups #pending_security_groups} => Array<String>
|
573
576
|
# * {Types::DescribeBrokerResponse#pending_host_instance_type #pending_host_instance_type} => String
|
577
|
+
# * {Types::DescribeBrokerResponse#pending_security_groups #pending_security_groups} => Array<String>
|
574
578
|
# * {Types::DescribeBrokerResponse#publicly_accessible #publicly_accessible} => Boolean
|
575
579
|
# * {Types::DescribeBrokerResponse#security_groups #security_groups} => Array<String>
|
580
|
+
# * {Types::DescribeBrokerResponse#storage_type #storage_type} => String
|
576
581
|
# * {Types::DescribeBrokerResponse#subnet_ids #subnet_ids} => Array<String>
|
577
582
|
# * {Types::DescribeBrokerResponse#tags #tags} => Hash<String,String>
|
578
583
|
# * {Types::DescribeBrokerResponse#users #users} => Array<Types::UserSummary>
|
@@ -619,12 +624,13 @@ module Aws::MQ
|
|
619
624
|
# resp.maintenance_window_start_time.time_of_day #=> String
|
620
625
|
# resp.maintenance_window_start_time.time_zone #=> String
|
621
626
|
# resp.pending_engine_version #=> String
|
627
|
+
# resp.pending_host_instance_type #=> String
|
622
628
|
# resp.pending_security_groups #=> Array
|
623
629
|
# resp.pending_security_groups[0] #=> String
|
624
|
-
# resp.pending_host_instance_type #=> String
|
625
630
|
# resp.publicly_accessible #=> Boolean
|
626
631
|
# resp.security_groups #=> Array
|
627
632
|
# resp.security_groups[0] #=> String
|
633
|
+
# resp.storage_type #=> String, one of "EBS", "EFS"
|
628
634
|
# resp.subnet_ids #=> Array
|
629
635
|
# resp.subnet_ids[0] #=> String
|
630
636
|
# resp.tags #=> Hash
|
@@ -692,6 +698,8 @@ module Aws::MQ
|
|
692
698
|
#
|
693
699
|
# @option params [String] :next_token
|
694
700
|
#
|
701
|
+
# @option params [String] :storage_type
|
702
|
+
#
|
695
703
|
# @return [Types::DescribeBrokerInstanceOptionsResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
696
704
|
#
|
697
705
|
# * {Types::DescribeBrokerInstanceOptionsResponse#broker_instance_options #broker_instance_options} => Array<Types::BrokerInstanceOption>
|
@@ -705,6 +713,7 @@ module Aws::MQ
|
|
705
713
|
# host_instance_type: "__string",
|
706
714
|
# max_results: 1,
|
707
715
|
# next_token: "__string",
|
716
|
+
# storage_type: "__string",
|
708
717
|
# })
|
709
718
|
#
|
710
719
|
# @example Response structure
|
@@ -714,6 +723,9 @@ module Aws::MQ
|
|
714
723
|
# resp.broker_instance_options[0].availability_zones[0].name #=> String
|
715
724
|
# resp.broker_instance_options[0].engine_type #=> String, one of "ACTIVEMQ"
|
716
725
|
# resp.broker_instance_options[0].host_instance_type #=> String
|
726
|
+
# resp.broker_instance_options[0].storage_type #=> String, one of "EBS", "EFS"
|
727
|
+
# resp.broker_instance_options[0].supported_deployment_modes #=> Array
|
728
|
+
# resp.broker_instance_options[0].supported_deployment_modes[0] #=> String, one of "SINGLE_INSTANCE", "ACTIVE_STANDBY_MULTI_AZ"
|
717
729
|
# resp.broker_instance_options[0].supported_engine_versions #=> Array
|
718
730
|
# resp.broker_instance_options[0].supported_engine_versions[0] #=> String
|
719
731
|
# resp.max_results #=> Integer
|
@@ -1233,7 +1245,7 @@ module Aws::MQ
|
|
1233
1245
|
params: params,
|
1234
1246
|
config: config)
|
1235
1247
|
context[:gem_name] = 'aws-sdk-mq'
|
1236
|
-
context[:gem_version] = '1.
|
1248
|
+
context[:gem_version] = '1.24.0'
|
1237
1249
|
Seahorse::Client::Request.new(handlers, context)
|
1238
1250
|
end
|
1239
1251
|
|
@@ -19,6 +19,7 @@ module Aws::MQ
|
|
19
19
|
BrokerInstanceOption = Shapes::StructureShape.new(name: 'BrokerInstanceOption')
|
20
20
|
BrokerInstanceOptionsOutput = Shapes::StructureShape.new(name: 'BrokerInstanceOptionsOutput')
|
21
21
|
BrokerState = Shapes::StringShape.new(name: 'BrokerState')
|
22
|
+
BrokerStorageType = Shapes::StringShape.new(name: 'BrokerStorageType')
|
22
23
|
BrokerSummary = Shapes::StructureShape.new(name: 'BrokerSummary')
|
23
24
|
ChangeType = Shapes::StringShape.new(name: 'ChangeType')
|
24
25
|
Configuration = Shapes::StructureShape.new(name: 'Configuration')
|
@@ -119,6 +120,7 @@ module Aws::MQ
|
|
119
120
|
__listOfConfiguration = Shapes::ListShape.new(name: '__listOfConfiguration')
|
120
121
|
__listOfConfigurationId = Shapes::ListShape.new(name: '__listOfConfigurationId')
|
121
122
|
__listOfConfigurationRevision = Shapes::ListShape.new(name: '__listOfConfigurationRevision')
|
123
|
+
__listOfDeploymentMode = Shapes::ListShape.new(name: '__listOfDeploymentMode')
|
122
124
|
__listOfEngineVersion = Shapes::ListShape.new(name: '__listOfEngineVersion')
|
123
125
|
__listOfSanitizationWarning = Shapes::ListShape.new(name: '__listOfSanitizationWarning')
|
124
126
|
__listOfUser = Shapes::ListShape.new(name: '__listOfUser')
|
@@ -154,6 +156,8 @@ module Aws::MQ
|
|
154
156
|
BrokerInstanceOption.add_member(:availability_zones, Shapes::ShapeRef.new(shape: __listOfAvailabilityZone, location_name: "availabilityZones"))
|
155
157
|
BrokerInstanceOption.add_member(:engine_type, Shapes::ShapeRef.new(shape: EngineType, location_name: "engineType"))
|
156
158
|
BrokerInstanceOption.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
|
159
|
+
BrokerInstanceOption.add_member(:storage_type, Shapes::ShapeRef.new(shape: BrokerStorageType, location_name: "storageType"))
|
160
|
+
BrokerInstanceOption.add_member(:supported_deployment_modes, Shapes::ShapeRef.new(shape: __listOfDeploymentMode, location_name: "supportedDeploymentModes"))
|
157
161
|
BrokerInstanceOption.add_member(:supported_engine_versions, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "supportedEngineVersions"))
|
158
162
|
BrokerInstanceOption.struct_class = Types::BrokerInstanceOption
|
159
163
|
|
@@ -213,6 +217,7 @@ module Aws::MQ
|
|
213
217
|
CreateBrokerInput.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
|
214
218
|
CreateBrokerInput.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, location_name: "publiclyAccessible"))
|
215
219
|
CreateBrokerInput.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
220
|
+
CreateBrokerInput.add_member(:storage_type, Shapes::ShapeRef.new(shape: BrokerStorageType, location_name: "storageType"))
|
216
221
|
CreateBrokerInput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "subnetIds"))
|
217
222
|
CreateBrokerInput.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
218
223
|
CreateBrokerInput.add_member(:users, Shapes::ShapeRef.new(shape: __listOfUser, location_name: "users"))
|
@@ -235,6 +240,7 @@ module Aws::MQ
|
|
235
240
|
CreateBrokerRequest.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
|
236
241
|
CreateBrokerRequest.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, location_name: "publiclyAccessible"))
|
237
242
|
CreateBrokerRequest.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
243
|
+
CreateBrokerRequest.add_member(:storage_type, Shapes::ShapeRef.new(shape: BrokerStorageType, location_name: "storageType"))
|
238
244
|
CreateBrokerRequest.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "subnetIds"))
|
239
245
|
CreateBrokerRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
240
246
|
CreateBrokerRequest.add_member(:users, Shapes::ShapeRef.new(shape: __listOfUser, location_name: "users"))
|
@@ -321,6 +327,7 @@ module Aws::MQ
|
|
321
327
|
DescribeBrokerInstanceOptionsRequest.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "hostInstanceType"))
|
322
328
|
DescribeBrokerInstanceOptionsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: MaxResults, location: "querystring", location_name: "maxResults"))
|
323
329
|
DescribeBrokerInstanceOptionsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "nextToken"))
|
330
|
+
DescribeBrokerInstanceOptionsRequest.add_member(:storage_type, Shapes::ShapeRef.new(shape: __string, location: "querystring", location_name: "storageType"))
|
324
331
|
DescribeBrokerInstanceOptionsRequest.struct_class = Types::DescribeBrokerInstanceOptionsRequest
|
325
332
|
|
326
333
|
DescribeBrokerInstanceOptionsResponse.add_member(:broker_instance_options, Shapes::ShapeRef.new(shape: __listOfBrokerInstanceOption, location_name: "brokerInstanceOptions"))
|
@@ -344,10 +351,11 @@ module Aws::MQ
|
|
344
351
|
DescribeBrokerOutput.add_member(:logs, Shapes::ShapeRef.new(shape: LogsSummary, location_name: "logs"))
|
345
352
|
DescribeBrokerOutput.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
|
346
353
|
DescribeBrokerOutput.add_member(:pending_engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "pendingEngineVersion"))
|
347
|
-
DescribeBrokerOutput.add_member(:pending_security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "pendingSecurityGroups"))
|
348
354
|
DescribeBrokerOutput.add_member(:pending_host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "pendingHostInstanceType"))
|
355
|
+
DescribeBrokerOutput.add_member(:pending_security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "pendingSecurityGroups"))
|
349
356
|
DescribeBrokerOutput.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, location_name: "publiclyAccessible"))
|
350
357
|
DescribeBrokerOutput.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
358
|
+
DescribeBrokerOutput.add_member(:storage_type, Shapes::ShapeRef.new(shape: BrokerStorageType, location_name: "storageType"))
|
351
359
|
DescribeBrokerOutput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "subnetIds"))
|
352
360
|
DescribeBrokerOutput.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
353
361
|
DescribeBrokerOutput.add_member(:users, Shapes::ShapeRef.new(shape: __listOfUserSummary, location_name: "users"))
|
@@ -372,10 +380,11 @@ module Aws::MQ
|
|
372
380
|
DescribeBrokerResponse.add_member(:logs, Shapes::ShapeRef.new(shape: LogsSummary, location_name: "logs"))
|
373
381
|
DescribeBrokerResponse.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
|
374
382
|
DescribeBrokerResponse.add_member(:pending_engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "pendingEngineVersion"))
|
375
|
-
DescribeBrokerResponse.add_member(:pending_security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "pendingSecurityGroups"))
|
376
383
|
DescribeBrokerResponse.add_member(:pending_host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "pendingHostInstanceType"))
|
384
|
+
DescribeBrokerResponse.add_member(:pending_security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "pendingSecurityGroups"))
|
377
385
|
DescribeBrokerResponse.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, location_name: "publiclyAccessible"))
|
378
386
|
DescribeBrokerResponse.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
387
|
+
DescribeBrokerResponse.add_member(:storage_type, Shapes::ShapeRef.new(shape: BrokerStorageType, location_name: "storageType"))
|
379
388
|
DescribeBrokerResponse.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "subnetIds"))
|
380
389
|
DescribeBrokerResponse.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
381
390
|
DescribeBrokerResponse.add_member(:users, Shapes::ShapeRef.new(shape: __listOfUserSummary, location_name: "users"))
|
@@ -660,6 +669,8 @@ module Aws::MQ
|
|
660
669
|
|
661
670
|
__listOfConfigurationRevision.member = Shapes::ShapeRef.new(shape: ConfigurationRevision)
|
662
671
|
|
672
|
+
__listOfDeploymentMode.member = Shapes::ShapeRef.new(shape: DeploymentMode)
|
673
|
+
|
663
674
|
__listOfEngineVersion.member = Shapes::ShapeRef.new(shape: EngineVersion)
|
664
675
|
|
665
676
|
__listOfSanitizationWarning.member = Shapes::ShapeRef.new(shape: SanitizationWarning)
|
data/lib/aws-sdk-mq/types.rb
CHANGED
@@ -119,6 +119,14 @@ module Aws::MQ
|
|
119
119
|
# The type of broker instance.
|
120
120
|
# @return [String]
|
121
121
|
#
|
122
|
+
# @!attribute [rw] storage_type
|
123
|
+
# The broker's storage type.
|
124
|
+
# @return [String]
|
125
|
+
#
|
126
|
+
# @!attribute [rw] supported_deployment_modes
|
127
|
+
# The list of supported deployment modes.
|
128
|
+
# @return [Array<String>]
|
129
|
+
#
|
122
130
|
# @!attribute [rw] supported_engine_versions
|
123
131
|
# The list of supported engine versions.
|
124
132
|
# @return [Array<String>]
|
@@ -129,6 +137,8 @@ module Aws::MQ
|
|
129
137
|
:availability_zones,
|
130
138
|
:engine_type,
|
131
139
|
:host_instance_type,
|
140
|
+
:storage_type,
|
141
|
+
:supported_deployment_modes,
|
132
142
|
:supported_engine_versions)
|
133
143
|
include Aws::Structure
|
134
144
|
end
|
@@ -416,10 +426,14 @@ module Aws::MQ
|
|
416
426
|
# @return [Boolean]
|
417
427
|
#
|
418
428
|
# @!attribute [rw] security_groups
|
419
|
-
# The list of security groups (1 minimum, 5 maximum) that
|
429
|
+
# The list of security groups (1 minimum, 5 maximum) that authorizes
|
420
430
|
# connections to brokers.
|
421
431
|
# @return [Array<String>]
|
422
432
|
#
|
433
|
+
# @!attribute [rw] storage_type
|
434
|
+
# The broker's storage type.
|
435
|
+
# @return [String]
|
436
|
+
#
|
423
437
|
# @!attribute [rw] subnet_ids
|
424
438
|
# The list of groups (2 maximum) that define which subnets and IP
|
425
439
|
# ranges the broker can use from different Availability Zones. A
|
@@ -455,6 +469,7 @@ module Aws::MQ
|
|
455
469
|
:maintenance_window_start_time,
|
456
470
|
:publicly_accessible,
|
457
471
|
:security_groups,
|
472
|
+
:storage_type,
|
458
473
|
:subnet_ids,
|
459
474
|
:tags,
|
460
475
|
:users)
|
@@ -509,6 +524,7 @@ module Aws::MQ
|
|
509
524
|
# },
|
510
525
|
# publicly_accessible: false,
|
511
526
|
# security_groups: ["__string"],
|
527
|
+
# storage_type: "EBS", # accepts EBS, EFS
|
512
528
|
# subnet_ids: ["__string"],
|
513
529
|
# tags: {
|
514
530
|
# "__string" => "__string",
|
@@ -573,6 +589,10 @@ module Aws::MQ
|
|
573
589
|
# @!attribute [rw] security_groups
|
574
590
|
# @return [Array<String>]
|
575
591
|
#
|
592
|
+
# @!attribute [rw] storage_type
|
593
|
+
# The storage type of the broker.
|
594
|
+
# @return [String]
|
595
|
+
#
|
576
596
|
# @!attribute [rw] subnet_ids
|
577
597
|
# @return [Array<String>]
|
578
598
|
#
|
@@ -598,6 +618,7 @@ module Aws::MQ
|
|
598
618
|
:maintenance_window_start_time,
|
599
619
|
:publicly_accessible,
|
600
620
|
:security_groups,
|
621
|
+
:storage_type,
|
601
622
|
:subnet_ids,
|
602
623
|
:tags,
|
603
624
|
:users)
|
@@ -987,6 +1008,7 @@ module Aws::MQ
|
|
987
1008
|
# host_instance_type: "__string",
|
988
1009
|
# max_results: 1,
|
989
1010
|
# next_token: "__string",
|
1011
|
+
# storage_type: "__string",
|
990
1012
|
# }
|
991
1013
|
#
|
992
1014
|
# @!attribute [rw] engine_type
|
@@ -1001,13 +1023,17 @@ module Aws::MQ
|
|
1001
1023
|
# @!attribute [rw] next_token
|
1002
1024
|
# @return [String]
|
1003
1025
|
#
|
1026
|
+
# @!attribute [rw] storage_type
|
1027
|
+
# @return [String]
|
1028
|
+
#
|
1004
1029
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/DescribeBrokerInstanceOptionsRequest AWS API Documentation
|
1005
1030
|
#
|
1006
1031
|
class DescribeBrokerInstanceOptionsRequest < Struct.new(
|
1007
1032
|
:engine_type,
|
1008
1033
|
:host_instance_type,
|
1009
1034
|
:max_results,
|
1010
|
-
:next_token
|
1035
|
+
:next_token,
|
1036
|
+
:storage_type)
|
1011
1037
|
include Aws::Structure
|
1012
1038
|
end
|
1013
1039
|
|
@@ -1109,27 +1135,31 @@ module Aws::MQ
|
|
1109
1135
|
# https://docs.aws.amazon.com/amazon-mq/latest/developer-guide/broker-engine.html
|
1110
1136
|
# @return [String]
|
1111
1137
|
#
|
1112
|
-
# @!attribute [rw] pending_security_groups
|
1113
|
-
# The list of pending security groups to authorize connections to
|
1114
|
-
# brokers.
|
1115
|
-
# @return [Array<String>]
|
1116
|
-
#
|
1117
1138
|
# @!attribute [rw] pending_host_instance_type
|
1118
1139
|
# The host instance type of the broker to upgrade to. For a list of
|
1119
1140
|
# supported instance types, see
|
1120
1141
|
# https://docs.aws.amazon.com/amazon-mq/latest/developer-guide//broker.html#broker-instance-types
|
1121
1142
|
# @return [String]
|
1122
1143
|
#
|
1144
|
+
# @!attribute [rw] pending_security_groups
|
1145
|
+
# The list of pending security groups to authorize connections to
|
1146
|
+
# brokers.
|
1147
|
+
# @return [Array<String>]
|
1148
|
+
#
|
1123
1149
|
# @!attribute [rw] publicly_accessible
|
1124
1150
|
# Required. Enables connections from applications outside of the VPC
|
1125
1151
|
# that hosts the broker's subnets.
|
1126
1152
|
# @return [Boolean]
|
1127
1153
|
#
|
1128
1154
|
# @!attribute [rw] security_groups
|
1129
|
-
# The list of security groups (1 minimum, 5 maximum) that
|
1155
|
+
# The list of security groups (1 minimum, 5 maximum) that authorizes
|
1130
1156
|
# connections to brokers.
|
1131
1157
|
# @return [Array<String>]
|
1132
1158
|
#
|
1159
|
+
# @!attribute [rw] storage_type
|
1160
|
+
# The broker's storage type.
|
1161
|
+
# @return [String]
|
1162
|
+
#
|
1133
1163
|
# @!attribute [rw] subnet_ids
|
1134
1164
|
# The list of groups (2 maximum) that define which subnets and IP
|
1135
1165
|
# ranges the broker can use from different Availability Zones. A
|
@@ -1165,10 +1195,11 @@ module Aws::MQ
|
|
1165
1195
|
:logs,
|
1166
1196
|
:maintenance_window_start_time,
|
1167
1197
|
:pending_engine_version,
|
1168
|
-
:pending_security_groups,
|
1169
1198
|
:pending_host_instance_type,
|
1199
|
+
:pending_security_groups,
|
1170
1200
|
:publicly_accessible,
|
1171
1201
|
:security_groups,
|
1202
|
+
:storage_type,
|
1172
1203
|
:subnet_ids,
|
1173
1204
|
:tags,
|
1174
1205
|
:users)
|
@@ -1250,18 +1281,22 @@ module Aws::MQ
|
|
1250
1281
|
# @!attribute [rw] pending_engine_version
|
1251
1282
|
# @return [String]
|
1252
1283
|
#
|
1253
|
-
# @!attribute [rw] pending_security_groups
|
1254
|
-
# @return [Array<String>]
|
1255
|
-
#
|
1256
1284
|
# @!attribute [rw] pending_host_instance_type
|
1257
1285
|
# @return [String]
|
1258
1286
|
#
|
1287
|
+
# @!attribute [rw] pending_security_groups
|
1288
|
+
# @return [Array<String>]
|
1289
|
+
#
|
1259
1290
|
# @!attribute [rw] publicly_accessible
|
1260
1291
|
# @return [Boolean]
|
1261
1292
|
#
|
1262
1293
|
# @!attribute [rw] security_groups
|
1263
1294
|
# @return [Array<String>]
|
1264
1295
|
#
|
1296
|
+
# @!attribute [rw] storage_type
|
1297
|
+
# The storage type of the broker.
|
1298
|
+
# @return [String]
|
1299
|
+
#
|
1265
1300
|
# @!attribute [rw] subnet_ids
|
1266
1301
|
# @return [Array<String>]
|
1267
1302
|
#
|
@@ -1290,10 +1325,11 @@ module Aws::MQ
|
|
1290
1325
|
:logs,
|
1291
1326
|
:maintenance_window_start_time,
|
1292
1327
|
:pending_engine_version,
|
1293
|
-
:pending_security_groups,
|
1294
1328
|
:pending_host_instance_type,
|
1329
|
+
:pending_security_groups,
|
1295
1330
|
:publicly_accessible,
|
1296
1331
|
:security_groups,
|
1332
|
+
:storage_type,
|
1297
1333
|
:subnet_ids,
|
1298
1334
|
:tags,
|
1299
1335
|
:users)
|
@@ -2132,7 +2168,7 @@ module Aws::MQ
|
|
2132
2168
|
# @return [Types::Logs]
|
2133
2169
|
#
|
2134
2170
|
# @!attribute [rw] security_groups
|
2135
|
-
# The list of security groups (1 minimum, 5 maximum) that
|
2171
|
+
# The list of security groups (1 minimum, 5 maximum) that authorizes
|
2136
2172
|
# connections to brokers.
|
2137
2173
|
# @return [Array<String>]
|
2138
2174
|
#
|
@@ -2181,7 +2217,7 @@ module Aws::MQ
|
|
2181
2217
|
# @return [Types::Logs]
|
2182
2218
|
#
|
2183
2219
|
# @!attribute [rw] security_groups
|
2184
|
-
# The list of security groups (1 minimum, 5 maximum) that
|
2220
|
+
# The list of security groups (1 minimum, 5 maximum) that authorizes
|
2185
2221
|
# connections to brokers.
|
2186
2222
|
# @return [Array<String>]
|
2187
2223
|
#
|
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.24.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: 2019-
|
11
|
+
date: 2019-12-16 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|