Sha256: 066ec5656d3a69d7b560035c320dffdd7d1ea38e59564e8349837033b0483353

Contents?: true

Size: 1.79 KB

Versions: 23

Compression:

Stored size: 1.79 KB

Contents

# Copyright 2014 Google LLC
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
#     https://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.


module Google
  module Cloud
    module Storage
      ##
      # PostObject represents the URL, fields, and values needed to upload
      # objects via html forms.
      #
      # @see https://cloud.google.com/storage/docs/xml-api/post-object
      #
      # @attr_reader [String] url The URL the form must post to.
      # @attr_reader [Hash] fields The input fields that must be included in the
      #   form. Each key/value pair should be set as an input tag's name and
      #   value.
      #
      # @example
      #   require "google/cloud/storage"
      #
      #   storage = Google::Cloud::Storage.new
      #
      #   bucket = storage.bucket "my-todo-app"
      #   post = bucket.post_object "avatars/heidi/400x400.png"
      #
      #   post.url #=> "https://storage.googleapis.com"
      #   post.fields[:key] #=> "my-todo-app/avatars/heidi/400x400.png"
      #   post.fields[:GoogleAccessId] #=> "0123456789@gserviceaccount.com"
      #   post.fields[:signature] #=> "ABC...XYZ="
      #   post.fields[:policy] #=> "ABC...XYZ="
      #
      class PostObject
        attr_reader :url, :fields

        # @private
        def initialize url, fields
          @url = url
          @fields = fields
        end
      end
    end
  end
end

Version data entries

23 entries across 23 versions & 1 rubygems

Version Path
google-cloud-storage-1.25.1 lib/google/cloud/storage/post_object.rb
google-cloud-storage-1.25.0 lib/google/cloud/storage/post_object.rb
google-cloud-storage-1.24.0 lib/google/cloud/storage/post_object.rb
google-cloud-storage-1.23.0 lib/google/cloud/storage/post_object.rb
google-cloud-storage-1.22.0 lib/google/cloud/storage/post_object.rb
google-cloud-storage-1.21.1 lib/google/cloud/storage/post_object.rb
google-cloud-storage-1.21.0 lib/google/cloud/storage/post_object.rb
google-cloud-storage-1.20.0 lib/google/cloud/storage/post_object.rb
google-cloud-storage-1.19.0 lib/google/cloud/storage/post_object.rb
google-cloud-storage-1.18.2 lib/google/cloud/storage/post_object.rb
google-cloud-storage-1.18.1 lib/google/cloud/storage/post_object.rb
google-cloud-storage-1.18.0 lib/google/cloud/storage/post_object.rb
google-cloud-storage-1.17.0 lib/google/cloud/storage/post_object.rb
google-cloud-storage-1.16.0 lib/google/cloud/storage/post_object.rb
google-cloud-storage-1.15.0 lib/google/cloud/storage/post_object.rb
google-cloud-storage-1.14.2 lib/google/cloud/storage/post_object.rb
google-cloud-storage-1.14.1 lib/google/cloud/storage/post_object.rb
google-cloud-storage-1.14.0 lib/google/cloud/storage/post_object.rb
google-cloud-storage-1.13.1 lib/google/cloud/storage/post_object.rb
google-cloud-storage-1.13.0 lib/google/cloud/storage/post_object.rb