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

    Interface Assignment

    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
    Index

    Properties

    "[customJson]"?: () => unknown
    "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>
    $type: "nebius.vpc.v1.Assignment"
    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.