Class: Morpheus::CypherInterface
- Defined in:
- lib/morpheus/api/cypher_interface.rb
Constant Summary
Constants inherited from APIClient
Instance Method Summary collapse
- #base_path ⇒ Object
- #create(item_key, params = {}, payload = {}) ⇒ Object
- #destroy(item_key, params = {}) ⇒ Object
- #get(item_key, params = {}) ⇒ Object
-
#list(item_key = nil, params = {}) ⇒ Object
list url is the same as get but uses $itemKey/?list=true method: ‘LIST’ would be neat though.
-
#update(item_key, params = {}, payload = {}) ⇒ Object
update is not even needed I don’t think, same as POST.
Methods inherited from APIClient
#account_groups, #account_users, #accounts, #activity, #appliance_settings, #approvals, #apps, #archive_buckets, #archive_files, #audit, #auth, #authorization_required?, #backup_jobs, #backup_restores, #backup_results, #backup_service_types, #backup_services, #backup_settings, #backup_types, #backups, #billing, #blueprints, #budgets, #catalog, #catalog_item_types, #certificate_types, #certificates, #client_id, #client_id=, #clients, #cloud_datastores, #cloud_folders, #cloud_policies, #cloud_resource_pools, #clouds, #clusters, #common_interface_options, #containers, #credential_types, #credentials, #cypher, #dashboard, #datastores, #default_content_type, #default_timeout, #deploy, #deployments, #dry, #dry_run, #email_templates, #environments, #execute, #execute_schedules, #execution_request, #file_copy_request, #forgot, #group_policies, #groups, #guidance, #guidance_settings, #health, #hub, #image_builder, #initialize, #inspect, #instance_types, #instances, #integration_types, #integrations, #interface, #invoice_line_items, #invoices, #jobs, #key_pairs, #library_cluster_layouts, #library_cluster_packages, #library_container_scripts, #library_container_templates, #library_container_types, #library_container_upgrades, #library_instance_types, #library_layouts, #library_operating_systems, #library_spec_template_types, #library_spec_templates, #license, #load_balancer_monitors, #load_balancer_pool_nodes, #load_balancer_pools, #load_balancer_pools_secondary, #load_balancer_profiles, #load_balancer_types, #load_balancer_virtual_servers, #load_balancers, #log_settings, #logged_in?, #login, #logout, #logs, #monitoring, #monitoring_settings, #network_dhcp_relays, #network_dhcp_servers, #network_domain_records, #network_domains, #network_edge_clusters, #network_floating_ips, #network_groups, #network_pool_ips, #network_pool_server_types, #network_pool_servers, #network_pools, #network_proxies, #network_resource_types, #network_routers, #network_security_server_types, #network_security_servers, #network_server_groups, #network_server_services, #network_server_types, #network_servers, #network_services, #network_static_routes, #network_types, #networks, #old_cypher, #option_type_forms, #option_type_lists, #option_types, #options, #packages, #ping, #plugins, #policies, #power_schedules, #price_sets, #prices, #processes, #projects, #provision_types, #provisioning_license_types, #provisioning_licenses, #provisioning_settings, #reports, #resource_pool_groups, #rest, #roles, #scale_thresholds, #search, #security_group_rules, #security_groups, #security_package_types, #security_packages, #security_scans, #server_types, #servers, #service_plans, #set_ssl_verification_enabled, #setopts, #setup, #snapshots, #ssl_verification_enabled?, #storage_providers, #storage_server_types, #storage_servers, #storage_volume_types, #storage_volumes, #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_path ⇒ Object
6 7 8 |
# File 'lib/morpheus/api/cypher_interface.rb', line 6 def base_path "/api/cypher" end |
#create(item_key, params = {}, payload = {}) ⇒ Object
26 27 28 29 30 |
# File 'lib/morpheus/api/cypher_interface.rb', line 26 def create(item_key, params={}, payload={}) url = "#{@base_url}#{base_path}/#{escape_item_key(item_key)}" headers = { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } execute({method: :post, url: url, headers: headers, payload: payload.to_json}) end |
#destroy(item_key, params = {}) ⇒ Object
39 40 41 42 43 |
# File 'lib/morpheus/api/cypher_interface.rb', line 39 def destroy(item_key, params={}) url = "#{@base_url}#{base_path}/#{escape_item_key(item_key)}" headers = { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } execute({method: :delete, url: url, headers: headers}) end |
#get(item_key, params = {}) ⇒ Object
10 11 12 13 14 15 |
# File 'lib/morpheus/api/cypher_interface.rb', line 10 def get(item_key, params={}) raise "#{self.class}.get() passed a blank item_key!" if item_key.to_s == '' url = "#{@base_url}#{base_path}/#{escape_item_key(item_key)}" headers = { :params => params, :authorization => "Bearer #{@access_token}" } execute({method: :get, url: url, headers: headers}) end |
#list(item_key = nil, params = {}) ⇒ Object
list url is the same as get but uses $itemKey/?list=true method: ‘LIST’ would be neat though
19 20 21 22 23 24 |
# File 'lib/morpheus/api/cypher_interface.rb', line 19 def list(item_key=nil, params={}) url = item_key ? "#{@base_url}#{base_path}/#{escape_item_key(item_key)}" : "#{@base_url}#{base_path}" params.merge!({list:'true'}) # ditch this probably headers = { :params => params, :authorization => "Bearer #{@access_token}" } execute({method: :get, url: url, headers: headers}) end |
#update(item_key, params = {}, payload = {}) ⇒ Object
update is not even needed I don’t think, same as POST
33 34 35 36 37 |
# File 'lib/morpheus/api/cypher_interface.rb', line 33 def update(item_key, params={}, payload={}) url = "#{@base_url}#{base_path}/#{escape_item_key(item_key)}" headers = { :params => params, :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' } execute({method: :put, url: url, headers: headers, payload: payload.to_json}) end |