Class: Morpheus::IntegrationsInterface

Inherits:
RestInterface show all
Defined in:
lib/morpheus/api/integrations_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 RestInterface

#create, #destroy, #get, #list, #update

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

#base_pathObject



5
6
7
# File 'lib/morpheus/api/integrations_interface.rb', line 5

def base_path
  "/api/integrations"
end

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



27
28
29
30
# File 'lib/morpheus/api/integrations_interface.rb', line 27

def create_object(id, payload, params={}, headers={})
  validate_id!(id)
  execute(method: :post, url: "#{base_path}/#{id}/objects", params: params, payload: payload, headers: headers)
end

#destroy_object(id, obj_id, params = {}, headers = {}) ⇒ Object



38
39
40
41
42
# File 'lib/morpheus/api/integrations_interface.rb', line 38

def destroy_object(id, obj_id, params = {}, headers={})
  validate_id!(id)
  validate_id!(obj_id)
  execute(method: :delete, url: "#{base_path}/#{id}/objects/#{obj_id}", params: params, headers: headers)
end

#get_object(id, obj_id, params = {}, headers = {}) ⇒ Object



21
22
23
24
25
# File 'lib/morpheus/api/integrations_interface.rb', line 21

def get_object(id, obj_id, params={}, headers={})
  validate_id!(id)
  validate_id!(obj_id)
  execute(method: :get, url: "#{base_path}/#{id}/objects/#{obj_id}", params: params, headers: headers)
end

#list_objects(id, params = {}, headers = {}) ⇒ Object

Integration Objects CRUD



16
17
18
19
# File 'lib/morpheus/api/integrations_interface.rb', line 16

def list_objects(id, params={}, headers={})
  validate_id!(id)
  execute(method: :get, url: "#{base_path}/#{id}/objects", params: params, headers: headers)
end

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



9
10
11
12
# File 'lib/morpheus/api/integrations_interface.rb', line 9

def refresh(id, params={}, payload={}, headers={})
  validate_id!(id)
  execute(method: :post, url: "#{base_path}/#{id}/refresh", params: params, payload: payload, headers: headers)
end

#update_object(id, obj_id, payload, params = {}, headers = {}) ⇒ Object



32
33
34
35
36
# File 'lib/morpheus/api/integrations_interface.rb', line 32

def update_object(id, obj_id, payload, params={}, headers={})
  validate_id!(id)
  validate_id!(obj_id)
  execute(method: :put, url: "#{base_path}/#{id}/objects/#{obj_id}", params: params, payload: payload, headers: headers)
end