Class: Morpheus::KeyPairsInterface

Inherits:
APIClient
  • Object
show all
Defined in:
lib/morpheus/api/key_pairs_interface.rb

Instance Method Summary collapse

Methods inherited from APIClient

#accounts, #app_templates, #apps, #archive_buckets, #archive_files, #auth, #cloud_policies, #clouds, #containers, #custom_instance_types, #dashboard, #deploy, #deployments, #dry, #dry_run, #execute, #group_policies, #groups, #image_builder, #instance_types, #instances, #key_pairs, #license, #load_balancers, #logs, #monitoring, #network_domains, #network_groups, #network_pool_servers, #network_pools, #network_proxies, #network_services, #networks, #option_type_lists, #option_types, #options, #policies, #provision_types, #roles, #security_group_rules, #security_groups, #servers, #set_ssl_verification_enabled, #setup, #ssl_verification_enabled?, #storage_providers, #task_sets, #tasks, #user_groups, #users, #virtual_images, #whoami

Constructor Details

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

Returns a new instance of KeyPairsInterface.



4
5
6
7
8
9
# File 'lib/morpheus/api/key_pairs_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(account_id, options) ⇒ Object



29
30
31
32
33
34
35
36
# File 'lib/morpheus/api/key_pairs_interface.rb', line 29

def create(, options)
  url = "#{@base_url}/api/key-pairs"
  headers = { :params => {}, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  headers[:params]['accountId'] =  if 
  payload = options
  opts = {method: :post, url: url, headers: headers, payload: payload.to_json}
  execute(opts)
end

#destroy(account_id, id) ⇒ Object



47
48
49
50
51
52
53
# File 'lib/morpheus/api/key_pairs_interface.rb', line 47

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

#get(account_id, id) ⇒ Object



11
12
13
14
15
16
17
18
# File 'lib/morpheus/api/key_pairs_interface.rb', line 11

def get(, id)
  raise "#{self.class}.get() passed a blank id!" if id.to_s == ''
  url = "#{@base_url}/api/key-pairs/#{id}"
  headers = { params: {}, authorization: "Bearer #{@access_token}" }
  headers[:params]['accountId'] =  if 
  opts = {method: :get, url: url, headers: headers}
  execute(opts)
end

#list(account_id, options = {}) ⇒ Object



20
21
22
23
24
25
26
27
# File 'lib/morpheus/api/key_pairs_interface.rb', line 20

def list(, options={})
  url = "#{@base_url}/api/key-pairs"
  headers = { params: {}, authorization: "Bearer #{@access_token}" }
  headers[:params].merge!(options)
  headers[:params]['accountId'] =  if 
  opts = {method: :get, url: url, headers: headers}
  execute(opts)
end

#update(account_id, id, options) ⇒ Object



38
39
40
41
42
43
44
45
# File 'lib/morpheus/api/key_pairs_interface.rb', line 38

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