Package version:

Describes the properties of a License.

interface LicenseDetails {
    assignedLicenses?: number;
    edition?: string;
    immutableId?: string;
    processors?: number;
    state?: string;
    target?: string;
    type?: string;
    volumeLicenseDetails?: VolumeLicenseDetails[];
}

Properties

assignedLicenses?: number

Describes the number of assigned licenses. NOTE: This property will not be serialized. It can only be populated by the server.

edition?: string

Describes the edition of the license. The values are either Standard or Datacenter.

immutableId?: string

Describes the immutable id. NOTE: This property will not be serialized. It can only be populated by the server.

processors?: number

Describes the number of processors.

state?: string

Describes the state of the license.

target?: string

Describes the license target server.

type?: string

Describes the license core type (pCore or vCore).

volumeLicenseDetails?: VolumeLicenseDetails[]

A list of volume license details.