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

    Interface NetworkInterfaceStatus

    Describes the status of a network interface.

    interface NetworkInterfaceStatus {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.vpc.v1alpha1.NetworkInterfaceStatus";
        aliases?: IPAliasesStatus;
        index: number;
        ipAddress?: IPAddressStatus;
        macAddress: string;
        name: string;
        publicIpAddress?: PublicIPAddressStatus;
        subnetId: string;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      Describes the status of a network interface.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Describes the status of a network interface.

            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.vpc.v1alpha1.NetworkInterfaceStatus"

    Contains the fully qualified protobuf type name.

    aliases?: IPAliasesStatus

    Effective IP Aliases

    index: number

    The index of the network interface

    ipAddress?: IPAddressStatus

    Effective Private IPv4 address

    macAddress: string

    MAC address

    name: string

    Name for interface. Unique within instance's network interfaces

    publicIpAddress?: PublicIPAddressStatus

    Effective Public IPv4 address

    subnetId: string

    Subnet ID actually used by the network interface. Equals spec.subnet_id when it is provided; otherwise contains the resolved default subnet ID.