@nebius/js-sdk - v0.2.54
    Preparing search index...

    Interface SecretServiceServer

    Handles server calls for the nebius.mysterybox.v1.SecretService service.

    interface SecretServiceServer {
        create: handleUnaryCall<CreateSecretRequest, Operation>;
        delete: handleUnaryCall<DeleteSecretRequest, Operation>;
        get: handleUnaryCall<GetSecretRequest, Secret>;
        getByName: handleUnaryCall<GetSecretByNameRequest, Secret>;
        list: handleUnaryCall<ListSecretsRequest, ListSecretsResponse>;
        undelete: handleUnaryCall<UndeleteSecretRequest, Operation>;
        update: handleUnaryCall<UpdateSecretRequest, Operation>;
        [name: string]: UntypedHandleCall;
    }

    Hierarchy

    • UntypedServiceImplementation
      • SecretServiceServer

    Indexable

    • [name: string]: UntypedHandleCall

      Handles server calls for the nebius.mysterybox.v1.SecretService service.

    Index
    create: handleUnaryCall<CreateSecretRequest, Operation>

    Creates a new secret in the specified container.

    delete: handleUnaryCall<DeleteSecretRequest, Operation>

    Soft delete secret

    get: handleUnaryCall<GetSecretRequest, Secret>

    Returns the specified secret, without its Payload.

    getByName: handleUnaryCall<GetSecretByNameRequest, Secret>

    Returns the specified secret by name, without its Payload.

    list: handleUnaryCall<ListSecretsRequest, ListSecretsResponse>

    Returns the list of secrets in a specified container, without its Payload.

    undelete: handleUnaryCall<UndeleteSecretRequest, Operation>

    Undelete secret version

    update: handleUnaryCall<UpdateSecretRequest, Operation>

    Updates an existing secret, excluded its Payload.