aws-sdk-kinesis 1.4.0 → 1.5.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: 4c08e5a3d5f7c8c2dc6eb3619557ace70dd0c8b3
4
- data.tar.gz: d6abc419e7e50d5ec037125ea31c1b374b298a6a
3
+ metadata.gz: 4f7b9ccf954309c4df713a5aab4ea83ce16bb0bc
4
+ data.tar.gz: a0ce8033cba0dd54eefc19950187352cbe672089
5
5
  SHA512:
6
- metadata.gz: 39500f6025834cc0c16937c360469f3cfdfe0b95dd160c7985d827756f4019caad7b72aae235644f7e473e68a9358ab7375de84396275c420b9613041ffbafdd
7
- data.tar.gz: a340ca19436049067070adf74adb3d2710377b8463b85bfd1c87bbc5d43cf4a16064fc84af05a434531d29031c04d2ac2ecb963dbec4cf3fdefca22620680251
6
+ metadata.gz: c2b661a44e7def0a4df569b7a1b72f3935217652d0db928fc29001bd2ed8c578648dd909c88de838779138f34433853fc75e15a44ed8ae19335b989e1a038d8c
7
+ data.tar.gz: 58d5d293e9a7bb55ac35783b767f90dc37c97a549629f8c9968b5936913851c6f0ba85fd5b8910f16b96bd3b65c18646281b26259a8f5ff5b86e567a84d669c7
@@ -43,6 +43,6 @@ require_relative 'aws-sdk-kinesis/customizations'
43
43
  # @service
44
44
  module Aws::Kinesis
45
45
 
46
- GEM_VERSION = '1.4.0'
46
+ GEM_VERSION = '1.5.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/json_rpc.rb'
24
26
 
@@ -47,6 +49,8 @@ module Aws::Kinesis
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::Kinesis
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.
@@ -2024,7 +2044,7 @@ module Aws::Kinesis
2024
2044
  params: params,
2025
2045
  config: config)
2026
2046
  context[:gem_name] = 'aws-sdk-kinesis'
2027
- context[:gem_version] = '1.4.0'
2047
+ context[:gem_version] = '1.5.0'
2028
2048
  Seahorse::Client::Request.new(handlers, context)
2029
2049
  end
2030
2050
 
@@ -443,13 +443,17 @@ module Aws::Kinesis
443
443
  api.version = "2013-12-02"
444
444
 
445
445
  api.metadata = {
446
+ "apiVersion" => "2013-12-02",
446
447
  "endpointPrefix" => "kinesis",
447
448
  "jsonVersion" => "1.1",
448
449
  "protocol" => "json",
449
450
  "protocolSettings" => {"h2"=>"eventstream"},
451
+ "serviceAbbreviation" => "Kinesis",
450
452
  "serviceFullName" => "Amazon Kinesis",
453
+ "serviceId" => "Kinesis",
451
454
  "signatureVersion" => "v4",
452
455
  "targetPrefix" => "Kinesis_20131202",
456
+ "uid" => "kinesis-2013-12-02",
453
457
  }
454
458
 
455
459
  api.add_operation(:add_tags_to_stream, Seahorse::Model::Operation.new.tap do |o|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-kinesis
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.4.0
4
+ version: 1.5.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-02 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