Class: Morpheus::RolesInterface
Constant Summary
Constants inherited
from APIClient
APIClient::CLIENT_ID
Instance Method Summary
collapse
-
#create(account_id, options, params = {}) ⇒ Object
-
#destroy(account_id, id, params = {}) ⇒ Object
-
#get(account_id, id, params = {}) ⇒ Object
-
#list(account_id, options = {}) ⇒ Object
-
#update(account_id, id, options, params = {}) ⇒ Object
-
#update_blueprint(account_id, id, options) ⇒ Object
-
#update_catalog_item_type(account_id, id, options) ⇒ Object
-
#update_cloud(account_id, id, options) ⇒ Object
-
#update_group(account_id, id, options) ⇒ Object
-
#update_instance_type(account_id, id, options) ⇒ Object
-
#update_permission(account_id, id, options) ⇒ Object
-
#update_persona(account_id, id, options) ⇒ Object
-
#update_report_type(account_id, id, options) ⇒ Object
-
#update_task(account_id, id, options) ⇒ Object
-
#update_task_set(account_id, id, options) ⇒ Object
-
#update_vdi_pool(account_id, id, options) ⇒ Object
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
Instance Method Details
#create(account_id, options, params = {}) ⇒ Object
24
25
26
27
28
29
|
# File 'lib/morpheus/api/roles_interface.rb', line 24
def create(account_id, options, params={})
url = build_url(account_id)
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
payload = options
execute(method: :post, url: url, headers: , payload: payload.to_json, params: params)
end
|
#destroy(account_id, id, params = {}) ⇒ Object
38
39
40
41
42
|
# File 'lib/morpheus/api/roles_interface.rb', line 38
def destroy(account_id, id, params={})
url = build_url(account_id, id)
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
execute(method: :delete, url: url, headers: , params: params)
end
|
#get(account_id, id, params = {}) ⇒ Object
5
6
7
8
9
10
|
# File 'lib/morpheus/api/roles_interface.rb', line 5
def get(account_id, id, params={})
raise "#{self.class}.get() passed a blank id!" if id.to_s == ''
url = build_url(account_id, id)
= { params: params, authorization: "Bearer #{@access_token}" }
execute(method: :get, url: url, 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(account_id, options={})
url = build_url(account_id)
params = {}
if account_id
params['tenant'] = account_id
end
= { params: params, authorization: "Bearer #{@access_token}" }
[:params].merge!(options)
execute(method: :get, url: url, headers: )
end
|
#update(account_id, id, options, params = {}) ⇒ Object
31
32
33
34
35
36
|
# File 'lib/morpheus/api/roles_interface.rb', line 31
def update(account_id, id, options, params={})
url = build_url(account_id, id)
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
payload = options
execute(method: :put, url: url, headers: , payload: payload.to_json, params: params)
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(account_id, id, options)
url = build_url(account_id, id) + "/update-blueprint"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
payload = options
execute(method: :put, url: url, 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(account_id, id, options)
url = build_url(account_id, id) + "/update-catalog-item-type"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
payload = options
execute(method: :put, url: url, 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(account_id, id, options)
url = build_url(account_id, id) + "/update-cloud"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
payload = options
execute(method: :put, url: url, 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(account_id, id, options)
url = build_url(account_id, id) + "/update-group"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
payload = options
execute(method: :put, url: url, 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(account_id, id, options)
url = build_url(account_id, id) + "/update-instance-type"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
payload = options
execute(method: :put, url: url, 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(account_id, id, options)
url = build_url(account_id, id) + "/update-permission"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
payload = options
execute(method: :put, url: url, 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(account_id, id, options)
url = build_url(account_id, id) + "/update-persona"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
payload = options
execute(method: :put, url: url, 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(account_id, id, options)
url = build_url(account_id, id) + "/update-report-type"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
payload = options
execute(method: :put, url: url, 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(account_id, id, options)
url = build_url(account_id, id) + "/update-task"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
payload = options
execute(method: :put, url: url, 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(account_id, id, options)
url = build_url(account_id, id) + "/update-task-set"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
payload = options
execute(method: :put, url: url, 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(account_id, id, options)
url = build_url(account_id, id) + "/update-vdi-pool"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
payload = options
execute(method: :put, url: url, headers: , payload: payload.to_json)
end
|