aws-sdk-mq 1.77.0 → 1.78.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 +28 -1
- data/lib/aws-sdk-mq/client_api.rb +25 -0
- data/lib/aws-sdk-mq/types.rb +36 -0
- data/lib/aws-sdk-mq.rb +1 -1
- data/sig/client.rbs +10 -0
- data/sig/types.rbs +15 -0
- 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: '0906c40b5c544df414509ea77e0d58723325732d5a44638467572d6c861283bf'
|
4
|
+
data.tar.gz: fb2529956cfe142dffd57f0c393b54da45009403593d6fe69d2b70f7dc5a0d9d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 251010247c8ec6510c325a3143e9d1cb87182e90021810f3d2d8ed5481dac8a5b89febc0bdd97f87d71d8984817c6e2cab34b95aa0d166d6014763749c8d4c44
|
7
|
+
data.tar.gz: 47277d3a9a00c8b45dcd0df47c3d68a36797b093fd3034b8e2b2c940c9ba5100f1ce037212aa83444d3bdcd56e59cf065f54d13da80ea5b0649c7b4570bb80d8
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.78.0 (2025-04-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - You can now delete Amazon MQ broker configurations using the DeleteConfiguration API. For more information, see Configurations in the Amazon MQ API Reference.
|
8
|
+
|
4
9
|
1.77.0 (2025-02-18)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.78.0
|
data/lib/aws-sdk-mq/client.rb
CHANGED
@@ -809,6 +809,33 @@ module Aws::MQ
|
|
809
809
|
req.send_request(options)
|
810
810
|
end
|
811
811
|
|
812
|
+
# Deletes the specified configuration.
|
813
|
+
#
|
814
|
+
# @option params [required, String] :configuration_id
|
815
|
+
#
|
816
|
+
# @return [Types::DeleteConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
817
|
+
#
|
818
|
+
# * {Types::DeleteConfigurationResponse#configuration_id #configuration_id} => String
|
819
|
+
#
|
820
|
+
# @example Request syntax with placeholder values
|
821
|
+
#
|
822
|
+
# resp = client.delete_configuration({
|
823
|
+
# configuration_id: "__string", # required
|
824
|
+
# })
|
825
|
+
#
|
826
|
+
# @example Response structure
|
827
|
+
#
|
828
|
+
# resp.configuration_id #=> String
|
829
|
+
#
|
830
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/DeleteConfiguration AWS API Documentation
|
831
|
+
#
|
832
|
+
# @overload delete_configuration(params = {})
|
833
|
+
# @param [Hash] params ({})
|
834
|
+
def delete_configuration(params = {}, options = {})
|
835
|
+
req = build_request(:delete_configuration, params)
|
836
|
+
req.send_request(options)
|
837
|
+
end
|
838
|
+
|
812
839
|
# Removes a tag from a resource.
|
813
840
|
#
|
814
841
|
# @option params [required, String] :resource_arn
|
@@ -1709,7 +1736,7 @@ module Aws::MQ
|
|
1709
1736
|
tracer: tracer
|
1710
1737
|
)
|
1711
1738
|
context[:gem_name] = 'aws-sdk-mq'
|
1712
|
-
context[:gem_version] = '1.
|
1739
|
+
context[:gem_version] = '1.78.0'
|
1713
1740
|
Seahorse::Client::Request.new(handlers, context)
|
1714
1741
|
end
|
1715
1742
|
|
@@ -51,6 +51,9 @@ module Aws::MQ
|
|
51
51
|
DeleteBrokerOutput = Shapes::StructureShape.new(name: 'DeleteBrokerOutput')
|
52
52
|
DeleteBrokerRequest = Shapes::StructureShape.new(name: 'DeleteBrokerRequest')
|
53
53
|
DeleteBrokerResponse = Shapes::StructureShape.new(name: 'DeleteBrokerResponse')
|
54
|
+
DeleteConfigurationOutput = Shapes::StructureShape.new(name: 'DeleteConfigurationOutput')
|
55
|
+
DeleteConfigurationRequest = Shapes::StructureShape.new(name: 'DeleteConfigurationRequest')
|
56
|
+
DeleteConfigurationResponse = Shapes::StructureShape.new(name: 'DeleteConfigurationResponse')
|
54
57
|
DeleteTagsRequest = Shapes::StructureShape.new(name: 'DeleteTagsRequest')
|
55
58
|
DeleteUserRequest = Shapes::StructureShape.new(name: 'DeleteUserRequest')
|
56
59
|
DeleteUserResponse = Shapes::StructureShape.new(name: 'DeleteUserResponse')
|
@@ -347,6 +350,15 @@ module Aws::MQ
|
|
347
350
|
DeleteBrokerResponse.add_member(:broker_id, Shapes::ShapeRef.new(shape: __string, location_name: "brokerId"))
|
348
351
|
DeleteBrokerResponse.struct_class = Types::DeleteBrokerResponse
|
349
352
|
|
353
|
+
DeleteConfigurationOutput.add_member(:configuration_id, Shapes::ShapeRef.new(shape: __string, location_name: "configurationId"))
|
354
|
+
DeleteConfigurationOutput.struct_class = Types::DeleteConfigurationOutput
|
355
|
+
|
356
|
+
DeleteConfigurationRequest.add_member(:configuration_id, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "configuration-id"))
|
357
|
+
DeleteConfigurationRequest.struct_class = Types::DeleteConfigurationRequest
|
358
|
+
|
359
|
+
DeleteConfigurationResponse.add_member(:configuration_id, Shapes::ShapeRef.new(shape: __string, location_name: "configurationId"))
|
360
|
+
DeleteConfigurationResponse.struct_class = Types::DeleteConfigurationResponse
|
361
|
+
|
350
362
|
DeleteTagsRequest.add_member(:resource_arn, Shapes::ShapeRef.new(shape: __string, required: true, location: "uri", location_name: "resource-arn"))
|
351
363
|
DeleteTagsRequest.add_member(:tag_keys, Shapes::ShapeRef.new(shape: __listOf__string, required: true, location: "querystring", location_name: "tagKeys"))
|
352
364
|
DeleteTagsRequest.struct_class = Types::DeleteTagsRequest
|
@@ -895,6 +907,19 @@ module Aws::MQ
|
|
895
907
|
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
896
908
|
end)
|
897
909
|
|
910
|
+
api.add_operation(:delete_configuration, Seahorse::Model::Operation.new.tap do |o|
|
911
|
+
o.name = "DeleteConfiguration"
|
912
|
+
o.http_method = "DELETE"
|
913
|
+
o.http_request_uri = "/v1/configurations/{configuration-id}"
|
914
|
+
o.input = Shapes::ShapeRef.new(shape: DeleteConfigurationRequest)
|
915
|
+
o.output = Shapes::ShapeRef.new(shape: DeleteConfigurationResponse)
|
916
|
+
o.errors << Shapes::ShapeRef.new(shape: NotFoundException)
|
917
|
+
o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
|
918
|
+
o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
|
919
|
+
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
920
|
+
o.errors << Shapes::ShapeRef.new(shape: ForbiddenException)
|
921
|
+
end)
|
922
|
+
|
898
923
|
api.add_operation(:delete_tags, Seahorse::Model::Operation.new.tap do |o|
|
899
924
|
o.name = "DeleteTags"
|
900
925
|
o.http_method = "DELETE"
|
data/lib/aws-sdk-mq/types.rb
CHANGED
@@ -1054,6 +1054,42 @@ module Aws::MQ
|
|
1054
1054
|
include Aws::Structure
|
1055
1055
|
end
|
1056
1056
|
|
1057
|
+
# Returns information about the deleted configuration.
|
1058
|
+
#
|
1059
|
+
# @!attribute [rw] configuration_id
|
1060
|
+
# The unique ID that Amazon MQ generates for the configuration.
|
1061
|
+
# @return [String]
|
1062
|
+
#
|
1063
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/DeleteConfigurationOutput AWS API Documentation
|
1064
|
+
#
|
1065
|
+
class DeleteConfigurationOutput < Struct.new(
|
1066
|
+
:configuration_id)
|
1067
|
+
SENSITIVE = []
|
1068
|
+
include Aws::Structure
|
1069
|
+
end
|
1070
|
+
|
1071
|
+
# @!attribute [rw] configuration_id
|
1072
|
+
# @return [String]
|
1073
|
+
#
|
1074
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/DeleteConfigurationRequest AWS API Documentation
|
1075
|
+
#
|
1076
|
+
class DeleteConfigurationRequest < Struct.new(
|
1077
|
+
:configuration_id)
|
1078
|
+
SENSITIVE = []
|
1079
|
+
include Aws::Structure
|
1080
|
+
end
|
1081
|
+
|
1082
|
+
# @!attribute [rw] configuration_id
|
1083
|
+
# @return [String]
|
1084
|
+
#
|
1085
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/mq-2017-11-27/DeleteConfigurationResponse AWS API Documentation
|
1086
|
+
#
|
1087
|
+
class DeleteConfigurationResponse < Struct.new(
|
1088
|
+
:configuration_id)
|
1089
|
+
SENSITIVE = []
|
1090
|
+
include Aws::Structure
|
1091
|
+
end
|
1092
|
+
|
1057
1093
|
# @!attribute [rw] resource_arn
|
1058
1094
|
# @return [String]
|
1059
1095
|
#
|
data/lib/aws-sdk-mq.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -191,6 +191,16 @@ module Aws
|
|
191
191
|
) -> _DeleteBrokerResponseSuccess
|
192
192
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteBrokerResponseSuccess
|
193
193
|
|
194
|
+
interface _DeleteConfigurationResponseSuccess
|
195
|
+
include ::Seahorse::Client::_ResponseSuccess[Types::DeleteConfigurationResponse]
|
196
|
+
def configuration_id: () -> ::String
|
197
|
+
end
|
198
|
+
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MQ/Client.html#delete_configuration-instance_method
|
199
|
+
def delete_configuration: (
|
200
|
+
configuration_id: ::String
|
201
|
+
) -> _DeleteConfigurationResponseSuccess
|
202
|
+
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteConfigurationResponseSuccess
|
203
|
+
|
194
204
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/MQ/Client.html#delete_tags-instance_method
|
195
205
|
def delete_tags: (
|
196
206
|
resource_arn: ::String,
|
data/sig/types.rbs
CHANGED
@@ -268,6 +268,21 @@ module Aws::MQ
|
|
268
268
|
SENSITIVE: []
|
269
269
|
end
|
270
270
|
|
271
|
+
class DeleteConfigurationOutput
|
272
|
+
attr_accessor configuration_id: ::String
|
273
|
+
SENSITIVE: []
|
274
|
+
end
|
275
|
+
|
276
|
+
class DeleteConfigurationRequest
|
277
|
+
attr_accessor configuration_id: ::String
|
278
|
+
SENSITIVE: []
|
279
|
+
end
|
280
|
+
|
281
|
+
class DeleteConfigurationResponse
|
282
|
+
attr_accessor configuration_id: ::String
|
283
|
+
SENSITIVE: []
|
284
|
+
end
|
285
|
+
|
271
286
|
class DeleteTagsRequest
|
272
287
|
attr_accessor resource_arn: ::String
|
273
288
|
attr_accessor tag_keys: ::Array[::String]
|
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.78.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: 2025-
|
11
|
+
date: 2025-04-22 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|