@backblaze-labs/b2-sdk - v0.1.0
    Preparing search index...

    Interface AllowedInfo

    Describes the capabilities and scope restrictions of an authorized application key.

    interface AllowedInfo {
        bucketId: BucketId | null;
        bucketName: string | null;
        capabilities: readonly Capability[];
        namePrefix: string | null;
    }
    Index

    Properties

    bucketId: BucketId | null

    Bucket ID this key is restricted to, or null if unrestricted.

    bucketName: string | null

    Bucket name this key is restricted to, or null if unrestricted.

    capabilities: readonly Capability[]

    List of capabilities granted to this key.

    namePrefix: string | null

    File name prefix this key is restricted to, or null if unrestricted.