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

    Interface BucketFileLockConfigurationResult

    Normalized bucket file-lock configuration returned by B2.

    interface BucketFileLockConfigurationResult {
        isClientAuthorizedToRead: boolean;
        value:
            | {
                defaultRetention: BucketRetentionPolicyResult;
                isFileLockEnabled: boolean;
            }
            | null;
    }
    Index
    isClientAuthorizedToRead: boolean

    Whether the current key may read the file-lock configuration value.

    value:
        | {
            defaultRetention: BucketRetentionPolicyResult;
            isFileLockEnabled: boolean;
        }
        | null

    File-lock configuration value, or null when B2 withholds it.

    Type Declaration