aws-sdk-mediaconnect 1.4.0 → 1.5.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: 74de8d29b84fb2274963b3e8d0974cacec7b5acd
4
- data.tar.gz: fb8bc0c56fe3aa14d521039f03bbb1de1c15e26b
3
+ metadata.gz: b4fdbc526d983063be6bea48e44dc148498a4496
4
+ data.tar.gz: 05ddf6b7471da1892e17341132a7362729ee87f3
5
5
  SHA512:
6
- metadata.gz: 0c1e4f782be8a1a0705d0379bdfada8e59cede37864e6b008e616dd450ed66d7e0398900d45b663bf6b0dbb50cdea3808c76701ff77bd00cf0c06fb3a03dbfdf
7
- data.tar.gz: 89081757d397eccc5c596815561177c3191e023d7df455a15204fa2b15c85d4254fd84f880e8a28b51d75701afab984143ff56f5ed508df6a8333d2699929108
6
+ metadata.gz: 7604185084e1d21e56c1c11bf5b2a569799f4babc95319a1f0e3cdcb247b13282254981c15fa3759987ec2b6bdc59145ee74efb817fc77994e828de749ad34a0
7
+ data.tar.gz: 1519c93c8ebda416027ebf9f5a797268028b89952ef04a2d626916cf52859a79f95674807b2f90c07d88b08f3be7734a410fa8bd77241c355d2809197340e52d
@@ -42,6 +42,6 @@ require_relative 'aws-sdk-mediaconnect/customizations'
42
42
  # @service
43
43
  module Aws::MediaConnect
44
44
 
45
- GEM_VERSION = '1.4.0'
45
+ GEM_VERSION = '1.5.0'
46
46
 
47
47
  end
@@ -199,6 +199,49 @@ module Aws::MediaConnect
199
199
  # When `true`, request parameters are validated before
200
200
  # sending the request.
201
201
  #
202
+ # @option options [URI::HTTP,String] :http_proxy A proxy to send
203
+ # requests through. Formatted like 'http://proxy.com:123'.
204
+ #
205
+ # @option options [Float] :http_open_timeout (15) The number of
206
+ # seconds to wait when opening a HTTP session before rasing a
207
+ # `Timeout::Error`.
208
+ #
209
+ # @option options [Integer] :http_read_timeout (60) The default
210
+ # number of seconds to wait for response data. This value can
211
+ # safely be set
212
+ # per-request on the session yeidled by {#session_for}.
213
+ #
214
+ # @option options [Float] :http_idle_timeout (5) The number of
215
+ # seconds a connection is allowed to sit idble before it is
216
+ # considered stale. Stale connections are closed and removed
217
+ # from the pool before making a request.
218
+ #
219
+ # @option options [Float] :http_continue_timeout (1) The number of
220
+ # seconds to wait for a 100-continue response before sending the
221
+ # request body. This option has no effect unless the request has
222
+ # "Expect" header set to "100-continue". Defaults to `nil` which
223
+ # disables this behaviour. This value can safely be set per
224
+ # request on the session yeidled by {#session_for}.
225
+ #
226
+ # @option options [Boolean] :http_wire_trace (false) When `true`,
227
+ # HTTP debug output will be sent to the `:logger`.
228
+ #
229
+ # @option options [Boolean] :ssl_verify_peer (true) When `true`,
230
+ # SSL peer certificates are verified when establishing a
231
+ # connection.
232
+ #
233
+ # @option options [String] :ssl_ca_bundle Full path to the SSL
234
+ # certificate authority bundle file that should be used when
235
+ # verifying peer certificates. If you do not pass
236
+ # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
237
+ # will be used if available.
238
+ #
239
+ # @option options [String] :ssl_ca_directory Full path of the
240
+ # directory that contains the unbundled SSL certificate
241
+ # authority files for verifying peer certificates. If you do
242
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
243
+ # system default will be used if available.
244
+ #
202
245
  def initialize(*args)
203
246
  super
204
247
  end
@@ -649,7 +692,7 @@ module Aws::MediaConnect
649
692
  req.send_request(options)
650
693
  end
651
694
 
652
- # Lists all tags associated with the resource.
695
+ # List all tags on an AWS Elemental MediaConnect resource
653
696
  #
654
697
  # @option params [required, String] :resource_arn
655
698
  #
@@ -805,9 +848,10 @@ module Aws::MediaConnect
805
848
  req.send_request(options)
806
849
  end
807
850
 
808
- # Associates the specified tags to a resource. If the request does not
809
- # mention an existing tag associated with the resource, that tag is not
810
- # changed.
851
+ # Associates the specified tags to a resource with the specified
852
+ # resourceArn. If existing tags on a resource are not specified in the
853
+ # request parameters, they are not changed. When a resource is deleted,
854
+ # the tags associated with that resource are deleted as well.
811
855
  #
812
856
  # @option params [required, String] :resource_arn
813
857
  #
@@ -836,7 +880,7 @@ module Aws::MediaConnect
836
880
  req.send_request(options)
837
881
  end
838
882
 
839
- # Deletes the specified tags from a resource.
883
+ # Deletes specified tags from a resource.
840
884
  #
841
885
  # @option params [required, String] :resource_arn
842
886
  #
@@ -1118,7 +1162,7 @@ module Aws::MediaConnect
1118
1162
  params: params,
1119
1163
  config: config)
1120
1164
  context[:gem_name] = 'aws-sdk-mediaconnect'
1121
- context[:gem_version] = '1.4.0'
1165
+ context[:gem_version] = '1.5.0'
1122
1166
  Seahorse::Client::Request.new(handlers, context)
1123
1167
  end
1124
1168
 
@@ -455,6 +455,12 @@ module Aws::MediaConnect
455
455
  o.errors << Shapes::ShapeRef.new(shape: TooManyRequestsException)
456
456
  o.errors << Shapes::ShapeRef.new(shape: BadRequestException)
457
457
  o.errors << Shapes::ShapeRef.new(shape: InternalServerErrorException)
458
+ o[:pager] = Aws::Pager.new(
459
+ limit_key: "max_results",
460
+ tokens: {
461
+ "next_token" => "next_token"
462
+ }
463
+ )
458
464
  end)
459
465
 
460
466
  api.add_operation(:list_flows, Seahorse::Model::Operation.new.tap do |o|
@@ -676,8 +676,7 @@ module Aws::MediaConnect
676
676
  include Aws::Structure
677
677
  end
678
678
 
679
- # AWS Elemental MediaConnect listed the tags associated with the
680
- # resource.
679
+ # The tags for the resource.
681
680
  #
682
681
  # @!attribute [rw] tags
683
682
  # A map from tag keys to values. Tag keys can have a maximum character
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-mediaconnect
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: 2019-03-21 00:00:00.000000000 Z
11
+ date: 2019-04-24 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -59,7 +59,7 @@ files:
59
59
  - lib/aws-sdk-mediaconnect/errors.rb
60
60
  - lib/aws-sdk-mediaconnect/resource.rb
61
61
  - lib/aws-sdk-mediaconnect/types.rb
62
- homepage: http://github.com/aws/aws-sdk-ruby
62
+ homepage: https://github.com/aws/aws-sdk-ruby
63
63
  licenses:
64
64
  - Apache-2.0
65
65
  metadata: