Sha256: 7e0c036699ab90bdb233ed32e2460c8f548965b5c309e4dc2d1812586df8063a

Contents?: true

Size: 1 KB

Versions: 15

Compression:

Stored size: 1 KB

Contents

module Fog
  module Storage
    class AzureRM
      # This class provides the actual implemention for service calls.
      class Real
        # Generate a pre-signed URL for create an object in an Azure blob storage
        # This is to make this library compatible with CarrierWave.
        #
        # @param container_name [String] Name of container containing blob
        # @param blob_name [String] Name of blob to get expiring url for
        # @param expires [Time] An expiry time for this url
        #
        # @return [String] - https url for blob
        #
        # @see https://docs.microsoft.com/en-us/rest/api/storageservices/put-blob
        #
        def put_object_url(bucket_name, object_name, expire_at, _upload_options)
          put_blob_https_url(bucket_name, object_name, expire_at)
        end
      end

      # This class provides the mock implementation for unit tests.
      class Mock
        def put_object_url(*args)
          put_blob_https_url(*args)
        end
      end
    end
  end
end

Version data entries

15 entries across 15 versions & 1 rubygems

Version Path
gitlab-fog-azure-rm-1.8.0 lib/fog/azurerm/requests/storage/put_object_url.rb
gitlab-fog-azure-rm-1.7.0 lib/fog/azurerm/requests/storage/put_object_url.rb
gitlab-fog-azure-rm-1.6.0 lib/fog/azurerm/requests/storage/put_object_url.rb
gitlab-fog-azure-rm-1.5.0 lib/fog/azurerm/requests/storage/put_object_url.rb
gitlab-fog-azure-rm-1.4.0 lib/fog/azurerm/requests/storage/put_object_url.rb
gitlab-fog-azure-rm-1.3.0 lib/fog/azurerm/requests/storage/put_object_url.rb
gitlab-fog-azure-rm-1.2.0 lib/fog/azurerm/requests/storage/put_object_url.rb
gitlab-fog-azure-rm-1.1.1 lib/fog/azurerm/requests/storage/put_object_url.rb
gitlab-fog-azure-rm-1.0.1 lib/fog/azurerm/requests/storage/put_object_url.rb
gitlab-fog-azure-rm-1.0.0 lib/fog/azurerm/requests/storage/put_object_url.rb
gitlab-fog-azure-rm-0.9.0 lib/fog/azurerm/requests/storage/put_object_url.rb
gitlab-fog-azure-rm-0.8.1 lib/fog/azurerm/requests/storage/put_object_url.rb
gitlab-fog-azure-rm-0.8.0 lib/fog/azurerm/requests/storage/put_object_url.rb
gitlab-fog-azure-rm-0.7.0 lib/fog/azurerm/requests/storage/put_object_url.rb
gitlab-fog-azure-rm-0.6.0 lib/fog/azurerm/requests/storage/put_object_url.rb