Class: Bosh::Cli::Command::ImportCompiledPackages

Inherits:
Base
  • Object
show all
Defined in:
lib/cli/commands/import_compiled_packages.rb

Constant Summary

Constants inherited from Base

Base::DEFAULT_DIRECTOR_PORT

Instance Attribute Summary

Attributes inherited from Base

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

Instance Method Summary collapse

Methods inherited from Base

#add_option, #blob_manager, #blobstore, #config, #confirmed?, #deployment, #director, #initialize, #interactive?, #logged_in?, #non_interactive?, #password, #redirect, #release, #remove_option, #target, #target_name, #username, #verbose?

Methods included from Bosh::Cli::CommandDiscovery

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

Methods included from DeploymentHelper

#cancel_deployment, #deployment_changed?, #inspect_deployment_changes, #job_exists_in_deployment?, #job_must_exist_in_deployment, #job_unique_in_deployment?, #jobs_and_indexes, #latest_release_versions, #prepare_deployment_manifest, #prompt_for_job_and_index, #resolve_release_aliases, #warn_about_stemcell_changes

Constructor Details

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

Instance Method Details

#perform(exported_tar_path) ⇒ Object



7
8
9
10
11
12
13
14
15
16
17
# File 'lib/cli/commands/import_compiled_packages.rb', line 7

def perform(exported_tar_path)
  auth_required

  unless File.exist?(exported_tar_path)
    raise Bosh::Cli::CliError, 'Archive does not exist'
  end

  client = Bosh::Cli::Client::CompiledPackagesClient.new(director)
  status, task_id = client.import(exported_tar_path)
  task_report(status, task_id)
end