Typescript SDK Type Docs
    Preparing search index...

    Interface ImportOperation

    Represents the import status of a resource.

    interface ImportOperation {
        createdAt: string;
        errors?: ErrorObject[];
        expiresAt: string;
        id: string;
        importContainerKey: string;
        lastModifiedAt: string;
        resourceKey: string;
        resourceVersion?: number;
        state: ProcessingState;
        unresolvedReferences?: UnresolvedReferences[];
        version: number;
    }
    Index

    Properties

    createdAt: string

    Date and time (UTC) the ImportOperation was created.

    errors?: ErrorObject[]

    Contains errors if the import was unsuccessful. See Errors.

    expiresAt: string

    Date and time (UTC) the ImportOperation will be deleted.

    id: string

    Unique identifier of the ImportOperation.

    importContainerKey: string

    key of the ImportContainer.

    lastModifiedAt: string

    Date and time (UTC) the ImportOperation was last updated.

    resourceKey: string

    key of the resource being imported.

    resourceVersion?: number

    The version of the imported resource when the import was successful.

    The import status of the resource. If rejected or validationFailed, the import was unsuccessful.

    unresolvedReferences?: UnresolvedReferences[]

    If the resource being imported contains references to resources which do not exist, these references are contained within this array.

    version: number

    Current version of the ImportOperation.