Class: Morpheus::RolesInterface

Inherits:
APIClient show all
Defined in:
lib/morpheus/api/roles_interface.rb

Constant Summary

Constants inherited from APIClient

APIClient::CLIENT_ID

Instance Method Summary collapse

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_service_types, #backup_services, #backup_settings, #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, #doc, #dry, #dry_run, #environments, #execute, #execute_schedules, #execution_request, #file_copy_request, #forgot, #group_policies, #groups, #guidance, #guidance_settings, #health, #image_builder, #initialize, #inspect, #instance_types, #instances, #integration_types, #integrations, #interface, #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_monitors, #load_balancer_pools, #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_routers, #network_security_servers, #network_server_groups, #network_servers, #network_services, #network_static_routes, #network_types, #networks, #old_cypher, #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

#create(account_id, options) ⇒ Object



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

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

#destroy(account_id, id) ⇒ Object



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

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

#get(account_id, id) ⇒ Object



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

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

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



12
13
14
15
16
17
18
19
20
21
22
# File 'lib/morpheus/api/roles_interface.rb', line 12

def list(, options={})
  url = build_url()
  params = {}
  if 
    params['tenant'] = 
  end

  headers = { params: params, authorization: "Bearer #{@access_token}" }
  headers[:params].merge!(options)
  execute(method: :get, url: url, headers: headers)
end

#update(account_id, id, options) ⇒ Object



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

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

#update_blueprint(account_id, id, options) ⇒ Object



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

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

#update_catalog_item_type(account_id, id, options) ⇒ Object



79
80
81
82
83
84
# File 'lib/morpheus/api/roles_interface.rb', line 79

def update_catalog_item_type(, id, options)
  url = build_url(, id) + "/update-catalog-item-type"
  headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  payload = options
  execute(method: :put, url: url, headers: headers, payload: payload.to_json)
end

#update_cloud(account_id, id, options) ⇒ Object



72
73
74
75
76
77
# File 'lib/morpheus/api/roles_interface.rb', line 72

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

#update_group(account_id, id, options) ⇒ Object



65
66
67
68
69
70
# File 'lib/morpheus/api/roles_interface.rb', line 65

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

#update_instance_type(account_id, id, options) ⇒ Object



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

def update_instance_type(, id, options)
  url = build_url(, id) + "/update-instance-type"
  headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  payload = options
  execute(method: :put, url: url, headers: headers, payload: payload.to_json)
end

#update_permission(account_id, id, options) ⇒ Object



44
45
46
47
48
49
# File 'lib/morpheus/api/roles_interface.rb', line 44

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

#update_persona(account_id, id, options) ⇒ Object



86
87
88
89
90
91
# File 'lib/morpheus/api/roles_interface.rb', line 86

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

#update_report_type(account_id, id, options) ⇒ Object



100
101
102
103
104
105
# File 'lib/morpheus/api/roles_interface.rb', line 100

def update_report_type(, id, options)
  url = build_url(, id) + "/update-report-type"
  headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  payload = options
  execute(method: :put, url: url, headers: headers, payload: payload.to_json)
end

#update_task(account_id, id, options) ⇒ Object



107
108
109
110
111
112
# File 'lib/morpheus/api/roles_interface.rb', line 107

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

#update_task_set(account_id, id, options) ⇒ Object



114
115
116
117
118
119
# File 'lib/morpheus/api/roles_interface.rb', line 114

def update_task_set(, id, options)
  url = build_url(, id) + "/update-task-set"
  headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  payload = options
  execute(method: :put, url: url, headers: headers, payload: payload.to_json)
end

#update_vdi_pool(account_id, id, options) ⇒ Object



93
94
95
96
97
98
# File 'lib/morpheus/api/roles_interface.rb', line 93

def update_vdi_pool(, id, options)
  url = build_url(, id) + "/update-vdi-pool"
  headers = { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
  payload = options
  execute(method: :put, url: url, headers: headers, payload: payload.to_json)
end