getManifest

Back to index

Summary

Retrieves the manifest for a specified artifact version. The manifest includes a list of files and directories in the artifact version and its checksum file.
artifactVersionName
Stringrequired
The name of the artifact version whose manifest you want to retrieve.

Usage

Perl

$cmdr->getManifest( "test-artifactVersionName" # artifactVersionName );

ectool

ectool getManifest \ "test-artifactVersionName" `# artifactVersionName`

Examples

Perl

my ($manifest,$diagnostics) = $cmdr->getManifest("myGroup:myKey:1.0.0-55");

ectool

ectool getManifest myGroup:myKey:1.0.0-55