@nebius/js-sdk - v0.2.54
    Preparing search index...

    Interface InventorySpec

    Desired configuration of an inventory.

    interface InventorySpec {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.storage.v1.InventorySpec";
        destinationBucketId: string;
        destinationPrefix: string;
        enabled: boolean;
        noncurrentVersions: boolean;
        optionalFields: InventorySpec_OptionalField[];
        outputFormat: InventorySpec_OutputFormat;
        schedule: InventorySpec_Schedule;
        sourcePrefix: string;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

    • [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined

      Desired configuration of an inventory.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Desired configuration of an inventory.

            Returns unknown

      • undefined
    Index
    "[customJson]"?: () => unknown

    Returns a safe value for JSON logs.

    Type Declaration

      • (): unknown
      • Returns a safe value for JSON logs.

        Returns unknown

    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>

    Preserves protobuf fields that this SDK version does not recognize.

    $type: "nebius.storage.v1.InventorySpec"

    Contains the fully qualified protobuf type name.

    destinationBucketId: string

    ID of the destination bucket.

    destinationPrefix: string

    Prefix under which bucket inventory will be stored in the destination bucket.

    enabled: boolean

    Enable or disable inventory generation.

    noncurrentVersions: boolean

    Include noncurrent versions in inventory if set to true.

    optionalFields: InventorySpec_OptionalField[]

    Optional fields to include in inventory.

    Inventory format.

    How often to generate the inventory.

    sourcePrefix: string

    Prefix to filter objects in the source bucket.