Class: Morpheus::BlueprintsInterface

Inherits:
APIClient
  • Object
show all
Defined in:
lib/morpheus/api/blueprints_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, #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, #vdi, #vdi_allocations, #vdi_apps, #vdi_gateways, #vdi_pools, #virtual_images, #whitelabel_settings, #whoami, #wiki, #withopts

Constructor Details

This class inherits a constructor from Morpheus::APIClient

Instance Method Details

#create(payload) ⇒ Object



18
19
20
21
22
# File 'lib/morpheus/api/blueprints_interface.rb', line 18

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

#destroy(id) ⇒ Object



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

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

#duplicate(id, payload) ⇒ Object



46
47
48
49
50
# File 'lib/morpheus/api/blueprints_interface.rb', line 46

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

#get(id) ⇒ Object



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

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

#list(params = {}) ⇒ Object



12
13
14
15
16
# File 'lib/morpheus/api/blueprints_interface.rb', line 12

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

#list_tiers(payload = {}) ⇒ Object



58
59
60
61
62
# File 'lib/morpheus/api/blueprints_interface.rb', line 58

def list_tiers(payload={})
  url = "#{@base_url}/api/blueprints/tiers"
  headers = { params: {}, authorization: "Bearer #{@access_token}" }
  execute(method: :get, url: url, headers: headers)
end

#list_types(params = {}) ⇒ Object



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

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

#save_image(id, image_file, params = {}) ⇒ Object

multipart image upload



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

def save_image(id, image_file, params={})
  url = "#{@base_url}/api/blueprints/#{id}/image"
  headers = { :params => params, :authorization => "Bearer #{@access_token}"}
  payload = {}
  payload[:templateImage] = image_file
  payload[:multipart] = true
  execute(method: :post, url: url, headers: headers, payload: payload)
end

#update(id, payload) ⇒ Object



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

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

#update_permissions(id, payload) ⇒ Object



30
31
32
33
34
# File 'lib/morpheus/api/blueprints_interface.rb', line 30

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