Sha256: fe7b02da489b59af8975b29a6e94fa98c5882ff8b5c314f7e1d4ab4584ff0f96
Contents?: true
Size: 938 Bytes
Versions: 6
Compression:
Stored size: 938 Bytes
Contents
module Fog module AzureRM class Storage # 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
6 entries across 6 versions & 1 rubygems