Typescript SDK Type Docs
    Preparing search index...

    Interface ImportContainer

    Contains the resources to be imported. Unless resourceType is specified, the ImportContainer can import all of the supported ImportResourceTypes.

    interface ImportContainer {
        createdAt: string;
        expiresAt?: string;
        key: string;
        lastModifiedAt: string;
        resourceType?: ImportResourceType;
        retentionPolicy?: TimeToLiveRetentionPolicy;
        version: number;
    }
    Index

    Properties

    createdAt: string

    Date and time (UTC) the ImportContainer was initially created.

    expiresAt?: string

    Date and time (UTC) the ImportContainer is automatically deleted. Only present if a retentionPolicy is set. ImportContainers without expiresAt are permanent until manually deleted.

    key: string

    User-defined unique identifier of the ImportContainer.

    lastModifiedAt: string

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

    resourceType?: ImportResourceType

    The resource type the ImportContainer supports. If not present, the ImportContainer can import all of the supported ImportResourceTypes.

    retentionPolicy?: TimeToLiveRetentionPolicy

    The retention policy of the ImportContainer.

    version: number

    Current version of the ImportContainer.