Table of Contents

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

string

InstanceName

The instance of the service.

[JsonPropertyName("instance_name")]
public string? InstanceName { get; set; }

Property Value

string

Message

The message associated with the status.

[JsonPropertyName("message")]
public string? Message { get; set; }

Property Value

string

Name

The name of the service.

[JsonPropertyName("name")]
public required string Name { get; set; }

Property Value

string

Status

The status of the service.

[JsonPropertyName("status")]
public string? Status { get; set; }

Property Value

string

SubordinateServices

The status of all the subordinate services.

[JsonPropertyName("subordinate_services")]
public List<ServiceStatusInfo>? SubordinateServices { get; set; }

Property Value

List<ServiceStatusInfo>

Version

The deployed FoundationaLLM version of the service.

[JsonPropertyName("version")]
public string? Version { get; set; }

Property Value

string