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

    Interface CreateKeyOptions

    Options accepted by native B2 application-key creation.

    interface CreateKeyOptions {
        bucketId?: string;
        bucketIds?: string[] | null;
        capabilities: string[];
        keyName: string;
        namePrefix?: string;
        validDurationInSeconds?: number;
    }
    Index
    bucketId?: string

    Legacy single bucket ID scope.

    bucketIds?: string[] | null

    Optional bucket ID scopes for the new key.

    capabilities: string[]

    B2 capabilities to grant.

    keyName: string

    New application key display name.

    namePrefix?: string

    Optional object key prefix restriction.

    validDurationInSeconds?: number

    Optional key lifetime in seconds.