@nebius/js-sdk - v0.2.54
    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

      EndpointStatus represents the status of a VM app.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • EndpointStatus represents the status of a VM app.

            Returns unknown

      • undefined
    Index
    "[customJson]"?: () => unknown

    Returns a safe value for JSON logs.

    Type Declaration

      • (): unknown
      • Returns a safe value for JSON logs.

        Returns unknown

    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>

    Preserves protobuf fields that this SDK version does not recognize.

    $type: "nebius.ai.v1.EndpointStatus"

    Contains the fully qualified protobuf type name.

    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.