aws-sdk-dlm 1.1.0 → 1.2.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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 4b7dbb1888a503f0c85baa936e9dd2dd7efe4057
4
- data.tar.gz: 40230f26445b6f47a125586a122c28cb489b1e79
3
+ metadata.gz: d87728a3d897d112a5ddd3582b2276f03d1b718e
4
+ data.tar.gz: f6d5ab049f8a8fc2cccb4107afb99ac7fc01c070
5
5
  SHA512:
6
- metadata.gz: 2d95549d022e0303a450c7d11bade0240b5425b586809156663d85ac8d7733422047394c64b96b386071acc1ff8418b4897cf2873642fba5e21ecf7236fad3d2
7
- data.tar.gz: 7d0cbba874b2ee811f0bba3fe610a0719422406057894dfb9f5a7600e9dd2bf0d0f356fa4e3f74716b9445286c9005030a7ac62c713eaae2d0a86dba0ab618c4
6
+ metadata.gz: bfb1b52eb89582da9b2694169fee59ba6ada79ff017c346479095b602e3210f1f814a72473ccc8e02a5edcee76ffda21a6d0e87328a18442b0041e9d84a2849b
7
+ data.tar.gz: 852b293b4370001398cb99fa4437afc0bbda676a84dcda1079e6eb2efe6fc716fcf2a6c4e798827568e8a8785f52d78b06888fa38b84b7566ffdf0aa692c0e1b
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-dlm/customizations'
42
42
  # @service
43
43
  module Aws::DLM
44
44
 
45
- GEM_VERSION = '1.1.0'
45
+ GEM_VERSION = '1.2.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::DLM
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::DLM
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.
@@ -437,7 +457,7 @@ module Aws::DLM
437
457
  params: params,
438
458
  config: config)
439
459
  context[:gem_name] = 'aws-sdk-dlm'
440
- context[:gem_version] = '1.1.0'
460
+ context[:gem_version] = '1.2.0'
441
461
  Seahorse::Client::Request.new(handlers, context)
442
462
  end
443
463
 
@@ -163,12 +163,16 @@ module Aws::DLM
163
163
  api.version = "2018-01-12"
164
164
 
165
165
  api.metadata = {
166
+ "apiVersion" => "2018-01-12",
166
167
  "endpointPrefix" => "dlm",
167
168
  "jsonVersion" => "1.1",
168
169
  "protocol" => "rest-json",
170
+ "serviceAbbreviation" => "Amazon DLM",
169
171
  "serviceFullName" => "Amazon Data Lifecycle Manager",
172
+ "serviceId" => "DLM",
170
173
  "signatureVersion" => "v4",
171
174
  "signingName" => "dlm",
175
+ "uid" => "dlm-2018-01-12",
172
176
  }
173
177
 
174
178
  api.add_operation(:create_lifecycle_policy, Seahorse::Model::Operation.new.tap do |o|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-dlm
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.1.0
4
+ version: 1.2.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-21 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