aws-sdk-mq 1.48.0 → 1.49.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +8 -1
- data/VERSION +1 -1
- data/lib/aws-sdk-mq/client.rb +1 -1
- data/lib/aws-sdk-mq/endpoint_provider.rb +35 -95
- data/lib/aws-sdk-mq/types.rb +0 -332
- data/lib/aws-sdk-mq.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: bc0e2f45314f1346150b6f207c0b83306bdfc3a6e78c1fc167d8020277c3280d
|
4
|
+
data.tar.gz: 2a0d1785c7ab849bdb8ae6cc19ebfd4c6bb56a443998aa09481571e09a0fc0ca
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 58485246e8b85534fdacb550d7a58fa146f43b19e68e0bc6593b20eecf22da1f284e6afa015c2ab5fabe96beff8448188b8cb2ea4642d4ad6f92cb7ca41fddf0
|
7
|
+
data.tar.gz: '049eb4dbcb67855a90c914dc032774c1fad71820d93fbb00beddb531bb77d610ad790b7c0be2a82dcff70048c5709a7ef923b8c8291ec79c3a7d26995f2784c9'
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,13 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.49.0 (2023-01-18)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
8
|
+
|
9
|
+
* Issue - Replace runtime endpoint resolution approach with generated ruby code.
|
10
|
+
|
4
11
|
1.48.0 (2022-10-25)
|
5
12
|
------------------
|
6
13
|
|
@@ -250,4 +257,4 @@ Unreleased Changes
|
|
250
257
|
1.0.0 (2017-11-29)
|
251
258
|
------------------
|
252
259
|
|
253
|
-
* Feature - Initial release of `aws-sdk-mq`.
|
260
|
+
* Feature - Initial release of `aws-sdk-mq`.
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.49.0
|
data/lib/aws-sdk-mq/client.rb
CHANGED
@@ -9,103 +9,43 @@
|
|
9
9
|
|
10
10
|
module Aws::MQ
|
11
11
|
class EndpointProvider
|
12
|
-
def
|
13
|
-
|
14
|
-
|
15
|
-
|
16
|
-
|
17
|
-
|
18
|
-
|
19
|
-
|
20
|
-
|
12
|
+
def resolve_endpoint(parameters)
|
13
|
+
region = parameters.region
|
14
|
+
use_dual_stack = parameters.use_dual_stack
|
15
|
+
use_fips = parameters.use_fips
|
16
|
+
endpoint = parameters.endpoint
|
17
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
18
|
+
if Aws::Endpoints::Matchers.set?(endpoint) && (url = Aws::Endpoints::Matchers.parse_url(endpoint))
|
19
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
20
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
21
|
+
end
|
22
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
23
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
24
|
+
end
|
25
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
26
|
+
end
|
27
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
29
|
+
return Aws::Endpoints::Endpoint.new(url: "https://mq-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
30
|
+
end
|
31
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
32
|
+
end
|
33
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
35
|
+
return Aws::Endpoints::Endpoint.new(url: "https://mq-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
36
|
+
end
|
37
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
38
|
+
end
|
39
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
40
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
41
|
+
return Aws::Endpoints::Endpoint.new(url: "https://mq.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
42
|
+
end
|
43
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
44
|
+
end
|
45
|
+
return Aws::Endpoints::Endpoint.new(url: "https://mq.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
21
46
|
end
|
22
|
-
|
23
|
-
end
|
47
|
+
raise ArgumentError, 'No endpoint could be resolved'
|
24
48
|
|
25
|
-
def resolve_endpoint(parameters)
|
26
|
-
@provider.resolve_endpoint(parameters)
|
27
49
|
end
|
28
|
-
|
29
|
-
# @api private
|
30
|
-
RULES = <<-JSON
|
31
|
-
eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
|
32
|
-
bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1bWVu
|
33
|
-
dGF0aW9uIjoiVGhlIEFXUyByZWdpb24gdXNlZCB0byBkaXNwYXRjaCB0aGUg
|
34
|
-
cmVxdWVzdC4iLCJ0eXBlIjoiU3RyaW5nIn0sIlVzZUR1YWxTdGFjayI6eyJi
|
35
|
-
dWlsdEluIjoiQVdTOjpVc2VEdWFsU3RhY2siLCJyZXF1aXJlZCI6dHJ1ZSwi
|
36
|
-
ZGVmYXVsdCI6ZmFsc2UsImRvY3VtZW50YXRpb24iOiJXaGVuIHRydWUsIHVz
|
37
|
-
ZSB0aGUgZHVhbC1zdGFjayBlbmRwb2ludC4gSWYgdGhlIGNvbmZpZ3VyZWQg
|
38
|
-
ZW5kcG9pbnQgZG9lcyBub3Qgc3VwcG9ydCBkdWFsLXN0YWNrLCBkaXNwYXRj
|
39
|
-
aGluZyB0aGUgcmVxdWVzdCBNQVkgcmV0dXJuIGFuIGVycm9yLiIsInR5cGUi
|
40
|
-
OiJCb29sZWFuIn0sIlVzZUZJUFMiOnsiYnVpbHRJbiI6IkFXUzo6VXNlRklQ
|
41
|
-
UyIsInJlcXVpcmVkIjp0cnVlLCJkZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRh
|
42
|
-
dGlvbiI6IldoZW4gdHJ1ZSwgc2VuZCB0aGlzIHJlcXVlc3QgdG8gdGhlIEZJ
|
43
|
-
UFMtY29tcGxpYW50IHJlZ2lvbmFsIGVuZHBvaW50LiBJZiB0aGUgY29uZmln
|
44
|
-
dXJlZCBlbmRwb2ludCBkb2VzIG5vdCBoYXZlIGEgRklQUyBjb21wbGlhbnQg
|
45
|
-
ZW5kcG9pbnQsIGRpc3BhdGNoaW5nIHRoZSByZXF1ZXN0IHdpbGwgcmV0dXJu
|
46
|
-
IGFuIGVycm9yLiIsInR5cGUiOiJCb29sZWFuIn0sIkVuZHBvaW50Ijp7ImJ1
|
47
|
-
aWx0SW4iOiJTREs6OkVuZHBvaW50IiwicmVxdWlyZWQiOmZhbHNlLCJkb2N1
|
48
|
-
bWVudGF0aW9uIjoiT3ZlcnJpZGUgdGhlIGVuZHBvaW50IHVzZWQgdG8gc2Vu
|
49
|
-
ZCB0aGlzIHJlcXVlc3QiLCJ0eXBlIjoiU3RyaW5nIn19LCJydWxlcyI6W3si
|
50
|
-
Y29uZGl0aW9ucyI6W3siZm4iOiJhd3MucGFydGl0aW9uIiwiYXJndiI6W3si
|
51
|
-
cmVmIjoiUmVnaW9uIn1dLCJhc3NpZ24iOiJQYXJ0aXRpb25SZXN1bHQifV0s
|
52
|
-
InR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoi
|
53
|
-
aXNTZXQiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XX0seyJmbiI6InBh
|
54
|
-
cnNlVVJMIiwiYXJndiI6W3sicmVmIjoiRW5kcG9pbnQifV0sImFzc2lnbiI6
|
55
|
-
InVybCJ9XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
|
56
|
-
W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQ
|
57
|
-
UyJ9LHRydWVdfV0sImVycm9yIjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBG
|
58
|
-
SVBTIGFuZCBjdXN0b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0
|
59
|
-
eXBlIjoiZXJyb3IifSx7ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIs
|
60
|
-
InJ1bGVzIjpbeyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMi
|
61
|
-
LCJhcmd2IjpbeyJyZWYiOiJVc2VEdWFsU3RhY2sifSx0cnVlXX1dLCJlcnJv
|
62
|
-
ciI6IkludmFsaWQgQ29uZmlndXJhdGlvbjogRHVhbHN0YWNrIGFuZCBjdXN0
|
63
|
-
b20gZW5kcG9pbnQgYXJlIG5vdCBzdXBwb3J0ZWQiLCJ0eXBlIjoiZXJyb3Ii
|
64
|
-
fSx7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOnsicmVmIjoi
|
65
|
-
RW5kcG9pbnQifSwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
66
|
-
ZSI6ImVuZHBvaW50In1dfV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29s
|
67
|
-
ZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRydWVdfSx7
|
68
|
-
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxT
|
69
|
-
dGFjayJ9LHRydWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRp
|
70
|
-
dGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsi
|
71
|
-
Zm4iOiJnZXRBdHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0
|
72
|
-
In0sInN1cHBvcnRzRklQUyJdfV19LHsiZm4iOiJib29sZWFuRXF1YWxzIiwi
|
73
|
-
YXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQ
|
74
|
-
YXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2siXX1dfV0sInR5
|
75
|
-
cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltdLCJlbmRwb2lu
|
76
|
-
dCI6eyJ1cmwiOiJodHRwczovL21xLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlv
|
77
|
-
blJlc3VsdCNkdWFsU3RhY2tEbnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30s
|
78
|
-
ImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfSx7ImNvbmRpdGlv
|
79
|
-
bnMiOltdLCJlcnJvciI6IkZJUFMgYW5kIER1YWxTdGFjayBhcmUgZW5hYmxl
|
80
|
-
ZCwgYnV0IHRoaXMgcGFydGl0aW9uIGRvZXMgbm90IHN1cHBvcnQgb25lIG9y
|
81
|
-
IGJvdGgiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4i
|
82
|
-
OiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRklQUyJ9LHRy
|
83
|
-
dWVdfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7
|
84
|
-
ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt0cnVlLHsiZm4iOiJnZXRB
|
85
|
-
dHRyIiwiYXJndiI6W3sicmVmIjoiUGFydGl0aW9uUmVzdWx0In0sInN1cHBv
|
86
|
-
cnRzRklQUyJdfV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
|
87
|
-
aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMi
|
88
|
-
OltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL21xLWZpcHMue1JlZ2lv
|
89
|
-
bn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9IiwicHJvcGVydGllcyI6
|
90
|
-
e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBvaW50In1dfV19LHsiY29u
|
91
|
-
ZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBlbmFibGVkIGJ1dCB0aGlz
|
92
|
-
IHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJUFMiLCJ0eXBlIjoiZXJy
|
93
|
-
b3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwi
|
94
|
-
YXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0sdHJ1ZV19XSwidHlwZSI6
|
95
|
-
InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJib29sZWFu
|
96
|
-
RXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6ImdldEF0dHIiLCJhcmd2Ijpb
|
97
|
-
eyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3VwcG9ydHNEdWFsU3RhY2si
|
98
|
-
XX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7ImNvbmRpdGlvbnMiOltd
|
99
|
-
LCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL21xLntSZWdpb259LntQYXJ0
|
100
|
-
aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRpZXMi
|
101
|
-
Ont9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJjb25k
|
102
|
-
aXRpb25zIjpbXSwiZXJyb3IiOiJEdWFsU3RhY2sgaXMgZW5hYmxlZCBidXQg
|
103
|
-
dGhpcyBwYXJ0aXRpb24gZG9lcyBub3Qgc3VwcG9ydCBEdWFsU3RhY2siLCJ0
|
104
|
-
eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7
|
105
|
-
InVybCI6Imh0dHBzOi8vbXEue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNk
|
106
|
-
bnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
|
107
|
-
ZSI6ImVuZHBvaW50In1dfV19
|
108
|
-
|
109
|
-
JSON
|
110
50
|
end
|
111
51
|
end
|
data/lib/aws-sdk-mq/types.rb
CHANGED
@@ -333,14 +333,6 @@ module Aws::MQ
|
|
333
333
|
#
|
334
334
|
# Does not apply to RabbitMQ brokers.
|
335
335
|
#
|
336
|
-
# @note When making an API call, you may pass ConfigurationId
|
337
|
-
# data as a hash:
|
338
|
-
#
|
339
|
-
# {
|
340
|
-
# id: "__string", # required
|
341
|
-
# revision: 1,
|
342
|
-
# }
|
343
|
-
#
|
344
336
|
# @!attribute [rw] id
|
345
337
|
# Required. The unique ID that Amazon MQ generates for the
|
346
338
|
# configuration.
|
@@ -604,65 +596,6 @@ module Aws::MQ
|
|
604
596
|
include Aws::Structure
|
605
597
|
end
|
606
598
|
|
607
|
-
# @note When making an API call, you may pass CreateBrokerRequest
|
608
|
-
# data as a hash:
|
609
|
-
#
|
610
|
-
# {
|
611
|
-
# authentication_strategy: "SIMPLE", # accepts SIMPLE, LDAP
|
612
|
-
# auto_minor_version_upgrade: false, # required
|
613
|
-
# broker_name: "__string", # required
|
614
|
-
# configuration: {
|
615
|
-
# id: "__string", # required
|
616
|
-
# revision: 1,
|
617
|
-
# },
|
618
|
-
# creator_request_id: "__string",
|
619
|
-
# deployment_mode: "SINGLE_INSTANCE", # required, accepts SINGLE_INSTANCE, ACTIVE_STANDBY_MULTI_AZ, CLUSTER_MULTI_AZ
|
620
|
-
# encryption_options: {
|
621
|
-
# kms_key_id: "__string",
|
622
|
-
# use_aws_owned_key: false, # required
|
623
|
-
# },
|
624
|
-
# engine_type: "ACTIVEMQ", # required, accepts ACTIVEMQ, RABBITMQ
|
625
|
-
# engine_version: "__string", # required
|
626
|
-
# host_instance_type: "__string", # required
|
627
|
-
# ldap_server_metadata: {
|
628
|
-
# hosts: ["__string"], # required
|
629
|
-
# role_base: "__string", # required
|
630
|
-
# role_name: "__string",
|
631
|
-
# role_search_matching: "__string", # required
|
632
|
-
# role_search_subtree: false,
|
633
|
-
# service_account_password: "__string", # required
|
634
|
-
# service_account_username: "__string", # required
|
635
|
-
# user_base: "__string", # required
|
636
|
-
# user_role_name: "__string",
|
637
|
-
# user_search_matching: "__string", # required
|
638
|
-
# user_search_subtree: false,
|
639
|
-
# },
|
640
|
-
# logs: {
|
641
|
-
# audit: false,
|
642
|
-
# general: false,
|
643
|
-
# },
|
644
|
-
# maintenance_window_start_time: {
|
645
|
-
# day_of_week: "MONDAY", # required, accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
|
646
|
-
# time_of_day: "__string", # required
|
647
|
-
# time_zone: "__string",
|
648
|
-
# },
|
649
|
-
# publicly_accessible: false, # required
|
650
|
-
# security_groups: ["__string"],
|
651
|
-
# storage_type: "EBS", # accepts EBS, EFS
|
652
|
-
# subnet_ids: ["__string"],
|
653
|
-
# tags: {
|
654
|
-
# "__string" => "__string",
|
655
|
-
# },
|
656
|
-
# users: [ # required
|
657
|
-
# {
|
658
|
-
# console_access: false,
|
659
|
-
# groups: ["__string"],
|
660
|
-
# password: "__string", # required
|
661
|
-
# username: "__string", # required
|
662
|
-
# },
|
663
|
-
# ],
|
664
|
-
# }
|
665
|
-
#
|
666
599
|
# @!attribute [rw] authentication_strategy
|
667
600
|
# Optional. The authentication strategy used to secure the broker. The
|
668
601
|
# default is SIMPLE.
|
@@ -872,19 +805,6 @@ module Aws::MQ
|
|
872
805
|
include Aws::Structure
|
873
806
|
end
|
874
807
|
|
875
|
-
# @note When making an API call, you may pass CreateConfigurationRequest
|
876
|
-
# data as a hash:
|
877
|
-
#
|
878
|
-
# {
|
879
|
-
# authentication_strategy: "SIMPLE", # accepts SIMPLE, LDAP
|
880
|
-
# engine_type: "ACTIVEMQ", # required, accepts ACTIVEMQ, RABBITMQ
|
881
|
-
# engine_version: "__string", # required
|
882
|
-
# name: "__string", # required
|
883
|
-
# tags: {
|
884
|
-
# "__string" => "__string",
|
885
|
-
# },
|
886
|
-
# }
|
887
|
-
#
|
888
808
|
# @!attribute [rw] authentication_strategy
|
889
809
|
# Optional. The authentication strategy used to secure the broker. The
|
890
810
|
# default is SIMPLE.
|
@@ -949,16 +869,6 @@ module Aws::MQ
|
|
949
869
|
include Aws::Structure
|
950
870
|
end
|
951
871
|
|
952
|
-
# @note When making an API call, you may pass CreateTagsRequest
|
953
|
-
# data as a hash:
|
954
|
-
#
|
955
|
-
# {
|
956
|
-
# resource_arn: "__string", # required
|
957
|
-
# tags: {
|
958
|
-
# "__string" => "__string",
|
959
|
-
# },
|
960
|
-
# }
|
961
|
-
#
|
962
872
|
# @!attribute [rw] resource_arn
|
963
873
|
# @return [String]
|
964
874
|
#
|
@@ -1003,17 +913,6 @@ module Aws::MQ
|
|
1003
913
|
include Aws::Structure
|
1004
914
|
end
|
1005
915
|
|
1006
|
-
# @note When making an API call, you may pass CreateUserRequest
|
1007
|
-
# data as a hash:
|
1008
|
-
#
|
1009
|
-
# {
|
1010
|
-
# broker_id: "__string", # required
|
1011
|
-
# console_access: false,
|
1012
|
-
# groups: ["__string"],
|
1013
|
-
# password: "__string", # required
|
1014
|
-
# username: "__string", # required
|
1015
|
-
# }
|
1016
|
-
#
|
1017
916
|
# @!attribute [rw] broker_id
|
1018
917
|
# @return [String]
|
1019
918
|
#
|
@@ -1059,13 +958,6 @@ module Aws::MQ
|
|
1059
958
|
include Aws::Structure
|
1060
959
|
end
|
1061
960
|
|
1062
|
-
# @note When making an API call, you may pass DeleteBrokerRequest
|
1063
|
-
# data as a hash:
|
1064
|
-
#
|
1065
|
-
# {
|
1066
|
-
# broker_id: "__string", # required
|
1067
|
-
# }
|
1068
|
-
#
|
1069
961
|
# @!attribute [rw] broker_id
|
1070
962
|
# @return [String]
|
1071
963
|
#
|
@@ -1088,14 +980,6 @@ module Aws::MQ
|
|
1088
980
|
include Aws::Structure
|
1089
981
|
end
|
1090
982
|
|
1091
|
-
# @note When making an API call, you may pass DeleteTagsRequest
|
1092
|
-
# data as a hash:
|
1093
|
-
#
|
1094
|
-
# {
|
1095
|
-
# resource_arn: "__string", # required
|
1096
|
-
# tag_keys: ["__string"], # required
|
1097
|
-
# }
|
1098
|
-
#
|
1099
983
|
# @!attribute [rw] resource_arn
|
1100
984
|
# @return [String]
|
1101
985
|
#
|
@@ -1111,14 +995,6 @@ module Aws::MQ
|
|
1111
995
|
include Aws::Structure
|
1112
996
|
end
|
1113
997
|
|
1114
|
-
# @note When making an API call, you may pass DeleteUserRequest
|
1115
|
-
# data as a hash:
|
1116
|
-
#
|
1117
|
-
# {
|
1118
|
-
# broker_id: "__string", # required
|
1119
|
-
# username: "__string", # required
|
1120
|
-
# }
|
1121
|
-
#
|
1122
998
|
# @!attribute [rw] broker_id
|
1123
999
|
# @return [String]
|
1124
1000
|
#
|
@@ -1138,15 +1014,6 @@ module Aws::MQ
|
|
1138
1014
|
#
|
1139
1015
|
class DeleteUserResponse < Aws::EmptyStructure; end
|
1140
1016
|
|
1141
|
-
# @note When making an API call, you may pass DescribeBrokerEngineTypesRequest
|
1142
|
-
# data as a hash:
|
1143
|
-
#
|
1144
|
-
# {
|
1145
|
-
# engine_type: "__string",
|
1146
|
-
# max_results: 1,
|
1147
|
-
# next_token: "__string",
|
1148
|
-
# }
|
1149
|
-
#
|
1150
1017
|
# @!attribute [rw] engine_type
|
1151
1018
|
# @return [String]
|
1152
1019
|
#
|
@@ -1185,17 +1052,6 @@ module Aws::MQ
|
|
1185
1052
|
include Aws::Structure
|
1186
1053
|
end
|
1187
1054
|
|
1188
|
-
# @note When making an API call, you may pass DescribeBrokerInstanceOptionsRequest
|
1189
|
-
# data as a hash:
|
1190
|
-
#
|
1191
|
-
# {
|
1192
|
-
# engine_type: "__string",
|
1193
|
-
# host_instance_type: "__string",
|
1194
|
-
# max_results: 1,
|
1195
|
-
# next_token: "__string",
|
1196
|
-
# storage_type: "__string",
|
1197
|
-
# }
|
1198
|
-
#
|
1199
1055
|
# @!attribute [rw] engine_type
|
1200
1056
|
# @return [String]
|
1201
1057
|
#
|
@@ -1428,13 +1284,6 @@ module Aws::MQ
|
|
1428
1284
|
include Aws::Structure
|
1429
1285
|
end
|
1430
1286
|
|
1431
|
-
# @note When making an API call, you may pass DescribeBrokerRequest
|
1432
|
-
# data as a hash:
|
1433
|
-
#
|
1434
|
-
# {
|
1435
|
-
# broker_id: "__string", # required
|
1436
|
-
# }
|
1437
|
-
#
|
1438
1287
|
# @!attribute [rw] broker_id
|
1439
1288
|
# @return [String]
|
1440
1289
|
#
|
@@ -1591,13 +1440,6 @@ module Aws::MQ
|
|
1591
1440
|
include Aws::Structure
|
1592
1441
|
end
|
1593
1442
|
|
1594
|
-
# @note When making an API call, you may pass DescribeConfigurationRequest
|
1595
|
-
# data as a hash:
|
1596
|
-
#
|
1597
|
-
# {
|
1598
|
-
# configuration_id: "__string", # required
|
1599
|
-
# }
|
1600
|
-
#
|
1601
1443
|
# @!attribute [rw] configuration_id
|
1602
1444
|
# @return [String]
|
1603
1445
|
#
|
@@ -1691,14 +1533,6 @@ module Aws::MQ
|
|
1691
1533
|
include Aws::Structure
|
1692
1534
|
end
|
1693
1535
|
|
1694
|
-
# @note When making an API call, you may pass DescribeConfigurationRevisionRequest
|
1695
|
-
# data as a hash:
|
1696
|
-
#
|
1697
|
-
# {
|
1698
|
-
# configuration_id: "__string", # required
|
1699
|
-
# configuration_revision: "__string", # required
|
1700
|
-
# }
|
1701
|
-
#
|
1702
1536
|
# @!attribute [rw] configuration_id
|
1703
1537
|
# @return [String]
|
1704
1538
|
#
|
@@ -1777,14 +1611,6 @@ module Aws::MQ
|
|
1777
1611
|
include Aws::Structure
|
1778
1612
|
end
|
1779
1613
|
|
1780
|
-
# @note When making an API call, you may pass DescribeUserRequest
|
1781
|
-
# data as a hash:
|
1782
|
-
#
|
1783
|
-
# {
|
1784
|
-
# broker_id: "__string", # required
|
1785
|
-
# username: "__string", # required
|
1786
|
-
# }
|
1787
|
-
#
|
1788
1614
|
# @!attribute [rw] broker_id
|
1789
1615
|
# @return [String]
|
1790
1616
|
#
|
@@ -1833,14 +1659,6 @@ module Aws::MQ
|
|
1833
1659
|
#
|
1834
1660
|
# Encryption options for the broker.
|
1835
1661
|
#
|
1836
|
-
# @note When making an API call, you may pass EncryptionOptions
|
1837
|
-
# data as a hash:
|
1838
|
-
#
|
1839
|
-
# {
|
1840
|
-
# kms_key_id: "__string",
|
1841
|
-
# use_aws_owned_key: false, # required
|
1842
|
-
# }
|
1843
|
-
#
|
1844
1662
|
# @!attribute [rw] kms_key_id
|
1845
1663
|
# The customer master key (CMK) to use for the AWS Key Management
|
1846
1664
|
# Service (KMS). This key is used to encrypt your data at rest. If not
|
@@ -1934,23 +1752,6 @@ module Aws::MQ
|
|
1934
1752
|
#
|
1935
1753
|
# Does not apply to RabbitMQ brokers.
|
1936
1754
|
#
|
1937
|
-
# @note When making an API call, you may pass LdapServerMetadataInput
|
1938
|
-
# data as a hash:
|
1939
|
-
#
|
1940
|
-
# {
|
1941
|
-
# hosts: ["__string"], # required
|
1942
|
-
# role_base: "__string", # required
|
1943
|
-
# role_name: "__string",
|
1944
|
-
# role_search_matching: "__string", # required
|
1945
|
-
# role_search_subtree: false,
|
1946
|
-
# service_account_password: "__string", # required
|
1947
|
-
# service_account_username: "__string", # required
|
1948
|
-
# user_base: "__string", # required
|
1949
|
-
# user_role_name: "__string",
|
1950
|
-
# user_search_matching: "__string", # required
|
1951
|
-
# user_search_subtree: false,
|
1952
|
-
# }
|
1953
|
-
#
|
1954
1755
|
# @!attribute [rw] hosts
|
1955
1756
|
# Specifies the location of the LDAP server such as AWS Directory
|
1956
1757
|
# Service for Microsoft Active Directory . Optional failover server.
|
@@ -2149,14 +1950,6 @@ module Aws::MQ
|
|
2149
1950
|
include Aws::Structure
|
2150
1951
|
end
|
2151
1952
|
|
2152
|
-
# @note When making an API call, you may pass ListBrokersRequest
|
2153
|
-
# data as a hash:
|
2154
|
-
#
|
2155
|
-
# {
|
2156
|
-
# max_results: 1,
|
2157
|
-
# next_token: "__string",
|
2158
|
-
# }
|
2159
|
-
#
|
2160
1953
|
# @!attribute [rw] max_results
|
2161
1954
|
# @return [Integer]
|
2162
1955
|
#
|
@@ -2219,15 +2012,6 @@ module Aws::MQ
|
|
2219
2012
|
include Aws::Structure
|
2220
2013
|
end
|
2221
2014
|
|
2222
|
-
# @note When making an API call, you may pass ListConfigurationRevisionsRequest
|
2223
|
-
# data as a hash:
|
2224
|
-
#
|
2225
|
-
# {
|
2226
|
-
# configuration_id: "__string", # required
|
2227
|
-
# max_results: 1,
|
2228
|
-
# next_token: "__string",
|
2229
|
-
# }
|
2230
|
-
#
|
2231
2015
|
# @!attribute [rw] configuration_id
|
2232
2016
|
# @return [String]
|
2233
2017
|
#
|
@@ -2296,14 +2080,6 @@ module Aws::MQ
|
|
2296
2080
|
include Aws::Structure
|
2297
2081
|
end
|
2298
2082
|
|
2299
|
-
# @note When making an API call, you may pass ListConfigurationsRequest
|
2300
|
-
# data as a hash:
|
2301
|
-
#
|
2302
|
-
# {
|
2303
|
-
# max_results: 1,
|
2304
|
-
# next_token: "__string",
|
2305
|
-
# }
|
2306
|
-
#
|
2307
2083
|
# @!attribute [rw] max_results
|
2308
2084
|
# @return [Integer]
|
2309
2085
|
#
|
@@ -2338,13 +2114,6 @@ module Aws::MQ
|
|
2338
2114
|
include Aws::Structure
|
2339
2115
|
end
|
2340
2116
|
|
2341
|
-
# @note When making an API call, you may pass ListTagsRequest
|
2342
|
-
# data as a hash:
|
2343
|
-
#
|
2344
|
-
# {
|
2345
|
-
# resource_arn: "__string", # required
|
2346
|
-
# }
|
2347
|
-
#
|
2348
2117
|
# @!attribute [rw] resource_arn
|
2349
2118
|
# @return [String]
|
2350
2119
|
#
|
@@ -2400,15 +2169,6 @@ module Aws::MQ
|
|
2400
2169
|
include Aws::Structure
|
2401
2170
|
end
|
2402
2171
|
|
2403
|
-
# @note When making an API call, you may pass ListUsersRequest
|
2404
|
-
# data as a hash:
|
2405
|
-
#
|
2406
|
-
# {
|
2407
|
-
# broker_id: "__string", # required
|
2408
|
-
# max_results: 1,
|
2409
|
-
# next_token: "__string",
|
2410
|
-
# }
|
2411
|
-
#
|
2412
2172
|
# @!attribute [rw] broker_id
|
2413
2173
|
# @return [String]
|
2414
2174
|
#
|
@@ -2454,14 +2214,6 @@ module Aws::MQ
|
|
2454
2214
|
# The list of information about logs to be enabled for the specified
|
2455
2215
|
# broker.
|
2456
2216
|
#
|
2457
|
-
# @note When making an API call, you may pass Logs
|
2458
|
-
# data as a hash:
|
2459
|
-
#
|
2460
|
-
# {
|
2461
|
-
# audit: false,
|
2462
|
-
# general: false,
|
2463
|
-
# }
|
2464
|
-
#
|
2465
2217
|
# @!attribute [rw] audit
|
2466
2218
|
# Enables audit logging. Every user management action made using JMX
|
2467
2219
|
# or the ActiveMQ Web Console is logged. Does not apply to RabbitMQ
|
@@ -2558,13 +2310,6 @@ module Aws::MQ
|
|
2558
2310
|
include Aws::Structure
|
2559
2311
|
end
|
2560
2312
|
|
2561
|
-
# @note When making an API call, you may pass RebootBrokerRequest
|
2562
|
-
# data as a hash:
|
2563
|
-
#
|
2564
|
-
# {
|
2565
|
-
# broker_id: "__string", # required
|
2566
|
-
# }
|
2567
|
-
#
|
2568
2313
|
# @!attribute [rw] broker_id
|
2569
2314
|
# @return [String]
|
2570
2315
|
#
|
@@ -2784,44 +2529,6 @@ module Aws::MQ
|
|
2784
2529
|
include Aws::Structure
|
2785
2530
|
end
|
2786
2531
|
|
2787
|
-
# @note When making an API call, you may pass UpdateBrokerRequest
|
2788
|
-
# data as a hash:
|
2789
|
-
#
|
2790
|
-
# {
|
2791
|
-
# authentication_strategy: "SIMPLE", # accepts SIMPLE, LDAP
|
2792
|
-
# auto_minor_version_upgrade: false,
|
2793
|
-
# broker_id: "__string", # required
|
2794
|
-
# configuration: {
|
2795
|
-
# id: "__string", # required
|
2796
|
-
# revision: 1,
|
2797
|
-
# },
|
2798
|
-
# engine_version: "__string",
|
2799
|
-
# host_instance_type: "__string",
|
2800
|
-
# ldap_server_metadata: {
|
2801
|
-
# hosts: ["__string"], # required
|
2802
|
-
# role_base: "__string", # required
|
2803
|
-
# role_name: "__string",
|
2804
|
-
# role_search_matching: "__string", # required
|
2805
|
-
# role_search_subtree: false,
|
2806
|
-
# service_account_password: "__string", # required
|
2807
|
-
# service_account_username: "__string", # required
|
2808
|
-
# user_base: "__string", # required
|
2809
|
-
# user_role_name: "__string",
|
2810
|
-
# user_search_matching: "__string", # required
|
2811
|
-
# user_search_subtree: false,
|
2812
|
-
# },
|
2813
|
-
# logs: {
|
2814
|
-
# audit: false,
|
2815
|
-
# general: false,
|
2816
|
-
# },
|
2817
|
-
# maintenance_window_start_time: {
|
2818
|
-
# day_of_week: "MONDAY", # required, accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
|
2819
|
-
# time_of_day: "__string", # required
|
2820
|
-
# time_zone: "__string",
|
2821
|
-
# },
|
2822
|
-
# security_groups: ["__string"],
|
2823
|
-
# }
|
2824
|
-
#
|
2825
2532
|
# @!attribute [rw] authentication_strategy
|
2826
2533
|
# Optional. The authentication strategy used to secure the broker. The
|
2827
2534
|
# default is SIMPLE.
|
@@ -3002,15 +2709,6 @@ module Aws::MQ
|
|
3002
2709
|
include Aws::Structure
|
3003
2710
|
end
|
3004
2711
|
|
3005
|
-
# @note When making an API call, you may pass UpdateConfigurationRequest
|
3006
|
-
# data as a hash:
|
3007
|
-
#
|
3008
|
-
# {
|
3009
|
-
# configuration_id: "__string", # required
|
3010
|
-
# data: "__string", # required
|
3011
|
-
# description: "__string",
|
3012
|
-
# }
|
3013
|
-
#
|
3014
2712
|
# @!attribute [rw] configuration_id
|
3015
2713
|
# @return [String]
|
3016
2714
|
#
|
@@ -3092,17 +2790,6 @@ module Aws::MQ
|
|
3092
2790
|
include Aws::Structure
|
3093
2791
|
end
|
3094
2792
|
|
3095
|
-
# @note When making an API call, you may pass UpdateUserRequest
|
3096
|
-
# data as a hash:
|
3097
|
-
#
|
3098
|
-
# {
|
3099
|
-
# broker_id: "__string", # required
|
3100
|
-
# console_access: false,
|
3101
|
-
# groups: ["__string"],
|
3102
|
-
# password: "__string",
|
3103
|
-
# username: "__string", # required
|
3104
|
-
# }
|
3105
|
-
#
|
3106
2793
|
# @!attribute [rw] broker_id
|
3107
2794
|
# @return [String]
|
3108
2795
|
#
|
@@ -3140,16 +2827,6 @@ module Aws::MQ
|
|
3140
2827
|
# RabbitMQ API calls directly to brokers or via the RabbitMQ web
|
3141
2828
|
# console.
|
3142
2829
|
#
|
3143
|
-
# @note When making an API call, you may pass User
|
3144
|
-
# data as a hash:
|
3145
|
-
#
|
3146
|
-
# {
|
3147
|
-
# console_access: false,
|
3148
|
-
# groups: ["__string"],
|
3149
|
-
# password: "__string", # required
|
3150
|
-
# username: "__string", # required
|
3151
|
-
# }
|
3152
|
-
#
|
3153
2830
|
# @!attribute [rw] console_access
|
3154
2831
|
# Enables access to the ActiveMQ Web Console for the ActiveMQ user.
|
3155
2832
|
# Does not apply to RabbitMQ brokers.
|
@@ -3249,15 +2926,6 @@ module Aws::MQ
|
|
3249
2926
|
# The scheduled time period relative to UTC during which Amazon MQ
|
3250
2927
|
# begins to apply pending updates or patches to the broker.
|
3251
2928
|
#
|
3252
|
-
# @note When making an API call, you may pass WeeklyStartTime
|
3253
|
-
# data as a hash:
|
3254
|
-
#
|
3255
|
-
# {
|
3256
|
-
# day_of_week: "MONDAY", # required, accepts MONDAY, TUESDAY, WEDNESDAY, THURSDAY, FRIDAY, SATURDAY, SUNDAY
|
3257
|
-
# time_of_day: "__string", # required
|
3258
|
-
# time_zone: "__string",
|
3259
|
-
# }
|
3260
|
-
#
|
3261
2929
|
# @!attribute [rw] day_of_week
|
3262
2930
|
# Required. The day of the week.
|
3263
2931
|
# @return [String]
|
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.49.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: 2023-01-18 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|