lib/aws-sdk-acm/client.rb in aws-sdk-acm-1.18.0 vs lib/aws-sdk-acm/client.rb in aws-sdk-acm-1.19.0

- old
+ new

@@ -207,10 +207,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 @@ -763,16 +806,18 @@ end # Renews an eligable ACM certificate. At this time, only exported # private certificates can be renewed with this operation. In order to # renew your ACM PCA certificates with ACM, you must first [grant the - # ACM service principal permission to do - # so](acm-pca/latest/userguide/PcaPermissions.html). For more - # information, see [Testing Managed - # Renewal](acm/latest/userguide/manuel-renewal.html) in the ACM User - # Guide. + # ACM service principal permission to do so][1]. For more information, + # see [Testing Managed Renewal][2] in the ACM User Guide. # + # + # + # [1]: https://docs.aws.amazon.com/acm-pca/latest/userguide/PcaPermissions.html + # [2]: https://docs.aws.amazon.com/acm/latest/userguide/manual-renewal.html + # # @option params [required, String] :certificate_arn # String that contains the ARN of the ACM certificate to be renewed. # This must be of the form: # # `arn:aws:acm:region:123456789012:certificate/12345678-1234-1234-1234-123456789012` @@ -1068,10 +1113,10 @@ operation: config.api.operation(operation_name), client: self, params: params, config: config) context[:gem_name] = 'aws-sdk-acm' - context[:gem_version] = '1.18.0' + context[:gem_version] = '1.19.0' Seahorse::Client::Request.new(handlers, context) end # Polls an API operation until a resource enters a desired state. #