aws-sdk-elasticbeanstalk 1.9.0 → 1.10.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: 250ec6979c4f9ce64b232d088b6f2a370a840316
4
- data.tar.gz: 77a4ffae16487ba9f2d914cd800b7932b8c004aa
3
+ metadata.gz: 45f9035b02a4b0d9ef50423bbd8d421bb906202a
4
+ data.tar.gz: fdb1301dd82381771fb3de76e44b56e847c6acf5
5
5
  SHA512:
6
- metadata.gz: 664ae4b0614046afaa4d3ddf6abbe78ac377c0152df5f9e5eb6acd315e1385f341c0352b2f5d4c7d3d2166745be0941cc48fd575d52a869e11fd12f5c0e5c343
7
- data.tar.gz: dda00cc88a78371f6f889625724c1ebdbce6abec71030228f2599d4ddf8082b648de3b452c09c45baa96ba2ec931acd293705fc6bf914736c1e94870af238289
6
+ metadata.gz: d686ab075c6c2ca129cde11d3788d344de6dbcf7fb768f0d30eeb4bb107c67262638478625feb8627f3336e362b97d53b0d5329e74b7b088e806c9b0845259c6
7
+ data.tar.gz: 4206f703b6368f5d8335c8ab0d2720caef389d12c479b4aa2a6abbdbe02be3aecaf4524ffb31f9c15f79884ce133d12c5600d94eafd299ee894fd0d084654a83
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-elasticbeanstalk/customizations'
42
42
  # @service
43
43
  module Aws::ElasticBeanstalk
44
44
 
45
- GEM_VERSION = '1.9.0'
45
+ GEM_VERSION = '1.10.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/query.rb'
24
26
 
@@ -47,6 +49,8 @@ module Aws::ElasticBeanstalk
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::Query)
52
56
 
@@ -92,6 +96,22 @@ module Aws::ElasticBeanstalk
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.
@@ -4007,7 +4027,7 @@ module Aws::ElasticBeanstalk
4007
4027
  params: params,
4008
4028
  config: config)
4009
4029
  context[:gem_name] = 'aws-sdk-elasticbeanstalk'
4010
- context[:gem_version] = '1.9.0'
4030
+ context[:gem_version] = '1.10.0'
4011
4031
  Seahorse::Client::Request.new(handlers, context)
4012
4032
  end
4013
4033
 
@@ -1094,10 +1094,14 @@ module Aws::ElasticBeanstalk
1094
1094
  api.version = "2010-12-01"
1095
1095
 
1096
1096
  api.metadata = {
1097
+ "apiVersion" => "2010-12-01",
1097
1098
  "endpointPrefix" => "elasticbeanstalk",
1098
1099
  "protocol" => "query",
1100
+ "serviceAbbreviation" => "Elastic Beanstalk",
1099
1101
  "serviceFullName" => "AWS Elastic Beanstalk",
1102
+ "serviceId" => "Elastic Beanstalk",
1100
1103
  "signatureVersion" => "v4",
1104
+ "uid" => "elasticbeanstalk-2010-12-01",
1101
1105
  "xmlNamespace" => "http://elasticbeanstalk.amazonaws.com/docs/2010-12-01/",
1102
1106
  }
1103
1107
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-elasticbeanstalk
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.9.0
4
+ version: 1.10.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