Class: Morpheus::Cli::NetworkEdgeClustersCommand

Inherits:
Object
  • Object
show all
Includes:
CliCommand, ProvisioningHelper, WhoamiHelper
Defined in:
lib/morpheus/cli/commands/network_edge_clusters_command.rb

Instance Attribute Summary

Attributes included from CliCommand

#no_prompt

Instance Method Summary collapse

Methods included from WhoamiHelper

#current_account, #current_user, #current_user_permissions, included, #is_master_account, #load_whoami

Methods included from ProvisioningHelper

#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_payload, #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, #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_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_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(server, edge_cluster_id, options) ⇒ Object



95
96
97
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
128
129
130
131
132
133
134
135
136
137
# File 'lib/morpheus/cli/commands/network_edge_clusters_command.rb', line 95

def _get(server, edge_cluster_id, options)
  @network_edge_clusters_interface.setopts(options)

  if options[:dry_run]
    if edge_cluster_id.to_s =~ /\A\d{1,}\Z/
      print_dry_run @network_edge_clusters_interface.dry.get_edge_cluster(server['id'], edge_cluster_id.to_i)
    else
      print_dry_run @network_edge_clusters_interface.dry.list_edge_clusters(server['id'], {name: edge_cluster_id})
    end
    return
  end

  if server['type']['hasEdgeClusters']
    edgeCluster = find_edge_cluster(server['id'], edge_cluster_id)

    return 1 if edgeCluster.nil?

    render_response({networkEdgeCluster: edgeCluster}, options, 'networkEdgeCluster') do
      print_h1 "Network Edge Cluster Details"
      print cyan

      description_cols = {
        "ID" => lambda {|it| it['id']},
        "Name" => lambda {|it| it['name']},
        "Description" => lambda {|it| it['description']},
        "Status" => lambda {|it| it['status']}
      }

      if 
        description_cols["Visibility"] = lambda {|it| it['visibility']}
        description_cols["Tenants"] = lambda {|it| it['tenants'].collect {|tenant| tenant['name']}.join(', ')}
      end

      server['type']['edgeClusterOptionTypes'].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, edgeCluster)
    end
  else
    print_red_alert "Edge Clusters not supported for #{server['type']['name']}"
  end
  println reset
end

#_list(server, options) ⇒ Object



48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
# File 'lib/morpheus/cli/commands/network_edge_clusters_command.rb', line 48

def _list(server, options)
  @network_edge_clusters_interface.setopts(options)

  if options[:dry_run]
    print_dry_run @network_edge_clusters_interface.dry.list_edge_clusters(server['id'])
    return
  end

  if server['type']['hasEdgeClusters']
    json_response = @network_edge_clusters_interface.list_edge_clusters(server['id'])
    render_response(json_response, options, 'networkEdgeClusters') do
      print_h1 "Network Edge Clusters For: #{server['name']}"
      print cyan
      print_edge_clusters(server, json_response['networkEdgeClusters'])
    end
  else
    print_red_alert "Edge Clusters not supported for #{server['type']['name']}"
  end
  print reset
end

#connect(opts) ⇒ Object



11
12
13
14
15
16
17
# File 'lib/morpheus/cli/commands/network_edge_clusters_command.rb', line 11

def connect(opts)
  @api_client = establish_remote_appliance_connection(opts)
  @account_interface = @api_client.accounts
  @network_edge_clusters_interface = @api_client.network_edge_clusters
  @network_servers_interface = @api_client.network_servers
  @options_interface = @api_client.options
end

#get(args) ⇒ Object



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
# File 'lib/morpheus/cli/commands/network_edge_clusters_command.rb', line 69

def get(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[server] [edge_cluster]")
    build_common_options(opts, options, [:json, :yaml, :csv, :fields, :dry_run, :remote])
    opts.footer = "Display details on a network edge cluster." + "\n" +
      "[server] is required. This is the name or id of a network server.\n" +
      "[edge_cluster] is required. This is the id of a network edge cluster.\n"
  end

  optparse.parse!(args)
  connect(options)

  if args.count < 2
    puts optparse
    return 1
  end

  server = find_network_server(args[0])
  if server.nil?
    return 1
  end

  _get(server, args[1], options)
end

#handle(args) ⇒ Object



19
20
21
# File 'lib/morpheus/cli/commands/network_edge_clusters_command.rb', line 19

def handle(args)
  handle_subcommand(args)
end

#list(args) ⇒ Object



23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# File 'lib/morpheus/cli/commands/network_edge_clusters_command.rb', line 23

def list(args)
  options = {}
  optparse = Morpheus::Cli::OptionParser.new do |opts|
    opts.banner = subcommand_usage("[server]")
    build_common_options(opts, options, [:json, :yaml, :csv, :fields, :dry_run, :remote])
    opts.footer = "List network edge clusters." + "\n" +
      "[server] is required. This is the name or id of a network server."
  end

  optparse.parse!(args)
  connect(options)

  if args.count < 1
    puts optparse
    return 1
  end

  server = find_network_server(args[0])
  if server.nil?
    return 1
  end

  _list(server, options)
end

#update(args) ⇒ Object



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
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
# File 'lib/morpheus/cli/commands/network_edge_clusters_command.rb', line 139

def update(args)
  options = {:options=>{}}
  params = {}
  optparse = Morpheus::Cli::OptionParser.new do|opts|
    opts.banner = subcommand_usage("[server] [edge_cluster]")
    opts.on( '--name NAME', "Name" ) do |val|
      params['name'] = val.to_s
    end
    opts.on("--description [TEXT]", String, "Description") do |val|
      params['description'] = val.to_s
    end
    add_perms_options(opts, options, ['plans', 'groups'])
    build_common_options(opts, options, [:options, :payload, :json, :dry_run, :remote])
    opts.footer = "Update a network edge cluster.\n" +
      "[server] is required. This is the name or id of an existing network server.\n" +
      "[edge_cluster] is required. This is the name or id of an existing network edge cluster."
  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)

  server = find_network_server(args[0])
  if server.nil?
    return 1
  end

  if !server['type']['hasEdgeClusters']
    print_red_alert "Edge Clusters not supported for #{server['type']['name']}"
    return 1
  end

  edgeCluster = find_edge_cluster(server['id'], args[1])
  return 1 if edgeCluster.nil?

  payload = parse_payload(options) || {'networkEdgeCluster' => params}
  payload['networkEdgeCluster'].deep_merge!(options[:options].reject {|k,v| k.is_a?(Symbol) }) if options[:options] && !payload['networkEdgeCluster'].nil?

  if !options[:visibility].nil?
    payload['networkEdgeCluster']['visibility'] = options[:visibility]
  end
  if !options[:tenants].nil?
    payload['networkEdgeCluster']['tenants'] = options[:tenants].collect {|id| {id: id.to_i}}
  end

  if payload['networkEdgeCluster'].empty?
    option_types = server['type']['edgeClusterOptionTypes'].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 => {'edgeCluster' => ''}, :color => cyan, :title => "Available Edge Cluster Options"}
    )
    exit 1
  end

  #payload = {'networkEdgeCluster' => edgeCluster.deep_merge(payload['networkEdgeCluster'])}

  @network_edge_clusters_interface.setopts(options)

  if options[:dry_run]
    print_dry_run @network_edge_clusters_interface.dry.update_edge_cluster(server['id'], edgeCluster['id'], payload)
    return
  end

  json_response = @network_edge_clusters_interface.update_edge_cluster(server['id'], edgeCluster['id'], payload)
  render_response(json_response, options, 'networkEdgeCluster') do
    print_green_success "\nUpdated Network Edge Cluster #{edgeCluster['id']}\n"
    _get(server, edgeCluster['id'], options)
  end
end