Class: Bosh::Cli::Command::Vm

Inherits:
Base show all
Defined in:
lib/cli/commands/vm.rb

Constant Summary

Constants inherited from Base

Base::DEFAULT_DIRECTOR_PORT

Instance Attribute Summary

Attributes inherited from Base

#args, #exit_code, #info, #options, #out, #runner, #work_dir

Instance Method Summary collapse

Methods inherited from Base

#add_option, #blob_manager, #blobstore, #cache_dir, #config, #confirmed?, #credentials, #deployment, #director, #initialize, #interactive?, #logged_in?, #non_interactive?, #progress_renderer, #redirect, #release, #remove_option, #run_nested_command, #show_current_state, #target, #target_name, #verbose?

Methods included from Bosh::Cli::CommandDiscovery

#desc, #method_added, #option, #register_command, #usage

Methods included from DeploymentHelper

#build_manifest, #cancel_deployment, #deployment_changed?, #inspect_deployment_changes, #job_exists_in_deployment?, #job_unique_in_deployment?, #jobs_and_indexes, #prepare_deployment_manifest, #prompt_for_errand_name, #prompt_for_job_and_index

Constructor Details

This class inherits a constructor from Bosh::Cli::Command::Base

Instance Method Details

#delete(vm_cid) ⇒ Object



29
30
31
32
33
34
35
36
37
38
39
# File 'lib/cli/commands/vm.rb', line 29

def delete(vm_cid)
  auth_required

  unless confirmed?("Are you sure you want to delete vm '#{vm_cid}'?")
    say('Canceled deleting vm'.make_green)
    return
  end

  status, task_id = director.delete_vm_by_cid(vm_cid)
  task_report(status, task_id, "Deleted vm '#{vm_cid}'")
end

#resurrection_state(job = nil, index_or_id = nil, new_state) ⇒ Object



9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# File 'lib/cli/commands/vm.rb', line 9

def resurrection_state(job=nil, index_or_id=nil, new_state)
  auth_required

  if job.nil? && index_or_id.nil?
    resurrection = Resurrection.new(new_state)
    show_current_state

    director.change_vm_resurrection_for_all(resurrection.paused?)
  else
    job_args = JobCommandArgs.new([job, index_or_id])
    job, index_or_id, _ = job_args.to_a
    resurrection = Resurrection.new(new_state)

    manifest = prepare_deployment_manifest(show_state: true)
    director.change_vm_resurrection(manifest.name, job, index_or_id, resurrection.paused?)
  end
end