Serves as the entry point of resources. An Import Container is not resource type-specific.

interface ImportContainer {
    createdAt: string;
    key: string;
    lastModifiedAt: string;
    resourceType?: string;
    version: number;
}

Properties

createdAt: string

The time when the ImportContainer was created.

key: string

User-defined unique identifier for the ImportContainer. Keys can only contain alphanumeric characters (a-Z, 0-9), underscores and hyphens (_, -).

lastModifiedAt: string

The last time when the ImportContainer was modified.

resourceType?: string

The resource type the ImportContainer is able to handle. If not present, the ImportContainer is able to import all of the supported ImportResourceTypes.

version: number

The version of the ImportContainer.