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

    Interface ListAccessKeysResponse

    interface ListAccessKeysResponse {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.iam.v2.ListAccessKeysResponse";
        items: AccessKey[];
        nextPageToken: string;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

    • [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined
    Index

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.iam.v2.ListAccessKeysResponse"
    items: AccessKey[]

    List of access keys returned in the response. The field should be named as items for consistency.

    nextPageToken: string

    Token for pagination, indicating the next set of results can be retrieved using this token.