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

    Interface FullApplicationKey

    Full application key including the secret, returned only at creation time by b2_create_key. The applicationKey secret is never returned again after this response.

    interface FullApplicationKey {
        accountId: AccountId;
        applicationKey: string;
        applicationKeyId: ApplicationKeyId;
        bucketId: BucketId | null;
        capabilities: readonly Capability[];
        expirationTimestamp: number | null;
        keyName: string;
        namePrefix: string | null;
        options: readonly string[];
    }
    Index

    Properties

    accountId: AccountId

    Account that owns this key.

    applicationKey: string

    The secret key value. Only available in the b2_create_key response.

    applicationKeyId: ApplicationKeyId

    Unique identifier for the application key.

    bucketId: BucketId | null

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

    capabilities: readonly Capability[]

    Capabilities granted to this key.

    expirationTimestamp: number | null

    UTC timestamp (milliseconds) when this key expires, or null if it does not expire.

    keyName: string

    Human-readable name of the key.

    namePrefix: string | null

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

    options: readonly string[]

    Set of options enabled on this key.