Class: Morpheus::NetworkRoutersInterface
- Inherits:
-
APIClient
- Object
- APIClient
- Morpheus::NetworkRoutersInterface
show all
- Defined in:
- lib/morpheus/api/network_routers_interface.rb
Constant Summary
Constants inherited
from APIClient
APIClient::CLIENT_ID
Instance Method Summary
collapse
-
#create(payload) ⇒ Object
-
#create_bgp_neighbor(router_id, payload = {}) ⇒ Object
-
#create_firewall_rule(router_id, payload = {}) ⇒ Object
-
#create_firewall_rule_group(router_id, payload = {}) ⇒ Object
-
#create_nat(router_id, payload = {}) ⇒ Object
-
#create_route(router_id, payload = {}) ⇒ Object
-
#destroy(id, payload = {}) ⇒ Object
-
#destroy_bgp_neighbor(router_id, nat_id, payload = {}) ⇒ Object
-
#destroy_firewall_rule(router_id, rule_id, payload = {}) ⇒ Object
-
#destroy_firewall_rule_group(router_id, group_id, payload = {}) ⇒ Object
-
#destroy_nat(router_id, nat_id, payload = {}) ⇒ Object
-
#destroy_route(router_id, rule_id, payload = {}) ⇒ Object
-
#get(id, params = {}) ⇒ Object
-
#get_firewall_rule_group(router_id, group_id, params = {}) ⇒ Object
-
#groups(params = {}) ⇒ Object
-
#list(params = {}) ⇒ Object
-
#list_firewall_rule_groups(router_id, params = {}) ⇒ Object
-
#servers(type_id, params = {}) ⇒ Object
-
#types(params = {}) ⇒ Object
-
#update(id, payload) ⇒ Object
-
#update_bgp_neighbor(router_id, nat_id, payload = {}) ⇒ Object
-
#update_firewall_rule(router_id, rule_id, payload = {}) ⇒ Object
-
#update_firewall_rule_group(router_id, group_id, payload = {}) ⇒ Object
-
#update_nat(router_id, nat_id, payload = {}) ⇒ Object
-
#update_permissions(router_id, payload) ⇒ 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, #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, #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(payload) ⇒ Object
20
21
22
23
24
25
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 20
def create(payload)
url = "#{@base_url}/api/networks/routers"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :post, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#create_bgp_neighbor(router_id, payload = {}) ⇒ Object
155
156
157
158
159
160
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 155
def create_bgp_neighbor(router_id, payload={})
url = "#{@base_url}/api/networks/routers/#{router_id}/bgp-neighbors"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :post, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#create_firewall_rule(router_id, payload = {}) ⇒ Object
99
100
101
102
103
104
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 99
def create_firewall_rule(router_id, payload={})
url = "#{@base_url}/api/networks/routers/#{router_id}/firewall-rules"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :post, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#create_firewall_rule_group(router_id, payload = {}) ⇒ Object
78
79
80
81
82
83
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 78
def create_firewall_rule_group(router_id, payload={})
url = "#{@base_url}/api/networks/routers/#{router_id}/firewall-rule-groups"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :post, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#create_nat(router_id, payload = {}) ⇒ Object
134
135
136
137
138
139
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 134
def create_nat(router_id, payload={})
url = "#{@base_url}/api/networks/routers/#{router_id}/nats"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :post, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#create_route(router_id, payload = {}) ⇒ Object
120
121
122
123
124
125
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 120
def create_route(router_id, payload={})
url = "#{@base_url}/api/networks/routers/#{router_id}/routes"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :post, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#destroy(id, payload = {}) ⇒ Object
55
56
57
58
59
60
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 55
def destroy(id, payload={})
url = "#{@base_url}/api/networks/routers/#{id}"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :delete, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#destroy_bgp_neighbor(router_id, nat_id, payload = {}) ⇒ Object
169
170
171
172
173
174
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 169
def destroy_bgp_neighbor(router_id, nat_id, payload={})
url = "#{@base_url}/api/networks/routers/#{router_id}/bgp-neighbors/#{nat_id}"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :delete, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#destroy_firewall_rule(router_id, rule_id, payload = {}) ⇒ Object
113
114
115
116
117
118
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 113
def destroy_firewall_rule(router_id, rule_id, payload={})
url = "#{@base_url}/api/networks/routers/#{router_id}/firewall-rules/#{rule_id}"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :delete, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#destroy_firewall_rule_group(router_id, group_id, payload = {}) ⇒ Object
92
93
94
95
96
97
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 92
def destroy_firewall_rule_group(router_id, group_id, payload={})
url = "#{@base_url}/api/networks/routers/#{router_id}/firewall-rule-groups/#{group_id}"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :delete, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#destroy_nat(router_id, nat_id, payload = {}) ⇒ Object
148
149
150
151
152
153
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 148
def destroy_nat(router_id, nat_id, payload={})
url = "#{@base_url}/api/networks/routers/#{router_id}/nats/#{nat_id}"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :delete, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#destroy_route(router_id, rule_id, payload = {}) ⇒ Object
127
128
129
130
131
132
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 127
def destroy_route(router_id, rule_id, payload={})
url = "#{@base_url}/api/networks/routers/#{router_id}/routes/#{rule_id}"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :delete, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#get(id, params = {}) ⇒ Object
12
13
14
15
16
17
18
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 12
def get(id, params={})
raise "#{self.class}.get() passed a blank id!" if id.to_s == ''
url = "#{@base_url}/api/networks/routers/#{id}"
= { params: params, authorization: "Bearer #{@access_token}" }
opts = {method: :get, url: url, headers: }
execute(opts)
end
|
#get_firewall_rule_group(router_id, group_id, params = {}) ⇒ Object
69
70
71
72
73
74
75
76
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 69
def get_firewall_rule_group(router_id, group_id, params={})
raise "#{self.class}.get() passed a blank router id!" if router_id.to_s == ''
raise "#{self.class}.get() passed a blank group id!" if group_id.to_s == ''
url = "#{@base_url}/api/networks/routers/#{router_id}/firewall-rule-groups/#{group_id}"
= { params: params, authorization: "Bearer #{@access_token}" }
opts = {method: :get, url: url, headers: }
execute(opts)
end
|
#groups(params = {}) ⇒ Object
41
42
43
44
45
46
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 41
def groups(params={})
url = "#{@base_url}/api/network-router-groups"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json', params: params }
opts = {method: :get, url: url, headers: }
execute(opts)
end
|
#list(params = {}) ⇒ Object
5
6
7
8
9
10
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 5
def list(params={})
url = "#{@base_url}/api/networks/routers"
= { params: params, authorization: "Bearer #{@access_token}" }
opts = {method: :get, url: url, headers: }
execute(opts)
end
|
#list_firewall_rule_groups(router_id, params = {}) ⇒ Object
62
63
64
65
66
67
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 62
def list_firewall_rule_groups(router_id, params={})
url = "#{@base_url}/api/networks/routers/#{router_id}/firewall-rule-groups"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json', params: params }
opts = {method: :get, url: url, headers: }
execute(opts)
end
|
#servers(type_id, params = {}) ⇒ Object
48
49
50
51
52
53
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 48
def servers(type_id, params={})
url = "#{@base_url}/api/network-router-types/#{type_id}/servers"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json', params: params }
opts = {method: :get, url: url, headers: }
execute(opts)
end
|
#types(params = {}) ⇒ Object
34
35
36
37
38
39
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 34
def types(params={})
url = "#{@base_url}/api/network-router-types"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json', params: params }
opts = {method: :get, url: url, headers: }
execute(opts)
end
|
#update(id, payload) ⇒ Object
27
28
29
30
31
32
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 27
def update(id, payload)
url = "#{@base_url}/api/networks/routers/#{id}"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :put, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#update_bgp_neighbor(router_id, nat_id, payload = {}) ⇒ Object
162
163
164
165
166
167
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 162
def update_bgp_neighbor(router_id, nat_id, payload={})
url = "#{@base_url}/api/networks/routers/#{router_id}/bgp-neighbors/#{nat_id}"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :put, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#update_firewall_rule(router_id, rule_id, payload = {}) ⇒ Object
106
107
108
109
110
111
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 106
def update_firewall_rule(router_id, rule_id, payload={})
url = "#{@base_url}/api/networks/routers/#{router_id}/firewall-rules/#{rule_id}"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :put, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#update_firewall_rule_group(router_id, group_id, payload = {}) ⇒ Object
85
86
87
88
89
90
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 85
def update_firewall_rule_group(router_id, group_id, payload={})
url = "#{@base_url}/api/networks/routers/#{router_id}/firewall-rule-groups/#{group_id}"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :put, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#update_nat(router_id, nat_id, payload = {}) ⇒ Object
141
142
143
144
145
146
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 141
def update_nat(router_id, nat_id, payload={})
url = "#{@base_url}/api/networks/routers/#{router_id}/nats/#{nat_id}"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
opts = {method: :put, url: url, headers: , payload: payload.to_json}
execute(opts)
end
|
#update_permissions(router_id, payload) ⇒ Object
176
177
178
179
180
|
# File 'lib/morpheus/api/network_routers_interface.rb', line 176
def update_permissions(router_id, payload)
url = "#{@base_url}/api/networks/routers/#{router_id}/permissions"
= { :authorization => "Bearer #{@access_token}", 'Content-Type' => 'application/json' }
execute(method: :put, url: url, headers: , payload: payload.to_json)
end
|