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

    Interface B2ApplicationKey

    Legacy normalized B2 application-key metadata.

    interface B2ApplicationKey {
        accountId: string;
        applicationKeyId: string;
        bucketId?: string;
        capabilities: string[];
        expirationTimestamp?: number;
        keyName: string;
        namePrefix?: string;
        options?: string[];
    }
    Index
    accountId: string

    B2 account ID that owns the key.

    applicationKeyId: string

    Stable B2 application key ID.

    bucketId?: string

    Optional bucket ID scope for the key.

    capabilities: string[]

    Capabilities granted to the key.

    expirationTimestamp?: number

    Expiration timestamp in epoch milliseconds, when configured.

    keyName: string

    Human-readable application key name.

    namePrefix?: string

    Optional file-name prefix scope for the key.

    options?: string[]

    Additional provider-specific key options.