aws-sdk-mq 1.4.0 → 1.5.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 +13 -1
- data/lib/aws-sdk-mq/client_api.rb +11 -0
- data/lib/aws-sdk-mq/types.rb +62 -7
- 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: 9910e418036b7805567f2352a1cf01073e046996
|
4
|
+
data.tar.gz: b204516ae43a4533664c95f8d6d08ac9a25a8223
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 84311d75c019c69d3cc68af85328ff2e6895c177b091268c720c935d7995bdb10a35bf60aaa275768db55a11cf9c97e2b2d9d2126d4ce86a207e68e41369e688
|
7
|
+
data.tar.gz: 487902eed3f25d21d816754f5e3c34efddbdf651a493dcc941ffa37312104d4f3d1f064957183b10b7a52475dfc4284aba0ead5ac5e5fc32b585aa7b964cc8dc
|
data/lib/aws-sdk-mq.rb
CHANGED
data/lib/aws-sdk-mq/client.rb
CHANGED
@@ -422,6 +422,7 @@ module Aws::MQ
|
|
422
422
|
# * {Types::DescribeBrokerResponse#host_instance_type #host_instance_type} => String
|
423
423
|
# * {Types::DescribeBrokerResponse#logs #logs} => Types::LogsSummary
|
424
424
|
# * {Types::DescribeBrokerResponse#maintenance_window_start_time #maintenance_window_start_time} => Types::WeeklyStartTime
|
425
|
+
# * {Types::DescribeBrokerResponse#pending_engine_version #pending_engine_version} => String
|
425
426
|
# * {Types::DescribeBrokerResponse#publicly_accessible #publicly_accessible} => Boolean
|
426
427
|
# * {Types::DescribeBrokerResponse#security_groups #security_groups} => Array<String>
|
427
428
|
# * {Types::DescribeBrokerResponse#subnet_ids #subnet_ids} => Array<String>
|
@@ -466,6 +467,7 @@ module Aws::MQ
|
|
466
467
|
# resp.maintenance_window_start_time.day_of_week #=> String, one of "MONDAY", "TUESDAY", "WEDNESDAY", "THURSDAY", "FRIDAY", "SATURDAY", "SUNDAY"
|
467
468
|
# resp.maintenance_window_start_time.time_of_day #=> String
|
468
469
|
# resp.maintenance_window_start_time.time_zone #=> String
|
470
|
+
# resp.pending_engine_version #=> String
|
469
471
|
# resp.publicly_accessible #=> Boolean
|
470
472
|
# resp.security_groups #=> Array
|
471
473
|
# resp.security_groups[0] #=> String
|
@@ -795,29 +797,37 @@ module Aws::MQ
|
|
795
797
|
|
796
798
|
# Adds a pending configuration change to a broker.
|
797
799
|
#
|
800
|
+
# @option params [Boolean] :auto_minor_version_upgrade
|
801
|
+
#
|
798
802
|
# @option params [required, String] :broker_id
|
799
803
|
#
|
800
804
|
# @option params [Types::ConfigurationId] :configuration
|
801
805
|
# A list of information about the configuration.
|
802
806
|
#
|
807
|
+
# @option params [String] :engine_version
|
808
|
+
#
|
803
809
|
# @option params [Types::Logs] :logs
|
804
810
|
# The list of information about logs to be enabled for the specified
|
805
811
|
# broker.
|
806
812
|
#
|
807
813
|
# @return [Types::UpdateBrokerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
808
814
|
#
|
815
|
+
# * {Types::UpdateBrokerResponse#auto_minor_version_upgrade #auto_minor_version_upgrade} => Boolean
|
809
816
|
# * {Types::UpdateBrokerResponse#broker_id #broker_id} => String
|
810
817
|
# * {Types::UpdateBrokerResponse#configuration #configuration} => Types::ConfigurationId
|
818
|
+
# * {Types::UpdateBrokerResponse#engine_version #engine_version} => String
|
811
819
|
# * {Types::UpdateBrokerResponse#logs #logs} => Types::Logs
|
812
820
|
#
|
813
821
|
# @example Request syntax with placeholder values
|
814
822
|
#
|
815
823
|
# resp = client.update_broker({
|
824
|
+
# auto_minor_version_upgrade: false,
|
816
825
|
# broker_id: "__string", # required
|
817
826
|
# configuration: {
|
818
827
|
# id: "__string",
|
819
828
|
# revision: 1,
|
820
829
|
# },
|
830
|
+
# engine_version: "__string",
|
821
831
|
# logs: {
|
822
832
|
# audit: false,
|
823
833
|
# general: false,
|
@@ -826,9 +836,11 @@ module Aws::MQ
|
|
826
836
|
#
|
827
837
|
# @example Response structure
|
828
838
|
#
|
839
|
+
# resp.auto_minor_version_upgrade #=> Boolean
|
829
840
|
# resp.broker_id #=> String
|
830
841
|
# resp.configuration.id #=> String
|
831
842
|
# resp.configuration.revision #=> Integer
|
843
|
+
# resp.engine_version #=> String
|
832
844
|
# resp.logs.audit #=> Boolean
|
833
845
|
# resp.logs.general #=> Boolean
|
834
846
|
#
|
@@ -935,7 +947,7 @@ module Aws::MQ
|
|
935
947
|
params: params,
|
936
948
|
config: config)
|
937
949
|
context[:gem_name] = 'aws-sdk-mq'
|
938
|
-
context[:gem_version] = '1.
|
950
|
+
context[:gem_version] = '1.5.0'
|
939
951
|
Seahorse::Client::Request.new(handlers, context)
|
940
952
|
end
|
941
953
|
|
@@ -254,6 +254,7 @@ module Aws::MQ
|
|
254
254
|
DescribeBrokerOutput.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
|
255
255
|
DescribeBrokerOutput.add_member(:logs, Shapes::ShapeRef.new(shape: LogsSummary, location_name: "logs"))
|
256
256
|
DescribeBrokerOutput.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
|
257
|
+
DescribeBrokerOutput.add_member(:pending_engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "pendingEngineVersion"))
|
257
258
|
DescribeBrokerOutput.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, location_name: "publiclyAccessible"))
|
258
259
|
DescribeBrokerOutput.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
259
260
|
DescribeBrokerOutput.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "subnetIds"))
|
@@ -277,6 +278,7 @@ module Aws::MQ
|
|
277
278
|
DescribeBrokerResponse.add_member(:host_instance_type, Shapes::ShapeRef.new(shape: __string, location_name: "hostInstanceType"))
|
278
279
|
DescribeBrokerResponse.add_member(:logs, Shapes::ShapeRef.new(shape: LogsSummary, location_name: "logs"))
|
279
280
|
DescribeBrokerResponse.add_member(:maintenance_window_start_time, Shapes::ShapeRef.new(shape: WeeklyStartTime, location_name: "maintenanceWindowStartTime"))
|
281
|
+
DescribeBrokerResponse.add_member(:pending_engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "pendingEngineVersion"))
|
280
282
|
DescribeBrokerResponse.add_member(:publicly_accessible, Shapes::ShapeRef.new(shape: __boolean, location_name: "publiclyAccessible"))
|
281
283
|
DescribeBrokerResponse.add_member(:security_groups, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "securityGroups"))
|
282
284
|
DescribeBrokerResponse.add_member(:subnet_ids, Shapes::ShapeRef.new(shape: __listOf__string, location_name: "subnetIds"))
|
@@ -419,22 +421,30 @@ module Aws::MQ
|
|
419
421
|
SanitizationWarning.add_member(:reason, Shapes::ShapeRef.new(shape: SanitizationWarningReason, location_name: "reason"))
|
420
422
|
SanitizationWarning.struct_class = Types::SanitizationWarning
|
421
423
|
|
424
|
+
UpdateBrokerInput.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, location_name: "autoMinorVersionUpgrade"))
|
422
425
|
UpdateBrokerInput.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "configuration"))
|
426
|
+
UpdateBrokerInput.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
423
427
|
UpdateBrokerInput.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
|
424
428
|
UpdateBrokerInput.struct_class = Types::UpdateBrokerInput
|
425
429
|
|
430
|
+
UpdateBrokerOutput.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, location_name: "autoMinorVersionUpgrade"))
|
426
431
|
UpdateBrokerOutput.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
|
427
432
|
UpdateBrokerOutput.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "configuration"))
|
433
|
+
UpdateBrokerOutput.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
428
434
|
UpdateBrokerOutput.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
|
429
435
|
UpdateBrokerOutput.struct_class = Types::UpdateBrokerOutput
|
430
436
|
|
437
|
+
UpdateBrokerRequest.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, location_name: "autoMinorVersionUpgrade"))
|
431
438
|
UpdateBrokerRequest.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "broker-id"))
|
432
439
|
UpdateBrokerRequest.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "configuration"))
|
440
|
+
UpdateBrokerRequest.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
433
441
|
UpdateBrokerRequest.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
|
434
442
|
UpdateBrokerRequest.struct_class = Types::UpdateBrokerRequest
|
435
443
|
|
444
|
+
UpdateBrokerResponse.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, location_name: "autoMinorVersionUpgrade"))
|
436
445
|
UpdateBrokerResponse.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
|
437
446
|
UpdateBrokerResponse.add_member(:configuration, Shapes::ShapeRef.new(shape: ConfigurationId, location_name: "configuration"))
|
447
|
+
UpdateBrokerResponse.add_member(:engine_version, Shapes::ShapeRef.new(shape: __string, location_name: "engineVersion"))
|
438
448
|
UpdateBrokerResponse.add_member(:logs, Shapes::ShapeRef.new(shape: Logs, location_name: "logs"))
|
439
449
|
UpdateBrokerResponse.struct_class = Types::UpdateBrokerResponse
|
440
450
|
|
@@ -710,6 +720,7 @@ module Aws::MQ
|
|
710
720
|
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
711
721
|
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
712
722
|
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
723
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
713
724
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
714
725
|
end)
|
715
726
|
|
data/lib/aws-sdk-mq/types.rb
CHANGED
@@ -19,7 +19,8 @@ module Aws::MQ
|
|
19
19
|
# @return [Array<String>]
|
20
20
|
#
|
21
21
|
# @!attribute [rw] ip_address
|
22
|
-
# The IP address of the ENI attached to
|
22
|
+
# The IP address of the Elastic Network Interface (ENI) attached to
|
23
|
+
# the broker.
|
23
24
|
# @return [String]
|
24
25
|
#
|
25
26
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/BrokerInstance AWS API Documentation
|
@@ -239,7 +240,7 @@ module Aws::MQ
|
|
239
240
|
#
|
240
241
|
# @!attribute [rw] engine_version
|
241
242
|
# Required. The version of the broker engine. Note: Currently, Amazon
|
242
|
-
# MQ supports only 5.15.0.
|
243
|
+
# MQ supports only 5.15.6 and 5.15.0.
|
243
244
|
# @return [String]
|
244
245
|
#
|
245
246
|
# @!attribute [rw] host_instance_type
|
@@ -451,7 +452,7 @@ module Aws::MQ
|
|
451
452
|
#
|
452
453
|
# @!attribute [rw] engine_version
|
453
454
|
# Required. The version of the broker engine. Note: Currently, Amazon
|
454
|
-
# MQ supports only 5.15.0.
|
455
|
+
# MQ supports only 5.15.6 and 5.15.0.
|
455
456
|
# @return [String]
|
456
457
|
#
|
457
458
|
# @!attribute [rw] name
|
@@ -698,7 +699,7 @@ module Aws::MQ
|
|
698
699
|
class DeleteUserResponse < Aws::EmptyStructure; end
|
699
700
|
|
700
701
|
# The version of the broker engine. Note: Currently, Amazon MQ supports
|
701
|
-
# only 5.15.0.
|
702
|
+
# only 5.15.6 and 5.15.0.
|
702
703
|
#
|
703
704
|
# @!attribute [rw] auto_minor_version_upgrade
|
704
705
|
# Required. Enables automatic upgrades to new minor versions for
|
@@ -749,7 +750,7 @@ module Aws::MQ
|
|
749
750
|
#
|
750
751
|
# @!attribute [rw] engine_version
|
751
752
|
# The version of the broker engine. Note: Currently, Amazon MQ
|
752
|
-
# supports only 5.15.0.
|
753
|
+
# supports only 5.15.6 and 5.15.0.
|
753
754
|
# @return [String]
|
754
755
|
#
|
755
756
|
# @!attribute [rw] host_instance_type
|
@@ -765,6 +766,10 @@ module Aws::MQ
|
|
765
766
|
# The parameters that determine the WeeklyStartTime.
|
766
767
|
# @return [Types::WeeklyStartTime]
|
767
768
|
#
|
769
|
+
# @!attribute [rw] pending_engine_version
|
770
|
+
# The version of the broker engine to upgrade to.
|
771
|
+
# @return [String]
|
772
|
+
#
|
768
773
|
# @!attribute [rw] publicly_accessible
|
769
774
|
# Required. Enables connections from applications outside of the VPC
|
770
775
|
# that hosts the broker's subnets.
|
@@ -804,6 +809,7 @@ module Aws::MQ
|
|
804
809
|
:host_instance_type,
|
805
810
|
:logs,
|
806
811
|
:maintenance_window_start_time,
|
812
|
+
:pending_engine_version,
|
807
813
|
:publicly_accessible,
|
808
814
|
:security_groups,
|
809
815
|
:subnet_ids,
|
@@ -879,6 +885,9 @@ module Aws::MQ
|
|
879
885
|
# begins to apply pending updates or patches to the broker.
|
880
886
|
# @return [Types::WeeklyStartTime]
|
881
887
|
#
|
888
|
+
# @!attribute [rw] pending_engine_version
|
889
|
+
# @return [String]
|
890
|
+
#
|
882
891
|
# @!attribute [rw] publicly_accessible
|
883
892
|
# @return [Boolean]
|
884
893
|
#
|
@@ -908,6 +917,7 @@ module Aws::MQ
|
|
908
917
|
:host_instance_type,
|
909
918
|
:logs,
|
910
919
|
:maintenance_window_start_time,
|
920
|
+
:pending_engine_version,
|
911
921
|
:publicly_accessible,
|
912
922
|
:security_groups,
|
913
923
|
:subnet_ids,
|
@@ -1472,7 +1482,8 @@ module Aws::MQ
|
|
1472
1482
|
# @return [Boolean]
|
1473
1483
|
#
|
1474
1484
|
# @!attribute [rw] audit_log_group
|
1475
|
-
#
|
1485
|
+
# The location of the CloudWatch Logs log group where audit logs are
|
1486
|
+
# sent.
|
1476
1487
|
# @return [String]
|
1477
1488
|
#
|
1478
1489
|
# @!attribute [rw] general
|
@@ -1480,7 +1491,8 @@ module Aws::MQ
|
|
1480
1491
|
# @return [Boolean]
|
1481
1492
|
#
|
1482
1493
|
# @!attribute [rw] general_log_group
|
1483
|
-
#
|
1494
|
+
# The location of the CloudWatch Logs log group where general logs are
|
1495
|
+
# sent.
|
1484
1496
|
# @return [String]
|
1485
1497
|
#
|
1486
1498
|
# @!attribute [rw] pending
|
@@ -1567,10 +1579,22 @@ module Aws::MQ
|
|
1567
1579
|
|
1568
1580
|
# Updates the broker using the specified properties.
|
1569
1581
|
#
|
1582
|
+
# @!attribute [rw] auto_minor_version_upgrade
|
1583
|
+
# Enables automatic upgrades to new minor versions for brokers, as
|
1584
|
+
# Apache releases the versions. The automatic upgrades occur during
|
1585
|
+
# the maintenance window of the broker or after a manual broker
|
1586
|
+
# reboot.
|
1587
|
+
# @return [Boolean]
|
1588
|
+
#
|
1570
1589
|
# @!attribute [rw] configuration
|
1571
1590
|
# A list of information about the configuration.
|
1572
1591
|
# @return [Types::ConfigurationId]
|
1573
1592
|
#
|
1593
|
+
# @!attribute [rw] engine_version
|
1594
|
+
# The version of the broker engine. Note: Currently, Amazon MQ
|
1595
|
+
# supports only 5.15.6 and 5.15.0.
|
1596
|
+
# @return [String]
|
1597
|
+
#
|
1574
1598
|
# @!attribute [rw] logs
|
1575
1599
|
# Enables Amazon CloudWatch logging for brokers.
|
1576
1600
|
# @return [Types::Logs]
|
@@ -1578,13 +1602,20 @@ module Aws::MQ
|
|
1578
1602
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/UpdateBrokerInput AWS API Documentation
|
1579
1603
|
#
|
1580
1604
|
class UpdateBrokerInput < Struct.new(
|
1605
|
+
:auto_minor_version_upgrade,
|
1581
1606
|
:configuration,
|
1607
|
+
:engine_version,
|
1582
1608
|
:logs)
|
1583
1609
|
include Aws::Structure
|
1584
1610
|
end
|
1585
1611
|
|
1586
1612
|
# Returns information about the updated broker.
|
1587
1613
|
#
|
1614
|
+
# @!attribute [rw] auto_minor_version_upgrade
|
1615
|
+
# The new value of automatic upgrades to new minor version for
|
1616
|
+
# brokers.
|
1617
|
+
# @return [Boolean]
|
1618
|
+
#
|
1588
1619
|
# @!attribute [rw] broker_id
|
1589
1620
|
# Required. The unique ID that Amazon MQ generates for the broker.
|
1590
1621
|
# @return [String]
|
@@ -1593,6 +1624,10 @@ module Aws::MQ
|
|
1593
1624
|
# The ID of the updated configuration.
|
1594
1625
|
# @return [Types::ConfigurationId]
|
1595
1626
|
#
|
1627
|
+
# @!attribute [rw] engine_version
|
1628
|
+
# The version of the broker engine to upgrade to.
|
1629
|
+
# @return [String]
|
1630
|
+
#
|
1596
1631
|
# @!attribute [rw] logs
|
1597
1632
|
# The list of information about logs to be enabled for the specified
|
1598
1633
|
# broker.
|
@@ -1601,8 +1636,10 @@ module Aws::MQ
|
|
1601
1636
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/UpdateBrokerOutput AWS API Documentation
|
1602
1637
|
#
|
1603
1638
|
class UpdateBrokerOutput < Struct.new(
|
1639
|
+
:auto_minor_version_upgrade,
|
1604
1640
|
:broker_id,
|
1605
1641
|
:configuration,
|
1642
|
+
:engine_version,
|
1606
1643
|
:logs)
|
1607
1644
|
include Aws::Structure
|
1608
1645
|
end
|
@@ -1611,17 +1648,22 @@ module Aws::MQ
|
|
1611
1648
|
# data as a hash:
|
1612
1649
|
#
|
1613
1650
|
# {
|
1651
|
+
# auto_minor_version_upgrade: false,
|
1614
1652
|
# broker_id: "__string", # required
|
1615
1653
|
# configuration: {
|
1616
1654
|
# id: "__string",
|
1617
1655
|
# revision: 1,
|
1618
1656
|
# },
|
1657
|
+
# engine_version: "__string",
|
1619
1658
|
# logs: {
|
1620
1659
|
# audit: false,
|
1621
1660
|
# general: false,
|
1622
1661
|
# },
|
1623
1662
|
# }
|
1624
1663
|
#
|
1664
|
+
# @!attribute [rw] auto_minor_version_upgrade
|
1665
|
+
# @return [Boolean]
|
1666
|
+
#
|
1625
1667
|
# @!attribute [rw] broker_id
|
1626
1668
|
# @return [String]
|
1627
1669
|
#
|
@@ -1629,6 +1671,9 @@ module Aws::MQ
|
|
1629
1671
|
# A list of information about the configuration.
|
1630
1672
|
# @return [Types::ConfigurationId]
|
1631
1673
|
#
|
1674
|
+
# @!attribute [rw] engine_version
|
1675
|
+
# @return [String]
|
1676
|
+
#
|
1632
1677
|
# @!attribute [rw] logs
|
1633
1678
|
# The list of information about logs to be enabled for the specified
|
1634
1679
|
# broker.
|
@@ -1637,12 +1682,17 @@ module Aws::MQ
|
|
1637
1682
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/UpdateBrokerRequest AWS API Documentation
|
1638
1683
|
#
|
1639
1684
|
class UpdateBrokerRequest < Struct.new(
|
1685
|
+
:auto_minor_version_upgrade,
|
1640
1686
|
:broker_id,
|
1641
1687
|
:configuration,
|
1688
|
+
:engine_version,
|
1642
1689
|
:logs)
|
1643
1690
|
include Aws::Structure
|
1644
1691
|
end
|
1645
1692
|
|
1693
|
+
# @!attribute [rw] auto_minor_version_upgrade
|
1694
|
+
# @return [Boolean]
|
1695
|
+
#
|
1646
1696
|
# @!attribute [rw] broker_id
|
1647
1697
|
# @return [String]
|
1648
1698
|
#
|
@@ -1650,6 +1700,9 @@ module Aws::MQ
|
|
1650
1700
|
# A list of information about the configuration.
|
1651
1701
|
# @return [Types::ConfigurationId]
|
1652
1702
|
#
|
1703
|
+
# @!attribute [rw] engine_version
|
1704
|
+
# @return [String]
|
1705
|
+
#
|
1653
1706
|
# @!attribute [rw] logs
|
1654
1707
|
# The list of information about logs to be enabled for the specified
|
1655
1708
|
# broker.
|
@@ -1658,8 +1711,10 @@ module Aws::MQ
|
|
1658
1711
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/UpdateBrokerResponse AWS API Documentation
|
1659
1712
|
#
|
1660
1713
|
class UpdateBrokerResponse < Struct.new(
|
1714
|
+
:auto_minor_version_upgrade,
|
1661
1715
|
:broker_id,
|
1662
1716
|
:configuration,
|
1717
|
+
:engine_version,
|
1663
1718
|
:logs)
|
1664
1719
|
include Aws::Structure
|
1665
1720
|
end
|
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.5.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: 2018-09-
|
11
|
+
date: 2018-09-27 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|