Sha256: ccb96bd4d7127137068f8de7d375a6f1d835ac6574cb7ddc1903a1cb435d12a2
Contents?: true
Size: 1.03 KB
Versions: 6
Compression:
Stored size: 1.03 KB
Contents
module Fog module AzureRM class Storage # This class provides the actual implementation for service calls. class Real def put_blob_metadata(container_name, name, metadata, options = {}) options[:request_id] = SecureRandom.uuid msg = "Setting Blob #{name} metadata in a container #{container_name}. options: #{options}" Fog::Logger.debug msg begin @blob_client.set_blob_metadata(container_name, name, metadata, options) rescue Azure::Core::Http::HTTPError => ex raise_azure_exception(ex, msg) end Fog::Logger.debug "Setting metadata of blob #{name} successfully." true end end # This class provides the mock implementation for unit tests. class Mock def put_blob_metadata(container_name, name, metadata, _options = {}) Fog::Logger.debug "Set Blob #{name} metadata #{metadata} in a container #{container_name} successfully." true end end end end end
Version data entries
6 entries across 6 versions & 1 rubygems