The deployment resources.

interface DeploymentResourceCollection {
    first: WatsonXAI.PaginationFirst;
    limit: number;
    next?: WatsonXAI.PaginationNext;
    resources?: WatsonXAI.DeploymentResource[];
    system?: WatsonXAI.DeploymentSystem;
    total_count?: number;
}

Properties

The reference to the first item in the current page.

limit: number

The number of items to return in each page.

A reference to the first item of the next page, if any.

A list of deployment resources.

System details including warnings.

total_count?: number

The total number of resources. Computed explicitly only when 'total_count=true' query parameter is present. This is in order to avoid performance penalties.