interface NatsCredentials {
    checksum: string;
    createdAt?: Date;
    credentials?: File;
    id: string;
    name: string;
    natsAccountId: string;
    updatedAt?: Date;
}

Properties

checksum: string

Checksum of the credentials file.

createdAt?: Date

NATS credentials creation date.

credentials?: File

Object containing the credentials file (Only returned by Create Nats Credentials call).

id: string

ID of the credentials.

name: string

Name of the credentials.

natsAccountId: string

NATS account containing the credentials.

updatedAt?: Date

NATS credentials last modification date.