@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.
- package/dist/cjs/api/nebius/ai/v1/index.d.ts +81 -0
- package/dist/cjs/api/nebius/ai/v1/index.d.ts.map +1 -1
- package/dist/cjs/api/nebius/ai/v1/index.js +545 -1
- package/dist/cjs/api/nebius/ai/v1/index.js.map +1 -1
- package/dist/cjs/api/nebius/billing/v1/index.d.ts +714 -2
- package/dist/cjs/api/nebius/billing/v1/index.d.ts.map +1 -1
- package/dist/cjs/api/nebius/billing/v1/index.js +1970 -1
- package/dist/cjs/api/nebius/billing/v1/index.js.map +1 -1
- package/dist/cjs/api/nebius/compute/v1/index.d.ts +60 -2
- package/dist/cjs/api/nebius/compute/v1/index.d.ts.map +1 -1
- package/dist/cjs/api/nebius/compute/v1/index.js +382 -2
- package/dist/cjs/api/nebius/compute/v1/index.js.map +1 -1
- package/dist/cjs/api/nebius/iam/v1/index.d.ts +28 -8
- package/dist/cjs/api/nebius/iam/v1/index.d.ts.map +1 -1
- package/dist/cjs/api/nebius/iam/v1/index.js +25 -5
- package/dist/cjs/api/nebius/iam/v1/index.js.map +1 -1
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/esm/api/nebius/ai/v1/index.d.ts +81 -0
- package/dist/esm/api/nebius/ai/v1/index.d.ts.map +1 -1
- package/dist/esm/api/nebius/ai/v1/index.js +544 -0
- package/dist/esm/api/nebius/ai/v1/index.js.map +1 -1
- package/dist/esm/api/nebius/billing/v1/index.d.ts +714 -2
- package/dist/esm/api/nebius/billing/v1/index.d.ts.map +1 -1
- package/dist/esm/api/nebius/billing/v1/index.js +1970 -2
- package/dist/esm/api/nebius/billing/v1/index.js.map +1 -1
- package/dist/esm/api/nebius/compute/v1/index.d.ts +60 -2
- package/dist/esm/api/nebius/compute/v1/index.d.ts.map +1 -1
- package/dist/esm/api/nebius/compute/v1/index.js +380 -0
- package/dist/esm/api/nebius/compute/v1/index.js.map +1 -1
- package/dist/esm/api/nebius/iam/v1/index.d.ts +28 -8
- package/dist/esm/api/nebius/iam/v1/index.d.ts.map +1 -1
- package/dist/esm/api/nebius/iam/v1/index.js +25 -5
- package/dist/esm/api/nebius/iam/v1/index.js.map +1 -1
- package/dist/esm/version.d.ts +1 -1
- package/dist/esm/version.js +1 -1
- package/package.json +1 -1
- package/dist/cjs/api/nebius/monitoring/v1/index.d.ts +0 -607
- package/dist/cjs/api/nebius/monitoring/v1/index.d.ts.map +0 -1
- package/dist/cjs/api/nebius/monitoring/v1/index.js +0 -1538
- package/dist/cjs/api/nebius/monitoring/v1/index.js.map +0 -1
- package/dist/cjs/api/nebius/monitoring/v1.d.ts +0 -1
- package/dist/cjs/api/nebius/monitoring/v1.js +0 -2
- package/dist/esm/api/nebius/monitoring/v1/index.d.ts +0 -607
- package/dist/esm/api/nebius/monitoring/v1/index.d.ts.map +0 -1
- package/dist/esm/api/nebius/monitoring/v1/index.js +0 -1534
- package/dist/esm/api/nebius/monitoring/v1/index.js.map +0 -1
- package/dist/esm/api/nebius/monitoring/v1.d.ts +0 -1
- 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
|
-
/**
|
|
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
|
-
/**
|
|
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. */
|