Class: Morpheus::Cli::NetworkStaticRoutesCommand
Instance Attribute Summary
Attributes included from CliCommand
#no_prompt
Instance Method Summary
collapse
#current_account, #current_user, #current_user_permissions, included, #is_master_account, #load_whoami
#accounts_interface, #add_perms_options, #api_client, #apps_interface, #cloud_datastores_interface, #clouds_interface, #datastores_interface, #find_app_by_id, #find_app_by_name, #find_app_by_name_or_id, #find_cloud_by_id_for_provisioning, #find_cloud_by_name_for_provisioning, #find_cloud_by_name_or_id_for_provisioning, #find_cloud_resource_pool_by_name_or_id, #find_group_by_id_for_provisioning, #find_group_by_name_for_provisioning, #find_group_by_name_or_id_for_provisioning, #find_host_by_id, #find_host_by_name, #find_host_by_name_or_id, #find_instance_by_id, #find_instance_by_name, #find_instance_by_name_or_id, #find_instance_type_by_code, #find_instance_type_by_id, #find_instance_type_by_name, #find_instance_type_by_name_or_id, #find_instance_type_layout_by_id, #find_server_by_id, #find_server_by_name, #find_server_by_name_or_id, #find_workflow_by_id, #find_workflow_by_name, #find_workflow_by_name_or_id, #format_app_status, #format_blueprint_type, #format_container_connection_string, #format_container_status, #format_instance_connection_string, #format_instance_container_display_name, #format_instance_status, #format_metadata, #format_snapshot_status, #get_available_accounts, #get_available_clouds, #get_available_environments, #get_available_groups, #get_available_plans, #get_provision_type_for_zone_type, #get_static_environments, included, #instance_type_layouts_interface, #instance_types_interface, #instances_interface, #load_balance_protocols_dropdown, #options_interface, #parse_blueprint_type, #parse_host_id_list, #parse_instance_id_list, #parse_metadata, #parse_resource_id_list, #parse_server_id_list, #print_permissions, #prompt_evars, #prompt_exposed_ports, #prompt_instance_load_balancer, #prompt_metadata, #prompt_network_interfaces, #prompt_new_instance, #prompt_permissions, #prompt_permissions_v2, #prompt_resize_volumes, #prompt_security_groups, #prompt_service_plan_options, #prompt_volumes, #provision_types_interface, #reject_service_plan_option_types, #servers_interface
Methods included from CliCommand
#add_query_parameter, #apply_options, #build_common_options, #build_get_options, #build_list_options, #build_option_type_options, #build_standard_add_many_options, #build_standard_add_options, #build_standard_api_options, #build_standard_delete_options, #build_standard_get_options, #build_standard_list_options, #build_standard_post_options, #build_standard_put_options, #build_standard_remove_options, #build_standard_update_options, #command_description, #command_name, #confirm, #confirm!, #default_refresh_interval, #default_sigdig, #default_subcommand, #establish_remote_appliance_connection, #execute_api, #execute_api_payload, #execute_api_request, #find_all, #find_all_json, #find_by_id, #find_by_name, #find_by_name_or_id, #find_record, #find_record_json, #full_command_usage, #get_interface, #get_list_key, #get_object_key, #get_subcommand_description, #handle_each_payload, #handle_subcommand, included, #interactive?, #my_help_command, #my_terminal, #my_terminal=, #parse_array, #parse_bytes_param, #parse_get_options!, #parse_id_list, #parse_labels, #parse_list_options, #parse_list_options!, #parse_list_subtitles, #parse_options, #parse_parameter_as_resource_id!, #parse_passed_options, #parse_payload, #parse_query_options, #print, #print_error, #println, #prog_name, #puts, #puts_error, #raise_args_error, #raise_command_error, #render_response, #run_command_for_each_arg, #subcommand_aliases, #subcommand_description, #subcommand_usage, #subcommands, #usage, #validate_outfile, #verify_args!, #visible_subcommands
Instance Method Details
#_get(network, network_type, route_id, options) ⇒ Object
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
|
# File 'lib/morpheus/cli/commands/network_static_routes_command.rb', line 98
def _get(network, network_type, route_id, options)
@network_static_routes_interface.setopts(options)
if options[:dry_run]
if route_id.to_s =~ /\A\d{1,}\Z/
print_dry_run @network_static_routes_interface.dry.get_static_route(network['id'], route_id.to_i)
else
print_dry_run @network_static_routes_interface.dry.list_static_routes(network['id'], {name: route_id})
end
return
end
route = find_static_route(network['id'], route_id)
return 1 if route.nil?
render_response({route: route}, options, 'route') do
print_h1 "Network Route Details"
print cyan
description_cols = {}
network_type['routeOptionTypes'].sort_by {|it| it['displayOrder']}.each do |option_type|
description_cols[option_type['fieldLabel']] = lambda {|it| Morpheus::Cli::OptionTypes.get_option_value(it, option_type, true)}
end
print_description_list(description_cols, route)
end
println reset
end
|
#_list(network, network_type, options) ⇒ Object
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
|
# File 'lib/morpheus/cli/commands/network_static_routes_command.rb', line 54
def _list(network, network_type, options)
params = parse_list_options(options)
@network_static_routes_interface.setopts(options)
if options[:dry_run]
print_dry_run @network_static_routes_interface.dry.list_static_routes(network['id'], params)
return
end
json_response = @network_static_routes_interface.list_static_routes(network['id'], params)
render_response(json_response, options, 'networkRoutes') do
print_h1 "Network DHCP Static Routes For: #{network['name']}"
print_static_routes(network, network_type, json_response)
end
return 0, nil
end
|
#add(args) ⇒ Object
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
|
# File 'lib/morpheus/cli/commands/network_static_routes_command.rb', line 129
def add(args)
options = {:options=>{}}
params = {}
optparse = Morpheus::Cli::OptionParser.new do|opts|
opts.banner = subcommand_usage("[network]")
build_standard_add_options(opts, options)
opts. = "Create a network static route." + "\n" +
"[network] is required. This is the name or id of a network.\n";
end
optparse.parse!(args)
connect(options)
verify_args!(args:args, optparse:optparse, count:1)
network = find_network(args[0])
if network.nil?
return 1
end
network_type = find_network_type(network['type']['id'])
if network_type.nil?
return 1
end
if !network_type['hasStaticRoutes']
print_red_alert "Static routes not supported for #{network_type['name']}"
return 1
end
payload = nil
if options[:payload]
payload = options[:payload]
else
option_types = network_type['routeOptionTypes'].sort_by {|it| it['displayOrder']}
option_result = Morpheus::Cli::OptionTypes.prompt(option_types, options[:options].deep_merge({:context_map => {'networkRoute' => ''}}), @api_client, {'networkId' => network['id']}, nil, true)
payload = {'networkRoute' => params.deep_merge(option_result)}
if payload['networkRoute']['domain']
payload['networkRoute']['domain'].each do |k,v|
payload['networkRoute'][k] = v
end
end
payload['networkRoute'].delete('domain')
end
@network_static_routes_interface.setopts(options)
if options[:dry_run]
print_dry_run @network_static_routes_interface.dry.create_static_route(network['id'], payload)
return
end
json_response = @network_static_routes_interface.create_static_route(network['id'], payload)
render_response(json_response, options, 'networkRoute') do
print_green_success "\nAdded Network Static Route #{json_response['id']}\n"
_get(network, network_type, json_response['id'], options)
end
end
|
#connect(opts) ⇒ Object
11
12
13
14
15
16
17
18
|
# File 'lib/morpheus/cli/commands/network_static_routes_command.rb', line 11
def connect(opts)
@api_client = establish_remote_appliance_connection(opts)
@account_interface = @api_client.accounts
@network_static_routes_interface = @api_client.network_static_routes
@networks_interface = @api_client.networks
@network_types_interface = @api_client.network_types
@options_interface = @api_client.options
end
|
#get(args) ⇒ Object
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
|
# File 'lib/morpheus/cli/commands/network_static_routes_command.rb', line 70
def get(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[network] [network_route]")
build_standard_get_options(opts, options)
opts. = "Display details on a network Static Route." + "\n" +
"[network] is required. This is the name or id of a network.\n" +
"[network_route] is required. This is the id of a network route.\n"
end
optparse.parse!(args)
connect(options)
verify_args!(args:args, optparse:optparse, count:2)
network = find_network(args[0])
if network.nil?
return 1
end
network_type = find_network_type(network['type']['id'])
if network_type.nil?
return 1
end
_get(network, network_type, args[1], options)
end
|
#handle(args) ⇒ Object
20
21
22
|
# File 'lib/morpheus/cli/commands/network_static_routes_command.rb', line 20
def handle(args)
handle_subcommand(args)
end
|
#list(args) ⇒ Object
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
|
# File 'lib/morpheus/cli/commands/network_static_routes_command.rb', line 24
def list(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[network] [search]")
build_standard_list_options(opts, options)
opts. = "List network DHCP Static Routes." + "\n" +
"[network] is required. This is the name or id of a network."
end
optparse.parse!(args)
connect(options)
verify_args!(args:args, optparse:optparse, min:1)
if args.count > 1
options[:phrase] = args[1..-1].join(" ")
end
network = find_network(args[0])
if network.nil?
return 1
end
network_type = find_network_type(network['type']['id'])
if network_type.nil?
return 1
end
_list(network, network_type, options)
end
|
#remove(args) ⇒ Object
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
|
# File 'lib/morpheus/cli/commands/network_static_routes_command.rb', line 255
def remove(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[network] [network_route]")
build_standard_remove_options(opts, options)
opts. = "Delete a network static route.\n" +
"[network] is required. This is the name or id of an existing network.\n" +
"[network_route] is required. This is the name or id of an existing network static route."
end
optparse.parse!(args)
verify_args!(args:args, optparse:optparse, count:2)
connect(options)
network = find_network(args[0])
if network.nil?
return 1
end
network_type = find_network_type(network['type']['id'])
if network_type.nil?
return 1
end
route = find_static_route(network['id'], args[1])
return 1 if route.nil?
unless options[:yes] || ::Morpheus::Cli::OptionTypes::confirm("Are you sure you would like to remove the network static route '#{route['source']},#{route['destination']}' from network '#{network['name']}'?", options)
return 9, "aborted command"
end
@network_static_routes_interface.setopts(options)
if options[:dry_run]
print_dry_run @network_static_routes_interface.dry.delete_static_routes(network['id'], route['id'])
return
end
json_response = @network_static_routes_interface.delete_static_route(network['id'], route['id'])
render_response(json_response, options, 'networkRoute') do
print_green_success "\nDeleted Network Static Route '#{route['source']},#{route['destination']}'\n"
_list(network, network_type, options)
end
end
|
#update(args) ⇒ Object
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
|
# File 'lib/morpheus/cli/commands/network_static_routes_command.rb', line 189
def update(args)
options = {:options=>{}}
params = {}
optparse = Morpheus::Cli::OptionParser.new do|opts|
opts.banner = subcommand_usage("[network] [networkRoute]")
build_standard_update_options(opts, options)
opts. = "Update a network Static Route.\n" +
"[network] is required. This is the name or id of an existing network.\n" +
"[networkRoute] is required. This is the name or id of an existing network static route."
end
optparse.parse!(args)
verify_args!(args:args, optparse:optparse, count:2)
connect(options)
network = find_network(args[0])
if network.nil?
return 1
end
network_type = find_network_type(network['type']['id'])
if network_type.nil?
return 1
end
route = find_static_route(network['id'], args[1])
return 1 if route.nil?
payload = parse_payload(options) || {'networkRoute' => params}
payload['networkRoute'].deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options] && !payload['networkRoute'].nil?
if payload['networkRoute'].empty?
option_types = network_type['routeOptionTypes'].sort_by {|it| it['displayOrder']}
print_green_success "Nothing to update"
println cyan
print Morpheus::Cli::OptionTypes.display_option_types_help(
option_types,
{:include_context => true, :context_map => {'networkRoute' => ''}, :color => cyan, :title => "Available Network Static Route Options"}
)
exit 1
end
if payload['networkRoute']['domain']
payload['networkRoute']['domain'].each do |k,v|
payload['networkRoute'][k] = v
end
payload['networkRoute'].delete('domain')
end
@network_static_routes_interface.setopts(options)
if options[:dry_run]
print_dry_run @network_static_routes_interface.dry.update_static_route(network['id'], route['id'], payload)
return
end
update_payload = {'networkRoute' => route.select{|x| !['id', 'code', 'internalId', 'externalId', 'uniqueId', 'providerId', 'externalType', 'enabled', 'visible', 'externalInterface'].include?(x)}}.deep_merge(payload)
json_response = @network_static_routes_interface.update_static_route(network['id'], route['id'], update_payload)
render_response(json_response, options, 'networkRoute') do
print_green_success "\nUpdated Network Static Route #{route['id']}\n"
_get(network, network_type, route['id'], options)
end
end
|