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
|
# 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
70
71
72
|
# File 'lib/azure/azure_interface.rb', line 70
def create_affinity_group(params = {})
AzureInterface.api_not_implemented(self)
end
|
#create_internal_lb(params = {}) ⇒ Object
62
63
64
|
# File 'lib/azure/azure_interface.rb', line 62
def create_internal_lb(params = {})
AzureInterface.api_not_implemented(self)
end
|
#create_server(params = {}) ⇒ Object
30
31
32
|
# File 'lib/azure/azure_interface.rb', line 30
def create_server(params = {})
AzureInterface.api_not_implemented(self)
end
|
#create_vnet(params = {}) ⇒ Object
50
51
52
|
# File 'lib/azure/azure_interface.rb', line 50
def create_vnet(params = {})
AzureInterface.api_not_implemented(self)
end
|
#delete_server(server_name) ⇒ Object
38
39
40
|
# File 'lib/azure/azure_interface.rb', line 38
def delete_server(server_name)
AzureInterface.api_not_implemented(self)
end
|
#find_server(server_name) ⇒ Object
74
75
76
|
# File 'lib/azure/azure_interface.rb', line 74
def find_server(server_name)
AzureInterface.api_not_implemented(self)
end
|
#list_affinity_groups ⇒ Object
66
67
68
|
# File 'lib/azure/azure_interface.rb', line 66
def list_affinity_groups
AzureInterface.api_not_implemented(self)
end
|
#list_images ⇒ Object
42
43
44
|
# File 'lib/azure/azure_interface.rb', line 42
def list_images
AzureInterface.api_not_implemented(self)
end
|
#list_internal_lb ⇒ Object
58
59
60
|
# File 'lib/azure/azure_interface.rb', line 58
def list_internal_lb
AzureInterface.api_not_implemented(self)
end
|
#list_servers ⇒ Object
34
35
36
|
# File 'lib/azure/azure_interface.rb', line 34
def list_servers
AzureInterface.api_not_implemented(self)
end
|
#list_vnets ⇒ Object
54
55
56
|
# File 'lib/azure/azure_interface.rb', line 54
def list_vnets
AzureInterface.api_not_implemented(self)
end
|
#show_server(server_name, resource_group = "") ⇒ Object
46
47
48
|
# File 'lib/azure/azure_interface.rb', line 46
def show_server(server_name, resource_group = "")
AzureInterface.api_not_implemented(self)
end
|