@nebius/js-sdk - v0.1.41
    Preparing search index...

    Interface EndpointStatus

    EndpointStatus represents the status of a VM app.

    interface EndpointStatus {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.ai.v1.EndpointStatus";
        instances: EndpointInstanceStatus[];
        privateEndpoints: string[];
        publicEndpoints: string[];
        state: EndpointStatus_State;
        stateDetails?: EndpointStateDetails;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

    • [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined
    Index

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.ai.v1.EndpointStatus"

    Status of individual endpoint instances.

    privateEndpoints: string[]

    Private endpoints to access the workload.

    publicEndpoints: string[]

    Public endpoints to access the workload.

    State of the endpoint.

    stateDetails?: EndpointStateDetails

    Details of the endpoint's state.