Class ServiceStatusInfo
- Namespace
- FoundationaLLM.Common.Models.Infrastructure
- Assembly
- FoundationaLLM.Common.dll
Represents the status of a service.
public class ServiceStatusInfo
- Inheritance
-
ServiceStatusInfo
- Inherited Members
- Extension Methods
Properties
InstanceId
The instance ID of the service.
[JsonPropertyName("instance_id")]
public string? InstanceId { get; set; }
Property Value
InstanceName
The instance of the service.
[JsonPropertyName("instance_name")]
public string? InstanceName { get; set; }
Property Value
Message
The message associated with the status.
[JsonPropertyName("message")]
public string? Message { get; set; }
Property Value
Name
The name of the service.
[JsonPropertyName("name")]
public required string Name { get; set; }
Property Value
Status
The status of the service.
[JsonPropertyName("status")]
public string? Status { get; set; }
Property Value
SubordinateServices
The status of all the subordinate services.
[JsonPropertyName("subordinate_services")]
public List<ServiceStatusInfo>? SubordinateServices { get; set; }
Property Value
Version
The deployed FoundationaLLM version of the service.
[JsonPropertyName("version")]
public string? Version { get; set; }