lib/aws-sdk-mediaconnect/client.rb in aws-sdk-mediaconnect-1.4.0 vs lib/aws-sdk-mediaconnect/client.rb in aws-sdk-mediaconnect-1.5.0
- old
+ new
@@ -197,10 +197,53 @@
#
# @option options [Boolean] :validate_params (true)
# When `true`, request parameters are validated before
# sending the request.
#
+ # @option options [URI::HTTP,String] :http_proxy A proxy to send
+ # requests through. Formatted like 'http://proxy.com:123'.
+ #
+ # @option options [Float] :http_open_timeout (15) The number of
+ # seconds to wait when opening a HTTP session before rasing a
+ # `Timeout::Error`.
+ #
+ # @option options [Integer] :http_read_timeout (60) The default
+ # number of seconds to wait for response data. This value can
+ # safely be set
+ # per-request on the session yeidled by {#session_for}.
+ #
+ # @option options [Float] :http_idle_timeout (5) The number of
+ # seconds a connection is allowed to sit idble before it is
+ # considered stale. Stale connections are closed and removed
+ # from the pool before making a request.
+ #
+ # @option options [Float] :http_continue_timeout (1) The number of
+ # seconds to wait for a 100-continue response before sending the
+ # request body. This option has no effect unless the request has
+ # "Expect" header set to "100-continue". Defaults to `nil` which
+ # disables this behaviour. This value can safely be set per
+ # request on the session yeidled by {#session_for}.
+ #
+ # @option options [Boolean] :http_wire_trace (false) When `true`,
+ # HTTP debug output will be sent to the `:logger`.
+ #
+ # @option options [Boolean] :ssl_verify_peer (true) When `true`,
+ # SSL peer certificates are verified when establishing a
+ # connection.
+ #
+ # @option options [String] :ssl_ca_bundle Full path to the SSL
+ # certificate authority bundle file that should be used when
+ # verifying peer certificates. If you do not pass
+ # `:ssl_ca_bundle` or `:ssl_ca_directory` the the system default
+ # will be used if available.
+ #
+ # @option options [String] :ssl_ca_directory Full path of the
+ # directory that contains the unbundled SSL certificate
+ # authority files for verifying peer certificates. If you do
+ # not pass `:ssl_ca_bundle` or `:ssl_ca_directory` the the
+ # system default will be used if available.
+ #
def initialize(*args)
super
end
# @!group API Operations
@@ -647,11 +690,11 @@
def list_flows(params = {}, options = {})
req = build_request(:list_flows, params)
req.send_request(options)
end
- # Lists all tags associated with the resource.
+ # List all tags on an AWS Elemental MediaConnect resource
#
# @option params [required, String] :resource_arn
#
# @return [Types::ListTagsForResourceResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
#
@@ -803,13 +846,14 @@
def stop_flow(params = {}, options = {})
req = build_request(:stop_flow, params)
req.send_request(options)
end
- # Associates the specified tags to a resource. If the request does not
- # mention an existing tag associated with the resource, that tag is not
- # changed.
+ # Associates the specified tags to a resource with the specified
+ # resourceArn. If existing tags on a resource are not specified in the
+ # request parameters, they are not changed. When a resource is deleted,
+ # the tags associated with that resource are deleted as well.
#
# @option params [required, String] :resource_arn
#
# @option params [required, Hash<String,String>] :tags
# A map from tag keys to values. Tag keys can have a maximum character
@@ -834,11 +878,11 @@
def tag_resource(params = {}, options = {})
req = build_request(:tag_resource, params)
req.send_request(options)
end
- # Deletes the specified tags from a resource.
+ # Deletes specified tags from a resource.
#
# @option params [required, String] :resource_arn
#
# @option params [required, Array<String>] :tag_keys
#
@@ -1116,10 +1160,10 @@
operation: config.api.operation(operation_name),
client: self,
params: params,
config: config)
context[:gem_name] = 'aws-sdk-mediaconnect'
- context[:gem_version] = '1.4.0'
+ context[:gem_version] = '1.5.0'
Seahorse::Client::Request.new(handlers, context)
end
# @api private
# @deprecated