Class: Fog::Storage::AzureRM::StorageAccount

Inherits:
Model
  • Object
show all
Defined in:
lib/fog/azurerm/models/storage/storage_account.rb

Overview

This class is giving implementation of create/save and delete/destroy for storage account.

Class Method Summary collapse

Instance Method Summary collapse

Class Method Details

.parse(storage_account) ⇒ Object



13
14
15
16
17
18
19
20
21
22
# File 'lib/fog/azurerm/models/storage/storage_account.rb', line 13

def self.parse()
  hash = {}
  hash['id'] = .id
  hash['name'] = .name
  hash['location'] = .location
  hash['resource_group'] = get_resource_group_from_id(.id)
  hash['sku_name'] = .sku.name.split('_').first
  hash['replication'] = .sku.name.split('_').last
  hash
end

Instance Method Details

#destroyObject



62
63
64
# File 'lib/fog/azurerm/models/storage/storage_account.rb', line 62

def destroy
  service.(resource_group, name)
end

#get_access_keys(options = {}) ⇒ Object



58
59
60
# File 'lib/fog/azurerm/models/storage/storage_account.rb', line 58

def get_access_keys(options = {})
  service.get_storage_access_keys(resource_group, name, options)
end

#saveObject



24
25
26
27
28
29
30
31
32
33
34
35
# File 'lib/fog/azurerm/models/storage/storage_account.rb', line 24

def save
  requires :name
  requires :location
  requires :resource_group
  # Create a model for new storage account.
  self.sku_name = STANDARD_STORAGE if sku_name.nil?
  self.replication = ALLOWED_STANDARD_REPLICATION.first if replication.nil?
  validate_sku_name!
   = 
   = service.()
  merge_attributes(Fog::Storage::AzureRM::StorageAccount.parse())
end