openapi: 3.0.1 info: title: yatai api server description: This is yatai api server. version: 1.0.0 paths: /api/admin/v1/clusters: get: tags: - admin api v1 summary: List clusters in admin panel operationId: List clusters in admin panel parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1ClusterListSchema' /api/admin/v1/deployments: get: tags: - admin api v1 summary: List deployments in admin panel operationId: List deployments in admin panel parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1AdminDeploymentListSchema' /api/admin/v1/gpu_configs: get: tags: - gpu configs summary: List gpu configs operationId: List gpu configs parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 responses: '200': description: OK content: application/json: schema: type: array items: $ref: '#/components/schemas/Schemasv1GPUConfigSchema' post: tags: - gpu configs summary: Create a gpu config operationId: Create a gpu config requestBody: content: application/json: schema: $ref: '#/components/schemas/Create A Gpu ConfigInput' responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1GPUConfigSchema' /api/admin/v1/gpu_configs/{gpuConfigName}: get: tags: - gpu config resource summary: Get a gpu config operationId: Get a gpu config parameters: - name: gpuConfigName in: path required: true schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1GPUConfigSchema' delete: tags: - gpu config resource summary: Delete a gpu config operationId: Delete a gpu config parameters: - name: gpuConfigName in: path required: true schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1GPUConfigSchema' patch: tags: - gpu config resource summary: Update a gpu config operationId: Update a gpu config parameters: - name: gpuConfigName in: path required: true schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update A Gpu ConfigInput' responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1GPUConfigSchema' /api/admin/v1/host_clusters: get: tags: - host_clusters summary: List host clusters operationId: List host clusters parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1HostClusterListSchema' post: tags: - host_clusters summary: Create host cluster operationId: Create host cluster requestBody: content: application/json: schema: $ref: '#/components/schemas/Create Host ClusterInput' responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time default: type: boolean deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string grafana_root_path: type: string kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/admin/v1/host_clusters/{hostClusterName}: get: tags: - host cluster resource summary: Get a host cluster operationId: Get a host cluster parameters: - name: hostClusterName in: path required: true schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time default: type: boolean deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string grafana_root_path: type: string kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time delete: tags: - host cluster resource summary: Delete a host cluster operationId: Delete a host cluster parameters: - name: hostClusterName in: path required: true schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time default: type: boolean deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string grafana_root_path: type: string kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time patch: tags: - host cluster resource summary: Update a host cluster operationId: Update a host cluster parameters: - name: hostClusterName in: path required: true schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update A Host ClusterInput' responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time default: type: boolean deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string grafana_root_path: type: string kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/admin/v1/limit_groups: get: tags: - limit groups summary: List limit groups operationId: List limit groups parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1LimitGroupListSchema' post: tags: - limit groups summary: Create a limit group operationId: Create a limit group requestBody: content: application/json: schema: $ref: '#/components/schemas/Create A Limit GroupInput' responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string plan_code: type: string resource_instance_list: type: array items: $ref: '#/components/schemas/Schemasv1ResourceInstanceWithActiveSchema' resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time visible: type: boolean nullable: true /api/admin/v1/limit_groups/{limitGroupName}: get: tags: - limit group resource summary: Get a limit group operationId: Get a limit group parameters: - name: limitGroupName in: path required: true schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string plan_code: type: string resource_instance_list: type: array items: $ref: '#/components/schemas/Schemasv1ResourceInstanceWithActiveSchema' resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time visible: type: boolean nullable: true delete: tags: - limit group resource summary: Delete a limit group operationId: Delete a limit group parameters: - name: limitGroupName in: path required: true schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string plan_code: type: string resource_instance_list: type: array items: $ref: '#/components/schemas/Schemasv1ResourceInstanceWithActiveSchema' resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time visible: type: boolean nullable: true patch: tags: - limit group resource summary: Update a limit group operationId: Update a limit group parameters: - name: limitGroupName in: path required: true schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update A Limit GroupInput' responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string plan_code: type: string resource_instance_list: type: array items: $ref: '#/components/schemas/Schemasv1ResourceInstanceWithActiveSchema' resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time visible: type: boolean nullable: true ? /api/admin/v1/organizations/{orgName}/clusters/{clusterName}/namespaces/{namespace}/deployments/{deploymentName}/status_records : get: tags: - admin deployment resource summary: List deployment status records in admin panel operationId: List deployment status records in admin panel parameters: - name: clusterName in: path required: true schema: type: string - name: deploymentName in: path required: true schema: type: string - name: namespace in: path required: true schema: type: string - name: orgName in: path required: true schema: type: string - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv2DeploymentStatusRecordListSchema' /api/admin/v1/orgs/{orgName}: delete: tags: - org resource for admin panel summary: Delete an org in admin panel operationId: Delete an org in admin panel parameters: - name: orgName in: path required: true schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time /api/admin/v1/orgs/{orgName}/clusters: post: tags: - clusters for admin panel summary: Create cluster in admin panel operationId: Create cluster in admin panel parameters: - name: orgName in: path required: true schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Create Cluster In Admin PanelInput' responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/admin/v1/orgs/{orgName}/clusters/{clusterName}: get: tags: - cluster resource for admin panel summary: Get a cluster in admin panel operationId: Get a cluster in admin panel parameters: - name: clusterName in: path required: true schema: type: string - name: orgName in: path required: true schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time delete: tags: - cluster resource for admin panel summary: Delete a cluster in admin panel operationId: Delete a cluster in admin panel parameters: - name: clusterName in: path required: true schema: type: string - name: orgName in: path required: true schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time patch: tags: - cluster resource for admin panel summary: Update a cluster in admin panel operationId: Update a cluster in admin panel parameters: - name: clusterName in: path required: true schema: type: string - name: orgName in: path required: true schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update A Cluster In Admin PanelInput' responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/admin/v1/orgs/{orgName}/clusters/{clusterName}/members: get: tags: - cluster resource for admin panel summary: List cluster members in admin panel operationId: List cluster members in admin panel parameters: - name: clusterName in: path required: true schema: type: string - name: orgName in: path required: true schema: type: string responses: '200': description: OK content: application/json: schema: type: array items: $ref: '#/components/schemas/Schemasv1ClusterMemberSchema' post: tags: - cluster resource for admin panel summary: Create a cluster member in admin panel operationId: Create a cluster member in admin panel parameters: - name: clusterName in: path required: true schema: type: string - name: orgName in: path required: true schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Create A Cluster Member In Admin PanelInput' responses: '200': description: OK content: application/json: schema: type: array items: $ref: '#/components/schemas/Schemasv1ClusterMemberSchema' delete: tags: - cluster resource for admin panel summary: Remove a cluster member in admin panel operationId: Remove a cluster member in admin panel parameters: - name: clusterName in: path required: true schema: type: string - name: orgName in: path required: true schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1ClusterMemberSchema' /api/admin/v1/orgs/{orgName}/clusters/{clusterName}/migrate_deployments: post: tags: - cluster resource for admin panel summary: Migrate deployments on cluster in admin panel operationId: Migrate deployments on cluster in admin panel parameters: - name: clusterName in: path required: true schema: type: string - name: orgName in: path required: true schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Migrate Deployments On Cluster In Admin PanelInput' responses: '200': description: OK content: application/json: schema: type: integer format: int32 /api/admin/v1/orgs/{orgName}/clusters/{clusterName}/sync_tenant_kubeconfig: put: tags: - cluster resource for admin panel summary: Sync tenant kubeconfig in a cluster in admin panel operationId: Sync tenant kubeconfig in a cluster in admin panel parameters: - name: clusterName in: path required: true schema: type: string - name: orgName in: path required: true schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/admin/v1/orgs/{orgName}/clusters/{clusterName}/sync_tenant_resources: put: tags: - cluster resource for admin panel summary: Sync tenant resources in a cluster in admin panel operationId: Sync tenant resources in a cluster in admin panel parameters: - name: clusterName in: path required: true schema: type: string - name: orgName in: path required: true schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/admin/v1/orgs/{orgName}/models: get: tags: - org resource for admin panel summary: List models in an org in admin panel operationId: List models in an org in admin panel parameters: - name: orgName in: path required: true schema: type: string - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1ModelWithRepositoryListSchema' /api/admin/v1/orgs/{orgName}/operate: post: tags: - org resource for admin panel summary: Operate an org in admin panel operationId: Operate an org in admin panel parameters: - name: orgName in: path required: true schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Operate An Org In Admin PanelInput' responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time /api/admin/v1/orgs/{orgName}/sync_s3_credentials: post: tags: - org resource for admin panel summary: Sync org S3 credentials to all non-multi-tenancy clusters operationId: Sync org S3 credentials to clusters parameters: - name: orgName in: path required: true schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time /api/admin/v1/resource_instances: get: tags: - resource instances summary: List resource instances operationId: List resource instances parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1ResourceInstanceListSchema' post: tags: - resource instances summary: Create a resource instance operationId: Create a resource instance requestBody: content: application/json: schema: $ref: '#/components/schemas/Create A Resource InstanceInput' responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/admin/v1/resource_instances/{resourceInstanceName}: get: tags: - resource instance resource summary: Get a resource instance operationId: Get a resource instance parameters: - name: resourceInstanceName in: path required: true schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time delete: tags: - resource instance resource summary: Delete a resource instance operationId: Delete a resource instance parameters: - name: resourceInstanceName in: path required: true schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time patch: tags: - resource instance resource summary: Update a resource instance operationId: Update a resource instance parameters: - name: resourceInstanceName in: path required: true schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update A Resource InstanceInput' responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/admin/v1/sync_all_tenant_resources: put: tags: - admin api v1 summary: Sync all tenant resources in a cluster in admin panel operationId: Sync all tenant resources in a cluster in admin panel parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Admincontrollersv1SyncResultSchema' /api/v1/api_tokens: get: tags: - api tokens summary: List api tokens operationId: List api tokens parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1ApiTokenListSchema' post: tags: - api tokens summary: Create api token operationId: Create api token parameters: - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Create Api TokenInput' responses: '200': description: OK content: application/json: schema: type: object properties: created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment_names: type: array items: type: string deployment_uids: type: array items: type: string description: type: string expired_at: type: string format: date-time nullable: true is_access_token: type: boolean is_api_token: type: boolean is_expired: type: boolean is_global_access: type: boolean is_global_router_access: type: boolean is_monitoring_token: type: boolean is_organization_token: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_used_at: type: string format: date-time nullable: true name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token scopes: type: array items: type: string token: type: string uid: type: string updated_at: type: string format: date-time user: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/api_tokens/{apiTokenUid}: get: tags: - api token resource summary: Get a api token operationId: Get a api token parameters: - name: apiTokenUid in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment_names: type: array items: type: string deployment_uids: type: array items: type: string description: type: string expired_at: type: string format: date-time nullable: true is_access_token: type: boolean is_api_token: type: boolean is_expired: type: boolean is_global_access: type: boolean is_global_router_access: type: boolean is_monitoring_token: type: boolean is_organization_token: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_used_at: type: string format: date-time nullable: true name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token scopes: type: array items: type: string token: type: string uid: type: string updated_at: type: string format: date-time user: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time delete: tags: - api token resource summary: Delete a api token operationId: Delete a api token parameters: - name: apiTokenUid in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment_names: type: array items: type: string deployment_uids: type: array items: type: string description: type: string expired_at: type: string format: date-time nullable: true is_access_token: type: boolean is_api_token: type: boolean is_expired: type: boolean is_global_access: type: boolean is_global_router_access: type: boolean is_monitoring_token: type: boolean is_organization_token: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_used_at: type: string format: date-time nullable: true name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token scopes: type: array items: type: string token: type: string uid: type: string updated_at: type: string format: date-time user: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time patch: tags: - api token resource summary: Update a api token operationId: Update a api token parameters: - name: apiTokenUid in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update A Api TokenInput' responses: '200': description: OK content: application/json: schema: type: object properties: created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment_names: type: array items: type: string deployment_uids: type: array items: type: string description: type: string expired_at: type: string format: date-time nullable: true is_access_token: type: boolean is_api_token: type: boolean is_expired: type: boolean is_global_access: type: boolean is_global_router_access: type: boolean is_monitoring_token: type: boolean is_organization_token: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_used_at: type: string format: date-time nullable: true name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token scopes: type: array items: type: string token: type: string uid: type: string updated_at: type: string format: date-time user: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/auth/airtable_event: post: tags: - auth summary: Airtable event callback operationId: Airtable event callback requestBody: content: application/json: schema: $ref: '#/components/schemas/Airtable Event CallbackInput' responses: '200': description: OK content: application/json: schema: type: object /api/v1/auth/code: get: tags: - auth summary: Get auth code operationId: Get auth code responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1CodeSchema' /api/v1/auth/current: get: tags: - auth summary: Get current user operationId: Get current user responses: '200': description: OK content: application/json: schema: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time put: tags: - auth summary: Put infos for current user operationId: Put infos for current user requestBody: content: application/json: schema: $ref: '#/components/schemas/Put Infos For Current UserInput' responses: '200': description: OK content: application/json: schema: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/auth/firebase_info: get: tags: - auth summary: Firebase Info operationId: Firebase Info responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Controllersv1FirebaseInfoSchema' /api/v1/auth/login: post: tags: - auth summary: Login an user operationId: Login an user requestBody: content: application/json: schema: $ref: '#/components/schemas/Login An UserInput' responses: '200': description: OK content: application/json: schema: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/auth/oidc/callback: get: tags: - auth summary: Handle OIDC authentication callback operationId: OIDC Callback parameters: - name: code in: query schema: type: string - name: error in: query schema: type: string - name: state in: query schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Controllersv1OIDCCallbackResponseSchema' /api/v1/auth/oidc_info: get: tags: - auth summary: Get OIDC configuration for organization operationId: OIDC Info responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Controllersv1OIDCInfoSchema' /api/v1/auth/register: post: tags: - auth summary: Register an user operationId: Register an user requestBody: content: application/json: schema: $ref: '#/components/schemas/Register An UserInput' responses: '200': description: OK content: application/json: schema: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/auth/reset_password: patch: tags: - auth summary: Reset password operationId: Reset password requestBody: content: application/json: schema: $ref: '#/components/schemas/Reset PasswordInput' responses: '200': description: OK content: application/json: schema: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/auth/sso: post: tags: - auth summary: Single sign on operationId: Single sign on requestBody: content: application/json: schema: $ref: '#/components/schemas/Single Sign OnInput' responses: '200': description: OK content: application/json: schema: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/auth/token: get: tags: - auth summary: Get auth token by code operationId: Get auth token by code parameters: - name: code in: query schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment_names: type: array items: type: string deployment_uids: type: array items: type: string description: type: string expired_at: type: string format: date-time nullable: true is_access_token: type: boolean is_api_token: type: boolean is_expired: type: boolean is_global_access: type: boolean is_global_router_access: type: boolean is_monitoring_token: type: boolean is_organization_token: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_used_at: type: string format: date-time nullable: true name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token scopes: type: array items: type: string token: type: string uid: type: string updated_at: type: string format: date-time user: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/bento_repositories: get: tags: - bento repositories summary: List bento repositories operationId: List bento repositories parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1BentoRepositoryWithLatestDeploymentsListSchema' post: tags: - bento repositories summary: Create bento repository operationId: Create bento repository parameters: - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Create Bento RepositoryInput' responses: '200': description: OK content: application/json: schema: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/bento_repositories/{bentoRepositoryName}: get: tags: - bento repository resource summary: Get a bento repository operationId: Get a bento repository parameters: - name: bentoRepositoryName in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time patch: tags: - bento repository resource summary: Update a bento repository operationId: Update a bento repository parameters: - name: bentoRepositoryName in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update A Bento RepositoryInput' responses: '200': description: OK content: application/json: schema: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/bento_repositories/{bentoRepositoryName}/bentos: get: tags: - bentos summary: List bentos operationId: List bentos parameters: - name: bentoRepositoryName in: path required: true schema: type: string - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1BentoWithSlimRepositoryListSchema' post: tags: - bentos summary: Create a bento operationId: Create a bento parameters: - name: bentoRepositoryName in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Create A BentoInput' responses: '200': description: OK content: application/json: schema: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string /api/v1/bento_repositories/{bentoRepositoryName}/bentos/{version}: get: tags: - bento resource summary: Get a bento operationId: Get a bento parameters: - name: bentoRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' models: type: array items: type: object properties: build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_model: type: object properties: build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string delete: tags: - bento resource summary: Delete a bento operationId: Delete a bento parameters: - name: bentoRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK patch: tags: - bento resource summary: Update a bento operationId: Update a bento parameters: - name: bentoRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update A BentoInput' responses: '200': description: OK content: application/json: schema: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string /api/v1/bento_repositories/{bentoRepositoryName}/bentos/{version}/complete_multipart_upload: patch: tags: - bento resource summary: Complete a bento multipart upload operationId: Complete a bento multipart upload parameters: - name: bentoRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Complete A Bento Multipart UploadInput' responses: '200': description: OK content: application/json: schema: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string /api/v1/bento_repositories/{bentoRepositoryName}/bentos/{version}/deployments: get: tags: - bento resource summary: List bento deployments operationId: List bento deployments parameters: - name: bentoRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1DeploymentListSchema' /api/v1/bento_repositories/{bentoRepositoryName}/bentos/{version}/finish_upload: patch: tags: - bento resource summary: Finish upload a bento operationId: Finish upload a bento parameters: - name: bentoRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Finish Upload A BentoInput' responses: '200': description: OK content: application/json: schema: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string /api/v1/bento_repositories/{bentoRepositoryName}/bentos/{version}/models: get: tags: - bento resource summary: List bento models operationId: List bento models parameters: - name: bentoRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: array items: type: object properties: build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_model: type: object properties: build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string /api/v1/bento_repositories/{bentoRepositoryName}/bentos/{version}/presign_download_url: patch: tags: - bento resource summary: Pre sign bento download URL operationId: Pre sign bento download URL parameters: - name: bentoRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string /api/v1/bento_repositories/{bentoRepositoryName}/bentos/{version}/presign_multipart_upload_url: patch: tags: - bento resource summary: Presign a bento multipart upload url operationId: Presign a bento multipart upload url parameters: - name: bentoRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Presign A Bento Multipart Upload UrlInput' responses: '200': description: OK content: application/json: schema: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string /api/v1/bento_repositories/{bentoRepositoryName}/bentos/{version}/presign_upload_url: patch: tags: - bento resource summary: Pre sign bento upload URL operationId: Pre sign bento upload URL parameters: - name: bentoRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string /api/v1/bento_repositories/{bentoRepositoryName}/bentos/{version}/recommendation_configs: get: tags: - bento resource summary: Get bento recommendation configs operationId: Get bento recommendation configs parameters: - name: bentoRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: cluster in: query schema: type: string - name: distributed in: query allowEmptyValue: true schema: type: boolean default: false - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1BentoRecommendationConfigSchema' /api/v1/bento_repositories/{bentoRepositoryName}/bentos/{version}/start_multipart_upload: patch: tags: - bento resource summary: Start a bento multipart upload operationId: Start a bento multipart upload parameters: - name: bentoRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string /api/v1/bento_repositories/{bentoRepositoryName}/bentos/{version}/start_upload: patch: tags: - bento resource summary: Start upload a bento operationId: Start upload a bento parameters: - name: bentoRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string /api/v1/bento_repositories/{bentoRepositoryName}/bentos/{version}/update_image_build_status: patch: tags: - bento resource summary: Update a bento image build status operationId: Update a bento image build status parameters: - name: bentoRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update A Bento Image Build StatusInput' responses: '200': description: OK /api/v1/bento_repositories/{bentoRepositoryName}/bentos/{version}/update_image_build_status_syncing_at: patch: tags: - bento resource summary: Update a bento image build status syncing_at operationId: Update a bento image build status syncing_at parameters: - name: bentoRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK /api/v1/bento_repositories/{bentoRepositoryName}/deployments: get: tags: - bento repository resource summary: List bento repository deployments operationId: List bento repository deployments parameters: - name: bentoRepositoryName in: path required: true schema: type: string - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1DeploymentListWoRevisionSchema' /api/v1/bento_repositories_stats: get: tags: - bento repositories statistics summary: Get bento repositories stats operationId: Get bento repositories stats parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1BentoRepositoryWithStatisticsListSchema' /api/v1/bentos: get: tags: - api v1 summary: List all bentos operationId: List all bentos parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1BentoWithRepositoryListSchema' /api/v1/certified_bento_repositories: get: tags: - certified bento repositories summary: List repositories with certified bentos operationId: List repositories with certified bentos parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1CertifiedBentoRepositoryListIndexSchema' /api/v1/clusters: get: tags: - clusters summary: List clusters operationId: List clusters parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1ClusterWithStandbyListSchema' post: tags: - clusters summary: Create cluster operationId: Create cluster parameters: - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Create ClusterInput' responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/clusters/{clusterName}: get: tags: - cluster resource summary: Get a cluster operationId: Get a cluster parameters: - name: clusterName in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time patch: tags: - cluster resource summary: Update a cluster operationId: Update a cluster parameters: - name: clusterName in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update A ClusterInput' responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/clusters/{clusterName}/deployments: get: tags: - cluster deployments summary: List cluster deployments operationId: List cluster deployments parameters: - name: clusterName in: path required: true schema: type: string - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1DeploymentListSchema' post: tags: - cluster deployments summary: Create deployment operationId: Create deployment parameters: - name: clusterName in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Create DeploymentInput' responses: '200': description: OK content: application/json: schema: type: object properties: cluster: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time urls: type: array items: type: string /api/v1/clusters/{clusterName}/members: get: tags: - cluster resource summary: List cluster members operationId: List cluster members parameters: - name: clusterName in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: array items: $ref: '#/components/schemas/Schemasv1ClusterMemberSchema' post: tags: - cluster resource summary: Create a cluster member operationId: Create a cluster member parameters: - name: clusterName in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Create A Cluster MemberInput' responses: '200': description: OK content: application/json: schema: type: array items: $ref: '#/components/schemas/Schemasv1ClusterMemberSchema' delete: tags: - cluster resource summary: Remove a cluster member operationId: Remove a cluster member parameters: - name: clusterName in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1ClusterMemberSchema' /api/v1/clusters/{clusterName}/namespaces/{kubeNamespace}/deployments/{deploymentName}: get: tags: - deployment resource summary: Get a deployment operationId: Get a deployment parameters: - name: clusterName in: path required: true schema: type: string - name: deploymentName in: path required: true schema: type: string - name: kubeNamespace in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: cluster: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time urls: type: array items: type: string delete: tags: - deployment resource summary: Delete a deployment operationId: Delete a deployment parameters: - name: clusterName in: path required: true schema: type: string - name: deploymentName in: path required: true schema: type: string - name: kubeNamespace in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: cluster: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time urls: type: array items: type: string patch: tags: - deployment resource summary: Update a deployment operationId: Update a deployment parameters: - name: clusterName in: path required: true schema: type: string - name: deploymentName in: path required: true schema: type: string - name: kubeNamespace in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update A DeploymentInput' responses: '200': description: OK content: application/json: schema: type: object properties: cluster: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time urls: type: array items: type: string /api/v1/clusters/{clusterName}/namespaces/{kubeNamespace}/deployments/{deploymentName}/revisions: get: tags: - deployment revisions summary: List deployment revisions operationId: List deployment revisions parameters: - name: clusterName in: path required: true schema: type: string - name: deploymentName in: path required: true schema: type: string - name: kubeNamespace in: path required: true schema: type: string - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1DeploymentRevisionListSchema' /api/v1/clusters/{clusterName}/namespaces/{kubeNamespace}/deployments/{deploymentName}/revisions/{revisionUid}: get: tags: - deployment revision resource summary: Get a deployment revision operationId: Get a deployment revision parameters: - name: clusterName in: path required: true schema: type: string - name: deploymentName in: path required: true schema: type: string - name: kubeNamespace in: path required: true schema: type: string - name: revisionUid in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time /api/v1/clusters/{clusterName}/namespaces/{kubeNamespace}/deployments/{deploymentName}/sync_status: post: tags: - deployment resource summary: Sync a deployment status operationId: Sync a deployment status parameters: - name: clusterName in: path required: true schema: type: string - name: deploymentName in: path required: true schema: type: string - name: kubeNamespace in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/clusters/{clusterName}/namespaces/{kubeNamespace}/deployments/{deploymentName}/terminal_records: get: tags: - deployment resource summary: List deployment terminal records operationId: List deployment terminal records parameters: - name: clusterName in: path required: true schema: type: string - name: deploymentName in: path required: true schema: type: string - name: kubeNamespace in: path required: true schema: type: string - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1TerminalRecordListSchema' /api/v1/clusters/{clusterName}/namespaces/{kubeNamespace}/deployments/{deploymentName}/terminate: post: tags: - deployment resource summary: Terminate a deployment operationId: Terminate a deployment parameters: - name: clusterName in: path required: true schema: type: string - name: deploymentName in: path required: true schema: type: string - name: kubeNamespace in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: cluster: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time urls: type: array items: type: string /api/v1/clusters/{clusterName}/standby_instances: patch: tags: - cluster resource summary: Update standby instances operationId: Update standby instances parameters: - name: clusterName in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update Standby InstancesInput' responses: '200': description: OK content: application/json: schema: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_instance_names: type: array items: $ref: '#/components/schemas/Schemasv1ResourceInstanceName' resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token standby_instances: type: object additionalProperties: type: integer format: int32 uid: type: string updated_at: type: string format: date-time /api/v1/clusters/{clusterName}/yatai_components: get: tags: - yatai components summary: List yatai components operationId: List yatai components parameters: - name: clusterName in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: array items: type: object properties: cluster: type: object properties: config: type: string nullable: true created_at: type: string format: date-time default: type: boolean deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string grafana_root_path: type: string kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_heartbeat_at: type: string format: date-time nullable: true latest_installed_at: type: string format: date-time nullable: true manifest: $ref: '#/components/schemas/ModelschemasYataiComponentManifestSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time version: type: string /api/v1/current_org: get: tags: - current organization resource summary: Get current organization operationId: Get current organization parameters: - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time patch: tags: - current organization resource summary: Update current organization operationId: Update current organization parameters: - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update Current OrganizationInput' responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time /api/v1/current_org/current_credit: get: tags: - current organization resource summary: Get an organization's current credit operationId: Get an organization's current credit parameters: - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1CustomerCurrentCreditSchema' /api/v1/current_org/current_price: get: tags: - current organization resource summary: Get current organization with current price operationId: Get current organization with current price parameters: - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time /api/v1/current_org/current_usage: get: tags: - current organization resource summary: Get an organization's current usage operationId: Get an organization's current usage parameters: - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Controllersv1CustomerCurrentUsageSchema' /api/v1/current_org/customer_portal_url: get: tags: - current organization resource summary: Get customer portal URL operationId: Get customer portal URL parameters: - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: string /api/v1/current_org/event_operation_names: get: tags: - current organization resource summary: List current organization event operation names operationId: List current organization event operation names parameters: - name: resource_type in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: array items: type: string /api/v1/current_org/events: get: tags: - current organization resource summary: List current organization events operationId: List current organization events parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1EventListSchema' /api/v1/current_org/major_cluster: get: tags: - current organization resource summary: Get an organization major cluster operationId: Get an organization major cluster parameters: - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/current_org/model_modules: get: tags: - current organization resource summary: Get an organization model modules operationId: Get an organization model modules parameters: - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: array items: type: string /api/v1/current_org/payment: get: tags: - current organization resource summary: Get an organization's payment operationId: Get an organization's payment parameters: - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: billing_customer_id: type: string created_at: type: string format: date-time customer: description: Value of any type, including null nullable: true deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_customer: $ref: '#/components/schemas/Schemasv1LagoCustomer' lago_id: type: string name: type: string payment_portal_url: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token stripe_id: type: string subscription_id: type: string uid: type: string updated_at: type: string format: date-time wallet_id: type: string /api/v1/current_org/plan: put: tags: - current organization resource summary: Update an organization's plan operationId: Update an organization's plan parameters: - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update An Organization''S PlanInput' responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time /api/v1/current_org/usage_metrics: get: tags: - current organization resource summary: Get an organization's usage metrics by time granularity operationId: Get an organization's usage metrics parameters: - name: debug in: query schema: type: string - name: granularity in: query schema: type: string - name: metrics in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Controllersv1MetricUsageSchema' /api/v1/current_org/yatai_components: get: tags: - current organization resource summary: List current organization all yatai components operationId: List current organization all yatai components parameters: - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: array items: type: object properties: cluster: type: object properties: config: type: string nullable: true created_at: type: string format: date-time default: type: boolean deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string grafana_root_path: type: string kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_heartbeat_at: type: string format: date-time nullable: true latest_installed_at: type: string format: date-time nullable: true manifest: $ref: '#/components/schemas/ModelschemasYataiComponentManifestSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time version: type: string /api/v1/customers: get: tags: - customers summary: List customers operationId: List customers parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1CustomerListFullSchema' /api/v1/customers/{customerName}: get: tags: - customer resource summary: Get a customer operationId: Get a customer parameters: - name: customerName in: path required: true schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: billing_customer_id: type: string created_at: type: string format: date-time customer: description: Value of any type, including null nullable: true deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_customer: $ref: '#/components/schemas/Schemasv1LagoCustomer' lago_id: type: string name: type: string payment_portal_url: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token stripe_id: type: string subscription_id: type: string uid: type: string updated_at: type: string format: date-time wallet_id: type: string patch: tags: - customer resource summary: Update a customer operationId: Update a customer parameters: - name: customerName in: path required: true schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update A CustomerInput' responses: '200': description: OK content: application/json: schema: type: object properties: billing_customer_id: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token stripe_id: type: string subscription_id: type: string uid: type: string updated_at: type: string format: date-time wallet_id: type: string /api/v1/deployment_creation_json_schema: get: tags: - api v1 summary: Get deployment creation json schema operationId: Get deployment creation json schema responses: '200': description: OK content: application/json: schema: description: Value of any type, including null nullable: true /api/v1/deployments: get: tags: - api v1 summary: List organization deployments operationId: List organization deployments parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1DeploymentListSchema' /api/v1/deployments-wo-revisions: get: tags: - api v1 summary: List organization deployments without revisions operationId: List organization deployments without revisions parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1DeploymentListWoRevisionSchema' /api/v1/endpoints: get: tags: - api v1 summary: List organization endpoints operationId: List organization endpoints parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1EndpointListSchema' post: tags: - api v1 summary: Create an endpoint operationId: Create an endpoint parameters: - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Create An EndpointInput' responses: '200': description: OK content: application/json: schema: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployments: type: array items: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time domain: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' load_balance: type: string manifest: $ref: '#/components/schemas/ModelschemasEndpointManifest' name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time overflow_scale_out_delay: type: integer format: int32 nullable: true protocol: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string strategy: type: string uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time url: type: string /api/v1/endpoints/{endpointUID}: get: tags: - endpoint resource summary: Get an endpoint operationId: Get an endpoint parameters: - name: endpointUID in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployments: type: array items: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time domain: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' load_balance: type: string manifest: $ref: '#/components/schemas/ModelschemasEndpointManifest' name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time overflow_scale_out_delay: type: integer format: int32 nullable: true protocol: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string strategy: type: string uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time url: type: string delete: tags: - endpoint resource summary: Delete an endpoint operationId: Delete an endpoint parameters: - name: endpointUID in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK patch: tags: - endpoint resource summary: Update an endpoint operationId: Update an endpoint parameters: - name: endpointUID in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update An EndpointInput' responses: '200': description: OK content: application/json: schema: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployments: type: array items: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time domain: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' load_balance: type: string manifest: $ref: '#/components/schemas/ModelschemasEndpointManifest' name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time overflow_scale_out_delay: type: integer format: int32 nullable: true protocol: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string strategy: type: string uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time url: type: string /api/v1/endpoints/{endpointUID}/start: post: tags: - endpoint resource summary: Start an endpoint operationId: Start an endpoint parameters: - name: endpointUID in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployments: type: array items: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time domain: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' load_balance: type: string manifest: $ref: '#/components/schemas/ModelschemasEndpointManifest' name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time overflow_scale_out_delay: type: integer format: int32 nullable: true protocol: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string strategy: type: string uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time url: type: string /api/v1/endpoints/{endpointUID}/terminate: post: tags: - endpoint resource summary: Terminate an endpoint operationId: Terminate an endpoint parameters: - name: endpointUID in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployments: type: array items: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time domain: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' load_balance: type: string manifest: $ref: '#/components/schemas/ModelschemasEndpointManifest' name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time overflow_scale_out_delay: type: integer format: int32 nullable: true protocol: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string strategy: type: string uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time url: type: string /api/v1/image_build_status_unsynced_bentos: get: tags: - api v1 summary: List image build status unsynced bentos operationId: List image build status unsynced bentos parameters: - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string /api/v1/info: get: tags: - api v1 summary: Get info operationId: Get info responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Controllersv1InfoSchema' /api/v1/instance_types: get: tags: - instance_types summary: List instance types operationId: List instance types parameters: - name: cluster in: query schema: type: string - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/labels: get: tags: - labels summary: List Labels operationId: List Labels parameters: - name: resource_type in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: array items: $ref: '#/components/schemas/Schemasv1LabelWithValuesSchema' /api/v1/lago/billable_metrics: get: tags: - lago billable metrics summary: List lago billable metrics operationId: List lago billable metrics responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1LagoBillableMetricsListSchema' post: tags: - lago billable metrics summary: Create lago billable metric operationId: Create lago billable metric requestBody: content: application/json: schema: $ref: '#/components/schemas/Create Lago Billable MetricInput' responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1BillableMetrics' /api/v1/lago/billable_metrics/{billableMetricCode}: put: tags: - lago billable metrics summary: Update lago billable metric operationId: Update lago billable metric parameters: - name: billableMetricCode in: path required: true schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update Lago Billable MetricInput' responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1BillableMetrics' /api/v1/lago/customers: get: tags: - lago customer summary: List lago customers operationId: List lago customers responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1LagoCustomerListSchema' post: tags: - lago customer summary: Create lago customer operationId: Create lago customer requestBody: content: application/json: schema: $ref: '#/components/schemas/Create Lago CustomerInput' responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1LagoCustomer' /api/v1/lago/customers/{customerId}: put: tags: - lago customer summary: Update lago customer operationId: Update lago customer parameters: - name: customerId in: path required: true schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update Lago CustomerInput' responses: '200': description: OK /api/v1/lago/plans: get: tags: - lago plan summary: List lago plans operationId: List lago plans responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1LagoPlanListSchema' post: tags: - lago plan summary: Create lago plan operationId: Create lago plan requestBody: content: application/json: schema: $ref: '#/components/schemas/Create Lago PlanInput' responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1Plan' /api/v1/lago/plans/{planName}: put: tags: - lago plan summary: Update lago plan operationId: Update lago plan parameters: - name: planName in: path required: true schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update Lago PlanInput' responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1Plan' /api/v1/members: get: tags: - api v1 summary: Get organization members operationId: List organization members parameters: - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: array items: $ref: '#/components/schemas/Schemasv1OrganizationMemberSchema' put: tags: - api v1 summary: Update an organization member operationId: Update an organization member parameters: - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update An Organization MemberInput' responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1OrganizationMemberSchema' post: tags: - api v1 summary: Create an organization member operationId: Create an organization member parameters: - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Create An Organization MemberInput' responses: '200': description: OK content: application/json: schema: type: array items: $ref: '#/components/schemas/Schemasv1OrganizationMemberSchema' delete: tags: - api v1 summary: Remove an organization member operationId: Remove an organization member parameters: - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1OrganizationMemberSchema' /api/v1/members/current: get: tags: - api v1 summary: Get current organization member operationId: Get current organization member parameters: - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1MemberSchema' /api/v1/model_endpoints: get: tags: - api v1 summary: List organization model endpoints operationId: List organization model endpoints parameters: - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Controllersv1ModelEndpointListSchema' /api/v1/model_endpoints/{modelName}: get: tags: - api v1 summary: Get model endpoint by name operationId: Get model endpoint by name parameters: - name: modelName in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Controllersv1ModelEndpointSchema' /api/v1/model_repositories: get: tags: - model repositories summary: List model repositories operationId: List model repositories parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1ModelRepositoryListSchema' post: tags: - model repositories summary: Create a model repository operationId: Create a model repository parameters: - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Create A Model RepositoryInput' responses: '200': description: OK content: application/json: schema: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_model: type: object properties: build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/model_repositories/{modelRepositoryName}: get: tags: - model repository resource summary: Get a model repository operationId: Get a model repository parameters: - name: modelRepositoryName in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_model: type: object properties: build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time patch: tags: - model repository resource summary: Update a model repository operationId: Update a model repository parameters: - name: modelRepositoryName in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update A Model RepositoryInput' responses: '200': description: OK content: application/json: schema: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_model: type: object properties: build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/model_repositories/{modelRepositoryName}/models: get: tags: - models summary: List models operationId: List models parameters: - name: modelRepositoryName in: path required: true schema: type: string - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1ModelListSchema' post: tags: - models summary: Create a model operationId: Create a model parameters: - name: modelRepositoryName in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Create A ModelInput' responses: '200': description: OK content: application/json: schema: type: object properties: build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string /api/v1/model_repositories/{modelRepositoryName}/models/{version}: get: tags: - model resource summary: Get a model operationId: Get a model parameters: - name: modelRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_model: type: object properties: build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string delete: tags: - model resource summary: Delete a model operationId: Delete a model parameters: - name: modelRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK patch: tags: - model resource summary: Update a model operationId: Update a model parameters: - name: modelRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update A ModelInput' responses: '200': description: OK content: application/json: schema: type: object properties: build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string /api/v1/model_repositories/{modelRepositoryName}/models/{version}/bentos: get: tags: - model resource summary: List model bentos operationId: List model bentos parameters: - name: modelRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1BentoWithRepositoryListSchema' /api/v1/model_repositories/{modelRepositoryName}/models/{version}/complete_multipart_upload: patch: tags: - model resource summary: Complete a model multipart upload operationId: Complete a model multipart upload parameters: - name: modelRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Complete A Model Multipart UploadInput' responses: '200': description: OK content: application/json: schema: type: object properties: build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string /api/v1/model_repositories/{modelRepositoryName}/models/{version}/deployments: get: tags: - model resource summary: List model deployments operationId: List model deployments parameters: - name: modelRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1DeploymentListSchema' /api/v1/model_repositories/{modelRepositoryName}/models/{version}/finish_upload: patch: tags: - model resource summary: Finish upload a model operationId: Finish upload a model parameters: - name: modelRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Finish Upload A ModelInput' responses: '200': description: OK content: application/json: schema: type: object properties: build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string /api/v1/model_repositories/{modelRepositoryName}/models/{version}/presign_download_url: patch: tags: - model resource summary: Pre sign model download URL operationId: Pre sign model download URL parameters: - name: modelRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string /api/v1/model_repositories/{modelRepositoryName}/models/{version}/presign_multipart_upload_url: patch: tags: - model resource summary: Presign a model multipart upload url operationId: Presign a model multipart upload url parameters: - name: modelRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Presign A Model Multipart Upload UrlInput' responses: '200': description: OK content: application/json: schema: type: object properties: build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string /api/v1/model_repositories/{modelRepositoryName}/models/{version}/presign_upload_url: patch: tags: - model resource summary: Pre sign model upload URL operationId: Pre sign model upload URL parameters: - name: modelRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string /api/v1/model_repositories/{modelRepositoryName}/models/{version}/start_multipart_upload: patch: tags: - model resource summary: Start a model multipart upload operationId: Start a model multipart upload parameters: - name: modelRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string /api/v1/model_repositories/{modelRepositoryName}/models/{version}/start_upload: patch: tags: - model resource summary: Start upload a model operationId: Start upload a model parameters: - name: modelRepositoryName in: path required: true schema: type: string - name: version in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string /api/v1/models: get: tags: - api v1 summary: List all models operationId: List all models parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1ModelWithRepositoryListSchema' /api/v1/news: get: tags: - api v1 summary: Get news operationId: Get news responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Controllersv1NewsContent' /api/v1/org_secrets: get: tags: - organization secrets summary: List secrets operationId: List secrets parameters: - name: all in: query allowEmptyValue: true schema: type: boolean - name: cluster in: query schema: type: string - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1SecretListSchema' post: tags: - organization secrets summary: Create a secret operationId: Create a secret parameters: - name: cluster in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Create A SecretInput' responses: '200': description: OK content: application/json: schema: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time content: $ref: '#/components/schemas/ModelschemasSecretNoValueContent' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployments: type: array items: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/org_secrets/{name}: get: tags: - secret names summary: Get a secret by name operationId: Get a secret by name parameters: - name: name in: path required: true schema: type: string - name: cluster in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time content: $ref: '#/components/schemas/ModelschemasSecretNoValueContent' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployments: type: array items: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time delete: tags: - secret names summary: Delete a secret by name operationId: Delete a secret by name parameters: - name: name in: path required: true schema: type: string - name: cluster in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK patch: tags: - secret names summary: Update a secret by name operationId: Update a secret by name parameters: - name: name in: path required: true schema: type: string - name: cluster in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update A Secret By NameInput' responses: '200': description: OK content: application/json: schema: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time content: $ref: '#/components/schemas/ModelschemasSecretNoValueContent' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployments: type: array items: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/org_secrets_check: post: tags: - organization secrets with check message summary: List secret swith check message operationId: List secrets with check message parameters: - name: cluster in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/List Secrets With Check MessageInput' responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1SecretCheckListSchema' /api/v1/org_secrets_template: get: tags: - organization secrets with template summary: List secret template operationId: List secret template responses: '200': description: OK content: application/json: schema: type: array items: $ref: '#/components/schemas/Controllersv1SecretTemplate' /api/v1/orgs: get: tags: - api v1 summary: List organizations operationId: List organizations parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1OrganizationListSchema' post: tags: - api v1 summary: Create organization operationId: Create organization requestBody: content: application/json: schema: $ref: '#/components/schemas/Create OrganizationInput' responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time /api/v1/orgs/{orgName}: get: tags: - organization resource summary: Get an organization operationId: Get an organization parameters: - name: orgName in: path required: true schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time patch: tags: - organization resource summary: Update an organization operationId: Update an organization parameters: - name: orgName in: path required: true schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update An OrganizationInput' responses: '200': description: OK content: application/json: schema: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time /api/v1/plans: get: tags: - plans summary: List limit groups plans operationId: List limit groups plans parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1PlanListSchema' /api/v1/setup: post: tags: - api v1 summary: Setup admin user, org, cluster for selfhosted mode operationId: Setup admin user, org, cluster for selfhosted mode requestBody: content: application/json: schema: $ref: '#/components/schemas/Setup Admin User, Org, Cluster For Selfhosted ModeInput' responses: '200': description: OK content: application/json: schema: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/slim_bento_repositories: get: tags: - slim bento repositories summary: List slim bento repositories operationId: List slim bento repositories parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1BentoRepositorySlimListSchema' /api/v1/sso: post: tags: - api v1 summary: Single sign on for publicGrp operationId: Single sign on for marketplace requestBody: content: application/json: schema: $ref: '#/components/schemas/Single Sign On For MarketplaceInput' responses: '200': description: OK /api/v1/terminal_records/{uid}: get: tags: - terminal record resource summary: Get a terminal record operationId: Get a terminal record parameters: - name: uid in: path required: true schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time container_name: type: string created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time pod_name: type: string resource: type: object properties: created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/terminal_records/{uid}/download: get: tags: - terminal record resource summary: Download a terminal record operationId: Download a terminal record responses: '200': description: OK /api/v1/tolerations_json_schema: get: tags: - api v1 summary: Get tolerations json schema operationId: Get tolerations json schema responses: '200': description: OK content: application/json: schema: description: Value of any type, including null nullable: true /api/v1/usage/{usageId}: get: tags: - usage summary: Get last usage send time operationId: Get usage parameters: - name: usageId in: path required: true schema: type: string - name: host_cluster_name in: query schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1LastSendTimeSchema' post: tags: - usage summary: Collect usage operationId: Collect usage parameters: - name: usageId in: path required: true schema: type: string - name: host_cluster_name in: query schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Collect UsageInput' responses: '200': description: OK /api/v1/users: get: tags: - users summary: List users operationId: List users parameters: - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1UserListSchema' post: tags: - users summary: Create an user operationId: Create an user parameters: - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Create An UserInput' responses: '200': description: OK content: application/json: schema: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/users/invite: post: tags: - users summary: Invite an user operationId: Invite an user parameters: - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Invite An UserInput' responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1InviteUserResponseSchema' /api/v1/users/{userName}: get: tags: - user resource summary: Get an user operationId: Get an user parameters: - name: userName in: path required: true schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time /api/v1/version: get: tags: - api v1 summary: Get version operationId: Get version responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1VersionSchema' /api/v1/yatai_components: get: tags: - api v1 summary: List organization all yatai components operationId: List organization all yatai components parameters: - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: array items: type: object properties: cluster: type: object properties: config: type: string nullable: true created_at: type: string format: date-time default: type: boolean deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string grafana_root_path: type: string kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_heartbeat_at: type: string format: date-time nullable: true latest_installed_at: type: string format: date-time nullable: true manifest: $ref: '#/components/schemas/ModelschemasYataiComponentManifestSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time version: type: string /api/v2/deployments: get: tags: - cluster deployments summary: List cluster deployments v2 operationId: List cluster deployments v2 parameters: - name: all in: query allowEmptyValue: true schema: type: boolean - name: cluster in: query schema: type: string - name: count in: query schema: type: integer format: int32 - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv2DeploymentListSchema' post: tags: - cluster deployments summary: Create deployment v2 operationId: Create deployment v2 parameters: - name: cluster in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Create Deployment V2Input' responses: '200': description: OK content: application/json: schema: type: object properties: cluster: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string config: $ref: '#/components/schemas/Schemasv2DeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true kubeResourceUid: type: string kubeResourceVersion: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time urls: type: array items: type: string /api/v2/deployments/{deploymentName}: get: tags: - deployment resource summary: Get a deployment v2 operationId: Get a deployment v2 parameters: - name: deploymentName in: path required: true schema: type: string - name: cluster in: query schema: type: string - name: namespace in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: cluster: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string config: $ref: '#/components/schemas/Schemasv2DeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true kubeResourceUid: type: string kubeResourceVersion: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time urls: type: array items: type: string put: tags: - deployment resource summary: Update deployment v2 operationId: Update deployment v2 parameters: - name: deploymentName in: path required: true schema: type: string - name: cluster in: query schema: type: string - name: namespace in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update Deployment V2Input' responses: '200': description: OK content: application/json: schema: type: object properties: cluster: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string config: $ref: '#/components/schemas/Schemasv2DeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true kubeResourceUid: type: string kubeResourceVersion: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time urls: type: array items: type: string delete: tags: - deployment resource summary: Delete a deployment v2 operationId: Delete a deployment v2 parameters: - name: deploymentName in: path required: true schema: type: string - name: cluster in: query schema: type: string - name: namespace in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: cluster: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string config: $ref: '#/components/schemas/Schemasv2DeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true kubeResourceUid: type: string kubeResourceVersion: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time urls: type: array items: type: string /api/v2/deployments/{deploymentName}/api_tokens: get: tags: - deployment resource summary: List deployment api tokens operationId: List deployment api tokens parameters: - name: deploymentName in: path required: true schema: type: string - name: cluster in: query schema: type: string - name: count in: query schema: type: integer format: int32 - name: namespace in: query schema: type: string - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1ApiTokenListSchema' /api/v2/deployments/{deploymentName}/build_bento: post: tags: - deployment resource summary: Build a bento in dev deployment operationId: Build a bento in dev deployment parameters: - name: deploymentName in: path required: true schema: type: string - name: cluster in: query schema: type: string - name: namespace in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string /api/v2/deployments/{deploymentName}/endpoints: get: tags: - deployment resource summary: List endpoints associated with a deployment operationId: List deployment endpoints parameters: - name: deploymentName in: path required: true schema: type: string - name: cluster in: query schema: type: string - name: namespace in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1EndpointListSchema' /api/v2/deployments/{deploymentName}/files: get: tags: - deployment resource summary: List all files in deployment operationId: List files in deployment parameters: - name: deploymentName in: path required: true schema: type: string - name: cluster in: query schema: type: string - name: namespace in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv2DeploymentFileListSchema' delete: tags: - deployment resource summary: Delete a series of files from deployment operationId: Delete files from deployment parameters: - name: deploymentName in: path required: true schema: type: string - name: cluster in: query schema: type: string - name: namespace in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK /api/v2/deployments/{deploymentName}/labels: put: tags: - deployment resource summary: update labels for a deployment operationId: update deployment labels parameters: - name: deploymentName in: path required: true schema: type: string - name: cluster in: query schema: type: string - name: namespace in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Update Deployment LabelsInput' responses: '200': description: OK content: application/json: schema: type: object properties: cluster: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string config: $ref: '#/components/schemas/Schemasv2DeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true kubeResourceUid: type: string kubeResourceVersion: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time urls: type: array items: type: string /api/v2/deployments/{deploymentName}/revisions: get: tags: - deployment v2 revisions summary: List deployment v2 revisions operationId: List deployment v2 revisions parameters: - name: deploymentName in: path required: true schema: type: string - name: cluster in: query schema: type: string - name: count in: query schema: type: integer format: int32 - name: namespace in: query schema: type: string - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv2DeploymentRevisionListSchema' /api/v2/deployments/{deploymentName}/revisions/{revisionUid}: get: tags: - deployment v2 revision resource summary: Get a deployment v2 revision operationId: Get a deployment v2 revision parameters: - name: deploymentName in: path required: true schema: type: string - name: revisionUid in: path required: true schema: type: string - name: cluster in: query schema: type: string - name: namespace in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string config: $ref: '#/components/schemas/Schemasv2DeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true kubeResourceUid: type: string kubeResourceVersion: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time /api/v2/deployments/{deploymentName}/status_records: get: tags: - deployment resource summary: List deployment status records v2 operationId: List deployment status records v2 parameters: - name: deploymentName in: path required: true schema: type: string - name: cluster in: query schema: type: string - name: count in: query schema: type: integer format: int32 - name: namespace in: query schema: type: string - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv2DeploymentStatusRecordListSchema' /api/v2/deployments/{deploymentName}/terminal_records: get: tags: - deployment resource summary: List deployment terminal records v2 operationId: List deployment terminal records v2 parameters: - name: deploymentName in: path required: true schema: type: string - name: cluster in: query schema: type: string - name: count in: query schema: type: integer format: int32 - name: namespace in: query schema: type: string - name: q in: query schema: type: string - name: search in: query schema: type: string nullable: true - name: start in: query schema: type: integer format: int32 - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Schemasv1TerminalRecordListSchema' /api/v2/deployments/{deploymentName}/terminate: post: tags: - deployment resource summary: Terminate a deployment v2 operationId: Terminate a deployment v2 parameters: - name: deploymentName in: path required: true schema: type: string - name: cluster in: query schema: type: string - name: namespace in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: cluster: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string config: $ref: '#/components/schemas/Schemasv2DeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true kubeResourceUid: type: string kubeResourceVersion: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time urls: type: array items: type: string /api/v2/deployments/{deploymentName}/void_update: put: tags: - deployment resource summary: void update deployment operationId: void update deployment parameters: - name: deploymentName in: path required: true schema: type: string - name: cluster in: query schema: type: string - name: namespace in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK content: application/json: schema: type: object properties: cluster: type: object properties: config: type: string nullable: true created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean kube_config: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time organization_name: type: string provider: type: string resource_instances: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string config: $ref: '#/components/schemas/Schemasv2DeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true kubeResourceUid: type: string kubeResourceVersion: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time urls: type: array items: type: string /api/v2/requestquota: post: tags: - request quota summary: Create a Request quota operationId: Create a Request quota parameters: - name: X-Yatai-Organization in: header schema: type: string requestBody: content: application/json: schema: $ref: '#/components/schemas/Create A Request QuotaInput' responses: '200': description: OK content: application/json: schema: $ref: '#/components/schemas/Controllersv2CreateRequestQuotaSchema' /ws/v1/clusters/{clusterName}/kube_events: get: tags: - websocket v1 summary: Cluster kube events operationId: Cluster kube events parameters: - name: clusterName in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK /ws/v1/clusters/{clusterName}/namespaces/{kubeNamespace}/deployments/{deploymentName}/kube_events: get: tags: - websocket v1 summary: Deployment kube events operationId: Deployment kube events parameters: - name: clusterName in: path required: true schema: type: string - name: deploymentName in: path required: true schema: type: string - name: kubeNamespace in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK /ws/v1/clusters/{clusterName}/namespaces/{kubeNamespace}/deployments/{deploymentName}/pods: get: tags: - websocket v1 summary: Ws deployment pods operationId: Ws deployment pods parameters: - name: clusterName in: path required: true schema: type: string - name: deploymentName in: path required: true schema: type: string - name: kubeNamespace in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK /ws/v1/clusters/{clusterName}/namespaces/{kubeNamespace}/deployments/{deploymentName}/tail: get: tags: - websocket v1 summary: Tail deployment pod log operationId: Tail deployment pod log parameters: - name: clusterName in: path required: true schema: type: string - name: deploymentName in: path required: true schema: type: string - name: kubeNamespace in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK /ws/v1/clusters/{clusterName}/namespaces/{kubeNamespace}/deployments/{deploymentName}/terminal: get: tags: - websocket v1 summary: Deployment pod terminal operationId: Deployment pod terminal parameters: - name: clusterName in: path required: true schema: type: string - name: deploymentName in: path required: true schema: type: string - name: kubeNamespace in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK /ws/v1/clusters/{clusterName}/pods: get: tags: - websocket v1 summary: Ws cluster pods operationId: Ws cluster pods parameters: - name: clusterName in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK /ws/v1/clusters/{clusterName}/tail: get: tags: - websocket v1 summary: Tail cluster pod log operationId: Tail cluster pod log parameters: - name: clusterName in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK /ws/v1/clusters/{clusterName}/terminal: get: tags: - websocket v1 summary: Cluster pod terminal operationId: Cluster pod terminal parameters: - name: clusterName in: path required: true schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK /ws/v1/subscription/resource: get: tags: - websocket v1 summary: Subscribe resource operationId: Subscribe resource responses: '200': description: OK /ws/v2/deployments/{deploymentName}/kube_events: get: tags: - websocket v2 summary: Ws v2 Deployment kube events operationId: Ws v2 Deployment kube events parameters: - name: deploymentName in: path required: true schema: type: string - name: cluster in: query schema: type: string - name: namespace in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK /ws/v2/deployments/{deploymentName}/pods: get: tags: - websocket v2 summary: Ws v2 deployment pods operationId: Ws v2 deployment pods parameters: - name: deploymentName in: path required: true schema: type: string - name: cluster in: query schema: type: string - name: namespace in: query schema: type: string - name: X-Yatai-Organization in: header schema: type: string responses: '200': description: OK /ws/v2/subscription/resource: get: tags: - websocket v2 summary: Subscribe resource v2 operationId: Subscribe resource v2 responses: '200': description: OK components: schemas: Admincontrollersv1SyncOrgCluster: type: object properties: cluster: type: string message: type: string org: type: string Admincontrollersv1SyncResultSchema: type: object properties: failedCount: type: integer format: int32 succeedCount: type: integer format: int32 synced: type: array items: $ref: '#/components/schemas/Admincontrollersv1SyncOrgCluster' unsynced: type: array items: $ref: '#/components/schemas/Admincontrollersv1SyncOrgCluster' Airtable Event CallbackInput: type: object properties: base: $ref: '#/components/schemas/ServicesAirtableItemSchema' timestamp: type: string webhook: $ref: '#/components/schemas/ServicesAirtableItemSchema' Collect UsageInput: type: object properties: billable_metric_code: type: string metadata: type: object additionalProperties: type: string record_value: type: string Complete A Bento Multipart UploadInput: type: object properties: parts: type: array items: $ref: '#/components/schemas/Schemasv1CompletePartSchema' upload_id: type: string Complete A Model Multipart UploadInput: type: object properties: parts: type: array items: $ref: '#/components/schemas/Schemasv1CompletePartSchema' upload_id: type: string Controllersv1CustomerCurrentUsage: type: object properties: resourceInstanceName: type: string sumCost: type: number format: double unitCost: type: number format: double usage: type: array items: $ref: '#/components/schemas/Controllersv1Usage' Controllersv1CustomerCurrentUsageSchema: type: object properties: data: type: array items: $ref: '#/components/schemas/Controllersv1CustomerCurrentUsage' Controllersv1FirebaseInfoSchema: type: object properties: api_key: type: string auth_domain: type: string Controllersv1GroupMappingDebug: type: object properties: error: type: string group: type: string role: type: string success: type: boolean target_org_name: type: string Controllersv1InfoSchema: type: object properties: disable_login: type: boolean enable_code_space: type: boolean on_prem: type: boolean saas_domain_suffix: type: string Controllersv1MetricUsageSchema: type: object properties: data: type: object additionalProperties: type: array items: type: string debug: type: boolean debugInfo: description: Value of any type, including null nullable: true endTime: type: string granularity: type: string rawLagoResponse: description: Value of any type, including null nullable: true startTime: type: string Controllersv1ModelCategorySchema: type: object properties: desc: type: string name: type: string Controllersv1ModelEndpointListSchema: type: object properties: categories: type: array items: $ref: '#/components/schemas/Controllersv1ModelCategorySchema' gateways: type: array items: type: string items: type: array items: $ref: '#/components/schemas/Controllersv1ModelEndpointSchema' Controllersv1ModelEndpointSchema: type: object properties: category: type: string desc: type: string display_name: type: string endpoint: type: string labels: type: array items: type: string logo: type: string pricing: $ref: '#/components/schemas/ModelstaticModelEndpointPricing' unique_name: type: string Controllersv1NewsContent: type: object properties: blog_posts: type: array items: $ref: '#/components/schemas/Controllersv1NewsItem' documentations: type: array items: $ref: '#/components/schemas/Controllersv1NewsItem' notifications: type: array items: $ref: '#/components/schemas/Controllersv1NewsItem' release_notes: type: array items: $ref: '#/components/schemas/Controllersv1NewsItem' Controllersv1NewsItem: type: object properties: cover: type: string ended_at: type: string level: type: string link: type: string started_at: type: string title: type: string version_constraint: type: string Controllersv1OIDCCallbackResponseSchema: type: object properties: debug_info: $ref: '#/components/schemas/Controllersv1OIDCDebugInfo' user: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time Controllersv1OIDCDebugInfo: type: object properties: current_org_id: type: integer format: int32 current_org_name: type: string processed_mappings: type: array items: $ref: '#/components/schemas/Controllersv1GroupMappingDebug' user_groups: type: array items: type: string Controllersv1OIDCInfoSchema: type: object properties: client_id: type: string enabled: type: boolean provider_url: type: string scopes: type: array items: type: string Controllersv1SecretTemplate: type: object properties: content: $ref: '#/components/schemas/ModelschemasSecretNoValueContent' description: type: string icon: type: string name: type: string Controllersv1Usage: type: object properties: endTime: type: string startTime: type: string value: type: string Controllersv2CreateRequestQuotaSchema: type: object properties: current_quota: type: string gpu_type: type: string reason: type: string requested_quota: type: string resource_type: type: string required: - resource_type Create A BentoInput: type: object properties: build_at: type: string description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' version: type: string Create A Cluster Member In Admin PanelInput: type: object properties: role: type: string enum: - guest - developer - admin - api_user usernames: type: array items: type: string Create A Cluster MemberInput: type: object properties: role: type: string enum: - guest - developer - admin - api_user usernames: type: array items: type: string Create A Gpu ConfigInput: type: object properties: memory: type: string name: type: string vendor: type: string Create A Limit GroupInput: type: object properties: config: $ref: '#/components/schemas/ModelschemasLimitGroupConfigSchema' description: type: string display_name: type: string name: type: string plan_code: type: string visible: type: boolean nullable: true Create A Model RepositoryInput: type: object properties: description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string Create A ModelInput: type: object properties: build_at: type: string description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' version: type: string Create A Request QuotaInput: type: object properties: current_quota: type: string gpu_type: type: string reason: type: string requested_quota: type: string resource_type: type: string required: - resource_type Create A Resource InstanceInput: type: object properties: config: $ref: '#/components/schemas/ModelschemasResourceInstanceConfigSchema' description: type: string display_name: type: string name: type: string Create A SecretInput: type: object properties: content: $ref: '#/components/schemas/ModelschemasSecretContent' description: type: string name: type: string Create An EndpointInput: type: object properties: deployment_ids: type: array items: type: string deployment_weights: type: object additionalProperties: type: integer format: int32 domain: type: string load_balance: type: string name: type: string overflow_scale_out_delay: type: integer format: int32 nullable: true protocol: type: string strategy: type: string upstreams: type: array items: $ref: '#/components/schemas/ModelschemasEndpointUpstream' Create An Organization MemberInput: type: object properties: role: type: string enum: - guest - developer - admin - api_user usernames: type: array items: type: string Create An UserInput: type: object properties: email: type: string name: type: string password: type: string role: type: string enum: - guest - developer - admin - api_user required: - email - name - password Create Api TokenInput: type: object properties: code: type: string nullable: true deployment_uids: type: array items: type: string description: type: string expired_at: type: string format: date-time nullable: true is_global_access: type: boolean is_global_router_access: type: boolean is_monitoring_token: type: boolean is_organization_token: type: boolean name: type: string scopes: type: array items: type: string Create Bento RepositoryInput: type: object properties: description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string Create Cluster In Admin PanelInput: type: object properties: config: $ref: '#/components/schemas/ModelschemasClusterConfigSchema' description: type: string host_cluster_name: type: string image_resgitry_config: $ref: '#/components/schemas/ModelschemasImageResgitryConfig' multi_tenancy: type: boolean name: type: string Create ClusterInput: type: object properties: config: $ref: '#/components/schemas/ModelschemasClusterConfigSchema' description: type: string host_cluster_name: type: string image_resgitry_config: $ref: '#/components/schemas/ModelschemasImageResgitryConfig' multi_tenancy: type: boolean name: type: string Create Deployment V2Input: type: object properties: access_authorization: type: boolean nullable: true bento: type: string canary: $ref: '#/components/schemas/Schemasv2DeploymentCanarySchema' description: type: string nullable: true dev: type: boolean distributed: type: boolean nullable: true envs: type: array items: $ref: '#/components/schemas/ModelschemasEnvItemSchema' labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string secrets: type: array items: type: string services: type: object additionalProperties: $ref: '#/components/schemas/ModelschemasDeploymentServiceConfig' weight: type: integer format: int32 nullable: true Create DeploymentInput: type: object properties: cluster: type: string description: type: string nullable: true dev: type: boolean distributed: type: boolean nullable: true kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' mode: type: string nullable: true name: type: string routing: $ref: '#/components/schemas/ModelschemasDeploymentRoutingSchema' super_admin: type: boolean targets: type: array items: $ref: '#/components/schemas/Schemasv1CreateDeploymentTargetSchema' Create Host ClusterInput: type: object properties: config: $ref: '#/components/schemas/ModelschemasHostClusterConfigSchema' default: type: boolean description: type: string display_name: type: string kube_config: type: string name: type: string Create Lago Billable MetricInput: type: object properties: code: type: string description: type: string display_name: type: string Create Lago CustomerInput: type: object properties: Uid: type: string auto_create_stripe: type: boolean credit_amount: type: string nullable: true email: type: string limit_group_plan: type: string name: type: string plan_type: type: string Create Lago PlanInput: type: object properties: charges: type: array items: $ref: '#/components/schemas/Schemasv1Charge' description: type: string display_name: type: string name: type: string Create OrganizationInput: type: object properties: config: $ref: '#/components/schemas/ModelschemasOrganizationConfigSchema' description: type: string limit_group_name: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean Finish Upload A BentoInput: type: object properties: reason: type: string nullable: true status: type: string nullable: true Finish Upload A ModelInput: type: object properties: reason: type: string nullable: true status: type: string nullable: true IntstrIntOrString: type: object properties: IntVal: type: integer format: int32 StrVal: type: string Type: type: integer format: int64 Invite An UserInput: type: object properties: email: type: string first_name: type: string last_name: type: string role: type: string enum: - guest - developer - admin - api_user required: - email - first_name - last_name List Secrets With Check MessageInput: type: object properties: names: type: array items: type: string Login An UserInput: type: object properties: name_or_email: type: string password: type: string required: - name_or_email - password Migrate Deployments On Cluster In Admin PanelInput: type: object properties: targetClusterName: type: string ModelschemasAWSECRSchema: type: object properties: account_id: type: string bentos_repository_name: type: string models_repository_name: type: string password: type: string region: type: string ModelschemasAWSS3Schema: type: object properties: bentos_bucket_name: type: string models_bucket_name: type: string region: type: string ModelschemasApiServerBentoFunctionOverrides: type: object properties: annotations: type: object additionalProperties: type: string extraPodMetadata: $ref: '#/components/schemas/V1alpha1ExtraPodMetadata' extraPodSpec: $ref: '#/components/schemas/V1alpha1ExtraPodSpec' monitorExporter: $ref: '#/components/schemas/V1alpha1MonitorExporterSpec' ModelschemasBentoApiSchema: type: object properties: doc: type: string input: type: string output: type: string route: type: string ModelschemasBentoImageInfoSchema: type: object properties: base_image: type: string commands: type: array items: type: string python_requirements: type: string python_version: type: string ModelschemasBentoManifestModelSchema: type: object properties: alias: type: string creation_time: type: string endpoint: type: string module: type: string registry: type: string tag: type: string ModelschemasBentoManifestSchema: type: object properties: apis: type: object additionalProperties: $ref: '#/components/schemas/ModelschemasBentoApiSchema' bentoml_version: type: string dev: type: boolean entry_service: type: string envs: type: array items: $ref: '#/components/schemas/ModelschemasEnvItemSchema' image: $ref: '#/components/schemas/ModelschemasBentoImageInfoSchema' models: type: array items: type: string name: type: string runners: type: array items: $ref: '#/components/schemas/ModelschemasBentoRunnerSchema' schema: type: object additionalProperties: {} service: type: string services: type: array items: $ref: '#/components/schemas/ModelschemasBentoManifestServiceSchema' size_bytes: type: integer format: int32 spec: type: integer format: int32 ModelschemasBentoManifestServiceSchema: type: object properties: config: type: object additionalProperties: {} models: type: array items: $ref: '#/components/schemas/ModelschemasBentoManifestModelSchema' name: type: string service: type: string ModelschemasBentoRequestOverrides: type: object properties: dockerConfigJsonSecretName: type: string downloaderContainerEnvFrom: type: array items: $ref: '#/components/schemas/V1EnvFromSource' imageBuildTimeout: type: integer format: int64 nullable: true imageBuilderContainerResources: $ref: '#/components/schemas/V1ResourceRequirements' imageBuilderExtraContainerEnv: type: array items: $ref: '#/components/schemas/V1EnvVar' imageBuilderExtraPodMetadata: $ref: '#/components/schemas/V1alpha1ExtraPodMetadata' imageBuilderExtraPodSpec: $ref: '#/components/schemas/V1alpha1ExtraPodSpec' ModelschemasBentoRunnerResourceSchema: type: object properties: cpu: type: number format: double nullable: true custom_resources: type: object additionalProperties: type: number format: double nvidia_gpu: type: number format: double nullable: true ModelschemasBentoRunnerSchema: type: object properties: models: type: array items: type: string name: type: string resource_config: $ref: '#/components/schemas/ModelschemasBentoRunnerResourceSchema' runnable_type: type: string ModelschemasClusterConfigSchema: type: object properties: default_deployment_kube_namespace: type: string ModelschemasDeploymentManifest: type: object properties: dev: type: boolean replicas: type: object additionalProperties: type: integer format: int32 routing: $ref: '#/components/schemas/ModelschemasDeploymentRoutingSchema' super_admin: type: boolean ModelschemasDeploymentRoutingSchema: type: object properties: route_by: type: string nullable: true route_type: type: string nullable: true weights: type: object additionalProperties: type: integer format: int32 ModelschemasDeploymentServiceConfig: type: object properties: coldstart_timeout: type: integer format: int64 nullable: true config_overrides: type: object additionalProperties: {} deployment_strategy: type: string nullable: true enable_image_builder_colocation: type: boolean nullable: true envs: type: array items: $ref: '#/components/schemas/ModelschemasEnvItemSchema' extras: $ref: '#/components/schemas/ModelschemasExtraDeploymentOverrides' instance_type: type: string nullable: true scaling: $ref: '#/components/schemas/ModelschemasDeploymentTargetHPAConf' ModelschemasDeploymentTargetCanaryRule: type: object properties: cookie: type: string nullable: true header: type: string nullable: true route_by: type: string nullable: true type: type: string enum: - header - query - random - cookie weight: type: integer format: int32 nullable: true ModelschemasDeploymentTargetConfig: type: object properties: access_control: type: string nullable: true bento_function_overrides: $ref: '#/components/schemas/ModelschemasApiServerBentoFunctionOverrides' bento_request_overrides: $ref: '#/components/schemas/ModelschemasBentoRequestOverrides' config_overrides: type: object additionalProperties: {} deployment_cold_start_wait_timeout: type: integer format: int64 nullable: true deployment_strategy: type: string nullable: true enable_debug_mode: type: boolean nullable: true enable_debug_pod_receive_production_traffic: type: boolean nullable: true enable_image_builder_colocation: type: boolean nullable: true enable_ingress: type: boolean nullable: true enable_stealing_traffic_debug_mode: type: boolean nullable: true envs: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' global_envs: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' hpa_conf: $ref: '#/components/schemas/ModelschemasDeploymentTargetHPAConf' kubeResourceUid: type: string kubeResourceVersion: type: string resource_instance: type: string nullable: true resources: $ref: '#/components/schemas/ModelschemasDeploymentTargetResources' runners: type: object additionalProperties: $ref: '#/components/schemas/ModelschemasDeploymentTargetRunnerConfig' secrets: type: array items: type: string target_name: type: string traffic_control: $ref: '#/components/schemas/ModelschemasTrafficControlConfig' ModelschemasDeploymentTargetHPAConf: type: object properties: max_replicas: type: integer format: int32 nullable: true min_replicas: type: integer format: int32 nullable: true policy: $ref: '#/components/schemas/ModelschemasHPAPolicy' ModelschemasDeploymentTargetResourceItem: type: object properties: cpu: type: string custom: type: object additionalProperties: type: string gpu: type: string memory: type: string ModelschemasDeploymentTargetResources: type: object properties: limits: $ref: '#/components/schemas/ModelschemasDeploymentTargetResourceItem' requests: $ref: '#/components/schemas/ModelschemasDeploymentTargetResourceItem' ModelschemasDeploymentTargetRunnerConfig: type: object properties: bento_function_overrides: $ref: '#/components/schemas/ModelschemasRunnerBentoFunctionOverrides' deployment_cold_start_wait_timeout: type: integer format: int64 nullable: true deployment_strategy: type: string nullable: true enable_debug_mode: type: boolean nullable: true enable_debug_pod_receive_production_traffic: type: boolean nullable: true enable_stealing_traffic_debug_mode: type: boolean nullable: true envs: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' hpa_conf: $ref: '#/components/schemas/ModelschemasDeploymentTargetHPAConf' resource_instance: type: string nullable: true resources: $ref: '#/components/schemas/ModelschemasDeploymentTargetResources' secrets: type: array items: type: string traffic_control: $ref: '#/components/schemas/ModelschemasTrafficControlConfig' ModelschemasEndpointManifest: type: object properties: deployment_ids: type: array items: type: string deployment_weights: type: object additionalProperties: type: integer format: int32 overflow_scale_out_delay: type: integer format: int32 nullable: true sync_status: type: object additionalProperties: type: integer format: int32 upstreams: type: array items: $ref: '#/components/schemas/ModelschemasEndpointUpstream' ModelschemasEndpointUpstream: type: object properties: api_key: type: string model: type: string url: type: string ModelschemasEnvItemSchema: type: object properties: name: type: string stage: type: string value: type: string ModelschemasExtraDeploymentOverrides: type: object properties: bento_function_overrides: $ref: '#/components/schemas/ModelschemasApiServerBentoFunctionOverrides' bento_request_overrides: $ref: '#/components/schemas/ModelschemasBentoRequestOverrides' ModelschemasGPUConfig: type: object properties: memory: type: string type: type: string ModelschemasHPAMetric: type: object properties: type: type: string value: type: string ModelschemasHPAPolicy: type: object properties: metrics: type: array items: $ref: '#/components/schemas/ModelschemasHPAMetric' scale_down_behavior: type: string nullable: true scale_down_stabilization_window: type: integer format: int32 nullable: true scale_up_behavior: type: string nullable: true scale_up_stabilization_window: type: integer format: int32 nullable: true scaling_strategy: type: string nullable: true ModelschemasHostClusterConfigSchema: type: object properties: image_builder_pod_eks_role_arn: type: string provider: type: string region: type: string resource_instance_names: type: array items: type: string standby_instances: type: object additionalProperties: type: integer format: int32 ModelschemasImageResgitryConfig: type: object properties: password: type: string server: type: string username: type: string ModelschemasLabelItemSchema: type: object properties: key: type: string stage: type: string value: type: string ModelschemasLimitGroupConfigSchema: type: object properties: allow_custom_resource: type: boolean nullable: true allow_deployment_config: $ref: '#/components/schemas/ModelschemasLimitGroupDeploymentConfig' bento_count: type: integer format: int64 nullable: true bento_size: $ref: '#/components/schemas/ResourceQuantity' deployment_count: type: integer format: int64 nullable: true disable_grafana: type: boolean nullable: true filter_down_resource_instance_names: type: array items: type: string has_kube_access: type: boolean nullable: true image_builder_pod_resource_cpu_limit: $ref: '#/components/schemas/ResourceQuantity' image_builder_pod_resource_gpu_limit: $ref: '#/components/schemas/ResourceQuantity' image_builder_pod_resource_memory_limit: $ref: '#/components/schemas/ResourceQuantity' internal: type: boolean nullable: true member_count: type: integer format: int64 nullable: true model_count: type: integer format: int64 nullable: true model_size: $ref: '#/components/schemas/ResourceQuantity' must_scale_to_zero: type: boolean nullable: true organization_lifespan: type: integer format: int64 nullable: true plan_type: type: string nullable: true resource_cpu_limit: $ref: '#/components/schemas/ResourceQuantity' resource_gpu_limit: $ref: '#/components/schemas/ResourceQuantity' resource_instance_list: type: array items: $ref: '#/components/schemas/ModelschemasLimitGroupResourceInstanceSchema' resource_memory_limit: $ref: '#/components/schemas/ResourceQuantity' roles: type: array items: type: string ModelschemasLimitGroupDeploymentConfig: type: object properties: access_authorization: type: array items: type: boolean deployment_strategy: type: array items: type: string ModelschemasLimitGroupResourceInstanceSchema: type: object properties: active: type: boolean name: type: string ModelschemasModelManifestSchema: type: object properties: api_version: type: string bentoml_version: type: string context: type: object additionalProperties: {} metadata: type: object additionalProperties: {} module: type: string options: type: object additionalProperties: {} size_bytes: type: integer format: int32 ModelschemasOIDCConfigSchema: type: object properties: always_sync: type: boolean client_id: type: string client_secret: type: string enabled: type: boolean org_role_map: type: object additionalProperties: type: object additionalProperties: type: string provider_url: type: string scopes: type: array items: type: string ModelschemasOrganizationConfigAWSSchema: type: object properties: access_key_id: type: string ecr: $ref: '#/components/schemas/ModelschemasAWSECRSchema' s3: $ref: '#/components/schemas/ModelschemasAWSS3Schema' secret_access_key: type: string ModelschemasOrganizationConfigSchema: type: object properties: aws: $ref: '#/components/schemas/ModelschemasOrganizationConfigAWSSchema' cached_model_node_selectors: type: object additionalProperties: type: string cached_model_tags: type: array items: type: string cached_model_tolerations: type: array items: $ref: '#/components/schemas/V1Toleration' disable_grafana: type: boolean nullable: true disable_resources_graphs: type: boolean nullable: true docker_registry: $ref: '#/components/schemas/ModelschemasOrganizationDockerRegistrySchema' enable_endpoints: type: boolean nullable: true enable_mixture_scaling: type: boolean nullable: true enable_models: type: boolean nullable: true enable_monitoring_endpoint: type: boolean nullable: true gateway_domains: type: array items: type: string major_cluster_uid: type: string oidc: $ref: '#/components/schemas/ModelschemasOIDCConfigSchema' referenced_gateways: type: array items: type: string s3: $ref: '#/components/schemas/ModelschemasOrganizationS3Schema' sso_default_role: type: string nullable: true transmission_strategy: type: string nullable: true ModelschemasOrganizationDockerRegistrySchema: type: object properties: bentos_repository_uri: type: string models_repository_uri: type: string password: type: string secure: type: boolean server: type: string username: type: string ModelschemasOrganizationS3Schema: type: object properties: access_key: type: string bentos_bucket_name: type: string endpoint: type: string models_bucket_name: type: string region: type: string secret_key: type: string secure: type: boolean ModelschemasRecommendationInstanceTypeSchema: type: object properties: active: type: boolean display_name: type: string insufficient_resources: type: array items: type: string name: type: string recommend: type: boolean ModelschemasRequestQueueConfig: type: object properties: enabled: type: boolean nullable: true max_consume_concurrency: type: integer format: int32 nullable: true ModelschemasResourceInstanceConfigSchema: type: object properties: gpu_config: $ref: '#/components/schemas/ModelschemasGPUConfig' group: type: string node_selectors: type: object additionalProperties: type: string price: type: string resources: $ref: '#/components/schemas/ModelschemasDeploymentTargetResources' tolerations: type: array items: $ref: '#/components/schemas/V1Toleration' tpu_config: $ref: '#/components/schemas/ModelschemasTPUConfig' ModelschemasRunnerBentoFunctionOverrides: type: object properties: annotations: type: object additionalProperties: type: string extraPodMetadata: $ref: '#/components/schemas/V1alpha1ExtraPodMetadata' extraPodSpec: $ref: '#/components/schemas/V1alpha1ExtraPodSpec' ModelschemasSecretContent: type: object properties: items: type: array items: $ref: '#/components/schemas/ModelschemasSecretItem' path: type: string stage: type: string type: type: string ModelschemasSecretItem: type: object properties: key: type: string sub_path: type: string value: type: string ModelschemasSecretNoValueContent: type: object properties: items: type: array items: $ref: '#/components/schemas/ModelschemasSecretNoValueItem' path: type: string stage: type: string type: type: string ModelschemasSecretNoValueItem: type: object properties: key: type: string sub_path: type: string ModelschemasTPUConfig: type: object properties: type: type: string ModelschemasTrafficControlConfig: type: object properties: concurrency: type: integer format: int32 nullable: true request_queue: $ref: '#/components/schemas/ModelschemasRequestQueueConfig' timeout: type: integer format: int64 nullable: true ModelschemasYataiComponentManifestSchema: type: object properties: enable_envoy_gateway_ingress: type: boolean latest_crd_version: type: string selector_labels: type: object additionalProperties: type: string ModelstaticModelEndpointPricing: type: object properties: cached_price: type: number format: double input_price: type: number format: double output_price: type: number format: double Operate An Org In Admin PanelInput: type: object properties: status: type: string Presign A Bento Multipart Upload UrlInput: type: object properties: part_number: type: integer format: int32 upload_id: type: string Presign A Model Multipart Upload UrlInput: type: object properties: part_number: type: integer format: int32 upload_id: type: string Put Infos For Current UserInput: type: object properties: company: type: string company_size: type: string first_name: type: string last_name: type: string linkedin_url: type: string model_category: type: array items: type: string model_type: type: array items: type: string organization_name: type: string product_usage: type: string role_in_company: type: string use_case: type: string required: - organization_name Register An UserInput: type: object properties: email: type: string first_name: type: string last_name: type: string name: type: string password: type: string required: - email - name - password Reset PasswordInput: type: object properties: current_password: type: string new_password: type: string ResourceQuantity: type: object Schemasv1AdminDeploymentListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean host_cluster: type: object properties: config: type: string nullable: true created_at: type: string format: date-time default: type: boolean deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string grafana_root_path: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time start: type: integer format: int32 total: type: integer format: int32 Schemasv1ApiTokenListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment_names: type: array items: type: string deployment_uids: type: array items: type: string description: type: string expired_at: type: string format: date-time nullable: true is_access_token: type: boolean is_api_token: type: boolean is_expired: type: boolean is_global_access: type: boolean is_global_router_access: type: boolean is_monitoring_token: type: boolean is_organization_token: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_used_at: type: string format: date-time nullable: true name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token scopes: type: array items: type: string token: type: string uid: type: string updated_at: type: string format: date-time user: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time start: type: integer format: int32 total: type: integer format: int32 Schemasv1BentoRecommendationConfigSchema: type: object properties: envs: type: array items: $ref: '#/components/schemas/ModelschemasEnvItemSchema' instance_type: type: string instance_types: type: array items: $ref: '#/components/schemas/ModelschemasRecommendationInstanceTypeSchema' runners: type: array items: type: string services: type: object additionalProperties: $ref: '#/components/schemas/Schemasv1BentoRecommendationServiceSchema' traffic: $ref: '#/components/schemas/ModelschemasTrafficControlConfig' Schemasv1BentoRecommendationServiceSchema: type: object properties: instance_type: type: string instance_types: type: array items: $ref: '#/components/schemas/ModelschemasRecommendationInstanceTypeSchema' traffic: $ref: '#/components/schemas/ModelschemasTrafficControlConfig' Schemasv1BentoRepositorySlimListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time start: type: integer format: int32 total: type: integer format: int32 Schemasv1BentoRepositoryWithLatestDeploymentsListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_deployments: type: array items: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time n_bentos: type: integer format: int32 n_deployments: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time start: type: integer format: int32 total: type: integer format: int32 Schemasv1BentoRepositoryWithStatisticsListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: created_at: type: string format: date-time creators: type: array items: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 n_deployments: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time start: type: integer format: int32 total: type: integer format: int32 Schemasv1BentoWithRepositoryListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string start: type: integer format: int32 total: type: integer format: int32 Schemasv1BentoWithSlimRepositoryListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string start: type: integer format: int32 total: type: integer format: int32 Schemasv1BillableMetrics: type: object properties: description: type: string display_name: type: string lago_id: type: string name: type: string Schemasv1CertifiedBentoRepositoryListIndexSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time start: type: integer format: int32 total: type: integer format: int32 Schemasv1Charge: type: object properties: price: type: string resource_instance: type: string Schemasv1ClusterListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time start: type: integer format: int32 total: type: integer format: int32 Schemasv1ClusterMemberSchema: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true role: type: string uid: type: string updated_at: type: string format: date-time user: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time Schemasv1ClusterWithStandbyListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_instance_names: type: array items: $ref: '#/components/schemas/Schemasv1ResourceInstanceName' resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token standby_instances: type: object additionalProperties: type: integer format: int32 uid: type: string updated_at: type: string format: date-time start: type: integer format: int32 total: type: integer format: int32 Schemasv1CodeSchema: type: object properties: code: type: string Schemasv1CompletePartSchema: type: object properties: etag: type: string part_number: type: integer format: int32 Schemasv1CreateDeploymentTargetSchema: type: object properties: bento: type: string bento_repository: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' type: type: string enum: - stable - canary Schemasv1CustomerCurrentCreditSchema: type: object properties: current_credit: type: number format: double total_credit: type: number format: double used_credit: type: number format: double Schemasv1CustomerListFullSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: billing_customer_id: type: string created_at: type: string format: date-time customer: description: Value of any type, including null nullable: true deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_customer: $ref: '#/components/schemas/Schemasv1LagoCustomer' lago_id: type: string name: type: string payment_portal_url: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token stripe_id: type: string subscription_id: type: string uid: type: string updated_at: type: string format: date-time wallet_id: type: string start: type: integer format: int32 total: type: integer format: int32 Schemasv1DeploymentListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time start: type: integer format: int32 total: type: integer format: int32 Schemasv1DeploymentListWoRevisionSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time start: type: integer format: int32 total: type: integer format: int32 Schemasv1DeploymentRevisionListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time start: type: integer format: int32 total: type: integer format: int32 Schemasv1EndpointListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployments: type: array items: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time domain: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' load_balance: type: string manifest: $ref: '#/components/schemas/ModelschemasEndpointManifest' name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time overflow_scale_out_delay: type: integer format: int32 nullable: true protocol: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string strategy: type: string uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time url: type: string start: type: integer format: int32 total: type: integer format: int32 Schemasv1EventListSchema: type: object properties: count: type: integer format: int32 items: type: array items: $ref: '#/components/schemas/Schemasv1EventSchema' start: type: integer format: int32 total: type: integer format: int32 Schemasv1EventSchema: type: object properties: api_token_name: type: string created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true name: type: string operation_name: type: string resource: description: Value of any type, including null nullable: true resource_deleted: type: boolean status: type: string uid: type: string updated_at: type: string format: date-time Schemasv1GPUConfigSchema: type: object properties: created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true memory: type: string name: type: string uid: type: string updated_at: type: string format: date-time vendor: type: string Schemasv1HostClusterListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time default: type: boolean deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string grafana_root_path: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time start: type: integer format: int32 total: type: integer format: int32 Schemasv1InviteUserResponseSchema: type: object properties: invitation_code: type: string url: type: string Schemasv1LabelWithValuesSchema: type: object properties: key: type: string values: type: array items: type: string Schemasv1LagoBillableMetricsListSchema: type: object properties: count: type: integer format: int32 items: type: array items: $ref: '#/components/schemas/Schemasv1BillableMetrics' start: type: integer format: int32 total: type: integer format: int32 Schemasv1LagoCustomer: type: object properties: email: type: string lago_id: type: string limit_group_plan: type: string name: type: string subscription_id: type: string wallet_id: type: string Schemasv1LagoCustomerListSchema: type: object properties: count: type: integer format: int32 items: type: array items: $ref: '#/components/schemas/Schemasv1LagoCustomer' start: type: integer format: int32 total: type: integer format: int32 Schemasv1LagoPlanListSchema: type: object properties: count: type: integer format: int32 items: type: array items: $ref: '#/components/schemas/Schemasv1Plan' start: type: integer format: int32 total: type: integer format: int32 Schemasv1LastSendTimeSchema: type: object properties: last_send_time: type: object additionalProperties: $ref: '#/components/schemas/TimeTime' Schemasv1LimitGroupListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string plan_code: type: string resource_instance_list: type: array items: $ref: '#/components/schemas/Schemasv1ResourceInstanceWithActiveSchema' resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time visible: type: boolean nullable: true start: type: integer format: int32 total: type: integer format: int32 Schemasv1MemberSchema: type: object properties: role: type: string enum: - guest - developer - admin - api_user username: type: string Schemasv1ModelListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string start: type: integer format: int32 total: type: integer format: int32 Schemasv1ModelRepositoryListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_model: type: object properties: build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time start: type: integer format: int32 total: type: integer format: int32 Schemasv1ModelWithRepositoryListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_model: type: object properties: build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' model_uid: type: string name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string start: type: integer format: int32 total: type: integer format: int32 Schemasv1OrganizationListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time start: type: integer format: int32 total: type: integer format: int32 Schemasv1OrganizationMemberSchema: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time role: type: string uid: type: string updated_at: type: string format: date-time user: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time Schemasv1Plan: type: object properties: charges: type: array items: $ref: '#/components/schemas/Schemasv1Charge' description: type: string display_name: type: string lago_id: type: string name: type: string Schemasv1PlanListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_instance_list: type: array items: $ref: '#/components/schemas/Schemasv1ResourceInstanceWithActiveSchema' resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time start: type: integer format: int32 total: type: integer format: int32 Schemasv1ResourceInstanceListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time start: type: integer format: int32 total: type: integer format: int32 Schemasv1ResourceInstanceName: type: object properties: display_name: type: string name: type: string Schemasv1ResourceInstanceWithActiveSchema: type: object properties: active: type: boolean resource_instance: type: object properties: config: type: string nullable: true created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string display_name: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' lago_id: type: string name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time Schemasv1SecretCheckListSchema: type: object properties: items: type: array items: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time content: $ref: '#/components/schemas/ModelschemasSecretNoValueContent' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployments: type: array items: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time message: type: array items: type: string Schemasv1SecretListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time content: $ref: '#/components/schemas/ModelschemasSecretNoValueContent' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployments: type: array items: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time start: type: integer format: int32 total: type: integer format: int32 Schemasv1TerminalRecordListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time container_name: type: string created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string canary_rules: type: array items: $ref: '#/components/schemas/ModelschemasDeploymentTargetCanaryRule' config: $ref: '#/components/schemas/ModelschemasDeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token type: type: string enum: - stable - canary uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time pod_name: type: string resource: type: object properties: created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time start: type: integer format: int32 total: type: integer format: int32 Schemasv1UserListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time start: type: integer format: int32 total: type: integer format: int32 Schemasv1VersionSchema: type: object properties: build_date: type: string git_commit: type: string version: type: string Schemasv2DeploymentCanarySchema: type: object properties: route_by: type: string nullable: true route_type: type: string nullable: true versions: type: object additionalProperties: $ref: '#/components/schemas/Schemasv2DeploymentVersionSchema' Schemasv2DeploymentFileListSchema: type: object properties: files: type: array items: $ref: '#/components/schemas/Schemasv2DeploymentFileSchema' Schemasv2DeploymentFileSchema: type: object properties: md5: type: string path: type: string size: type: integer format: int64 Schemasv2DeploymentListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string config: $ref: '#/components/schemas/Schemasv2DeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true kubeResourceUid: type: string kubeResourceVersion: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time start: type: integer format: int32 total: type: integer format: int32 Schemasv2DeploymentRevisionListSchema: type: object properties: count: type: integer format: int32 items: type: array items: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string config: $ref: '#/components/schemas/Schemasv2DeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true kubeResourceUid: type: string kubeResourceVersion: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time start: type: integer format: int32 total: type: integer format: int32 Schemasv2DeploymentStatusRecordListSchema: type: object properties: count: type: integer format: int32 items: type: array items: $ref: '#/components/schemas/Schemasv2DeploymentStatusRecordSchema' start: type: integer format: int32 total: type: integer format: int32 Schemasv2DeploymentStatusRecordSchema: type: object properties: created_at: type: string format: date-time deployment_revision: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true deployment: type: object properties: cluster: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time default_deployment_kube_namespace: type: string deleted_at: type: string format: date-time nullable: true description: type: string grafana_root_path: type: string host_cluster_display_name: type: string host_cluster_name: type: string is_first: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' multi_tenancy: type: boolean name: type: string organization_name: type: string provider: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string distributed: type: boolean kube_namespace: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasDeploymentManifest' mode: type: string nullable: true name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - unknown - non-deployed - running - unhealthy - failed - deploying uid: type: string updated_at: type: string format: date-time updater: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string enum: - active - inactive targets: type: array items: type: object properties: bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' n_deployments: type: integer format: int32 name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean repository: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' latest_bento: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string latest_bentos: type: array items: type: object properties: bento_repository_uid: type: string build_at: type: string format: date-time created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string image_build_status: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasBentoManifestSchema' name: type: string presigned_download_url: type: string presigned_upload_url: type: string presigned_urls_deprecated: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string n_bentos: type: integer format: int32 name: type: string organization: type: object properties: created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true description: type: string disable_grafana: type: boolean disable_resources_graphs: type: boolean enable_endpoints: type: boolean enable_mixture_scaling: type: boolean enable_monitoring_endpoint: type: boolean expired_at: type: string format: date-time nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' limit_group: type: string nullable: true multi_tenancy: type: boolean name: type: string public: type: boolean resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token status: type: string uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token transmission_strategy: type: string nullable: true uid: type: string updated_at: type: string format: date-time upload_finished_at: type: string format: date-time nullable: true upload_finished_reason: type: string upload_id: type: string upload_started_at: type: string format: date-time nullable: true upload_status: type: string version: type: string config: $ref: '#/components/schemas/Schemasv2DeploymentTargetConfig' created_at: type: string format: date-time creator: type: object properties: application_status: type: string avatar_url: type: string created_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true email: type: string first_name: type: string from_sso: type: boolean is_super_admin: type: boolean labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' last_name: type: string name: type: string perm: type: string register_stage: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time deleted_at: type: string format: date-time nullable: true kubeResourceUid: type: string kubeResourceVersion: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' name: type: string resource_type: type: string enum: - user - organization - cluster - host_cluster - bento_repository - bento - deployment - deployment_revision - model_repository - model - api_token uid: type: string updated_at: type: string format: date-time uid: type: string updated_at: type: string format: date-time event_timestamp: type: string format: date-time reason: type: string status: type: string uid: type: string updated_at: type: string format: date-time Schemasv2DeploymentTargetConfig: type: object properties: access_authorization: type: boolean nullable: true envs: type: array items: $ref: '#/components/schemas/ModelschemasEnvItemSchema' secrets: type: array items: type: string services: type: object additionalProperties: $ref: '#/components/schemas/ModelschemasDeploymentServiceConfig' Schemasv2DeploymentVersionSchema: type: object properties: bento: type: string envs: type: array items: $ref: '#/components/schemas/ModelschemasEnvItemSchema' secrets: type: array items: type: string services: type: object additionalProperties: $ref: '#/components/schemas/ModelschemasDeploymentServiceConfig' weight: type: integer format: int32 nullable: true ServicesAirtableItemSchema: type: object properties: id: type: string Setup Admin User, Org, Cluster For Selfhosted ModeInput: type: object properties: email: type: string first_name: type: string last_name: type: string name: type: string password: type: string token: type: string required: - email - name - password Single Sign On For MarketplaceInput: type: object properties: x-amzn-marketplace-token: type: string x-gcp-marketplace-token: type: string Single Sign OnInput: type: object properties: email: type: string first_name: type: string idToken: type: string invitation_code: type: string last_name: type: string required: - idToken TimeTime: type: object Update A Api TokenInput: type: object properties: description: type: string nullable: true expired_at: type: string format: date-time nullable: true last_used_at: type: string format: date-time nullable: true scopes: type: array items: type: string Update A Bento Image Build StatusInput: type: object properties: image_build_status: type: string Update A Bento RepositoryInput: type: object properties: description: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' Update A BentoInput: type: object properties: build_at: type: string description: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: type: string nullable: true version: type: string Update A Cluster In Admin PanelInput: type: object properties: config: type: string nullable: true description: type: string nullable: true host_cluster_id: type: integer format: int32 nullable: true multi_tenancy: type: boolean name: type: string nullable: true Update A ClusterInput: type: object properties: config: type: string nullable: true description: type: string nullable: true host_cluster_id: type: integer format: int32 nullable: true multi_tenancy: type: boolean Update A CustomerInput: type: object properties: active: type: boolean nullable: true billing_customer_id: type: string nullable: true lago_id: type: string nullable: true payment_ready: type: boolean nullable: true stripe_id: type: string nullable: true subscription_id: type: string nullable: true wallet_id: type: string nullable: true Update A DeploymentInput: type: object properties: description: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' mode: type: string nullable: true routing: $ref: '#/components/schemas/ModelschemasDeploymentRoutingSchema' targets: type: array items: $ref: '#/components/schemas/Schemasv1CreateDeploymentTargetSchema' Update A Gpu ConfigInput: type: object properties: memory: type: string nullable: true name: type: string nullable: true vendor: type: string nullable: true Update A Host ClusterInput: type: object properties: config: type: string nullable: true default: type: boolean nullable: true description: type: string nullable: true display_name: type: string nullable: true kube_config: type: string nullable: true Update A Limit GroupInput: type: object properties: config: type: string nullable: true description: type: string nullable: true display_name: type: string nullable: true plan_code: type: string nullable: true visible: type: boolean nullable: true Update A Model RepositoryInput: type: object properties: description: type: string nullable: true labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' Update A ModelInput: type: object properties: build_at: type: string description: type: string labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' manifest: $ref: '#/components/schemas/ModelschemasModelManifestSchema' Update A Resource InstanceInput: type: object properties: config: type: string nullable: true description: type: string nullable: true display_name: type: string nullable: true lago_id: type: string nullable: true Update A Secret By NameInput: type: object properties: content: $ref: '#/components/schemas/ModelschemasSecretContent' description: type: string nullable: true Update An EndpointInput: type: object properties: deployment_ids: type: array items: type: string deployment_weights: type: object additionalProperties: type: integer format: int32 domain: type: string nullable: true load_balance: type: string nullable: true overflow_scale_out_delay: type: integer format: int32 nullable: true protocol: type: string nullable: true strategy: type: string nullable: true upstreams: type: array items: $ref: '#/components/schemas/ModelschemasEndpointUpstream' Update An Organization MemberInput: type: object properties: role: type: string enum: - guest - developer - admin - api_user username: type: string Update An Organization'S PlanInput: type: object properties: config: type: string nullable: true description: type: string nullable: true limit_group_name: type: string nullable: true multi_tenancy: type: boolean nullable: true plan_type: type: string nullable: true Update An OrganizationInput: type: object properties: config: type: string nullable: true description: type: string nullable: true limit_group_name: type: string nullable: true multi_tenancy: type: boolean nullable: true Update Current OrganizationInput: type: object properties: config: type: string nullable: true description: type: string nullable: true limit_group_name: type: string nullable: true multi_tenancy: type: boolean nullable: true plan_type: type: string nullable: true Update Deployment LabelsInput: type: object properties: labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' Update Deployment V2Input: type: object properties: access_authorization: type: boolean nullable: true bento: type: string canary: $ref: '#/components/schemas/Schemasv2DeploymentCanarySchema' description: type: string nullable: true envs: type: array items: $ref: '#/components/schemas/ModelschemasEnvItemSchema' labels: type: array items: $ref: '#/components/schemas/ModelschemasLabelItemSchema' secrets: type: array items: type: string services: type: object additionalProperties: $ref: '#/components/schemas/ModelschemasDeploymentServiceConfig' weight: type: integer format: int32 nullable: true Update Lago Billable MetricInput: type: object properties: description: type: string nullable: true display_name: type: string nullable: true Update Lago CustomerInput: type: object properties: stripe_id: type: string nullable: true Update Lago PlanInput: type: object properties: charges: type: array items: $ref: '#/components/schemas/Schemasv1Charge' description: type: string nullable: true display_name: type: string nullable: true Update Standby InstancesInput: type: object properties: standby_instances: type: object additionalProperties: type: integer format: int32 V1AWSElasticBlockStoreVolumeSource: type: object properties: fsType: type: string partition: type: integer format: int32 readOnly: type: boolean volumeID: type: string V1Affinity: type: object properties: nodeAffinity: $ref: '#/components/schemas/V1NodeAffinity' podAffinity: $ref: '#/components/schemas/V1PodAffinity' podAntiAffinity: $ref: '#/components/schemas/V1PodAntiAffinity' V1AppArmorProfile: type: object properties: localhostProfile: type: string nullable: true type: type: string V1AzureDiskVolumeSource: type: object properties: cachingMode: type: string nullable: true diskName: type: string diskURI: type: string fsType: type: string nullable: true kind: type: string nullable: true readOnly: type: boolean nullable: true V1AzureFileVolumeSource: type: object properties: readOnly: type: boolean secretName: type: string shareName: type: string V1CSIVolumeSource: type: object properties: driver: type: string fsType: type: string nullable: true nodePublishSecretRef: $ref: '#/components/schemas/V1LocalObjectReference' readOnly: type: boolean nullable: true volumeAttributes: type: object additionalProperties: type: string V1Capabilities: type: object properties: add: type: array items: type: string drop: type: array items: type: string V1CephFSVolumeSource: type: object properties: monitors: type: array items: type: string path: type: string readOnly: type: boolean secretFile: type: string secretRef: $ref: '#/components/schemas/V1LocalObjectReference' user: type: string V1CinderVolumeSource: type: object properties: fsType: type: string readOnly: type: boolean secretRef: $ref: '#/components/schemas/V1LocalObjectReference' volumeID: type: string V1ClusterTrustBundleProjection: type: object properties: labelSelector: $ref: '#/components/schemas/V1LabelSelector' name: type: string nullable: true optional: type: boolean nullable: true path: type: string signerName: type: string nullable: true V1ConfigMapEnvSource: type: object properties: LocalObjectReference: $ref: '#/components/schemas/V1LocalObjectReference' optional: type: boolean nullable: true V1ConfigMapKeySelector: type: object properties: LocalObjectReference: $ref: '#/components/schemas/V1LocalObjectReference' key: type: string optional: type: boolean nullable: true V1ConfigMapProjection: type: object properties: LocalObjectReference: $ref: '#/components/schemas/V1LocalObjectReference' items: type: array items: $ref: '#/components/schemas/V1KeyToPath' optional: type: boolean nullable: true V1ConfigMapVolumeSource: type: object properties: LocalObjectReference: $ref: '#/components/schemas/V1LocalObjectReference' defaultMode: type: integer format: int32 nullable: true items: type: array items: $ref: '#/components/schemas/V1KeyToPath' optional: type: boolean nullable: true V1Container: type: object properties: args: type: array items: type: string command: type: array items: type: string env: type: array items: $ref: '#/components/schemas/V1EnvVar' envFrom: type: array items: $ref: '#/components/schemas/V1EnvFromSource' image: type: string imagePullPolicy: type: string lifecycle: $ref: '#/components/schemas/V1Lifecycle' livenessProbe: $ref: '#/components/schemas/V1Probe' name: type: string ports: type: array items: $ref: '#/components/schemas/V1ContainerPort' readinessProbe: $ref: '#/components/schemas/V1Probe' resizePolicy: type: array items: $ref: '#/components/schemas/V1ContainerResizePolicy' resources: $ref: '#/components/schemas/V1ResourceRequirements' restartPolicy: type: string nullable: true restartPolicyRules: type: array items: $ref: '#/components/schemas/V1ContainerRestartRule' securityContext: $ref: '#/components/schemas/V1SecurityContext' startupProbe: $ref: '#/components/schemas/V1Probe' stdin: type: boolean stdinOnce: type: boolean terminationMessagePath: type: string terminationMessagePolicy: type: string tty: type: boolean volumeDevices: type: array items: $ref: '#/components/schemas/V1VolumeDevice' volumeMounts: type: array items: $ref: '#/components/schemas/V1VolumeMount' workingDir: type: string V1ContainerPort: type: object properties: containerPort: type: integer format: int32 hostIP: type: string hostPort: type: integer format: int32 name: type: string protocol: type: string V1ContainerResizePolicy: type: object properties: resourceName: type: string restartPolicy: type: string V1ContainerRestartRule: type: object properties: action: type: string exitCodes: $ref: '#/components/schemas/V1ContainerRestartRuleOnExitCodes' V1ContainerRestartRuleOnExitCodes: type: object properties: operator: type: string values: type: array items: type: integer format: int32 V1DownwardAPIProjection: type: object properties: items: type: array items: $ref: '#/components/schemas/V1DownwardAPIVolumeFile' V1DownwardAPIVolumeFile: type: object properties: fieldRef: $ref: '#/components/schemas/V1ObjectFieldSelector' mode: type: integer format: int32 nullable: true path: type: string resourceFieldRef: $ref: '#/components/schemas/V1ResourceFieldSelector' V1DownwardAPIVolumeSource: type: object properties: defaultMode: type: integer format: int32 nullable: true items: type: array items: $ref: '#/components/schemas/V1DownwardAPIVolumeFile' V1EmptyDirVolumeSource: type: object properties: medium: type: string sizeLimit: $ref: '#/components/schemas/ResourceQuantity' V1EnvFromSource: type: object properties: configMapRef: $ref: '#/components/schemas/V1ConfigMapEnvSource' prefix: type: string secretRef: $ref: '#/components/schemas/V1SecretEnvSource' V1EnvVar: type: object properties: name: type: string value: type: string valueFrom: $ref: '#/components/schemas/V1EnvVarSource' V1EnvVarSource: type: object properties: configMapKeyRef: $ref: '#/components/schemas/V1ConfigMapKeySelector' fieldRef: $ref: '#/components/schemas/V1ObjectFieldSelector' fileKeyRef: $ref: '#/components/schemas/V1FileKeySelector' resourceFieldRef: $ref: '#/components/schemas/V1ResourceFieldSelector' secretKeyRef: $ref: '#/components/schemas/V1SecretKeySelector' V1EphemeralVolumeSource: type: object properties: volumeClaimTemplate: $ref: '#/components/schemas/V1PersistentVolumeClaimTemplate' V1ExecAction: type: object properties: command: type: array items: type: string V1FCVolumeSource: type: object properties: fsType: type: string lun: type: integer format: int32 nullable: true readOnly: type: boolean targetWWNs: type: array items: type: string wwids: type: array items: type: string V1FieldsV1: type: object V1FileKeySelector: type: object properties: key: type: string optional: type: boolean nullable: true path: type: string volumeName: type: string V1FlexVolumeSource: type: object properties: driver: type: string fsType: type: string options: type: object additionalProperties: type: string readOnly: type: boolean secretRef: $ref: '#/components/schemas/V1LocalObjectReference' V1FlockerVolumeSource: type: object properties: datasetName: type: string datasetUUID: type: string V1GCEPersistentDiskVolumeSource: type: object properties: fsType: type: string partition: type: integer format: int32 pdName: type: string readOnly: type: boolean V1GRPCAction: type: object properties: port: type: integer format: int32 service: type: string nullable: true V1GitRepoVolumeSource: type: object properties: directory: type: string repository: type: string revision: type: string V1GlusterfsVolumeSource: type: object properties: endpoints: type: string path: type: string readOnly: type: boolean V1HTTPGetAction: type: object properties: host: type: string httpHeaders: type: array items: $ref: '#/components/schemas/V1HTTPHeader' path: type: string port: $ref: '#/components/schemas/IntstrIntOrString' scheme: type: string V1HTTPHeader: type: object properties: name: type: string value: type: string V1HostPathVolumeSource: type: object properties: path: type: string type: type: string nullable: true V1ISCSIVolumeSource: type: object properties: chapAuthDiscovery: type: boolean chapAuthSession: type: boolean fsType: type: string initiatorName: type: string nullable: true iqn: type: string iscsiInterface: type: string lun: type: integer format: int32 portals: type: array items: type: string readOnly: type: boolean secretRef: $ref: '#/components/schemas/V1LocalObjectReference' targetPortal: type: string V1ImageVolumeSource: type: object properties: pullPolicy: type: string reference: type: string V1KeyToPath: type: object properties: key: type: string mode: type: integer format: int32 nullable: true path: type: string V1LabelSelector: type: object properties: matchExpressions: type: array items: $ref: '#/components/schemas/V1LabelSelectorRequirement' matchLabels: type: object additionalProperties: type: string V1LabelSelectorRequirement: type: object properties: key: type: string operator: type: string values: type: array items: type: string V1Lifecycle: type: object properties: postStart: $ref: '#/components/schemas/V1LifecycleHandler' preStop: $ref: '#/components/schemas/V1LifecycleHandler' stopSignal: type: string nullable: true V1LifecycleHandler: type: object properties: exec: $ref: '#/components/schemas/V1ExecAction' httpGet: $ref: '#/components/schemas/V1HTTPGetAction' sleep: $ref: '#/components/schemas/V1SleepAction' tcpSocket: $ref: '#/components/schemas/V1TCPSocketAction' V1LocalObjectReference: type: object properties: name: type: string V1ManagedFieldsEntry: type: object properties: apiVersion: type: string fieldsType: type: string fieldsV1: $ref: '#/components/schemas/V1FieldsV1' manager: type: string operation: type: string subresource: type: string time: $ref: '#/components/schemas/V1Time' V1NFSVolumeSource: type: object properties: path: type: string readOnly: type: boolean server: type: string V1NodeAffinity: type: object properties: preferredDuringSchedulingIgnoredDuringExecution: type: array items: $ref: '#/components/schemas/V1PreferredSchedulingTerm' requiredDuringSchedulingIgnoredDuringExecution: $ref: '#/components/schemas/V1NodeSelector' V1NodeSelector: type: object properties: nodeSelectorTerms: type: array items: $ref: '#/components/schemas/V1NodeSelectorTerm' V1NodeSelectorRequirement: type: object properties: key: type: string operator: type: string values: type: array items: type: string V1NodeSelectorTerm: type: object properties: matchExpressions: type: array items: $ref: '#/components/schemas/V1NodeSelectorRequirement' matchFields: type: array items: $ref: '#/components/schemas/V1NodeSelectorRequirement' V1ObjectFieldSelector: type: object properties: apiVersion: type: string fieldPath: type: string V1ObjectMeta: type: object properties: annotations: type: object additionalProperties: type: string creationTimestamp: $ref: '#/components/schemas/V1Time' deletionGracePeriodSeconds: type: integer format: int64 nullable: true deletionTimestamp: $ref: '#/components/schemas/V1Time' finalizers: type: array items: type: string generateName: type: string generation: type: integer format: int64 labels: type: object additionalProperties: type: string managedFields: type: array items: $ref: '#/components/schemas/V1ManagedFieldsEntry' name: type: string namespace: type: string ownerReferences: type: array items: $ref: '#/components/schemas/V1OwnerReference' resourceVersion: type: string selfLink: type: string uid: type: string V1OwnerReference: type: object properties: apiVersion: type: string blockOwnerDeletion: type: boolean nullable: true controller: type: boolean nullable: true kind: type: string name: type: string uid: type: string V1PersistentVolumeClaimSpec: type: object properties: accessModes: type: array items: type: string dataSource: $ref: '#/components/schemas/V1TypedLocalObjectReference' dataSourceRef: $ref: '#/components/schemas/V1TypedObjectReference' resources: $ref: '#/components/schemas/V1VolumeResourceRequirements' selector: $ref: '#/components/schemas/V1LabelSelector' storageClassName: type: string nullable: true volumeAttributesClassName: type: string nullable: true volumeMode: type: string nullable: true volumeName: type: string V1PersistentVolumeClaimTemplate: type: object properties: metadata: $ref: '#/components/schemas/V1ObjectMeta' spec: $ref: '#/components/schemas/V1PersistentVolumeClaimSpec' V1PersistentVolumeClaimVolumeSource: type: object properties: claimName: type: string readOnly: type: boolean V1PhotonPersistentDiskVolumeSource: type: object properties: fsType: type: string pdID: type: string V1PodAffinity: type: object properties: preferredDuringSchedulingIgnoredDuringExecution: type: array items: $ref: '#/components/schemas/V1WeightedPodAffinityTerm' requiredDuringSchedulingIgnoredDuringExecution: type: array items: $ref: '#/components/schemas/V1PodAffinityTerm' V1PodAffinityTerm: type: object properties: labelSelector: $ref: '#/components/schemas/V1LabelSelector' matchLabelKeys: type: array items: type: string mismatchLabelKeys: type: array items: type: string namespaceSelector: $ref: '#/components/schemas/V1LabelSelector' namespaces: type: array items: type: string topologyKey: type: string V1PodAntiAffinity: type: object properties: preferredDuringSchedulingIgnoredDuringExecution: type: array items: $ref: '#/components/schemas/V1WeightedPodAffinityTerm' requiredDuringSchedulingIgnoredDuringExecution: type: array items: $ref: '#/components/schemas/V1PodAffinityTerm' V1PodCertificateProjection: type: object properties: certificateChainPath: type: string credentialBundlePath: type: string keyPath: type: string keyType: type: string maxExpirationSeconds: type: integer format: int32 nullable: true signerName: type: string V1PortworxVolumeSource: type: object properties: fsType: type: string readOnly: type: boolean volumeID: type: string V1PreferredSchedulingTerm: type: object properties: preference: $ref: '#/components/schemas/V1NodeSelectorTerm' weight: type: integer format: int32 V1Probe: type: object properties: ProbeHandler: $ref: '#/components/schemas/V1ProbeHandler' failureThreshold: type: integer format: int32 initialDelaySeconds: type: integer format: int32 periodSeconds: type: integer format: int32 successThreshold: type: integer format: int32 terminationGracePeriodSeconds: type: integer format: int64 nullable: true timeoutSeconds: type: integer format: int32 V1ProbeHandler: type: object properties: exec: $ref: '#/components/schemas/V1ExecAction' grpc: $ref: '#/components/schemas/V1GRPCAction' httpGet: $ref: '#/components/schemas/V1HTTPGetAction' tcpSocket: $ref: '#/components/schemas/V1TCPSocketAction' V1ProjectedVolumeSource: type: object properties: defaultMode: type: integer format: int32 nullable: true sources: type: array items: $ref: '#/components/schemas/V1VolumeProjection' V1QuobyteVolumeSource: type: object properties: group: type: string readOnly: type: boolean registry: type: string tenant: type: string user: type: string volume: type: string V1RBDVolumeSource: type: object properties: fsType: type: string image: type: string keyring: type: string monitors: type: array items: type: string pool: type: string readOnly: type: boolean secretRef: $ref: '#/components/schemas/V1LocalObjectReference' user: type: string V1ResourceClaim: type: object properties: name: type: string request: type: string V1ResourceFieldSelector: type: object properties: containerName: type: string divisor: $ref: '#/components/schemas/ResourceQuantity' resource: type: string V1ResourceRequirements: type: object properties: claims: type: array items: $ref: '#/components/schemas/V1ResourceClaim' limits: type: object additionalProperties: $ref: '#/components/schemas/ResourceQuantity' requests: type: object additionalProperties: $ref: '#/components/schemas/ResourceQuantity' V1SELinuxOptions: type: object properties: level: type: string role: type: string type: type: string user: type: string V1ScaleIOVolumeSource: type: object properties: fsType: type: string gateway: type: string protectionDomain: type: string readOnly: type: boolean secretRef: $ref: '#/components/schemas/V1LocalObjectReference' sslEnabled: type: boolean storageMode: type: string storagePool: type: string system: type: string volumeName: type: string V1SeccompProfile: type: object properties: localhostProfile: type: string nullable: true type: type: string V1SecretEnvSource: type: object properties: LocalObjectReference: $ref: '#/components/schemas/V1LocalObjectReference' optional: type: boolean nullable: true V1SecretKeySelector: type: object properties: LocalObjectReference: $ref: '#/components/schemas/V1LocalObjectReference' key: type: string optional: type: boolean nullable: true V1SecretProjection: type: object properties: LocalObjectReference: $ref: '#/components/schemas/V1LocalObjectReference' items: type: array items: $ref: '#/components/schemas/V1KeyToPath' optional: type: boolean nullable: true V1SecretVolumeSource: type: object properties: defaultMode: type: integer format: int32 nullable: true items: type: array items: $ref: '#/components/schemas/V1KeyToPath' optional: type: boolean nullable: true secretName: type: string V1SecurityContext: type: object properties: allowPrivilegeEscalation: type: boolean nullable: true appArmorProfile: $ref: '#/components/schemas/V1AppArmorProfile' capabilities: $ref: '#/components/schemas/V1Capabilities' privileged: type: boolean nullable: true procMount: type: string nullable: true readOnlyRootFilesystem: type: boolean nullable: true runAsGroup: type: integer format: int64 nullable: true runAsNonRoot: type: boolean nullable: true runAsUser: type: integer format: int64 nullable: true seLinuxOptions: $ref: '#/components/schemas/V1SELinuxOptions' seccompProfile: $ref: '#/components/schemas/V1SeccompProfile' windowsOptions: $ref: '#/components/schemas/V1WindowsSecurityContextOptions' V1ServiceAccountTokenProjection: type: object properties: audience: type: string expirationSeconds: type: integer format: int64 nullable: true path: type: string V1SleepAction: type: object properties: seconds: type: integer format: int64 V1StorageOSVolumeSource: type: object properties: fsType: type: string readOnly: type: boolean secretRef: $ref: '#/components/schemas/V1LocalObjectReference' volumeName: type: string volumeNamespace: type: string V1TCPSocketAction: type: object properties: host: type: string port: $ref: '#/components/schemas/IntstrIntOrString' V1Time: type: object V1Toleration: type: object properties: effect: type: string key: type: string operator: type: string tolerationSeconds: type: integer format: int64 nullable: true value: type: string V1TopologySpreadConstraint: type: object properties: labelSelector: $ref: '#/components/schemas/V1LabelSelector' matchLabelKeys: type: array items: type: string maxSkew: type: integer format: int32 minDomains: type: integer format: int32 nullable: true nodeAffinityPolicy: type: string nullable: true nodeTaintsPolicy: type: string nullable: true topologyKey: type: string whenUnsatisfiable: type: string V1TypedLocalObjectReference: type: object properties: apiGroup: type: string nullable: true kind: type: string name: type: string V1TypedObjectReference: type: object properties: apiGroup: type: string nullable: true kind: type: string name: type: string namespace: type: string nullable: true V1VolumeDevice: type: object properties: devicePath: type: string name: type: string V1VolumeMount: type: object properties: mountPath: type: string mountPropagation: type: string nullable: true name: type: string readOnly: type: boolean recursiveReadOnly: type: string nullable: true subPath: type: string subPathExpr: type: string V1VolumeProjection: type: object properties: clusterTrustBundle: $ref: '#/components/schemas/V1ClusterTrustBundleProjection' configMap: $ref: '#/components/schemas/V1ConfigMapProjection' downwardAPI: $ref: '#/components/schemas/V1DownwardAPIProjection' podCertificate: $ref: '#/components/schemas/V1PodCertificateProjection' secret: $ref: '#/components/schemas/V1SecretProjection' serviceAccountToken: $ref: '#/components/schemas/V1ServiceAccountTokenProjection' V1VolumeResourceRequirements: type: object properties: limits: type: object additionalProperties: $ref: '#/components/schemas/ResourceQuantity' requests: type: object additionalProperties: $ref: '#/components/schemas/ResourceQuantity' V1VolumeSource: type: object properties: awsElasticBlockStore: $ref: '#/components/schemas/V1AWSElasticBlockStoreVolumeSource' azureDisk: $ref: '#/components/schemas/V1AzureDiskVolumeSource' azureFile: $ref: '#/components/schemas/V1AzureFileVolumeSource' cephfs: $ref: '#/components/schemas/V1CephFSVolumeSource' cinder: $ref: '#/components/schemas/V1CinderVolumeSource' configMap: $ref: '#/components/schemas/V1ConfigMapVolumeSource' csi: $ref: '#/components/schemas/V1CSIVolumeSource' downwardAPI: $ref: '#/components/schemas/V1DownwardAPIVolumeSource' emptyDir: $ref: '#/components/schemas/V1EmptyDirVolumeSource' ephemeral: $ref: '#/components/schemas/V1EphemeralVolumeSource' fc: $ref: '#/components/schemas/V1FCVolumeSource' flexVolume: $ref: '#/components/schemas/V1FlexVolumeSource' flocker: $ref: '#/components/schemas/V1FlockerVolumeSource' gcePersistentDisk: $ref: '#/components/schemas/V1GCEPersistentDiskVolumeSource' gitRepo: $ref: '#/components/schemas/V1GitRepoVolumeSource' glusterfs: $ref: '#/components/schemas/V1GlusterfsVolumeSource' hostPath: $ref: '#/components/schemas/V1HostPathVolumeSource' image: $ref: '#/components/schemas/V1ImageVolumeSource' iscsi: $ref: '#/components/schemas/V1ISCSIVolumeSource' nfs: $ref: '#/components/schemas/V1NFSVolumeSource' persistentVolumeClaim: $ref: '#/components/schemas/V1PersistentVolumeClaimVolumeSource' photonPersistentDisk: $ref: '#/components/schemas/V1PhotonPersistentDiskVolumeSource' portworxVolume: $ref: '#/components/schemas/V1PortworxVolumeSource' projected: $ref: '#/components/schemas/V1ProjectedVolumeSource' quobyte: $ref: '#/components/schemas/V1QuobyteVolumeSource' rbd: $ref: '#/components/schemas/V1RBDVolumeSource' scaleIO: $ref: '#/components/schemas/V1ScaleIOVolumeSource' secret: $ref: '#/components/schemas/V1SecretVolumeSource' storageos: $ref: '#/components/schemas/V1StorageOSVolumeSource' vsphereVolume: $ref: '#/components/schemas/V1VsphereVirtualDiskVolumeSource' V1VsphereVirtualDiskVolumeSource: type: object properties: fsType: type: string storagePolicyID: type: string storagePolicyName: type: string volumePath: type: string V1WeightedPodAffinityTerm: type: object properties: podAffinityTerm: $ref: '#/components/schemas/V1PodAffinityTerm' weight: type: integer format: int32 V1WindowsSecurityContextOptions: type: object properties: gmsaCredentialSpec: type: string nullable: true gmsaCredentialSpecName: type: string nullable: true hostProcess: type: boolean nullable: true runAsUserName: type: string nullable: true V1alpha1ExtraPodMetadata: type: object properties: annotations: type: object additionalProperties: type: string labels: type: object additionalProperties: type: string V1alpha1ExtraPodSpec: type: object properties: affinity: $ref: '#/components/schemas/V1Affinity' nodeSelector: type: object additionalProperties: type: string priorityClassName: type: string schedulerName: type: string serviceAccountName: type: string tolerations: type: array items: $ref: '#/components/schemas/V1Toleration' topologySpreadConstraints: type: array items: $ref: '#/components/schemas/V1TopologySpreadConstraint' V1alpha1MonitorExporterMountSpec: type: object properties: VolumeSource: $ref: '#/components/schemas/V1VolumeSource' path: type: string readOnly: type: boolean V1alpha1MonitorExporterSpec: type: object properties: enabled: type: boolean mounts: type: array items: $ref: '#/components/schemas/V1alpha1MonitorExporterMountSpec' options: type: object additionalProperties: type: string output: type: string structureOptions: type: array items: $ref: '#/components/schemas/V1EnvVar' securitySchemes: apiToken: type: apiKey in: header name: X-YATAI-API-TOKEN tags: - name: admin api v1 description: admin api v1 - name: admin deployment resource description: admin deployment resource - name: admin deployments description: admin deployments - name: api token resource description: api token resource - name: api tokens description: api tokens - name: api v1 description: api v1 - name: api v2 description: api v2 - name: auth description: auth api - name: bento repositories description: bento repositories - name: bento repositories statistics description: bento repositories statistics - name: bento repository resource description: bento repository resource - name: bento resource description: bento resource - name: bentos description: bentos - name: certified bento repositories description: certified bento repositories - name: cluster deployments description: cluster deployments - name: cluster resource description: cluster resource - name: cluster resource for admin panel description: cluster resource for admin panel - name: clusters description: clusters - name: clusters for admin panel description: clusters for admin panel - name: current organization resource description: current organization resource - name: customer resource description: customer resource - name: customers description: customers api - name: deployment resource description: deployment resource - name: deployment revision resource description: deployment revision resource - name: deployment revisions description: deployment revisions - name: deployment v2 revision resource description: deployment revision resource - name: deployment v2 revisions description: deployment revisions - name: deployments description: deployments - name: endpoint resource description: endpoint resource - name: gpu config resource description: gpu config resource - name: gpu configs description: gpu configs - name: host cluster resource description: host cluster resource - name: host_clusters description: host_clusters - name: instance_types description: instance_types - name: labels description: labels - name: lago description: lago api - name: lago billable metrics description: lago billable metrics api - name: lago customer description: lago customer api - name: lago plan description: lago plan api - name: limit group resource description: limit group resource - name: limit groups description: limit groups - name: model repositories description: model repositories - name: model repository resource description: model repository resource - name: model resource description: model resource - name: models description: models - name: org resource for admin panel description: org resource for admin panel - name: organization resource description: organization resource - name: organization secrets description: organization secrets - name: organization secrets with check message description: organization secrets with check message - name: organization secrets with template description: organization secrets with template - name: plans description: plans - name: request quota description: request quota - name: resource instance resource description: resource instance resource - name: resource instances description: resource instances - name: secret names description: secret names - name: slim bento repositories description: slim bento repositories - name: terminal record resource description: terminal record resource - name: terminal records description: terminal records - name: usage description: usage resource - name: user resource description: user resource - name: users description: users api - name: websocket v1 description: websocket v1 - name: websocket v2 description: websocket v2 - name: yatai components description: yatai components