Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 4.16 KB

File metadata and controls

29 lines (24 loc) · 4.16 KB

DeploymentDetailResponse

Example Usage

import { DeploymentDetailResponse } from "@mistralai/mistralai/models/components";

let value: DeploymentDetailResponse = {
  id: "fda378b7-740e-4804-bb6c-020ecf47422c",
  name: "<value>",
  isActive: false,
  createdAt: new Date("2024-10-31T03:27:37.934Z"),
  updatedAt: new Date("2025-08-30T19:37:51.423Z"),
  workers: [],
};

Fields

Field Type Required Description
id string ✔️ Unique identifier of the deployment
name string ✔️ Deployment name
isActive boolean ✔️ Whether at least one worker is currently live
isHardened boolean Whether the deployment has at least one authorized credential
createdAt Date ✔️ When the deployment was first registered
updatedAt Date ✔️ When the deployment was last updated
location components.DeploymentLocation Where the deployment is running
workers components.DeploymentWorkerResponse[] ✔️ Workers registered for the deployment