interface Token {
    containerId?: string;
    description?: string;
    expiresAt?: Date;
    id: string;
    namespaceId?: string;
    publicKey?: string;
    status: Container.v1beta1.TokenStatus;
    token: string;
}

Properties

containerId?: string

UUID of the container the token belongs to.

One-of ('scope'): at most one of 'containerId', 'namespaceId' could be set.

description?: string

Description of the token.

expiresAt?: Date

Expiry date of the token.

id: string

UUID of the token.

namespaceId?: string

UUID of the namespace the token belongs to.

One-of ('scope'): at most one of 'containerId', 'namespaceId' could be set.

publicKey?: string

Public key of the token.

Status of the token.

token: string

Identifier of the token.