aws-sdk-signer 1.1.0 → 1.2.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: e1d0cd7041351bfe867bf3ed43befd1e1e83fff8
4
- data.tar.gz: 11b4d539cc023390b0aafa9d4be6dd7f658585f4
3
+ metadata.gz: 51e7875c1ab89cae5a9178ec3ee1d133cac6fb68
4
+ data.tar.gz: 9cacee7a8bdb296110d62ea67ca4fb08d672d32d
5
5
  SHA512:
6
- metadata.gz: 4e30f43af20e8f14d15729e9dac37c855739ab4a6df24c83016b10ebfe4ab55b7298df643d6c5781cba2a94a4467c48b0facba2e3259bda84109f40a74c04ec7
7
- data.tar.gz: cd45709578233ece97b559519758259404daa049dbd8f7d235e868a104a2c52fdb17f9628de73eac508cecc1bfaf12f882e5bfc2006b5661b8a49e010a790b83
6
+ metadata.gz: 6a6cfe49f9cbf93933a7bbe539708f6b79eef4d5634710a3eeb9d8fd3abcea1858907c4d02c99c109a88056da9d6dce7535416d759e5cf6ea9b57a94fe7b3c73
7
+ data.tar.gz: c4726c18600bf64ba268e93a8cbca6e651e63cb036456b3740ee59ea745717f068ed660d3dacb2d00b06e8a12b5915edc80673dde3cb45b5f2095bbc10a74257
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-signer/customizations'
43
43
  # @service
44
44
  module Aws::Signer
45
45
 
46
- GEM_VERSION = '1.1.0'
46
+ GEM_VERSION = '1.2.0'
47
47
 
48
48
  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::Signer
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::Signer
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.
@@ -684,7 +704,7 @@ module Aws::Signer
684
704
  params: params,
685
705
  config: config)
686
706
  context[:gem_name] = 'aws-sdk-signer'
687
- context[:gem_version] = '1.1.0'
707
+ context[:gem_version] = '1.2.0'
688
708
  Seahorse::Client::Request.new(handlers, context)
689
709
  end
690
710
 
@@ -277,12 +277,16 @@ module Aws::Signer
277
277
  api.version = "2017-08-25"
278
278
 
279
279
  api.metadata = {
280
+ "apiVersion" => "2017-08-25",
280
281
  "endpointPrefix" => "signer",
281
282
  "jsonVersion" => "1.1",
282
283
  "protocol" => "rest-json",
284
+ "serviceAbbreviation" => "signer",
283
285
  "serviceFullName" => "AWS Signer",
286
+ "serviceId" => "signer",
284
287
  "signatureVersion" => "v4",
285
288
  "signingName" => "signer",
289
+ "uid" => "signer-2017-08-25",
286
290
  }
287
291
 
288
292
  api.add_operation(:cancel_signing_profile, Seahorse::Model::Operation.new.tap do |o|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-signer
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-27 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