Type Alias Deployment

A deployed model against which you can run predictions

type Deployment = {
    createdAt: CreatedAt;
    createdBy: CreatedBy;
    deployedModelIds?: DeployedModelIds;
    deprecated: boolean;
    description: EntityDescription;
    enablePredictions: boolean;
    errorMessage?: ErrorMessage;
    errors?: Errors;
    id: EntityId;
    modelId: ModelId;
    name: EntityName;
    ownerId: OwnerId;
    spaceId: SpaceId;
    updatedAt: UpdatedAt;
}
Index

Properties

createdAt: CreatedAt

Timestamp when this was created

createdBy: CreatedBy

ID of the owner/user that created this entity.

deployedModelIds?: DeployedModelIds

IDs of all models deployed to the deployment

deprecated: boolean

Whether this deployment is deprecated

description: EntityDescription

Description of this entity

enablePredictions: boolean

Whether to allow predictions

errorMessage?: ErrorMessage

JSON string of error object

errors?: Errors

JSON string with list of error objects

ID of this entity

modelId: ModelId

ID of the model

Name of this entity

ownerId: OwnerId

ID of owner/user for this entity

spaceId: SpaceId

Space ID for this entity (empty string for personal space)

updatedAt: UpdatedAt

Timestamp when this was updated