aws-sdk-mq 1.44.0 → 1.47.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 +15 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-mq/client.rb +11 -3
- data/lib/aws-sdk-mq/client_api.rb +10 -0
- data/lib/aws-sdk-mq/types.rb +39 -0
- data/lib/aws-sdk-mq.rb +1 -1
- 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: dcdaf49a564975cd713aab7bffaf3120cd2d3109a5e3bdd9c1b752e0fae8d60b
|
4
|
+
data.tar.gz: c81aab18b61da7ba0283a56fc63b3c7366044da7b78554003d570444e394207e
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d25cb24c0d06ada44b3d69efea8cda7fa47f1ff72f5889b1b0f37e0a0569167a4ce3d5ef5ba79432dcd7d810fa141a1ae3b3f93806e20ae13de566f176f7f692
|
7
|
+
data.tar.gz: 23386284b8b2cfa56823ece50bc85ffe519e908bd64afa63b5a8c6862e3e0186e083d9244ad5210c22acbc985d315ceb6f3446b6c7cd2d62834210896ccdb059
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,21 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.47.0 (2022-04-25)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - This release adds the CRITICAL_ACTION_REQUIRED broker state and the ActionRequired API property. CRITICAL_ACTION_REQUIRED informs you when your broker is degraded. ActionRequired provides you with a code which you can use to find instructions in the Developer Guide on how to resolve the issue.
|
8
|
+
|
9
|
+
1.46.0 (2022-02-24)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
14
|
+
1.45.0 (2022-02-03)
|
15
|
+
------------------
|
16
|
+
|
17
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
18
|
+
|
4
19
|
1.44.0 (2021-12-21)
|
5
20
|
------------------
|
6
21
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.47.0
|
data/lib/aws-sdk-mq/client.rb
CHANGED
@@ -27,7 +27,9 @@ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
|
|
27
27
|
require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
|
28
28
|
require 'aws-sdk-core/plugins/transfer_encoding.rb'
|
29
29
|
require 'aws-sdk-core/plugins/http_checksum.rb'
|
30
|
+
require 'aws-sdk-core/plugins/checksum_algorithm.rb'
|
30
31
|
require 'aws-sdk-core/plugins/defaults_mode.rb'
|
32
|
+
require 'aws-sdk-core/plugins/recursion_detection.rb'
|
31
33
|
require 'aws-sdk-core/plugins/signature_v4.rb'
|
32
34
|
require 'aws-sdk-core/plugins/protocols/rest_json.rb'
|
33
35
|
|
@@ -74,7 +76,9 @@ module Aws::MQ
|
|
74
76
|
add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
|
75
77
|
add_plugin(Aws::Plugins::TransferEncoding)
|
76
78
|
add_plugin(Aws::Plugins::HttpChecksum)
|
79
|
+
add_plugin(Aws::Plugins::ChecksumAlgorithm)
|
77
80
|
add_plugin(Aws::Plugins::DefaultsMode)
|
81
|
+
add_plugin(Aws::Plugins::RecursionDetection)
|
78
82
|
add_plugin(Aws::Plugins::SignatureV4)
|
79
83
|
add_plugin(Aws::Plugins::Protocols::RestJson)
|
80
84
|
|
@@ -727,6 +731,7 @@ module Aws::MQ
|
|
727
731
|
#
|
728
732
|
# @return [Types::DescribeBrokerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
729
733
|
#
|
734
|
+
# * {Types::DescribeBrokerResponse#actions_required #actions_required} => Array<Types::ActionRequired>
|
730
735
|
# * {Types::DescribeBrokerResponse#authentication_strategy #authentication_strategy} => String
|
731
736
|
# * {Types::DescribeBrokerResponse#auto_minor_version_upgrade #auto_minor_version_upgrade} => Boolean
|
732
737
|
# * {Types::DescribeBrokerResponse#broker_arn #broker_arn} => String
|
@@ -764,6 +769,9 @@ module Aws::MQ
|
|
764
769
|
#
|
765
770
|
# @example Response structure
|
766
771
|
#
|
772
|
+
# resp.actions_required #=> Array
|
773
|
+
# resp.actions_required[0].action_required_code #=> String
|
774
|
+
# resp.actions_required[0].action_required_info #=> String
|
767
775
|
# resp.authentication_strategy #=> String, one of "SIMPLE", "LDAP"
|
768
776
|
# resp.auto_minor_version_upgrade #=> Boolean
|
769
777
|
# resp.broker_arn #=> String
|
@@ -774,7 +782,7 @@ module Aws::MQ
|
|
774
782
|
# resp.broker_instances[0].endpoints[0] #=> String
|
775
783
|
# resp.broker_instances[0].ip_address #=> String
|
776
784
|
# resp.broker_name #=> String
|
777
|
-
# resp.broker_state #=> String, one of "CREATION_IN_PROGRESS", "CREATION_FAILED", "DELETION_IN_PROGRESS", "RUNNING", "REBOOT_IN_PROGRESS"
|
785
|
+
# resp.broker_state #=> String, one of "CREATION_IN_PROGRESS", "CREATION_FAILED", "DELETION_IN_PROGRESS", "RUNNING", "REBOOT_IN_PROGRESS", "CRITICAL_ACTION_REQUIRED"
|
778
786
|
# resp.configurations.current.id #=> String
|
779
787
|
# resp.configurations.current.revision #=> Integer
|
780
788
|
# resp.configurations.history #=> Array
|
@@ -1091,7 +1099,7 @@ module Aws::MQ
|
|
1091
1099
|
# resp.broker_summaries[0].broker_arn #=> String
|
1092
1100
|
# resp.broker_summaries[0].broker_id #=> String
|
1093
1101
|
# resp.broker_summaries[0].broker_name #=> String
|
1094
|
-
# resp.broker_summaries[0].broker_state #=> String, one of "CREATION_IN_PROGRESS", "CREATION_FAILED", "DELETION_IN_PROGRESS", "RUNNING", "REBOOT_IN_PROGRESS"
|
1102
|
+
# resp.broker_summaries[0].broker_state #=> String, one of "CREATION_IN_PROGRESS", "CREATION_FAILED", "DELETION_IN_PROGRESS", "RUNNING", "REBOOT_IN_PROGRESS", "CRITICAL_ACTION_REQUIRED"
|
1095
1103
|
# resp.broker_summaries[0].created #=> Time
|
1096
1104
|
# resp.broker_summaries[0].deployment_mode #=> String, one of "SINGLE_INSTANCE", "ACTIVE_STANDBY_MULTI_AZ", "CLUSTER_MULTI_AZ"
|
1097
1105
|
# resp.broker_summaries[0].engine_type #=> String, one of "ACTIVEMQ", "RABBITMQ"
|
@@ -1502,7 +1510,7 @@ module Aws::MQ
|
|
1502
1510
|
params: params,
|
1503
1511
|
config: config)
|
1504
1512
|
context[:gem_name] = 'aws-sdk-mq'
|
1505
|
-
context[:gem_version] = '1.
|
1513
|
+
context[:gem_version] = '1.47.0'
|
1506
1514
|
Seahorse::Client::Request.new(handlers, context)
|
1507
1515
|
end
|
1508
1516
|
|
@@ -13,6 +13,7 @@ module Aws::MQ
|
|
13
13
|
|
14
14
|
include Seahorse::Model
|
15
15
|
|
16
|
+
ActionRequired = Shapes::StructureShape.new(name: 'ActionRequired')
|
16
17
|
AuthenticationStrategy = Shapes::StringShape.new(name: 'AuthenticationStrategy')
|
17
18
|
AvailabilityZone = Shapes::StructureShape.new(name: 'AvailabilityZone')
|
18
19
|
BadRequestException = Shapes::StructureShape.new(name: 'BadRequestException')
|
@@ -117,6 +118,7 @@ module Aws::MQ
|
|
117
118
|
__double = Shapes::FloatShape.new(name: '__double')
|
118
119
|
__integer = Shapes::IntegerShape.new(name: '__integer')
|
119
120
|
__integerMin5Max100 = Shapes::IntegerShape.new(name: '__integerMin5Max100')
|
121
|
+
__listOfActionRequired = Shapes::ListShape.new(name: '__listOfActionRequired')
|
120
122
|
__listOfAvailabilityZone = Shapes::ListShape.new(name: '__listOfAvailabilityZone')
|
121
123
|
__listOfBrokerEngineType = Shapes::ListShape.new(name: '__listOfBrokerEngineType')
|
122
124
|
__listOfBrokerInstance = Shapes::ListShape.new(name: '__listOfBrokerInstance')
|
@@ -137,6 +139,10 @@ module Aws::MQ
|
|
137
139
|
__timestampIso8601 = Shapes::TimestampShape.new(name: '__timestampIso8601', timestampFormat: "iso8601")
|
138
140
|
__timestampUnix = Shapes::TimestampShape.new(name: '__timestampUnix', timestampFormat: "unixTimestamp")
|
139
141
|
|
142
|
+
ActionRequired.add_member(:action_required_code, Shapes::ShapeRef.new(shape: __string, location_name: "actionRequiredCode"))
|
143
|
+
ActionRequired.add_member(:action_required_info, Shapes::ShapeRef.new(shape: __string, location_name: "actionRequiredInfo"))
|
144
|
+
ActionRequired.struct_class = Types::ActionRequired
|
145
|
+
|
140
146
|
AvailabilityZone.add_member(:name, Shapes::ShapeRef.new(shape: __string, location_name: "name"))
|
141
147
|
AvailabilityZone.struct_class = Types::AvailabilityZone
|
142
148
|
|
@@ -350,6 +356,7 @@ module Aws::MQ
|
|
350
356
|
DescribeBrokerInstanceOptionsResponse.add_member(:next_token, Shapes::ShapeRef.new(shape: __string, location_name: "nextToken"))
|
351
357
|
DescribeBrokerInstanceOptionsResponse.struct_class = Types::DescribeBrokerInstanceOptionsResponse
|
352
358
|
|
359
|
+
DescribeBrokerOutput.add_member(:actions_required, Shapes::ShapeRef.new(shape: __listOfActionRequired, location_name: "actionsRequired"))
|
353
360
|
DescribeBrokerOutput.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
354
361
|
DescribeBrokerOutput.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, required: true, location_name: "autoMinorVersionUpgrade"))
|
355
362
|
DescribeBrokerOutput.add_member(:broker_arn, Shapes::ShapeRef.new(shape: __string, location_name: "brokerArn"))
|
@@ -383,6 +390,7 @@ module Aws::MQ
|
|
383
390
|
DescribeBrokerRequest.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "broker-id"))
|
384
391
|
DescribeBrokerRequest.struct_class = Types::DescribeBrokerRequest
|
385
392
|
|
393
|
+
DescribeBrokerResponse.add_member(:actions_required, Shapes::ShapeRef.new(shape: __listOfActionRequired, location_name: "actionsRequired"))
|
386
394
|
DescribeBrokerResponse.add_member(:authentication_strategy, Shapes::ShapeRef.new(shape: AuthenticationStrategy, location_name: "authenticationStrategy"))
|
387
395
|
DescribeBrokerResponse.add_member(:auto_minor_version_upgrade, Shapes::ShapeRef.new(shape: __boolean, location_name: "autoMinorVersionUpgrade"))
|
388
396
|
DescribeBrokerResponse.add_member(:broker_arn, Shapes::ShapeRef.new(shape: __string, location_name: "brokerArn"))
|
@@ -714,6 +722,8 @@ module Aws::MQ
|
|
714
722
|
WeeklyStartTime.add_member(:time_zone, Shapes::ShapeRef.new(shape: __string, location_name: "timeZone"))
|
715
723
|
WeeklyStartTime.struct_class = Types::WeeklyStartTime
|
716
724
|
|
725
|
+
__listOfActionRequired.member = Shapes::ShapeRef.new(shape: ActionRequired)
|
726
|
+
|
717
727
|
__listOfAvailabilityZone.member = Shapes::ShapeRef.new(shape: AvailabilityZone)
|
718
728
|
|
719
729
|
__listOfBrokerEngineType.member = Shapes::ShapeRef.new(shape: BrokerEngineType)
|
data/lib/aws-sdk-mq/types.rb
CHANGED
@@ -10,6 +10,36 @@
|
|
10
10
|
module Aws::MQ
|
11
11
|
module Types
|
12
12
|
|
13
|
+
# The action required to resolve a broker issue when the broker is in a
|
14
|
+
# CRITICAL\_ACTION\_REQUIRED state.
|
15
|
+
#
|
16
|
+
# @!attribute [rw] action_required_code
|
17
|
+
# The code you can use to resolve your broker issue when the broker is
|
18
|
+
# in a CRITICAL\_ACTION\_REQUIRED state. You can find instructions by
|
19
|
+
# choosing the link for your code from the list of action required
|
20
|
+
# codes in [Amazon MQ action required codes][1]. Each code references
|
21
|
+
# a topic with detailed information, instructions, and recommendations
|
22
|
+
# for how to resolve the issue and prevent future occurrences.
|
23
|
+
#
|
24
|
+
#
|
25
|
+
#
|
26
|
+
# [1]: https://docs.aws.amazon.com//latest/developer-guide/troubleshooting-action-required-codes.html
|
27
|
+
# @return [String]
|
28
|
+
#
|
29
|
+
# @!attribute [rw] action_required_info
|
30
|
+
# Information about the action required to resolve your broker issue
|
31
|
+
# when the broker is in a CRITICAL\_ACTION\_REQUIRED state.
|
32
|
+
# @return [String]
|
33
|
+
#
|
34
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/ActionRequired AWS API Documentation
|
35
|
+
#
|
36
|
+
class ActionRequired < Struct.new(
|
37
|
+
:action_required_code,
|
38
|
+
:action_required_info)
|
39
|
+
SENSITIVE = []
|
40
|
+
include Aws::Structure
|
41
|
+
end
|
42
|
+
|
13
43
|
# Name of the availability zone.
|
14
44
|
#
|
15
45
|
# @!attribute [rw] name
|
@@ -1214,6 +1244,10 @@ module Aws::MQ
|
|
1214
1244
|
|
1215
1245
|
# Returns information about the specified broker.
|
1216
1246
|
#
|
1247
|
+
# @!attribute [rw] actions_required
|
1248
|
+
# A list of actions required for a broker.
|
1249
|
+
# @return [Array<Types::ActionRequired>]
|
1250
|
+
#
|
1217
1251
|
# @!attribute [rw] authentication_strategy
|
1218
1252
|
# The authentication strategy used to secure the broker. The default
|
1219
1253
|
# is SIMPLE.
|
@@ -1361,6 +1395,7 @@ module Aws::MQ
|
|
1361
1395
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/DescribeBrokerOutput AWS API Documentation
|
1362
1396
|
#
|
1363
1397
|
class DescribeBrokerOutput < Struct.new(
|
1398
|
+
:actions_required,
|
1364
1399
|
:authentication_strategy,
|
1365
1400
|
:auto_minor_version_upgrade,
|
1366
1401
|
:broker_arn,
|
@@ -1411,6 +1446,9 @@ module Aws::MQ
|
|
1411
1446
|
include Aws::Structure
|
1412
1447
|
end
|
1413
1448
|
|
1449
|
+
# @!attribute [rw] actions_required
|
1450
|
+
# @return [Array<Types::ActionRequired>]
|
1451
|
+
#
|
1414
1452
|
# @!attribute [rw] authentication_strategy
|
1415
1453
|
# Optional. The authentication strategy used to secure the broker. The
|
1416
1454
|
# default is SIMPLE.
|
@@ -1520,6 +1558,7 @@ module Aws::MQ
|
|
1520
1558
|
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/DescribeBrokerResponse AWS API Documentation
|
1521
1559
|
#
|
1522
1560
|
class DescribeBrokerResponse < Struct.new(
|
1561
|
+
:actions_required,
|
1523
1562
|
:authentication_strategy,
|
1524
1563
|
:auto_minor_version_upgrade,
|
1525
1564
|
:broker_arn,
|
data/lib/aws-sdk-mq.rb
CHANGED
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.47.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: 2022-04-25 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.127.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.127.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|