/** * API Gateway * This is an API Gateway server. * * OpenAPI spec version: 1.0 * * * NOTE: This class is auto generated by the swagger code generator program. * https://github.com/swagger-api/swagger-codegen.git * Do not edit the class manually. */ export interface ModelDeploymentStatus { /** * Number of available pods */ availableReplicas?: number; /** * The model k8s deployment name */ deployment?: string; /** * Last applied ready knative revision */ lastRevisionName?: string; /** * Time when credentials was updated */ lastUpdatedTime?: string; /** * Expected number of pods under current load */ replicas?: number; /** * The model k8s service name */ service?: string; /** * The model k8s service name */ serviceURL?: string; /** * The state of a model \"Processing\" - A model was not deployed. Because some parameters of the custom resource are wrong. For example, there is not a model image in a Docker registry. \"Ready\" - A model was deployed successfully. */ state?: string; }