aws-sdk-ec2 1.43.0 → 1.44.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: 4a8d0fca6d4927eeb2bdae058c7841fb3efd4239
4
- data.tar.gz: bf296bda184795ca9b2725614a10304d810ca7bf
3
+ metadata.gz: 5c3da2acbabf8352284abf2fc48a4cc8249a5a92
4
+ data.tar.gz: 2bab17284fdf9adce557ef958be767d15a5ce9d9
5
5
  SHA512:
6
- metadata.gz: 86359a4fe2eba41feb751cf55e911a2c8abd793534da55ec04087ebde2c0403aaf3c2f295d6aeb9b7105434b7dc86d4e36fb0b36c74d5bebfd58a38642e0af5a
7
- data.tar.gz: e3636dbbdbdad367bfec8a2c6bf86739adc3da62008f7e002c65fbacd79eb714a30fcc7aa66119759514e094b05a59d605032dd48b674ca0b60298351a43e575
6
+ metadata.gz: f403327af01f4a7a84f440410d393cea35c5976d3d2ac796f57cc6d8d65dbe40b8121b0229740c69f2244649aa5855b6ff5358d8cafd74b96847ec884e501ca3
7
+ data.tar.gz: 0e53f611c33d5607dd9a225b40eb87eb973cd9cff31774c11c91c92f11b120a3be367c2a23595ff196ef92969e2acebee9cabc6547a028f6141f58064cd297a2
data/lib/aws-sdk-ec2.rb CHANGED
@@ -65,6 +65,6 @@ require_relative 'aws-sdk-ec2/customizations'
65
65
  # @service
66
66
  module Aws::EC2
67
67
 
68
- GEM_VERSION = '1.43.0'
68
+ GEM_VERSION = '1.44.0'
69
69
 
70
70
  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/ec2.rb'
24
26
  require 'aws-sdk-ec2/plugins/copy_encrypted_snapshot.rb'
@@ -49,6 +51,8 @@ module Aws::EC2
49
51
  add_plugin(Aws::Plugins::StubResponses)
50
52
  add_plugin(Aws::Plugins::IdempotencyToken)
51
53
  add_plugin(Aws::Plugins::JsonvalueConverter)
54
+ add_plugin(Aws::Plugins::ClientMetricsPlugin)
55
+ add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
52
56
  add_plugin(Aws::Plugins::SignatureV4)
53
57
  add_plugin(Aws::Plugins::Protocols::EC2)
54
58
  add_plugin(Aws::EC2::Plugins::CopyEncryptedSnapshot)
@@ -96,6 +100,22 @@ module Aws::EC2
96
100
  #
97
101
  # @option options [String] :access_key_id
98
102
  #
103
+ # @option options [] :client_side_monitoring (false)
104
+ # When `true`, client-side metrics will be collected for all API requests from
105
+ # this client.
106
+ #
107
+ # @option options [] :client_side_monitoring_client_id ("")
108
+ # Allows you to provide an identifier for this client which will be attached to
109
+ # all generated client side metrics. Defaults to an empty string.
110
+ #
111
+ # @option options [] :client_side_monitoring_port (31000)
112
+ # Required for publishing client metrics. The port that the client side monitoring
113
+ # agent is running on, where client metrics will be published via UDP.
114
+ #
115
+ # @option options [] :client_side_monitoring_publisher (#<Aws::ClientSideMonitoring::Publisher:0x00007f20e3c7b9f0 @agent_port=nil, @mutex=#<Thread::Mutex:0x00007f20e3c7b9a0>>)
116
+ # Allows you to provide a custom client-side monitoring publisher class. By default,
117
+ # will use the Client Side Monitoring Agent Publisher.
118
+ #
99
119
  # @option options [Boolean] :convert_params (true)
100
120
  # When `true`, an attempt is made to coerce request parameters into
101
121
  # the required types.
@@ -25697,7 +25717,7 @@ module Aws::EC2
25697
25717
  params: params,
25698
25718
  config: config)
25699
25719
  context[:gem_name] = 'aws-sdk-ec2'
25700
- context[:gem_version] = '1.43.0'
25720
+ context[:gem_version] = '1.44.0'
25701
25721
  Seahorse::Client::Request.new(handlers, context)
25702
25722
  end
25703
25723
 
@@ -6197,10 +6197,14 @@ module Aws::EC2
6197
6197
  api.version = "2016-11-15"
6198
6198
 
6199
6199
  api.metadata = {
6200
+ "apiVersion" => "2016-11-15",
6200
6201
  "endpointPrefix" => "ec2",
6201
6202
  "protocol" => "ec2",
6203
+ "serviceAbbreviation" => "Amazon EC2",
6202
6204
  "serviceFullName" => "Amazon Elastic Compute Cloud",
6205
+ "serviceId" => "EC2",
6203
6206
  "signatureVersion" => "v4",
6207
+ "uid" => "ec2-2016-11-15",
6204
6208
  "xmlNamespace" => "http://ec2.amazonaws.com/doc/2016-11-15",
6205
6209
  }
6206
6210
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ec2
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.43.0
4
+ version: 1.44.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-sigv4