aws-sdk-mq 1.2.0 → 1.3.0

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: d7465a40f3f636b679ea6748e531d8400d3803b1
4
- data.tar.gz: dc467acfca2352598224060cb45c499283f0559c
3
+ metadata.gz: 037b057790dffcdaffda53a4e1d1aaae03bdd77b
4
+ data.tar.gz: cab32ed6fd183ab38d5e45696b6623196e18fb18
5
5
  SHA512:
6
- metadata.gz: 760a267e3ae35a9bc771ff93a4007372d213c8747d47290d14d8db828a49219cc4beffd5b2e267fc1256eba638928563768b8d3fc1061ec2aabb40d097217d92
7
- data.tar.gz: 2ffdcf0068fbc98150adb9242982e6bb6c748a70265a5ffb12f29d78b008da71d864c516f6c8b318f9aa13c88f3546c62331ba72fcc66ef6cd20ae4ffbe1a2ea
6
+ metadata.gz: 88010f7875f263275d8426e4e4d38afb8d04a6155bbfced803118f7386e7e4311aacea8882e17e3dbe0b2962122554cd329344a85b276256df655da01afa54b4
7
+ data.tar.gz: f8f82a15bd42470d5c626615ee2b396add598ffc7dd43c65cc76c79c3117930cdfc9a92d792b9813e7b0fec54a3487e52436750aa56b5bf2ea9b05a6489aa280
data/lib/aws-sdk-mq.rb CHANGED
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-mq/customizations'
42
42
  # @service
43
43
  module Aws::MQ
44
44
 
45
- GEM_VERSION = '1.2.0'
45
+ GEM_VERSION = '1.3.0'
46
46
 
47
47
  end
@@ -19,6 +19,8 @@ require 'aws-sdk-core/plugins/response_paging.rb'
19
19
  require 'aws-sdk-core/plugins/stub_responses.rb'
20
20
  require 'aws-sdk-core/plugins/idempotency_token.rb'
21
21
  require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
22
+ require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
23
+ require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
22
24
  require 'aws-sdk-core/plugins/signature_v4.rb'
23
25
  require 'aws-sdk-core/plugins/protocols/rest_json.rb'
24
26
 
@@ -47,6 +49,8 @@ module Aws::MQ
47
49
  add_plugin(Aws::Plugins::StubResponses)
48
50
  add_plugin(Aws::Plugins::IdempotencyToken)
49
51
  add_plugin(Aws::Plugins::JsonvalueConverter)
52
+ add_plugin(Aws::Plugins::ClientMetricsPlugin)
53
+ add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
50
54
  add_plugin(Aws::Plugins::SignatureV4)
51
55
  add_plugin(Aws::Plugins::Protocols::RestJson)
52
56
 
@@ -92,6 +96,22 @@ module Aws::MQ
92
96
  #
93
97
  # @option options [String] :access_key_id
94
98
  #
99
+ # @option options [] :client_side_monitoring (false)
100
+ # When `true`, client-side metrics will be collected for all API requests from
101
+ # this client.
102
+ #
103
+ # @option options [] :client_side_monitoring_client_id ("")
104
+ # Allows you to provide an identifier for this client which will be attached to
105
+ # all generated client side metrics. Defaults to an empty string.
106
+ #
107
+ # @option options [] :client_side_monitoring_port (31000)
108
+ # Required for publishing client metrics. The port that the client side monitoring
109
+ # agent is running on, where client metrics will be published via UDP.
110
+ #
111
+ # @option options [] :client_side_monitoring_publisher (#<Aws::ClientSideMonitoring::Publisher:0x00007f20e3c7b9f0 @agent_port=nil, @mutex=#<Thread::Mutex:0x00007f20e3c7b9a0>>)
112
+ # Allows you to provide a custom client-side monitoring publisher class. By default,
113
+ # will use the Client Side Monitoring Agent Publisher.
114
+ #
95
115
  # @option options [Boolean] :convert_params (true)
96
116
  # When `true`, an attempt is made to coerce request parameters into
97
117
  # the required types.
@@ -915,7 +935,7 @@ module Aws::MQ
915
935
  params: params,
916
936
  config: config)
917
937
  context[:gem_name] = 'aws-sdk-mq'
918
- context[:gem_version] = '1.2.0'
938
+ context[:gem_version] = '1.3.0'
919
939
  Seahorse::Client::Request.new(handlers, context)
920
940
  end
921
941
 
@@ -522,12 +522,15 @@ module Aws::MQ
522
522
  api.version = "2017-11-27"
523
523
 
524
524
  api.metadata = {
525
+ "apiVersion" => "2017-11-27",
525
526
  "endpointPrefix" => "mq",
526
527
  "jsonVersion" => "1.1",
527
528
  "protocol" => "rest-json",
528
529
  "serviceFullName" => "AmazonMQ",
530
+ "serviceId" => "mq",
529
531
  "signatureVersion" => "v4",
530
532
  "signingName" => "mq",
533
+ "uid" => "mq-2017-11-27",
531
534
  }
532
535
 
533
536
  api.add_operation(:create_broker, Seahorse::Model::Operation.new.tap do |o|
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.2.0
4
+ version: 1.3.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-07-30 00:00:00.000000000 Z
11
+ date: 2018-09-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core