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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: b4fdbc526d983063be6bea48e44dc148498a4496
|
4
|
+
data.tar.gz: 05ddf6b7471da1892e17341132a7362729ee87f3
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7604185084e1d21e56c1c11bf5b2a569799f4babc95319a1f0e3cdcb247b13282254981c15fa3759987ec2b6bdc59145ee74efb817fc77994e828de749ad34a0
|
7
|
+
data.tar.gz: 1519c93c8ebda416027ebf9f5a797268028b89952ef04a2d626916cf52859a79f95674807b2f90c07d88b08f3be7734a410fa8bd77241c355d2809197340e52d
|
data/lib/aws-sdk-mediaconnect.rb
CHANGED
@@ -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
|
-
#
|
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
|
809
|
-
#
|
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
|
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.
|
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
|
-
#
|
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
|
+
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-
|
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:
|
62
|
+
homepage: https://github.com/aws/aws-sdk-ruby
|
63
63
|
licenses:
|
64
64
|
- Apache-2.0
|
65
65
|
metadata:
|