aws-sdk-mq 1.99.0 → 1.100.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mq/client.rb +15 -1
- data/lib/aws-sdk-mq/client_api.rb +10 -0
- data/lib/aws-sdk-mq/types.rb +55 -3
- data/lib/aws-sdk-mq.rb +1 -1
- data/sig/client.rbs +5 -0
- data/sig/types.rbs +10 -0
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: dfd38399c5a71d472524365a3a38a015c14266336312eeee372cd076d8e34d84
|
|
4
|
+
data.tar.gz: cf764dba8bacdfc137caf161b098361c0405b2ebbe363a860c88af5fde1d552c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 16eda8d57d9abef624afb89af4ea5df9e4a3ee4a6d53a2e7d6e0d2f6acb8efbb6893a7e050002f8c61511d854935a8d24edc77117ebe32d230e37381e50cf09c
|
|
7
|
+
data.tar.gz: a6a3b35a8eebd5153bb91324513afdd57f599a11b12a6fd23d220b70756d013b40ccc9ae354e033f0707c7f505d964b7e34e952a3817982fb9a77126314c89f9
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.100.0 (2026-07-14)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - This release adds storage size parameter for Amazon MQ for RabbitMQ cluster deployment broker on engine version RabbitMQ 4.2. You can now set a configurable storage size within a range of sizes dependent on broker instance size.
|
|
8
|
+
|
|
4
9
|
1.99.0 (2026-07-09)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.100.0
|
data/lib/aws-sdk-mq/client.rb
CHANGED
|
@@ -564,6 +564,9 @@ module Aws::MQ
|
|
|
564
564
|
#
|
|
565
565
|
# @option params [Array<String>] :security_groups
|
|
566
566
|
#
|
|
567
|
+
# @option params [Integer] :storage_size
|
|
568
|
+
# The broker's storage size in GB.
|
|
569
|
+
#
|
|
567
570
|
# @option params [String] :storage_type
|
|
568
571
|
# The broker's storage type.
|
|
569
572
|
#
|
|
@@ -628,6 +631,7 @@ module Aws::MQ
|
|
|
628
631
|
# },
|
|
629
632
|
# publicly_accessible: false, # required
|
|
630
633
|
# security_groups: ["__string"],
|
|
634
|
+
# storage_size: 1,
|
|
631
635
|
# storage_type: "EBS", # accepts EBS, EFS
|
|
632
636
|
# subnet_ids: ["__string"],
|
|
633
637
|
# tags: {
|
|
@@ -917,8 +921,10 @@ module Aws::MQ
|
|
|
917
921
|
# * {Types::DescribeBrokerResponse#pending_host_instance_type #pending_host_instance_type} => String
|
|
918
922
|
# * {Types::DescribeBrokerResponse#pending_ldap_server_metadata #pending_ldap_server_metadata} => Types::LdapServerMetadataOutput
|
|
919
923
|
# * {Types::DescribeBrokerResponse#pending_security_groups #pending_security_groups} => Array<String>
|
|
924
|
+
# * {Types::DescribeBrokerResponse#pending_storage_size #pending_storage_size} => Integer
|
|
920
925
|
# * {Types::DescribeBrokerResponse#publicly_accessible #publicly_accessible} => Boolean
|
|
921
926
|
# * {Types::DescribeBrokerResponse#security_groups #security_groups} => Array<String>
|
|
927
|
+
# * {Types::DescribeBrokerResponse#storage_size #storage_size} => Integer
|
|
922
928
|
# * {Types::DescribeBrokerResponse#storage_type #storage_type} => String
|
|
923
929
|
# * {Types::DescribeBrokerResponse#subnet_ids #subnet_ids} => Array<String>
|
|
924
930
|
# * {Types::DescribeBrokerResponse#tags #tags} => Hash<String,String>
|
|
@@ -1000,9 +1006,11 @@ module Aws::MQ
|
|
|
1000
1006
|
# resp.pending_ldap_server_metadata.user_search_subtree #=> Boolean
|
|
1001
1007
|
# resp.pending_security_groups #=> Array
|
|
1002
1008
|
# resp.pending_security_groups[0] #=> String
|
|
1009
|
+
# resp.pending_storage_size #=> Integer
|
|
1003
1010
|
# resp.publicly_accessible #=> Boolean
|
|
1004
1011
|
# resp.security_groups #=> Array
|
|
1005
1012
|
# resp.security_groups[0] #=> String
|
|
1013
|
+
# resp.storage_size #=> Integer
|
|
1006
1014
|
# resp.storage_type #=> String, one of "EBS", "EFS"
|
|
1007
1015
|
# resp.subnet_ids #=> Array
|
|
1008
1016
|
# resp.subnet_ids[0] #=> String
|
|
@@ -1583,6 +1591,9 @@ module Aws::MQ
|
|
|
1583
1591
|
#
|
|
1584
1592
|
# @option params [Array<String>] :security_groups
|
|
1585
1593
|
#
|
|
1594
|
+
# @option params [Integer] :storage_size
|
|
1595
|
+
# The broker's storage size in GB.
|
|
1596
|
+
#
|
|
1586
1597
|
# @option params [String] :data_replication_mode
|
|
1587
1598
|
# Specifies whether a broker is a part of a data replication pair.
|
|
1588
1599
|
#
|
|
@@ -1603,6 +1614,7 @@ module Aws::MQ
|
|
|
1603
1614
|
# * {Types::UpdateBrokerResponse#data_replication_mode #data_replication_mode} => String
|
|
1604
1615
|
# * {Types::UpdateBrokerResponse#pending_data_replication_metadata #pending_data_replication_metadata} => Types::DataReplicationMetadataOutput
|
|
1605
1616
|
# * {Types::UpdateBrokerResponse#pending_data_replication_mode #pending_data_replication_mode} => String
|
|
1617
|
+
# * {Types::UpdateBrokerResponse#storage_size #storage_size} => Integer
|
|
1606
1618
|
#
|
|
1607
1619
|
# @example Request syntax with placeholder values
|
|
1608
1620
|
#
|
|
@@ -1640,6 +1652,7 @@ module Aws::MQ
|
|
|
1640
1652
|
# },
|
|
1641
1653
|
# resource_share_arns: ["__string"],
|
|
1642
1654
|
# security_groups: ["__string"],
|
|
1655
|
+
# storage_size: 1,
|
|
1643
1656
|
# data_replication_mode: "NONE", # accepts NONE, CRDR
|
|
1644
1657
|
# })
|
|
1645
1658
|
#
|
|
@@ -1680,6 +1693,7 @@ module Aws::MQ
|
|
|
1680
1693
|
# resp.pending_data_replication_metadata.data_replication_counterpart.region #=> String
|
|
1681
1694
|
# resp.pending_data_replication_metadata.data_replication_role #=> String
|
|
1682
1695
|
# resp.pending_data_replication_mode #=> String, one of "NONE", "CRDR"
|
|
1696
|
+
# resp.storage_size #=> Integer
|
|
1683
1697
|
#
|
|
1684
1698
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/UpdateBroker AWS API Documentation
|
|
1685
1699
|
#
|
|
@@ -1792,7 +1806,7 @@ module Aws::MQ
|
|
|
1792
1806
|
tracer: tracer
|
|
1793
1807
|
)
|
|
1794
1808
|
context[:gem_name] = 'aws-sdk-mq'
|
|
1795
|
-
context[:gem_version] = '1.
|
|
1809
|
+
context[:gem_version] = '1.100.0'
|
|
1796
1810
|
Seahorse::Client::Request.new(handlers, context)
|
|
1797
1811
|
end
|
|
1798
1812
|
|
|
@@ -259,6 +259,7 @@ module Aws::MQ
|
|
|
259
259
|
CreateBrokerInput.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
|
|
260
260
|
CreateBrokerInput.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, required: true, location_name: "publiclyAccessible"))
|
|
261
261
|
CreateBrokerInput.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
|
262
|
+
CreateBrokerInput.add_member(:storage_size, Shapes::ShapeRef.new(shape: __integer, location_name: "storageSize"))
|
|
262
263
|
CreateBrokerInput.add_member(:storage_type, Shapes::ShapeRef.new(shape: BrokerStorageType, location_name: "storageType"))
|
|
263
264
|
CreateBrokerInput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "subnetIds"))
|
|
264
265
|
CreateBrokerInput.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
|
@@ -284,6 +285,7 @@ module Aws::MQ
|
|
|
284
285
|
CreateBrokerRequest.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
|
|
285
286
|
CreateBrokerRequest.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, required: true, location_name: "publiclyAccessible"))
|
|
286
287
|
CreateBrokerRequest.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
|
288
|
+
CreateBrokerRequest.add_member(:storage_size, Shapes::ShapeRef.new(shape: __integer, location_name: "storageSize"))
|
|
287
289
|
CreateBrokerRequest.add_member(:storage_type, Shapes::ShapeRef.new(shape: BrokerStorageType, location_name: "storageType"))
|
|
288
290
|
CreateBrokerRequest.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "subnetIds"))
|
|
289
291
|
CreateBrokerRequest.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
|
@@ -431,8 +433,10 @@ module Aws::MQ
|
|
|
431
433
|
DescribeBrokerOutput.add_member(:pending_host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "pendingHostInstanceType"))
|
|
432
434
|
DescribeBrokerOutput.add_member(:pending_ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataOutput, location_name: "pendingLdapServerMetadata"))
|
|
433
435
|
DescribeBrokerOutput.add_member(:pending_security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "pendingSecurityGroups"))
|
|
436
|
+
DescribeBrokerOutput.add_member(:pending_storage_size, Shapes::ShapeRef.new(shape: __integer, location_name: "pendingStorageSize"))
|
|
434
437
|
DescribeBrokerOutput.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, required: true, location_name: "publiclyAccessible"))
|
|
435
438
|
DescribeBrokerOutput.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
|
439
|
+
DescribeBrokerOutput.add_member(:storage_size, Shapes::ShapeRef.new(shape: __integer, location_name: "storageSize"))
|
|
436
440
|
DescribeBrokerOutput.add_member(:storage_type, Shapes::ShapeRef.new(shape: BrokerStorageType, location_name: "storageType"))
|
|
437
441
|
DescribeBrokerOutput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "subnetIds"))
|
|
438
442
|
DescribeBrokerOutput.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
|
@@ -465,8 +469,10 @@ module Aws::MQ
|
|
|
465
469
|
DescribeBrokerResponse.add_member(:pending_host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "pendingHostInstanceType"))
|
|
466
470
|
DescribeBrokerResponse.add_member(:pending_ldap_server_metadata, Shapes::ShapeRef.new(shape: LdapServerMetadataOutput, location_name: "pendingLdapServerMetadata"))
|
|
467
471
|
DescribeBrokerResponse.add_member(:pending_security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "pendingSecurityGroups"))
|
|
472
|
+
DescribeBrokerResponse.add_member(:pending_storage_size, Shapes::ShapeRef.new(shape: __integer, location_name: "pendingStorageSize"))
|
|
468
473
|
DescribeBrokerResponse.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, location_name: "publiclyAccessible"))
|
|
469
474
|
DescribeBrokerResponse.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
|
475
|
+
DescribeBrokerResponse.add_member(:storage_size, Shapes::ShapeRef.new(shape: __integer, location_name: "storageSize"))
|
|
470
476
|
DescribeBrokerResponse.add_member(:storage_type, Shapes::ShapeRef.new(shape: BrokerStorageType, location_name: "storageType"))
|
|
471
477
|
DescribeBrokerResponse.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "subnetIds"))
|
|
472
478
|
DescribeBrokerResponse.add_member(:tags, Shapes::ShapeRef.new(shape: __mapOf__string, location_name: "tags"))
|
|
@@ -733,6 +739,7 @@ module Aws::MQ
|
|
|
733
739
|
UpdateBrokerInput.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
|
|
734
740
|
UpdateBrokerInput.add_member(:resource_share_arns, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "resourceShareArns"))
|
|
735
741
|
UpdateBrokerInput.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
|
742
|
+
UpdateBrokerInput.add_member(:storage_size, Shapes::ShapeRef.new(shape: __integer, location_name: "storageSize"))
|
|
736
743
|
UpdateBrokerInput.struct_class = Types::UpdateBrokerInput
|
|
737
744
|
|
|
738
745
|
UpdateBrokerOutput.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
|
@@ -750,6 +757,7 @@ module Aws::MQ
|
|
|
750
757
|
UpdateBrokerOutput.add_member(:pending_data_replication_mode, Shapes::ShapeRef.new(shape: DataReplicationMode, location_name: "pendingDataReplicationMode"))
|
|
751
758
|
UpdateBrokerOutput.add_member(:resource_share_arns, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "resourceShareArns"))
|
|
752
759
|
UpdateBrokerOutput.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
|
760
|
+
UpdateBrokerOutput.add_member(:storage_size, Shapes::ShapeRef.new(shape: __integer, location_name: "storageSize"))
|
|
753
761
|
UpdateBrokerOutput.struct_class = Types::UpdateBrokerOutput
|
|
754
762
|
|
|
755
763
|
UpdateBrokerRequest.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
|
@@ -763,6 +771,7 @@ module Aws::MQ
|
|
|
763
771
|
UpdateBrokerRequest.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
|
|
764
772
|
UpdateBrokerRequest.add_member(:resource_share_arns, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "resourceShareArns"))
|
|
765
773
|
UpdateBrokerRequest.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
|
774
|
+
UpdateBrokerRequest.add_member(:storage_size, Shapes::ShapeRef.new(shape: __integer, location_name: "storageSize"))
|
|
766
775
|
UpdateBrokerRequest.add_member(:data_replication_mode, Shapes::ShapeRef.new(shape: DataReplicationMode, location_name: "dataReplicationMode"))
|
|
767
776
|
UpdateBrokerRequest.struct_class = Types::UpdateBrokerRequest
|
|
768
777
|
|
|
@@ -781,6 +790,7 @@ module Aws::MQ
|
|
|
781
790
|
UpdateBrokerResponse.add_member(:data_replication_mode, Shapes::ShapeRef.new(shape: DataReplicationMode, location_name: "dataReplicationMode"))
|
|
782
791
|
UpdateBrokerResponse.add_member(:pending_data_replication_metadata, Shapes::ShapeRef.new(shape: DataReplicationMetadataOutput, location_name: "pendingDataReplicationMetadata"))
|
|
783
792
|
UpdateBrokerResponse.add_member(:pending_data_replication_mode, Shapes::ShapeRef.new(shape: DataReplicationMode, location_name: "pendingDataReplicationMode"))
|
|
793
|
+
UpdateBrokerResponse.add_member(:storage_size, Shapes::ShapeRef.new(shape: __integer, location_name: "storageSize"))
|
|
784
794
|
UpdateBrokerResponse.struct_class = Types::UpdateBrokerResponse
|
|
785
795
|
|
|
786
796
|
UpdateConfigurationInput.add_member(:data, Shapes::ShapeRef.new(shape: __string, required: true, location_name: "data"))
|
data/lib/aws-sdk-mq/types.rb
CHANGED
|
@@ -530,6 +530,10 @@ module Aws::MQ
|
|
|
530
530
|
# connections to brokers.
|
|
531
531
|
# @return [Array<String>]
|
|
532
532
|
#
|
|
533
|
+
# @!attribute [rw] storage_size
|
|
534
|
+
# The broker's storage size in GB.
|
|
535
|
+
# @return [Integer]
|
|
536
|
+
#
|
|
533
537
|
# @!attribute [rw] storage_type
|
|
534
538
|
# The broker's storage type.
|
|
535
539
|
# @return [String]
|
|
@@ -593,6 +597,7 @@ module Aws::MQ
|
|
|
593
597
|
:maintenance_window_start_time,
|
|
594
598
|
:publicly_accessible,
|
|
595
599
|
:security_groups,
|
|
600
|
+
:storage_size,
|
|
596
601
|
:storage_type,
|
|
597
602
|
:subnet_ids,
|
|
598
603
|
:tags,
|
|
@@ -681,6 +686,10 @@ module Aws::MQ
|
|
|
681
686
|
# @!attribute [rw] security_groups
|
|
682
687
|
# @return [Array<String>]
|
|
683
688
|
#
|
|
689
|
+
# @!attribute [rw] storage_size
|
|
690
|
+
# The broker's storage size in GB.
|
|
691
|
+
# @return [Integer]
|
|
692
|
+
#
|
|
684
693
|
# @!attribute [rw] storage_type
|
|
685
694
|
# The broker's storage type.
|
|
686
695
|
#
|
|
@@ -721,6 +730,7 @@ module Aws::MQ
|
|
|
721
730
|
:maintenance_window_start_time,
|
|
722
731
|
:publicly_accessible,
|
|
723
732
|
:security_groups,
|
|
733
|
+
:storage_size,
|
|
724
734
|
:storage_type,
|
|
725
735
|
:subnet_ids,
|
|
726
736
|
:tags,
|
|
@@ -1363,6 +1373,11 @@ module Aws::MQ
|
|
|
1363
1373
|
# brokers.
|
|
1364
1374
|
# @return [Array<String>]
|
|
1365
1375
|
#
|
|
1376
|
+
# @!attribute [rw] pending_storage_size
|
|
1377
|
+
# The pending storage size in GB, to be applied on the next broker
|
|
1378
|
+
# restart.
|
|
1379
|
+
# @return [Integer]
|
|
1380
|
+
#
|
|
1366
1381
|
# @!attribute [rw] publicly_accessible
|
|
1367
1382
|
# Enables connections from applications outside of the VPC that hosts
|
|
1368
1383
|
# the broker's subnets.
|
|
@@ -1373,6 +1388,10 @@ module Aws::MQ
|
|
|
1373
1388
|
# connections to brokers.
|
|
1374
1389
|
# @return [Array<String>]
|
|
1375
1390
|
#
|
|
1391
|
+
# @!attribute [rw] storage_size
|
|
1392
|
+
# The broker's storage size in GB.
|
|
1393
|
+
# @return [Integer]
|
|
1394
|
+
#
|
|
1376
1395
|
# @!attribute [rw] storage_type
|
|
1377
1396
|
# The broker's storage type.
|
|
1378
1397
|
# @return [String]
|
|
@@ -1420,8 +1439,10 @@ module Aws::MQ
|
|
|
1420
1439
|
:pending_host_instance_type,
|
|
1421
1440
|
:pending_ldap_server_metadata,
|
|
1422
1441
|
:pending_security_groups,
|
|
1442
|
+
:pending_storage_size,
|
|
1423
1443
|
:publicly_accessible,
|
|
1424
1444
|
:security_groups,
|
|
1445
|
+
:storage_size,
|
|
1425
1446
|
:storage_type,
|
|
1426
1447
|
:subnet_ids,
|
|
1427
1448
|
:tags,
|
|
@@ -1527,12 +1548,21 @@ module Aws::MQ
|
|
|
1527
1548
|
# @!attribute [rw] pending_security_groups
|
|
1528
1549
|
# @return [Array<String>]
|
|
1529
1550
|
#
|
|
1551
|
+
# @!attribute [rw] pending_storage_size
|
|
1552
|
+
# The pending storage size in GB, to be applied on the next broker
|
|
1553
|
+
# restart.
|
|
1554
|
+
# @return [Integer]
|
|
1555
|
+
#
|
|
1530
1556
|
# @!attribute [rw] publicly_accessible
|
|
1531
1557
|
# @return [Boolean]
|
|
1532
1558
|
#
|
|
1533
1559
|
# @!attribute [rw] security_groups
|
|
1534
1560
|
# @return [Array<String>]
|
|
1535
1561
|
#
|
|
1562
|
+
# @!attribute [rw] storage_size
|
|
1563
|
+
# The broker's storage size in GB.
|
|
1564
|
+
# @return [Integer]
|
|
1565
|
+
#
|
|
1536
1566
|
# @!attribute [rw] storage_type
|
|
1537
1567
|
# The broker's storage type.
|
|
1538
1568
|
#
|
|
@@ -1594,8 +1624,10 @@ module Aws::MQ
|
|
|
1594
1624
|
:pending_host_instance_type,
|
|
1595
1625
|
:pending_ldap_server_metadata,
|
|
1596
1626
|
:pending_security_groups,
|
|
1627
|
+
:pending_storage_size,
|
|
1597
1628
|
:publicly_accessible,
|
|
1598
1629
|
:security_groups,
|
|
1630
|
+
:storage_size,
|
|
1599
1631
|
:storage_type,
|
|
1600
1632
|
:subnet_ids,
|
|
1601
1633
|
:tags,
|
|
@@ -2850,6 +2882,10 @@ module Aws::MQ
|
|
|
2850
2882
|
# connections to brokers.
|
|
2851
2883
|
# @return [Array<String>]
|
|
2852
2884
|
#
|
|
2885
|
+
# @!attribute [rw] storage_size
|
|
2886
|
+
# The broker's storage size in GB.
|
|
2887
|
+
# @return [Integer]
|
|
2888
|
+
#
|
|
2853
2889
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/UpdateBrokerInput AWS API Documentation
|
|
2854
2890
|
#
|
|
2855
2891
|
class UpdateBrokerInput < Struct.new(
|
|
@@ -2863,7 +2899,8 @@ module Aws::MQ
|
|
|
2863
2899
|
:logs,
|
|
2864
2900
|
:maintenance_window_start_time,
|
|
2865
2901
|
:resource_share_arns,
|
|
2866
|
-
:security_groups
|
|
2902
|
+
:security_groups,
|
|
2903
|
+
:storage_size)
|
|
2867
2904
|
SENSITIVE = []
|
|
2868
2905
|
include Aws::Structure
|
|
2869
2906
|
end
|
|
@@ -2953,6 +2990,10 @@ module Aws::MQ
|
|
|
2953
2990
|
# connections to brokers.
|
|
2954
2991
|
# @return [Array<String>]
|
|
2955
2992
|
#
|
|
2993
|
+
# @!attribute [rw] storage_size
|
|
2994
|
+
# The broker's storage size in GB.
|
|
2995
|
+
# @return [Integer]
|
|
2996
|
+
#
|
|
2956
2997
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/UpdateBrokerOutput AWS API Documentation
|
|
2957
2998
|
#
|
|
2958
2999
|
class UpdateBrokerOutput < Struct.new(
|
|
@@ -2970,7 +3011,8 @@ module Aws::MQ
|
|
|
2970
3011
|
:pending_data_replication_metadata,
|
|
2971
3012
|
:pending_data_replication_mode,
|
|
2972
3013
|
:resource_share_arns,
|
|
2973
|
-
:security_groups
|
|
3014
|
+
:security_groups,
|
|
3015
|
+
:storage_size)
|
|
2974
3016
|
SENSITIVE = []
|
|
2975
3017
|
include Aws::Structure
|
|
2976
3018
|
end
|
|
@@ -3019,6 +3061,10 @@ module Aws::MQ
|
|
|
3019
3061
|
# @!attribute [rw] security_groups
|
|
3020
3062
|
# @return [Array<String>]
|
|
3021
3063
|
#
|
|
3064
|
+
# @!attribute [rw] storage_size
|
|
3065
|
+
# The broker's storage size in GB.
|
|
3066
|
+
# @return [Integer]
|
|
3067
|
+
#
|
|
3022
3068
|
# @!attribute [rw] data_replication_mode
|
|
3023
3069
|
# Specifies whether a broker is a part of a data replication pair.
|
|
3024
3070
|
# @return [String]
|
|
@@ -3037,6 +3083,7 @@ module Aws::MQ
|
|
|
3037
3083
|
:maintenance_window_start_time,
|
|
3038
3084
|
:resource_share_arns,
|
|
3039
3085
|
:security_groups,
|
|
3086
|
+
:storage_size,
|
|
3040
3087
|
:data_replication_mode)
|
|
3041
3088
|
SENSITIVE = []
|
|
3042
3089
|
include Aws::Structure
|
|
@@ -3104,6 +3151,10 @@ module Aws::MQ
|
|
|
3104
3151
|
# Specifies whether a broker is a part of a data replication pair.
|
|
3105
3152
|
# @return [String]
|
|
3106
3153
|
#
|
|
3154
|
+
# @!attribute [rw] storage_size
|
|
3155
|
+
# The broker's storage size in GB.
|
|
3156
|
+
# @return [Integer]
|
|
3157
|
+
#
|
|
3107
3158
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/UpdateBrokerResponse AWS API Documentation
|
|
3108
3159
|
#
|
|
3109
3160
|
class UpdateBrokerResponse < Struct.new(
|
|
@@ -3121,7 +3172,8 @@ module Aws::MQ
|
|
|
3121
3172
|
:data_replication_metadata,
|
|
3122
3173
|
:data_replication_mode,
|
|
3123
3174
|
:pending_data_replication_metadata,
|
|
3124
|
-
:pending_data_replication_mode
|
|
3175
|
+
:pending_data_replication_mode,
|
|
3176
|
+
:storage_size)
|
|
3125
3177
|
SENSITIVE = []
|
|
3126
3178
|
include Aws::Structure
|
|
3127
3179
|
end
|
data/lib/aws-sdk-mq.rb
CHANGED
data/sig/client.rbs
CHANGED
|
@@ -113,6 +113,7 @@ module Aws
|
|
|
113
113
|
},
|
|
114
114
|
publicly_accessible: bool,
|
|
115
115
|
?security_groups: Array[::String],
|
|
116
|
+
?storage_size: ::Integer,
|
|
116
117
|
?storage_type: ("EBS" | "EFS"),
|
|
117
118
|
?subnet_ids: Array[::String],
|
|
118
119
|
?tags: Hash[::String, ::String],
|
|
@@ -232,8 +233,10 @@ module Aws
|
|
|
232
233
|
def pending_host_instance_type: () -> ::String
|
|
233
234
|
def pending_ldap_server_metadata: () -> Types::LdapServerMetadataOutput
|
|
234
235
|
def pending_security_groups: () -> ::Array[::String]
|
|
236
|
+
def pending_storage_size: () -> ::Integer
|
|
235
237
|
def publicly_accessible: () -> bool
|
|
236
238
|
def security_groups: () -> ::Array[::String]
|
|
239
|
+
def storage_size: () -> ::Integer
|
|
237
240
|
def storage_type: () -> ("EBS" | "EFS")
|
|
238
241
|
def subnet_ids: () -> ::Array[::String]
|
|
239
242
|
def tags: () -> ::Hash[::String, ::String]
|
|
@@ -442,6 +445,7 @@ module Aws
|
|
|
442
445
|
def data_replication_mode: () -> ("NONE" | "CRDR")
|
|
443
446
|
def pending_data_replication_metadata: () -> Types::DataReplicationMetadataOutput
|
|
444
447
|
def pending_data_replication_mode: () -> ("NONE" | "CRDR")
|
|
448
|
+
def storage_size: () -> ::Integer
|
|
445
449
|
end
|
|
446
450
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MQ/Client.html#update_broker-instance_method
|
|
447
451
|
def update_broker: (
|
|
@@ -466,6 +470,7 @@ module Aws
|
|
|
466
470
|
},
|
|
467
471
|
?resource_share_arns: Array[::String],
|
|
468
472
|
?security_groups: Array[::String],
|
|
473
|
+
?storage_size: ::Integer,
|
|
469
474
|
?data_replication_mode: ("NONE" | "CRDR")
|
|
470
475
|
) -> _UpdateBrokerResponseSuccess
|
|
471
476
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateBrokerResponseSuccess
|
data/sig/types.rbs
CHANGED
|
@@ -134,6 +134,7 @@ module Aws::MQ
|
|
|
134
134
|
attr_accessor maintenance_window_start_time: Types::WeeklyStartTime
|
|
135
135
|
attr_accessor publicly_accessible: bool
|
|
136
136
|
attr_accessor security_groups: ::Array[::String]
|
|
137
|
+
attr_accessor storage_size: ::Integer
|
|
137
138
|
attr_accessor storage_type: ("EBS" | "EFS")
|
|
138
139
|
attr_accessor subnet_ids: ::Array[::String]
|
|
139
140
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
@@ -163,6 +164,7 @@ module Aws::MQ
|
|
|
163
164
|
attr_accessor maintenance_window_start_time: Types::WeeklyStartTime
|
|
164
165
|
attr_accessor publicly_accessible: bool
|
|
165
166
|
attr_accessor security_groups: ::Array[::String]
|
|
167
|
+
attr_accessor storage_size: ::Integer
|
|
166
168
|
attr_accessor storage_type: ("EBS" | "EFS")
|
|
167
169
|
attr_accessor subnet_ids: ::Array[::String]
|
|
168
170
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
@@ -358,8 +360,10 @@ module Aws::MQ
|
|
|
358
360
|
attr_accessor pending_host_instance_type: ::String
|
|
359
361
|
attr_accessor pending_ldap_server_metadata: Types::LdapServerMetadataOutput
|
|
360
362
|
attr_accessor pending_security_groups: ::Array[::String]
|
|
363
|
+
attr_accessor pending_storage_size: ::Integer
|
|
361
364
|
attr_accessor publicly_accessible: bool
|
|
362
365
|
attr_accessor security_groups: ::Array[::String]
|
|
366
|
+
attr_accessor storage_size: ::Integer
|
|
363
367
|
attr_accessor storage_type: ("EBS" | "EFS")
|
|
364
368
|
attr_accessor subnet_ids: ::Array[::String]
|
|
365
369
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
@@ -396,8 +400,10 @@ module Aws::MQ
|
|
|
396
400
|
attr_accessor pending_host_instance_type: ::String
|
|
397
401
|
attr_accessor pending_ldap_server_metadata: Types::LdapServerMetadataOutput
|
|
398
402
|
attr_accessor pending_security_groups: ::Array[::String]
|
|
403
|
+
attr_accessor pending_storage_size: ::Integer
|
|
399
404
|
attr_accessor publicly_accessible: bool
|
|
400
405
|
attr_accessor security_groups: ::Array[::String]
|
|
406
|
+
attr_accessor storage_size: ::Integer
|
|
401
407
|
attr_accessor storage_type: ("EBS" | "EFS")
|
|
402
408
|
attr_accessor subnet_ids: ::Array[::String]
|
|
403
409
|
attr_accessor tags: ::Hash[::String, ::String]
|
|
@@ -761,6 +767,7 @@ module Aws::MQ
|
|
|
761
767
|
attr_accessor maintenance_window_start_time: Types::WeeklyStartTime
|
|
762
768
|
attr_accessor resource_share_arns: ::Array[::String]
|
|
763
769
|
attr_accessor security_groups: ::Array[::String]
|
|
770
|
+
attr_accessor storage_size: ::Integer
|
|
764
771
|
SENSITIVE: []
|
|
765
772
|
end
|
|
766
773
|
|
|
@@ -780,6 +787,7 @@ module Aws::MQ
|
|
|
780
787
|
attr_accessor pending_data_replication_mode: ("NONE" | "CRDR")
|
|
781
788
|
attr_accessor resource_share_arns: ::Array[::String]
|
|
782
789
|
attr_accessor security_groups: ::Array[::String]
|
|
790
|
+
attr_accessor storage_size: ::Integer
|
|
783
791
|
SENSITIVE: []
|
|
784
792
|
end
|
|
785
793
|
|
|
@@ -795,6 +803,7 @@ module Aws::MQ
|
|
|
795
803
|
attr_accessor maintenance_window_start_time: Types::WeeklyStartTime
|
|
796
804
|
attr_accessor resource_share_arns: ::Array[::String]
|
|
797
805
|
attr_accessor security_groups: ::Array[::String]
|
|
806
|
+
attr_accessor storage_size: ::Integer
|
|
798
807
|
attr_accessor data_replication_mode: ("NONE" | "CRDR")
|
|
799
808
|
SENSITIVE: []
|
|
800
809
|
end
|
|
@@ -815,6 +824,7 @@ module Aws::MQ
|
|
|
815
824
|
attr_accessor data_replication_mode: ("NONE" | "CRDR")
|
|
816
825
|
attr_accessor pending_data_replication_metadata: Types::DataReplicationMetadataOutput
|
|
817
826
|
attr_accessor pending_data_replication_mode: ("NONE" | "CRDR")
|
|
827
|
+
attr_accessor storage_size: ::Integer
|
|
818
828
|
SENSITIVE: []
|
|
819
829
|
end
|
|
820
830
|
|