Type Alias DeploymentInput

Input for creating a new deployment

type DeploymentInput = {
    data?: {
        attributes?: {
            deprecated?: boolean;
            description?: EntityDescription;
            enablePredictions?: boolean;
            modelId: ModelId;
            name: EntityName;
            spaceId: SpaceId;
        };
        type?: "deployment";
    };
}
Index

Properties

Properties

data?: {
    attributes?: {
        deprecated?: boolean;
        description?: EntityDescription;
        enablePredictions?: boolean;
        modelId: ModelId;
        name: EntityName;
        spaceId: SpaceId;
    };
    type?: "deployment";
}