Class: Morpheus::LibraryInstanceTypesInterface
- Inherits:
-
APIClient
- Object
- APIClient
- Morpheus::LibraryInstanceTypesInterface
- Defined in:
- lib/morpheus/api/library_instance_types_interface.rb
Instance Method Summary collapse
- #create(options) ⇒ Object
- #destroy(id, payload = {}) ⇒ Object
- #get(id, params = {}) ⇒ Object
- #list(params = {}) ⇒ Object
- #toggle_featured(id, params = {}, payload = {}) ⇒ Object
- #update(id, options) ⇒ Object
-
#update_logo(id, logo_file, dark_logo_file = nil) ⇒ Object
NOT json, multipart file upload.
Instance Method Details
#create(options) ⇒ Object
22 23 24 25 26 27 28 |
# File 'lib/morpheus/api/library_instance_types_interface.rb', line 22 def create() url = "#{@base_url}/api/library" headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } payload = opts = {method: :post, url: url, headers: headers, payload: payload.to_json} execute(opts) end |
#destroy(id, payload = {}) ⇒ Object
45 46 47 48 49 50 |
# File 'lib/morpheus/api/library_instance_types_interface.rb', line 45 def destroy(id, payload={}) url = "#{@base_url}/api/library/#{id}" headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :delete, url: url, headers: headers, payload: payload.to_json} execute(opts) end |
#get(id, params = {}) ⇒ Object
5 6 7 8 9 10 11 12 13 |
# File 'lib/morpheus/api/library_instance_types_interface.rb', line 5 def get(id, params={}) raise "#{self.class}.get() passed a blank id!" if id.to_s == '' # new URL is available in api 4.2 + # url = "#{@base_url}/api/library/#{id}" url = "#{@base_url}/api/library/#{id}" headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} execute(opts) end |
#list(params = {}) ⇒ Object
15 16 17 18 19 20 |
# File 'lib/morpheus/api/library_instance_types_interface.rb', line 15 def list(params={}) url = "#{@base_url}/api/library" headers = { params: params, authorization: "Bearer #{@access_token}" } opts = {method: :get, url: url, headers: headers} execute(opts) end |
#toggle_featured(id, params = {}, payload = {}) ⇒ Object
38 39 40 41 42 43 |
# File 'lib/morpheus/api/library_instance_types_interface.rb', line 38 def toggle_featured(id, params={}, payload={}) url = "#{@base_url}/api/library/#{id}/toggle-featured" headers = { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } opts = {method: :put, url: url, headers: headers, payload: payload.to_json} execute(opts) end |
#update(id, options) ⇒ Object
30 31 32 33 34 35 36 |
# File 'lib/morpheus/api/library_instance_types_interface.rb', line 30 def update(id, ) url = "#{@base_url}/api/library/#{id}" headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } payload = opts = {method: :put, url: url, headers: headers, payload: payload.to_json} execute(opts) end |
#update_logo(id, logo_file, dark_logo_file = nil) ⇒ Object
NOT json, multipart file upload
53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
# File 'lib/morpheus/api/library_instance_types_interface.rb', line 53 def update_logo(id, logo_file, dark_logo_file=nil) url = "#{@base_url}/api/library/#{id}/update-logo" headers = { :params => {}, :authorization => "Bearer #{@access_token}"} payload = {} # payload["instanceType"] = {} if logo_file # payload["instanceType"]["logo"] = logo_file payload["logo"] = logo_file end if dark_logo_file # payload["instanceType"]["darkLogo"] = dark_logo_file payload["darkLogo"] = dark_logo_file end if logo_file.is_a?(File) || dark_logo_file.is_a?(File) payload[:multipart] = true else headers['Content-Type'] = 'application/x-www-form-urlencoded' end execute(method: :post, url: url, headers: headers, payload: payload) end |