aws-sdk-mediatailor 1.2.0 → 1.3.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: 29087d0f7bce2635b96ae4c817a90d9646897a5c
4
- data.tar.gz: 14e3e109af7641df7e89d2210f6abaec6c38d0c6
3
+ metadata.gz: 6cb3a4df9abdb083f646a69d3b49c0e54e1737ce
4
+ data.tar.gz: d89029bd2969faa9cac045f9b0bb5d1d2af20f70
5
5
  SHA512:
6
- metadata.gz: cdfa684c1a0b2d87c560ee73a98c0b5710e730bd47cea724afe4c971582656959f95fc3b77d3eab57b1c957ac08abed5955ebc3b62900d394af2b2ecaf2d3c38
7
- data.tar.gz: 7509e9634281afce4017e7f42d2f5bdfc172852bf1695e4ee1ac5535eecfcfabf606968c3822a4a09b0e1d0679a1522447d5cf786b6b4ac0469f814a59f6a235
6
+ metadata.gz: 91a7c761973c5b6f43ff44e1a77de9ae820bbb47043f6f0920b5cd22f33dac0f1a2aeebf028672e94b28130226f6a9f3ddcb37d22294ae9c22c17e2dad1c59c7
7
+ data.tar.gz: 72d6505294eeaa28b3801ceef947f749cc5e338a18cc53a4cebf92dc31a510b862a7730b11b0af87c7808cbed0efedc1615126eb6763ebaffcdf07ef53f50ce5
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-mediatailor/customizations'
42
42
  # @service
43
43
  module Aws::MediaTailor
44
44
 
45
- GEM_VERSION = '1.2.0'
45
+ GEM_VERSION = '1.3.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::MediaTailor
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::MediaTailor
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.
@@ -350,7 +370,7 @@ module Aws::MediaTailor
350
370
  params: params,
351
371
  config: config)
352
372
  context[:gem_name] = 'aws-sdk-mediatailor'
353
- context[:gem_version] = '1.2.0'
373
+ context[:gem_version] = '1.3.0'
354
374
  Seahorse::Client::Request.new(handlers, context)
355
375
  end
356
376
 
@@ -93,12 +93,16 @@ module Aws::MediaTailor
93
93
  api.version = "2018-04-23"
94
94
 
95
95
  api.metadata = {
96
+ "apiVersion" => "2018-04-23",
96
97
  "endpointPrefix" => "api.mediatailor",
97
98
  "jsonVersion" => "1.1",
98
99
  "protocol" => "rest-json",
100
+ "serviceAbbreviation" => "MediaTailor",
99
101
  "serviceFullName" => "AWS MediaTailor",
102
+ "serviceId" => "MediaTailor",
100
103
  "signatureVersion" => "v4",
101
104
  "signingName" => "mediatailor",
105
+ "uid" => "mediatailor-2018-04-23",
102
106
  }
103
107
 
104
108
  api.add_operation(:delete_playback_configuration, Seahorse::Model::Operation.new.tap do |o|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediatailor
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.2.0
4
+ version: 1.3.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-06-26 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