Sha256: 1fe807dc82c5f3282712d66e23444201da2f41706cb50e0c0fb98ec4a295455f

Contents?: true

Size: 1.07 KB

Versions: 4

Compression:

Stored size: 1.07 KB

Contents

module Fog
  module Storage
    class HuaweiCloud
      class Real
        # Set the account wide Temp URL Key. This is a secret key that's
        # used to generate signed expiring URLs.
        #
        # Once the key has been set with this request you should create new
        # Storage objects with the :huaweicloud_temp_url_key option then use
        # the get_object_https_url method to generate expiring URLs.
        #
        # *** CAUTION *** changing this secret key will invalidate any expiring
        # URLS generated with old keys.
        #
        # ==== Parameters
        # * key<~String> - The new Temp URL Key
        #
        # ==== Returns
        # * response<~Excon::Response>
        #
        # ==== See Also
        # http://docs.rackspace.com/files/api/v1/cf-devguide/content/Set_Account_Metadata-d1a4460.html
        def post_set_meta_temp_url_key(key)
          request(
            :expects => [201, 202, 204],
            :method  => 'POST',
            :headers => {'X-Account-Meta-Temp-Url-Key' => key}
          )
        end
      end
    end
  end
end

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
fog-huaweicloud-0.0.3 lib/fog/storage/huaweicloud/requests/post_set_meta_temp_url_key.rb
fog-huaweicloud-0.0.2 lib/fog/storage/huaweicloud/requests/post_set_meta_temp_url_key.rb
fog-huaweicloud-0.1.3 lib/fog/storage/huaweicloud/requests/post_set_meta_temp_url_key.rb
fog-huaweicloud-0.1.2 lib/fog/storage/huaweicloud/requests/post_set_meta_temp_url_key.rb