@nebius/js-sdk 0.2.15 → 0.2.17
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/audit/v2/index.d.ts +31 -0
- package/dist/cjs/api/nebius/audit/v2/index.d.ts.map +1 -1
- package/dist/cjs/api/nebius/audit/v2/index.js +69 -0
- package/dist/cjs/api/nebius/audit/v2/index.js.map +1 -1
- package/dist/cjs/api/nebius/billing/v1/index.d.ts +450 -0
- package/dist/cjs/api/nebius/billing/v1/index.d.ts.map +1 -0
- package/dist/cjs/api/nebius/billing/v1/index.js +2182 -0
- package/dist/cjs/api/nebius/billing/v1/index.js.map +1 -0
- package/dist/cjs/api/nebius/billing/v1.d.ts +1 -0
- package/dist/cjs/api/nebius/billing/v1.js +2 -0
- package/dist/cjs/api/nebius/compute/v1/index.d.ts +8 -0
- package/dist/cjs/api/nebius/compute/v1/index.d.ts.map +1 -1
- package/dist/cjs/api/nebius/compute/v1/index.js +23 -0
- package/dist/cjs/api/nebius/compute/v1/index.js.map +1 -1
- package/dist/cjs/api/nebius/mk8s/v1/index.d.ts +8 -0
- package/dist/cjs/api/nebius/mk8s/v1/index.d.ts.map +1 -1
- package/dist/cjs/api/nebius/mk8s/v1/index.js +23 -0
- package/dist/cjs/api/nebius/mk8s/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/audit/v2/index.d.ts +31 -0
- package/dist/esm/api/nebius/audit/v2/index.d.ts.map +1 -1
- package/dist/esm/api/nebius/audit/v2/index.js +69 -0
- package/dist/esm/api/nebius/audit/v2/index.js.map +1 -1
- package/dist/esm/api/nebius/billing/v1/index.d.ts +450 -0
- package/dist/esm/api/nebius/billing/v1/index.d.ts.map +1 -0
- package/dist/esm/api/nebius/billing/v1/index.js +2178 -0
- package/dist/esm/api/nebius/billing/v1/index.js.map +1 -0
- package/dist/esm/api/nebius/billing/v1.d.ts +1 -0
- package/dist/esm/api/nebius/billing/v1.js +1 -0
- package/dist/esm/api/nebius/compute/v1/index.d.ts +8 -0
- package/dist/esm/api/nebius/compute/v1/index.d.ts.map +1 -1
- package/dist/esm/api/nebius/compute/v1/index.js +23 -0
- package/dist/esm/api/nebius/compute/v1/index.js.map +1 -1
- package/dist/esm/api/nebius/mk8s/v1/index.d.ts +8 -0
- package/dist/esm/api/nebius/mk8s/v1/index.d.ts.map +1 -1
- package/dist/esm/api/nebius/mk8s/v1/index.js +23 -0
- package/dist/esm/api/nebius/mk8s/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
|
@@ -0,0 +1,450 @@
|
|
|
1
|
+
import { unknownFieldsSymbol } from "../../../../runtime/protos/index.js";
|
|
2
|
+
import type { MessageFns, EnumInstance, EnumClass } from "../../../../runtime/protos/index.js";
|
|
3
|
+
import { customJson } from "../../../../runtime/util/logging.js";
|
|
4
|
+
import { ChannelCredentials, Client, ClientUnaryCall, ClientOptions, CallOptions, Metadata, ServiceError as GrpcServiceError, handleUnaryCall, UntypedServiceImplementation } from "@grpc/grpc-js";
|
|
5
|
+
import type { SDKInterface } from "../../../../sdk.js";
|
|
6
|
+
import { Request as SDKRequestClass, type RetryOptions } from "../../../../runtime/request.js";
|
|
7
|
+
import { ResourceMetadata } from "../../common/v1/index.js";
|
|
8
|
+
export interface EstimateBatchRequest {
|
|
9
|
+
$type: "nebius.billing.v1.EstimateBatchRequest";
|
|
10
|
+
[unknownFieldsSymbol]?: Uint8Array | undefined;
|
|
11
|
+
[customJson]?: () => unknown;
|
|
12
|
+
/**
|
|
13
|
+
* List of resource specifications for cost estimation.
|
|
14
|
+
* Each resource will be priced individually and then aggregated into total costs.
|
|
15
|
+
*
|
|
16
|
+
*/
|
|
17
|
+
resourceSpecs: ResourceSpec[];
|
|
18
|
+
/**
|
|
19
|
+
* Type of offers to be applied to the cost estimate.
|
|
20
|
+
*
|
|
21
|
+
*/
|
|
22
|
+
offerTypes: OfferType[];
|
|
23
|
+
/**
|
|
24
|
+
* Currency for the cost estimate (e.g., "usd", "ils"). Defaults to "usd".
|
|
25
|
+
*
|
|
26
|
+
*/
|
|
27
|
+
currency: string;
|
|
28
|
+
/**
|
|
29
|
+
* Filters only time-based resource units, e.g. hour, day, month, etc.
|
|
30
|
+
* If response contains other resource units like request, token, etc., it will always be presented in response.
|
|
31
|
+
*
|
|
32
|
+
*/
|
|
33
|
+
filterAggregationUnit?: FilterAggregationUnit | undefined;
|
|
34
|
+
}
|
|
35
|
+
export declare const EstimateBatchRequest: MessageFns<EstimateBatchRequest, "nebius.billing.v1.EstimateBatchRequest">;
|
|
36
|
+
export interface EstimateBatchResponse {
|
|
37
|
+
$type: "nebius.billing.v1.EstimateBatchResponse";
|
|
38
|
+
[unknownFieldsSymbol]?: Uint8Array | undefined;
|
|
39
|
+
[customJson]?: () => unknown;
|
|
40
|
+
resourceCosts: ResourceCost[];
|
|
41
|
+
/**
|
|
42
|
+
* Total cost for all resource units.
|
|
43
|
+
*
|
|
44
|
+
*/
|
|
45
|
+
totalCosts: TotalCost[];
|
|
46
|
+
/**
|
|
47
|
+
* Currency used for the estimate.
|
|
48
|
+
*
|
|
49
|
+
*/
|
|
50
|
+
currency: string;
|
|
51
|
+
}
|
|
52
|
+
export declare const EstimateBatchResponse: MessageFns<EstimateBatchResponse, "nebius.billing.v1.EstimateBatchResponse">;
|
|
53
|
+
export type CalculatorServiceServiceDescription = typeof CalculatorServiceServiceDescription;
|
|
54
|
+
export declare const CalculatorServiceServiceDescription: {
|
|
55
|
+
readonly estimateBatch: {
|
|
56
|
+
readonly path: "/nebius.billing.v1.CalculatorService/EstimateBatch";
|
|
57
|
+
readonly requestStream: false;
|
|
58
|
+
readonly responseStream: false;
|
|
59
|
+
readonly requestSerialize: (value: EstimateBatchRequest) => Buffer<ArrayBuffer>;
|
|
60
|
+
readonly sendResetMask: false;
|
|
61
|
+
readonly requestDeserialize: (value: Buffer) => EstimateBatchRequest;
|
|
62
|
+
readonly responseSerialize: (value: EstimateBatchResponse) => Buffer<ArrayBuffer>;
|
|
63
|
+
readonly responseDeserialize: (value: Buffer) => EstimateBatchResponse;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
export interface CalculatorServiceServer extends UntypedServiceImplementation {
|
|
67
|
+
estimateBatch: handleUnaryCall<EstimateBatchRequest, EstimateBatchResponse>;
|
|
68
|
+
}
|
|
69
|
+
export interface CalculatorServiceBaseClient extends Client {
|
|
70
|
+
estimateBatch(request: EstimateBatchRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: EstimateBatchResponse) => void): ClientUnaryCall;
|
|
71
|
+
}
|
|
72
|
+
export declare const CalculatorServiceBaseClient: {
|
|
73
|
+
new (address: string, credentials: ChannelCredentials, options?: Partial<ClientOptions>): CalculatorServiceBaseClient;
|
|
74
|
+
service: typeof CalculatorServiceServiceDescription;
|
|
75
|
+
serviceName: string;
|
|
76
|
+
};
|
|
77
|
+
/**
|
|
78
|
+
* Calculator service for estimating resource costs.
|
|
79
|
+
*
|
|
80
|
+
*/
|
|
81
|
+
export interface CalculatorService {
|
|
82
|
+
$type: "nebius.billing.v1.CalculatorService";
|
|
83
|
+
/**
|
|
84
|
+
* Estimates prices for multiple resources.
|
|
85
|
+
* Returns aggregated hourly and monthly cost estimates for all specified resources.
|
|
86
|
+
*
|
|
87
|
+
*/
|
|
88
|
+
estimateBatch(request: EstimateBatchRequest): SDKRequestClass<EstimateBatchRequest, EstimateBatchResponse>;
|
|
89
|
+
estimateBatch(request: EstimateBatchRequest, metadata: Metadata): SDKRequestClass<EstimateBatchRequest, EstimateBatchResponse>;
|
|
90
|
+
estimateBatch(request: EstimateBatchRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<EstimateBatchRequest, EstimateBatchResponse>;
|
|
91
|
+
}
|
|
92
|
+
export declare class CalculatorService implements CalculatorService {
|
|
93
|
+
private sdk;
|
|
94
|
+
$type: "nebius.billing.v1.CalculatorService";
|
|
95
|
+
private addr;
|
|
96
|
+
private spec;
|
|
97
|
+
private apiServiceName;
|
|
98
|
+
constructor(sdk: SDKInterface);
|
|
99
|
+
estimateBatch(request: EstimateBatchRequest): SDKRequestClass<EstimateBatchRequest, EstimateBatchResponse>;
|
|
100
|
+
estimateBatch(request: EstimateBatchRequest, metadata: Metadata): SDKRequestClass<EstimateBatchRequest, EstimateBatchResponse>;
|
|
101
|
+
estimateBatch(request: EstimateBatchRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<EstimateBatchRequest, EstimateBatchResponse>;
|
|
102
|
+
}
|
|
103
|
+
/**
|
|
104
|
+
* List of time aggregation unit values to filter by.
|
|
105
|
+
* Only costs for these time units will be included in the response, but it doesn't filter not time-based units.
|
|
106
|
+
*
|
|
107
|
+
*/
|
|
108
|
+
export type FilterAggregationUnit_FilterAggregationUnitValue = EnumInstance<"UNRECOGNIZED" | "FILTER_AGGREGATION_UNIT_UNSPECIFIED" | "FILTER_AGGREGATION_UNIT_MINUTE" | "FILTER_AGGREGATION_UNIT_HOUR" | "FILTER_AGGREGATION_UNIT_DAY" | "FILTER_AGGREGATION_UNIT_WEEK" | "FILTER_AGGREGATION_UNIT_MONTH">;
|
|
109
|
+
interface FilterAggregationUnit_FilterAggregationUnitValueValueMembers {
|
|
110
|
+
readonly FILTER_AGGREGATION_UNIT_UNSPECIFIED: EnumInstance<"UNRECOGNIZED" | "FILTER_AGGREGATION_UNIT_UNSPECIFIED" | "FILTER_AGGREGATION_UNIT_MINUTE" | "FILTER_AGGREGATION_UNIT_HOUR" | "FILTER_AGGREGATION_UNIT_DAY" | "FILTER_AGGREGATION_UNIT_WEEK" | "FILTER_AGGREGATION_UNIT_MONTH">;
|
|
111
|
+
readonly FILTER_AGGREGATION_UNIT_MINUTE: EnumInstance<"UNRECOGNIZED" | "FILTER_AGGREGATION_UNIT_UNSPECIFIED" | "FILTER_AGGREGATION_UNIT_MINUTE" | "FILTER_AGGREGATION_UNIT_HOUR" | "FILTER_AGGREGATION_UNIT_DAY" | "FILTER_AGGREGATION_UNIT_WEEK" | "FILTER_AGGREGATION_UNIT_MONTH">;
|
|
112
|
+
readonly FILTER_AGGREGATION_UNIT_HOUR: EnumInstance<"UNRECOGNIZED" | "FILTER_AGGREGATION_UNIT_UNSPECIFIED" | "FILTER_AGGREGATION_UNIT_MINUTE" | "FILTER_AGGREGATION_UNIT_HOUR" | "FILTER_AGGREGATION_UNIT_DAY" | "FILTER_AGGREGATION_UNIT_WEEK" | "FILTER_AGGREGATION_UNIT_MONTH">;
|
|
113
|
+
readonly FILTER_AGGREGATION_UNIT_DAY: EnumInstance<"UNRECOGNIZED" | "FILTER_AGGREGATION_UNIT_UNSPECIFIED" | "FILTER_AGGREGATION_UNIT_MINUTE" | "FILTER_AGGREGATION_UNIT_HOUR" | "FILTER_AGGREGATION_UNIT_DAY" | "FILTER_AGGREGATION_UNIT_WEEK" | "FILTER_AGGREGATION_UNIT_MONTH">;
|
|
114
|
+
readonly FILTER_AGGREGATION_UNIT_WEEK: EnumInstance<"UNRECOGNIZED" | "FILTER_AGGREGATION_UNIT_UNSPECIFIED" | "FILTER_AGGREGATION_UNIT_MINUTE" | "FILTER_AGGREGATION_UNIT_HOUR" | "FILTER_AGGREGATION_UNIT_DAY" | "FILTER_AGGREGATION_UNIT_WEEK" | "FILTER_AGGREGATION_UNIT_MONTH">;
|
|
115
|
+
readonly FILTER_AGGREGATION_UNIT_MONTH: EnumInstance<"UNRECOGNIZED" | "FILTER_AGGREGATION_UNIT_UNSPECIFIED" | "FILTER_AGGREGATION_UNIT_MINUTE" | "FILTER_AGGREGATION_UNIT_HOUR" | "FILTER_AGGREGATION_UNIT_DAY" | "FILTER_AGGREGATION_UNIT_WEEK" | "FILTER_AGGREGATION_UNIT_MONTH">;
|
|
116
|
+
}
|
|
117
|
+
export type FilterAggregationUnit_FilterAggregationUnitValueClass = EnumClass<"UNRECOGNIZED" | "FILTER_AGGREGATION_UNIT_UNSPECIFIED" | "FILTER_AGGREGATION_UNIT_MINUTE" | "FILTER_AGGREGATION_UNIT_HOUR" | "FILTER_AGGREGATION_UNIT_DAY" | "FILTER_AGGREGATION_UNIT_WEEK" | "FILTER_AGGREGATION_UNIT_MONTH"> & FilterAggregationUnit_FilterAggregationUnitValueValueMembers;
|
|
118
|
+
export declare const FilterAggregationUnit_FilterAggregationUnitValue: FilterAggregationUnit_FilterAggregationUnitValueClass;
|
|
119
|
+
/**
|
|
120
|
+
* Aggregation unit type
|
|
121
|
+
* If unit type is one of minute, hour, day, week, month, then it's time-based
|
|
122
|
+
* Otherwise it's usage-based
|
|
123
|
+
*
|
|
124
|
+
*/
|
|
125
|
+
export type AggregationUnit_UnitType = EnumInstance<"UNRECOGNIZED" | "UNIT_TYPE_UNSPECIFIED" | "UNIT_TYPE_TIME_BASED" | "UNIT_TYPE_USAGE_BASED">;
|
|
126
|
+
interface AggregationUnit_UnitTypeValueMembers {
|
|
127
|
+
readonly UNIT_TYPE_UNSPECIFIED: EnumInstance<"UNRECOGNIZED" | "UNIT_TYPE_UNSPECIFIED" | "UNIT_TYPE_TIME_BASED" | "UNIT_TYPE_USAGE_BASED">;
|
|
128
|
+
readonly UNIT_TYPE_TIME_BASED: EnumInstance<"UNRECOGNIZED" | "UNIT_TYPE_UNSPECIFIED" | "UNIT_TYPE_TIME_BASED" | "UNIT_TYPE_USAGE_BASED">;
|
|
129
|
+
readonly UNIT_TYPE_USAGE_BASED: EnumInstance<"UNRECOGNIZED" | "UNIT_TYPE_UNSPECIFIED" | "UNIT_TYPE_TIME_BASED" | "UNIT_TYPE_USAGE_BASED">;
|
|
130
|
+
}
|
|
131
|
+
export type AggregationUnit_UnitTypeClass = EnumClass<"UNRECOGNIZED" | "UNIT_TYPE_UNSPECIFIED" | "UNIT_TYPE_TIME_BASED" | "UNIT_TYPE_USAGE_BASED"> & AggregationUnit_UnitTypeValueMembers;
|
|
132
|
+
export declare const AggregationUnit_UnitType: AggregationUnit_UnitTypeClass;
|
|
133
|
+
/**
|
|
134
|
+
* Resource specification for cost estimation.
|
|
135
|
+
* Contains the specifications for creating and updating different types of resources.
|
|
136
|
+
*
|
|
137
|
+
*/
|
|
138
|
+
export interface ResourceSpec {
|
|
139
|
+
$type: "nebius.billing.v1.ResourceSpec";
|
|
140
|
+
[unknownFieldsSymbol]?: Uint8Array | undefined;
|
|
141
|
+
[customJson]?: () => unknown;
|
|
142
|
+
/**
|
|
143
|
+
* Resource specification for cost estimation. Payload must include billing routing annotations. Must contain
|
|
144
|
+
* either a create-request or an update-request message for the target resource type. Examples:
|
|
145
|
+
* type.googleapis.com/nebius.compute.v1.CreateInstanceRequest, type.googleapis.com/nebius.compute.v1.UpdateInstanceRequest and so on
|
|
146
|
+
*
|
|
147
|
+
*/
|
|
148
|
+
spec?: {
|
|
149
|
+
typeUrl: string;
|
|
150
|
+
value: Uint8Array;
|
|
151
|
+
} | undefined;
|
|
152
|
+
}
|
|
153
|
+
export declare const ResourceSpec: MessageFns<ResourceSpec, "nebius.billing.v1.ResourceSpec">;
|
|
154
|
+
/**
|
|
155
|
+
* General total cost with a single fixed amount.
|
|
156
|
+
* Used for resources with predictable, non-variable pricing.
|
|
157
|
+
*
|
|
158
|
+
*/
|
|
159
|
+
export interface GeneralTotalCost {
|
|
160
|
+
$type: "nebius.billing.v1.GeneralTotalCost";
|
|
161
|
+
[unknownFieldsSymbol]?: Uint8Array | undefined;
|
|
162
|
+
[customJson]?: () => unknown;
|
|
163
|
+
/**
|
|
164
|
+
* Cost breakdown including all SKUs and their individual costs.
|
|
165
|
+
*
|
|
166
|
+
*/
|
|
167
|
+
total?: CostBreakdown | undefined;
|
|
168
|
+
}
|
|
169
|
+
export declare const GeneralTotalCost: MessageFns<GeneralTotalCost, "nebius.billing.v1.GeneralTotalCost">;
|
|
170
|
+
/**
|
|
171
|
+
* Range-based total cost with minimum and maximum bounds.
|
|
172
|
+
* Used for resources with variable pricing based on usage or scaling.
|
|
173
|
+
*
|
|
174
|
+
*/
|
|
175
|
+
export interface RangeTotalCost {
|
|
176
|
+
$type: "nebius.billing.v1.RangeTotalCost";
|
|
177
|
+
[unknownFieldsSymbol]?: Uint8Array | undefined;
|
|
178
|
+
[customJson]?: () => unknown;
|
|
179
|
+
/**
|
|
180
|
+
* Minimum possible cost for the resource group.
|
|
181
|
+
* Represents the cost when resources are at their minimum configuration.
|
|
182
|
+
*
|
|
183
|
+
*/
|
|
184
|
+
min?: CostBreakdown | undefined;
|
|
185
|
+
/**
|
|
186
|
+
* Maximum possible cost for the resource group.
|
|
187
|
+
* Represents the cost when resources are at their maximum configuration.
|
|
188
|
+
*
|
|
189
|
+
*/
|
|
190
|
+
max?: CostBreakdown | undefined;
|
|
191
|
+
}
|
|
192
|
+
export declare const RangeTotalCost: MessageFns<RangeTotalCost, "nebius.billing.v1.RangeTotalCost">;
|
|
193
|
+
/**
|
|
194
|
+
* Cost information for a single resource.
|
|
195
|
+
* Contains metadata about the resource and its cost.
|
|
196
|
+
*
|
|
197
|
+
*/
|
|
198
|
+
export interface ResourceCost {
|
|
199
|
+
$type: "nebius.billing.v1.ResourceCost";
|
|
200
|
+
[unknownFieldsSymbol]?: Uint8Array | undefined;
|
|
201
|
+
[customJson]?: () => unknown;
|
|
202
|
+
/**
|
|
203
|
+
* Resource metadata.
|
|
204
|
+
*
|
|
205
|
+
*/
|
|
206
|
+
metadata?: ResourceMetadata | undefined;
|
|
207
|
+
/**
|
|
208
|
+
* Optional field to override the resource metadata.
|
|
209
|
+
*
|
|
210
|
+
*/
|
|
211
|
+
overrideMetadata?: ResourceMetadata | undefined;
|
|
212
|
+
/**
|
|
213
|
+
* Unit of the SKU measurement within a resource, e.g. "hour", "day", "month", etc.
|
|
214
|
+
*
|
|
215
|
+
*/
|
|
216
|
+
aggregationUnit?: AggregationUnit | undefined;
|
|
217
|
+
costType?: {
|
|
218
|
+
$case: "general";
|
|
219
|
+
general: GeneralResourceCost;
|
|
220
|
+
} | {
|
|
221
|
+
$case: "fixedInstance";
|
|
222
|
+
fixedInstance: FixedInstanceResourceCost;
|
|
223
|
+
} | {
|
|
224
|
+
$case: "autoscale";
|
|
225
|
+
autoscale: AutoscaleResourceCost;
|
|
226
|
+
} | undefined;
|
|
227
|
+
}
|
|
228
|
+
export declare const ResourceCost: MessageFns<ResourceCost, "nebius.billing.v1.ResourceCost">;
|
|
229
|
+
/**
|
|
230
|
+
* General resource cost for single-unit resources.
|
|
231
|
+
* Used for resources like compute instances or disks where the unit count is not variable.
|
|
232
|
+
*
|
|
233
|
+
*/
|
|
234
|
+
export interface GeneralResourceCost {
|
|
235
|
+
$type: "nebius.billing.v1.GeneralResourceCost";
|
|
236
|
+
[unknownFieldsSymbol]?: Uint8Array | undefined;
|
|
237
|
+
[customJson]?: () => unknown;
|
|
238
|
+
/**
|
|
239
|
+
* Cost breakdown for the resource including all SKU costs and total cost.
|
|
240
|
+
*
|
|
241
|
+
*/
|
|
242
|
+
total?: CostBreakdown | undefined;
|
|
243
|
+
}
|
|
244
|
+
export declare const GeneralResourceCost: MessageFns<GeneralResourceCost, "nebius.billing.v1.GeneralResourceCost">;
|
|
245
|
+
/**
|
|
246
|
+
* Fixed instance resource cost.
|
|
247
|
+
* Used for resources that have a fixed number of instances.
|
|
248
|
+
*
|
|
249
|
+
*/
|
|
250
|
+
export interface FixedInstanceResourceCost {
|
|
251
|
+
$type: "nebius.billing.v1.FixedInstanceResourceCost";
|
|
252
|
+
[unknownFieldsSymbol]?: Uint8Array | undefined;
|
|
253
|
+
[customJson]?: () => unknown;
|
|
254
|
+
/**
|
|
255
|
+
* Total cost for all instances combined.
|
|
256
|
+
*
|
|
257
|
+
*/
|
|
258
|
+
total?: CostBreakdown | undefined;
|
|
259
|
+
/**
|
|
260
|
+
* Cost per individual instance.
|
|
261
|
+
* Multiply by instance_count to get total cost.
|
|
262
|
+
*
|
|
263
|
+
*/
|
|
264
|
+
perInstance?: CostBreakdown | undefined;
|
|
265
|
+
/**
|
|
266
|
+
* Number of instances in the configuration.
|
|
267
|
+
*
|
|
268
|
+
*/
|
|
269
|
+
instanceCount: number;
|
|
270
|
+
}
|
|
271
|
+
export declare const FixedInstanceResourceCost: MessageFns<FixedInstanceResourceCost, "nebius.billing.v1.FixedInstanceResourceCost">;
|
|
272
|
+
/**
|
|
273
|
+
* Autoscale resource cost.
|
|
274
|
+
* Used for resources that can automatically scale.
|
|
275
|
+
*
|
|
276
|
+
*/
|
|
277
|
+
export interface AutoscaleResourceCost {
|
|
278
|
+
$type: "nebius.billing.v1.AutoscaleResourceCost";
|
|
279
|
+
[unknownFieldsSymbol]?: Uint8Array | undefined;
|
|
280
|
+
[customJson]?: () => unknown;
|
|
281
|
+
/**
|
|
282
|
+
* Minimum possible cost when scaled to minimum instances.
|
|
283
|
+
*
|
|
284
|
+
*/
|
|
285
|
+
minCost?: CostBreakdown | undefined;
|
|
286
|
+
/**
|
|
287
|
+
* Maximum possible cost when scaled to maximum instances.
|
|
288
|
+
*
|
|
289
|
+
*/
|
|
290
|
+
maxCost?: CostBreakdown | undefined;
|
|
291
|
+
/**
|
|
292
|
+
* Cost per individual instance.
|
|
293
|
+
* Used to calculate costs at any scaling level between min and max.
|
|
294
|
+
*
|
|
295
|
+
*/
|
|
296
|
+
perInstance?: CostBreakdown | undefined;
|
|
297
|
+
/**
|
|
298
|
+
* Minimum number of instances in the auto-scaling group.
|
|
299
|
+
*
|
|
300
|
+
*/
|
|
301
|
+
minInstances: number;
|
|
302
|
+
/**
|
|
303
|
+
* Maximum number of instances in the auto-scaling group.
|
|
304
|
+
*
|
|
305
|
+
*/
|
|
306
|
+
maxInstances: number;
|
|
307
|
+
}
|
|
308
|
+
export declare const AutoscaleResourceCost: MessageFns<AutoscaleResourceCost, "nebius.billing.v1.AutoscaleResourceCost">;
|
|
309
|
+
/**
|
|
310
|
+
* Detailed cost breakdown showing individual SKU costs and totals.
|
|
311
|
+
*
|
|
312
|
+
*/
|
|
313
|
+
export interface CostBreakdown {
|
|
314
|
+
$type: "nebius.billing.v1.CostBreakdown";
|
|
315
|
+
[unknownFieldsSymbol]?: Uint8Array | undefined;
|
|
316
|
+
[customJson]?: () => unknown;
|
|
317
|
+
/**
|
|
318
|
+
* Individual costs for each SKU (Stock Keeping Unit) component.
|
|
319
|
+
* Each SKU represents a different billable component (e.g., CPU, memory, RAM, etc.).
|
|
320
|
+
*
|
|
321
|
+
*/
|
|
322
|
+
skuCosts: SkuCost[];
|
|
323
|
+
/**
|
|
324
|
+
* Total cost as a decimal string.
|
|
325
|
+
* Represents the sum of all SKU costs with full precision.
|
|
326
|
+
* Example: "42.123456789" for precise billing calculations.
|
|
327
|
+
*
|
|
328
|
+
*/
|
|
329
|
+
cost: string;
|
|
330
|
+
/**
|
|
331
|
+
* Total cost rounded up to 2 decimal places.
|
|
332
|
+
* Example: "42.13"
|
|
333
|
+
*
|
|
334
|
+
*/
|
|
335
|
+
costRounded: string;
|
|
336
|
+
}
|
|
337
|
+
export declare const CostBreakdown: MessageFns<CostBreakdown, "nebius.billing.v1.CostBreakdown">;
|
|
338
|
+
/**
|
|
339
|
+
* Cost information for a specific SKU (Stock Keeping Unit).
|
|
340
|
+
* Represents a single billable component within a resource.
|
|
341
|
+
*
|
|
342
|
+
*/
|
|
343
|
+
export interface SkuCost {
|
|
344
|
+
$type: "nebius.billing.v1.SkuCost";
|
|
345
|
+
[unknownFieldsSymbol]?: Uint8Array | undefined;
|
|
346
|
+
[customJson]?: () => unknown;
|
|
347
|
+
/**
|
|
348
|
+
* Unique identifier for the SKU.
|
|
349
|
+
*
|
|
350
|
+
*/
|
|
351
|
+
skuId: string;
|
|
352
|
+
/**
|
|
353
|
+
* Quantity of the SKU being used as a decimal string.
|
|
354
|
+
* Example: "2.123"
|
|
355
|
+
*
|
|
356
|
+
*/
|
|
357
|
+
quantity: string;
|
|
358
|
+
/**
|
|
359
|
+
* Quantity rounded up to 2 decimal places.
|
|
360
|
+
* Example: "2.13"
|
|
361
|
+
*
|
|
362
|
+
*/
|
|
363
|
+
quantityRounded: string;
|
|
364
|
+
/**
|
|
365
|
+
* Cost for this SKU as a decimal string.
|
|
366
|
+
* Calculated as quantity * unit_price with full precision.
|
|
367
|
+
* Example: "15.6789012345" for precise billing calculations.
|
|
368
|
+
*
|
|
369
|
+
*/
|
|
370
|
+
cost: string;
|
|
371
|
+
/**
|
|
372
|
+
* Cost for this SKU rounded up to 2 decimal places.
|
|
373
|
+
* Example: "15.68"
|
|
374
|
+
*
|
|
375
|
+
*/
|
|
376
|
+
costRounded: string;
|
|
377
|
+
}
|
|
378
|
+
export declare const SkuCost: MessageFns<SkuCost, "nebius.billing.v1.SkuCost">;
|
|
379
|
+
/**
|
|
380
|
+
* Total cost for a single resource unit.
|
|
381
|
+
*
|
|
382
|
+
*/
|
|
383
|
+
export interface TotalCost {
|
|
384
|
+
$type: "nebius.billing.v1.TotalCost";
|
|
385
|
+
[unknownFieldsSymbol]?: Uint8Array | undefined;
|
|
386
|
+
[customJson]?: () => unknown;
|
|
387
|
+
/**
|
|
388
|
+
* Aggregation unit.
|
|
389
|
+
*
|
|
390
|
+
*/
|
|
391
|
+
aggregationUnit?: AggregationUnit | undefined;
|
|
392
|
+
costType?: {
|
|
393
|
+
$case: "general";
|
|
394
|
+
general: GeneralResourceCost;
|
|
395
|
+
} | {
|
|
396
|
+
$case: "range";
|
|
397
|
+
range: RangeTotalCost;
|
|
398
|
+
} | undefined;
|
|
399
|
+
}
|
|
400
|
+
export declare const TotalCost: MessageFns<TotalCost, "nebius.billing.v1.TotalCost">;
|
|
401
|
+
/**
|
|
402
|
+
* Filters only time-based aggregation units, e.g. hour, day, month, etc.
|
|
403
|
+
* If response contains other aggregation units like request, token, etc., it will always be presented in response.
|
|
404
|
+
*
|
|
405
|
+
*/
|
|
406
|
+
export interface FilterAggregationUnit {
|
|
407
|
+
$type: "nebius.billing.v1.FilterAggregationUnit";
|
|
408
|
+
[unknownFieldsSymbol]?: Uint8Array | undefined;
|
|
409
|
+
[customJson]?: () => unknown;
|
|
410
|
+
/**
|
|
411
|
+
* List of time aggregation unit values to filter by.
|
|
412
|
+
* Only costs for these time units will be included in the response, but it doesn't filter not time-based units.
|
|
413
|
+
*
|
|
414
|
+
*/
|
|
415
|
+
filterAggregationUnitValues: FilterAggregationUnit_FilterAggregationUnitValue[];
|
|
416
|
+
}
|
|
417
|
+
export declare const FilterAggregationUnit: MessageFns<FilterAggregationUnit, "nebius.billing.v1.FilterAggregationUnit">;
|
|
418
|
+
export interface AggregationUnit {
|
|
419
|
+
$type: "nebius.billing.v1.AggregationUnit";
|
|
420
|
+
[unknownFieldsSymbol]?: Uint8Array | undefined;
|
|
421
|
+
[customJson]?: () => unknown;
|
|
422
|
+
/**
|
|
423
|
+
* Resource unit value.
|
|
424
|
+
*
|
|
425
|
+
*/
|
|
426
|
+
unit: string;
|
|
427
|
+
/**
|
|
428
|
+
* Resource unit type.
|
|
429
|
+
*
|
|
430
|
+
*/
|
|
431
|
+
unitType: AggregationUnit_UnitType;
|
|
432
|
+
}
|
|
433
|
+
export declare const AggregationUnit: MessageFns<AggregationUnit, "nebius.billing.v1.AggregationUnit">;
|
|
434
|
+
/**
|
|
435
|
+
* OfferType is a enum that specifies the type of offer.
|
|
436
|
+
*
|
|
437
|
+
*/
|
|
438
|
+
export type OfferType = EnumInstance<"UNRECOGNIZED" | "OFFER_TYPE_UNSPECIFIED" | "OFFER_TYPE_CONTRACT_PRICE">;
|
|
439
|
+
interface OfferTypeValueMembers {
|
|
440
|
+
readonly OFFER_TYPE_UNSPECIFIED: EnumInstance<"UNRECOGNIZED" | "OFFER_TYPE_UNSPECIFIED" | "OFFER_TYPE_CONTRACT_PRICE">;
|
|
441
|
+
/**
|
|
442
|
+
* Contract price is a special price for SKU.
|
|
443
|
+
*
|
|
444
|
+
*/
|
|
445
|
+
readonly OFFER_TYPE_CONTRACT_PRICE: EnumInstance<"UNRECOGNIZED" | "OFFER_TYPE_UNSPECIFIED" | "OFFER_TYPE_CONTRACT_PRICE">;
|
|
446
|
+
}
|
|
447
|
+
export type OfferTypeClass = EnumClass<"UNRECOGNIZED" | "OFFER_TYPE_UNSPECIFIED" | "OFFER_TYPE_CONTRACT_PRICE"> & OfferTypeValueMembers;
|
|
448
|
+
export declare const OfferType: OfferTypeClass;
|
|
449
|
+
export {};
|
|
450
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/api/nebius/billing/v1/index.ts"],"names":[],"mappings":"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"}
|