@nebius/js-sdk 0.2.60 → 0.2.62

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.
@@ -14,7 +14,10 @@ export interface GetAllocationRequest {
14
14
  [unknownFieldsSymbol]?: Uint8Array | undefined;
15
15
  /** Returns a safe value for JSON logs. */
16
16
  [customJson]?: () => unknown;
17
- /** Contains the `id` protobuf field. */
17
+ /**
18
+ * ID of the allocation.
19
+ *
20
+ */
18
21
  id: string;
19
22
  }
20
23
  /** Encodes, decodes, converts, and creates {@link GetAllocationRequest} messages. */
@@ -28,11 +31,14 @@ export interface GetAllocationByNameRequest {
28
31
  /** Returns a safe value for JSON logs. */
29
32
  [customJson]?: () => unknown;
30
33
  /**
31
- * ID of the project.
34
+ * ID of the parent project.
32
35
  *
33
36
  */
34
37
  parentId: string;
35
- /** Contains the `name` protobuf field. */
38
+ /**
39
+ * Name of the allocation.
40
+ *
41
+ */
36
42
  name: string;
37
43
  }
38
44
  /** Encodes, decodes, converts, and creates {@link GetAllocationByNameRequest} messages. */
@@ -46,13 +52,19 @@ export interface ListAllocationsRequest {
46
52
  /** Returns a safe value for JSON logs. */
47
53
  [customJson]?: () => unknown;
48
54
  /**
49
- * ID of the project.
55
+ * ID of the parent project.
50
56
  *
51
57
  */
52
58
  parentId: string;
53
- /** Contains the `page_size` protobuf field. */
59
+ /**
60
+ * Maximum number of allocations to return.
61
+ *
62
+ */
54
63
  pageSize: Long;
55
- /** Contains the `page_token` protobuf field. */
64
+ /**
65
+ * Token to retrieve the next page of allocations.
66
+ *
67
+ */
56
68
  pageToken: string;
57
69
  }
58
70
  /** Encodes, decodes, converts, and creates {@link ListAllocationsRequest} messages. */
@@ -65,11 +77,20 @@ export interface ListAllocationsByPoolRequest {
65
77
  [unknownFieldsSymbol]?: Uint8Array | undefined;
66
78
  /** Returns a safe value for JSON logs. */
67
79
  [customJson]?: () => unknown;
68
- /** Contains the `pool_id` protobuf field. */
80
+ /**
81
+ * ID of the source pool.
82
+ *
83
+ */
69
84
  poolId: string;
70
- /** Contains the `page_size` protobuf field. */
85
+ /**
86
+ * Maximum number of allocations to return.
87
+ *
88
+ */
71
89
  pageSize: Long;
72
- /** Contains the `page_token` protobuf field. */
90
+ /**
91
+ * Token to retrieve the next page of allocations.
92
+ *
93
+ */
73
94
  pageToken: string;
74
95
  }
75
96
  /** Encodes, decodes, converts, and creates {@link ListAllocationsByPoolRequest} messages. */
@@ -82,11 +103,20 @@ export interface ListAllocationsBySubnetRequest {
82
103
  [unknownFieldsSymbol]?: Uint8Array | undefined;
83
104
  /** Returns a safe value for JSON logs. */
84
105
  [customJson]?: () => unknown;
85
- /** Contains the `subnet_id` protobuf field. */
106
+ /**
107
+ * ID of the subnet.
108
+ *
109
+ */
86
110
  subnetId: string;
87
- /** Contains the `page_size` protobuf field. */
111
+ /**
112
+ * Maximum number of allocations to return.
113
+ *
114
+ */
88
115
  pageSize: Long;
89
- /** Contains the `page_token` protobuf field. */
116
+ /**
117
+ * Token to retrieve the next page of allocations.
118
+ *
119
+ */
90
120
  pageToken: string;
91
121
  }
92
122
  /** Encodes, decodes, converts, and creates {@link ListAllocationsBySubnetRequest} messages. */
@@ -114,9 +144,15 @@ export interface CreateAllocationRequest {
114
144
  [unknownFieldsSymbol]?: Uint8Array | undefined;
115
145
  /** Returns a safe value for JSON logs. */
116
146
  [customJson]?: () => unknown;
117
- /** Contains the `metadata` protobuf field. */
147
+ /**
148
+ * Metadata of the allocation.
149
+ *
150
+ */
118
151
  metadata?: ResourceMetadata | undefined;
119
- /** Contains the `spec` protobuf field. */
152
+ /**
153
+ * Specification of the allocation.
154
+ *
155
+ */
120
156
  spec?: AllocationSpec | undefined;
121
157
  }
122
158
  /** Encodes, decodes, converts, and creates {@link CreateAllocationRequest} messages. */
@@ -129,9 +165,15 @@ export interface UpdateAllocationRequest {
129
165
  [unknownFieldsSymbol]?: Uint8Array | undefined;
130
166
  /** Returns a safe value for JSON logs. */
131
167
  [customJson]?: () => unknown;
132
- /** Contains the `metadata` protobuf field. */
168
+ /**
169
+ * Updated metadata of the allocation.
170
+ *
171
+ */
133
172
  metadata?: ResourceMetadata | undefined;
134
- /** Contains the `spec` protobuf field. */
173
+ /**
174
+ * Updated specification of the allocation.
175
+ *
176
+ */
135
177
  spec?: AllocationSpec | undefined;
136
178
  }
137
179
  /** Encodes, decodes, converts, and creates {@link UpdateAllocationRequest} messages. */
@@ -144,7 +186,10 @@ export interface DeleteAllocationRequest {
144
186
  [unknownFieldsSymbol]?: Uint8Array | undefined;
145
187
  /** Returns a safe value for JSON logs. */
146
188
  [customJson]?: () => unknown;
147
- /** Contains the `id` protobuf field. */
189
+ /**
190
+ * ID of the allocation.
191
+ *
192
+ */
148
193
  id: string;
149
194
  }
150
195
  /** Encodes, decodes, converts, and creates {@link DeleteAllocationRequest} messages. */
@@ -251,35 +296,43 @@ export declare const AllocationServiceServiceDescription: {
251
296
  */
252
297
  export interface AllocationServiceServer extends UntypedServiceImplementation {
253
298
  /**
254
- * Handles the `Get` RPC.
299
+ * Retrieves an allocation by its ID.
300
+ *
255
301
  */
256
302
  get: handleUnaryCall<GetAllocationRequest, Allocation>;
257
303
  /**
258
- * Handles the `GetByName` RPC.
304
+ * Retrieves an allocation by its name within a specified parent.
305
+ *
259
306
  */
260
307
  getByName: handleUnaryCall<GetAllocationByNameRequest, Allocation>;
261
308
  /**
262
- * Handles the `List` RPC.
309
+ * Lists allocations within a specified parent.
310
+ *
263
311
  */
264
312
  list: handleUnaryCall<ListAllocationsRequest, ListAllocationsResponse>;
265
313
  /**
266
- * Handles the `ListByPool` RPC.
314
+ * Lists allocations from a specified pool.
315
+ *
267
316
  */
268
317
  listByPool: handleUnaryCall<ListAllocationsByPoolRequest, ListAllocationsResponse>;
269
318
  /**
270
- * Handles the `ListBySubnet` RPC.
319
+ * Lists allocations available to a specified subnet, including unassigned allocations from compatible pools.
320
+ *
271
321
  */
272
322
  listBySubnet: handleUnaryCall<ListAllocationsBySubnetRequest, ListAllocationsResponse>;
273
323
  /**
274
- * Handles the `Create` RPC.
324
+ * Creates a new allocation with the specified configuration.
325
+ *
275
326
  */
276
327
  create: handleUnaryCall<CreateAllocationRequest, Operation>;
277
328
  /**
278
- * Handles the `Update` RPC.
329
+ * Updates an existing allocation with new configuration parameters.
330
+ *
279
331
  */
280
332
  update: handleUnaryCall<UpdateAllocationRequest, Operation>;
281
333
  /**
282
- * Handles the `Delete` RPC.
334
+ * Deletes an allocation by its ID.
335
+ *
283
336
  */
284
337
  delete: handleUnaryCall<DeleteAllocationRequest, Operation>;
285
338
  }
@@ -288,35 +341,43 @@ export interface AllocationServiceServer extends UntypedServiceImplementation {
288
341
  */
289
342
  export interface AllocationServiceBaseClient extends Client {
290
343
  /**
291
- * Calls the `Get` RPC.
344
+ * Retrieves an allocation by its ID.
345
+ *
292
346
  */
293
347
  get(request: GetAllocationRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Allocation) => void): ClientUnaryCall;
294
348
  /**
295
- * Calls the `GetByName` RPC.
349
+ * Retrieves an allocation by its name within a specified parent.
350
+ *
296
351
  */
297
352
  getByName(request: GetAllocationByNameRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Allocation) => void): ClientUnaryCall;
298
353
  /**
299
- * Calls the `List` RPC.
354
+ * Lists allocations within a specified parent.
355
+ *
300
356
  */
301
357
  list(request: ListAllocationsRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: ListAllocationsResponse) => void): ClientUnaryCall;
302
358
  /**
303
- * Calls the `ListByPool` RPC.
359
+ * Lists allocations from a specified pool.
360
+ *
304
361
  */
305
362
  listByPool(request: ListAllocationsByPoolRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: ListAllocationsResponse) => void): ClientUnaryCall;
306
363
  /**
307
- * Calls the `ListBySubnet` RPC.
364
+ * Lists allocations available to a specified subnet, including unassigned allocations from compatible pools.
365
+ *
308
366
  */
309
367
  listBySubnet(request: ListAllocationsBySubnetRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: ListAllocationsResponse) => void): ClientUnaryCall;
310
368
  /**
311
- * Calls the `Create` RPC.
369
+ * Creates a new allocation with the specified configuration.
370
+ *
312
371
  */
313
372
  create(request: CreateAllocationRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
314
373
  /**
315
- * Calls the `Update` RPC.
374
+ * Updates an existing allocation with new configuration parameters.
375
+ *
316
376
  */
317
377
  update(request: UpdateAllocationRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
318
378
  /**
319
- * Calls the `Delete` RPC.
379
+ * Deletes an allocation by its ID.
380
+ *
320
381
  */
321
382
  delete(request: DeleteAllocationRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
322
383
  }
@@ -332,105 +393,130 @@ export declare const AllocationServiceBaseClient: {
332
393
  serviceName: string;
333
394
  };
334
395
  /**
335
- * Calls the `nebius.vpc.v1.AllocationService` service.
396
+ * AllocationService provides operations for managing allocations.
397
+ *
336
398
  */
337
399
  export interface AllocationService {
338
400
  /** Contains the fully qualified protobuf service name. */
339
401
  $type: "nebius.vpc.v1.AllocationService";
340
402
  /**
341
- * Calls the `Get` RPC.
403
+ * Retrieves an allocation by its ID.
404
+ *
342
405
  */
343
406
  get(request: GetAllocationRequest): SDKRequestClass<GetAllocationRequest, Allocation>;
344
407
  /**
345
- * Calls the `Get` RPC.
408
+ * Retrieves an allocation by its ID.
409
+ *
346
410
  */
347
411
  get(request: GetAllocationRequest, metadata: Metadata): SDKRequestClass<GetAllocationRequest, Allocation>;
348
412
  /**
349
- * Calls the `Get` RPC.
413
+ * Retrieves an allocation by its ID.
414
+ *
350
415
  */
351
416
  get(request: GetAllocationRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetAllocationRequest, Allocation>;
352
417
  /**
353
- * Calls the `GetByName` RPC.
418
+ * Retrieves an allocation by its name within a specified parent.
419
+ *
354
420
  */
355
421
  getByName(request: GetAllocationByNameRequest): SDKRequestClass<GetAllocationByNameRequest, Allocation>;
356
422
  /**
357
- * Calls the `GetByName` RPC.
423
+ * Retrieves an allocation by its name within a specified parent.
424
+ *
358
425
  */
359
426
  getByName(request: GetAllocationByNameRequest, metadata: Metadata): SDKRequestClass<GetAllocationByNameRequest, Allocation>;
360
427
  /**
361
- * Calls the `GetByName` RPC.
428
+ * Retrieves an allocation by its name within a specified parent.
429
+ *
362
430
  */
363
431
  getByName(request: GetAllocationByNameRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetAllocationByNameRequest, Allocation>;
364
432
  /**
365
- * Calls the `List` RPC.
433
+ * Lists allocations within a specified parent.
434
+ *
366
435
  */
367
436
  list(request: ListAllocationsRequest): SDKRequestClass<ListAllocationsRequest, ListAllocationsResponse>;
368
437
  /**
369
- * Calls the `List` RPC.
438
+ * Lists allocations within a specified parent.
439
+ *
370
440
  */
371
441
  list(request: ListAllocationsRequest, metadata: Metadata): SDKRequestClass<ListAllocationsRequest, ListAllocationsResponse>;
372
442
  /**
373
- * Calls the `List` RPC.
443
+ * Lists allocations within a specified parent.
444
+ *
374
445
  */
375
446
  list(request: ListAllocationsRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListAllocationsRequest, ListAllocationsResponse>;
376
447
  /**
377
- * Calls the `ListByPool` RPC.
448
+ * Lists allocations from a specified pool.
449
+ *
378
450
  */
379
451
  listByPool(request: ListAllocationsByPoolRequest): SDKRequestClass<ListAllocationsByPoolRequest, ListAllocationsResponse>;
380
452
  /**
381
- * Calls the `ListByPool` RPC.
453
+ * Lists allocations from a specified pool.
454
+ *
382
455
  */
383
456
  listByPool(request: ListAllocationsByPoolRequest, metadata: Metadata): SDKRequestClass<ListAllocationsByPoolRequest, ListAllocationsResponse>;
384
457
  /**
385
- * Calls the `ListByPool` RPC.
458
+ * Lists allocations from a specified pool.
459
+ *
386
460
  */
387
461
  listByPool(request: ListAllocationsByPoolRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListAllocationsByPoolRequest, ListAllocationsResponse>;
388
462
  /**
389
- * Calls the `ListBySubnet` RPC.
463
+ * Lists allocations available to a specified subnet, including unassigned allocations from compatible pools.
464
+ *
390
465
  */
391
466
  listBySubnet(request: ListAllocationsBySubnetRequest): SDKRequestClass<ListAllocationsBySubnetRequest, ListAllocationsResponse>;
392
467
  /**
393
- * Calls the `ListBySubnet` RPC.
468
+ * Lists allocations available to a specified subnet, including unassigned allocations from compatible pools.
469
+ *
394
470
  */
395
471
  listBySubnet(request: ListAllocationsBySubnetRequest, metadata: Metadata): SDKRequestClass<ListAllocationsBySubnetRequest, ListAllocationsResponse>;
396
472
  /**
397
- * Calls the `ListBySubnet` RPC.
473
+ * Lists allocations available to a specified subnet, including unassigned allocations from compatible pools.
474
+ *
398
475
  */
399
476
  listBySubnet(request: ListAllocationsBySubnetRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListAllocationsBySubnetRequest, ListAllocationsResponse>;
400
477
  /**
401
- * Calls the `Create` RPC.
478
+ * Creates a new allocation with the specified configuration.
479
+ *
402
480
  */
403
481
  create(request: CreateAllocationRequest): SDKRequestClass<CreateAllocationRequest, OperationWrapper<GetOperationRequest>>;
404
482
  /**
405
- * Calls the `Create` RPC.
483
+ * Creates a new allocation with the specified configuration.
484
+ *
406
485
  */
407
486
  create(request: CreateAllocationRequest, metadata: Metadata): SDKRequestClass<CreateAllocationRequest, OperationWrapper<GetOperationRequest>>;
408
487
  /**
409
- * Calls the `Create` RPC.
488
+ * Creates a new allocation with the specified configuration.
489
+ *
410
490
  */
411
491
  create(request: CreateAllocationRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreateAllocationRequest, OperationWrapper<GetOperationRequest>>;
412
492
  /**
413
- * Calls the `Update` RPC.
493
+ * Updates an existing allocation with new configuration parameters.
494
+ *
414
495
  */
415
496
  update(request: UpdateAllocationRequest): SDKRequestClass<UpdateAllocationRequest, OperationWrapper<GetOperationRequest>>;
416
497
  /**
417
- * Calls the `Update` RPC.
498
+ * Updates an existing allocation with new configuration parameters.
499
+ *
418
500
  */
419
501
  update(request: UpdateAllocationRequest, metadata: Metadata): SDKRequestClass<UpdateAllocationRequest, OperationWrapper<GetOperationRequest>>;
420
502
  /**
421
- * Calls the `Update` RPC.
503
+ * Updates an existing allocation with new configuration parameters.
504
+ *
422
505
  */
423
506
  update(request: UpdateAllocationRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdateAllocationRequest, OperationWrapper<GetOperationRequest>>;
424
507
  /**
425
- * Calls the `Delete` RPC.
508
+ * Deletes an allocation by its ID.
509
+ *
426
510
  */
427
511
  delete(request: DeleteAllocationRequest): SDKRequestClass<DeleteAllocationRequest, OperationWrapper<GetOperationRequest>>;
428
512
  /**
429
- * Calls the `Delete` RPC.
513
+ * Deletes an allocation by its ID.
514
+ *
430
515
  */
431
516
  delete(request: DeleteAllocationRequest, metadata: Metadata): SDKRequestClass<DeleteAllocationRequest, OperationWrapper<GetOperationRequest>>;
432
517
  /**
433
- * Calls the `Delete` RPC.
518
+ * Deletes an allocation by its ID.
519
+ *
434
520
  */
435
521
  delete(request: DeleteAllocationRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<DeleteAllocationRequest, OperationWrapper<GetOperationRequest>>;
436
522
  }
@@ -448,99 +534,123 @@ export declare class AllocationService implements AllocationService {
448
534
  /** Returns the operation service for this service address. */
449
535
  getOperationService(): OperationService;
450
536
  /**
451
- * Calls the `Get` RPC.
537
+ * Retrieves an allocation by its ID.
538
+ *
452
539
  */
453
540
  get(request: GetAllocationRequest): SDKRequestClass<GetAllocationRequest, Allocation>;
454
541
  /**
455
- * Calls the `Get` RPC.
542
+ * Retrieves an allocation by its ID.
543
+ *
456
544
  */
457
545
  get(request: GetAllocationRequest, metadata: Metadata): SDKRequestClass<GetAllocationRequest, Allocation>;
458
546
  /**
459
- * Calls the `Get` RPC.
547
+ * Retrieves an allocation by its ID.
548
+ *
460
549
  */
461
550
  get(request: GetAllocationRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetAllocationRequest, Allocation>;
462
551
  /**
463
- * Calls the `GetByName` RPC.
552
+ * Retrieves an allocation by its name within a specified parent.
553
+ *
464
554
  */
465
555
  getByName(request: GetAllocationByNameRequest): SDKRequestClass<GetAllocationByNameRequest, Allocation>;
466
556
  /**
467
- * Calls the `GetByName` RPC.
557
+ * Retrieves an allocation by its name within a specified parent.
558
+ *
468
559
  */
469
560
  getByName(request: GetAllocationByNameRequest, metadata: Metadata): SDKRequestClass<GetAllocationByNameRequest, Allocation>;
470
561
  /**
471
- * Calls the `GetByName` RPC.
562
+ * Retrieves an allocation by its name within a specified parent.
563
+ *
472
564
  */
473
565
  getByName(request: GetAllocationByNameRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetAllocationByNameRequest, Allocation>;
474
566
  /**
475
- * Calls the `List` RPC.
567
+ * Lists allocations within a specified parent.
568
+ *
476
569
  */
477
570
  list(request: ListAllocationsRequest): SDKRequestClass<ListAllocationsRequest, ListAllocationsResponse>;
478
571
  /**
479
- * Calls the `List` RPC.
572
+ * Lists allocations within a specified parent.
573
+ *
480
574
  */
481
575
  list(request: ListAllocationsRequest, metadata: Metadata): SDKRequestClass<ListAllocationsRequest, ListAllocationsResponse>;
482
576
  /**
483
- * Calls the `List` RPC.
577
+ * Lists allocations within a specified parent.
578
+ *
484
579
  */
485
580
  list(request: ListAllocationsRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListAllocationsRequest, ListAllocationsResponse>;
486
581
  /**
487
- * Calls the `ListByPool` RPC.
582
+ * Lists allocations from a specified pool.
583
+ *
488
584
  */
489
585
  listByPool(request: ListAllocationsByPoolRequest): SDKRequestClass<ListAllocationsByPoolRequest, ListAllocationsResponse>;
490
586
  /**
491
- * Calls the `ListByPool` RPC.
587
+ * Lists allocations from a specified pool.
588
+ *
492
589
  */
493
590
  listByPool(request: ListAllocationsByPoolRequest, metadata: Metadata): SDKRequestClass<ListAllocationsByPoolRequest, ListAllocationsResponse>;
494
591
  /**
495
- * Calls the `ListByPool` RPC.
592
+ * Lists allocations from a specified pool.
593
+ *
496
594
  */
497
595
  listByPool(request: ListAllocationsByPoolRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListAllocationsByPoolRequest, ListAllocationsResponse>;
498
596
  /**
499
- * Calls the `ListBySubnet` RPC.
597
+ * Lists allocations available to a specified subnet, including unassigned allocations from compatible pools.
598
+ *
500
599
  */
501
600
  listBySubnet(request: ListAllocationsBySubnetRequest): SDKRequestClass<ListAllocationsBySubnetRequest, ListAllocationsResponse>;
502
601
  /**
503
- * Calls the `ListBySubnet` RPC.
602
+ * Lists allocations available to a specified subnet, including unassigned allocations from compatible pools.
603
+ *
504
604
  */
505
605
  listBySubnet(request: ListAllocationsBySubnetRequest, metadata: Metadata): SDKRequestClass<ListAllocationsBySubnetRequest, ListAllocationsResponse>;
506
606
  /**
507
- * Calls the `ListBySubnet` RPC.
607
+ * Lists allocations available to a specified subnet, including unassigned allocations from compatible pools.
608
+ *
508
609
  */
509
610
  listBySubnet(request: ListAllocationsBySubnetRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListAllocationsBySubnetRequest, ListAllocationsResponse>;
510
611
  /**
511
- * Calls the `Create` RPC.
612
+ * Creates a new allocation with the specified configuration.
613
+ *
512
614
  */
513
615
  create(request: CreateAllocationRequest): SDKRequestClass<CreateAllocationRequest, OperationWrapper<GetOperationRequest>>;
514
616
  /**
515
- * Calls the `Create` RPC.
617
+ * Creates a new allocation with the specified configuration.
618
+ *
516
619
  */
517
620
  create(request: CreateAllocationRequest, metadata: Metadata): SDKRequestClass<CreateAllocationRequest, OperationWrapper<GetOperationRequest>>;
518
621
  /**
519
- * Calls the `Create` RPC.
622
+ * Creates a new allocation with the specified configuration.
623
+ *
520
624
  */
521
625
  create(request: CreateAllocationRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreateAllocationRequest, OperationWrapper<GetOperationRequest>>;
522
626
  /**
523
- * Calls the `Update` RPC.
627
+ * Updates an existing allocation with new configuration parameters.
628
+ *
524
629
  */
525
630
  update(request: UpdateAllocationRequest): SDKRequestClass<UpdateAllocationRequest, OperationWrapper<GetOperationRequest>>;
526
631
  /**
527
- * Calls the `Update` RPC.
632
+ * Updates an existing allocation with new configuration parameters.
633
+ *
528
634
  */
529
635
  update(request: UpdateAllocationRequest, metadata: Metadata): SDKRequestClass<UpdateAllocationRequest, OperationWrapper<GetOperationRequest>>;
530
636
  /**
531
- * Calls the `Update` RPC.
637
+ * Updates an existing allocation with new configuration parameters.
638
+ *
532
639
  */
533
640
  update(request: UpdateAllocationRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdateAllocationRequest, OperationWrapper<GetOperationRequest>>;
534
641
  /**
535
- * Calls the `Delete` RPC.
642
+ * Deletes an allocation by its ID.
643
+ *
536
644
  */
537
645
  delete(request: DeleteAllocationRequest): SDKRequestClass<DeleteAllocationRequest, OperationWrapper<GetOperationRequest>>;
538
646
  /**
539
- * Calls the `Delete` RPC.
647
+ * Deletes an allocation by its ID.
648
+ *
540
649
  */
541
650
  delete(request: DeleteAllocationRequest, metadata: Metadata): SDKRequestClass<DeleteAllocationRequest, OperationWrapper<GetOperationRequest>>;
542
651
  /**
543
- * Calls the `Delete` RPC.
652
+ * Deletes an allocation by its ID.
653
+ *
544
654
  */
545
655
  delete(request: DeleteAllocationRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<DeleteAllocationRequest, OperationWrapper<GetOperationRequest>>;
546
656
  }
@@ -865,7 +975,10 @@ export interface GetNetworkRequest {
865
975
  [unknownFieldsSymbol]?: Uint8Array | undefined;
866
976
  /** Returns a safe value for JSON logs. */
867
977
  [customJson]?: () => unknown;
868
- /** Contains the `id` protobuf field. */
978
+ /**
979
+ * ID of the network.
980
+ *
981
+ */
869
982
  id: string;
870
983
  }
871
984
  /** Encodes, decodes, converts, and creates {@link GetNetworkRequest} messages. */
@@ -879,11 +992,14 @@ export interface GetNetworkByNameRequest {
879
992
  /** Returns a safe value for JSON logs. */
880
993
  [customJson]?: () => unknown;
881
994
  /**
882
- * ID of the project.
995
+ * ID of the parent project.
883
996
  *
884
997
  */
885
998
  parentId: string;
886
- /** Contains the `name` protobuf field. */
999
+ /**
1000
+ * Name of the network.
1001
+ *
1002
+ */
887
1003
  name: string;
888
1004
  }
889
1005
  /** Encodes, decodes, converts, and creates {@link GetNetworkByNameRequest} messages. */
@@ -897,13 +1013,19 @@ export interface ListNetworksRequest {
897
1013
  /** Returns a safe value for JSON logs. */
898
1014
  [customJson]?: () => unknown;
899
1015
  /**
900
- * ID of the project.
1016
+ * ID of the parent project.
901
1017
  *
902
1018
  */
903
1019
  parentId: string;
904
- /** Contains the `page_size` protobuf field. */
1020
+ /**
1021
+ * Maximum number of networks to return.
1022
+ *
1023
+ */
905
1024
  pageSize: Long;
906
- /** Contains the `page_token` protobuf field. */
1025
+ /**
1026
+ * Token to retrieve the next page of networks.
1027
+ *
1028
+ */
907
1029
  pageToken: string;
908
1030
  }
909
1031
  /** Encodes, decodes, converts, and creates {@link ListNetworksRequest} messages. */
@@ -931,9 +1053,15 @@ export interface CreateNetworkRequest {
931
1053
  [unknownFieldsSymbol]?: Uint8Array | undefined;
932
1054
  /** Returns a safe value for JSON logs. */
933
1055
  [customJson]?: () => unknown;
934
- /** Contains the `metadata` protobuf field. */
1056
+ /**
1057
+ * Metadata of the network.
1058
+ *
1059
+ */
935
1060
  metadata?: ResourceMetadata | undefined;
936
- /** Contains the `spec` protobuf field. */
1061
+ /**
1062
+ * Specification of the network.
1063
+ *
1064
+ */
937
1065
  spec?: NetworkSpec | undefined;
938
1066
  }
939
1067
  /** Encodes, decodes, converts, and creates {@link CreateNetworkRequest} messages. */
@@ -946,7 +1074,10 @@ export interface CreateDefaultNetworkRequest {
946
1074
  [unknownFieldsSymbol]?: Uint8Array | undefined;
947
1075
  /** Returns a safe value for JSON logs. */
948
1076
  [customJson]?: () => unknown;
949
- /** Contains the `metadata` protobuf field. */
1077
+ /**
1078
+ * Metadata of the default network.
1079
+ *
1080
+ */
950
1081
  metadata?: ResourceMetadata | undefined;
951
1082
  }
952
1083
  /** Encodes, decodes, converts, and creates {@link CreateDefaultNetworkRequest} messages. */
@@ -959,9 +1090,15 @@ export interface UpdateNetworkRequest {
959
1090
  [unknownFieldsSymbol]?: Uint8Array | undefined;
960
1091
  /** Returns a safe value for JSON logs. */
961
1092
  [customJson]?: () => unknown;
962
- /** Contains the `metadata` protobuf field. */
1093
+ /**
1094
+ * Updated metadata of the network.
1095
+ *
1096
+ */
963
1097
  metadata?: ResourceMetadata | undefined;
964
- /** Contains the `spec` protobuf field. */
1098
+ /**
1099
+ * Updated specification of the network.
1100
+ *
1101
+ */
965
1102
  spec?: NetworkSpec | undefined;
966
1103
  }
967
1104
  /** Encodes, decodes, converts, and creates {@link UpdateNetworkRequest} messages. */
@@ -974,7 +1111,10 @@ export interface DeleteNetworkRequest {
974
1111
  [unknownFieldsSymbol]?: Uint8Array | undefined;
975
1112
  /** Returns a safe value for JSON logs. */
976
1113
  [customJson]?: () => unknown;
977
- /** Contains the `id` protobuf field. */
1114
+ /**
1115
+ * ID of the network.
1116
+ *
1117
+ */
978
1118
  id: string;
979
1119
  }
980
1120
  /** Encodes, decodes, converts, and creates {@link DeleteNetworkRequest} messages. */
@@ -1070,31 +1210,39 @@ export declare const NetworkServiceServiceDescription: {
1070
1210
  */
1071
1211
  export interface NetworkServiceServer extends UntypedServiceImplementation {
1072
1212
  /**
1073
- * Handles the `Get` RPC.
1213
+ * Retrieves a network by its ID.
1214
+ *
1074
1215
  */
1075
1216
  get: handleUnaryCall<GetNetworkRequest, Network>;
1076
1217
  /**
1077
- * Handles the `GetByName` RPC.
1218
+ * Retrieves a network by its name within a specified parent.
1219
+ *
1078
1220
  */
1079
1221
  getByName: handleUnaryCall<GetNetworkByNameRequest, Network>;
1080
1222
  /**
1081
- * Handles the `List` RPC.
1223
+ * Lists networks within a specified parent.
1224
+ *
1082
1225
  */
1083
1226
  list: handleUnaryCall<ListNetworksRequest, ListNetworksResponse>;
1084
1227
  /**
1085
- * Handles the `Create` RPC.
1228
+ * Creates a new network with the specified configuration.
1229
+ *
1086
1230
  */
1087
1231
  create: handleUnaryCall<CreateNetworkRequest, Operation>;
1088
1232
  /**
1089
- * Handles the `CreateDefault` RPC.
1233
+ * Creates a default network, subnet, pools, and route table for a specified project.
1234
+ * Creates a default security group when that feature is enabled for the project.
1235
+ *
1090
1236
  */
1091
1237
  createDefault: handleUnaryCall<CreateDefaultNetworkRequest, Operation>;
1092
1238
  /**
1093
- * Handles the `Update` RPC.
1239
+ * Updates an existing network with new configuration parameters.
1240
+ *
1094
1241
  */
1095
1242
  update: handleUnaryCall<UpdateNetworkRequest, Operation>;
1096
1243
  /**
1097
- * Handles the `Delete` RPC.
1244
+ * Deletes a network by its ID.
1245
+ *
1098
1246
  */
1099
1247
  delete: handleUnaryCall<DeleteNetworkRequest, Operation>;
1100
1248
  }
@@ -1103,31 +1251,39 @@ export interface NetworkServiceServer extends UntypedServiceImplementation {
1103
1251
  */
1104
1252
  export interface NetworkServiceBaseClient extends Client {
1105
1253
  /**
1106
- * Calls the `Get` RPC.
1254
+ * Retrieves a network by its ID.
1255
+ *
1107
1256
  */
1108
1257
  get(request: GetNetworkRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Network) => void): ClientUnaryCall;
1109
1258
  /**
1110
- * Calls the `GetByName` RPC.
1259
+ * Retrieves a network by its name within a specified parent.
1260
+ *
1111
1261
  */
1112
1262
  getByName(request: GetNetworkByNameRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Network) => void): ClientUnaryCall;
1113
1263
  /**
1114
- * Calls the `List` RPC.
1264
+ * Lists networks within a specified parent.
1265
+ *
1115
1266
  */
1116
1267
  list(request: ListNetworksRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: ListNetworksResponse) => void): ClientUnaryCall;
1117
1268
  /**
1118
- * Calls the `Create` RPC.
1269
+ * Creates a new network with the specified configuration.
1270
+ *
1119
1271
  */
1120
1272
  create(request: CreateNetworkRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
1121
1273
  /**
1122
- * Calls the `CreateDefault` RPC.
1274
+ * Creates a default network, subnet, pools, and route table for a specified project.
1275
+ * Creates a default security group when that feature is enabled for the project.
1276
+ *
1123
1277
  */
1124
1278
  createDefault(request: CreateDefaultNetworkRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
1125
1279
  /**
1126
- * Calls the `Update` RPC.
1280
+ * Updates an existing network with new configuration parameters.
1281
+ *
1127
1282
  */
1128
1283
  update(request: UpdateNetworkRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
1129
1284
  /**
1130
- * Calls the `Delete` RPC.
1285
+ * Deletes a network by its ID.
1286
+ *
1131
1287
  */
1132
1288
  delete(request: DeleteNetworkRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
1133
1289
  }
@@ -1143,93 +1299,118 @@ export declare const NetworkServiceBaseClient: {
1143
1299
  serviceName: string;
1144
1300
  };
1145
1301
  /**
1146
- * Calls the `nebius.vpc.v1.NetworkService` service.
1302
+ * NetworkService provides operations for managing networks.
1303
+ *
1147
1304
  */
1148
1305
  export interface NetworkService {
1149
1306
  /** Contains the fully qualified protobuf service name. */
1150
1307
  $type: "nebius.vpc.v1.NetworkService";
1151
1308
  /**
1152
- * Calls the `Get` RPC.
1309
+ * Retrieves a network by its ID.
1310
+ *
1153
1311
  */
1154
1312
  get(request: GetNetworkRequest): SDKRequestClass<GetNetworkRequest, Network>;
1155
1313
  /**
1156
- * Calls the `Get` RPC.
1314
+ * Retrieves a network by its ID.
1315
+ *
1157
1316
  */
1158
1317
  get(request: GetNetworkRequest, metadata: Metadata): SDKRequestClass<GetNetworkRequest, Network>;
1159
1318
  /**
1160
- * Calls the `Get` RPC.
1319
+ * Retrieves a network by its ID.
1320
+ *
1161
1321
  */
1162
1322
  get(request: GetNetworkRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetNetworkRequest, Network>;
1163
1323
  /**
1164
- * Calls the `GetByName` RPC.
1324
+ * Retrieves a network by its name within a specified parent.
1325
+ *
1165
1326
  */
1166
1327
  getByName(request: GetNetworkByNameRequest): SDKRequestClass<GetNetworkByNameRequest, Network>;
1167
1328
  /**
1168
- * Calls the `GetByName` RPC.
1329
+ * Retrieves a network by its name within a specified parent.
1330
+ *
1169
1331
  */
1170
1332
  getByName(request: GetNetworkByNameRequest, metadata: Metadata): SDKRequestClass<GetNetworkByNameRequest, Network>;
1171
1333
  /**
1172
- * Calls the `GetByName` RPC.
1334
+ * Retrieves a network by its name within a specified parent.
1335
+ *
1173
1336
  */
1174
1337
  getByName(request: GetNetworkByNameRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetNetworkByNameRequest, Network>;
1175
1338
  /**
1176
- * Calls the `List` RPC.
1339
+ * Lists networks within a specified parent.
1340
+ *
1177
1341
  */
1178
1342
  list(request: ListNetworksRequest): SDKRequestClass<ListNetworksRequest, ListNetworksResponse>;
1179
1343
  /**
1180
- * Calls the `List` RPC.
1344
+ * Lists networks within a specified parent.
1345
+ *
1181
1346
  */
1182
1347
  list(request: ListNetworksRequest, metadata: Metadata): SDKRequestClass<ListNetworksRequest, ListNetworksResponse>;
1183
1348
  /**
1184
- * Calls the `List` RPC.
1349
+ * Lists networks within a specified parent.
1350
+ *
1185
1351
  */
1186
1352
  list(request: ListNetworksRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListNetworksRequest, ListNetworksResponse>;
1187
1353
  /**
1188
- * Calls the `Create` RPC.
1354
+ * Creates a new network with the specified configuration.
1355
+ *
1189
1356
  */
1190
1357
  create(request: CreateNetworkRequest): SDKRequestClass<CreateNetworkRequest, OperationWrapper<GetOperationRequest>>;
1191
1358
  /**
1192
- * Calls the `Create` RPC.
1359
+ * Creates a new network with the specified configuration.
1360
+ *
1193
1361
  */
1194
1362
  create(request: CreateNetworkRequest, metadata: Metadata): SDKRequestClass<CreateNetworkRequest, OperationWrapper<GetOperationRequest>>;
1195
1363
  /**
1196
- * Calls the `Create` RPC.
1364
+ * Creates a new network with the specified configuration.
1365
+ *
1197
1366
  */
1198
1367
  create(request: CreateNetworkRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreateNetworkRequest, OperationWrapper<GetOperationRequest>>;
1199
1368
  /**
1200
- * Calls the `CreateDefault` RPC.
1369
+ * Creates a default network, subnet, pools, and route table for a specified project.
1370
+ * Creates a default security group when that feature is enabled for the project.
1371
+ *
1201
1372
  */
1202
1373
  createDefault(request: CreateDefaultNetworkRequest): SDKRequestClass<CreateDefaultNetworkRequest, OperationWrapper<GetOperationRequest>>;
1203
1374
  /**
1204
- * Calls the `CreateDefault` RPC.
1375
+ * Creates a default network, subnet, pools, and route table for a specified project.
1376
+ * Creates a default security group when that feature is enabled for the project.
1377
+ *
1205
1378
  */
1206
1379
  createDefault(request: CreateDefaultNetworkRequest, metadata: Metadata): SDKRequestClass<CreateDefaultNetworkRequest, OperationWrapper<GetOperationRequest>>;
1207
1380
  /**
1208
- * Calls the `CreateDefault` RPC.
1381
+ * Creates a default network, subnet, pools, and route table for a specified project.
1382
+ * Creates a default security group when that feature is enabled for the project.
1383
+ *
1209
1384
  */
1210
1385
  createDefault(request: CreateDefaultNetworkRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreateDefaultNetworkRequest, OperationWrapper<GetOperationRequest>>;
1211
1386
  /**
1212
- * Calls the `Update` RPC.
1387
+ * Updates an existing network with new configuration parameters.
1388
+ *
1213
1389
  */
1214
1390
  update(request: UpdateNetworkRequest): SDKRequestClass<UpdateNetworkRequest, OperationWrapper<GetOperationRequest>>;
1215
1391
  /**
1216
- * Calls the `Update` RPC.
1392
+ * Updates an existing network with new configuration parameters.
1393
+ *
1217
1394
  */
1218
1395
  update(request: UpdateNetworkRequest, metadata: Metadata): SDKRequestClass<UpdateNetworkRequest, OperationWrapper<GetOperationRequest>>;
1219
1396
  /**
1220
- * Calls the `Update` RPC.
1397
+ * Updates an existing network with new configuration parameters.
1398
+ *
1221
1399
  */
1222
1400
  update(request: UpdateNetworkRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdateNetworkRequest, OperationWrapper<GetOperationRequest>>;
1223
1401
  /**
1224
- * Calls the `Delete` RPC.
1402
+ * Deletes a network by its ID.
1403
+ *
1225
1404
  */
1226
1405
  delete(request: DeleteNetworkRequest): SDKRequestClass<DeleteNetworkRequest, OperationWrapper<GetOperationRequest>>;
1227
1406
  /**
1228
- * Calls the `Delete` RPC.
1407
+ * Deletes a network by its ID.
1408
+ *
1229
1409
  */
1230
1410
  delete(request: DeleteNetworkRequest, metadata: Metadata): SDKRequestClass<DeleteNetworkRequest, OperationWrapper<GetOperationRequest>>;
1231
1411
  /**
1232
- * Calls the `Delete` RPC.
1412
+ * Deletes a network by its ID.
1413
+ *
1233
1414
  */
1234
1415
  delete(request: DeleteNetworkRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<DeleteNetworkRequest, OperationWrapper<GetOperationRequest>>;
1235
1416
  }
@@ -1247,87 +1428,111 @@ export declare class NetworkService implements NetworkService {
1247
1428
  /** Returns the operation service for this service address. */
1248
1429
  getOperationService(): OperationService;
1249
1430
  /**
1250
- * Calls the `Get` RPC.
1431
+ * Retrieves a network by its ID.
1432
+ *
1251
1433
  */
1252
1434
  get(request: GetNetworkRequest): SDKRequestClass<GetNetworkRequest, Network>;
1253
1435
  /**
1254
- * Calls the `Get` RPC.
1436
+ * Retrieves a network by its ID.
1437
+ *
1255
1438
  */
1256
1439
  get(request: GetNetworkRequest, metadata: Metadata): SDKRequestClass<GetNetworkRequest, Network>;
1257
1440
  /**
1258
- * Calls the `Get` RPC.
1441
+ * Retrieves a network by its ID.
1442
+ *
1259
1443
  */
1260
1444
  get(request: GetNetworkRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetNetworkRequest, Network>;
1261
1445
  /**
1262
- * Calls the `GetByName` RPC.
1446
+ * Retrieves a network by its name within a specified parent.
1447
+ *
1263
1448
  */
1264
1449
  getByName(request: GetNetworkByNameRequest): SDKRequestClass<GetNetworkByNameRequest, Network>;
1265
1450
  /**
1266
- * Calls the `GetByName` RPC.
1451
+ * Retrieves a network by its name within a specified parent.
1452
+ *
1267
1453
  */
1268
1454
  getByName(request: GetNetworkByNameRequest, metadata: Metadata): SDKRequestClass<GetNetworkByNameRequest, Network>;
1269
1455
  /**
1270
- * Calls the `GetByName` RPC.
1456
+ * Retrieves a network by its name within a specified parent.
1457
+ *
1271
1458
  */
1272
1459
  getByName(request: GetNetworkByNameRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetNetworkByNameRequest, Network>;
1273
1460
  /**
1274
- * Calls the `List` RPC.
1461
+ * Lists networks within a specified parent.
1462
+ *
1275
1463
  */
1276
1464
  list(request: ListNetworksRequest): SDKRequestClass<ListNetworksRequest, ListNetworksResponse>;
1277
1465
  /**
1278
- * Calls the `List` RPC.
1466
+ * Lists networks within a specified parent.
1467
+ *
1279
1468
  */
1280
1469
  list(request: ListNetworksRequest, metadata: Metadata): SDKRequestClass<ListNetworksRequest, ListNetworksResponse>;
1281
1470
  /**
1282
- * Calls the `List` RPC.
1471
+ * Lists networks within a specified parent.
1472
+ *
1283
1473
  */
1284
1474
  list(request: ListNetworksRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListNetworksRequest, ListNetworksResponse>;
1285
1475
  /**
1286
- * Calls the `Create` RPC.
1476
+ * Creates a new network with the specified configuration.
1477
+ *
1287
1478
  */
1288
1479
  create(request: CreateNetworkRequest): SDKRequestClass<CreateNetworkRequest, OperationWrapper<GetOperationRequest>>;
1289
1480
  /**
1290
- * Calls the `Create` RPC.
1481
+ * Creates a new network with the specified configuration.
1482
+ *
1291
1483
  */
1292
1484
  create(request: CreateNetworkRequest, metadata: Metadata): SDKRequestClass<CreateNetworkRequest, OperationWrapper<GetOperationRequest>>;
1293
1485
  /**
1294
- * Calls the `Create` RPC.
1486
+ * Creates a new network with the specified configuration.
1487
+ *
1295
1488
  */
1296
1489
  create(request: CreateNetworkRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreateNetworkRequest, OperationWrapper<GetOperationRequest>>;
1297
1490
  /**
1298
- * Calls the `CreateDefault` RPC.
1491
+ * Creates a default network, subnet, pools, and route table for a specified project.
1492
+ * Creates a default security group when that feature is enabled for the project.
1493
+ *
1299
1494
  */
1300
1495
  createDefault(request: CreateDefaultNetworkRequest): SDKRequestClass<CreateDefaultNetworkRequest, OperationWrapper<GetOperationRequest>>;
1301
1496
  /**
1302
- * Calls the `CreateDefault` RPC.
1497
+ * Creates a default network, subnet, pools, and route table for a specified project.
1498
+ * Creates a default security group when that feature is enabled for the project.
1499
+ *
1303
1500
  */
1304
1501
  createDefault(request: CreateDefaultNetworkRequest, metadata: Metadata): SDKRequestClass<CreateDefaultNetworkRequest, OperationWrapper<GetOperationRequest>>;
1305
1502
  /**
1306
- * Calls the `CreateDefault` RPC.
1503
+ * Creates a default network, subnet, pools, and route table for a specified project.
1504
+ * Creates a default security group when that feature is enabled for the project.
1505
+ *
1307
1506
  */
1308
1507
  createDefault(request: CreateDefaultNetworkRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreateDefaultNetworkRequest, OperationWrapper<GetOperationRequest>>;
1309
1508
  /**
1310
- * Calls the `Update` RPC.
1509
+ * Updates an existing network with new configuration parameters.
1510
+ *
1311
1511
  */
1312
1512
  update(request: UpdateNetworkRequest): SDKRequestClass<UpdateNetworkRequest, OperationWrapper<GetOperationRequest>>;
1313
1513
  /**
1314
- * Calls the `Update` RPC.
1514
+ * Updates an existing network with new configuration parameters.
1515
+ *
1315
1516
  */
1316
1517
  update(request: UpdateNetworkRequest, metadata: Metadata): SDKRequestClass<UpdateNetworkRequest, OperationWrapper<GetOperationRequest>>;
1317
1518
  /**
1318
- * Calls the `Update` RPC.
1519
+ * Updates an existing network with new configuration parameters.
1520
+ *
1319
1521
  */
1320
1522
  update(request: UpdateNetworkRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdateNetworkRequest, OperationWrapper<GetOperationRequest>>;
1321
1523
  /**
1322
- * Calls the `Delete` RPC.
1524
+ * Deletes a network by its ID.
1525
+ *
1323
1526
  */
1324
1527
  delete(request: DeleteNetworkRequest): SDKRequestClass<DeleteNetworkRequest, OperationWrapper<GetOperationRequest>>;
1325
1528
  /**
1326
- * Calls the `Delete` RPC.
1529
+ * Deletes a network by its ID.
1530
+ *
1327
1531
  */
1328
1532
  delete(request: DeleteNetworkRequest, metadata: Metadata): SDKRequestClass<DeleteNetworkRequest, OperationWrapper<GetOperationRequest>>;
1329
1533
  /**
1330
- * Calls the `Delete` RPC.
1534
+ * Deletes a network by its ID.
1535
+ *
1331
1536
  */
1332
1537
  delete(request: DeleteNetworkRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<DeleteNetworkRequest, OperationWrapper<GetOperationRequest>>;
1333
1538
  }
@@ -1487,7 +1692,10 @@ export interface GetPoolRequest {
1487
1692
  [unknownFieldsSymbol]?: Uint8Array | undefined;
1488
1693
  /** Returns a safe value for JSON logs. */
1489
1694
  [customJson]?: () => unknown;
1490
- /** Contains the `id` protobuf field. */
1695
+ /**
1696
+ * ID of the pool.
1697
+ *
1698
+ */
1491
1699
  id: string;
1492
1700
  }
1493
1701
  /** Encodes, decodes, converts, and creates {@link GetPoolRequest} messages. */
@@ -1501,11 +1709,14 @@ export interface GetPoolByNameRequest {
1501
1709
  /** Returns a safe value for JSON logs. */
1502
1710
  [customJson]?: () => unknown;
1503
1711
  /**
1504
- * ID of the project.
1712
+ * ID of the parent project.
1505
1713
  *
1506
1714
  */
1507
1715
  parentId: string;
1508
- /** Contains the `name` protobuf field. */
1716
+ /**
1717
+ * Name of the pool.
1718
+ *
1719
+ */
1509
1720
  name: string;
1510
1721
  }
1511
1722
  /** Encodes, decodes, converts, and creates {@link GetPoolByNameRequest} messages. */
@@ -1519,13 +1730,19 @@ export interface ListPoolsRequest {
1519
1730
  /** Returns a safe value for JSON logs. */
1520
1731
  [customJson]?: () => unknown;
1521
1732
  /**
1522
- * ID of the project.
1733
+ * ID of the parent project.
1523
1734
  *
1524
1735
  */
1525
1736
  parentId: string;
1526
- /** Contains the `page_size` protobuf field. */
1737
+ /**
1738
+ * Maximum number of pools to return.
1739
+ *
1740
+ */
1527
1741
  pageSize: Long;
1528
- /** Contains the `page_token` protobuf field. */
1742
+ /**
1743
+ * Token to retrieve the next page of pools.
1744
+ *
1745
+ */
1529
1746
  pageToken: string;
1530
1747
  }
1531
1748
  /** Encodes, decodes, converts, and creates {@link ListPoolsRequest} messages. */
@@ -1538,11 +1755,20 @@ export interface ListPoolsBySourcePoolRequest {
1538
1755
  [unknownFieldsSymbol]?: Uint8Array | undefined;
1539
1756
  /** Returns a safe value for JSON logs. */
1540
1757
  [customJson]?: () => unknown;
1541
- /** Contains the `pool_id` protobuf field. */
1758
+ /**
1759
+ * ID of the source pool.
1760
+ *
1761
+ */
1542
1762
  poolId: string;
1543
- /** Contains the `page_size` protobuf field. */
1763
+ /**
1764
+ * Maximum number of pools to return.
1765
+ *
1766
+ */
1544
1767
  pageSize: Long;
1545
- /** Contains the `page_token` protobuf field. */
1768
+ /**
1769
+ * Token to retrieve the next page of pools.
1770
+ *
1771
+ */
1546
1772
  pageToken: string;
1547
1773
  }
1548
1774
  /** Encodes, decodes, converts, and creates {@link ListPoolsBySourcePoolRequest} messages. */
@@ -1570,9 +1796,15 @@ export interface CreatePoolRequest {
1570
1796
  [unknownFieldsSymbol]?: Uint8Array | undefined;
1571
1797
  /** Returns a safe value for JSON logs. */
1572
1798
  [customJson]?: () => unknown;
1573
- /** Contains the `metadata` protobuf field. */
1799
+ /**
1800
+ * Metadata of the pool.
1801
+ *
1802
+ */
1574
1803
  metadata?: ResourceMetadata | undefined;
1575
- /** Contains the `spec` protobuf field. */
1804
+ /**
1805
+ * Specification of the pool.
1806
+ *
1807
+ */
1576
1808
  spec?: PoolSpec | undefined;
1577
1809
  }
1578
1810
  /** Encodes, decodes, converts, and creates {@link CreatePoolRequest} messages. */
@@ -1585,9 +1817,15 @@ export interface UpdatePoolRequest {
1585
1817
  [unknownFieldsSymbol]?: Uint8Array | undefined;
1586
1818
  /** Returns a safe value for JSON logs. */
1587
1819
  [customJson]?: () => unknown;
1588
- /** Contains the `metadata` protobuf field. */
1820
+ /**
1821
+ * Updated metadata of the pool.
1822
+ *
1823
+ */
1589
1824
  metadata?: ResourceMetadata | undefined;
1590
- /** Contains the `spec` protobuf field. */
1825
+ /**
1826
+ * Updated specification of the pool.
1827
+ *
1828
+ */
1591
1829
  spec?: PoolSpec | undefined;
1592
1830
  }
1593
1831
  /** Encodes, decodes, converts, and creates {@link UpdatePoolRequest} messages. */
@@ -1600,7 +1838,10 @@ export interface DeletePoolRequest {
1600
1838
  [unknownFieldsSymbol]?: Uint8Array | undefined;
1601
1839
  /** Returns a safe value for JSON logs. */
1602
1840
  [customJson]?: () => unknown;
1603
- /** Contains the `id` protobuf field. */
1841
+ /**
1842
+ * ID of the pool.
1843
+ *
1844
+ */
1604
1845
  id: string;
1605
1846
  }
1606
1847
  /** Encodes, decodes, converts, and creates {@link DeletePoolRequest} messages. */
@@ -1696,31 +1937,38 @@ export declare const PoolServiceServiceDescription: {
1696
1937
  */
1697
1938
  export interface PoolServiceServer extends UntypedServiceImplementation {
1698
1939
  /**
1699
- * Handles the `Get` RPC.
1940
+ * Retrieves a pool by its ID.
1941
+ *
1700
1942
  */
1701
1943
  get: handleUnaryCall<GetPoolRequest, Pool>;
1702
1944
  /**
1703
- * Handles the `GetByName` RPC.
1945
+ * Retrieves a pool by its name within a specified parent.
1946
+ *
1704
1947
  */
1705
1948
  getByName: handleUnaryCall<GetPoolByNameRequest, Pool>;
1706
1949
  /**
1707
- * Handles the `List` RPC.
1950
+ * Lists pools within a specified parent.
1951
+ *
1708
1952
  */
1709
1953
  list: handleUnaryCall<ListPoolsRequest, ListPoolsResponse>;
1710
1954
  /**
1711
- * Handles the `ListBySourcePool` RPC.
1955
+ * Lists pools that use a specified pool as their source.
1956
+ *
1712
1957
  */
1713
1958
  listBySourcePool: handleUnaryCall<ListPoolsBySourcePoolRequest, ListPoolsResponse>;
1714
1959
  /**
1715
- * Handles the `Create` RPC.
1960
+ * Creates a new pool with the specified configuration.
1961
+ *
1716
1962
  */
1717
1963
  create: handleUnaryCall<CreatePoolRequest, Operation>;
1718
1964
  /**
1719
- * Handles the `Update` RPC.
1965
+ * Updates an existing pool with new configuration parameters.
1966
+ *
1720
1967
  */
1721
1968
  update: handleUnaryCall<UpdatePoolRequest, Operation>;
1722
1969
  /**
1723
- * Handles the `Delete` RPC.
1970
+ * Deletes a pool by its ID.
1971
+ *
1724
1972
  */
1725
1973
  delete: handleUnaryCall<DeletePoolRequest, Operation>;
1726
1974
  }
@@ -1729,31 +1977,38 @@ export interface PoolServiceServer extends UntypedServiceImplementation {
1729
1977
  */
1730
1978
  export interface PoolServiceBaseClient extends Client {
1731
1979
  /**
1732
- * Calls the `Get` RPC.
1980
+ * Retrieves a pool by its ID.
1981
+ *
1733
1982
  */
1734
1983
  get(request: GetPoolRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Pool) => void): ClientUnaryCall;
1735
1984
  /**
1736
- * Calls the `GetByName` RPC.
1985
+ * Retrieves a pool by its name within a specified parent.
1986
+ *
1737
1987
  */
1738
1988
  getByName(request: GetPoolByNameRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Pool) => void): ClientUnaryCall;
1739
1989
  /**
1740
- * Calls the `List` RPC.
1990
+ * Lists pools within a specified parent.
1991
+ *
1741
1992
  */
1742
1993
  list(request: ListPoolsRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: ListPoolsResponse) => void): ClientUnaryCall;
1743
1994
  /**
1744
- * Calls the `ListBySourcePool` RPC.
1995
+ * Lists pools that use a specified pool as their source.
1996
+ *
1745
1997
  */
1746
1998
  listBySourcePool(request: ListPoolsBySourcePoolRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: ListPoolsResponse) => void): ClientUnaryCall;
1747
1999
  /**
1748
- * Calls the `Create` RPC.
2000
+ * Creates a new pool with the specified configuration.
2001
+ *
1749
2002
  */
1750
2003
  create(request: CreatePoolRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
1751
2004
  /**
1752
- * Calls the `Update` RPC.
2005
+ * Updates an existing pool with new configuration parameters.
2006
+ *
1753
2007
  */
1754
2008
  update(request: UpdatePoolRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
1755
2009
  /**
1756
- * Calls the `Delete` RPC.
2010
+ * Deletes a pool by its ID.
2011
+ *
1757
2012
  */
1758
2013
  delete(request: DeletePoolRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
1759
2014
  }
@@ -1769,93 +2024,115 @@ export declare const PoolServiceBaseClient: {
1769
2024
  serviceName: string;
1770
2025
  };
1771
2026
  /**
1772
- * Calls the `nebius.vpc.v1.PoolService` service.
2027
+ * PoolService provides operations for managing pools.
2028
+ *
1773
2029
  */
1774
2030
  export interface PoolService {
1775
2031
  /** Contains the fully qualified protobuf service name. */
1776
2032
  $type: "nebius.vpc.v1.PoolService";
1777
2033
  /**
1778
- * Calls the `Get` RPC.
2034
+ * Retrieves a pool by its ID.
2035
+ *
1779
2036
  */
1780
2037
  get(request: GetPoolRequest): SDKRequestClass<GetPoolRequest, Pool>;
1781
2038
  /**
1782
- * Calls the `Get` RPC.
2039
+ * Retrieves a pool by its ID.
2040
+ *
1783
2041
  */
1784
2042
  get(request: GetPoolRequest, metadata: Metadata): SDKRequestClass<GetPoolRequest, Pool>;
1785
2043
  /**
1786
- * Calls the `Get` RPC.
2044
+ * Retrieves a pool by its ID.
2045
+ *
1787
2046
  */
1788
2047
  get(request: GetPoolRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetPoolRequest, Pool>;
1789
2048
  /**
1790
- * Calls the `GetByName` RPC.
2049
+ * Retrieves a pool by its name within a specified parent.
2050
+ *
1791
2051
  */
1792
2052
  getByName(request: GetPoolByNameRequest): SDKRequestClass<GetPoolByNameRequest, Pool>;
1793
2053
  /**
1794
- * Calls the `GetByName` RPC.
2054
+ * Retrieves a pool by its name within a specified parent.
2055
+ *
1795
2056
  */
1796
2057
  getByName(request: GetPoolByNameRequest, metadata: Metadata): SDKRequestClass<GetPoolByNameRequest, Pool>;
1797
2058
  /**
1798
- * Calls the `GetByName` RPC.
2059
+ * Retrieves a pool by its name within a specified parent.
2060
+ *
1799
2061
  */
1800
2062
  getByName(request: GetPoolByNameRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetPoolByNameRequest, Pool>;
1801
2063
  /**
1802
- * Calls the `List` RPC.
2064
+ * Lists pools within a specified parent.
2065
+ *
1803
2066
  */
1804
2067
  list(request: ListPoolsRequest): SDKRequestClass<ListPoolsRequest, ListPoolsResponse>;
1805
2068
  /**
1806
- * Calls the `List` RPC.
2069
+ * Lists pools within a specified parent.
2070
+ *
1807
2071
  */
1808
2072
  list(request: ListPoolsRequest, metadata: Metadata): SDKRequestClass<ListPoolsRequest, ListPoolsResponse>;
1809
2073
  /**
1810
- * Calls the `List` RPC.
2074
+ * Lists pools within a specified parent.
2075
+ *
1811
2076
  */
1812
2077
  list(request: ListPoolsRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListPoolsRequest, ListPoolsResponse>;
1813
2078
  /**
1814
- * Calls the `ListBySourcePool` RPC.
2079
+ * Lists pools that use a specified pool as their source.
2080
+ *
1815
2081
  */
1816
2082
  listBySourcePool(request: ListPoolsBySourcePoolRequest): SDKRequestClass<ListPoolsBySourcePoolRequest, ListPoolsResponse>;
1817
2083
  /**
1818
- * Calls the `ListBySourcePool` RPC.
2084
+ * Lists pools that use a specified pool as their source.
2085
+ *
1819
2086
  */
1820
2087
  listBySourcePool(request: ListPoolsBySourcePoolRequest, metadata: Metadata): SDKRequestClass<ListPoolsBySourcePoolRequest, ListPoolsResponse>;
1821
2088
  /**
1822
- * Calls the `ListBySourcePool` RPC.
2089
+ * Lists pools that use a specified pool as their source.
2090
+ *
1823
2091
  */
1824
2092
  listBySourcePool(request: ListPoolsBySourcePoolRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListPoolsBySourcePoolRequest, ListPoolsResponse>;
1825
2093
  /**
1826
- * Calls the `Create` RPC.
2094
+ * Creates a new pool with the specified configuration.
2095
+ *
1827
2096
  */
1828
2097
  create(request: CreatePoolRequest): SDKRequestClass<CreatePoolRequest, OperationWrapper<GetOperationRequest>>;
1829
2098
  /**
1830
- * Calls the `Create` RPC.
2099
+ * Creates a new pool with the specified configuration.
2100
+ *
1831
2101
  */
1832
2102
  create(request: CreatePoolRequest, metadata: Metadata): SDKRequestClass<CreatePoolRequest, OperationWrapper<GetOperationRequest>>;
1833
2103
  /**
1834
- * Calls the `Create` RPC.
2104
+ * Creates a new pool with the specified configuration.
2105
+ *
1835
2106
  */
1836
2107
  create(request: CreatePoolRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreatePoolRequest, OperationWrapper<GetOperationRequest>>;
1837
2108
  /**
1838
- * Calls the `Update` RPC.
2109
+ * Updates an existing pool with new configuration parameters.
2110
+ *
1839
2111
  */
1840
2112
  update(request: UpdatePoolRequest): SDKRequestClass<UpdatePoolRequest, OperationWrapper<GetOperationRequest>>;
1841
2113
  /**
1842
- * Calls the `Update` RPC.
2114
+ * Updates an existing pool with new configuration parameters.
2115
+ *
1843
2116
  */
1844
2117
  update(request: UpdatePoolRequest, metadata: Metadata): SDKRequestClass<UpdatePoolRequest, OperationWrapper<GetOperationRequest>>;
1845
2118
  /**
1846
- * Calls the `Update` RPC.
2119
+ * Updates an existing pool with new configuration parameters.
2120
+ *
1847
2121
  */
1848
2122
  update(request: UpdatePoolRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdatePoolRequest, OperationWrapper<GetOperationRequest>>;
1849
2123
  /**
1850
- * Calls the `Delete` RPC.
2124
+ * Deletes a pool by its ID.
2125
+ *
1851
2126
  */
1852
2127
  delete(request: DeletePoolRequest): SDKRequestClass<DeletePoolRequest, OperationWrapper<GetOperationRequest>>;
1853
2128
  /**
1854
- * Calls the `Delete` RPC.
2129
+ * Deletes a pool by its ID.
2130
+ *
1855
2131
  */
1856
2132
  delete(request: DeletePoolRequest, metadata: Metadata): SDKRequestClass<DeletePoolRequest, OperationWrapper<GetOperationRequest>>;
1857
2133
  /**
1858
- * Calls the `Delete` RPC.
2134
+ * Deletes a pool by its ID.
2135
+ *
1859
2136
  */
1860
2137
  delete(request: DeletePoolRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<DeletePoolRequest, OperationWrapper<GetOperationRequest>>;
1861
2138
  }
@@ -1873,87 +2150,108 @@ export declare class PoolService implements PoolService {
1873
2150
  /** Returns the operation service for this service address. */
1874
2151
  getOperationService(): OperationService;
1875
2152
  /**
1876
- * Calls the `Get` RPC.
2153
+ * Retrieves a pool by its ID.
2154
+ *
1877
2155
  */
1878
2156
  get(request: GetPoolRequest): SDKRequestClass<GetPoolRequest, Pool>;
1879
2157
  /**
1880
- * Calls the `Get` RPC.
2158
+ * Retrieves a pool by its ID.
2159
+ *
1881
2160
  */
1882
2161
  get(request: GetPoolRequest, metadata: Metadata): SDKRequestClass<GetPoolRequest, Pool>;
1883
2162
  /**
1884
- * Calls the `Get` RPC.
2163
+ * Retrieves a pool by its ID.
2164
+ *
1885
2165
  */
1886
2166
  get(request: GetPoolRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetPoolRequest, Pool>;
1887
2167
  /**
1888
- * Calls the `GetByName` RPC.
2168
+ * Retrieves a pool by its name within a specified parent.
2169
+ *
1889
2170
  */
1890
2171
  getByName(request: GetPoolByNameRequest): SDKRequestClass<GetPoolByNameRequest, Pool>;
1891
2172
  /**
1892
- * Calls the `GetByName` RPC.
2173
+ * Retrieves a pool by its name within a specified parent.
2174
+ *
1893
2175
  */
1894
2176
  getByName(request: GetPoolByNameRequest, metadata: Metadata): SDKRequestClass<GetPoolByNameRequest, Pool>;
1895
2177
  /**
1896
- * Calls the `GetByName` RPC.
2178
+ * Retrieves a pool by its name within a specified parent.
2179
+ *
1897
2180
  */
1898
2181
  getByName(request: GetPoolByNameRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetPoolByNameRequest, Pool>;
1899
2182
  /**
1900
- * Calls the `List` RPC.
2183
+ * Lists pools within a specified parent.
2184
+ *
1901
2185
  */
1902
2186
  list(request: ListPoolsRequest): SDKRequestClass<ListPoolsRequest, ListPoolsResponse>;
1903
2187
  /**
1904
- * Calls the `List` RPC.
2188
+ * Lists pools within a specified parent.
2189
+ *
1905
2190
  */
1906
2191
  list(request: ListPoolsRequest, metadata: Metadata): SDKRequestClass<ListPoolsRequest, ListPoolsResponse>;
1907
2192
  /**
1908
- * Calls the `List` RPC.
2193
+ * Lists pools within a specified parent.
2194
+ *
1909
2195
  */
1910
2196
  list(request: ListPoolsRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListPoolsRequest, ListPoolsResponse>;
1911
2197
  /**
1912
- * Calls the `ListBySourcePool` RPC.
2198
+ * Lists pools that use a specified pool as their source.
2199
+ *
1913
2200
  */
1914
2201
  listBySourcePool(request: ListPoolsBySourcePoolRequest): SDKRequestClass<ListPoolsBySourcePoolRequest, ListPoolsResponse>;
1915
2202
  /**
1916
- * Calls the `ListBySourcePool` RPC.
2203
+ * Lists pools that use a specified pool as their source.
2204
+ *
1917
2205
  */
1918
2206
  listBySourcePool(request: ListPoolsBySourcePoolRequest, metadata: Metadata): SDKRequestClass<ListPoolsBySourcePoolRequest, ListPoolsResponse>;
1919
2207
  /**
1920
- * Calls the `ListBySourcePool` RPC.
2208
+ * Lists pools that use a specified pool as their source.
2209
+ *
1921
2210
  */
1922
2211
  listBySourcePool(request: ListPoolsBySourcePoolRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListPoolsBySourcePoolRequest, ListPoolsResponse>;
1923
2212
  /**
1924
- * Calls the `Create` RPC.
2213
+ * Creates a new pool with the specified configuration.
2214
+ *
1925
2215
  */
1926
2216
  create(request: CreatePoolRequest): SDKRequestClass<CreatePoolRequest, OperationWrapper<GetOperationRequest>>;
1927
2217
  /**
1928
- * Calls the `Create` RPC.
2218
+ * Creates a new pool with the specified configuration.
2219
+ *
1929
2220
  */
1930
2221
  create(request: CreatePoolRequest, metadata: Metadata): SDKRequestClass<CreatePoolRequest, OperationWrapper<GetOperationRequest>>;
1931
2222
  /**
1932
- * Calls the `Create` RPC.
2223
+ * Creates a new pool with the specified configuration.
2224
+ *
1933
2225
  */
1934
2226
  create(request: CreatePoolRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreatePoolRequest, OperationWrapper<GetOperationRequest>>;
1935
2227
  /**
1936
- * Calls the `Update` RPC.
2228
+ * Updates an existing pool with new configuration parameters.
2229
+ *
1937
2230
  */
1938
2231
  update(request: UpdatePoolRequest): SDKRequestClass<UpdatePoolRequest, OperationWrapper<GetOperationRequest>>;
1939
2232
  /**
1940
- * Calls the `Update` RPC.
2233
+ * Updates an existing pool with new configuration parameters.
2234
+ *
1941
2235
  */
1942
2236
  update(request: UpdatePoolRequest, metadata: Metadata): SDKRequestClass<UpdatePoolRequest, OperationWrapper<GetOperationRequest>>;
1943
2237
  /**
1944
- * Calls the `Update` RPC.
2238
+ * Updates an existing pool with new configuration parameters.
2239
+ *
1945
2240
  */
1946
2241
  update(request: UpdatePoolRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdatePoolRequest, OperationWrapper<GetOperationRequest>>;
1947
2242
  /**
1948
- * Calls the `Delete` RPC.
2243
+ * Deletes a pool by its ID.
2244
+ *
1949
2245
  */
1950
2246
  delete(request: DeletePoolRequest): SDKRequestClass<DeletePoolRequest, OperationWrapper<GetOperationRequest>>;
1951
2247
  /**
1952
- * Calls the `Delete` RPC.
2248
+ * Deletes a pool by its ID.
2249
+ *
1953
2250
  */
1954
2251
  delete(request: DeletePoolRequest, metadata: Metadata): SDKRequestClass<DeletePoolRequest, OperationWrapper<GetOperationRequest>>;
1955
2252
  /**
1956
- * Calls the `Delete` RPC.
2253
+ * Deletes a pool by its ID.
2254
+ *
1957
2255
  */
1958
2256
  delete(request: DeletePoolRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<DeletePoolRequest, OperationWrapper<GetOperationRequest>>;
1959
2257
  }
@@ -2206,7 +2504,10 @@ export interface GetRouteRequest {
2206
2504
  [unknownFieldsSymbol]?: Uint8Array | undefined;
2207
2505
  /** Returns a safe value for JSON logs. */
2208
2506
  [customJson]?: () => unknown;
2209
- /** Contains the `id` protobuf field. */
2507
+ /**
2508
+ * ID of the route.
2509
+ *
2510
+ */
2210
2511
  id: string;
2211
2512
  }
2212
2513
  /** Encodes, decodes, converts, and creates {@link GetRouteRequest} messages. */
@@ -2220,11 +2521,14 @@ export interface GetRouteByNameRequest {
2220
2521
  /** Returns a safe value for JSON logs. */
2221
2522
  [customJson]?: () => unknown;
2222
2523
  /**
2223
- * ID of the RouteTable.
2524
+ * ID of the parent route table.
2224
2525
  *
2225
2526
  */
2226
2527
  parentId: string;
2227
- /** Contains the `name` protobuf field. */
2528
+ /**
2529
+ * Name of the route.
2530
+ *
2531
+ */
2228
2532
  name: string;
2229
2533
  }
2230
2534
  /** Encodes, decodes, converts, and creates {@link GetRouteByNameRequest} messages. */
@@ -2238,13 +2542,19 @@ export interface ListRoutesRequest {
2238
2542
  /** Returns a safe value for JSON logs. */
2239
2543
  [customJson]?: () => unknown;
2240
2544
  /**
2241
- * ID of the RouteTable.
2545
+ * ID of the parent route table.
2242
2546
  *
2243
2547
  */
2244
2548
  parentId: string;
2245
- /** Contains the `page_size` protobuf field. */
2549
+ /**
2550
+ * Maximum number of routes to return.
2551
+ *
2552
+ */
2246
2553
  pageSize: Long;
2247
- /** Contains the `page_token` protobuf field. */
2554
+ /**
2555
+ * Token to retrieve the next page of routes.
2556
+ *
2557
+ */
2248
2558
  pageToken: string;
2249
2559
  }
2250
2560
  /** Encodes, decodes, converts, and creates {@link ListRoutesRequest} messages. */
@@ -2272,9 +2582,15 @@ export interface CreateRouteRequest {
2272
2582
  [unknownFieldsSymbol]?: Uint8Array | undefined;
2273
2583
  /** Returns a safe value for JSON logs. */
2274
2584
  [customJson]?: () => unknown;
2275
- /** Contains the `metadata` protobuf field. */
2585
+ /**
2586
+ * Metadata of the route.
2587
+ *
2588
+ */
2276
2589
  metadata?: ResourceMetadata | undefined;
2277
- /** Contains the `spec` protobuf field. */
2590
+ /**
2591
+ * Specification of the route.
2592
+ *
2593
+ */
2278
2594
  spec?: RouteSpec | undefined;
2279
2595
  }
2280
2596
  /** Encodes, decodes, converts, and creates {@link CreateRouteRequest} messages. */
@@ -2287,9 +2603,15 @@ export interface UpdateRouteRequest {
2287
2603
  [unknownFieldsSymbol]?: Uint8Array | undefined;
2288
2604
  /** Returns a safe value for JSON logs. */
2289
2605
  [customJson]?: () => unknown;
2290
- /** Contains the `metadata` protobuf field. */
2606
+ /**
2607
+ * Updated metadata of the route.
2608
+ *
2609
+ */
2291
2610
  metadata?: ResourceMetadata | undefined;
2292
- /** Contains the `spec` protobuf field. */
2611
+ /**
2612
+ * Updated specification of the route.
2613
+ *
2614
+ */
2293
2615
  spec?: RouteSpec | undefined;
2294
2616
  }
2295
2617
  /** Encodes, decodes, converts, and creates {@link UpdateRouteRequest} messages. */
@@ -2302,7 +2624,10 @@ export interface DeleteRouteRequest {
2302
2624
  [unknownFieldsSymbol]?: Uint8Array | undefined;
2303
2625
  /** Returns a safe value for JSON logs. */
2304
2626
  [customJson]?: () => unknown;
2305
- /** Contains the `id` protobuf field. */
2627
+ /**
2628
+ * ID of the route.
2629
+ *
2630
+ */
2306
2631
  id: string;
2307
2632
  }
2308
2633
  /** Encodes, decodes, converts, and creates {@link DeleteRouteRequest} messages. */
@@ -2387,27 +2712,33 @@ export declare const RouteServiceServiceDescription: {
2387
2712
  */
2388
2713
  export interface RouteServiceServer extends UntypedServiceImplementation {
2389
2714
  /**
2390
- * Handles the `Get` RPC.
2715
+ * Retrieves a route by its ID.
2716
+ *
2391
2717
  */
2392
2718
  get: handleUnaryCall<GetRouteRequest, Route>;
2393
2719
  /**
2394
- * Handles the `GetByName` RPC.
2720
+ * Retrieves a route by its name within a specified route table.
2721
+ *
2395
2722
  */
2396
2723
  getByName: handleUnaryCall<GetRouteByNameRequest, Route>;
2397
2724
  /**
2398
- * Handles the `List` RPC.
2725
+ * Lists routes in a specified route table.
2726
+ *
2399
2727
  */
2400
2728
  list: handleUnaryCall<ListRoutesRequest, ListRoutesResponse>;
2401
2729
  /**
2402
- * Handles the `Create` RPC.
2730
+ * Creates a new route with the specified configuration.
2731
+ *
2403
2732
  */
2404
2733
  create: handleUnaryCall<CreateRouteRequest, Operation>;
2405
2734
  /**
2406
- * Handles the `Update` RPC.
2735
+ * Updates an existing route with new configuration parameters.
2736
+ *
2407
2737
  */
2408
2738
  update: handleUnaryCall<UpdateRouteRequest, Operation>;
2409
2739
  /**
2410
- * Handles the `Delete` RPC.
2740
+ * Deletes a route by its ID.
2741
+ *
2411
2742
  */
2412
2743
  delete: handleUnaryCall<DeleteRouteRequest, Operation>;
2413
2744
  }
@@ -2416,27 +2747,33 @@ export interface RouteServiceServer extends UntypedServiceImplementation {
2416
2747
  */
2417
2748
  export interface RouteServiceBaseClient extends Client {
2418
2749
  /**
2419
- * Calls the `Get` RPC.
2750
+ * Retrieves a route by its ID.
2751
+ *
2420
2752
  */
2421
2753
  get(request: GetRouteRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Route) => void): ClientUnaryCall;
2422
2754
  /**
2423
- * Calls the `GetByName` RPC.
2755
+ * Retrieves a route by its name within a specified route table.
2756
+ *
2424
2757
  */
2425
2758
  getByName(request: GetRouteByNameRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Route) => void): ClientUnaryCall;
2426
2759
  /**
2427
- * Calls the `List` RPC.
2760
+ * Lists routes in a specified route table.
2761
+ *
2428
2762
  */
2429
2763
  list(request: ListRoutesRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: ListRoutesResponse) => void): ClientUnaryCall;
2430
2764
  /**
2431
- * Calls the `Create` RPC.
2765
+ * Creates a new route with the specified configuration.
2766
+ *
2432
2767
  */
2433
2768
  create(request: CreateRouteRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
2434
2769
  /**
2435
- * Calls the `Update` RPC.
2770
+ * Updates an existing route with new configuration parameters.
2771
+ *
2436
2772
  */
2437
2773
  update(request: UpdateRouteRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
2438
2774
  /**
2439
- * Calls the `Delete` RPC.
2775
+ * Deletes a route by its ID.
2776
+ *
2440
2777
  */
2441
2778
  delete(request: DeleteRouteRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
2442
2779
  }
@@ -2452,81 +2789,100 @@ export declare const RouteServiceBaseClient: {
2452
2789
  serviceName: string;
2453
2790
  };
2454
2791
  /**
2455
- * Calls the `nebius.vpc.v1.RouteService` service.
2792
+ * RouteService provides operations for managing routes.
2793
+ *
2456
2794
  */
2457
2795
  export interface RouteService {
2458
2796
  /** Contains the fully qualified protobuf service name. */
2459
2797
  $type: "nebius.vpc.v1.RouteService";
2460
2798
  /**
2461
- * Calls the `Get` RPC.
2799
+ * Retrieves a route by its ID.
2800
+ *
2462
2801
  */
2463
2802
  get(request: GetRouteRequest): SDKRequestClass<GetRouteRequest, Route>;
2464
2803
  /**
2465
- * Calls the `Get` RPC.
2804
+ * Retrieves a route by its ID.
2805
+ *
2466
2806
  */
2467
2807
  get(request: GetRouteRequest, metadata: Metadata): SDKRequestClass<GetRouteRequest, Route>;
2468
2808
  /**
2469
- * Calls the `Get` RPC.
2809
+ * Retrieves a route by its ID.
2810
+ *
2470
2811
  */
2471
2812
  get(request: GetRouteRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetRouteRequest, Route>;
2472
2813
  /**
2473
- * Calls the `GetByName` RPC.
2814
+ * Retrieves a route by its name within a specified route table.
2815
+ *
2474
2816
  */
2475
2817
  getByName(request: GetRouteByNameRequest): SDKRequestClass<GetRouteByNameRequest, Route>;
2476
2818
  /**
2477
- * Calls the `GetByName` RPC.
2819
+ * Retrieves a route by its name within a specified route table.
2820
+ *
2478
2821
  */
2479
2822
  getByName(request: GetRouteByNameRequest, metadata: Metadata): SDKRequestClass<GetRouteByNameRequest, Route>;
2480
2823
  /**
2481
- * Calls the `GetByName` RPC.
2824
+ * Retrieves a route by its name within a specified route table.
2825
+ *
2482
2826
  */
2483
2827
  getByName(request: GetRouteByNameRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetRouteByNameRequest, Route>;
2484
2828
  /**
2485
- * Calls the `List` RPC.
2829
+ * Lists routes in a specified route table.
2830
+ *
2486
2831
  */
2487
2832
  list(request: ListRoutesRequest): SDKRequestClass<ListRoutesRequest, ListRoutesResponse>;
2488
2833
  /**
2489
- * Calls the `List` RPC.
2834
+ * Lists routes in a specified route table.
2835
+ *
2490
2836
  */
2491
2837
  list(request: ListRoutesRequest, metadata: Metadata): SDKRequestClass<ListRoutesRequest, ListRoutesResponse>;
2492
2838
  /**
2493
- * Calls the `List` RPC.
2839
+ * Lists routes in a specified route table.
2840
+ *
2494
2841
  */
2495
2842
  list(request: ListRoutesRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListRoutesRequest, ListRoutesResponse>;
2496
2843
  /**
2497
- * Calls the `Create` RPC.
2844
+ * Creates a new route with the specified configuration.
2845
+ *
2498
2846
  */
2499
2847
  create(request: CreateRouteRequest): SDKRequestClass<CreateRouteRequest, OperationWrapper<GetOperationRequest>>;
2500
2848
  /**
2501
- * Calls the `Create` RPC.
2849
+ * Creates a new route with the specified configuration.
2850
+ *
2502
2851
  */
2503
2852
  create(request: CreateRouteRequest, metadata: Metadata): SDKRequestClass<CreateRouteRequest, OperationWrapper<GetOperationRequest>>;
2504
2853
  /**
2505
- * Calls the `Create` RPC.
2854
+ * Creates a new route with the specified configuration.
2855
+ *
2506
2856
  */
2507
2857
  create(request: CreateRouteRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreateRouteRequest, OperationWrapper<GetOperationRequest>>;
2508
2858
  /**
2509
- * Calls the `Update` RPC.
2859
+ * Updates an existing route with new configuration parameters.
2860
+ *
2510
2861
  */
2511
2862
  update(request: UpdateRouteRequest): SDKRequestClass<UpdateRouteRequest, OperationWrapper<GetOperationRequest>>;
2512
2863
  /**
2513
- * Calls the `Update` RPC.
2864
+ * Updates an existing route with new configuration parameters.
2865
+ *
2514
2866
  */
2515
2867
  update(request: UpdateRouteRequest, metadata: Metadata): SDKRequestClass<UpdateRouteRequest, OperationWrapper<GetOperationRequest>>;
2516
2868
  /**
2517
- * Calls the `Update` RPC.
2869
+ * Updates an existing route with new configuration parameters.
2870
+ *
2518
2871
  */
2519
2872
  update(request: UpdateRouteRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdateRouteRequest, OperationWrapper<GetOperationRequest>>;
2520
2873
  /**
2521
- * Calls the `Delete` RPC.
2874
+ * Deletes a route by its ID.
2875
+ *
2522
2876
  */
2523
2877
  delete(request: DeleteRouteRequest): SDKRequestClass<DeleteRouteRequest, OperationWrapper<GetOperationRequest>>;
2524
2878
  /**
2525
- * Calls the `Delete` RPC.
2879
+ * Deletes a route by its ID.
2880
+ *
2526
2881
  */
2527
2882
  delete(request: DeleteRouteRequest, metadata: Metadata): SDKRequestClass<DeleteRouteRequest, OperationWrapper<GetOperationRequest>>;
2528
2883
  /**
2529
- * Calls the `Delete` RPC.
2884
+ * Deletes a route by its ID.
2885
+ *
2530
2886
  */
2531
2887
  delete(request: DeleteRouteRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<DeleteRouteRequest, OperationWrapper<GetOperationRequest>>;
2532
2888
  }
@@ -2544,75 +2900,93 @@ export declare class RouteService implements RouteService {
2544
2900
  /** Returns the operation service for this service address. */
2545
2901
  getOperationService(): OperationService;
2546
2902
  /**
2547
- * Calls the `Get` RPC.
2903
+ * Retrieves a route by its ID.
2904
+ *
2548
2905
  */
2549
2906
  get(request: GetRouteRequest): SDKRequestClass<GetRouteRequest, Route>;
2550
2907
  /**
2551
- * Calls the `Get` RPC.
2908
+ * Retrieves a route by its ID.
2909
+ *
2552
2910
  */
2553
2911
  get(request: GetRouteRequest, metadata: Metadata): SDKRequestClass<GetRouteRequest, Route>;
2554
2912
  /**
2555
- * Calls the `Get` RPC.
2913
+ * Retrieves a route by its ID.
2914
+ *
2556
2915
  */
2557
2916
  get(request: GetRouteRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetRouteRequest, Route>;
2558
2917
  /**
2559
- * Calls the `GetByName` RPC.
2918
+ * Retrieves a route by its name within a specified route table.
2919
+ *
2560
2920
  */
2561
2921
  getByName(request: GetRouteByNameRequest): SDKRequestClass<GetRouteByNameRequest, Route>;
2562
2922
  /**
2563
- * Calls the `GetByName` RPC.
2923
+ * Retrieves a route by its name within a specified route table.
2924
+ *
2564
2925
  */
2565
2926
  getByName(request: GetRouteByNameRequest, metadata: Metadata): SDKRequestClass<GetRouteByNameRequest, Route>;
2566
2927
  /**
2567
- * Calls the `GetByName` RPC.
2928
+ * Retrieves a route by its name within a specified route table.
2929
+ *
2568
2930
  */
2569
2931
  getByName(request: GetRouteByNameRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetRouteByNameRequest, Route>;
2570
2932
  /**
2571
- * Calls the `List` RPC.
2933
+ * Lists routes in a specified route table.
2934
+ *
2572
2935
  */
2573
2936
  list(request: ListRoutesRequest): SDKRequestClass<ListRoutesRequest, ListRoutesResponse>;
2574
2937
  /**
2575
- * Calls the `List` RPC.
2938
+ * Lists routes in a specified route table.
2939
+ *
2576
2940
  */
2577
2941
  list(request: ListRoutesRequest, metadata: Metadata): SDKRequestClass<ListRoutesRequest, ListRoutesResponse>;
2578
2942
  /**
2579
- * Calls the `List` RPC.
2943
+ * Lists routes in a specified route table.
2944
+ *
2580
2945
  */
2581
2946
  list(request: ListRoutesRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListRoutesRequest, ListRoutesResponse>;
2582
2947
  /**
2583
- * Calls the `Create` RPC.
2948
+ * Creates a new route with the specified configuration.
2949
+ *
2584
2950
  */
2585
2951
  create(request: CreateRouteRequest): SDKRequestClass<CreateRouteRequest, OperationWrapper<GetOperationRequest>>;
2586
2952
  /**
2587
- * Calls the `Create` RPC.
2953
+ * Creates a new route with the specified configuration.
2954
+ *
2588
2955
  */
2589
2956
  create(request: CreateRouteRequest, metadata: Metadata): SDKRequestClass<CreateRouteRequest, OperationWrapper<GetOperationRequest>>;
2590
2957
  /**
2591
- * Calls the `Create` RPC.
2958
+ * Creates a new route with the specified configuration.
2959
+ *
2592
2960
  */
2593
2961
  create(request: CreateRouteRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreateRouteRequest, OperationWrapper<GetOperationRequest>>;
2594
2962
  /**
2595
- * Calls the `Update` RPC.
2963
+ * Updates an existing route with new configuration parameters.
2964
+ *
2596
2965
  */
2597
2966
  update(request: UpdateRouteRequest): SDKRequestClass<UpdateRouteRequest, OperationWrapper<GetOperationRequest>>;
2598
2967
  /**
2599
- * Calls the `Update` RPC.
2968
+ * Updates an existing route with new configuration parameters.
2969
+ *
2600
2970
  */
2601
2971
  update(request: UpdateRouteRequest, metadata: Metadata): SDKRequestClass<UpdateRouteRequest, OperationWrapper<GetOperationRequest>>;
2602
2972
  /**
2603
- * Calls the `Update` RPC.
2973
+ * Updates an existing route with new configuration parameters.
2974
+ *
2604
2975
  */
2605
2976
  update(request: UpdateRouteRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdateRouteRequest, OperationWrapper<GetOperationRequest>>;
2606
2977
  /**
2607
- * Calls the `Delete` RPC.
2978
+ * Deletes a route by its ID.
2979
+ *
2608
2980
  */
2609
2981
  delete(request: DeleteRouteRequest): SDKRequestClass<DeleteRouteRequest, OperationWrapper<GetOperationRequest>>;
2610
2982
  /**
2611
- * Calls the `Delete` RPC.
2983
+ * Deletes a route by its ID.
2984
+ *
2612
2985
  */
2613
2986
  delete(request: DeleteRouteRequest, metadata: Metadata): SDKRequestClass<DeleteRouteRequest, OperationWrapper<GetOperationRequest>>;
2614
2987
  /**
2615
- * Calls the `Delete` RPC.
2988
+ * Deletes a route by its ID.
2989
+ *
2616
2990
  */
2617
2991
  delete(request: DeleteRouteRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<DeleteRouteRequest, OperationWrapper<GetOperationRequest>>;
2618
2992
  }
@@ -2624,7 +2998,10 @@ export interface GetRouteTableRequest {
2624
2998
  [unknownFieldsSymbol]?: Uint8Array | undefined;
2625
2999
  /** Returns a safe value for JSON logs. */
2626
3000
  [customJson]?: () => unknown;
2627
- /** Contains the `id` protobuf field. */
3001
+ /**
3002
+ * ID of the route table.
3003
+ *
3004
+ */
2628
3005
  id: string;
2629
3006
  }
2630
3007
  /** Encodes, decodes, converts, and creates {@link GetRouteTableRequest} messages. */
@@ -2638,11 +3015,14 @@ export interface GetRouteTableByNameRequest {
2638
3015
  /** Returns a safe value for JSON logs. */
2639
3016
  [customJson]?: () => unknown;
2640
3017
  /**
2641
- * ID of the Project.
3018
+ * ID of the parent project.
2642
3019
  *
2643
3020
  */
2644
3021
  parentId: string;
2645
- /** Contains the `name` protobuf field. */
3022
+ /**
3023
+ * Name of the route table.
3024
+ *
3025
+ */
2646
3026
  name: string;
2647
3027
  }
2648
3028
  /** Encodes, decodes, converts, and creates {@link GetRouteTableByNameRequest} messages. */
@@ -2656,13 +3036,19 @@ export interface ListRouteTablesRequest {
2656
3036
  /** Returns a safe value for JSON logs. */
2657
3037
  [customJson]?: () => unknown;
2658
3038
  /**
2659
- * ID of the Project.
3039
+ * ID of the parent project.
2660
3040
  *
2661
3041
  */
2662
3042
  parentId: string;
2663
- /** Contains the `page_size` protobuf field. */
3043
+ /**
3044
+ * Maximum number of route tables to return.
3045
+ *
3046
+ */
2664
3047
  pageSize: Long;
2665
- /** Contains the `page_token` protobuf field. */
3048
+ /**
3049
+ * Token to retrieve the next page of route tables.
3050
+ *
3051
+ */
2666
3052
  pageToken: string;
2667
3053
  }
2668
3054
  /** Encodes, decodes, converts, and creates {@link ListRouteTablesRequest} messages. */
@@ -2675,11 +3061,20 @@ export interface ListRouteTablesByNetworkRequest {
2675
3061
  [unknownFieldsSymbol]?: Uint8Array | undefined;
2676
3062
  /** Returns a safe value for JSON logs. */
2677
3063
  [customJson]?: () => unknown;
2678
- /** Contains the `network_id` protobuf field. */
3064
+ /**
3065
+ * ID of the network.
3066
+ *
3067
+ */
2679
3068
  networkId: string;
2680
- /** Contains the `page_size` protobuf field. */
3069
+ /**
3070
+ * Maximum number of route tables to return.
3071
+ *
3072
+ */
2681
3073
  pageSize: Long;
2682
- /** Contains the `page_token` protobuf field. */
3074
+ /**
3075
+ * Token to retrieve the next page of route tables.
3076
+ *
3077
+ */
2683
3078
  pageToken: string;
2684
3079
  }
2685
3080
  /** Encodes, decodes, converts, and creates {@link ListRouteTablesByNetworkRequest} messages. */
@@ -2707,9 +3102,15 @@ export interface CreateRouteTableRequest {
2707
3102
  [unknownFieldsSymbol]?: Uint8Array | undefined;
2708
3103
  /** Returns a safe value for JSON logs. */
2709
3104
  [customJson]?: () => unknown;
2710
- /** Contains the `metadata` protobuf field. */
3105
+ /**
3106
+ * Metadata of the route table.
3107
+ *
3108
+ */
2711
3109
  metadata?: ResourceMetadata | undefined;
2712
- /** Contains the `spec` protobuf field. */
3110
+ /**
3111
+ * Specification of the route table.
3112
+ *
3113
+ */
2713
3114
  spec?: RouteTableSpec | undefined;
2714
3115
  }
2715
3116
  /** Encodes, decodes, converts, and creates {@link CreateRouteTableRequest} messages. */
@@ -2722,9 +3123,15 @@ export interface UpdateRouteTableRequest {
2722
3123
  [unknownFieldsSymbol]?: Uint8Array | undefined;
2723
3124
  /** Returns a safe value for JSON logs. */
2724
3125
  [customJson]?: () => unknown;
2725
- /** Contains the `metadata` protobuf field. */
3126
+ /**
3127
+ * Updated metadata of the route table.
3128
+ *
3129
+ */
2726
3130
  metadata?: ResourceMetadata | undefined;
2727
- /** Contains the `spec` protobuf field. */
3131
+ /**
3132
+ * Updated specification of the route table.
3133
+ *
3134
+ */
2728
3135
  spec?: RouteTableSpec | undefined;
2729
3136
  }
2730
3137
  /** Encodes, decodes, converts, and creates {@link UpdateRouteTableRequest} messages. */
@@ -2737,7 +3144,10 @@ export interface DeleteRouteTableRequest {
2737
3144
  [unknownFieldsSymbol]?: Uint8Array | undefined;
2738
3145
  /** Returns a safe value for JSON logs. */
2739
3146
  [customJson]?: () => unknown;
2740
- /** Contains the `id` protobuf field. */
3147
+ /**
3148
+ * ID of the route table.
3149
+ *
3150
+ */
2741
3151
  id: string;
2742
3152
  }
2743
3153
  /** Encodes, decodes, converts, and creates {@link DeleteRouteTableRequest} messages. */
@@ -2833,31 +3243,38 @@ export declare const RouteTableServiceServiceDescription: {
2833
3243
  */
2834
3244
  export interface RouteTableServiceServer extends UntypedServiceImplementation {
2835
3245
  /**
2836
- * Handles the `Get` RPC.
3246
+ * Retrieves a route table by its ID.
3247
+ *
2837
3248
  */
2838
3249
  get: handleUnaryCall<GetRouteTableRequest, RouteTable>;
2839
3250
  /**
2840
- * Handles the `GetByName` RPC.
3251
+ * Retrieves a route table by its name within a specified parent.
3252
+ *
2841
3253
  */
2842
3254
  getByName: handleUnaryCall<GetRouteTableByNameRequest, RouteTable>;
2843
3255
  /**
2844
- * Handles the `List` RPC.
3256
+ * Lists route tables within a specified parent.
3257
+ *
2845
3258
  */
2846
3259
  list: handleUnaryCall<ListRouteTablesRequest, ListRouteTablesResponse>;
2847
3260
  /**
2848
- * Handles the `ListByNetwork` RPC.
3261
+ * Lists route tables that belong to a specified network.
3262
+ *
2849
3263
  */
2850
3264
  listByNetwork: handleUnaryCall<ListRouteTablesByNetworkRequest, ListRouteTablesResponse>;
2851
3265
  /**
2852
- * Handles the `Create` RPC.
3266
+ * Creates a new route table with the specified configuration.
3267
+ *
2853
3268
  */
2854
3269
  create: handleUnaryCall<CreateRouteTableRequest, Operation>;
2855
3270
  /**
2856
- * Handles the `Update` RPC.
3271
+ * Updates an existing route table with new configuration parameters.
3272
+ *
2857
3273
  */
2858
3274
  update: handleUnaryCall<UpdateRouteTableRequest, Operation>;
2859
3275
  /**
2860
- * Handles the `Delete` RPC.
3276
+ * Deletes a route table by its ID.
3277
+ *
2861
3278
  */
2862
3279
  delete: handleUnaryCall<DeleteRouteTableRequest, Operation>;
2863
3280
  }
@@ -2866,31 +3283,38 @@ export interface RouteTableServiceServer extends UntypedServiceImplementation {
2866
3283
  */
2867
3284
  export interface RouteTableServiceBaseClient extends Client {
2868
3285
  /**
2869
- * Calls the `Get` RPC.
3286
+ * Retrieves a route table by its ID.
3287
+ *
2870
3288
  */
2871
3289
  get(request: GetRouteTableRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: RouteTable) => void): ClientUnaryCall;
2872
3290
  /**
2873
- * Calls the `GetByName` RPC.
3291
+ * Retrieves a route table by its name within a specified parent.
3292
+ *
2874
3293
  */
2875
3294
  getByName(request: GetRouteTableByNameRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: RouteTable) => void): ClientUnaryCall;
2876
3295
  /**
2877
- * Calls the `List` RPC.
3296
+ * Lists route tables within a specified parent.
3297
+ *
2878
3298
  */
2879
3299
  list(request: ListRouteTablesRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: ListRouteTablesResponse) => void): ClientUnaryCall;
2880
3300
  /**
2881
- * Calls the `ListByNetwork` RPC.
3301
+ * Lists route tables that belong to a specified network.
3302
+ *
2882
3303
  */
2883
3304
  listByNetwork(request: ListRouteTablesByNetworkRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: ListRouteTablesResponse) => void): ClientUnaryCall;
2884
3305
  /**
2885
- * Calls the `Create` RPC.
3306
+ * Creates a new route table with the specified configuration.
3307
+ *
2886
3308
  */
2887
3309
  create(request: CreateRouteTableRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
2888
3310
  /**
2889
- * Calls the `Update` RPC.
3311
+ * Updates an existing route table with new configuration parameters.
3312
+ *
2890
3313
  */
2891
3314
  update(request: UpdateRouteTableRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
2892
3315
  /**
2893
- * Calls the `Delete` RPC.
3316
+ * Deletes a route table by its ID.
3317
+ *
2894
3318
  */
2895
3319
  delete(request: DeleteRouteTableRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
2896
3320
  }
@@ -2906,93 +3330,115 @@ export declare const RouteTableServiceBaseClient: {
2906
3330
  serviceName: string;
2907
3331
  };
2908
3332
  /**
2909
- * Calls the `nebius.vpc.v1.RouteTableService` service.
3333
+ * RouteTableService provides operations for managing route tables.
3334
+ *
2910
3335
  */
2911
3336
  export interface RouteTableService {
2912
3337
  /** Contains the fully qualified protobuf service name. */
2913
3338
  $type: "nebius.vpc.v1.RouteTableService";
2914
3339
  /**
2915
- * Calls the `Get` RPC.
3340
+ * Retrieves a route table by its ID.
3341
+ *
2916
3342
  */
2917
3343
  get(request: GetRouteTableRequest): SDKRequestClass<GetRouteTableRequest, RouteTable>;
2918
3344
  /**
2919
- * Calls the `Get` RPC.
3345
+ * Retrieves a route table by its ID.
3346
+ *
2920
3347
  */
2921
3348
  get(request: GetRouteTableRequest, metadata: Metadata): SDKRequestClass<GetRouteTableRequest, RouteTable>;
2922
3349
  /**
2923
- * Calls the `Get` RPC.
3350
+ * Retrieves a route table by its ID.
3351
+ *
2924
3352
  */
2925
3353
  get(request: GetRouteTableRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetRouteTableRequest, RouteTable>;
2926
3354
  /**
2927
- * Calls the `GetByName` RPC.
3355
+ * Retrieves a route table by its name within a specified parent.
3356
+ *
2928
3357
  */
2929
3358
  getByName(request: GetRouteTableByNameRequest): SDKRequestClass<GetRouteTableByNameRequest, RouteTable>;
2930
3359
  /**
2931
- * Calls the `GetByName` RPC.
3360
+ * Retrieves a route table by its name within a specified parent.
3361
+ *
2932
3362
  */
2933
3363
  getByName(request: GetRouteTableByNameRequest, metadata: Metadata): SDKRequestClass<GetRouteTableByNameRequest, RouteTable>;
2934
3364
  /**
2935
- * Calls the `GetByName` RPC.
3365
+ * Retrieves a route table by its name within a specified parent.
3366
+ *
2936
3367
  */
2937
3368
  getByName(request: GetRouteTableByNameRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetRouteTableByNameRequest, RouteTable>;
2938
3369
  /**
2939
- * Calls the `List` RPC.
3370
+ * Lists route tables within a specified parent.
3371
+ *
2940
3372
  */
2941
3373
  list(request: ListRouteTablesRequest): SDKRequestClass<ListRouteTablesRequest, ListRouteTablesResponse>;
2942
3374
  /**
2943
- * Calls the `List` RPC.
3375
+ * Lists route tables within a specified parent.
3376
+ *
2944
3377
  */
2945
3378
  list(request: ListRouteTablesRequest, metadata: Metadata): SDKRequestClass<ListRouteTablesRequest, ListRouteTablesResponse>;
2946
3379
  /**
2947
- * Calls the `List` RPC.
3380
+ * Lists route tables within a specified parent.
3381
+ *
2948
3382
  */
2949
3383
  list(request: ListRouteTablesRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListRouteTablesRequest, ListRouteTablesResponse>;
2950
3384
  /**
2951
- * Calls the `ListByNetwork` RPC.
3385
+ * Lists route tables that belong to a specified network.
3386
+ *
2952
3387
  */
2953
3388
  listByNetwork(request: ListRouteTablesByNetworkRequest): SDKRequestClass<ListRouteTablesByNetworkRequest, ListRouteTablesResponse>;
2954
3389
  /**
2955
- * Calls the `ListByNetwork` RPC.
3390
+ * Lists route tables that belong to a specified network.
3391
+ *
2956
3392
  */
2957
3393
  listByNetwork(request: ListRouteTablesByNetworkRequest, metadata: Metadata): SDKRequestClass<ListRouteTablesByNetworkRequest, ListRouteTablesResponse>;
2958
3394
  /**
2959
- * Calls the `ListByNetwork` RPC.
3395
+ * Lists route tables that belong to a specified network.
3396
+ *
2960
3397
  */
2961
3398
  listByNetwork(request: ListRouteTablesByNetworkRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListRouteTablesByNetworkRequest, ListRouteTablesResponse>;
2962
3399
  /**
2963
- * Calls the `Create` RPC.
3400
+ * Creates a new route table with the specified configuration.
3401
+ *
2964
3402
  */
2965
3403
  create(request: CreateRouteTableRequest): SDKRequestClass<CreateRouteTableRequest, OperationWrapper<GetOperationRequest>>;
2966
3404
  /**
2967
- * Calls the `Create` RPC.
3405
+ * Creates a new route table with the specified configuration.
3406
+ *
2968
3407
  */
2969
3408
  create(request: CreateRouteTableRequest, metadata: Metadata): SDKRequestClass<CreateRouteTableRequest, OperationWrapper<GetOperationRequest>>;
2970
3409
  /**
2971
- * Calls the `Create` RPC.
3410
+ * Creates a new route table with the specified configuration.
3411
+ *
2972
3412
  */
2973
3413
  create(request: CreateRouteTableRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreateRouteTableRequest, OperationWrapper<GetOperationRequest>>;
2974
3414
  /**
2975
- * Calls the `Update` RPC.
3415
+ * Updates an existing route table with new configuration parameters.
3416
+ *
2976
3417
  */
2977
3418
  update(request: UpdateRouteTableRequest): SDKRequestClass<UpdateRouteTableRequest, OperationWrapper<GetOperationRequest>>;
2978
3419
  /**
2979
- * Calls the `Update` RPC.
3420
+ * Updates an existing route table with new configuration parameters.
3421
+ *
2980
3422
  */
2981
3423
  update(request: UpdateRouteTableRequest, metadata: Metadata): SDKRequestClass<UpdateRouteTableRequest, OperationWrapper<GetOperationRequest>>;
2982
3424
  /**
2983
- * Calls the `Update` RPC.
3425
+ * Updates an existing route table with new configuration parameters.
3426
+ *
2984
3427
  */
2985
3428
  update(request: UpdateRouteTableRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdateRouteTableRequest, OperationWrapper<GetOperationRequest>>;
2986
3429
  /**
2987
- * Calls the `Delete` RPC.
3430
+ * Deletes a route table by its ID.
3431
+ *
2988
3432
  */
2989
3433
  delete(request: DeleteRouteTableRequest): SDKRequestClass<DeleteRouteTableRequest, OperationWrapper<GetOperationRequest>>;
2990
3434
  /**
2991
- * Calls the `Delete` RPC.
3435
+ * Deletes a route table by its ID.
3436
+ *
2992
3437
  */
2993
3438
  delete(request: DeleteRouteTableRequest, metadata: Metadata): SDKRequestClass<DeleteRouteTableRequest, OperationWrapper<GetOperationRequest>>;
2994
3439
  /**
2995
- * Calls the `Delete` RPC.
3440
+ * Deletes a route table by its ID.
3441
+ *
2996
3442
  */
2997
3443
  delete(request: DeleteRouteTableRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<DeleteRouteTableRequest, OperationWrapper<GetOperationRequest>>;
2998
3444
  }
@@ -3010,87 +3456,108 @@ export declare class RouteTableService implements RouteTableService {
3010
3456
  /** Returns the operation service for this service address. */
3011
3457
  getOperationService(): OperationService;
3012
3458
  /**
3013
- * Calls the `Get` RPC.
3459
+ * Retrieves a route table by its ID.
3460
+ *
3014
3461
  */
3015
3462
  get(request: GetRouteTableRequest): SDKRequestClass<GetRouteTableRequest, RouteTable>;
3016
3463
  /**
3017
- * Calls the `Get` RPC.
3464
+ * Retrieves a route table by its ID.
3465
+ *
3018
3466
  */
3019
3467
  get(request: GetRouteTableRequest, metadata: Metadata): SDKRequestClass<GetRouteTableRequest, RouteTable>;
3020
3468
  /**
3021
- * Calls the `Get` RPC.
3469
+ * Retrieves a route table by its ID.
3470
+ *
3022
3471
  */
3023
3472
  get(request: GetRouteTableRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetRouteTableRequest, RouteTable>;
3024
3473
  /**
3025
- * Calls the `GetByName` RPC.
3474
+ * Retrieves a route table by its name within a specified parent.
3475
+ *
3026
3476
  */
3027
3477
  getByName(request: GetRouteTableByNameRequest): SDKRequestClass<GetRouteTableByNameRequest, RouteTable>;
3028
3478
  /**
3029
- * Calls the `GetByName` RPC.
3479
+ * Retrieves a route table by its name within a specified parent.
3480
+ *
3030
3481
  */
3031
3482
  getByName(request: GetRouteTableByNameRequest, metadata: Metadata): SDKRequestClass<GetRouteTableByNameRequest, RouteTable>;
3032
3483
  /**
3033
- * Calls the `GetByName` RPC.
3484
+ * Retrieves a route table by its name within a specified parent.
3485
+ *
3034
3486
  */
3035
3487
  getByName(request: GetRouteTableByNameRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetRouteTableByNameRequest, RouteTable>;
3036
3488
  /**
3037
- * Calls the `List` RPC.
3489
+ * Lists route tables within a specified parent.
3490
+ *
3038
3491
  */
3039
3492
  list(request: ListRouteTablesRequest): SDKRequestClass<ListRouteTablesRequest, ListRouteTablesResponse>;
3040
3493
  /**
3041
- * Calls the `List` RPC.
3494
+ * Lists route tables within a specified parent.
3495
+ *
3042
3496
  */
3043
3497
  list(request: ListRouteTablesRequest, metadata: Metadata): SDKRequestClass<ListRouteTablesRequest, ListRouteTablesResponse>;
3044
3498
  /**
3045
- * Calls the `List` RPC.
3499
+ * Lists route tables within a specified parent.
3500
+ *
3046
3501
  */
3047
3502
  list(request: ListRouteTablesRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListRouteTablesRequest, ListRouteTablesResponse>;
3048
3503
  /**
3049
- * Calls the `ListByNetwork` RPC.
3504
+ * Lists route tables that belong to a specified network.
3505
+ *
3050
3506
  */
3051
3507
  listByNetwork(request: ListRouteTablesByNetworkRequest): SDKRequestClass<ListRouteTablesByNetworkRequest, ListRouteTablesResponse>;
3052
3508
  /**
3053
- * Calls the `ListByNetwork` RPC.
3509
+ * Lists route tables that belong to a specified network.
3510
+ *
3054
3511
  */
3055
3512
  listByNetwork(request: ListRouteTablesByNetworkRequest, metadata: Metadata): SDKRequestClass<ListRouteTablesByNetworkRequest, ListRouteTablesResponse>;
3056
3513
  /**
3057
- * Calls the `ListByNetwork` RPC.
3514
+ * Lists route tables that belong to a specified network.
3515
+ *
3058
3516
  */
3059
3517
  listByNetwork(request: ListRouteTablesByNetworkRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListRouteTablesByNetworkRequest, ListRouteTablesResponse>;
3060
3518
  /**
3061
- * Calls the `Create` RPC.
3519
+ * Creates a new route table with the specified configuration.
3520
+ *
3062
3521
  */
3063
3522
  create(request: CreateRouteTableRequest): SDKRequestClass<CreateRouteTableRequest, OperationWrapper<GetOperationRequest>>;
3064
3523
  /**
3065
- * Calls the `Create` RPC.
3524
+ * Creates a new route table with the specified configuration.
3525
+ *
3066
3526
  */
3067
3527
  create(request: CreateRouteTableRequest, metadata: Metadata): SDKRequestClass<CreateRouteTableRequest, OperationWrapper<GetOperationRequest>>;
3068
3528
  /**
3069
- * Calls the `Create` RPC.
3529
+ * Creates a new route table with the specified configuration.
3530
+ *
3070
3531
  */
3071
3532
  create(request: CreateRouteTableRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreateRouteTableRequest, OperationWrapper<GetOperationRequest>>;
3072
3533
  /**
3073
- * Calls the `Update` RPC.
3534
+ * Updates an existing route table with new configuration parameters.
3535
+ *
3074
3536
  */
3075
3537
  update(request: UpdateRouteTableRequest): SDKRequestClass<UpdateRouteTableRequest, OperationWrapper<GetOperationRequest>>;
3076
3538
  /**
3077
- * Calls the `Update` RPC.
3539
+ * Updates an existing route table with new configuration parameters.
3540
+ *
3078
3541
  */
3079
3542
  update(request: UpdateRouteTableRequest, metadata: Metadata): SDKRequestClass<UpdateRouteTableRequest, OperationWrapper<GetOperationRequest>>;
3080
3543
  /**
3081
- * Calls the `Update` RPC.
3544
+ * Updates an existing route table with new configuration parameters.
3545
+ *
3082
3546
  */
3083
3547
  update(request: UpdateRouteTableRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdateRouteTableRequest, OperationWrapper<GetOperationRequest>>;
3084
3548
  /**
3085
- * Calls the `Delete` RPC.
3549
+ * Deletes a route table by its ID.
3550
+ *
3086
3551
  */
3087
3552
  delete(request: DeleteRouteTableRequest): SDKRequestClass<DeleteRouteTableRequest, OperationWrapper<GetOperationRequest>>;
3088
3553
  /**
3089
- * Calls the `Delete` RPC.
3554
+ * Deletes a route table by its ID.
3555
+ *
3090
3556
  */
3091
3557
  delete(request: DeleteRouteTableRequest, metadata: Metadata): SDKRequestClass<DeleteRouteTableRequest, OperationWrapper<GetOperationRequest>>;
3092
3558
  /**
3093
- * Calls the `Delete` RPC.
3559
+ * Deletes a route table by its ID.
3560
+ *
3094
3561
  */
3095
3562
  delete(request: DeleteRouteTableRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<DeleteRouteTableRequest, OperationWrapper<GetOperationRequest>>;
3096
3563
  }
@@ -3460,7 +3927,10 @@ export interface GetSecurityGroupRequest {
3460
3927
  [unknownFieldsSymbol]?: Uint8Array | undefined;
3461
3928
  /** Returns a safe value for JSON logs. */
3462
3929
  [customJson]?: () => unknown;
3463
- /** Contains the `id` protobuf field. */
3930
+ /**
3931
+ * ID of the security group.
3932
+ *
3933
+ */
3464
3934
  id: string;
3465
3935
  }
3466
3936
  /** Encodes, decodes, converts, and creates {@link GetSecurityGroupRequest} messages. */
@@ -3474,11 +3944,14 @@ export interface GetSecurityGroupByNameRequest {
3474
3944
  /** Returns a safe value for JSON logs. */
3475
3945
  [customJson]?: () => unknown;
3476
3946
  /**
3477
- * ID of the Project.
3947
+ * ID of the parent project.
3478
3948
  *
3479
3949
  */
3480
3950
  parentId: string;
3481
- /** Contains the `name` protobuf field. */
3951
+ /**
3952
+ * Name of the security group.
3953
+ *
3954
+ */
3482
3955
  name: string;
3483
3956
  }
3484
3957
  /** Encodes, decodes, converts, and creates {@link GetSecurityGroupByNameRequest} messages. */
@@ -3492,13 +3965,19 @@ export interface ListSecurityGroupsRequest {
3492
3965
  /** Returns a safe value for JSON logs. */
3493
3966
  [customJson]?: () => unknown;
3494
3967
  /**
3495
- * ID of the Project.
3968
+ * ID of the parent project.
3496
3969
  *
3497
3970
  */
3498
3971
  parentId: string;
3499
- /** Contains the `page_size` protobuf field. */
3972
+ /**
3973
+ * Maximum number of security groups to return.
3974
+ *
3975
+ */
3500
3976
  pageSize: Long;
3501
- /** Contains the `page_token` protobuf field. */
3977
+ /**
3978
+ * Token to retrieve the next page of security groups.
3979
+ *
3980
+ */
3502
3981
  pageToken: string;
3503
3982
  }
3504
3983
  /** Encodes, decodes, converts, and creates {@link ListSecurityGroupsRequest} messages. */
@@ -3512,13 +3991,19 @@ export interface ListSecurityGroupsByNetworkRequest {
3512
3991
  /** Returns a safe value for JSON logs. */
3513
3992
  [customJson]?: () => unknown;
3514
3993
  /**
3515
- * ID of the Network.
3994
+ * ID of the network.
3516
3995
  *
3517
3996
  */
3518
3997
  networkId: string;
3519
- /** Contains the `page_size` protobuf field. */
3998
+ /**
3999
+ * Maximum number of security groups to return.
4000
+ *
4001
+ */
3520
4002
  pageSize: Long;
3521
- /** Contains the `page_token` protobuf field. */
4003
+ /**
4004
+ * Token to retrieve the next page of security groups.
4005
+ *
4006
+ */
3522
4007
  pageToken: string;
3523
4008
  }
3524
4009
  /** Encodes, decodes, converts, and creates {@link ListSecurityGroupsByNetworkRequest} messages. */
@@ -3546,9 +4031,15 @@ export interface CreateSecurityGroupRequest {
3546
4031
  [unknownFieldsSymbol]?: Uint8Array | undefined;
3547
4032
  /** Returns a safe value for JSON logs. */
3548
4033
  [customJson]?: () => unknown;
3549
- /** Contains the `metadata` protobuf field. */
4034
+ /**
4035
+ * Metadata of the security group.
4036
+ *
4037
+ */
3550
4038
  metadata?: ResourceMetadata | undefined;
3551
- /** Contains the `spec` protobuf field. */
4039
+ /**
4040
+ * Specification of the security group.
4041
+ *
4042
+ */
3552
4043
  spec?: SecurityGroupSpec | undefined;
3553
4044
  }
3554
4045
  /** Encodes, decodes, converts, and creates {@link CreateSecurityGroupRequest} messages. */
@@ -3561,9 +4052,15 @@ export interface UpdateSecurityGroupRequest {
3561
4052
  [unknownFieldsSymbol]?: Uint8Array | undefined;
3562
4053
  /** Returns a safe value for JSON logs. */
3563
4054
  [customJson]?: () => unknown;
3564
- /** Contains the `metadata` protobuf field. */
4055
+ /**
4056
+ * Updated metadata of the security group.
4057
+ *
4058
+ */
3565
4059
  metadata?: ResourceMetadata | undefined;
3566
- /** Contains the `spec` protobuf field. */
4060
+ /**
4061
+ * Updated specification of the security group.
4062
+ *
4063
+ */
3567
4064
  spec?: SecurityGroupSpec | undefined;
3568
4065
  }
3569
4066
  /** Encodes, decodes, converts, and creates {@link UpdateSecurityGroupRequest} messages. */
@@ -3576,7 +4073,10 @@ export interface DeleteSecurityGroupRequest {
3576
4073
  [unknownFieldsSymbol]?: Uint8Array | undefined;
3577
4074
  /** Returns a safe value for JSON logs. */
3578
4075
  [customJson]?: () => unknown;
3579
- /** Contains the `id` protobuf field. */
4076
+ /**
4077
+ * ID of the security group.
4078
+ *
4079
+ */
3580
4080
  id: string;
3581
4081
  }
3582
4082
  /** Encodes, decodes, converts, and creates {@link DeleteSecurityGroupRequest} messages. */
@@ -3672,32 +4172,38 @@ export declare const SecurityGroupServiceServiceDescription: {
3672
4172
  */
3673
4173
  export interface SecurityGroupServiceServer extends UntypedServiceImplementation {
3674
4174
  /**
3675
- * Handles the `Get` RPC.
4175
+ * Retrieves a security group by its ID.
4176
+ *
3676
4177
  */
3677
4178
  get: handleUnaryCall<GetSecurityGroupRequest, SecurityGroup>;
3678
4179
  /**
3679
- * Handles the `GetByName` RPC.
4180
+ * Retrieves a security group by its name within a specified parent.
4181
+ *
3680
4182
  */
3681
4183
  getByName: handleUnaryCall<GetSecurityGroupByNameRequest, SecurityGroup>;
3682
4184
  /**
3683
- * Handles the `List` RPC.
4185
+ * Lists security groups within a specified parent.
4186
+ *
3684
4187
  */
3685
4188
  list: handleUnaryCall<ListSecurityGroupsRequest, ListSecurityGroupsResponse>;
3686
4189
  /**
3687
- * Lists security groups in a specific network.
4190
+ * Lists security groups in a specified network.
3688
4191
  *
3689
4192
  */
3690
4193
  listByNetwork: handleUnaryCall<ListSecurityGroupsByNetworkRequest, ListSecurityGroupsResponse>;
3691
4194
  /**
3692
- * Handles the `Create` RPC.
4195
+ * Creates a new security group with the specified configuration.
4196
+ *
3693
4197
  */
3694
4198
  create: handleUnaryCall<CreateSecurityGroupRequest, Operation>;
3695
4199
  /**
3696
- * Handles the `Update` RPC.
4200
+ * Updates an existing security group with new configuration parameters.
4201
+ *
3697
4202
  */
3698
4203
  update: handleUnaryCall<UpdateSecurityGroupRequest, Operation>;
3699
4204
  /**
3700
- * Handles the `Delete` RPC.
4205
+ * Deletes a security group by its ID.
4206
+ *
3701
4207
  */
3702
4208
  delete: handleUnaryCall<DeleteSecurityGroupRequest, Operation>;
3703
4209
  }
@@ -3706,32 +4212,38 @@ export interface SecurityGroupServiceServer extends UntypedServiceImplementation
3706
4212
  */
3707
4213
  export interface SecurityGroupServiceBaseClient extends Client {
3708
4214
  /**
3709
- * Calls the `Get` RPC.
4215
+ * Retrieves a security group by its ID.
4216
+ *
3710
4217
  */
3711
4218
  get(request: GetSecurityGroupRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: SecurityGroup) => void): ClientUnaryCall;
3712
4219
  /**
3713
- * Calls the `GetByName` RPC.
4220
+ * Retrieves a security group by its name within a specified parent.
4221
+ *
3714
4222
  */
3715
4223
  getByName(request: GetSecurityGroupByNameRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: SecurityGroup) => void): ClientUnaryCall;
3716
4224
  /**
3717
- * Calls the `List` RPC.
4225
+ * Lists security groups within a specified parent.
4226
+ *
3718
4227
  */
3719
4228
  list(request: ListSecurityGroupsRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: ListSecurityGroupsResponse) => void): ClientUnaryCall;
3720
4229
  /**
3721
- * Lists security groups in a specific network.
4230
+ * Lists security groups in a specified network.
3722
4231
  *
3723
4232
  */
3724
4233
  listByNetwork(request: ListSecurityGroupsByNetworkRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: ListSecurityGroupsResponse) => void): ClientUnaryCall;
3725
4234
  /**
3726
- * Calls the `Create` RPC.
4235
+ * Creates a new security group with the specified configuration.
4236
+ *
3727
4237
  */
3728
4238
  create(request: CreateSecurityGroupRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
3729
4239
  /**
3730
- * Calls the `Update` RPC.
4240
+ * Updates an existing security group with new configuration parameters.
4241
+ *
3731
4242
  */
3732
4243
  update(request: UpdateSecurityGroupRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
3733
4244
  /**
3734
- * Calls the `Delete` RPC.
4245
+ * Deletes a security group by its ID.
4246
+ *
3735
4247
  */
3736
4248
  delete(request: DeleteSecurityGroupRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
3737
4249
  }
@@ -3754,90 +4266,108 @@ export interface SecurityGroupService {
3754
4266
  /** Contains the fully qualified protobuf service name. */
3755
4267
  $type: "nebius.vpc.v1.SecurityGroupService";
3756
4268
  /**
3757
- * Calls the `Get` RPC.
4269
+ * Retrieves a security group by its ID.
4270
+ *
3758
4271
  */
3759
4272
  get(request: GetSecurityGroupRequest): SDKRequestClass<GetSecurityGroupRequest, SecurityGroup>;
3760
4273
  /**
3761
- * Calls the `Get` RPC.
4274
+ * Retrieves a security group by its ID.
4275
+ *
3762
4276
  */
3763
4277
  get(request: GetSecurityGroupRequest, metadata: Metadata): SDKRequestClass<GetSecurityGroupRequest, SecurityGroup>;
3764
4278
  /**
3765
- * Calls the `Get` RPC.
4279
+ * Retrieves a security group by its ID.
4280
+ *
3766
4281
  */
3767
4282
  get(request: GetSecurityGroupRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetSecurityGroupRequest, SecurityGroup>;
3768
4283
  /**
3769
- * Calls the `GetByName` RPC.
4284
+ * Retrieves a security group by its name within a specified parent.
4285
+ *
3770
4286
  */
3771
4287
  getByName(request: GetSecurityGroupByNameRequest): SDKRequestClass<GetSecurityGroupByNameRequest, SecurityGroup>;
3772
4288
  /**
3773
- * Calls the `GetByName` RPC.
4289
+ * Retrieves a security group by its name within a specified parent.
4290
+ *
3774
4291
  */
3775
4292
  getByName(request: GetSecurityGroupByNameRequest, metadata: Metadata): SDKRequestClass<GetSecurityGroupByNameRequest, SecurityGroup>;
3776
4293
  /**
3777
- * Calls the `GetByName` RPC.
4294
+ * Retrieves a security group by its name within a specified parent.
4295
+ *
3778
4296
  */
3779
4297
  getByName(request: GetSecurityGroupByNameRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetSecurityGroupByNameRequest, SecurityGroup>;
3780
4298
  /**
3781
- * Calls the `List` RPC.
4299
+ * Lists security groups within a specified parent.
4300
+ *
3782
4301
  */
3783
4302
  list(request: ListSecurityGroupsRequest): SDKRequestClass<ListSecurityGroupsRequest, ListSecurityGroupsResponse>;
3784
4303
  /**
3785
- * Calls the `List` RPC.
4304
+ * Lists security groups within a specified parent.
4305
+ *
3786
4306
  */
3787
4307
  list(request: ListSecurityGroupsRequest, metadata: Metadata): SDKRequestClass<ListSecurityGroupsRequest, ListSecurityGroupsResponse>;
3788
4308
  /**
3789
- * Calls the `List` RPC.
4309
+ * Lists security groups within a specified parent.
4310
+ *
3790
4311
  */
3791
4312
  list(request: ListSecurityGroupsRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListSecurityGroupsRequest, ListSecurityGroupsResponse>;
3792
4313
  /**
3793
- * Lists security groups in a specific network.
4314
+ * Lists security groups in a specified network.
3794
4315
  *
3795
4316
  */
3796
4317
  listByNetwork(request: ListSecurityGroupsByNetworkRequest): SDKRequestClass<ListSecurityGroupsByNetworkRequest, ListSecurityGroupsResponse>;
3797
4318
  /**
3798
- * Lists security groups in a specific network.
4319
+ * Lists security groups in a specified network.
3799
4320
  *
3800
4321
  */
3801
4322
  listByNetwork(request: ListSecurityGroupsByNetworkRequest, metadata: Metadata): SDKRequestClass<ListSecurityGroupsByNetworkRequest, ListSecurityGroupsResponse>;
3802
4323
  /**
3803
- * Lists security groups in a specific network.
4324
+ * Lists security groups in a specified network.
3804
4325
  *
3805
4326
  */
3806
4327
  listByNetwork(request: ListSecurityGroupsByNetworkRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListSecurityGroupsByNetworkRequest, ListSecurityGroupsResponse>;
3807
4328
  /**
3808
- * Calls the `Create` RPC.
4329
+ * Creates a new security group with the specified configuration.
4330
+ *
3809
4331
  */
3810
4332
  create(request: CreateSecurityGroupRequest): SDKRequestClass<CreateSecurityGroupRequest, OperationWrapper<GetOperationRequest>>;
3811
4333
  /**
3812
- * Calls the `Create` RPC.
4334
+ * Creates a new security group with the specified configuration.
4335
+ *
3813
4336
  */
3814
4337
  create(request: CreateSecurityGroupRequest, metadata: Metadata): SDKRequestClass<CreateSecurityGroupRequest, OperationWrapper<GetOperationRequest>>;
3815
4338
  /**
3816
- * Calls the `Create` RPC.
4339
+ * Creates a new security group with the specified configuration.
4340
+ *
3817
4341
  */
3818
4342
  create(request: CreateSecurityGroupRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreateSecurityGroupRequest, OperationWrapper<GetOperationRequest>>;
3819
4343
  /**
3820
- * Calls the `Update` RPC.
4344
+ * Updates an existing security group with new configuration parameters.
4345
+ *
3821
4346
  */
3822
4347
  update(request: UpdateSecurityGroupRequest): SDKRequestClass<UpdateSecurityGroupRequest, OperationWrapper<GetOperationRequest>>;
3823
4348
  /**
3824
- * Calls the `Update` RPC.
4349
+ * Updates an existing security group with new configuration parameters.
4350
+ *
3825
4351
  */
3826
4352
  update(request: UpdateSecurityGroupRequest, metadata: Metadata): SDKRequestClass<UpdateSecurityGroupRequest, OperationWrapper<GetOperationRequest>>;
3827
4353
  /**
3828
- * Calls the `Update` RPC.
4354
+ * Updates an existing security group with new configuration parameters.
4355
+ *
3829
4356
  */
3830
4357
  update(request: UpdateSecurityGroupRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdateSecurityGroupRequest, OperationWrapper<GetOperationRequest>>;
3831
4358
  /**
3832
- * Calls the `Delete` RPC.
4359
+ * Deletes a security group by its ID.
4360
+ *
3833
4361
  */
3834
4362
  delete(request: DeleteSecurityGroupRequest): SDKRequestClass<DeleteSecurityGroupRequest, OperationWrapper<GetOperationRequest>>;
3835
4363
  /**
3836
- * Calls the `Delete` RPC.
4364
+ * Deletes a security group by its ID.
4365
+ *
3837
4366
  */
3838
4367
  delete(request: DeleteSecurityGroupRequest, metadata: Metadata): SDKRequestClass<DeleteSecurityGroupRequest, OperationWrapper<GetOperationRequest>>;
3839
4368
  /**
3840
- * Calls the `Delete` RPC.
4369
+ * Deletes a security group by its ID.
4370
+ *
3841
4371
  */
3842
4372
  delete(request: DeleteSecurityGroupRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<DeleteSecurityGroupRequest, OperationWrapper<GetOperationRequest>>;
3843
4373
  }
@@ -3855,90 +4385,108 @@ export declare class SecurityGroupService implements SecurityGroupService {
3855
4385
  /** Returns the operation service for this service address. */
3856
4386
  getOperationService(): OperationService;
3857
4387
  /**
3858
- * Calls the `Get` RPC.
4388
+ * Retrieves a security group by its ID.
4389
+ *
3859
4390
  */
3860
4391
  get(request: GetSecurityGroupRequest): SDKRequestClass<GetSecurityGroupRequest, SecurityGroup>;
3861
4392
  /**
3862
- * Calls the `Get` RPC.
4393
+ * Retrieves a security group by its ID.
4394
+ *
3863
4395
  */
3864
4396
  get(request: GetSecurityGroupRequest, metadata: Metadata): SDKRequestClass<GetSecurityGroupRequest, SecurityGroup>;
3865
4397
  /**
3866
- * Calls the `Get` RPC.
4398
+ * Retrieves a security group by its ID.
4399
+ *
3867
4400
  */
3868
4401
  get(request: GetSecurityGroupRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetSecurityGroupRequest, SecurityGroup>;
3869
4402
  /**
3870
- * Calls the `GetByName` RPC.
4403
+ * Retrieves a security group by its name within a specified parent.
4404
+ *
3871
4405
  */
3872
4406
  getByName(request: GetSecurityGroupByNameRequest): SDKRequestClass<GetSecurityGroupByNameRequest, SecurityGroup>;
3873
4407
  /**
3874
- * Calls the `GetByName` RPC.
4408
+ * Retrieves a security group by its name within a specified parent.
4409
+ *
3875
4410
  */
3876
4411
  getByName(request: GetSecurityGroupByNameRequest, metadata: Metadata): SDKRequestClass<GetSecurityGroupByNameRequest, SecurityGroup>;
3877
4412
  /**
3878
- * Calls the `GetByName` RPC.
4413
+ * Retrieves a security group by its name within a specified parent.
4414
+ *
3879
4415
  */
3880
4416
  getByName(request: GetSecurityGroupByNameRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetSecurityGroupByNameRequest, SecurityGroup>;
3881
4417
  /**
3882
- * Calls the `List` RPC.
4418
+ * Lists security groups within a specified parent.
4419
+ *
3883
4420
  */
3884
4421
  list(request: ListSecurityGroupsRequest): SDKRequestClass<ListSecurityGroupsRequest, ListSecurityGroupsResponse>;
3885
4422
  /**
3886
- * Calls the `List` RPC.
4423
+ * Lists security groups within a specified parent.
4424
+ *
3887
4425
  */
3888
4426
  list(request: ListSecurityGroupsRequest, metadata: Metadata): SDKRequestClass<ListSecurityGroupsRequest, ListSecurityGroupsResponse>;
3889
4427
  /**
3890
- * Calls the `List` RPC.
4428
+ * Lists security groups within a specified parent.
4429
+ *
3891
4430
  */
3892
4431
  list(request: ListSecurityGroupsRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListSecurityGroupsRequest, ListSecurityGroupsResponse>;
3893
4432
  /**
3894
- * Lists security groups in a specific network.
4433
+ * Lists security groups in a specified network.
3895
4434
  *
3896
4435
  */
3897
4436
  listByNetwork(request: ListSecurityGroupsByNetworkRequest): SDKRequestClass<ListSecurityGroupsByNetworkRequest, ListSecurityGroupsResponse>;
3898
4437
  /**
3899
- * Lists security groups in a specific network.
4438
+ * Lists security groups in a specified network.
3900
4439
  *
3901
4440
  */
3902
4441
  listByNetwork(request: ListSecurityGroupsByNetworkRequest, metadata: Metadata): SDKRequestClass<ListSecurityGroupsByNetworkRequest, ListSecurityGroupsResponse>;
3903
4442
  /**
3904
- * Lists security groups in a specific network.
4443
+ * Lists security groups in a specified network.
3905
4444
  *
3906
4445
  */
3907
4446
  listByNetwork(request: ListSecurityGroupsByNetworkRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListSecurityGroupsByNetworkRequest, ListSecurityGroupsResponse>;
3908
4447
  /**
3909
- * Calls the `Create` RPC.
4448
+ * Creates a new security group with the specified configuration.
4449
+ *
3910
4450
  */
3911
4451
  create(request: CreateSecurityGroupRequest): SDKRequestClass<CreateSecurityGroupRequest, OperationWrapper<GetOperationRequest>>;
3912
4452
  /**
3913
- * Calls the `Create` RPC.
4453
+ * Creates a new security group with the specified configuration.
4454
+ *
3914
4455
  */
3915
4456
  create(request: CreateSecurityGroupRequest, metadata: Metadata): SDKRequestClass<CreateSecurityGroupRequest, OperationWrapper<GetOperationRequest>>;
3916
4457
  /**
3917
- * Calls the `Create` RPC.
4458
+ * Creates a new security group with the specified configuration.
4459
+ *
3918
4460
  */
3919
4461
  create(request: CreateSecurityGroupRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreateSecurityGroupRequest, OperationWrapper<GetOperationRequest>>;
3920
4462
  /**
3921
- * Calls the `Update` RPC.
4463
+ * Updates an existing security group with new configuration parameters.
4464
+ *
3922
4465
  */
3923
4466
  update(request: UpdateSecurityGroupRequest): SDKRequestClass<UpdateSecurityGroupRequest, OperationWrapper<GetOperationRequest>>;
3924
4467
  /**
3925
- * Calls the `Update` RPC.
4468
+ * Updates an existing security group with new configuration parameters.
4469
+ *
3926
4470
  */
3927
4471
  update(request: UpdateSecurityGroupRequest, metadata: Metadata): SDKRequestClass<UpdateSecurityGroupRequest, OperationWrapper<GetOperationRequest>>;
3928
4472
  /**
3929
- * Calls the `Update` RPC.
4473
+ * Updates an existing security group with new configuration parameters.
4474
+ *
3930
4475
  */
3931
4476
  update(request: UpdateSecurityGroupRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdateSecurityGroupRequest, OperationWrapper<GetOperationRequest>>;
3932
4477
  /**
3933
- * Calls the `Delete` RPC.
4478
+ * Deletes a security group by its ID.
4479
+ *
3934
4480
  */
3935
4481
  delete(request: DeleteSecurityGroupRequest): SDKRequestClass<DeleteSecurityGroupRequest, OperationWrapper<GetOperationRequest>>;
3936
4482
  /**
3937
- * Calls the `Delete` RPC.
4483
+ * Deletes a security group by its ID.
4484
+ *
3938
4485
  */
3939
4486
  delete(request: DeleteSecurityGroupRequest, metadata: Metadata): SDKRequestClass<DeleteSecurityGroupRequest, OperationWrapper<GetOperationRequest>>;
3940
4487
  /**
3941
- * Calls the `Delete` RPC.
4488
+ * Deletes a security group by its ID.
4489
+ *
3942
4490
  */
3943
4491
  delete(request: DeleteSecurityGroupRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<DeleteSecurityGroupRequest, OperationWrapper<GetOperationRequest>>;
3944
4492
  }
@@ -4040,7 +4588,10 @@ export interface GetSecurityRuleRequest {
4040
4588
  [unknownFieldsSymbol]?: Uint8Array | undefined;
4041
4589
  /** Returns a safe value for JSON logs. */
4042
4590
  [customJson]?: () => unknown;
4043
- /** Contains the `id` protobuf field. */
4591
+ /**
4592
+ * ID of the security rule.
4593
+ *
4594
+ */
4044
4595
  id: string;
4045
4596
  }
4046
4597
  /** Encodes, decodes, converts, and creates {@link GetSecurityRuleRequest} messages. */
@@ -4054,11 +4605,14 @@ export interface GetSecurityRuleByNameRequest {
4054
4605
  /** Returns a safe value for JSON logs. */
4055
4606
  [customJson]?: () => unknown;
4056
4607
  /**
4057
- * ID of the Security Group.
4608
+ * ID of the parent security group.
4058
4609
  *
4059
4610
  */
4060
4611
  parentId: string;
4061
- /** Contains the `name` protobuf field. */
4612
+ /**
4613
+ * Name of the security rule.
4614
+ *
4615
+ */
4062
4616
  name: string;
4063
4617
  }
4064
4618
  /** Encodes, decodes, converts, and creates {@link GetSecurityRuleByNameRequest} messages. */
@@ -4072,13 +4626,19 @@ export interface ListSecurityRulesRequest {
4072
4626
  /** Returns a safe value for JSON logs. */
4073
4627
  [customJson]?: () => unknown;
4074
4628
  /**
4075
- * ID of the Security Group.
4629
+ * ID of the parent security group.
4076
4630
  *
4077
4631
  */
4078
4632
  parentId: string;
4079
- /** Contains the `page_size` protobuf field. */
4633
+ /**
4634
+ * Maximum number of security rules to return.
4635
+ *
4636
+ */
4080
4637
  pageSize: Long;
4081
- /** Contains the `page_token` protobuf field. */
4638
+ /**
4639
+ * Token to retrieve the next page of security rules.
4640
+ *
4641
+ */
4082
4642
  pageToken: string;
4083
4643
  }
4084
4644
  /** Encodes, decodes, converts, and creates {@link ListSecurityRulesRequest} messages. */
@@ -4106,9 +4666,15 @@ export interface CreateSecurityRuleRequest {
4106
4666
  [unknownFieldsSymbol]?: Uint8Array | undefined;
4107
4667
  /** Returns a safe value for JSON logs. */
4108
4668
  [customJson]?: () => unknown;
4109
- /** Contains the `metadata` protobuf field. */
4669
+ /**
4670
+ * Metadata of the security rule.
4671
+ *
4672
+ */
4110
4673
  metadata?: ResourceMetadata | undefined;
4111
- /** Contains the `spec` protobuf field. */
4674
+ /**
4675
+ * Specification of the security rule.
4676
+ *
4677
+ */
4112
4678
  spec?: SecurityRuleSpec | undefined;
4113
4679
  }
4114
4680
  /** Encodes, decodes, converts, and creates {@link CreateSecurityRuleRequest} messages. */
@@ -4121,9 +4687,15 @@ export interface UpdateSecurityRuleRequest {
4121
4687
  [unknownFieldsSymbol]?: Uint8Array | undefined;
4122
4688
  /** Returns a safe value for JSON logs. */
4123
4689
  [customJson]?: () => unknown;
4124
- /** Contains the `metadata` protobuf field. */
4690
+ /**
4691
+ * Updated metadata of the security rule.
4692
+ *
4693
+ */
4125
4694
  metadata?: ResourceMetadata | undefined;
4126
- /** Contains the `spec` protobuf field. */
4695
+ /**
4696
+ * Updated specification of the security rule.
4697
+ *
4698
+ */
4127
4699
  spec?: SecurityRuleSpec | undefined;
4128
4700
  }
4129
4701
  /** Encodes, decodes, converts, and creates {@link UpdateSecurityRuleRequest} messages. */
@@ -4136,7 +4708,10 @@ export interface DeleteSecurityRuleRequest {
4136
4708
  [unknownFieldsSymbol]?: Uint8Array | undefined;
4137
4709
  /** Returns a safe value for JSON logs. */
4138
4710
  [customJson]?: () => unknown;
4139
- /** Contains the `id` protobuf field. */
4711
+ /**
4712
+ * ID of the security rule.
4713
+ *
4714
+ */
4140
4715
  id: string;
4141
4716
  }
4142
4717
  /** Encodes, decodes, converts, and creates {@link DeleteSecurityRuleRequest} messages. */
@@ -4221,27 +4796,33 @@ export declare const SecurityRuleServiceServiceDescription: {
4221
4796
  */
4222
4797
  export interface SecurityRuleServiceServer extends UntypedServiceImplementation {
4223
4798
  /**
4224
- * Handles the `Get` RPC.
4799
+ * Retrieves a security rule by its ID.
4800
+ *
4225
4801
  */
4226
4802
  get: handleUnaryCall<GetSecurityRuleRequest, SecurityRule>;
4227
4803
  /**
4228
- * Handles the `GetByName` RPC.
4804
+ * Retrieves a security rule by its name within a specified security group.
4805
+ *
4229
4806
  */
4230
4807
  getByName: handleUnaryCall<GetSecurityRuleByNameRequest, SecurityRule>;
4231
4808
  /**
4232
- * Handles the `List` RPC.
4809
+ * Lists security rules in a specified security group.
4810
+ *
4233
4811
  */
4234
4812
  list: handleUnaryCall<ListSecurityRulesRequest, ListSecurityRulesResponse>;
4235
4813
  /**
4236
- * Handles the `Create` RPC.
4814
+ * Creates a new security rule with the specified configuration.
4815
+ *
4237
4816
  */
4238
4817
  create: handleUnaryCall<CreateSecurityRuleRequest, Operation>;
4239
4818
  /**
4240
- * Handles the `Update` RPC.
4819
+ * Updates an existing security rule with new configuration parameters.
4820
+ *
4241
4821
  */
4242
4822
  update: handleUnaryCall<UpdateSecurityRuleRequest, Operation>;
4243
4823
  /**
4244
- * Handles the `Delete` RPC.
4824
+ * Deletes a security rule by its ID.
4825
+ *
4245
4826
  */
4246
4827
  delete: handleUnaryCall<DeleteSecurityRuleRequest, Operation>;
4247
4828
  }
@@ -4250,27 +4831,33 @@ export interface SecurityRuleServiceServer extends UntypedServiceImplementation
4250
4831
  */
4251
4832
  export interface SecurityRuleServiceBaseClient extends Client {
4252
4833
  /**
4253
- * Calls the `Get` RPC.
4834
+ * Retrieves a security rule by its ID.
4835
+ *
4254
4836
  */
4255
4837
  get(request: GetSecurityRuleRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: SecurityRule) => void): ClientUnaryCall;
4256
4838
  /**
4257
- * Calls the `GetByName` RPC.
4839
+ * Retrieves a security rule by its name within a specified security group.
4840
+ *
4258
4841
  */
4259
4842
  getByName(request: GetSecurityRuleByNameRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: SecurityRule) => void): ClientUnaryCall;
4260
4843
  /**
4261
- * Calls the `List` RPC.
4844
+ * Lists security rules in a specified security group.
4845
+ *
4262
4846
  */
4263
4847
  list(request: ListSecurityRulesRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: ListSecurityRulesResponse) => void): ClientUnaryCall;
4264
4848
  /**
4265
- * Calls the `Create` RPC.
4849
+ * Creates a new security rule with the specified configuration.
4850
+ *
4266
4851
  */
4267
4852
  create(request: CreateSecurityRuleRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
4268
4853
  /**
4269
- * Calls the `Update` RPC.
4854
+ * Updates an existing security rule with new configuration parameters.
4855
+ *
4270
4856
  */
4271
4857
  update(request: UpdateSecurityRuleRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
4272
4858
  /**
4273
- * Calls the `Delete` RPC.
4859
+ * Deletes a security rule by its ID.
4860
+ *
4274
4861
  */
4275
4862
  delete(request: DeleteSecurityRuleRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
4276
4863
  }
@@ -4293,75 +4880,93 @@ export interface SecurityRuleService {
4293
4880
  /** Contains the fully qualified protobuf service name. */
4294
4881
  $type: "nebius.vpc.v1.SecurityRuleService";
4295
4882
  /**
4296
- * Calls the `Get` RPC.
4883
+ * Retrieves a security rule by its ID.
4884
+ *
4297
4885
  */
4298
4886
  get(request: GetSecurityRuleRequest): SDKRequestClass<GetSecurityRuleRequest, SecurityRule>;
4299
4887
  /**
4300
- * Calls the `Get` RPC.
4888
+ * Retrieves a security rule by its ID.
4889
+ *
4301
4890
  */
4302
4891
  get(request: GetSecurityRuleRequest, metadata: Metadata): SDKRequestClass<GetSecurityRuleRequest, SecurityRule>;
4303
4892
  /**
4304
- * Calls the `Get` RPC.
4893
+ * Retrieves a security rule by its ID.
4894
+ *
4305
4895
  */
4306
4896
  get(request: GetSecurityRuleRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetSecurityRuleRequest, SecurityRule>;
4307
4897
  /**
4308
- * Calls the `GetByName` RPC.
4898
+ * Retrieves a security rule by its name within a specified security group.
4899
+ *
4309
4900
  */
4310
4901
  getByName(request: GetSecurityRuleByNameRequest): SDKRequestClass<GetSecurityRuleByNameRequest, SecurityRule>;
4311
4902
  /**
4312
- * Calls the `GetByName` RPC.
4903
+ * Retrieves a security rule by its name within a specified security group.
4904
+ *
4313
4905
  */
4314
4906
  getByName(request: GetSecurityRuleByNameRequest, metadata: Metadata): SDKRequestClass<GetSecurityRuleByNameRequest, SecurityRule>;
4315
4907
  /**
4316
- * Calls the `GetByName` RPC.
4908
+ * Retrieves a security rule by its name within a specified security group.
4909
+ *
4317
4910
  */
4318
4911
  getByName(request: GetSecurityRuleByNameRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetSecurityRuleByNameRequest, SecurityRule>;
4319
4912
  /**
4320
- * Calls the `List` RPC.
4913
+ * Lists security rules in a specified security group.
4914
+ *
4321
4915
  */
4322
4916
  list(request: ListSecurityRulesRequest): SDKRequestClass<ListSecurityRulesRequest, ListSecurityRulesResponse>;
4323
4917
  /**
4324
- * Calls the `List` RPC.
4918
+ * Lists security rules in a specified security group.
4919
+ *
4325
4920
  */
4326
4921
  list(request: ListSecurityRulesRequest, metadata: Metadata): SDKRequestClass<ListSecurityRulesRequest, ListSecurityRulesResponse>;
4327
4922
  /**
4328
- * Calls the `List` RPC.
4923
+ * Lists security rules in a specified security group.
4924
+ *
4329
4925
  */
4330
4926
  list(request: ListSecurityRulesRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListSecurityRulesRequest, ListSecurityRulesResponse>;
4331
4927
  /**
4332
- * Calls the `Create` RPC.
4928
+ * Creates a new security rule with the specified configuration.
4929
+ *
4333
4930
  */
4334
4931
  create(request: CreateSecurityRuleRequest): SDKRequestClass<CreateSecurityRuleRequest, OperationWrapper<GetOperationRequest>>;
4335
4932
  /**
4336
- * Calls the `Create` RPC.
4933
+ * Creates a new security rule with the specified configuration.
4934
+ *
4337
4935
  */
4338
4936
  create(request: CreateSecurityRuleRequest, metadata: Metadata): SDKRequestClass<CreateSecurityRuleRequest, OperationWrapper<GetOperationRequest>>;
4339
4937
  /**
4340
- * Calls the `Create` RPC.
4938
+ * Creates a new security rule with the specified configuration.
4939
+ *
4341
4940
  */
4342
4941
  create(request: CreateSecurityRuleRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreateSecurityRuleRequest, OperationWrapper<GetOperationRequest>>;
4343
4942
  /**
4344
- * Calls the `Update` RPC.
4943
+ * Updates an existing security rule with new configuration parameters.
4944
+ *
4345
4945
  */
4346
4946
  update(request: UpdateSecurityRuleRequest): SDKRequestClass<UpdateSecurityRuleRequest, OperationWrapper<GetOperationRequest>>;
4347
4947
  /**
4348
- * Calls the `Update` RPC.
4948
+ * Updates an existing security rule with new configuration parameters.
4949
+ *
4349
4950
  */
4350
4951
  update(request: UpdateSecurityRuleRequest, metadata: Metadata): SDKRequestClass<UpdateSecurityRuleRequest, OperationWrapper<GetOperationRequest>>;
4351
4952
  /**
4352
- * Calls the `Update` RPC.
4953
+ * Updates an existing security rule with new configuration parameters.
4954
+ *
4353
4955
  */
4354
4956
  update(request: UpdateSecurityRuleRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdateSecurityRuleRequest, OperationWrapper<GetOperationRequest>>;
4355
4957
  /**
4356
- * Calls the `Delete` RPC.
4958
+ * Deletes a security rule by its ID.
4959
+ *
4357
4960
  */
4358
4961
  delete(request: DeleteSecurityRuleRequest): SDKRequestClass<DeleteSecurityRuleRequest, OperationWrapper<GetOperationRequest>>;
4359
4962
  /**
4360
- * Calls the `Delete` RPC.
4963
+ * Deletes a security rule by its ID.
4964
+ *
4361
4965
  */
4362
4966
  delete(request: DeleteSecurityRuleRequest, metadata: Metadata): SDKRequestClass<DeleteSecurityRuleRequest, OperationWrapper<GetOperationRequest>>;
4363
4967
  /**
4364
- * Calls the `Delete` RPC.
4968
+ * Deletes a security rule by its ID.
4969
+ *
4365
4970
  */
4366
4971
  delete(request: DeleteSecurityRuleRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<DeleteSecurityRuleRequest, OperationWrapper<GetOperationRequest>>;
4367
4972
  }
@@ -4379,75 +4984,93 @@ export declare class SecurityRuleService implements SecurityRuleService {
4379
4984
  /** Returns the operation service for this service address. */
4380
4985
  getOperationService(): OperationService;
4381
4986
  /**
4382
- * Calls the `Get` RPC.
4987
+ * Retrieves a security rule by its ID.
4988
+ *
4383
4989
  */
4384
4990
  get(request: GetSecurityRuleRequest): SDKRequestClass<GetSecurityRuleRequest, SecurityRule>;
4385
4991
  /**
4386
- * Calls the `Get` RPC.
4992
+ * Retrieves a security rule by its ID.
4993
+ *
4387
4994
  */
4388
4995
  get(request: GetSecurityRuleRequest, metadata: Metadata): SDKRequestClass<GetSecurityRuleRequest, SecurityRule>;
4389
4996
  /**
4390
- * Calls the `Get` RPC.
4997
+ * Retrieves a security rule by its ID.
4998
+ *
4391
4999
  */
4392
5000
  get(request: GetSecurityRuleRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetSecurityRuleRequest, SecurityRule>;
4393
5001
  /**
4394
- * Calls the `GetByName` RPC.
5002
+ * Retrieves a security rule by its name within a specified security group.
5003
+ *
4395
5004
  */
4396
5005
  getByName(request: GetSecurityRuleByNameRequest): SDKRequestClass<GetSecurityRuleByNameRequest, SecurityRule>;
4397
5006
  /**
4398
- * Calls the `GetByName` RPC.
5007
+ * Retrieves a security rule by its name within a specified security group.
5008
+ *
4399
5009
  */
4400
5010
  getByName(request: GetSecurityRuleByNameRequest, metadata: Metadata): SDKRequestClass<GetSecurityRuleByNameRequest, SecurityRule>;
4401
5011
  /**
4402
- * Calls the `GetByName` RPC.
5012
+ * Retrieves a security rule by its name within a specified security group.
5013
+ *
4403
5014
  */
4404
5015
  getByName(request: GetSecurityRuleByNameRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetSecurityRuleByNameRequest, SecurityRule>;
4405
5016
  /**
4406
- * Calls the `List` RPC.
5017
+ * Lists security rules in a specified security group.
5018
+ *
4407
5019
  */
4408
5020
  list(request: ListSecurityRulesRequest): SDKRequestClass<ListSecurityRulesRequest, ListSecurityRulesResponse>;
4409
5021
  /**
4410
- * Calls the `List` RPC.
5022
+ * Lists security rules in a specified security group.
5023
+ *
4411
5024
  */
4412
5025
  list(request: ListSecurityRulesRequest, metadata: Metadata): SDKRequestClass<ListSecurityRulesRequest, ListSecurityRulesResponse>;
4413
5026
  /**
4414
- * Calls the `List` RPC.
5027
+ * Lists security rules in a specified security group.
5028
+ *
4415
5029
  */
4416
5030
  list(request: ListSecurityRulesRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListSecurityRulesRequest, ListSecurityRulesResponse>;
4417
5031
  /**
4418
- * Calls the `Create` RPC.
5032
+ * Creates a new security rule with the specified configuration.
5033
+ *
4419
5034
  */
4420
5035
  create(request: CreateSecurityRuleRequest): SDKRequestClass<CreateSecurityRuleRequest, OperationWrapper<GetOperationRequest>>;
4421
5036
  /**
4422
- * Calls the `Create` RPC.
5037
+ * Creates a new security rule with the specified configuration.
5038
+ *
4423
5039
  */
4424
5040
  create(request: CreateSecurityRuleRequest, metadata: Metadata): SDKRequestClass<CreateSecurityRuleRequest, OperationWrapper<GetOperationRequest>>;
4425
5041
  /**
4426
- * Calls the `Create` RPC.
5042
+ * Creates a new security rule with the specified configuration.
5043
+ *
4427
5044
  */
4428
5045
  create(request: CreateSecurityRuleRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreateSecurityRuleRequest, OperationWrapper<GetOperationRequest>>;
4429
5046
  /**
4430
- * Calls the `Update` RPC.
5047
+ * Updates an existing security rule with new configuration parameters.
5048
+ *
4431
5049
  */
4432
5050
  update(request: UpdateSecurityRuleRequest): SDKRequestClass<UpdateSecurityRuleRequest, OperationWrapper<GetOperationRequest>>;
4433
5051
  /**
4434
- * Calls the `Update` RPC.
5052
+ * Updates an existing security rule with new configuration parameters.
5053
+ *
4435
5054
  */
4436
5055
  update(request: UpdateSecurityRuleRequest, metadata: Metadata): SDKRequestClass<UpdateSecurityRuleRequest, OperationWrapper<GetOperationRequest>>;
4437
5056
  /**
4438
- * Calls the `Update` RPC.
5057
+ * Updates an existing security rule with new configuration parameters.
5058
+ *
4439
5059
  */
4440
5060
  update(request: UpdateSecurityRuleRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdateSecurityRuleRequest, OperationWrapper<GetOperationRequest>>;
4441
5061
  /**
4442
- * Calls the `Delete` RPC.
5062
+ * Deletes a security rule by its ID.
5063
+ *
4443
5064
  */
4444
5065
  delete(request: DeleteSecurityRuleRequest): SDKRequestClass<DeleteSecurityRuleRequest, OperationWrapper<GetOperationRequest>>;
4445
5066
  /**
4446
- * Calls the `Delete` RPC.
5067
+ * Deletes a security rule by its ID.
5068
+ *
4447
5069
  */
4448
5070
  delete(request: DeleteSecurityRuleRequest, metadata: Metadata): SDKRequestClass<DeleteSecurityRuleRequest, OperationWrapper<GetOperationRequest>>;
4449
5071
  /**
4450
- * Calls the `Delete` RPC.
5072
+ * Deletes a security rule by its ID.
5073
+ *
4451
5074
  */
4452
5075
  delete(request: DeleteSecurityRuleRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<DeleteSecurityRuleRequest, OperationWrapper<GetOperationRequest>>;
4453
5076
  }
@@ -4805,7 +5428,10 @@ export interface GetSubnetRequest {
4805
5428
  [unknownFieldsSymbol]?: Uint8Array | undefined;
4806
5429
  /** Returns a safe value for JSON logs. */
4807
5430
  [customJson]?: () => unknown;
4808
- /** Contains the `id` protobuf field. */
5431
+ /**
5432
+ * ID of the subnet.
5433
+ *
5434
+ */
4809
5435
  id: string;
4810
5436
  }
4811
5437
  /** Encodes, decodes, converts, and creates {@link GetSubnetRequest} messages. */
@@ -4819,11 +5445,14 @@ export interface GetSubnetByNameRequest {
4819
5445
  /** Returns a safe value for JSON logs. */
4820
5446
  [customJson]?: () => unknown;
4821
5447
  /**
4822
- * ID of the project.
5448
+ * ID of the parent project.
4823
5449
  *
4824
5450
  */
4825
5451
  parentId: string;
4826
- /** Contains the `name` protobuf field. */
5452
+ /**
5453
+ * Name of the subnet.
5454
+ *
5455
+ */
4827
5456
  name: string;
4828
5457
  }
4829
5458
  /** Encodes, decodes, converts, and creates {@link GetSubnetByNameRequest} messages. */
@@ -4841,9 +5470,15 @@ export interface ListSubnetsRequest {
4841
5470
  *
4842
5471
  */
4843
5472
  parentId: string;
4844
- /** Contains the `page_size` protobuf field. */
5473
+ /**
5474
+ * Maximum number of subnets to return.
5475
+ *
5476
+ */
4845
5477
  pageSize: Long;
4846
- /** Contains the `page_token` protobuf field. */
5478
+ /**
5479
+ * Token to retrieve the next page of subnets.
5480
+ *
5481
+ */
4847
5482
  pageToken: string;
4848
5483
  }
4849
5484
  /** Encodes, decodes, converts, and creates {@link ListSubnetsRequest} messages. */
@@ -4856,11 +5491,20 @@ export interface ListSubnetsByNetworkRequest {
4856
5491
  [unknownFieldsSymbol]?: Uint8Array | undefined;
4857
5492
  /** Returns a safe value for JSON logs. */
4858
5493
  [customJson]?: () => unknown;
4859
- /** Contains the `network_id` protobuf field. */
5494
+ /**
5495
+ * ID of the network.
5496
+ *
5497
+ */
4860
5498
  networkId: string;
4861
- /** Contains the `page_size` protobuf field. */
5499
+ /**
5500
+ * Maximum number of subnets to return.
5501
+ *
5502
+ */
4862
5503
  pageSize: Long;
4863
- /** Contains the `page_token` protobuf field. */
5504
+ /**
5505
+ * Token to retrieve the next page of subnets.
5506
+ *
5507
+ */
4864
5508
  pageToken: string;
4865
5509
  }
4866
5510
  /** Encodes, decodes, converts, and creates {@link ListSubnetsByNetworkRequest} messages. */
@@ -4888,9 +5532,15 @@ export interface CreateSubnetRequest {
4888
5532
  [unknownFieldsSymbol]?: Uint8Array | undefined;
4889
5533
  /** Returns a safe value for JSON logs. */
4890
5534
  [customJson]?: () => unknown;
4891
- /** Contains the `metadata` protobuf field. */
5535
+ /**
5536
+ * Metadata of the subnet.
5537
+ *
5538
+ */
4892
5539
  metadata?: ResourceMetadata | undefined;
4893
- /** Contains the `spec` protobuf field. */
5540
+ /**
5541
+ * Specification of the subnet.
5542
+ *
5543
+ */
4894
5544
  spec?: SubnetSpec | undefined;
4895
5545
  }
4896
5546
  /** Encodes, decodes, converts, and creates {@link CreateSubnetRequest} messages. */
@@ -4903,9 +5553,15 @@ export interface UpdateSubnetRequest {
4903
5553
  [unknownFieldsSymbol]?: Uint8Array | undefined;
4904
5554
  /** Returns a safe value for JSON logs. */
4905
5555
  [customJson]?: () => unknown;
4906
- /** Contains the `metadata` protobuf field. */
5556
+ /**
5557
+ * Updated metadata of the subnet.
5558
+ *
5559
+ */
4907
5560
  metadata?: ResourceMetadata | undefined;
4908
- /** Contains the `spec` protobuf field. */
5561
+ /**
5562
+ * Updated specification of the subnet.
5563
+ *
5564
+ */
4909
5565
  spec?: SubnetSpec | undefined;
4910
5566
  }
4911
5567
  /** Encodes, decodes, converts, and creates {@link UpdateSubnetRequest} messages. */
@@ -4918,7 +5574,10 @@ export interface DeleteSubnetRequest {
4918
5574
  [unknownFieldsSymbol]?: Uint8Array | undefined;
4919
5575
  /** Returns a safe value for JSON logs. */
4920
5576
  [customJson]?: () => unknown;
4921
- /** Contains the `id` protobuf field. */
5577
+ /**
5578
+ * ID of the subnet.
5579
+ *
5580
+ */
4922
5581
  id: string;
4923
5582
  }
4924
5583
  /** Encodes, decodes, converts, and creates {@link DeleteSubnetRequest} messages. */
@@ -5014,31 +5673,38 @@ export declare const SubnetServiceServiceDescription: {
5014
5673
  */
5015
5674
  export interface SubnetServiceServer extends UntypedServiceImplementation {
5016
5675
  /**
5017
- * Handles the `Get` RPC.
5676
+ * Retrieves a subnet by its ID.
5677
+ *
5018
5678
  */
5019
5679
  get: handleUnaryCall<GetSubnetRequest, Subnet>;
5020
5680
  /**
5021
- * Handles the `GetByName` RPC.
5681
+ * Retrieves a subnet by its name within a specified parent.
5682
+ *
5022
5683
  */
5023
5684
  getByName: handleUnaryCall<GetSubnetByNameRequest, Subnet>;
5024
5685
  /**
5025
- * Handles the `List` RPC.
5686
+ * Lists subnets within a specified parent.
5687
+ *
5026
5688
  */
5027
5689
  list: handleUnaryCall<ListSubnetsRequest, ListSubnetsResponse>;
5028
5690
  /**
5029
- * Handles the `ListByNetwork` RPC.
5691
+ * Lists subnets that belong to a specified network.
5692
+ *
5030
5693
  */
5031
5694
  listByNetwork: handleUnaryCall<ListSubnetsByNetworkRequest, ListSubnetsResponse>;
5032
5695
  /**
5033
- * Handles the `Create` RPC.
5696
+ * Creates a new subnet with the specified configuration.
5697
+ *
5034
5698
  */
5035
5699
  create: handleUnaryCall<CreateSubnetRequest, Operation>;
5036
5700
  /**
5037
- * Handles the `Update` RPC.
5701
+ * Updates an existing subnet with new configuration parameters.
5702
+ *
5038
5703
  */
5039
5704
  update: handleUnaryCall<UpdateSubnetRequest, Operation>;
5040
5705
  /**
5041
- * Handles the `Delete` RPC.
5706
+ * Deletes a subnet by its ID.
5707
+ *
5042
5708
  */
5043
5709
  delete: handleUnaryCall<DeleteSubnetRequest, Operation>;
5044
5710
  }
@@ -5047,31 +5713,38 @@ export interface SubnetServiceServer extends UntypedServiceImplementation {
5047
5713
  */
5048
5714
  export interface SubnetServiceBaseClient extends Client {
5049
5715
  /**
5050
- * Calls the `Get` RPC.
5716
+ * Retrieves a subnet by its ID.
5717
+ *
5051
5718
  */
5052
5719
  get(request: GetSubnetRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Subnet) => void): ClientUnaryCall;
5053
5720
  /**
5054
- * Calls the `GetByName` RPC.
5721
+ * Retrieves a subnet by its name within a specified parent.
5722
+ *
5055
5723
  */
5056
5724
  getByName(request: GetSubnetByNameRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Subnet) => void): ClientUnaryCall;
5057
5725
  /**
5058
- * Calls the `List` RPC.
5726
+ * Lists subnets within a specified parent.
5727
+ *
5059
5728
  */
5060
5729
  list(request: ListSubnetsRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: ListSubnetsResponse) => void): ClientUnaryCall;
5061
5730
  /**
5062
- * Calls the `ListByNetwork` RPC.
5731
+ * Lists subnets that belong to a specified network.
5732
+ *
5063
5733
  */
5064
5734
  listByNetwork(request: ListSubnetsByNetworkRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: ListSubnetsResponse) => void): ClientUnaryCall;
5065
5735
  /**
5066
- * Calls the `Create` RPC.
5736
+ * Creates a new subnet with the specified configuration.
5737
+ *
5067
5738
  */
5068
5739
  create(request: CreateSubnetRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
5069
5740
  /**
5070
- * Calls the `Update` RPC.
5741
+ * Updates an existing subnet with new configuration parameters.
5742
+ *
5071
5743
  */
5072
5744
  update(request: UpdateSubnetRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
5073
5745
  /**
5074
- * Calls the `Delete` RPC.
5746
+ * Deletes a subnet by its ID.
5747
+ *
5075
5748
  */
5076
5749
  delete(request: DeleteSubnetRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
5077
5750
  }
@@ -5087,93 +5760,115 @@ export declare const SubnetServiceBaseClient: {
5087
5760
  serviceName: string;
5088
5761
  };
5089
5762
  /**
5090
- * Calls the `nebius.vpc.v1.SubnetService` service.
5763
+ * SubnetService provides operations for managing subnets.
5764
+ *
5091
5765
  */
5092
5766
  export interface SubnetService {
5093
5767
  /** Contains the fully qualified protobuf service name. */
5094
5768
  $type: "nebius.vpc.v1.SubnetService";
5095
5769
  /**
5096
- * Calls the `Get` RPC.
5770
+ * Retrieves a subnet by its ID.
5771
+ *
5097
5772
  */
5098
5773
  get(request: GetSubnetRequest): SDKRequestClass<GetSubnetRequest, Subnet>;
5099
5774
  /**
5100
- * Calls the `Get` RPC.
5775
+ * Retrieves a subnet by its ID.
5776
+ *
5101
5777
  */
5102
5778
  get(request: GetSubnetRequest, metadata: Metadata): SDKRequestClass<GetSubnetRequest, Subnet>;
5103
5779
  /**
5104
- * Calls the `Get` RPC.
5780
+ * Retrieves a subnet by its ID.
5781
+ *
5105
5782
  */
5106
5783
  get(request: GetSubnetRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetSubnetRequest, Subnet>;
5107
5784
  /**
5108
- * Calls the `GetByName` RPC.
5785
+ * Retrieves a subnet by its name within a specified parent.
5786
+ *
5109
5787
  */
5110
5788
  getByName(request: GetSubnetByNameRequest): SDKRequestClass<GetSubnetByNameRequest, Subnet>;
5111
5789
  /**
5112
- * Calls the `GetByName` RPC.
5790
+ * Retrieves a subnet by its name within a specified parent.
5791
+ *
5113
5792
  */
5114
5793
  getByName(request: GetSubnetByNameRequest, metadata: Metadata): SDKRequestClass<GetSubnetByNameRequest, Subnet>;
5115
5794
  /**
5116
- * Calls the `GetByName` RPC.
5795
+ * Retrieves a subnet by its name within a specified parent.
5796
+ *
5117
5797
  */
5118
5798
  getByName(request: GetSubnetByNameRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetSubnetByNameRequest, Subnet>;
5119
5799
  /**
5120
- * Calls the `List` RPC.
5800
+ * Lists subnets within a specified parent.
5801
+ *
5121
5802
  */
5122
5803
  list(request: ListSubnetsRequest): SDKRequestClass<ListSubnetsRequest, ListSubnetsResponse>;
5123
5804
  /**
5124
- * Calls the `List` RPC.
5805
+ * Lists subnets within a specified parent.
5806
+ *
5125
5807
  */
5126
5808
  list(request: ListSubnetsRequest, metadata: Metadata): SDKRequestClass<ListSubnetsRequest, ListSubnetsResponse>;
5127
5809
  /**
5128
- * Calls the `List` RPC.
5810
+ * Lists subnets within a specified parent.
5811
+ *
5129
5812
  */
5130
5813
  list(request: ListSubnetsRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListSubnetsRequest, ListSubnetsResponse>;
5131
5814
  /**
5132
- * Calls the `ListByNetwork` RPC.
5815
+ * Lists subnets that belong to a specified network.
5816
+ *
5133
5817
  */
5134
5818
  listByNetwork(request: ListSubnetsByNetworkRequest): SDKRequestClass<ListSubnetsByNetworkRequest, ListSubnetsResponse>;
5135
5819
  /**
5136
- * Calls the `ListByNetwork` RPC.
5820
+ * Lists subnets that belong to a specified network.
5821
+ *
5137
5822
  */
5138
5823
  listByNetwork(request: ListSubnetsByNetworkRequest, metadata: Metadata): SDKRequestClass<ListSubnetsByNetworkRequest, ListSubnetsResponse>;
5139
5824
  /**
5140
- * Calls the `ListByNetwork` RPC.
5825
+ * Lists subnets that belong to a specified network.
5826
+ *
5141
5827
  */
5142
5828
  listByNetwork(request: ListSubnetsByNetworkRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListSubnetsByNetworkRequest, ListSubnetsResponse>;
5143
5829
  /**
5144
- * Calls the `Create` RPC.
5830
+ * Creates a new subnet with the specified configuration.
5831
+ *
5145
5832
  */
5146
5833
  create(request: CreateSubnetRequest): SDKRequestClass<CreateSubnetRequest, OperationWrapper<GetOperationRequest>>;
5147
5834
  /**
5148
- * Calls the `Create` RPC.
5835
+ * Creates a new subnet with the specified configuration.
5836
+ *
5149
5837
  */
5150
5838
  create(request: CreateSubnetRequest, metadata: Metadata): SDKRequestClass<CreateSubnetRequest, OperationWrapper<GetOperationRequest>>;
5151
5839
  /**
5152
- * Calls the `Create` RPC.
5840
+ * Creates a new subnet with the specified configuration.
5841
+ *
5153
5842
  */
5154
5843
  create(request: CreateSubnetRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreateSubnetRequest, OperationWrapper<GetOperationRequest>>;
5155
5844
  /**
5156
- * Calls the `Update` RPC.
5845
+ * Updates an existing subnet with new configuration parameters.
5846
+ *
5157
5847
  */
5158
5848
  update(request: UpdateSubnetRequest): SDKRequestClass<UpdateSubnetRequest, OperationWrapper<GetOperationRequest>>;
5159
5849
  /**
5160
- * Calls the `Update` RPC.
5850
+ * Updates an existing subnet with new configuration parameters.
5851
+ *
5161
5852
  */
5162
5853
  update(request: UpdateSubnetRequest, metadata: Metadata): SDKRequestClass<UpdateSubnetRequest, OperationWrapper<GetOperationRequest>>;
5163
5854
  /**
5164
- * Calls the `Update` RPC.
5855
+ * Updates an existing subnet with new configuration parameters.
5856
+ *
5165
5857
  */
5166
5858
  update(request: UpdateSubnetRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdateSubnetRequest, OperationWrapper<GetOperationRequest>>;
5167
5859
  /**
5168
- * Calls the `Delete` RPC.
5860
+ * Deletes a subnet by its ID.
5861
+ *
5169
5862
  */
5170
5863
  delete(request: DeleteSubnetRequest): SDKRequestClass<DeleteSubnetRequest, OperationWrapper<GetOperationRequest>>;
5171
5864
  /**
5172
- * Calls the `Delete` RPC.
5865
+ * Deletes a subnet by its ID.
5866
+ *
5173
5867
  */
5174
5868
  delete(request: DeleteSubnetRequest, metadata: Metadata): SDKRequestClass<DeleteSubnetRequest, OperationWrapper<GetOperationRequest>>;
5175
5869
  /**
5176
- * Calls the `Delete` RPC.
5870
+ * Deletes a subnet by its ID.
5871
+ *
5177
5872
  */
5178
5873
  delete(request: DeleteSubnetRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<DeleteSubnetRequest, OperationWrapper<GetOperationRequest>>;
5179
5874
  }
@@ -5191,87 +5886,108 @@ export declare class SubnetService implements SubnetService {
5191
5886
  /** Returns the operation service for this service address. */
5192
5887
  getOperationService(): OperationService;
5193
5888
  /**
5194
- * Calls the `Get` RPC.
5889
+ * Retrieves a subnet by its ID.
5890
+ *
5195
5891
  */
5196
5892
  get(request: GetSubnetRequest): SDKRequestClass<GetSubnetRequest, Subnet>;
5197
5893
  /**
5198
- * Calls the `Get` RPC.
5894
+ * Retrieves a subnet by its ID.
5895
+ *
5199
5896
  */
5200
5897
  get(request: GetSubnetRequest, metadata: Metadata): SDKRequestClass<GetSubnetRequest, Subnet>;
5201
5898
  /**
5202
- * Calls the `Get` RPC.
5899
+ * Retrieves a subnet by its ID.
5900
+ *
5203
5901
  */
5204
5902
  get(request: GetSubnetRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetSubnetRequest, Subnet>;
5205
5903
  /**
5206
- * Calls the `GetByName` RPC.
5904
+ * Retrieves a subnet by its name within a specified parent.
5905
+ *
5207
5906
  */
5208
5907
  getByName(request: GetSubnetByNameRequest): SDKRequestClass<GetSubnetByNameRequest, Subnet>;
5209
5908
  /**
5210
- * Calls the `GetByName` RPC.
5909
+ * Retrieves a subnet by its name within a specified parent.
5910
+ *
5211
5911
  */
5212
5912
  getByName(request: GetSubnetByNameRequest, metadata: Metadata): SDKRequestClass<GetSubnetByNameRequest, Subnet>;
5213
5913
  /**
5214
- * Calls the `GetByName` RPC.
5914
+ * Retrieves a subnet by its name within a specified parent.
5915
+ *
5215
5916
  */
5216
5917
  getByName(request: GetSubnetByNameRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetSubnetByNameRequest, Subnet>;
5217
5918
  /**
5218
- * Calls the `List` RPC.
5919
+ * Lists subnets within a specified parent.
5920
+ *
5219
5921
  */
5220
5922
  list(request: ListSubnetsRequest): SDKRequestClass<ListSubnetsRequest, ListSubnetsResponse>;
5221
5923
  /**
5222
- * Calls the `List` RPC.
5924
+ * Lists subnets within a specified parent.
5925
+ *
5223
5926
  */
5224
5927
  list(request: ListSubnetsRequest, metadata: Metadata): SDKRequestClass<ListSubnetsRequest, ListSubnetsResponse>;
5225
5928
  /**
5226
- * Calls the `List` RPC.
5929
+ * Lists subnets within a specified parent.
5930
+ *
5227
5931
  */
5228
5932
  list(request: ListSubnetsRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListSubnetsRequest, ListSubnetsResponse>;
5229
5933
  /**
5230
- * Calls the `ListByNetwork` RPC.
5934
+ * Lists subnets that belong to a specified network.
5935
+ *
5231
5936
  */
5232
5937
  listByNetwork(request: ListSubnetsByNetworkRequest): SDKRequestClass<ListSubnetsByNetworkRequest, ListSubnetsResponse>;
5233
5938
  /**
5234
- * Calls the `ListByNetwork` RPC.
5939
+ * Lists subnets that belong to a specified network.
5940
+ *
5235
5941
  */
5236
5942
  listByNetwork(request: ListSubnetsByNetworkRequest, metadata: Metadata): SDKRequestClass<ListSubnetsByNetworkRequest, ListSubnetsResponse>;
5237
5943
  /**
5238
- * Calls the `ListByNetwork` RPC.
5944
+ * Lists subnets that belong to a specified network.
5945
+ *
5239
5946
  */
5240
5947
  listByNetwork(request: ListSubnetsByNetworkRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListSubnetsByNetworkRequest, ListSubnetsResponse>;
5241
5948
  /**
5242
- * Calls the `Create` RPC.
5949
+ * Creates a new subnet with the specified configuration.
5950
+ *
5243
5951
  */
5244
5952
  create(request: CreateSubnetRequest): SDKRequestClass<CreateSubnetRequest, OperationWrapper<GetOperationRequest>>;
5245
5953
  /**
5246
- * Calls the `Create` RPC.
5954
+ * Creates a new subnet with the specified configuration.
5955
+ *
5247
5956
  */
5248
5957
  create(request: CreateSubnetRequest, metadata: Metadata): SDKRequestClass<CreateSubnetRequest, OperationWrapper<GetOperationRequest>>;
5249
5958
  /**
5250
- * Calls the `Create` RPC.
5959
+ * Creates a new subnet with the specified configuration.
5960
+ *
5251
5961
  */
5252
5962
  create(request: CreateSubnetRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreateSubnetRequest, OperationWrapper<GetOperationRequest>>;
5253
5963
  /**
5254
- * Calls the `Update` RPC.
5964
+ * Updates an existing subnet with new configuration parameters.
5965
+ *
5255
5966
  */
5256
5967
  update(request: UpdateSubnetRequest): SDKRequestClass<UpdateSubnetRequest, OperationWrapper<GetOperationRequest>>;
5257
5968
  /**
5258
- * Calls the `Update` RPC.
5969
+ * Updates an existing subnet with new configuration parameters.
5970
+ *
5259
5971
  */
5260
5972
  update(request: UpdateSubnetRequest, metadata: Metadata): SDKRequestClass<UpdateSubnetRequest, OperationWrapper<GetOperationRequest>>;
5261
5973
  /**
5262
- * Calls the `Update` RPC.
5974
+ * Updates an existing subnet with new configuration parameters.
5975
+ *
5263
5976
  */
5264
5977
  update(request: UpdateSubnetRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdateSubnetRequest, OperationWrapper<GetOperationRequest>>;
5265
5978
  /**
5266
- * Calls the `Delete` RPC.
5979
+ * Deletes a subnet by its ID.
5980
+ *
5267
5981
  */
5268
5982
  delete(request: DeleteSubnetRequest): SDKRequestClass<DeleteSubnetRequest, OperationWrapper<GetOperationRequest>>;
5269
5983
  /**
5270
- * Calls the `Delete` RPC.
5984
+ * Deletes a subnet by its ID.
5985
+ *
5271
5986
  */
5272
5987
  delete(request: DeleteSubnetRequest, metadata: Metadata): SDKRequestClass<DeleteSubnetRequest, OperationWrapper<GetOperationRequest>>;
5273
5988
  /**
5274
- * Calls the `Delete` RPC.
5989
+ * Deletes a subnet by its ID.
5990
+ *
5275
5991
  */
5276
5992
  delete(request: DeleteSubnetRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<DeleteSubnetRequest, OperationWrapper<GetOperationRequest>>;
5277
5993
  }
@@ -5555,7 +6271,10 @@ export interface GetTargetGroupRequest {
5555
6271
  [unknownFieldsSymbol]?: Uint8Array | undefined;
5556
6272
  /** Returns a safe value for JSON logs. */
5557
6273
  [customJson]?: () => unknown;
5558
- /** Contains the `id` protobuf field. */
6274
+ /**
6275
+ * ID of the target group.
6276
+ *
6277
+ */
5559
6278
  id: string;
5560
6279
  }
5561
6280
  /** Encodes, decodes, converts, and creates {@link GetTargetGroupRequest} messages. */
@@ -5568,9 +6287,15 @@ export interface UpdateTargetGroupRequest {
5568
6287
  [unknownFieldsSymbol]?: Uint8Array | undefined;
5569
6288
  /** Returns a safe value for JSON logs. */
5570
6289
  [customJson]?: () => unknown;
5571
- /** Contains the `metadata` protobuf field. */
6290
+ /**
6291
+ * Updated metadata of the target group.
6292
+ *
6293
+ */
5572
6294
  metadata?: ResourceMetadata | undefined;
5573
- /** Contains the `spec` protobuf field. */
6295
+ /**
6296
+ * Updated specification of the target group.
6297
+ *
6298
+ */
5574
6299
  spec?: TargetGroupSpec | undefined;
5575
6300
  }
5576
6301
  /** Encodes, decodes, converts, and creates {@link UpdateTargetGroupRequest} messages. */
@@ -5611,11 +6336,13 @@ export declare const TargetGroupServiceServiceDescription: {
5611
6336
  */
5612
6337
  export interface TargetGroupServiceServer extends UntypedServiceImplementation {
5613
6338
  /**
5614
- * Handles the `Get` RPC.
6339
+ * Retrieves a target group by its ID.
6340
+ *
5615
6341
  */
5616
6342
  get: handleUnaryCall<GetTargetGroupRequest, TargetGroup>;
5617
6343
  /**
5618
- * Handles the `Update` RPC.
6344
+ * Updates an existing target group with new configuration parameters.
6345
+ *
5619
6346
  */
5620
6347
  update: handleUnaryCall<UpdateTargetGroupRequest, Operation>;
5621
6348
  }
@@ -5624,11 +6351,13 @@ export interface TargetGroupServiceServer extends UntypedServiceImplementation {
5624
6351
  */
5625
6352
  export interface TargetGroupServiceBaseClient extends Client {
5626
6353
  /**
5627
- * Calls the `Get` RPC.
6354
+ * Retrieves a target group by its ID.
6355
+ *
5628
6356
  */
5629
6357
  get(request: GetTargetGroupRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: TargetGroup) => void): ClientUnaryCall;
5630
6358
  /**
5631
- * Calls the `Update` RPC.
6359
+ * Updates an existing target group with new configuration parameters.
6360
+ *
5632
6361
  */
5633
6362
  update(request: UpdateTargetGroupRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
5634
6363
  }
@@ -5644,33 +6373,40 @@ export declare const TargetGroupServiceBaseClient: {
5644
6373
  serviceName: string;
5645
6374
  };
5646
6375
  /**
5647
- * Calls the `nebius.vpc.v1.TargetGroupService` service.
6376
+ * TargetGroupService provides operations for managing target groups.
6377
+ *
5648
6378
  */
5649
6379
  export interface TargetGroupService {
5650
6380
  /** Contains the fully qualified protobuf service name. */
5651
6381
  $type: "nebius.vpc.v1.TargetGroupService";
5652
6382
  /**
5653
- * Calls the `Get` RPC.
6383
+ * Retrieves a target group by its ID.
6384
+ *
5654
6385
  */
5655
6386
  get(request: GetTargetGroupRequest): SDKRequestClass<GetTargetGroupRequest, TargetGroup>;
5656
6387
  /**
5657
- * Calls the `Get` RPC.
6388
+ * Retrieves a target group by its ID.
6389
+ *
5658
6390
  */
5659
6391
  get(request: GetTargetGroupRequest, metadata: Metadata): SDKRequestClass<GetTargetGroupRequest, TargetGroup>;
5660
6392
  /**
5661
- * Calls the `Get` RPC.
6393
+ * Retrieves a target group by its ID.
6394
+ *
5662
6395
  */
5663
6396
  get(request: GetTargetGroupRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetTargetGroupRequest, TargetGroup>;
5664
6397
  /**
5665
- * Calls the `Update` RPC.
6398
+ * Updates an existing target group with new configuration parameters.
6399
+ *
5666
6400
  */
5667
6401
  update(request: UpdateTargetGroupRequest): SDKRequestClass<UpdateTargetGroupRequest, OperationWrapper<GetOperationRequest>>;
5668
6402
  /**
5669
- * Calls the `Update` RPC.
6403
+ * Updates an existing target group with new configuration parameters.
6404
+ *
5670
6405
  */
5671
6406
  update(request: UpdateTargetGroupRequest, metadata: Metadata): SDKRequestClass<UpdateTargetGroupRequest, OperationWrapper<GetOperationRequest>>;
5672
6407
  /**
5673
- * Calls the `Update` RPC.
6408
+ * Updates an existing target group with new configuration parameters.
6409
+ *
5674
6410
  */
5675
6411
  update(request: UpdateTargetGroupRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdateTargetGroupRequest, OperationWrapper<GetOperationRequest>>;
5676
6412
  }
@@ -5688,27 +6424,33 @@ export declare class TargetGroupService implements TargetGroupService {
5688
6424
  /** Returns the operation service for this service address. */
5689
6425
  getOperationService(): OperationService;
5690
6426
  /**
5691
- * Calls the `Get` RPC.
6427
+ * Retrieves a target group by its ID.
6428
+ *
5692
6429
  */
5693
6430
  get(request: GetTargetGroupRequest): SDKRequestClass<GetTargetGroupRequest, TargetGroup>;
5694
6431
  /**
5695
- * Calls the `Get` RPC.
6432
+ * Retrieves a target group by its ID.
6433
+ *
5696
6434
  */
5697
6435
  get(request: GetTargetGroupRequest, metadata: Metadata): SDKRequestClass<GetTargetGroupRequest, TargetGroup>;
5698
6436
  /**
5699
- * Calls the `Get` RPC.
6437
+ * Retrieves a target group by its ID.
6438
+ *
5700
6439
  */
5701
6440
  get(request: GetTargetGroupRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetTargetGroupRequest, TargetGroup>;
5702
6441
  /**
5703
- * Calls the `Update` RPC.
6442
+ * Updates an existing target group with new configuration parameters.
6443
+ *
5704
6444
  */
5705
6445
  update(request: UpdateTargetGroupRequest): SDKRequestClass<UpdateTargetGroupRequest, OperationWrapper<GetOperationRequest>>;
5706
6446
  /**
5707
- * Calls the `Update` RPC.
6447
+ * Updates an existing target group with new configuration parameters.
6448
+ *
5708
6449
  */
5709
6450
  update(request: UpdateTargetGroupRequest, metadata: Metadata): SDKRequestClass<UpdateTargetGroupRequest, OperationWrapper<GetOperationRequest>>;
5710
6451
  /**
5711
- * Calls the `Update` RPC.
6452
+ * Updates an existing target group with new configuration parameters.
6453
+ *
5712
6454
  */
5713
6455
  update(request: UpdateTargetGroupRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdateTargetGroupRequest, OperationWrapper<GetOperationRequest>>;
5714
6456
  }