Sha256: d5dffb0b1099a9579efec5310e24ff5b797770199e6c9840cdf68dad5865a43c
Contents?: true
Size: 1.81 KB
Versions: 41
Compression:
Stored size: 1.81 KB
Contents
module Fog module Storage class AzureRM # This class is giving implementation of all/list, get and # check name availability for storage account. class StorageAccounts < Fog::Collection model Fog::Storage::AzureRM::StorageAccount attribute :resource_group def all accounts = [] if !resource_group.nil? requires :resource_group hash_of_storage_accounts = service.list_storage_account_for_rg(resource_group) else hash_of_storage_accounts = service.list_storage_accounts end hash_of_storage_accounts.each do |account| accounts << Fog::Storage::AzureRM::StorageAccount.parse(account) end load(accounts) end def get(resource_group_name, storage_account_name) storage_account = service.get_storage_account(resource_group_name, storage_account_name) storage_account_fog = Fog::Storage::AzureRM::StorageAccount.new(service: service) storage_account_fog.merge_attributes(Fog::Storage::AzureRM::StorageAccount.parse(storage_account)) end def check_name_availability(name, type = 'Microsoft.Storage/storageAccounts') service.check_storage_account_name_availability(name, type) end def delete_storage_account_from_tag(resource_group_name, tag_key, tag_value) storage_accounts = service.storage_accounts(resource_group: resource_group_name) storage_accounts.each do |account| account.destroy if account.tags[tag_key].eql? tag_value end end def check_storage_account_exists(resource_group_name, storage_account_name) service.check_storage_account_exists(resource_group_name, storage_account_name) end end end end end
Version data entries
41 entries across 41 versions & 4 rubygems