@nebius/js-sdk 0.2.51 → 0.2.53

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 (43) hide show
  1. package/dist/cjs/api/nebius/common/v1/index.d.ts +177 -0
  2. package/dist/cjs/api/nebius/common/v1/index.d.ts.map +1 -1
  3. package/dist/cjs/api/nebius/common/v1/index.js +566 -1
  4. package/dist/cjs/api/nebius/common/v1/index.js.map +1 -1
  5. package/dist/cjs/api/nebius/compute/v1/index.d.ts +4 -1
  6. package/dist/cjs/api/nebius/compute/v1/index.d.ts.map +1 -1
  7. package/dist/cjs/api/nebius/compute/v1/index.js.map +1 -1
  8. package/dist/cjs/api/nebius/registry/v1/index.d.ts +52 -1
  9. package/dist/cjs/api/nebius/registry/v1/index.d.ts.map +1 -1
  10. package/dist/cjs/api/nebius/registry/v1/index.js +23 -0
  11. package/dist/cjs/api/nebius/registry/v1/index.js.map +1 -1
  12. package/dist/cjs/api/nebius/storage/v1/index.d.ts +578 -0
  13. package/dist/cjs/api/nebius/storage/v1/index.d.ts.map +1 -1
  14. package/dist/cjs/api/nebius/storage/v1/index.js +1549 -2
  15. package/dist/cjs/api/nebius/storage/v1/index.js.map +1 -1
  16. package/dist/cjs/api/nebius/tunnel/v1/index.d.ts +35 -0
  17. package/dist/cjs/api/nebius/tunnel/v1/index.d.ts.map +1 -1
  18. package/dist/cjs/api/nebius/tunnel/v1/index.js +153 -1
  19. package/dist/cjs/api/nebius/tunnel/v1/index.js.map +1 -1
  20. package/dist/cjs/version.d.ts +1 -1
  21. package/dist/cjs/version.js +1 -1
  22. package/dist/esm/api/nebius/common/v1/index.d.ts +177 -0
  23. package/dist/esm/api/nebius/common/v1/index.d.ts.map +1 -1
  24. package/dist/esm/api/nebius/common/v1/index.js +565 -0
  25. package/dist/esm/api/nebius/common/v1/index.js.map +1 -1
  26. package/dist/esm/api/nebius/compute/v1/index.d.ts +4 -1
  27. package/dist/esm/api/nebius/compute/v1/index.d.ts.map +1 -1
  28. package/dist/esm/api/nebius/compute/v1/index.js.map +1 -1
  29. package/dist/esm/api/nebius/registry/v1/index.d.ts +52 -1
  30. package/dist/esm/api/nebius/registry/v1/index.d.ts.map +1 -1
  31. package/dist/esm/api/nebius/registry/v1/index.js +24 -1
  32. package/dist/esm/api/nebius/registry/v1/index.js.map +1 -1
  33. package/dist/esm/api/nebius/storage/v1/index.d.ts +578 -0
  34. package/dist/esm/api/nebius/storage/v1/index.d.ts.map +1 -1
  35. package/dist/esm/api/nebius/storage/v1/index.js +1546 -0
  36. package/dist/esm/api/nebius/storage/v1/index.js.map +1 -1
  37. package/dist/esm/api/nebius/tunnel/v1/index.d.ts +35 -0
  38. package/dist/esm/api/nebius/tunnel/v1/index.d.ts.map +1 -1
  39. package/dist/esm/api/nebius/tunnel/v1/index.js +152 -0
  40. package/dist/esm/api/nebius/tunnel/v1/index.js.map +1 -1
  41. package/dist/esm/version.d.ts +1 -1
  42. package/dist/esm/version.js +1 -1
  43. package/package.json +1 -1
@@ -1102,6 +1102,584 @@ export interface InsecureEndpoint {
1102
1102
  }
1103
1103
  /** Encodes, decodes, converts, and creates {@link InsecureEndpoint} messages. */
1104
1104
  export declare const InsecureEndpoint: MessageFns<InsecureEndpoint, "nebius.storage.v1.InsecureEndpoint">;
1105
+ /** Represents the `nebius.storage.v1.GetInventoryRequest` protobuf message. */
1106
+ export interface GetInventoryRequest {
1107
+ /** Contains the fully qualified protobuf type name. */
1108
+ $type: "nebius.storage.v1.GetInventoryRequest";
1109
+ /** Preserves protobuf fields that this SDK version does not recognize. */
1110
+ [unknownFieldsSymbol]?: Uint8Array | undefined;
1111
+ /** Returns a safe value for JSON logs. */
1112
+ [customJson]?: () => unknown;
1113
+ /** Contains the `id` protobuf field. */
1114
+ id: string;
1115
+ }
1116
+ /** Encodes, decodes, converts, and creates {@link GetInventoryRequest} messages. */
1117
+ export declare const GetInventoryRequest: MessageFns<GetInventoryRequest, "nebius.storage.v1.GetInventoryRequest">;
1118
+ /** Represents the `nebius.storage.v1.ListInventoriesRequest` protobuf message. */
1119
+ export interface ListInventoriesRequest {
1120
+ /** Contains the fully qualified protobuf type name. */
1121
+ $type: "nebius.storage.v1.ListInventoriesRequest";
1122
+ /** Preserves protobuf fields that this SDK version does not recognize. */
1123
+ [unknownFieldsSymbol]?: Uint8Array | undefined;
1124
+ /** Returns a safe value for JSON logs. */
1125
+ [customJson]?: () => unknown;
1126
+ /** Contains the `parent_id` protobuf field. */
1127
+ parentId: string;
1128
+ /** Contains the `page_size` protobuf field. */
1129
+ pageSize: Long;
1130
+ /** Contains the `page_token` protobuf field. */
1131
+ pageToken: string;
1132
+ }
1133
+ /** Encodes, decodes, converts, and creates {@link ListInventoriesRequest} messages. */
1134
+ export declare const ListInventoriesRequest: MessageFns<ListInventoriesRequest, "nebius.storage.v1.ListInventoriesRequest">;
1135
+ /** Represents the `nebius.storage.v1.ListInventoriesResponse` protobuf message. */
1136
+ export interface ListInventoriesResponse {
1137
+ /** Contains the fully qualified protobuf type name. */
1138
+ $type: "nebius.storage.v1.ListInventoriesResponse";
1139
+ /** Preserves protobuf fields that this SDK version does not recognize. */
1140
+ [unknownFieldsSymbol]?: Uint8Array | undefined;
1141
+ /** Returns a safe value for JSON logs. */
1142
+ [customJson]?: () => unknown;
1143
+ /** Contains the `items` protobuf field. */
1144
+ items: Inventory[];
1145
+ /** Contains the `next_page_token` protobuf field. */
1146
+ nextPageToken: string;
1147
+ }
1148
+ /** Encodes, decodes, converts, and creates {@link ListInventoriesResponse} messages. */
1149
+ export declare const ListInventoriesResponse: MessageFns<ListInventoriesResponse, "nebius.storage.v1.ListInventoriesResponse">;
1150
+ /** Represents the `nebius.storage.v1.CreateInventoryRequest` protobuf message. */
1151
+ export interface CreateInventoryRequest {
1152
+ /** Contains the fully qualified protobuf type name. */
1153
+ $type: "nebius.storage.v1.CreateInventoryRequest";
1154
+ /** Preserves protobuf fields that this SDK version does not recognize. */
1155
+ [unknownFieldsSymbol]?: Uint8Array | undefined;
1156
+ /** Returns a safe value for JSON logs. */
1157
+ [customJson]?: () => unknown;
1158
+ /** Contains the `metadata` protobuf field. */
1159
+ metadata?: ResourceMetadata | undefined;
1160
+ /** Contains the `spec` protobuf field. */
1161
+ spec?: InventorySpec | undefined;
1162
+ }
1163
+ /** Encodes, decodes, converts, and creates {@link CreateInventoryRequest} messages. */
1164
+ export declare const CreateInventoryRequest: MessageFns<CreateInventoryRequest, "nebius.storage.v1.CreateInventoryRequest">;
1165
+ /** Represents the `nebius.storage.v1.UpdateInventoryRequest` protobuf message. */
1166
+ export interface UpdateInventoryRequest {
1167
+ /** Contains the fully qualified protobuf type name. */
1168
+ $type: "nebius.storage.v1.UpdateInventoryRequest";
1169
+ /** Preserves protobuf fields that this SDK version does not recognize. */
1170
+ [unknownFieldsSymbol]?: Uint8Array | undefined;
1171
+ /** Returns a safe value for JSON logs. */
1172
+ [customJson]?: () => unknown;
1173
+ /** Contains the `metadata` protobuf field. */
1174
+ metadata?: ResourceMetadata | undefined;
1175
+ /** Contains the `spec` protobuf field. */
1176
+ spec?: InventorySpec | undefined;
1177
+ }
1178
+ /** Encodes, decodes, converts, and creates {@link UpdateInventoryRequest} messages. */
1179
+ export declare const UpdateInventoryRequest: MessageFns<UpdateInventoryRequest, "nebius.storage.v1.UpdateInventoryRequest">;
1180
+ /** Represents the `nebius.storage.v1.DeleteInventoryRequest` protobuf message. */
1181
+ export interface DeleteInventoryRequest {
1182
+ /** Contains the fully qualified protobuf type name. */
1183
+ $type: "nebius.storage.v1.DeleteInventoryRequest";
1184
+ /** Preserves protobuf fields that this SDK version does not recognize. */
1185
+ [unknownFieldsSymbol]?: Uint8Array | undefined;
1186
+ /** Returns a safe value for JSON logs. */
1187
+ [customJson]?: () => unknown;
1188
+ /** Contains the `id` protobuf field. */
1189
+ id: string;
1190
+ }
1191
+ /** Encodes, decodes, converts, and creates {@link DeleteInventoryRequest} messages. */
1192
+ export declare const DeleteInventoryRequest: MessageFns<DeleteInventoryRequest, "nebius.storage.v1.DeleteInventoryRequest">;
1193
+ /**
1194
+ * Defines the gRPC methods for the `nebius.storage.v1.InventoryService` service.
1195
+ */
1196
+ export type InventoryServiceServiceDescription = typeof InventoryServiceServiceDescription;
1197
+ /**
1198
+ * Describes the gRPC methods for the `nebius.storage.v1.InventoryService` service.
1199
+ */
1200
+ export declare const InventoryServiceServiceDescription: {
1201
+ readonly get: {
1202
+ readonly path: "/nebius.storage.v1.InventoryService/Get";
1203
+ readonly requestStream: false;
1204
+ readonly responseStream: false;
1205
+ readonly requestSerialize: (value: GetInventoryRequest) => Buffer<ArrayBuffer>;
1206
+ readonly requestDescriptor: () => MessageDescriptor | undefined;
1207
+ readonly sendResetMask: false;
1208
+ readonly requestDeserialize: (value: Buffer) => GetInventoryRequest;
1209
+ readonly responseSerialize: (value: Inventory) => Buffer<ArrayBuffer>;
1210
+ readonly responseDeserialize: (value: Buffer) => Inventory;
1211
+ };
1212
+ readonly getByName: {
1213
+ readonly path: "/nebius.storage.v1.InventoryService/GetByName";
1214
+ readonly requestStream: false;
1215
+ readonly responseStream: false;
1216
+ readonly requestSerialize: (value: GetByNameRequest) => Buffer<ArrayBuffer>;
1217
+ readonly requestDescriptor: () => MessageDescriptor | undefined;
1218
+ readonly sendResetMask: false;
1219
+ readonly requestDeserialize: (value: Buffer) => GetByNameRequest;
1220
+ readonly responseSerialize: (value: Inventory) => Buffer<ArrayBuffer>;
1221
+ readonly responseDeserialize: (value: Buffer) => Inventory;
1222
+ };
1223
+ readonly list: {
1224
+ readonly path: "/nebius.storage.v1.InventoryService/List";
1225
+ readonly requestStream: false;
1226
+ readonly responseStream: false;
1227
+ readonly requestSerialize: (value: ListInventoriesRequest) => Buffer<ArrayBuffer>;
1228
+ readonly requestDescriptor: () => MessageDescriptor | undefined;
1229
+ readonly sendResetMask: false;
1230
+ readonly requestDeserialize: (value: Buffer) => ListInventoriesRequest;
1231
+ readonly responseSerialize: (value: ListInventoriesResponse) => Buffer<ArrayBuffer>;
1232
+ readonly responseDeserialize: (value: Buffer) => ListInventoriesResponse;
1233
+ };
1234
+ readonly create: {
1235
+ readonly path: "/nebius.storage.v1.InventoryService/Create";
1236
+ readonly requestStream: false;
1237
+ readonly responseStream: false;
1238
+ readonly requestSerialize: (value: CreateInventoryRequest) => Buffer<ArrayBuffer>;
1239
+ readonly requestDescriptor: () => MessageDescriptor | undefined;
1240
+ readonly sendResetMask: false;
1241
+ readonly requestDeserialize: (value: Buffer) => CreateInventoryRequest;
1242
+ readonly responseSerialize: (value: Operation) => Buffer<ArrayBuffer>;
1243
+ readonly responseDeserialize: (value: Buffer) => Operation;
1244
+ };
1245
+ readonly update: {
1246
+ readonly path: "/nebius.storage.v1.InventoryService/Update";
1247
+ readonly requestStream: false;
1248
+ readonly responseStream: false;
1249
+ readonly requestSerialize: (value: UpdateInventoryRequest) => Buffer<ArrayBuffer>;
1250
+ readonly requestDescriptor: () => MessageDescriptor | undefined;
1251
+ readonly sendResetMask: true;
1252
+ readonly requestDeserialize: (value: Buffer) => UpdateInventoryRequest;
1253
+ readonly responseSerialize: (value: Operation) => Buffer<ArrayBuffer>;
1254
+ readonly responseDeserialize: (value: Buffer) => Operation;
1255
+ };
1256
+ readonly delete: {
1257
+ readonly path: "/nebius.storage.v1.InventoryService/Delete";
1258
+ readonly requestStream: false;
1259
+ readonly responseStream: false;
1260
+ readonly requestSerialize: (value: DeleteInventoryRequest) => Buffer<ArrayBuffer>;
1261
+ readonly requestDescriptor: () => MessageDescriptor | undefined;
1262
+ readonly sendResetMask: false;
1263
+ readonly requestDeserialize: (value: Buffer) => DeleteInventoryRequest;
1264
+ readonly responseSerialize: (value: Operation) => Buffer<ArrayBuffer>;
1265
+ readonly responseDeserialize: (value: Buffer) => Operation;
1266
+ };
1267
+ };
1268
+ /**
1269
+ * Handles server calls for the `nebius.storage.v1.InventoryService` service.
1270
+ */
1271
+ export interface InventoryServiceServer extends UntypedServiceImplementation {
1272
+ /**
1273
+ * Handles the `Get` RPC.
1274
+ */
1275
+ get: handleUnaryCall<GetInventoryRequest, Inventory>;
1276
+ /**
1277
+ * Handles the `GetByName` RPC.
1278
+ */
1279
+ getByName: handleUnaryCall<GetByNameRequest, Inventory>;
1280
+ /**
1281
+ * Handles the `List` RPC.
1282
+ */
1283
+ list: handleUnaryCall<ListInventoriesRequest, ListInventoriesResponse>;
1284
+ /**
1285
+ * Handles the `Create` RPC.
1286
+ */
1287
+ create: handleUnaryCall<CreateInventoryRequest, Operation>;
1288
+ /**
1289
+ * Handles the `Update` RPC.
1290
+ */
1291
+ update: handleUnaryCall<UpdateInventoryRequest, Operation>;
1292
+ /**
1293
+ * Handles the `Delete` RPC.
1294
+ */
1295
+ delete: handleUnaryCall<DeleteInventoryRequest, Operation>;
1296
+ }
1297
+ /**
1298
+ * Defines the low-level gRPC client for the `nebius.storage.v1.InventoryService` service.
1299
+ */
1300
+ export interface InventoryServiceBaseClient extends Client {
1301
+ /**
1302
+ * Calls the `Get` RPC.
1303
+ */
1304
+ get(request: GetInventoryRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Inventory) => void): ClientUnaryCall;
1305
+ /**
1306
+ * Calls the `GetByName` RPC.
1307
+ */
1308
+ getByName(request: GetByNameRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Inventory) => void): ClientUnaryCall;
1309
+ /**
1310
+ * Calls the `List` RPC.
1311
+ */
1312
+ list(request: ListInventoriesRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: ListInventoriesResponse) => void): ClientUnaryCall;
1313
+ /**
1314
+ * Calls the `Create` RPC.
1315
+ */
1316
+ create(request: CreateInventoryRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
1317
+ /**
1318
+ * Calls the `Update` RPC.
1319
+ */
1320
+ update(request: UpdateInventoryRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
1321
+ /**
1322
+ * Calls the `Delete` RPC.
1323
+ */
1324
+ delete(request: DeleteInventoryRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
1325
+ }
1326
+ /**
1327
+ * Creates low-level gRPC clients for the `nebius.storage.v1.InventoryService` service.
1328
+ */
1329
+ export declare const InventoryServiceBaseClient: {
1330
+ /** Creates a low-level client for the service address. */
1331
+ new (address: string, credentials: ChannelCredentials, options?: Partial<ClientOptions>): InventoryServiceBaseClient;
1332
+ /** Contains the gRPC service description. */
1333
+ service: typeof InventoryServiceServiceDescription;
1334
+ /** Contains the fully qualified protobuf service name. */
1335
+ serviceName: string;
1336
+ };
1337
+ /**
1338
+ * InventoryService manages bucket inventory configurations.
1339
+ *
1340
+ */
1341
+ export interface InventoryService {
1342
+ /** Contains the fully qualified protobuf service name. */
1343
+ $type: "nebius.storage.v1.InventoryService";
1344
+ /**
1345
+ * Calls the `Get` RPC.
1346
+ */
1347
+ get(request: GetInventoryRequest): SDKRequestClass<GetInventoryRequest, Inventory>;
1348
+ /**
1349
+ * Calls the `Get` RPC.
1350
+ */
1351
+ get(request: GetInventoryRequest, metadata: Metadata): SDKRequestClass<GetInventoryRequest, Inventory>;
1352
+ /**
1353
+ * Calls the `Get` RPC.
1354
+ */
1355
+ get(request: GetInventoryRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetInventoryRequest, Inventory>;
1356
+ /**
1357
+ * Calls the `GetByName` RPC.
1358
+ */
1359
+ getByName(request: GetByNameRequest): SDKRequestClass<GetByNameRequest, Inventory>;
1360
+ /**
1361
+ * Calls the `GetByName` RPC.
1362
+ */
1363
+ getByName(request: GetByNameRequest, metadata: Metadata): SDKRequestClass<GetByNameRequest, Inventory>;
1364
+ /**
1365
+ * Calls the `GetByName` RPC.
1366
+ */
1367
+ getByName(request: GetByNameRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetByNameRequest, Inventory>;
1368
+ /**
1369
+ * Calls the `List` RPC.
1370
+ */
1371
+ list(request: ListInventoriesRequest): SDKRequestClass<ListInventoriesRequest, ListInventoriesResponse>;
1372
+ /**
1373
+ * Calls the `List` RPC.
1374
+ */
1375
+ list(request: ListInventoriesRequest, metadata: Metadata): SDKRequestClass<ListInventoriesRequest, ListInventoriesResponse>;
1376
+ /**
1377
+ * Calls the `List` RPC.
1378
+ */
1379
+ list(request: ListInventoriesRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListInventoriesRequest, ListInventoriesResponse>;
1380
+ /**
1381
+ * Calls the `Create` RPC.
1382
+ */
1383
+ create(request: CreateInventoryRequest): SDKRequestClass<CreateInventoryRequest, OperationWrapper<GetOperationRequest>>;
1384
+ /**
1385
+ * Calls the `Create` RPC.
1386
+ */
1387
+ create(request: CreateInventoryRequest, metadata: Metadata): SDKRequestClass<CreateInventoryRequest, OperationWrapper<GetOperationRequest>>;
1388
+ /**
1389
+ * Calls the `Create` RPC.
1390
+ */
1391
+ create(request: CreateInventoryRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreateInventoryRequest, OperationWrapper<GetOperationRequest>>;
1392
+ /**
1393
+ * Calls the `Update` RPC.
1394
+ */
1395
+ update(request: UpdateInventoryRequest): SDKRequestClass<UpdateInventoryRequest, OperationWrapper<GetOperationRequest>>;
1396
+ /**
1397
+ * Calls the `Update` RPC.
1398
+ */
1399
+ update(request: UpdateInventoryRequest, metadata: Metadata): SDKRequestClass<UpdateInventoryRequest, OperationWrapper<GetOperationRequest>>;
1400
+ /**
1401
+ * Calls the `Update` RPC.
1402
+ */
1403
+ update(request: UpdateInventoryRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdateInventoryRequest, OperationWrapper<GetOperationRequest>>;
1404
+ /**
1405
+ * Calls the `Delete` RPC.
1406
+ */
1407
+ delete(request: DeleteInventoryRequest): SDKRequestClass<DeleteInventoryRequest, OperationWrapper<GetOperationRequest>>;
1408
+ /**
1409
+ * Calls the `Delete` RPC.
1410
+ */
1411
+ delete(request: DeleteInventoryRequest, metadata: Metadata): SDKRequestClass<DeleteInventoryRequest, OperationWrapper<GetOperationRequest>>;
1412
+ /**
1413
+ * Calls the `Delete` RPC.
1414
+ */
1415
+ delete(request: DeleteInventoryRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<DeleteInventoryRequest, OperationWrapper<GetOperationRequest>>;
1416
+ }
1417
+ /**
1418
+ * Calls the `nebius.storage.v1.InventoryService` service through the Nebius SDK.
1419
+ */
1420
+ export declare class InventoryService implements InventoryService {
1421
+ private sdk;
1422
+ $type: "nebius.storage.v1.InventoryService";
1423
+ private addr;
1424
+ private spec;
1425
+ private apiServiceName;
1426
+ /** Creates a client that uses the SDK service address. */
1427
+ constructor(sdk: SDKInterface);
1428
+ /** Returns the operation service for this service address. */
1429
+ getOperationService(): OperationService;
1430
+ /**
1431
+ * Calls the `Get` RPC.
1432
+ */
1433
+ get(request: GetInventoryRequest): SDKRequestClass<GetInventoryRequest, Inventory>;
1434
+ /**
1435
+ * Calls the `Get` RPC.
1436
+ */
1437
+ get(request: GetInventoryRequest, metadata: Metadata): SDKRequestClass<GetInventoryRequest, Inventory>;
1438
+ /**
1439
+ * Calls the `Get` RPC.
1440
+ */
1441
+ get(request: GetInventoryRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetInventoryRequest, Inventory>;
1442
+ /**
1443
+ * Calls the `GetByName` RPC.
1444
+ */
1445
+ getByName(request: GetByNameRequest): SDKRequestClass<GetByNameRequest, Inventory>;
1446
+ /**
1447
+ * Calls the `GetByName` RPC.
1448
+ */
1449
+ getByName(request: GetByNameRequest, metadata: Metadata): SDKRequestClass<GetByNameRequest, Inventory>;
1450
+ /**
1451
+ * Calls the `GetByName` RPC.
1452
+ */
1453
+ getByName(request: GetByNameRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetByNameRequest, Inventory>;
1454
+ /**
1455
+ * Calls the `List` RPC.
1456
+ */
1457
+ list(request: ListInventoriesRequest): SDKRequestClass<ListInventoriesRequest, ListInventoriesResponse>;
1458
+ /**
1459
+ * Calls the `List` RPC.
1460
+ */
1461
+ list(request: ListInventoriesRequest, metadata: Metadata): SDKRequestClass<ListInventoriesRequest, ListInventoriesResponse>;
1462
+ /**
1463
+ * Calls the `List` RPC.
1464
+ */
1465
+ list(request: ListInventoriesRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListInventoriesRequest, ListInventoriesResponse>;
1466
+ /**
1467
+ * Calls the `Create` RPC.
1468
+ */
1469
+ create(request: CreateInventoryRequest): SDKRequestClass<CreateInventoryRequest, OperationWrapper<GetOperationRequest>>;
1470
+ /**
1471
+ * Calls the `Create` RPC.
1472
+ */
1473
+ create(request: CreateInventoryRequest, metadata: Metadata): SDKRequestClass<CreateInventoryRequest, OperationWrapper<GetOperationRequest>>;
1474
+ /**
1475
+ * Calls the `Create` RPC.
1476
+ */
1477
+ create(request: CreateInventoryRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreateInventoryRequest, OperationWrapper<GetOperationRequest>>;
1478
+ /**
1479
+ * Calls the `Update` RPC.
1480
+ */
1481
+ update(request: UpdateInventoryRequest): SDKRequestClass<UpdateInventoryRequest, OperationWrapper<GetOperationRequest>>;
1482
+ /**
1483
+ * Calls the `Update` RPC.
1484
+ */
1485
+ update(request: UpdateInventoryRequest, metadata: Metadata): SDKRequestClass<UpdateInventoryRequest, OperationWrapper<GetOperationRequest>>;
1486
+ /**
1487
+ * Calls the `Update` RPC.
1488
+ */
1489
+ update(request: UpdateInventoryRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdateInventoryRequest, OperationWrapper<GetOperationRequest>>;
1490
+ /**
1491
+ * Calls the `Delete` RPC.
1492
+ */
1493
+ delete(request: DeleteInventoryRequest): SDKRequestClass<DeleteInventoryRequest, OperationWrapper<GetOperationRequest>>;
1494
+ /**
1495
+ * Calls the `Delete` RPC.
1496
+ */
1497
+ delete(request: DeleteInventoryRequest, metadata: Metadata): SDKRequestClass<DeleteInventoryRequest, OperationWrapper<GetOperationRequest>>;
1498
+ /**
1499
+ * Calls the `Delete` RPC.
1500
+ */
1501
+ delete(request: DeleteInventoryRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<DeleteInventoryRequest, OperationWrapper<GetOperationRequest>>;
1502
+ }
1503
+ /**
1504
+ * Represents the `nebius.storage.v1.InventorySpec.OutputFormat` protobuf enum.
1505
+ */
1506
+ export type InventorySpec_OutputFormat = EnumInstance<"UNRECOGNIZED" | "OUTPUT_FORMAT_UNSPECIFIED" | "CSV_GZIP" | "PARQUET_SNAPPY">;
1507
+ /** Defines the static values of {@link InventorySpec_OutputFormat}. */
1508
+ export interface InventorySpec_OutputFormatValueMembers {
1509
+ /**
1510
+ * Represents the `OUTPUT_FORMAT_UNSPECIFIED` protobuf enum value.
1511
+ */
1512
+ readonly OUTPUT_FORMAT_UNSPECIFIED: EnumInstance<"UNRECOGNIZED" | "OUTPUT_FORMAT_UNSPECIFIED" | "CSV_GZIP" | "PARQUET_SNAPPY">;
1513
+ /**
1514
+ * CSV compressed with GZIP.
1515
+ *
1516
+ */
1517
+ readonly CSV_GZIP: EnumInstance<"UNRECOGNIZED" | "OUTPUT_FORMAT_UNSPECIFIED" | "CSV_GZIP" | "PARQUET_SNAPPY">;
1518
+ /**
1519
+ * Parquet compressed with Snappy.
1520
+ *
1521
+ */
1522
+ readonly PARQUET_SNAPPY: EnumInstance<"UNRECOGNIZED" | "OUTPUT_FORMAT_UNSPECIFIED" | "CSV_GZIP" | "PARQUET_SNAPPY">;
1523
+ }
1524
+ /** Defines the runtime API for {@link InventorySpec_OutputFormat}. */
1525
+ export type InventorySpec_OutputFormatClass = EnumClass<"UNRECOGNIZED" | "OUTPUT_FORMAT_UNSPECIFIED" | "CSV_GZIP" | "PARQUET_SNAPPY"> & InventorySpec_OutputFormatValueMembers;
1526
+ /** Converts and creates {@link InventorySpec_OutputFormat} values. */
1527
+ export declare const InventorySpec_OutputFormat: InventorySpec_OutputFormatClass;
1528
+ /**
1529
+ * Represents the `nebius.storage.v1.InventorySpec.OptionalField` protobuf enum.
1530
+ */
1531
+ export type InventorySpec_OptionalField = EnumInstance<"UNRECOGNIZED" | "OPTIONAL_FIELD_UNSPECIFIED" | "LAST_ACCESS" | "CHECKSUM_ALGORITHMS" | "INTELLIGENT_TIER" | "IS_MULTIPART_UPLOAD" | "LIFECYCLE_EXPIRATION" | "TAGS">;
1532
+ /** Defines the static values of {@link InventorySpec_OptionalField}. */
1533
+ export interface InventorySpec_OptionalFieldValueMembers {
1534
+ /**
1535
+ * Represents the `OPTIONAL_FIELD_UNSPECIFIED` protobuf enum value.
1536
+ */
1537
+ readonly OPTIONAL_FIELD_UNSPECIFIED: EnumInstance<"UNRECOGNIZED" | "OPTIONAL_FIELD_UNSPECIFIED" | "LAST_ACCESS" | "CHECKSUM_ALGORITHMS" | "INTELLIGENT_TIER" | "IS_MULTIPART_UPLOAD" | "LIFECYCLE_EXPIRATION" | "TAGS">;
1538
+ /**
1539
+ * Timestamp of the last access.
1540
+ *
1541
+ */
1542
+ readonly LAST_ACCESS: EnumInstance<"UNRECOGNIZED" | "OPTIONAL_FIELD_UNSPECIFIED" | "LAST_ACCESS" | "CHECKSUM_ALGORITHMS" | "INTELLIGENT_TIER" | "IS_MULTIPART_UPLOAD" | "LIFECYCLE_EXPIRATION" | "TAGS">;
1543
+ /**
1544
+ * Checksum algorithms used.
1545
+ *
1546
+ */
1547
+ readonly CHECKSUM_ALGORITHMS: EnumInstance<"UNRECOGNIZED" | "OPTIONAL_FIELD_UNSPECIFIED" | "LAST_ACCESS" | "CHECKSUM_ALGORITHMS" | "INTELLIGENT_TIER" | "IS_MULTIPART_UPLOAD" | "LIFECYCLE_EXPIRATION" | "TAGS">;
1548
+ /**
1549
+ * Current intelligent tier (for Intelligent Storage Class).
1550
+ *
1551
+ */
1552
+ readonly INTELLIGENT_TIER: EnumInstance<"UNRECOGNIZED" | "OPTIONAL_FIELD_UNSPECIFIED" | "LAST_ACCESS" | "CHECKSUM_ALGORITHMS" | "INTELLIGENT_TIER" | "IS_MULTIPART_UPLOAD" | "LIFECYCLE_EXPIRATION" | "TAGS">;
1553
+ /**
1554
+ * True for multipart uploads, false for simple objects.
1555
+ *
1556
+ */
1557
+ readonly IS_MULTIPART_UPLOAD: EnumInstance<"UNRECOGNIZED" | "OPTIONAL_FIELD_UNSPECIFIED" | "LAST_ACCESS" | "CHECKSUM_ALGORITHMS" | "INTELLIGENT_TIER" | "IS_MULTIPART_UPLOAD" | "LIFECYCLE_EXPIRATION" | "TAGS">;
1558
+ /**
1559
+ * Timestamp of lifecycle expiration.
1560
+ *
1561
+ */
1562
+ readonly LIFECYCLE_EXPIRATION: EnumInstance<"UNRECOGNIZED" | "OPTIONAL_FIELD_UNSPECIFIED" | "LAST_ACCESS" | "CHECKSUM_ALGORITHMS" | "INTELLIGENT_TIER" | "IS_MULTIPART_UPLOAD" | "LIFECYCLE_EXPIRATION" | "TAGS">;
1563
+ /**
1564
+ * Object tags.
1565
+ *
1566
+ */
1567
+ readonly TAGS: EnumInstance<"UNRECOGNIZED" | "OPTIONAL_FIELD_UNSPECIFIED" | "LAST_ACCESS" | "CHECKSUM_ALGORITHMS" | "INTELLIGENT_TIER" | "IS_MULTIPART_UPLOAD" | "LIFECYCLE_EXPIRATION" | "TAGS">;
1568
+ }
1569
+ /** Defines the runtime API for {@link InventorySpec_OptionalField}. */
1570
+ export type InventorySpec_OptionalFieldClass = EnumClass<"UNRECOGNIZED" | "OPTIONAL_FIELD_UNSPECIFIED" | "LAST_ACCESS" | "CHECKSUM_ALGORITHMS" | "INTELLIGENT_TIER" | "IS_MULTIPART_UPLOAD" | "LIFECYCLE_EXPIRATION" | "TAGS"> & InventorySpec_OptionalFieldValueMembers;
1571
+ /** Converts and creates {@link InventorySpec_OptionalField} values. */
1572
+ export declare const InventorySpec_OptionalField: InventorySpec_OptionalFieldClass;
1573
+ /**
1574
+ * Represents the `nebius.storage.v1.InventorySpec.Schedule` protobuf enum.
1575
+ */
1576
+ export type InventorySpec_Schedule = EnumInstance<"UNRECOGNIZED" | "SCHEDULE_UNSPECIFIED" | "DAILY" | "WEEKLY">;
1577
+ /** Defines the static values of {@link InventorySpec_Schedule}. */
1578
+ export interface InventorySpec_ScheduleValueMembers {
1579
+ /**
1580
+ * Represents the `SCHEDULE_UNSPECIFIED` protobuf enum value.
1581
+ */
1582
+ readonly SCHEDULE_UNSPECIFIED: EnumInstance<"UNRECOGNIZED" | "SCHEDULE_UNSPECIFIED" | "DAILY" | "WEEKLY">;
1583
+ /**
1584
+ * Run once a day.
1585
+ *
1586
+ */
1587
+ readonly DAILY: EnumInstance<"UNRECOGNIZED" | "SCHEDULE_UNSPECIFIED" | "DAILY" | "WEEKLY">;
1588
+ /**
1589
+ * Run once a week.
1590
+ *
1591
+ */
1592
+ readonly WEEKLY: EnumInstance<"UNRECOGNIZED" | "SCHEDULE_UNSPECIFIED" | "DAILY" | "WEEKLY">;
1593
+ }
1594
+ /** Defines the runtime API for {@link InventorySpec_Schedule}. */
1595
+ export type InventorySpec_ScheduleClass = EnumClass<"UNRECOGNIZED" | "SCHEDULE_UNSPECIFIED" | "DAILY" | "WEEKLY"> & InventorySpec_ScheduleValueMembers;
1596
+ /** Converts and creates {@link InventorySpec_Schedule} values. */
1597
+ export declare const InventorySpec_Schedule: InventorySpec_ScheduleClass;
1598
+ /**
1599
+ * Inventory configures periodic generation of an object listing for a bucket.
1600
+ *
1601
+ */
1602
+ export interface Inventory {
1603
+ /** Contains the fully qualified protobuf type name. */
1604
+ $type: "nebius.storage.v1.Inventory";
1605
+ /** Preserves protobuf fields that this SDK version does not recognize. */
1606
+ [unknownFieldsSymbol]?: Uint8Array | undefined;
1607
+ /** Returns a safe value for JSON logs. */
1608
+ [customJson]?: () => unknown;
1609
+ /** Contains the `metadata` protobuf field. */
1610
+ metadata?: ResourceMetadata | undefined;
1611
+ /** Contains the `spec` protobuf field. */
1612
+ spec?: InventorySpec | undefined;
1613
+ /** Contains the `status` protobuf field. */
1614
+ status?: InventoryStatus | undefined;
1615
+ }
1616
+ /** Encodes, decodes, converts, and creates {@link Inventory} messages. */
1617
+ export declare const Inventory: MessageFns<Inventory, "nebius.storage.v1.Inventory">;
1618
+ /**
1619
+ * Desired configuration of an inventory.
1620
+ *
1621
+ */
1622
+ export interface InventorySpec {
1623
+ /** Contains the fully qualified protobuf type name. */
1624
+ $type: "nebius.storage.v1.InventorySpec";
1625
+ /** Preserves protobuf fields that this SDK version does not recognize. */
1626
+ [unknownFieldsSymbol]?: Uint8Array | undefined;
1627
+ /** Returns a safe value for JSON logs. */
1628
+ [customJson]?: () => unknown;
1629
+ /**
1630
+ * Enable or disable inventory generation.
1631
+ *
1632
+ */
1633
+ enabled: boolean;
1634
+ /**
1635
+ * Prefix to filter objects in the source bucket.
1636
+ *
1637
+ */
1638
+ sourcePrefix: string;
1639
+ /**
1640
+ * ID of the destination bucket.
1641
+ *
1642
+ */
1643
+ destinationBucketId: string;
1644
+ /**
1645
+ * Prefix under which bucket inventory will be stored in the destination bucket.
1646
+ *
1647
+ */
1648
+ destinationPrefix: string;
1649
+ /**
1650
+ * Inventory format.
1651
+ *
1652
+ */
1653
+ outputFormat: InventorySpec_OutputFormat;
1654
+ /**
1655
+ * Include noncurrent versions in inventory if set to true.
1656
+ *
1657
+ */
1658
+ noncurrentVersions: boolean;
1659
+ /**
1660
+ * Optional fields to include in inventory.
1661
+ *
1662
+ */
1663
+ optionalFields: InventorySpec_OptionalField[];
1664
+ /**
1665
+ * How often to generate the inventory.
1666
+ *
1667
+ */
1668
+ schedule: InventorySpec_Schedule;
1669
+ }
1670
+ /** Encodes, decodes, converts, and creates {@link InventorySpec} messages. */
1671
+ export declare const InventorySpec: MessageFns<InventorySpec, "nebius.storage.v1.InventorySpec">;
1672
+ /** Represents the `nebius.storage.v1.InventoryStatus` protobuf message. */
1673
+ export interface InventoryStatus {
1674
+ /** Contains the fully qualified protobuf type name. */
1675
+ $type: "nebius.storage.v1.InventoryStatus";
1676
+ /** Preserves protobuf fields that this SDK version does not recognize. */
1677
+ [unknownFieldsSymbol]?: Uint8Array | undefined;
1678
+ /** Returns a safe value for JSON logs. */
1679
+ [customJson]?: () => unknown;
1680
+ }
1681
+ /** Encodes, decodes, converts, and creates {@link InventoryStatus} messages. */
1682
+ export declare const InventoryStatus: MessageFns<InventoryStatus, "nebius.storage.v1.InventoryStatus">;
1105
1683
  /**
1106
1684
  * Represents the `nebius.storage.v1.LifecycleRule.Status` protobuf enum.
1107
1685
  */