@backblaze-labs/b2-mcp
    Preparing search index...

    Interface ApplicationKeyResult

    Application key metadata without one-time secret material.

    interface ApplicationKeyResult {
        accountId: string;
        applicationKeyId: string;
        bucketId: string | null;
        bucketIds: string[] | null;
        capabilities: string[];
        expirationTimestamp: number | null;
        keyName: string;
        namePrefix: string | null;
        options: string[];
    }

    Hierarchy (View Summary)

    Index
    accountId: string

    B2 account ID that owns the key.

    applicationKeyId: string

    B2 application key ID.

    bucketId: string | null

    Legacy single bucket ID scope reported by B2, or null.

    bucketIds: string[] | null

    Bucket IDs scoped to this key, or null for unscoped keys.

    capabilities: string[]

    Capabilities granted to the application key.

    expirationTimestamp: number | null

    Expiration timestamp in milliseconds since epoch, or null for non-expiring keys.

    keyName: string

    Application key display name.

    namePrefix: string | null

    Optional object key prefix restriction, or null.

    options: string[]

    B2 key option flags.