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

    Interface NodeGroupSpec

    Represents the nebius.mk8s.v1alpha1.NodeGroupSpec protobuf message.

    interface NodeGroupSpec {
        "[customJson]"?: () => unknown;
        "[unknownFieldsSymbol]"?: Uint8Array<ArrayBufferLike>;
        $type: "nebius.mk8s.v1alpha1.NodeGroupSpec";
        autoRepair?: NodeGroupAutoRepairSpec;
        size?:
            | { $case: "fixedNodeCount"; fixedNodeCount: Long }
            | { $case: "autoscaling"; autoscaling: NodeGroupAutoscalingSpec };
        strategy?: NodeGroupDeploymentStrategy;
        template?: NodeTemplate;
        version: string;
        [key: symbol]: Uint8Array<ArrayBufferLike> | (() => unknown) | undefined;
    }

    Indexable

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

      Represents the nebius.mk8s.v1alpha1.NodeGroupSpec protobuf message.

      • Uint8Array<ArrayBufferLike>
      • () => unknown
          • (): unknown
          • Represents the nebius.mk8s.v1alpha1.NodeGroupSpec 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.mk8s.v1alpha1.NodeGroupSpec"

    Contains the fully qualified protobuf type name.

    Parameters for nodes auto repair.

    size?:
        | { $case: "fixedNodeCount"; fixedNodeCount: Long }
        | { $case: "autoscaling"; autoscaling: NodeGroupAutoscalingSpec }

    Contains the selected value for the size protobuf oneof.

    Type Declaration

    • { $case: "fixedNodeCount"; fixedNodeCount: Long }
      • $case: "fixedNodeCount"

        Contains the case.

      • fixedNodeCount: Long

        Contains the fixed node count.

    • { $case: "autoscaling"; autoscaling: NodeGroupAutoscalingSpec }

    Contains the strategy protobuf field.

    template?: NodeTemplate

    Contains the template protobuf field.

    version: string

    Version is desired Kubernetes version of the cluster. For now only acceptable format is MAJOR.MINOR like "1.31". Option for patch version update will be added later. By default the cluster control plane MAJOR.MINOR version will be used.