Class: Morpheus::CloudsInterface

Inherits:
APIClient show all
Defined in:
lib/morpheus/api/clouds_interface.rb

Constant Summary

Constants inherited from APIClient

APIClient::CLIENT_ID

Instance Attribute Summary

Attributes inherited from APIClient

#client_id

Instance Method Summary collapse

Methods inherited from APIClient

#account_groups, #accounts, #activity, #appliance_settings, #approvals, #apps, #archive_buckets, #archive_files, #auth, #authorization_required?, #backup_jobs, #backup_settings, #backups, #billing, #blueprints, #budgets, #catalog, #catalog_item_types, #certificate_types, #certificates, #cloud_datastores, #cloud_folders, #cloud_policies, #cloud_resource_pools, #clouds, #clusters, #common_interface_options, #containers, #cypher, #dashboard, #datastores, #default_content_type, #default_timeout, #deploy, #deployments, #doc, #dry, #dry_run, #environments, #execute, #execute_schedules, #execution_request, #file_copy_request, #forgot, #group_policies, #groups, #guidance, #health, #image_builder, #initialize, #inspect, #instance_types, #instances, #integration_types, #integrations, #invoice_line_items, #invoices, #jobs, #key_pairs, #library_cluster_layouts, #library_container_scripts, #library_container_templates, #library_container_types, #library_container_upgrades, #library_instance_types, #library_layouts, #library_spec_template_types, #library_spec_templates, #license, #load_balancer_pools, #load_balancer_types, #load_balancer_virtual_servers, #load_balancers, #log_settings, #logged_in?, #login, #logout, #logs, #monitoring, #network_domain_records, #network_domains, #network_groups, #network_pool_ips, #network_pool_servers, #network_pools, #network_proxies, #network_routers, #network_security_servers, #network_services, #network_types, #networks, #old_cypher, #option_type_lists, #option_types, #options, #packages, #ping, #policies, #power_schedules, #price_sets, #prices, #processes, #projects, #provision_types, #provisioning_license_types, #provisioning_licenses, #provisioning_settings, #reports, #roles, #search, #security_group_rules, #server_types, #servers, #service_plans, #set_ssl_verification_enabled, #setopts, #setup, #ssl_verification_enabled?, #storage_providers, #subnet_types, #subnets, #task_sets, #tasks, #to_s, #url, #usage, #use_refresh_token, #user_groups, #user_settings, #user_sources, #users, #vdi, #vdi_allocations, #vdi_apps, #vdi_gateways, #vdi_pools, #virtual_images, #whitelabel_settings, #whoami, #withopts

Constructor Details

This class inherits a constructor from Morpheus::APIClient

Instance Method Details

#apply_security_groups(id, payload) ⇒ Object



105
106
107
108
109
110
# File 'lib/morpheus/api/clouds_interface.rb', line 105

def apply_security_groups(id, payload)
  url = "#{@base_url}/api/zones/#{id}/security-groups"
  headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  opts = {method: :post, url: url, headers: headers, payload: payload.to_json}
  execute(opts)
end

#cloud_type(params) ⇒ Object



12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/morpheus/api/clouds_interface.rb', line 12

def cloud_type(params)
  url = "#{@base_url}/api/zone-types"
  headers = { params: {}, authorization: "Bearer #{@access_token}" }

  if params.is_a?(Hash)
    headers[:params].merge!(params)
  elsif params.is_a?(Numeric)
    url = "#{@base_url}/api/zone-types/#{params}"
  elsif params.is_a?(String)
    headers[:params]['name'] = params
  end
  opts = {method: :get, url: url, headers: headers}
  execute(opts)
end

#cloud_types(params = {}) ⇒ Object



5
6
7
8
9
10
# File 'lib/morpheus/api/clouds_interface.rb', line 5

def cloud_types(params={})
  url = "#{@base_url}/api/zone-types"
  headers = { params: params, authorization: "Bearer #{@access_token}" }
  opts = {method: :get, url: url, headers: headers}
  execute(opts)
end

#create(payload) ⇒ Object



49
50
51
52
53
54
# File 'lib/morpheus/api/clouds_interface.rb', line 49

def create(payload)
  url = "#{@base_url}/api/zones"
  headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  opts = {method: :post, url: url, headers: headers, payload: payload.to_json}
  execute(opts)
end

#destroy(id, params = {}) ⇒ Object



63
64
65
66
67
68
# File 'lib/morpheus/api/clouds_interface.rb', line 63

def destroy(id, params={})
  url = "#{@base_url}/api/zones/#{id}"
  headers = { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  opts = {method: :delete, url: url, headers: headers}
  execute(opts)
end

#firewall_disable(id) ⇒ Object



84
85
86
87
88
89
# File 'lib/morpheus/api/clouds_interface.rb', line 84

def firewall_disable(id)
  url = "#{@base_url}/api/zones/#{id}/security-groups/disable"
  headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  opts = {method: :put, url: url, headers: headers}
  execute(opts)
end

#firewall_enable(id) ⇒ Object



91
92
93
94
95
96
# File 'lib/morpheus/api/clouds_interface.rb', line 91

def firewall_enable(id)
  url = "#{@base_url}/api/zones/#{id}/security-groups/enable"
  headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  opts = {method: :put, url: url, headers: headers}
  execute(opts)
end

#get(params = nil) ⇒ Object



27
28
29
30
31
32
33
34
35
36
37
38
39
40
# File 'lib/morpheus/api/clouds_interface.rb', line 27

def get(params=nil)
  url = "#{@base_url}/api/zones"
  headers = { params: {}, authorization: "Bearer #{@access_token}" }

  if params.is_a?(Hash)
    headers[:params].merge!(params)
  elsif params.is_a?(Numeric)
    url = "#{@base_url}/api/zones/#{params}"
  elsif params.is_a?(String)
    headers[:params]['name'] = params
  end
  opts = {method: :get, url: url, headers: headers}
  execute(opts)
end

#list(params = {}) ⇒ Object



42
43
44
45
46
47
# File 'lib/morpheus/api/clouds_interface.rb', line 42

def list(params={})
  url = "#{@base_url}/api/zones"
  headers = { params: params, authorization: "Bearer #{@access_token}" }
  opts = {method: :get, url: url, headers: headers}
  execute(opts)
end

#refresh(id, params = {}, payload = {}) ⇒ Object



70
71
72
73
74
75
# File 'lib/morpheus/api/clouds_interface.rb', line 70

def refresh(id, params={}, payload={})
  url = "#{@base_url}/api/zones/#{id}/refresh"
  headers = { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  opts = {method: :post, url: url, headers: headers, payload: payload.to_json}
  execute(opts)
end

#security_groups(id) ⇒ Object



98
99
100
101
102
103
# File 'lib/morpheus/api/clouds_interface.rb', line 98

def security_groups(id)
  url = "#{@base_url}/api/zones/#{id}/security-groups"
  headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  opts = {method: :get, url: url, headers: headers}
  execute(opts)
end

#sync(id, params = {}, payload = {}) ⇒ Object



77
78
79
80
81
82
# File 'lib/morpheus/api/clouds_interface.rb', line 77

def sync(id, params={}, payload={})
  url = "#{@base_url}/api/zones/#{id}/sync"
  headers = { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  opts = {method: :post, url: url, headers: headers, payload: payload.to_json}
  execute(opts)
end

#update(id, payload) ⇒ Object



56
57
58
59
60
61
# File 'lib/morpheus/api/clouds_interface.rb', line 56

def update(id, payload)
  url = "#{@base_url}/api/zones/#{id}"
  headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  opts = {method: :put, url: url, headers: headers, payload: payload.to_json}
  execute(opts)
end

#update_wiki(id, payload) ⇒ Object



119
120
121
122
123
124
# File 'lib/morpheus/api/clouds_interface.rb', line 119

def update_wiki(id, payload)
  url = "#{@base_url}/api/zones/#{id}/wiki"
  headers = {authorization: "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  opts = {method: :put, url: url, headers: headers, payload: payload.to_json}
  execute(opts)
end

#wiki(id, params) ⇒ Object



112
113
114
115
116
117
# File 'lib/morpheus/api/clouds_interface.rb', line 112

def wiki(id, params)
  url = "#{@base_url}/api/zones/#{id}/wiki"
  headers = { params: params, authorization: "Bearer #{@access_token}" }
  opts = {method: :get, url: url, headers: headers}
  execute(opts)
end