Class: Azure::AzureInterface
Instance Attribute Summary collapse
Instance Method Summary
collapse
Methods included from Helpers
#display_list, #msg_pair, #random_string, #strip_non_ascii
included
Constructor Details
Returns a new instance of AzureInterface.
28
29
|
# File 'lib/azure/azure_interface.rb', line 28
def initialize(options = {})
end
|
Instance Attribute Details
#ui ⇒ Object
Returns the value of attribute ui.
26
27
28
|
# File 'lib/azure/azure_interface.rb', line 26
def ui
@ui
end
|
Instance Method Details
#create_affinity_group(params = {}) ⇒ Object
71
72
73
|
# File 'lib/azure/azure_interface.rb', line 71
def create_affinity_group(params = {})
AzureInterface.api_not_implemented(self)
end
|
#create_internal_lb(params = {}) ⇒ Object
63
64
65
|
# File 'lib/azure/azure_interface.rb', line 63
def create_internal_lb(params = {})
AzureInterface.api_not_implemented(self)
end
|
#create_server(params = {}) ⇒ Object
31
32
33
|
# File 'lib/azure/azure_interface.rb', line 31
def create_server(params = {})
AzureInterface.api_not_implemented(self)
end
|
#create_vnet(params = {}) ⇒ Object
51
52
53
|
# File 'lib/azure/azure_interface.rb', line 51
def create_vnet(params = {})
AzureInterface.api_not_implemented(self)
end
|
#delete_server(server_name) ⇒ Object
39
40
41
|
# File 'lib/azure/azure_interface.rb', line 39
def delete_server(server_name)
AzureInterface.api_not_implemented(self)
end
|
#find_server(server_name) ⇒ Object
75
76
77
|
# File 'lib/azure/azure_interface.rb', line 75
def find_server(server_name)
AzureInterface.api_not_implemented(self)
end
|
#list_affinity_groups ⇒ Object
67
68
69
|
# File 'lib/azure/azure_interface.rb', line 67
def list_affinity_groups
AzureInterface.api_not_implemented(self)
end
|
#list_images ⇒ Object
43
44
45
|
# File 'lib/azure/azure_interface.rb', line 43
def list_images
AzureInterface.api_not_implemented(self)
end
|
#list_internal_lb ⇒ Object
59
60
61
|
# File 'lib/azure/azure_interface.rb', line 59
def list_internal_lb
AzureInterface.api_not_implemented(self)
end
|
#list_servers ⇒ Object
35
36
37
|
# File 'lib/azure/azure_interface.rb', line 35
def list_servers
AzureInterface.api_not_implemented(self)
end
|
#list_vnets ⇒ Object
55
56
57
|
# File 'lib/azure/azure_interface.rb', line 55
def list_vnets
AzureInterface.api_not_implemented(self)
end
|
#show_server(server_name, resource_group = "") ⇒ Object
47
48
49
|
# File 'lib/azure/azure_interface.rb', line 47
def show_server(server_name, resource_group = "")
AzureInterface.api_not_implemented(self)
end
|