Sha256: 2538330b976a976bb6e8a62a9fec3e5b2484ed7b13c10ffd72beede72eca118e

Contents?: true

Size: 969 Bytes

Versions: 1

Compression:

Stored size: 969 Bytes

Contents

module Fog
  module Storage
    class AzureRM
      # This class provides the actual implementation for service calls.
      class Real
        def put_container_metadata(name, metadata, options = {})
          options[:request_id] = SecureRandom.uuid
          msg = "Setting Container #{name} metadata. options: #{options}"
          Fog::Logger.debug msg

          begin
            @blob_client.set_container_metadata(name, metadata, options)
          rescue Azure::Core::Http::HTTPError => ex
            raise_azure_exception(ex, msg)
          end

          Fog::Logger.debug "Setting metadata of container #{name} successfully."
          true
        end
      end

      # This class provides the mock implementation for unit tests.
      class Mock
        def put_container_metadata(*)
          Fog::Logger.debug 'Set Container testcontainer1 metadata successfully.'
          true
        end
      end
    end
  end
end

Version data entries

1 entries across 1 versions & 1 rubygems

Version Path
fog-azure-rm-0.1.1 lib/fog/azurerm/requests/storage/put_container_metadata.rb