Class: Morpheus::Cli::NetworkPoolsCommand
Instance Attribute Summary
Attributes included from CliCommand
#no_prompt
Instance Method Summary
collapse
#cloud_type_for_id, #cloud_type_for_name, #cloud_type_for_name_or_id, #clouds_interface, #find_cloud_by_id, #find_cloud_by_name, #find_cloud_by_name_or_id, #find_group_by_id, #find_group_by_name, #find_group_by_name_or_id, #find_network_by_id, #find_network_by_name, #find_network_by_name_or_id, #find_network_group_by_id, #find_network_group_by_name, #find_network_group_by_name_or_id, #find_network_server_type_by_id, #find_network_server_type_by_name, #find_network_server_type_by_name_or_code, #find_network_server_type_by_name_or_id, #find_network_type_by_id, #find_network_type_by_name, #find_network_type_by_name_or_id, #find_resource_pool_by_id, #find_resource_pool_by_name, #find_resource_pool_by_name_or_id, #find_resource_pool_group_by_id, #find_resource_pool_group_by_name, #find_resource_pool_group_by_name_or_id, #find_subnet_by_id, #find_subnet_by_name, #find_subnet_by_name_or_id, #find_subnet_type_by_id, #find_subnet_type_by_name, #find_subnet_type_by_name_or_id, #format_network_pool_server_status, #get_available_cloud_types, #groups_interface, included, #network_groups_interface, #network_pool_server_column_definitions, #network_pool_server_list_column_definitions, #network_pool_server_type_column_definitions, #network_pool_server_type_list_column_definitions, #network_server_type_column_definitions, #network_server_type_list_column_definitions, #network_types_interface, #networks_interface, #prompt_for_network, #prompt_for_networks, #prompt_for_pools, #prompt_for_subnets, #resource_pool_groups_interface, #resource_pools_interface, #subnet_types_interface, #subnets_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
Constructor Details
Returns a new instance of NetworkPoolsCommand.
12
13
14
|
# File 'lib/morpheus/cli/commands/network_pools_command.rb', line 12
def initialize()
end
|
Instance Method Details
#add(args) ⇒ Object
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
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
254
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
|
# File 'lib/morpheus/cli/commands/network_pools_command.rb', line 174
def add(args)
options = {}
ip_range_list = nil
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage()
opts.on('--name VALUE', String, "Name for this network pool") do |val|
options['name'] = val
end
opts.on('--type VALUE', String, "Type of network pool") do |val|
options['type'] = val
end
opts.on('--ip-ranges LIST', Array, "IP Ranges, comma separated list IP ranges in the format start-end or an IPv6 CIDR") do |list|
if list.size == 1 && list[0] == 'null' ip_range_list = []
else
ip_range_list = parse_ipv4_and_ipv6_ranges(list)
end
end
build_common_options(opts, options, [:options, :payload, :json, :dry_run, :quiet, :remote])
opts. = "Create a new network pool." + "\n" +
"[name] is required and can be passed as --name instead."
end
optparse.parse!(args)
if args.count > 1
print_error Morpheus::Terminal.angry_prompt
puts_error "wrong number of arguments, expected 0-1 and got #{args.count}\n#{optparse}"
return 1
end
connect(options)
begin
options.deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
if args[0]
options['name'] = args[0]
end
payload = nil
if options[:payload]
payload = options[:payload]
else
payload = {
'networkPool' => {
}
}
payload['networkPool'].deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
if options['name']
payload['networkPool']['name'] = options['name']
else
v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'name', 'fieldLabel' => 'Name', 'type' => 'text', 'required' => true, 'description' => 'Name for this network pool.'}], options)
payload['networkPool']['name'] = v_prompt['name']
end
network_type_code = nil
v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'type', 'fieldLabel' => 'Pool Type', 'type' => 'select', 'optionSource' => 'networkPoolTypes', 'required' => true, 'description' => 'Choose a network pool type.'}], options, @api_client, {})
network_type_code = v_prompt['type']
if network_type_code.nil? || network_type_code.to_s.empty?
print_red_alert "Pool Type not found by code '#{options['type']}'"
return 1
end
if network_type_code.to_s =~ /\A\d{1,}\Z/
payload['networkPool']['type'] = {'id' => network_type_code }
else
payload['networkPool']['type'] = {'code' => network_type_code }
end
if ip_range_list
payload['networkPool']['ipRanges'] = ip_range_list
else
v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'ipRanges', 'fieldLabel' => 'IP Ranges', 'type' => 'text', 'required' => true, 'description' => 'IP Ranges in the pool, comma separated list of ranges in the format start-end or an IPv6 CIDR'}], options)
ip_range_list = parse_ipv4_and_ipv6_ranges(v_prompt['ipRanges'].to_s.split(","))
payload['networkPool']['ipRanges'] = ip_range_list
end
end
@network_pools_interface.setopts(options)
if options[:dry_run]
print_dry_run @network_pools_interface.dry.create(payload)
return
end
json_response = @network_pools_interface.create(payload)
if options[:json]
print JSON.pretty_generate(json_response)
print "\n"
elsif !options[:quiet]
network_pool = json_response['networkPool']
print_green_success "Added network pool #{network_pool['name']}"
get([network_pool['id']])
end
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
exit 1
end
end
|
#add_ip(args) ⇒ Object
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
|
# File 'lib/morpheus/cli/commands/network_pools_command.rb', line 591
def add_ip(args)
options = {}
params = {}
next_free_ip = false
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[network-pool] [ip] [--next]")
opts.on('--ip-address VALUE', String, "IP Address for this network pool IP") do |val|
options[:options]['ipAddress'] = val
end
opts.on('--next-free-ip', '--next-free-ip', "Use the next available ip address. This can be used instead of specifying an ip address") do
next_free_ip = true
end
opts.on('--hostname VALUE', String, "Hostname for this network pool IP") do |val|
options[:options]['hostname'] = val
end
build_common_options(opts, options, [:options, :payload, :json, :dry_run, :quiet, :remote])
opts. = "Create a new network pool IP." + "\n" +
"[network-pool] is required. This is the name or id of a network pool.\n" +
"[ip] is required or --next-free-ip to use the next available address instead."
end
optparse.parse!(args)
if next_free_ip
verify_args!(args:args, count:1, optparse:optparse)
else
verify_args!(args:args, min:1, max:2, optparse:optparse)
end
connect(options)
begin
network_pool = find_network_pool_by_name_or_id(args[0])
return 1 if network_pool.nil?
network_pool_id = network_pool['id']
if args[1]
options[:options]['ipAddress'] = args[1]
end
payload = nil
if options[:payload]
payload = options[:payload]
else
payload = {
'networkPoolIp' => {
}
}
payload['networkPoolIp'].deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
unless next_free_ip
v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'ipAddress', 'fieldLabel' => 'IP Address', 'type' => 'text', 'required' => true, 'description' => 'IP Address for this network pool IP.'}], options[:options])
payload['networkPoolIp']['ipAddress'] = v_prompt['ipAddress'] unless v_prompt['ipAddress'].to_s.empty?
end
v_prompt = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'hostname', 'fieldLabel' => 'Hostname', 'type' => 'text', 'required' => true, 'description' => 'Hostname for this network pool IP.'}], options[:options])
payload['networkPoolIp']['hostname'] = v_prompt['hostname'] unless v_prompt['hostname'].to_s.empty?
end
@network_pool_ips_interface.setopts(options)
if options[:dry_run]
print_dry_run @network_pool_ips_interface.dry.create(network_pool_id, payload)
return
end
json_response = @network_pool_ips_interface.create(network_pool_id, payload)
if options[:json]
print JSON.pretty_generate(json_response)
print "\n"
elsif !options[:quiet]
network_pool_ip = json_response['networkPoolIp']
print_green_success "Added network pool IP #{network_pool_ip['ipAddress']}"
get_ip([network_pool['id'], network_pool_ip['id']])
end
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
exit 1
end
end
|
#connect(opts) ⇒ Object
16
17
18
19
20
21
22
23
|
# File 'lib/morpheus/cli/commands/network_pools_command.rb', line 16
def connect(opts)
@api_client = establish_remote_appliance_connection(opts)
@network_pools_interface = @api_client.network_pools
@network_pool_ips_interface = @api_client.network_pool_ips
@network_pool_servers_interface = @api_client.network_pool_servers
@clouds_interface = @api_client.clouds
@options_interface = @api_client.options
end
|
#get(args) ⇒ Object
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
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
|
# File 'lib/morpheus/cli/commands/network_pools_command.rb', line 106
def get(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[network-pool]")
build_common_options(opts, options, [:json, :yaml, :csv, :fields, :dry_run, :remote])
opts. = "Get details about a network pool." + "\n" +
"[network-pool] is required. This is the name or id of a network pool."
end
optparse.parse!(args)
if args.count != 1
print_error Morpheus::Terminal.angry_prompt
puts_error "#{command_name} missing argument: [network-pool]\n#{optparse}"
return 1
end
connect(options)
begin
@network_pools_interface.setopts(options)
if options[:dry_run]
if args[0].to_s =~ /\A\d{1,}\Z/
print_dry_run @network_pools_interface.dry.get(args[0].to_i)
else
print_dry_run @network_pools_interface.dry.list({name:args[0]})
end
return
end
network_pool = find_network_pool_by_name_or_id(args[0])
return 1 if network_pool.nil?
json_response = {'networkPool' => network_pool} network_pool = json_response['networkPool']
if options[:json]
puts as_json(json_response, options, "networkPool")
return 0
elsif options[:yaml]
puts as_yaml(json_response, options, "networkPool")
return 0
elsif options[:csv]
puts records_as_csv([network_pool], options)
return 0
end
print_h1 "Network Pool Details"
print cyan
description_cols = {
"ID" => 'id',
"Name" => lambda {|it| !it['displayName'].to_s.empty? ? it['displayName'] : it['name'] },
"Network" => lambda {|it| it['name'] },
"Type" => lambda {|it| it['type'] ? it['type']['name'] : '' },
"Total IPs" => lambda {|it| it['ipCount'] },
"Free IPs" => lambda {|it| it['freeCount'] },
}
print_description_list(description_cols, network_pool)
print_h2 "IP Ranges"
print cyan
if network_pool['ipRanges']
build_ip_ranges(network_pool['ipRanges']).each do |r|
puts " * #{r}"
end
end
print reset,"\n"
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
return 1
end
end
|
#get_ip(args) ⇒ Object
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
|
# File 'lib/morpheus/cli/commands/network_pools_command.rb', line 519
def get_ip(args)
options = {}
params = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[network-pool] [ip]")
build_common_options(opts, options, [:query, :json, :yaml, :csv, :fields, :dry_run, :remote])
opts. = "Get details about a network pool IP address.\n" +
"[network-pool] is required. This is the name or id of a network pool.\n" +
"[ip] is required. This is the ip address or id of a network pool IP."
end
optparse.parse!(args)
connect(options)
if args.count != 2
raise_command_error "wrong number of arguments, expected 2 and got (#{args.count}) #{args}\n#{optparse}"
end
begin
network_pool = find_network_pool_by_name_or_id(args[0])
return 1 if network_pool.nil?
network_pool_id = network_pool['id']
params.merge!(parse_list_options(options))
@network_pool_ips_interface.setopts(options)
if options[:dry_run]
if args[1].to_s =~ /\A\d{1,}\Z/
print_dry_run @network_pool_ips_interface.dry.get(network_pool_id, args[1].to_i)
else
print_dry_run @network_pool_ips_interface.dry.list(network_pool_id, {ipAddress:args[1]})
end
return
end
network_pool_ip = find_network_pool_ip_by_address_or_id(network_pool_id, args[1])
return 1 if network_pool_ip.nil?
json_response = {'networkPoolIp' => network_pool_ip} if options[:json]
puts as_json(json_response, options, "networkPoolIp")
return 0
elsif options[:yaml]
puts as_yaml(json_response, options, "networkPoolIp")
return 0
elsif options[:csv]
puts records_as_csv([network_pool_ip], options)
return 0
end
print_h1 "Network Pool IP Details"
print cyan
description_cols = {
"ID" => 'id',
"IP Address" => lambda {|it| it['ipAddress'] },
"Hostname" => lambda {|it| it['hostname'] },
"Type" => lambda {|it| it['ipType'] ? it['ipType'] : '' },
"Pool" => lambda {|it| network_pool['name'] },
"Interface" => lambda {|it| network_pool['interfaceName'] },
"Created By" => lambda {|it| it['createdBy'] ? it['createdBy']['username'] : '' },
"Created" => lambda {|it| format_local_dt(it['dateCreated']) },
"Updated" => lambda {|it| format_local_dt(it['lastUpdated']) },
}
print_description_list(description_cols, network_pool_ip)
print reset,"\n"
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
exit 1
end
end
|
#handle(args) ⇒ Object
25
26
27
|
# File 'lib/morpheus/cli/commands/network_pools_command.rb', line 25
def handle(args)
handle_subcommand(args)
end
|
#list(args) ⇒ Object
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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
97
98
99
100
101
102
103
104
|
# File 'lib/morpheus/cli/commands/network_pools_command.rb', line 29
def list(args)
options = {}
params = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage()
opts.on('--pool-server SERVER', String, "Filter by Network Pool Server Name or ID") do |val|
options[:pool_server] = val
end
build_common_options(opts, options, [:list, :json, :yaml, :csv, :fields, :dry_run, :remote])
opts. = "List network pools."
end
optparse.parse!(args)
connect(options)
begin
params.merge!(parse_list_options(options))
if options[:pool_server]
record = find_by_name_or_id(:network_pool_server, options[:pool_server])
if record.nil?
exit 1 else
params['poolServerId'] = record['id']
end
end
@network_pools_interface.setopts(options)
if options[:dry_run]
print_dry_run @network_pools_interface.dry.list(params)
return
end
json_response = @network_pools_interface.list(params)
network_pools = json_response["networkPools"]
if options[:json]
puts as_json(json_response, options, "networkPools")
return 0
elsif options[:yaml]
puts as_yaml(json_response, options, "networkPools")
return 0
elsif options[:csv]
puts records_as_csv(network_pools, options)
return 0
end
title = "Morpheus Network Pools"
subtitles = []
subtitles += parse_list_subtitles(options)
print_h1 title, subtitles
if network_pools.empty?
print cyan,"No network pools found.",reset,"\n"
else
rows = network_pools.collect {|network_pool|
row = {
id: network_pool['id'],
name: !network_pool['displayName'].to_s.empty? ? network_pool['displayName'] : network_pool['name'],
network: network_pool['name'],
type: network_pool['type'] ? network_pool['type']['name'] : '',
ipRanges: build_ip_ranges(network_pool['ipRanges']).uniq.join(', '),
total: ("#{network_pool['ipCount']}/#{network_pool['freeCount']}")
}
row
}
columns = [:id, :name, :network, :type, {:ipRanges => {:display_name => "IP RANGES"} }, {:total => {:display_name => "TOTAL/FREE IPs"} }]
if options[:include_fields]
columns = options[:include_fields]
end
print cyan
print as_pretty_table(rows, columns, options)
print reset
(json_response, {:label => "network pool", :n_label => "network pools"})
end
print reset,"\n"
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
exit 1
end
end
|
#list_ips(args) ⇒ Object
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
|
# File 'lib/morpheus/cli/commands/network_pools_command.rb', line 452
def list_ips(args)
options = {}
params = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[network-pool]")
build_common_options(opts, options, [:list, :json, :yaml, :csv, :fields, :json, :dry_run, :remote])
opts. = "List network pool IP addresses.\n" +
"[network-pool] is required. This is the name or id of a network pool."
end
optparse.parse!(args)
connect(options)
if args.count != 1
raise_command_error "wrong number of arguments, expected 1 and got (#{args.count}) #{args}\n#{optparse}"
end
begin
network_pool = find_network_pool_by_name_or_id(args[0])
return 1 if network_pool.nil?
network_pool_id = network_pool['id']
params.merge!(parse_list_options(options))
@network_pool_ips_interface.setopts(options)
if options[:dry_run]
print_dry_run @network_pool_ips_interface.dry.list(network_pool_id, params)
return
end
json_response = @network_pool_ips_interface.list(network_pool_id, params)
network_pool_ips = json_response["networkPoolIps"]
if options[:json]
puts as_json(json_response, options, "networkPoolIps")
return 0
elsif options[:yaml]
puts as_yaml(json_response, options, "networkPoolIps")
return 0
elsif options[:csv]
puts records_as_csv(network_pool_ips, options)
return 0
end
title = "Morpheus Network Pool IPs"
subtitles = []
subtitles += parse_list_subtitles(options)
print_h1 title, subtitles
if network_pool_ips.empty?
print cyan,"No network pool IPs found.",reset,"\n"
else
columns = [
{"ID" => lambda {|it| it['id'] } },
{"IP ADDRESS" => lambda {|it| it['ipAddress'] } },
{"HOSTNAME" => lambda {|it| it['hostname'] } },
{"TYPE" => lambda {|it| it['ipType'] } },
{"CREATED" => lambda {|it| format_local_dt(it['dateCreated']) } },
{"UPDATED" => lambda {|it| format_local_dt(it['lastUpdated']) } },
]
if options[:include_fields]
columns = options[:include_fields]
end
print as_pretty_table(network_pool_ips, columns, options)
(json_response)
end
print reset,"\n"
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
exit 1
end
end
|
#remove(args) ⇒ Object
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
|
# File 'lib/morpheus/cli/commands/network_pools_command.rb', line 408
def remove(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[network-pool]")
build_common_options(opts, options, [:account, :auto_confirm, :json, :dry_run, :remote])
opts. = "Delete a network pool." + "\n" +
"[network-pool] is required. This is the name or id of a network pool."
end
optparse.parse!(args)
if args.count < 1
print_error Morpheus::Terminal.angry_prompt
puts_error "#{command_name} missing argument: [network-pool]\n#{optparse}"
return 1
end
connect(options)
begin
network_pool = find_network_pool_by_name_or_id(args[0])
return 1 if network_pool.nil?
unless options[:yes] || Morpheus::Cli::OptionTypes.confirm("Are you sure you want to delete the network pool: #{network_pool['name']}?")
return 9, "aborted command"
end
@network_pools_interface.setopts(options)
if options[:dry_run]
print_dry_run @network_pools_interface.dry.destroy(network_pool['id'])
return 0
end
json_response = @network_pools_interface.destroy(network_pool['id'])
if options[:json]
print JSON.pretty_generate(json_response)
print "\n"
else
print_green_success "Removed network pool #{network_pool['name']}"
end
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
return 1
end
end
|
#remove_ip(args) ⇒ Object
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
|
# File 'lib/morpheus/cli/commands/network_pools_command.rb', line 744
def remove_ip(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[network-pool] [ip]")
build_common_options(opts, options, [:account, :auto_confirm, :json, :dry_run, :remote])
opts. = "Delete a network pool IP." + "\n" +
"[network-pool] is required. This is the name or id of a network pool.\n" +
"[ip] is required. This is the ip address or id of a network pool IP."
end
optparse.parse!(args)
if args.count != 2
raise_command_error "wrong number of arguments, expected 2 and got (#{args.count}) #{args}\n#{optparse}"
end
connect(options)
begin
network_pool = find_network_pool_by_name_or_id(args[0])
return 1 if network_pool.nil?
network_pool_id = network_pool['id']
network_pool_ip = find_network_pool_ip_by_address_or_id(network_pool_id, args[1])
return 1 if network_pool_ip.nil?
unless options[:yes] || Morpheus::Cli::OptionTypes.confirm("Are you sure you want to delete the network pool IP: #{network_pool_ip['ipAddress']} (#{network_pool_ip['hostname']})?")
return 9, "aborted command"
end
@network_pool_ips_interface.setopts(options)
if options[:dry_run]
print_dry_run @network_pool_ips_interface.dry.destroy(network_pool['id'], network_pool_ip['id'])
return 0
end
json_response = @network_pool_ips_interface.destroy(network_pool['id'], network_pool_ip['id'])
if options[:json]
print JSON.pretty_generate(json_response)
print "\n"
else
print_green_success "Removed network pool IP #{network_pool_ip['ipAddress']} (#{network_pool_ip['hostname']})"
end
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
return 1
end
end
|
#update(args) ⇒ Object
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
|
# File 'lib/morpheus/cli/commands/network_pools_command.rb', line 283
def update(args)
options = {}
ip_range_list = nil
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[network-pool] [options]")
opts.on('--name VALUE', String, "Name for this network pool") do |val|
options['name'] = val
end
opts.on('--code VALUE', String, "Code") do |val|
options['code'] = val
end
opts.on('--category VALUE', String, "Category") do |val|
options['category'] = val
end
opts.on('--ip-ranges LIST', Array, "IP Ranges, comma separated list IP ranges in the format start-end or an IPv6 CIDR") do |list|
if list.size == 1 && list[0] == 'null' ip_range_list = []
else
ip_range_list = parse_ipv4_and_ipv6_ranges(list)
end
end
build_common_options(opts, options, [:options, :payload, :json, :dry_run, :remote])
opts. = "Update a network pool." + "\n" +
"[network-pool] is required. This is the id of a network pool."
end
optparse.parse!(args)
if args.count != 1
print_error Morpheus::Terminal.angry_prompt
puts_error "wrong number of arguments, expected 1 and got #{args.count}\n#{optparse}"
return 1
end
connect(options)
begin
network_pool = find_network_pool_by_name_or_id(args[0])
return 1 if network_pool.nil?
options.deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
payload = nil
if options[:payload]
payload = options[:payload]
else
payload = {
'networkPool' => {
}
}
payload['networkPool'].deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
if options['name']
payload['networkPool']['name'] = options['name']
end
if options['category']
payload['networkPool']['category'] = options['category']
end
if options['code']
payload['networkPool']['code'] = options['code']
end
if ip_range_list
ip_range_list = ip_range_list.collect {|range|
if network_pool['ipRanges']
existing_range = network_pool['ipRanges'].find {|r|
(range[:startAddress] == r['startAddress'] && range[:endAddress] == r['endAddress']) || range[:cidrIPv6] == r['cidrIPv6']
}
if existing_range
range[:id] = existing_range['id']
end
end
range
}
payload['networkPool']['ipRanges'] = ip_range_list
else
end
end
@network_pools_interface.setopts(options)
if options[:dry_run]
print_dry_run @network_pools_interface.dry.update(network_pool["id"], payload)
return
end
json_response = @network_pools_interface.update(network_pool["id"], payload)
if options[:json]
puts as_json(json_response)
else
network_pool = json_response['networkPool']
print_green_success "Updated network pool #{network_pool['name']}"
get([network_pool['id']])
end
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
return 1
end
end
|
#update_ip(args) ⇒ Object
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
|
# File 'lib/morpheus/cli/commands/network_pools_command.rb', line 675
def update_ip(args)
options = {}
optparse = Morpheus::Cli::OptionParser.new do |opts|
opts.banner = subcommand_usage("[network-pool] [ip] [options]")
opts.on('--hostname VALUE', String, "Hostname for this network pool IP") do |val|
options[:options]['hostname'] = val
end
build_common_options(opts, options, [:options, :payload, :json, :dry_run, :quiet, :remote])
opts. = "Update a network pool IP." + "\n" +
"[network-pool] is required. This is the name or id of a network pool.\n" +
"[ip] is required. This is the ip address or id of a network pool IP."
end
optparse.parse!(args)
if args.count != 2
raise_command_error "wrong number of arguments, expected 2 and got (#{args.count}) #{args}\n#{optparse}"
end
connect(options)
begin
network_pool = find_network_pool_by_name_or_id(args[0])
return 1 if network_pool.nil?
network_pool_id = network_pool['id']
network_pool_ip = find_network_pool_ip_by_address_or_id(network_pool_id, args[1])
return 1 if network_pool_ip.nil?
options.deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
payload = nil
if options[:payload]
payload = options[:payload]
else
payload = {
'networkPoolIp' => {
}
}
payload['networkPoolIp'].deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options]
if payload['networkPoolIp'].empty?
raise_command_error "Specify at least one option to update.\n#{optparse}"
end
end
@network_pool_ips_interface.setopts(options)
if options[:dry_run]
print_dry_run @network_pool_ips_interface.dry.update(network_pool_id, network_pool_ip['id'], payload)
return
end
json_response = @network_pool_ips_interface.update(network_pool_id, network_pool_ip['id'], payload)
if options[:json]
print JSON.pretty_generate(json_response)
print "\n"
elsif !options[:quiet]
network_pool_ip = json_response['networkPoolIp']
print_green_success "Updated network pool IP #{network_pool_ip['ipAddress']}"
get_ip([network_pool['id'], network_pool_ip['id']])
end
return 0
rescue RestClient::Exception => e
print_rest_exception(e, options)
exit 1
end
end
|