Class: Morpheus::LoadBalancersInterface

Inherits:
APIClient
  • Object
show all
Defined in:
lib/morpheus/api/load_balancers_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, #cloud_datastores, #cloud_folders, #cloud_policies, #cloud_resource_pools, #clouds, #clusters, #common_interface_options, #containers, #custom_instance_types, #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, #inspect, #instance_types, #instances, #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_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, #security_groups, #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, #virtual_images, #whitelabel_settings, #whoami, #wiki, #withopts

Constructor Details

#initialize(access_token, refresh_token, expires_at = nil, base_url = nil) ⇒ LoadBalancersInterface

Returns a new instance of LoadBalancersInterface.



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

def initialize(access_token, refresh_token,expires_at = nil, base_url=nil) 
  @access_token = access_token
  @refresh_token = refresh_token
  @base_url = base_url
  @expires_at = expires_at
end

Instance Method Details

#create(options) ⇒ Object



52
53
54
55
56
57
# File 'lib/morpheus/api/load_balancers_interface.rb', line 52

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

#destroy(id) ⇒ Object



59
60
61
62
63
# File 'lib/morpheus/api/load_balancers_interface.rb', line 59

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

#get(options = nil) ⇒ Object



31
32
33
34
35
36
37
38
39
40
41
42
# File 'lib/morpheus/api/load_balancers_interface.rb', line 31

def get(options=nil)
  url = "#{@base_url}/api/load-balancers"
  headers = { params: {}, authorization: "Bearer #{@access_token}" }
  if options.is_a?(Hash)
    headers[:params].merge!(options)
  elsif options.is_a?(Numeric)
    url = "#{@base_url}/api/load-balancers/#{options}"
  elsif options.is_a?(String)
    headers[:params]['name'] = options
  end
  execute(method: :get, url: url, headers: headers)
end

#list(params = {}) ⇒ Object



24
25
26
27
28
29
# File 'lib/morpheus/api/load_balancers_interface.rb', line 24

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

#load_balancer_types(options = {}) ⇒ Object



11
12
13
14
15
16
17
18
19
20
21
22
# File 'lib/morpheus/api/load_balancers_interface.rb', line 11

def load_balancer_types(options={})
  url = "#{@base_url}/api/load-balancer-types"
  headers = { params: {}, authorization: "Bearer #{@access_token}" }
  if options.is_a?(Hash)
    headers[:params].merge!(options)
  elsif options.is_a?(Numeric)
    url = "#{@base_url}/api/load-balancer-types/#{options}"
  elsif options.is_a?(String)
    headers[:params]['name'] = options
  end
  execute(method: :get, url: url, headers: headers)
end

#update(id, options) ⇒ Object



44
45
46
47
48
49
# File 'lib/morpheus/api/load_balancers_interface.rb', line 44

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