Releases: SpectraLogic/ds3_java_cli
Releases · SpectraLogic/ds3_java_cli
v1.2.3
This release include the following changes:
- Added the
system_information
command to return version information about the a remote black pearl head_object
now prints the metadata information for an object- Added the
get_job
command to retrieve information on a single job - Added the
delete_folder
command to delete a remote folder and any objects contained within it - Added
put_job
command to update the state of a running job - Added
get_tapes
command to retrieve information on all the tapes in a black pearl - Added
delete_tape
to remove a tape from the black pearl inventory (this does not eject a tape) - Added a
sync
option to only put files that are newer than what's already on a remote Black Pearl
v1.1.6
v1.1.5
v1.1.4
v1.1.3
v1.1.2
v1.1.1
The release includes the following enhancements:
- The CLI will now exit with a return code of 1 when an API error is encountered, like attempting to create a duplicate bucket. It will also exit with a return code of 2 if there is a non CLI error encountered, like a networking error.
- The Delete Offline Tape Drive API call has been added as a CLI command
delete_tape_drive
. The only required argument (besides the standard endpoint, access key, and secret key args) is the-i
or--id
flag which is used to tell the command which offline tape drive to delete. This is the id, represented as an UUID, of the tape drive. - The Delete Offline Tape Partition call has been added as a CLI command
delete_tape_partition
. The only required argument (besides the standard endpoint, access key, and secret key args) is the-i
or--id
flag which is used to tell the command which offline tape partition to delete. This is the id, represented as an UUID, of the tape partition.
v1.1.0
This release has been updated to work with Black Pearl Version 1.1. Previous versions of the CLI will not always work with Black Pearl Version 1.1. This version also includes a new mode for outputing JSON formatted data, instead of the default CLI output. To enable JSON formatted output use the command line flag --output-format json
v0.7.5
This release includes the following changes:
- HTTPS is now used by default. To use standard http use
--http
- An
--insecure
flag is added which will turn off Certificate Validation when using HTTPS. Note: this will need to be used with black pearl for the time being. - Added prefix support to bulk_put. To set the prefix use
--prefix
to add a prefix. The prefix will appear exactly as it is typed, so if you want to add a directory as a prefix use--prefix new_dir/
Note the slash.