Describes an individual license's details provided by the PAN-OS API, including its status and metadata.

interface LicenseEntry {
    authcode: string;
    custom?: Record<string, string>;
    description: string;
    expired: string;
    expires: string;
    feature: string;
    issued: string;
    serial: string;
}

Properties

authcode: string

The authorization code for the license.

custom?: Record<string, string>

Any optional custom fields that may be present for a license, represented as key-value pairs.

description: string

A human-readable description of the licensed feature.

expired: string

A status string indicating whether the license has expired.

expires: string

The expiration date of the license.

feature: string

The unique identifier or name of the licensed feature.

issued: string

The issue date of the license.

serial: string

The serial number associated with the license.

Generated using TypeDoc