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

Properties

description?: string

Description of the token.

expiresAt?: Date

Date on which the token expires.

functionId?: string

UUID of the function the token is associated with.

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

id: string

UUID of the token.

namespaceId?: string

UUID of the namespace the token is assoicated with.

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

publicKey?: string

Public key of the token.

Status of the token.

token: string

String of the token.