aws-sdk-medialive 1.9.0 → 1.10.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: c942e8affe59f8b7ed4f73719e4f54cd9e95e762
4
- data.tar.gz: 2fc24dd411ceb3aa4b3ffc12f8abeb9c689e68b5
3
+ metadata.gz: 2c28d7837e893d25aa6241e50cdf3b232dcf37fb
4
+ data.tar.gz: c0cb613f5741b450ffddd38edf97501007da6923
5
5
  SHA512:
6
- metadata.gz: 22778fe0a10bc665a6b866290e1567e49cdcdca75ac8d03030f9b2d04a76b86036f777a00484386a01a9a5d9a616e57fc7f21861cecc601aa0615f803156d84d
7
- data.tar.gz: bb1115f9c0bd35cd476da7afea783e150889f7a70c47bb7866d404c396f3131356fe83f5931dfb35683e59c54f62d07410db7a6667f150cd5d455beac0ce9d5b
6
+ metadata.gz: 86d6f783ca0553a7eeb47fae252f57254c81dd0837a9907959335e352143a1c5296ce059dc634dd9aba1416df1e6da81827169344ee42bfe8476167e2d52534a
7
+ data.tar.gz: 1d96574fb54c3d21f213a319d182ed36b9767973acb36dae04ff6f384ec69cef80c0dd53955422e9d612f6d1b6d8cd4b8ba8d8b25e468b91d3e552bc6017b542
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-medialive/customizations'
42
42
  # @service
43
43
  module Aws::MediaLive
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/rest_json.rb'
24
26
 
@@ -47,6 +49,8 @@ module Aws::MediaLive
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::MediaLive
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.
@@ -5722,7 +5742,7 @@ module Aws::MediaLive
5722
5742
  params: params,
5723
5743
  config: config)
5724
5744
  context[:gem_name] = 'aws-sdk-medialive'
5725
- context[:gem_version] = '1.9.0'
5745
+ context[:gem_version] = '1.10.0'
5726
5746
  Seahorse::Client::Request.new(handlers, context)
5727
5747
  end
5728
5748
 
@@ -1833,12 +1833,16 @@ module Aws::MediaLive
1833
1833
  api.version = "2017-10-14"
1834
1834
 
1835
1835
  api.metadata = {
1836
+ "apiVersion" => "2017-10-14",
1836
1837
  "endpointPrefix" => "medialive",
1837
1838
  "jsonVersion" => "1.1",
1838
1839
  "protocol" => "rest-json",
1840
+ "serviceAbbreviation" => "MediaLive",
1839
1841
  "serviceFullName" => "AWS Elemental MediaLive",
1842
+ "serviceId" => "MediaLive",
1840
1843
  "signatureVersion" => "v4",
1841
1844
  "signingName" => "medialive",
1845
+ "uid" => "medialive-2017-10-14",
1842
1846
  }
1843
1847
 
1844
1848
  api.add_operation(:batch_update_schedule, Seahorse::Model::Operation.new.tap do |o|
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-medialive
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-23 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