@nebius/js-sdk 0.2.54 → 0.2.56

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -2737,7 +2737,10 @@ export interface GpuClusterStatus {
2737
2737
  [unknownFieldsSymbol]?: Uint8Array | undefined;
2738
2738
  /** Returns a safe value for JSON logs. */
2739
2739
  [customJson]?: () => unknown;
2740
- /** Contains the `instances` protobuf field. */
2740
+ /**
2741
+ * IDs of Compute instances that belong to this GPU cluster.
2742
+ *
2743
+ */
2741
2744
  instances: string[];
2742
2745
  /**
2743
2746
  * Indicates whether there is an ongoing operation
@@ -2803,7 +2806,10 @@ export interface GetImageLatestByFamilyRequest {
2803
2806
  [customJson]?: () => unknown;
2804
2807
  /** Contains the `image_family` protobuf field. */
2805
2808
  imageFamily: string;
2806
- /** default 'project-{region}public-images' */
2809
+ /**
2810
+ * default 'project-{region}public-images'
2811
+ *
2812
+ */
2807
2813
  parentId: string;
2808
2814
  }
2809
2815
  /** Encodes, decodes, converts, and creates {@link GetImageLatestByFamilyRequest} messages. */
@@ -4742,8 +4748,10 @@ export interface InstanceSpec {
4742
4748
  */
4743
4749
  recoveryPolicy: InstanceRecoveryPolicy;
4744
4750
  /**
4745
- * Include these parameters to create a Preemptible VM and omit them to create a Regular VM
4751
+ * Set this field to create a preemptible VM, or omit it to create a regular VM.
4746
4752
  * For details, see https://docs.nebius.com/compute/virtual-machines/preemptible
4753
+ * A preemptible VM cannot be converted to a regular VM or vice versa. Once set, this field cannot be removed; if the
4754
+ * VM was created without it, the field cannot be added later.
4747
4755
  *
4748
4756
  */
4749
4757
  preemptible?: PreemptibleSpec | undefined;