Class: Azure::Storage::Common::Client

Inherits:
Object
  • Object
show all
Includes:
ClientOptions, Configurable, Azure::Storage::Common::Core::HttpClient
Defined in:
lib/azure/storage/common/client.rb

Instance Attribute Summary

Attributes included from ClientOptions

#ca_file

Attributes included from Configurable

#signer, #storage_access_key, #storage_account_name, #storage_blob_host, #storage_blob_host_secondary, #storage_connection_string, #storage_file_host, #storage_file_host_secondary, #storage_queue_host, #storage_queue_host_secondary, #storage_sas_token, #storage_table_host, #storage_table_host_secondary

Class Method Summary collapse

Instance Method Summary collapse

Methods included from Azure::Storage::Common::Core::HttpClient

#agents, #reset_agents!

Methods included from ClientOptions

connection_string_mapping, env_vars_mapping, #options, #reset!, #same_options?, valid_options

Methods included from Configurable

#config, #configure, keys, #reset_config!

Constructor Details

#initialize(options = {}, &block) ⇒ Azure::Storage::Common::Client

Public: Creates an instance of [Azure::Storage::Common::Client]

Attributes

  • options - Hash. Optional parameters.

Options

Accepted key/value pairs in options parameter are:

  • :use_development_storage - TrueClass|FalseClass. Whether to use storage emulator.

  • :development_storage_proxy_uri - String. Used with :use_development_storage if emulator is hosted other than localhost.

  • :storage_connection_string - String. The storage connection string.

  • :storage_account_name - String. The name of the storage account.

  • :storage_access_key - Base64 String. The access key of the storage account.

  • :storage_sas_token - String. The signed access signature for the storage account or one of its service.

  • :storage_blob_host - String. Specified Blob serivce endpoint or hostname

  • :storage_table_host - String. Specified Table serivce endpoint or hostname

  • :storage_queue_host - String. Specified Queue serivce endpoint or hostname

  • :storage_dns_suffix - String. The suffix of a regional Storage Serivce, to

  • :default_endpoints_protocol - String. http or https

  • :use_path_style_uri - String. Whether use path style URI for specified endpoints

  • :ca_file - String. File path of the CA file if having issue with SSL

  • :user_agent_prefix - String. The user agent prefix that can identify the application calls the library

The valid set of options include:

  • Storage Emulator: :use_development_storage required, :development_storage_proxy_uri optionally

  • Storage account name and key: :storage_account_name and :storage_access_key required, set :storage_dns_suffix necessarily

  • Storage account name and SAS token: :storage_account_name and :storage_sas_token required, set :storage_dns_suffix necessarily

  • Specified hosts and SAS token: At least one of the service host and SAS token. It’s up to user to ensure the SAS token is suitable for the serivce

  • Anonymous Blob: only :storage_blob_host, if it is to only access blobs within a container

Additional notes:

  • Specified hosts can be set when use account name with access key or sas token

  • :default_endpoints_protocol can be set if the scheme is not specified in hosts

  • Storage emulator always use path style URI

  • :ca_file is independent.

When empty options are given, it will try to read settings from Environment Variables. Refer to [Azure::Storage::Common::ClientOptions.env_vars_mapping] for the mapping relationship



74
75
76
77
78
79
80
81
# File 'lib/azure/storage/common/client.rb', line 74

def initialize(options = {}, &block)
  if options.is_a?(Hash) && options.has_key?(:user_agent_prefix)
    Azure::Storage::Common::Service::StorageService.user_agent_prefix = options[:user_agent_prefix]
    options.delete :user_agent_prefix
  end
  Azure::Storage::Common::Service::StorageService.register_request_callback(&block) if block_given?
  reset!(options)
end

Dynamic Method Handling

This class handles dynamic methods through the method_missing method in the class Azure::Storage::Common::ClientOptions

Class Method Details

.create(options = {}, &block) ⇒ Azure::Storage::Common::Client

Public: Creates an instance of [Azure::Storage::Common::Client]

Attributes

  • options - Hash. Optional parameters.

Options

Accepted key/value pairs in options parameter are:

  • :use_development_storage - TrueClass|FalseClass. Whether to use storage emulator.

  • :development_storage_proxy_uri - String. Used with :use_development_storage if emulator is hosted other than localhost.

  • :storage_account_name - String. The name of the storage account.

  • :storage_access_key - Base64 String. The access key of the storage account.

  • :storage_sas_token - String. The signed access signature for the storage account or one of its service.

  • :storage_blob_host - String. Specified Blob service endpoint or hostname

  • :storage_table_host - String. Specified Table service endpoint or hostname

  • :storage_queue_host - String. Specified Queue service endpoint or hostname

  • :storage_dns_suffix - String. The suffix of a regional Storage Service, to

  • :default_endpoints_protocol - String. http or https

  • :use_path_style_uri - String. Whether use path style URI for specified endpoints

  • :ca_file - String. File path of the CA file if having issue with SSL

  • :user_agent_prefix - String. The user agent prefix that can identify the application calls the library

The valid set of options include:

  • Storage Emulator: :use_development_storage required, :development_storage_proxy_uri optionally

  • Storage account name and key: :storage_account_name and :storage_access_key required, set :storage_dns_suffix necessarily

  • Storage account name and SAS token: :storage_account_name and :storage_sas_token required, set :storage_dns_suffix necessarily

  • Specified hosts and SAS token: At least one of the service host and SAS token. It’s up to user to ensure the SAS token is suitable for the serivce

  • Anonymous Blob: only :storage_blob_host, if it is to only access blobs within a container

Additional notes:

  • Specified hosts can be set when use account name with access key or sas token

  • :default_endpoints_protocol can be set if the scheme is not specified in hosts

  • Storage emulator always use path style URI

  • :ca_file is independent.

When empty options are given, it will try to read settings from Environment Variables. Refer to [Azure::Storage::Common::ClientOptions.env_vars_mapping] for the mapping relationship



124
125
126
# File 'lib/azure/storage/common/client.rb', line 124

def create(options = {}, &block)
  client = Client.new(options, &block)
end

.create_development(proxy_uri = nil, &block) ⇒ Azure::Storage::Common::Client

Public: Creates an instance of [Azure::Storage::Common::Client] with Storage Emulator

Attributes

  • proxy_uri - String. Used with :use_development_storage if emulator is hosted other than localhost.



135
136
137
138
# File 'lib/azure/storage/common/client.rb', line 135

def create_development(proxy_uri = nil, &block)
  proxy_uri ||= StorageServiceClientConstants::DEV_STORE_URI
  client = create(use_development_storage: true, development_storage_proxy_uri: proxy_uri, &block)
end

.create_from_connection_string(connection_string, &block) ⇒ Azure::Storage::Common::Client

Public: Creates an instance of [Azure::Storage::Common::Client] from Environment Variables

Attributes



154
155
156
# File 'lib/azure/storage/common/client.rb', line 154

def create_from_connection_string(connection_string, &block)
  client = Client.new(connection_string, &block)
end

.create_from_env(&block) ⇒ Azure::Storage::Client

Public: Creates an instance of [Azure::Storage::Common::Client] from Environment Variables

Returns:

  • (Azure::Storage::Client)


143
144
145
# File 'lib/azure/storage/common/client.rb', line 143

def create_from_env(&block)
  client = create(&block)
end