MonoCloud Management SDK
    Preparing search index...

    Secret Response: Represents a credential used by a client or API resource.

    Secret

    interface Secret {
        creation_time: number;
        description?: string | null;
        expiration?: number | null;
        id: string;
        last_updated: number;
        secret_value: string;
        type: SecretTypes;
    }
    Index

    Properties

    creation_time: number

    Specifies the creation time of the secret (in Epoch).

    Secret

    description?: string | null

    Description that explains the purpose of the secret.

    Secret

    expiration?: number | null

    Specifies the time at which the secret expires (in Epoch).

    Secret

    id: string

    The unique identifier of the secret.

    Secret

    last_updated: number

    Specifies the last update time of the secret (in Epoch).

    Secret

    secret_value: string

    The secret value used to authenticate the client or API resource.

    Secret

    Specifies the type of secret.

    Secret