Module: Azure::Storage::Common::Default
- Defined in:
- lib/azure/storage/common/default.rb
Constant Summary collapse
- STG_VERSION =
Default REST service (STG) version number. This is used only for SAS generator.
"2018-11-09"
- DEFAULT_PARALLEL_OPERATION_THREAD_COUNT =
The number of default concurrent requests for parallel operation.
1
- KB =
Constant representing a kilobyte (Non-SI version).
1024
- MB =
Constant representing a megabyte (Non-SI version).
1024 * 1024
- GB =
Constant representing a gigabyte (Non-SI version).
1024 * 1024 * 1024
- HTTP =
Specifies HTTP.
"http"
- HTTPS =
Specifies HTTPS.
"https"
- DEFAULT_HTTP_PORT =
Default HTTP port.
80
- DEFAULT_HTTPS_PORT =
Default HTTPS port.
443
- XML_METADATA_MARKER =
Marker for atom metadata.
"$"
- XML_VALUE_MARKER =
Marker for atom value.
"_"
Class Method Summary collapse
- .options ⇒ Object
- .os ⇒ Object
-
.signer ⇒ Object
A placeholder to map with the Azure::Storage::Common::Configurable.keys.
-
.storage_access_key ⇒ String
Default storage access key.
-
.storage_account_name ⇒ String
Default storage account name.
-
.storage_blob_host ⇒ String
Default storage blob host.
-
.storage_connection_string ⇒ String
Default storage connection string.
-
.storage_file_host ⇒ String
Default storage file host.
-
.storage_queue_host ⇒ String
Default storage queue host.
-
.storage_sas_token ⇒ String
Default storage shared access signature token.
-
.storage_table_host ⇒ String
Default storage table host.
Class Method Details
.options ⇒ Object
78 79 80 |
# File 'lib/azure/storage/common/default.rb', line 78 def Hash[Azure::Storage::Common::Configurable.keys.map { |key| [key, send(key)] }] end |
.os ⇒ Object
59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 |
# File 'lib/azure/storage/common/default.rb', line 59 def os host_os = RbConfig::CONFIG["host_os"] case host_os when /mswin|msys|mingw|cygwin|bccwin|wince|emc/ "Windows #{host_os}" when /darwin|mac os/ "MacOS #{host_os}" when /linux/ "Linux #{host_os}" when /solaris|bsd/ "Unix #{host_os}" else "Unknown #{host_os}" end end |
.signer ⇒ Object
A placeholder to map with the Azure::Storage::Common::Configurable.keys
132 133 |
# File 'lib/azure/storage/common/default.rb', line 132 def signer end |
.storage_access_key ⇒ String
Default storage access key
84 85 86 |
# File 'lib/azure/storage/common/default.rb', line 84 def storage_access_key ENV["AZURE_STORAGE_ACCESS_KEY"] end |
.storage_account_name ⇒ String
Default storage account name
90 91 92 |
# File 'lib/azure/storage/common/default.rb', line 90 def storage_account_name ENV["AZURE_STORAGE_ACCOUNT"] end |
.storage_blob_host ⇒ String
Default storage blob host
114 115 116 |
# File 'lib/azure/storage/common/default.rb', line 114 def storage_blob_host ENV["AZURE_STORAGE_BLOB_HOST"] end |
.storage_connection_string ⇒ String
Default storage connection string
96 97 98 |
# File 'lib/azure/storage/common/default.rb', line 96 def storage_connection_string ENV["AZURE_STORAGE_CONNECTION_STRING"] end |
.storage_file_host ⇒ String
Default storage file host
126 127 128 |
# File 'lib/azure/storage/common/default.rb', line 126 def storage_file_host ENV["AZURE_STORAGE_FILE_HOST"] end |
.storage_queue_host ⇒ String
Default storage queue host
120 121 122 |
# File 'lib/azure/storage/common/default.rb', line 120 def storage_queue_host ENV["AZURE_STORAGE_QUEUE_HOST"] end |
.storage_sas_token ⇒ String
Default storage shared access signature token
102 103 104 |
# File 'lib/azure/storage/common/default.rb', line 102 def storage_sas_token ENV["AZURE_STORAGE_SAS_TOKEN"] end |
.storage_table_host ⇒ String
Default storage table host
108 109 110 |
# File 'lib/azure/storage/common/default.rb', line 108 def storage_table_host ENV["AZURE_STORAGE_TABLE_HOST"] end |