Module: Morpheus::Cli::RestCommand
- Included in:
- Audit, CredentialTypesCommand, CredentialsCommand, LoadBalancerMonitors, LoadBalancerPools, LoadBalancerProfiles, LoadBalancerTypes, LoadBalancerVirtualServers, LoadBalancers, StorageServerTypes, StorageServers, StorageVolumeTypes, StorageVolumes
- Defined in:
- lib/morpheus/cli/mixins/rest_command.rb
Overview
RestCommand is a mixin for Morpheus::Cli command classes. Provides basic CRUD commands: list, get, add, update, remove Currently the command class must also include Morpheus::Cli::CliCommand The command class can define a few variables to dictate what the resource is called and the the api interface used to fetch the records. The command class or helper must also provide several methods to provide the default behavior. In the example below, the command (helper) defines the following methods:
* load_balancer_object_key() - Key name of object returned by the "get" api endpoint.
* load_balancer_list_key() - Key name of array of records returned by the "list" api endpoint.
* load_balancer_column_definitions() - Column definitions for the "get" command display output.
* load_balancer_list_column_definitions() - Column definitions for the "list" command display output.
Example of a RestCommand for ‘morpheus load-balancers`.
class Morpheus::Cli::LoadBalancers
include Morpheus::Cli::CliCommand
include Morpheus::Cli::RestCommand
include Morpheus::Cli::LoadBalancersHelper
# All of the example settings below are redundant
# and would be the default values if not set.
set_rest_name :load_balancers
set_rest_label "Load Balancer"
set_rest_label_plural "Load Balancers"
set_rest_object_key "load_balancer"
set_rest_has_type true
set_rest_type "load_balancer_types"
register_interfaces :load_balancers, :load_balancer_types
end
Defined Under Namespace
Modules: ClassMethods
Class Method Summary collapse
Instance Method Summary collapse
- #_get(id, params, options) ⇒ Object
- #add(args) ⇒ Object
-
#connect(options) ⇒ Object
standard connect method to establish @api_client and @name_interface variables for each registered interface.
- #get(args) ⇒ Object
- #handle(args) ⇒ Object
- #list(args) ⇒ Object
- #registered_interfaces ⇒ Object
- #remove(args) ⇒ Object
- #render_response_for_get(json_response, options) ⇒ Object
- #rest_arg ⇒ Object
- #rest_column_definitions(options) ⇒ Object
- #rest_find_by_name_or_id(val) ⇒ Object
- #rest_has_name ⇒ Object
- #rest_has_type ⇒ Object
-
#rest_interface ⇒ Object
returns the default rest interface, allows using rest_interface_name = “your” or override this method to return @your_interface if needed.
- #rest_interface_name ⇒ Object
- #rest_key ⇒ Object
- #rest_label ⇒ Object
- #rest_label_plural ⇒ Object
- #rest_list_column_definitions(options) ⇒ Object
- #rest_list_key ⇒ Object
- #rest_name ⇒ Object
- #rest_object_key ⇒ Object
- #rest_type_arg ⇒ Object
- #rest_type_column_definitions(options) ⇒ Object
- #rest_type_find_by_name_or_id(val) ⇒ Object
- #rest_type_interface ⇒ Object
- #rest_type_interface_name ⇒ Object
- #rest_type_key ⇒ Object
- #rest_type_label ⇒ Object
- #rest_type_label_plural ⇒ Object
- #rest_type_list_column_definitions(options) ⇒ Object
- #rest_type_list_key ⇒ Object
-
#rest_type_name ⇒ Object
duplicated the rest_* settings with rest_type, for the types resource.
- #rest_type_object_key ⇒ Object
- #update(args) ⇒ Object
Class Method Details
.included(base) ⇒ Object
34 35 36 37 38 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 34 def self.included(base) #puts "including RestCommand for #{base}" #base.send :include, Morpheus::Cli::CliCommand base.extend ClassMethods end |
Instance Method Details
#_get(id, params, options) ⇒ Object
528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 528 def _get(id, params, ) if id !~ /\A\d{1,}\Z/ && rest_has_name record = rest_find_by_name_or_id(id) if record.nil? return 1, "#{rest_label} not found for '#{id}'" end id = record['id'] end rest_interface.setopts() if [:dry_run] print_dry_run rest_interface.dry.get(id, params) return end json_response = rest_interface.get(id, params) render_response_for_get(json_response, ) return 0, nil end |
#add(args) ⇒ Object
567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 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 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 567 def add(args) record_type = nil record_type_id = nil = {} option_types = respond_to?("add_#{rest_key}_option_types", true) ? send("add_#{rest_key}_option_types") : [] advanced_option_types = respond_to?("add_#{rest_key}_advanced_option_types", true) ? send("add_#{rest_key}_advanced_option_types") : [] type_option_type = option_types.find {|it| it['fieldName'] == 'type'} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[#{rest_arg}]") if rest_has_type && type_option_type.nil? opts.on( '-t', "--#{rest_type_arg} TYPE", "#{rest_type_label}" ) do |val| record_type_id = val end end (opts, , option_types) (opts, , advanced_option_types) (opts, ) opts. = <<-EOT Create a new #{rest_label.downcase}. [#{rest_arg}] is required. This is the name of the new #{rest_label.downcase}. EOT opts. += send "add_#{rest_key}_footer_addn" if respond_to?("add_#{rest_key}_footer_addn", true) end optparse.parse!(args) # todo: make supporting args[0] optional and more flexible # for now args[0] is assumed to be the 'name' record_name = nil if rest_has_name if args.count > 0 record_name = args.join(" ") end verify_args!(args:args, optparse:optparse, min:0, max: 1) else verify_args!(args:args, optparse:optparse, count: 0) end connect() # load or prompt for type if rest_has_type && type_option_type.nil? if record_type_id.nil? #raise_command_error "#{rest_type_label} is required.\n#{optparse}" type_list = rest_type_interface.list({max:10000, creatable:true})[rest_type_list_key] = respond_to?("#{rest_key}_type_list_to_options", true) ? send("#{rest_key}_type_list_to_options", type_list) : type_list.collect {|it| {'name' => it['name'], 'value' => it['code']} } record_type_id = Morpheus::Cli::OptionTypes.prompt([{'fieldName' => 'type', 'fieldLabel' => rest_type_label, 'type' => 'select', 'selectOptions' => , 'required' => true}], [:options], @api_client)['type'] end record_type = rest_type_find_by_name_or_id(record_type_id) if record_type.nil? return 1, "#{rest_type_label} not found for '#{record_type_id}" end end = () payload = {} if [:payload] payload = [:payload] payload.deep_merge!({rest_object_key => }) else record_payload = {} if record_name record_payload['name'] = record_name [:options]['name'] = record_name # injected for prompt end if rest_has_type && record_type # inject type to options for prompting record_payload['type'] = record_type['code'] [:options]['type'] = record_type['code'] # initialize params for loading optionSource data [:params] ||= {} [:params]['type'] = record_type['code'] end record_payload.deep_merge!() if option_types && !option_types.empty? v_prompt = Morpheus::Cli::OptionTypes.prompt(option_types, [:options], @api_client, [:params]) v_prompt.deep_compact! v_prompt.booleanize! # 'on' => true record_payload.deep_merge!(v_prompt) end # options by type if rest_has_type && record_type.nil? type_value = record_payload['type'].is_a?(Hash) ? record_payload['type']['id'] : record_payload['type'] if type_value record_type = rest_type_find_by_name_or_id(type_value) if record_type.nil? return 1, "#{rest_type_label} not found for '#{type_value}" end end # reload the type by id to get all the details ie. optionTypes if record_type && record_type['optionTypes'].nil? record_type = rest_type_find_by_name_or_id(record_type['id']) end end my_option_types = nil if respond_to?("load_option_types_for_#{rest_key}", true) my_option_types = send("load_option_types_for_#{rest_key}", record_type, nil) else my_option_types = record_type ? record_type['optionTypes'] : nil end if my_option_types && !my_option_types.empty? # remove redundant fieldContext my_option_types.each do |option_type| if option_type['fieldContext'] == rest_object_key option_type['fieldContext'] = nil end end api_params = ([:params] || {}).merge(record_payload) v_prompt = Morpheus::Cli::OptionTypes.prompt(my_option_types, [:options], @api_client, api_params) v_prompt.deep_compact! v_prompt.booleanize! # 'on' => true record_payload.deep_merge!(v_prompt) end # advanced options (uses no_prompt) if advanced_option_types && !advanced_option_types.empty? v_prompt = Morpheus::Cli::OptionTypes.no_prompt(advanced_option_types, [:options], @api_client, [:params]) v_prompt.deep_compact! v_prompt.booleanize! # 'on' => true record_payload.deep_merge!(v_prompt) end payload[rest_object_key] = record_payload end rest_interface.setopts() if [:dry_run] print_dry_run rest_interface.dry.create(payload) return end json_response = rest_interface.create(payload) render_response(json_response, , rest_object_key) do record = json_response[rest_object_key] print_green_success "Added #{rest_label.downcase} #{record['name'] || record['id']}" return _get(record["id"], {}, ) end return 0, nil end |
#connect(options) ⇒ Object
standard connect method to establish @api_client and @name_interface variables for each registered interface.
458 459 460 461 462 463 464 465 466 467 468 469 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 458 def connect() @api_client = establish_remote_appliance_connection() self.class.registered_interfaces.each do |interface_name| if interface_name.is_a?(String) || interface_name.is_a?(Symbol) instance_variable_set("@#{interface_name}_interface", @api_client.send(interface_name)) elsif interface_name.is_a?(Hash) interface_name.each do |k,v| instance_variable_set("#{k}_interface", @api_client.send(v)) end end end end |
#get(args) ⇒ Object
509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 509 def get(args) params = {} = {} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[#{rest_arg}]") (opts, , params) opts. = <<-EOT Get details about #{a_or_an(rest_label)} #{rest_label.downcase}. [#{rest_arg}] is required. This is the #{rest_has_name ? 'name or id' : 'id'} of #{a_or_an(rest_label)} #{rest_label.downcase}. EOT end optparse.parse!(args) verify_args!(args:args, optparse:optparse, min:1) connect() (args, , params) id = args.join(" ") _get(id, params, ) end |
#handle(args) ⇒ Object
471 472 473 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 471 def handle(args) handle_subcommand(args) end |
#list(args) ⇒ Object
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 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 475 def list(args) params = {} = {} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[search]") (opts, , params) opts. = <<-EOT List #{rest_label_plural.downcase}. [search] is optional. This is a search phrase to filter the results. EOT end optparse.parse!(args) connect() (args, , params) rest_interface.setopts() if [:dry_run] print_dry_run rest_interface.dry.list(params) return end json_response = rest_interface.list(params) render_response(json_response, , rest_list_key) do records = json_response[rest_list_key] print_h1 "Morpheus #{rest_label_plural}" if records.nil? || records.empty? print cyan,"No #{rest_label_plural.downcase} found.",reset,"\n" else print as_pretty_table(records, rest_list_column_definitions().upcase_keys!, ) print_results_pagination(json_response) if json_response['meta'] end print reset,"\n" end return 0, nil end |
#registered_interfaces ⇒ Object
452 453 454 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 452 def registered_interfaces self.class.registered_interfaces end |
#remove(args) ⇒ Object
813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 813 def remove(args) id = args[0] params = {} = {} optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[#{rest_arg}]") (opts, ) opts. = <<-EOT Delete an existing #{rest_label.downcase}. [#{rest_arg}] is required. This is the #{rest_has_name ? 'name or id' : 'id'} of #{a_or_an(rest_label)} #{rest_label.downcase}. EOT end optparse.parse!(args) verify_args!(args:args, optparse:optparse, count:1) connect() params.merge!(()) record = rest_find_by_name_or_id(id) if record.nil? return 1, "#{rest_name} not found for '#{id}'" end unless [:yes] || Morpheus::Cli::OptionTypes.confirm("Are you sure you want to delete the #{rest_label.downcase} #{record['name'] || record['id']}?") return 9, "aborted" end rest_interface.setopts() if [:dry_run] print_dry_run rest_interface.dry.destroy(record['id'], params) return 0, nil end json_response = rest_interface.destroy(record['id'], params) render_response(json_response, ) do print_green_success "Removed #{rest_label.downcase} #{record['name'] || record['id']}" end return 0, nil end |
#render_response_for_get(json_response, options) ⇒ Object
546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 546 def render_response_for_get(json_response, ) render_response(json_response, , rest_object_key) do record = json_response[rest_object_key] print_h1 rest_label, [], print cyan print_description_list(rest_column_definitions(), record, ) # # could always show config eh? or maybe only with --config if that is nicer. # # config = record['config'].is_a?(Hash) && !record['config'].empty? # if config && !config.empty? # print_h2 "Configuration" # print_description_list(config.keys, config) # end # Option Types if record['optionTypes'] && record['optionTypes'].size > 0 print_h2 "Option Types", print format_option_types_table(record['optionTypes'], , rest_object_key) end print reset,"\n" end end |
#rest_arg ⇒ Object
312 313 314 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 312 def rest_arg self.class.rest_arg end |
#rest_column_definitions(options) ⇒ Object
354 355 356 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 354 def rest_column_definitions() send("#{rest_key}_column_definitions", ) end |
#rest_find_by_name_or_id(val) ⇒ Object
362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 362 def rest_find_by_name_or_id(val) # use explicitly defined finders # else default to new generic CliCommand method to find anything by type (singular underscore) if rest_has_name if respond_to?("find_#{rest_key}_by_name_or_id", true) send("find_#{rest_key}_by_name_or_id", val) else find_by_name_or_id(rest_key, val) end else if respond_to?("find_#{rest_key}_by_id", true) send("find_#{rest_key}_by_id", val) else find_by_id(rest_key, val) end end end |
#rest_has_name ⇒ Object
316 317 318 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 316 def rest_has_name self.class.rest_has_name end |
#rest_has_type ⇒ Object
380 381 382 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 380 def rest_has_type self.class.rest_has_type end |
#rest_interface ⇒ Object
returns the default rest interface, allows using rest_interface_name = “your” or override this method to return @your_interface if needed
334 335 336 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 334 def rest_interface instance_variable_get("@#{rest_interface_name}_interface") end |
#rest_interface_name ⇒ Object
328 329 330 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 328 def rest_interface_name self.class.rest_interface_name end |
#rest_key ⇒ Object
308 309 310 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 308 def rest_key self.class.rest_key end |
#rest_label ⇒ Object
320 321 322 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 320 def rest_label self.class.rest_label end |
#rest_label_plural ⇒ Object
324 325 326 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 324 def rest_label_plural self.class.rest_label_plural end |
#rest_list_column_definitions(options) ⇒ Object
358 359 360 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 358 def rest_list_column_definitions() send("#{rest_key}_list_column_definitions", ) end |
#rest_list_key ⇒ Object
346 347 348 349 350 351 352 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 346 def rest_list_key if respond_to?("#{rest_key}_list_key", true) send("#{rest_key}_list_key") else rest_name.camelcase end end |
#rest_name ⇒ Object
304 305 306 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 304 def rest_name self.class.rest_name end |
#rest_object_key ⇒ Object
338 339 340 341 342 343 344 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 338 def rest_object_key if respond_to?("#{rest_key}_object_key", true) send("#{rest_key}_object_key") else rest_name.camelcase.singularize end end |
#rest_type_arg ⇒ Object
394 395 396 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 394 def rest_type_arg self.class.rest_type_arg end |
#rest_type_column_definitions(options) ⇒ Object
434 435 436 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 434 def rest_type_column_definitions() send("#{rest_type_key}_column_definitions", ) end |
#rest_type_find_by_name_or_id(val) ⇒ Object
442 443 444 445 446 447 448 449 450 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 442 def rest_type_find_by_name_or_id(val) # use explicately defined finders # else default to new generic CliCommand method to find anything by type (singular underscore) if respond_to?("find_#{rest_type_key}_by_name_or_id", true) send("find_#{rest_type_key}_by_name_or_id", val) else find_by_name_or_id(rest_type_key, val) end end |
#rest_type_interface ⇒ Object
414 415 416 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 414 def rest_type_interface instance_variable_get("@#{rest_type_interface_name}_interface") end |
#rest_type_interface_name ⇒ Object
410 411 412 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 410 def rest_type_interface_name self.class.rest_type_interface_name # || "@#{rest_type_name}_interface" end |
#rest_type_key ⇒ Object
390 391 392 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 390 def rest_type_key self.class.rest_type_key end |
#rest_type_label ⇒ Object
402 403 404 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 402 def rest_type_label self.class.rest_type_label end |
#rest_type_label_plural ⇒ Object
406 407 408 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 406 def rest_type_label_plural self.class.rest_type_label_plural end |
#rest_type_list_column_definitions(options) ⇒ Object
438 439 440 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 438 def rest_type_list_column_definitions() send("#{rest_type_key}_list_column_definitions", ) end |
#rest_type_list_key ⇒ Object
426 427 428 429 430 431 432 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 426 def rest_type_list_key if respond_to?("#{rest_type_key}_list_key", true) send("#{rest_type_key}_list_key") else rest_type_name.camelcase end end |
#rest_type_name ⇒ Object
duplicated the rest_* settings with rest_type, for the types resource
386 387 388 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 386 def rest_type_name self.class.rest_type_name end |
#rest_type_object_key ⇒ Object
418 419 420 421 422 423 424 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 418 def rest_type_object_key if respond_to?("#{rest_type_key}_object_key", true) send("#{rest_type_key}_object_key") else rest_type_name.camelcase.singularize end end |
#update(args) ⇒ Object
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 743 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 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 |
# File 'lib/morpheus/cli/mixins/rest_command.rb', line 698 def update(args) id = args[0] record_type = nil record_type_id = nil = {} option_types = respond_to?("update_#{rest_key}_option_types", true) ? send("update_#{rest_key}_option_types") : [] advanced_option_types = respond_to?("update_#{rest_key}_advanced_option_types", true) ? send("update_#{rest_key}_advanced_option_types") : [] optparse = Morpheus::Cli::OptionParser.new do |opts| opts. = subcommand_usage("[#{rest_arg}] [options]") (opts, , option_types) (opts, , advanced_option_types) (opts, ) opts. = <<-EOT Update an existing #{rest_label.downcase}. [#{rest_arg}] is required. This is the #{rest_has_name ? 'name or id' : 'id'} of #{a_or_an(rest_label)} #{rest_label.downcase}. EOT opts. += send "update_#{rest_key}_footer_addn" if respond_to?("update_#{rest_key}_footer_addn", true) end optparse.parse!(args) verify_args!(args:args, optparse:optparse, count:1) connect() record = rest_find_by_name_or_id(id) if record.nil? return 1, "#{rest_name} not found for '#{id}'" end # load type so we can prompt for those option types if rest_has_type record_type_id = record['type']['id'] record_type = rest_type_find_by_name_or_id(record_type_id) if record_type.nil? return 1, "#{rest_type_label} not found for '#{record_type_id}" end # reload the type by id to get all the details ie. optionTypes if record_type['optionTypes'].nil? record_type = rest_type_find_by_name_or_id(record_type['id']) end end = () payload = {} if [:payload] payload = [:payload] payload.deep_merge!({rest_object_key => }) unless .empty? else record_payload = if rest_has_type && record_type # inject type to options for prompting # record_payload['type'] = record_type['code'] # options[:options]['type'] = record_type['code'] # initialize params for loading optionSource data [:params] ||= {} [:params]['type'] = record_type['code'] end # update options without prompting by default if option_types && !option_types.empty? api_params = ([:params] || {}).merge(record_payload) # need to merge in values from record too, ughhh v_prompt = Morpheus::Cli::OptionTypes.no_prompt(option_types, [:options], @api_client, api_params) v_prompt.deep_compact! v_prompt.booleanize! # 'on' => true record_payload.deep_merge!(v_prompt) end # options by type my_option_types = nil if respond_to?("load_option_types_for_#{rest_key}", true) my_option_types = send("load_option_types_for_#{rest_key}", record_type, nil) else my_option_types = record_type ? record_type['optionTypes'] : nil end if my_option_types && !my_option_types.empty? # remove redundant fieldContext # make them optional for updates # todo: use current value as default instead of just making things optioanl # maybe new prompt() options like {:mode => :edit, :object => storage_server} or something my_option_types.each do |option_type| if option_type['fieldContext'] == rest_object_key option_type['fieldContext'] = nil end option_type.delete('required') option_type.delete('defaultValue') end api_params = ([:params] || {}).merge(record_payload) # need to merge in values from record too, ughhh v_prompt = Morpheus::Cli::OptionTypes.no_prompt(my_option_types, [:options], @api_client, api_params) v_prompt.deep_compact! v_prompt.booleanize! # 'on' => true record_payload.deep_merge!(v_prompt) end # advanced options if advanced_option_types && !advanced_option_types.empty? v_prompt = Morpheus::Cli::OptionTypes.no_prompt(advanced_option_types, [:options], @api_client, [:params]) v_prompt.deep_compact! v_prompt.booleanize! # 'on' => true record_payload.deep_merge!(v_prompt) end # remove empty config, compact could hanlde this if record_payload['config'] && record_payload['config'].empty? record_payload.delete('config') end # prevent updating with empty payload if record_payload.empty? raise_command_error "Specify at least one option to update.\n#{optparse}" end payload[rest_object_key] = record_payload end rest_interface.setopts() if [:dry_run] print_dry_run rest_interface.dry.update(record['id'], payload) return end json_response = rest_interface.update(record['id'], payload) render_response(json_response, , rest_object_key) do print_green_success "Updated #{rest_label.downcase} #{record['name'] || record['id']}" _get(record["id"], {}, ) end return 0, nil end |