Represents a downloadable package.

interface PackageMetadata {
    createdOn?: Date;
    downloadUrl?: string;
    filename?: string;
    hashValue?: string;
    infoUrl?: string;
    platform?: string;
    type?: string;
    version?: PackageVersion;
}

Properties

createdOn?: Date

The date the package was created

downloadUrl?: string

A direct link to download the package.

filename?: string

The UI uses this to display instructions, i.e. "unzip MyAgent.zip"

hashValue?: string

MD5 hash as a base64 string

infoUrl?: string

A link to documentation

platform?: string

The platform (win7, linux, etc.)

type?: string

The type of package (e.g. "agent")

version?: PackageVersion

The package version.