Class: Fog::Compute::Azure::Databases
- Inherits:
-
Fog::Collection
- Object
- Fog::Collection
- Fog::Compute::Azure::Databases
- Defined in:
- lib/fog/azure/models/compute/databases.rb
Instance Method Summary collapse
Instance Method Details
#all ⇒ Object
31 32 33 34 35 36 37 38 39 40 41 |
# File 'lib/fog/azure/models/compute/databases.rb', line 31 def all() databases = [] service.list_databases.each do |account| hash = {} account.instance_variables.each do |var| hash[var.to_s.delete("@")] = account.instance_variable_get(var) end databases << hash end load(databases) end |
#create(login, password, location) ⇒ Object
43 44 45 |
# File 'lib/fog/azure/models/compute/databases.rb', line 43 def create(login, password, location) service.create_database_server(login, password, location) end |