Token.

interface Token {
    createdAt?: Date;
    id: string;
    name: string;
    projectId: string;
    region: Region;
    scopes: TokenScope[];
    secretKey?: string;
    updatedAt?: Date;
}

Properties

createdAt?: Date

Token creation date.

id: string

ID of the token.

name: string

Name of the token.

projectId: string

ID of the Project the token belongs to.

region: Region

Regions where the token is located.

scopes: TokenScope[]

Token permission scopes.

secretKey?: string

Token secret key.

updatedAt?: Date

Token last modification date.