class Chef::Provisioning::AzureRM::Driver
Public Class Methods
canonicalize_url(driver_url, config)
click to toggle source
# File lib/chef/provisioning/azurerm/driver.rb, line 15 def self.canonicalize_url(driver_url, config) [driver_url, config] end
from_url(driver_url, config)
click to toggle source
# File lib/chef/provisioning/azurerm/driver.rb, line 7 def self.from_url(driver_url, config) Driver.new(driver_url, config) end
new(driver_url, config)
click to toggle source
Calls superclass method
# File lib/chef/provisioning/azurerm/driver.rb, line 11 def initialize(driver_url, config) super end
Public Instance Methods
allocate_machine(_action_handler, _machine_spec, _machine_options)
click to toggle source
# File lib/chef/provisioning/azurerm/driver.rb, line 19 def allocate_machine(_action_handler, _machine_spec, _machine_options) Chef::Log.error "The Azure Resource Manager does not implement the 'machine' resource. Please refer to documentation." end
destroy_machine(_action_handler, _machine_spec, _machine_options)
click to toggle source
# File lib/chef/provisioning/azurerm/driver.rb, line 26 def destroy_machine(_action_handler, _machine_spec, _machine_options) end
ready_machine(_action_handler, _machine_spec, _machine_options)
click to toggle source
# File lib/chef/provisioning/azurerm/driver.rb, line 23 def ready_machine(_action_handler, _machine_spec, _machine_options) end