vlocode-project - v1.40.0-beta-4
    Preparing search index...

    Interface DatapackDeploymentDatapackStatus

    Represents the deployment status of a datapack.

    This interface provides information about the current state of a datapack deployment, including its type, key, overall status, and counts of records processed and failed.

    interface DatapackDeploymentDatapackStatus {
        datapack: string;
        failedCount: number;
        messages: readonly DatapackDeploymentMessage[];
        recordCount: number;
        status: DatapackkDeploymentState;
        type: string;
    }
    Index

    Properties

    datapack: string

    The unique key that identifies this datapack. This is typically a combination of the datapack's name and type.

    failedCount: number

    The number of records that failed to deploy within this datapack. Used to determine if a deployment was partially successful.

    messages: readonly DatapackDeploymentMessage[]

    A collection of error messages generated during the deployment of this datapack. Each error contains a type, optional code, and message but excludes record references.

    recordCount: number

    The total number of records contained within this datapack. Each datapack can consist of multiple records that are deployed together.

    The overall deployment status of the datapack. Indicates whether deployment was successful, failed, or partially successful.

    type: string

    The type of the datapack (e.g., 'OmniScript', 'DataRaptor', 'IntegrationProcedure'). Identifies the category or type of Vlocity component being deployed.