aws-sdk-dax 1.3.0 → 1.4.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: 50195755063ae0955f44b2fb7543a716e855d6b3
4
- data.tar.gz: ecae582814f752214105d5de5c34e36bb84f234b
3
+ metadata.gz: d2569d52488f7459f99ce7f1b67d74b34a5cea01
4
+ data.tar.gz: d5a5a4bcdaa2a2b1b3a66fd991c7f5a12b5c2968
5
5
  SHA512:
6
- metadata.gz: 6d87a9cceb1c132e40d33705e29b5b678e2d101a33997c2cf4c76adbda1128d342f5ac996f154fc8477769604d0d60583712d3c77659d3e73aaa49da7ed92e59
7
- data.tar.gz: 8b5a60301427f3643cae8c4a294a2110a6935c9aa7bdb108e39f7681bc3d251b7b8e84533e3dbf2ad5b74a02403e34ce807127f39d49bef333030ea023d5af07
6
+ metadata.gz: 8b46974af8c7c72e87337b9494328118ed165fb42e9168e45010ba993df8600160275a05626bfe0e6f3cfae86d56b3946d4675c3ce2090fe943cd5a3facf5da8
7
+ data.tar.gz: 45c7c892abdba507ebf986fb36330c75a1a2191f0d83551b1016788bd0eaf3c2dcf6955871a22ed4a4196ef35eac292074f9ed960a13d13dd9a9ae778b7b84bd
data/lib/aws-sdk-dax.rb CHANGED
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-dax/customizations'
42
42
  # @service
43
43
  module Aws::DAX
44
44
 
45
- GEM_VERSION = '1.3.0'
45
+ GEM_VERSION = '1.4.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/json_rpc.rb'
24
26
 
@@ -47,6 +49,8 @@ module Aws::DAX
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::JsonRpc)
52
56
 
@@ -92,6 +96,22 @@ module Aws::DAX
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.
@@ -1445,7 +1465,7 @@ module Aws::DAX
1445
1465
  params: params,
1446
1466
  config: config)
1447
1467
  context[:gem_name] = 'aws-sdk-dax'
1448
- context[:gem_version] = '1.3.0'
1468
+ context[:gem_version] = '1.4.0'
1449
1469
  Seahorse::Client::Request.new(handlers, context)
1450
1470
  end
1451
1471
 
@@ -447,12 +447,16 @@ module Aws::DAX
447
447
  api.version = "2017-04-19"
448
448
 
449
449
  api.metadata = {
450
+ "apiVersion" => "2017-04-19",
450
451
  "endpointPrefix" => "dax",
451
452
  "jsonVersion" => "1.1",
452
453
  "protocol" => "json",
454
+ "serviceAbbreviation" => "Amazon DAX",
453
455
  "serviceFullName" => "Amazon DynamoDB Accelerator (DAX)",
456
+ "serviceId" => "DAX",
454
457
  "signatureVersion" => "v4",
455
458
  "targetPrefix" => "AmazonDAXV3",
459
+ "uid" => "dax-2017-04-19",
456
460
  }
457
461
 
458
462
  api.add_operation(:create_cluster, Seahorse::Model::Operation.new.tap do |o|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-dax
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.3.0
4
+ version: 1.4.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-08-17 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