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

    Interface Assignment

    Represents the nebius.vpc.v1.Assignment protobuf message.

    interface Assignment {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.vpc.v1.Assignment";
        type?:
            | {
                $case: "networkInterface";
                networkInterface: NetworkInterfaceAssignment;
            }
            | { $case: "loadBalancer"; loadBalancer: LoadBalancerAssignment };
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      Represents the nebius.vpc.v1.Assignment protobuf message.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Represents the nebius.vpc.v1.Assignment protobuf message.

            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.v1.Assignment"

    Contains the fully qualified protobuf type name.

    type?:
        | {
            $case: "networkInterface";
            networkInterface: NetworkInterfaceAssignment;
        }
        | { $case: "loadBalancer"; loadBalancer: LoadBalancerAssignment }

    This field specifies the type of assignment associated with the allocation, which could be a network interface or load balancer assignment.

    Type Declaration