backblaze-labs/b2-action - v0.1.0
    Preparing search index...

    Interface AuthorizedClient

    An authorized B2Client paired with the bucket name the action is scoped to. Returned by buildClient; consumed by command dispatch sites that need either the high-level client (cross-bucket copy, presign) or the resolved bucket (via getBucket).

    interface AuthorizedClient {
        bucketName: string;
        client: B2Client;
    }
    Index

    Properties

    Properties

    bucketName: string

    The destination bucket name as provided to the action's bucket input.

    client: B2Client

    The authorized SDK client. client.accountInfo is populated.