MonoCloud Management SDK
    Preparing search index...

    Interface CreateSecretRequest

    Create Secret Request: Represents a request to create a credential used by a client or API resource.

    CreateSecretRequest

    interface CreateSecretRequest {
        description?: string | null;
        expiration?: number | null;
        secret_value?: string | null;
        type?: SecretTypes;
    }
    Index

    Properties

    description?: string | null

    Description that explains the purpose of the secret.

    CreateSecretRequest

    expiration?: number | null

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

    CreateSecretRequest

    secret_value?: string | null

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

    CreateSecretRequest

    Specifies the type of secret.

    CreateSecretRequest