@nebius/js-sdk 0.2.64 → 0.2.65

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.
Files changed (49) hide show
  1. package/dist/cjs/api/nebius/ai/v1/index.d.ts +81 -0
  2. package/dist/cjs/api/nebius/ai/v1/index.d.ts.map +1 -1
  3. package/dist/cjs/api/nebius/ai/v1/index.js +545 -1
  4. package/dist/cjs/api/nebius/ai/v1/index.js.map +1 -1
  5. package/dist/cjs/api/nebius/billing/v1/index.d.ts +714 -2
  6. package/dist/cjs/api/nebius/billing/v1/index.d.ts.map +1 -1
  7. package/dist/cjs/api/nebius/billing/v1/index.js +1970 -1
  8. package/dist/cjs/api/nebius/billing/v1/index.js.map +1 -1
  9. package/dist/cjs/api/nebius/compute/v1/index.d.ts +60 -2
  10. package/dist/cjs/api/nebius/compute/v1/index.d.ts.map +1 -1
  11. package/dist/cjs/api/nebius/compute/v1/index.js +382 -2
  12. package/dist/cjs/api/nebius/compute/v1/index.js.map +1 -1
  13. package/dist/cjs/api/nebius/iam/v1/index.d.ts +28 -8
  14. package/dist/cjs/api/nebius/iam/v1/index.d.ts.map +1 -1
  15. package/dist/cjs/api/nebius/iam/v1/index.js +25 -5
  16. package/dist/cjs/api/nebius/iam/v1/index.js.map +1 -1
  17. package/dist/cjs/version.d.ts +1 -1
  18. package/dist/cjs/version.js +1 -1
  19. package/dist/esm/api/nebius/ai/v1/index.d.ts +81 -0
  20. package/dist/esm/api/nebius/ai/v1/index.d.ts.map +1 -1
  21. package/dist/esm/api/nebius/ai/v1/index.js +544 -0
  22. package/dist/esm/api/nebius/ai/v1/index.js.map +1 -1
  23. package/dist/esm/api/nebius/billing/v1/index.d.ts +714 -2
  24. package/dist/esm/api/nebius/billing/v1/index.d.ts.map +1 -1
  25. package/dist/esm/api/nebius/billing/v1/index.js +1970 -2
  26. package/dist/esm/api/nebius/billing/v1/index.js.map +1 -1
  27. package/dist/esm/api/nebius/compute/v1/index.d.ts +60 -2
  28. package/dist/esm/api/nebius/compute/v1/index.d.ts.map +1 -1
  29. package/dist/esm/api/nebius/compute/v1/index.js +380 -0
  30. package/dist/esm/api/nebius/compute/v1/index.js.map +1 -1
  31. package/dist/esm/api/nebius/iam/v1/index.d.ts +28 -8
  32. package/dist/esm/api/nebius/iam/v1/index.d.ts.map +1 -1
  33. package/dist/esm/api/nebius/iam/v1/index.js +25 -5
  34. package/dist/esm/api/nebius/iam/v1/index.js.map +1 -1
  35. package/dist/esm/version.d.ts +1 -1
  36. package/dist/esm/version.js +1 -1
  37. package/package.json +1 -1
  38. package/dist/cjs/api/nebius/monitoring/v1/index.d.ts +0 -607
  39. package/dist/cjs/api/nebius/monitoring/v1/index.d.ts.map +0 -1
  40. package/dist/cjs/api/nebius/monitoring/v1/index.js +0 -1538
  41. package/dist/cjs/api/nebius/monitoring/v1/index.js.map +0 -1
  42. package/dist/cjs/api/nebius/monitoring/v1.d.ts +0 -1
  43. package/dist/cjs/api/nebius/monitoring/v1.js +0 -2
  44. package/dist/esm/api/nebius/monitoring/v1/index.d.ts +0 -607
  45. package/dist/esm/api/nebius/monitoring/v1/index.d.ts.map +0 -1
  46. package/dist/esm/api/nebius/monitoring/v1/index.js +0 -1534
  47. package/dist/esm/api/nebius/monitoring/v1/index.js.map +0 -1
  48. package/dist/esm/api/nebius/monitoring/v1.d.ts +0 -1
  49. package/dist/esm/api/nebius/monitoring/v1.js +0 -1
@@ -4778,6 +4778,20 @@ export interface InstanceSpec {
4778
4778
  *
4779
4779
  */
4780
4780
  localDisks?: LocalDisksSpec | undefined;
4781
+ /**
4782
+ * Default is on_demand.
4783
+ *
4784
+ */
4785
+ pricingModel?: {
4786
+ $case: "onDemand";
4787
+ onDemand: OnDemandSpec;
4788
+ } | {
4789
+ $case: "followsSpotPrice";
4790
+ followsSpotPrice: FollowsSpotPriceSpec;
4791
+ } | {
4792
+ $case: "spotPricingPolicy";
4793
+ spotPricingPolicy: SpotPricingPolicySpec;
4794
+ } | undefined;
4781
4795
  }
4782
4796
  /** Encodes, decodes, converts, and creates {@link InstanceSpec} messages. */
4783
4797
  export declare const InstanceSpec: MessageFns<InstanceSpec, "nebius.compute.v1.InstanceSpec">;
@@ -5082,6 +5096,44 @@ export interface PassthroughGroupRequest {
5082
5096
  }
5083
5097
  /** Encodes, decodes, converts, and creates {@link PassthroughGroupRequest} messages. */
5084
5098
  export declare const PassthroughGroupRequest: MessageFns<PassthroughGroupRequest, "nebius.compute.v1.PassthroughGroupRequest">;
5099
+ /** Represents the `nebius.compute.v1.OnDemandSpec` protobuf message. */
5100
+ export interface OnDemandSpec {
5101
+ /** Contains the fully qualified protobuf type name. */
5102
+ $type: "nebius.compute.v1.OnDemandSpec";
5103
+ /** Preserves protobuf fields that this SDK version does not recognize. */
5104
+ [unknownFieldsSymbol]?: Uint8Array | undefined;
5105
+ /** Returns a safe value for JSON logs. */
5106
+ [customJson]?: () => unknown;
5107
+ }
5108
+ /** Encodes, decodes, converts, and creates {@link OnDemandSpec} messages. */
5109
+ export declare const OnDemandSpec: MessageFns<OnDemandSpec, "nebius.compute.v1.OnDemandSpec">;
5110
+ /** Represents the `nebius.compute.v1.FollowsSpotPriceSpec` protobuf message. */
5111
+ export interface FollowsSpotPriceSpec {
5112
+ /** Contains the fully qualified protobuf type name. */
5113
+ $type: "nebius.compute.v1.FollowsSpotPriceSpec";
5114
+ /** Preserves protobuf fields that this SDK version does not recognize. */
5115
+ [unknownFieldsSymbol]?: Uint8Array | undefined;
5116
+ /** Returns a safe value for JSON logs. */
5117
+ [customJson]?: () => unknown;
5118
+ }
5119
+ /** Encodes, decodes, converts, and creates {@link FollowsSpotPriceSpec} messages. */
5120
+ export declare const FollowsSpotPriceSpec: MessageFns<FollowsSpotPriceSpec, "nebius.compute.v1.FollowsSpotPriceSpec">;
5121
+ /** Represents the `nebius.compute.v1.SpotPricingPolicySpec` protobuf message. */
5122
+ export interface SpotPricingPolicySpec {
5123
+ /** Contains the fully qualified protobuf type name. */
5124
+ $type: "nebius.compute.v1.SpotPricingPolicySpec";
5125
+ /** Preserves protobuf fields that this SDK version does not recognize. */
5126
+ [unknownFieldsSymbol]?: Uint8Array | undefined;
5127
+ /** Returns a safe value for JSON logs. */
5128
+ [customJson]?: () => unknown;
5129
+ /**
5130
+ * PricingPolicy ID used as the maximum agreed price for the preemptible VM.
5131
+ *
5132
+ */
5133
+ id: string;
5134
+ }
5135
+ /** Encodes, decodes, converts, and creates {@link SpotPricingPolicySpec} messages. */
5136
+ export declare const SpotPricingPolicySpec: MessageFns<SpotPricingPolicySpec, "nebius.compute.v1.SpotPricingPolicySpec">;
5085
5137
  /** Represents the `nebius.compute.v1.MaintenanceEvent` protobuf message. */
5086
5138
  export interface MaintenanceEvent {
5087
5139
  /** Contains the fully qualified protobuf type name. */
@@ -5120,7 +5172,10 @@ export interface MaintenanceEventStatus {
5120
5172
  [unknownFieldsSymbol]?: Uint8Array | undefined;
5121
5173
  /** Returns a safe value for JSON logs. */
5122
5174
  [customJson]?: () => unknown;
5123
- /** Contains the `maintenance_id` protobuf field. */
5175
+ /**
5176
+ * ID of the maintenance event.
5177
+ *
5178
+ */
5124
5179
  maintenanceId: string;
5125
5180
  /** Time when the maintenance event is created */
5126
5181
  createdAt?: Dayjs | undefined;
@@ -6408,7 +6463,10 @@ export interface ListPlatformsRequest {
6408
6463
  pageSize: Long;
6409
6464
  /** Contains the `page_token` protobuf field. */
6410
6465
  pageToken: string;
6411
- /** Contains the `parent_id` protobuf field. */
6466
+ /**
6467
+ * ID of the parent project for the platform request.
6468
+ *
6469
+ */
6412
6470
  parentId: string;
6413
6471
  }
6414
6472
  /** Encodes, decodes, converts, and creates {@link ListPlatformsRequest} messages. */