@nebius/js-sdk 0.2.26 → 0.2.27

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.
@@ -0,0 +1,355 @@
1
+ import { Long, unknownFieldsSymbol } from "../../../../runtime/protos/index.js";
2
+ import type { MessageFns, EnumInstance, EnumClass } from "../../../../runtime/protos/index.js";
3
+ import { customJson } from "../../../../runtime/util/logging.js";
4
+ import { ChannelCredentials, Client, ClientUnaryCall, ClientOptions, CallOptions, Metadata, ServiceError as GrpcServiceError, handleUnaryCall, UntypedServiceImplementation } from "@grpc/grpc-js";
5
+ import type { SDKInterface } from "../../../../sdk.js";
6
+ import { Request as SDKRequestClass, type RetryOptions } from "../../../../runtime/request.js";
7
+ import { Operation as OperationWrapper } from "../../../../runtime/operation.js";
8
+ import { GetOperationRequest, Operation, OperationService, ResourceMetadata } from "../../common/v1/index.js";
9
+ /**
10
+ * Request to get a tunnel by its identifier.
11
+ *
12
+ */
13
+ export interface GetTunnelRequest {
14
+ $type: "nebius.tunnel.v1.GetTunnelRequest";
15
+ [unknownFieldsSymbol]?: Uint8Array | undefined;
16
+ [customJson]?: () => unknown;
17
+ /**
18
+ * Unique identifier of the tunnel.
19
+ *
20
+ */
21
+ id: string;
22
+ }
23
+ export declare const GetTunnelRequest: MessageFns<GetTunnelRequest, "nebius.tunnel.v1.GetTunnelRequest">;
24
+ /**
25
+ * Request to list tunnels within a project.
26
+ *
27
+ */
28
+ export interface ListTunnelRequest {
29
+ $type: "nebius.tunnel.v1.ListTunnelRequest";
30
+ [unknownFieldsSymbol]?: Uint8Array | undefined;
31
+ [customJson]?: () => unknown;
32
+ /**
33
+ * Identifier of the parent project.
34
+ *
35
+ */
36
+ parentId: string;
37
+ /**
38
+ * Maximum number of items to return per page.
39
+ *
40
+ */
41
+ pageSize: Long;
42
+ /**
43
+ * Token for retrieving the next page of results.
44
+ *
45
+ */
46
+ pageToken: string;
47
+ /**
48
+ * Filter expression for narrowing results.
49
+ *
50
+ */
51
+ filter: string;
52
+ }
53
+ export declare const ListTunnelRequest: MessageFns<ListTunnelRequest, "nebius.tunnel.v1.ListTunnelRequest">;
54
+ /**
55
+ * Response containing a list of tunnels.
56
+ *
57
+ */
58
+ export interface ListTunnelsResponse {
59
+ $type: "nebius.tunnel.v1.ListTunnelsResponse";
60
+ [unknownFieldsSymbol]?: Uint8Array | undefined;
61
+ [customJson]?: () => unknown;
62
+ /**
63
+ * List of tunnels matching the request.
64
+ *
65
+ */
66
+ items: Tunnel[];
67
+ /**
68
+ * Token to retrieve the next page of results, empty if no more results.
69
+ *
70
+ */
71
+ nextPageToken: string;
72
+ }
73
+ export declare const ListTunnelsResponse: MessageFns<ListTunnelsResponse, "nebius.tunnel.v1.ListTunnelsResponse">;
74
+ /**
75
+ * Request to create a new tunnel.
76
+ *
77
+ */
78
+ export interface CreateTunnelRequest {
79
+ $type: "nebius.tunnel.v1.CreateTunnelRequest";
80
+ [unknownFieldsSymbol]?: Uint8Array | undefined;
81
+ [customJson]?: () => unknown;
82
+ /**
83
+ * Metadata for the new tunnel.
84
+ *
85
+ */
86
+ metadata?: ResourceMetadata | undefined;
87
+ /**
88
+ * Specification for the new tunnel.
89
+ *
90
+ */
91
+ spec?: TunnelSpec | undefined;
92
+ }
93
+ export declare const CreateTunnelRequest: MessageFns<CreateTunnelRequest, "nebius.tunnel.v1.CreateTunnelRequest">;
94
+ /**
95
+ * Request to update an existing tunnel.
96
+ *
97
+ */
98
+ export interface UpdateTunnelRequest {
99
+ $type: "nebius.tunnel.v1.UpdateTunnelRequest";
100
+ [unknownFieldsSymbol]?: Uint8Array | undefined;
101
+ [customJson]?: () => unknown;
102
+ /**
103
+ * Metadata identifying the tunnel to update. The `id` field is required;
104
+ * `resource_version`, when non-zero, enables optimistic concurrency control.
105
+ *
106
+ */
107
+ metadata?: ResourceMetadata | undefined;
108
+ /**
109
+ * New specification for the tunnel.
110
+ *
111
+ */
112
+ spec?: TunnelSpec | undefined;
113
+ }
114
+ export declare const UpdateTunnelRequest: MessageFns<UpdateTunnelRequest, "nebius.tunnel.v1.UpdateTunnelRequest">;
115
+ /**
116
+ * Request to delete a tunnel.
117
+ *
118
+ */
119
+ export interface DeleteTunnelRequest {
120
+ $type: "nebius.tunnel.v1.DeleteTunnelRequest";
121
+ [unknownFieldsSymbol]?: Uint8Array | undefined;
122
+ [customJson]?: () => unknown;
123
+ /**
124
+ * Unique identifier of the tunnel to delete.
125
+ *
126
+ */
127
+ id: string;
128
+ }
129
+ export declare const DeleteTunnelRequest: MessageFns<DeleteTunnelRequest, "nebius.tunnel.v1.DeleteTunnelRequest">;
130
+ export type TunnelServiceServiceDescription = typeof TunnelServiceServiceDescription;
131
+ export declare const TunnelServiceServiceDescription: {
132
+ readonly get: {
133
+ readonly path: "/nebius.tunnel.v1.TunnelService/Get";
134
+ readonly requestStream: false;
135
+ readonly responseStream: false;
136
+ readonly requestSerialize: (value: GetTunnelRequest) => Buffer<ArrayBuffer>;
137
+ readonly sendResetMask: false;
138
+ readonly requestDeserialize: (value: Buffer) => GetTunnelRequest;
139
+ readonly responseSerialize: (value: Tunnel) => Buffer<ArrayBuffer>;
140
+ readonly responseDeserialize: (value: Buffer) => Tunnel;
141
+ };
142
+ readonly list: {
143
+ readonly path: "/nebius.tunnel.v1.TunnelService/List";
144
+ readonly requestStream: false;
145
+ readonly responseStream: false;
146
+ readonly requestSerialize: (value: ListTunnelRequest) => Buffer<ArrayBuffer>;
147
+ readonly sendResetMask: false;
148
+ readonly requestDeserialize: (value: Buffer) => ListTunnelRequest;
149
+ readonly responseSerialize: (value: ListTunnelsResponse) => Buffer<ArrayBuffer>;
150
+ readonly responseDeserialize: (value: Buffer) => ListTunnelsResponse;
151
+ };
152
+ readonly create: {
153
+ readonly path: "/nebius.tunnel.v1.TunnelService/Create";
154
+ readonly requestStream: false;
155
+ readonly responseStream: false;
156
+ readonly requestSerialize: (value: CreateTunnelRequest) => Buffer<ArrayBuffer>;
157
+ readonly sendResetMask: false;
158
+ readonly requestDeserialize: (value: Buffer) => CreateTunnelRequest;
159
+ readonly responseSerialize: (value: Operation) => Buffer<ArrayBuffer>;
160
+ readonly responseDeserialize: (value: Buffer) => Operation;
161
+ };
162
+ readonly update: {
163
+ readonly path: "/nebius.tunnel.v1.TunnelService/Update";
164
+ readonly requestStream: false;
165
+ readonly responseStream: false;
166
+ readonly requestSerialize: (value: UpdateTunnelRequest) => Buffer<ArrayBuffer>;
167
+ readonly sendResetMask: true;
168
+ readonly requestDeserialize: (value: Buffer) => UpdateTunnelRequest;
169
+ readonly responseSerialize: (value: Operation) => Buffer<ArrayBuffer>;
170
+ readonly responseDeserialize: (value: Buffer) => Operation;
171
+ };
172
+ readonly delete: {
173
+ readonly path: "/nebius.tunnel.v1.TunnelService/Delete";
174
+ readonly requestStream: false;
175
+ readonly responseStream: false;
176
+ readonly requestSerialize: (value: DeleteTunnelRequest) => Buffer<ArrayBuffer>;
177
+ readonly sendResetMask: false;
178
+ readonly requestDeserialize: (value: Buffer) => DeleteTunnelRequest;
179
+ readonly responseSerialize: (value: Operation) => Buffer<ArrayBuffer>;
180
+ readonly responseDeserialize: (value: Buffer) => Operation;
181
+ };
182
+ };
183
+ export interface TunnelServiceServer extends UntypedServiceImplementation {
184
+ get: handleUnaryCall<GetTunnelRequest, Tunnel>;
185
+ list: handleUnaryCall<ListTunnelRequest, ListTunnelsResponse>;
186
+ create: handleUnaryCall<CreateTunnelRequest, Operation>;
187
+ update: handleUnaryCall<UpdateTunnelRequest, Operation>;
188
+ delete: handleUnaryCall<DeleteTunnelRequest, Operation>;
189
+ }
190
+ export interface TunnelServiceBaseClient extends Client {
191
+ get(request: GetTunnelRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Tunnel) => void): ClientUnaryCall;
192
+ list(request: ListTunnelRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: ListTunnelsResponse) => void): ClientUnaryCall;
193
+ create(request: CreateTunnelRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
194
+ update(request: UpdateTunnelRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
195
+ delete(request: DeleteTunnelRequest, metadata: Metadata, options: Partial<CallOptions>, callback: (error: GrpcServiceError | null, response: Operation) => void): ClientUnaryCall;
196
+ }
197
+ export declare const TunnelServiceBaseClient: {
198
+ new (address: string, credentials: ChannelCredentials, options?: Partial<ClientOptions>): TunnelServiceBaseClient;
199
+ service: typeof TunnelServiceServiceDescription;
200
+ serviceName: string;
201
+ };
202
+ /**
203
+ * TunnelService provides methods for managing tunnels.
204
+ * It supports CRUD operations for creating secure tunnel connections for applications.
205
+ *
206
+ */
207
+ export interface TunnelService {
208
+ $type: "nebius.tunnel.v1.TunnelService";
209
+ /**
210
+ * Retrieves a tunnel by its identifier.
211
+ *
212
+ */
213
+ get(request: GetTunnelRequest): SDKRequestClass<GetTunnelRequest, Tunnel>;
214
+ get(request: GetTunnelRequest, metadata: Metadata): SDKRequestClass<GetTunnelRequest, Tunnel>;
215
+ get(request: GetTunnelRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetTunnelRequest, Tunnel>;
216
+ /**
217
+ * Lists all tunnels within a parent.
218
+ *
219
+ */
220
+ list(request: ListTunnelRequest): SDKRequestClass<ListTunnelRequest, ListTunnelsResponse>;
221
+ list(request: ListTunnelRequest, metadata: Metadata): SDKRequestClass<ListTunnelRequest, ListTunnelsResponse>;
222
+ list(request: ListTunnelRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListTunnelRequest, ListTunnelsResponse>;
223
+ /**
224
+ * Creates a new tunnel.
225
+ *
226
+ */
227
+ create(request: CreateTunnelRequest): SDKRequestClass<CreateTunnelRequest, OperationWrapper<GetOperationRequest>>;
228
+ create(request: CreateTunnelRequest, metadata: Metadata): SDKRequestClass<CreateTunnelRequest, OperationWrapper<GetOperationRequest>>;
229
+ create(request: CreateTunnelRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreateTunnelRequest, OperationWrapper<GetOperationRequest>>;
230
+ /**
231
+ * Updates an existing tunnel.
232
+ *
233
+ */
234
+ update(request: UpdateTunnelRequest): SDKRequestClass<UpdateTunnelRequest, OperationWrapper<GetOperationRequest>>;
235
+ update(request: UpdateTunnelRequest, metadata: Metadata): SDKRequestClass<UpdateTunnelRequest, OperationWrapper<GetOperationRequest>>;
236
+ update(request: UpdateTunnelRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdateTunnelRequest, OperationWrapper<GetOperationRequest>>;
237
+ /**
238
+ * Deletes a tunnel by its identifier.
239
+ *
240
+ */
241
+ delete(request: DeleteTunnelRequest): SDKRequestClass<DeleteTunnelRequest, OperationWrapper<GetOperationRequest>>;
242
+ delete(request: DeleteTunnelRequest, metadata: Metadata): SDKRequestClass<DeleteTunnelRequest, OperationWrapper<GetOperationRequest>>;
243
+ delete(request: DeleteTunnelRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<DeleteTunnelRequest, OperationWrapper<GetOperationRequest>>;
244
+ }
245
+ export declare class TunnelService implements TunnelService {
246
+ private sdk;
247
+ $type: "nebius.tunnel.v1.TunnelService";
248
+ private addr;
249
+ private spec;
250
+ private apiServiceName;
251
+ constructor(sdk: SDKInterface);
252
+ getOperationService(): OperationService;
253
+ get(request: GetTunnelRequest): SDKRequestClass<GetTunnelRequest, Tunnel>;
254
+ get(request: GetTunnelRequest, metadata: Metadata): SDKRequestClass<GetTunnelRequest, Tunnel>;
255
+ get(request: GetTunnelRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<GetTunnelRequest, Tunnel>;
256
+ list(request: ListTunnelRequest): SDKRequestClass<ListTunnelRequest, ListTunnelsResponse>;
257
+ list(request: ListTunnelRequest, metadata: Metadata): SDKRequestClass<ListTunnelRequest, ListTunnelsResponse>;
258
+ list(request: ListTunnelRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<ListTunnelRequest, ListTunnelsResponse>;
259
+ create(request: CreateTunnelRequest): SDKRequestClass<CreateTunnelRequest, OperationWrapper<GetOperationRequest>>;
260
+ create(request: CreateTunnelRequest, metadata: Metadata): SDKRequestClass<CreateTunnelRequest, OperationWrapper<GetOperationRequest>>;
261
+ create(request: CreateTunnelRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<CreateTunnelRequest, OperationWrapper<GetOperationRequest>>;
262
+ update(request: UpdateTunnelRequest): SDKRequestClass<UpdateTunnelRequest, OperationWrapper<GetOperationRequest>>;
263
+ update(request: UpdateTunnelRequest, metadata: Metadata): SDKRequestClass<UpdateTunnelRequest, OperationWrapper<GetOperationRequest>>;
264
+ update(request: UpdateTunnelRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<UpdateTunnelRequest, OperationWrapper<GetOperationRequest>>;
265
+ delete(request: DeleteTunnelRequest): SDKRequestClass<DeleteTunnelRequest, OperationWrapper<GetOperationRequest>>;
266
+ delete(request: DeleteTunnelRequest, metadata: Metadata): SDKRequestClass<DeleteTunnelRequest, OperationWrapper<GetOperationRequest>>;
267
+ delete(request: DeleteTunnelRequest, metadata: Metadata, options: Partial<CallOptions> & RetryOptions): SDKRequestClass<DeleteTunnelRequest, OperationWrapper<GetOperationRequest>>;
268
+ }
269
+ /**
270
+ * State represents the lifecycle state of the tunnel.
271
+ *
272
+ */
273
+ export type TunnelStatus_State = EnumInstance<"UNRECOGNIZED" | "UNSPECIFIED" | "CREATED" | "DELETED">;
274
+ interface TunnelStatus_StateValueMembers {
275
+ /**
276
+ * Default unspecified state.
277
+ *
278
+ */
279
+ readonly UNSPECIFIED: EnumInstance<"UNRECOGNIZED" | "UNSPECIFIED" | "CREATED" | "DELETED">;
280
+ /**
281
+ * The tunnel has been created and is active.
282
+ *
283
+ */
284
+ readonly CREATED: EnumInstance<"UNRECOGNIZED" | "UNSPECIFIED" | "CREATED" | "DELETED">;
285
+ /**
286
+ * The tunnel has been deleted.
287
+ *
288
+ */
289
+ readonly DELETED: EnumInstance<"UNRECOGNIZED" | "UNSPECIFIED" | "CREATED" | "DELETED">;
290
+ }
291
+ export type TunnelStatus_StateClass = EnumClass<"UNRECOGNIZED" | "UNSPECIFIED" | "CREATED" | "DELETED"> & TunnelStatus_StateValueMembers;
292
+ export declare const TunnelStatus_State: TunnelStatus_StateClass;
293
+ /**
294
+ * Tunnel represents a secure tunnel connection for applications.
295
+ * It enables connectivity between applications and external services within a parent.
296
+ *
297
+ */
298
+ export interface Tunnel {
299
+ $type: "nebius.tunnel.v1.Tunnel";
300
+ [unknownFieldsSymbol]?: Uint8Array | undefined;
301
+ [customJson]?: () => unknown;
302
+ /**
303
+ * Resource metadata containing identification and hierarchy information.
304
+ *
305
+ */
306
+ metadata?: ResourceMetadata | undefined;
307
+ /**
308
+ * Specification of the tunnel configuration.
309
+ *
310
+ */
311
+ spec?: TunnelSpec | undefined;
312
+ /**
313
+ * Current status of the tunnel.
314
+ *
315
+ */
316
+ status?: TunnelStatus | undefined;
317
+ }
318
+ export declare const Tunnel: MessageFns<Tunnel, "nebius.tunnel.v1.Tunnel">;
319
+ /**
320
+ * TunnelSpec defines the configuration for the tunnel.
321
+ *
322
+ */
323
+ export interface TunnelSpec {
324
+ $type: "nebius.tunnel.v1.TunnelSpec";
325
+ [unknownFieldsSymbol]?: Uint8Array | undefined;
326
+ [customJson]?: () => unknown;
327
+ /**
328
+ * Human-readable display name for the tunnel.
329
+ *
330
+ */
331
+ title: string;
332
+ /**
333
+ * Arbitrary description of the tunnel provided by the user.
334
+ *
335
+ */
336
+ description: string;
337
+ }
338
+ export declare const TunnelSpec: MessageFns<TunnelSpec, "nebius.tunnel.v1.TunnelSpec">;
339
+ /**
340
+ * TunnelStatus represents the current state of the tunnel.
341
+ *
342
+ */
343
+ export interface TunnelStatus {
344
+ $type: "nebius.tunnel.v1.TunnelStatus";
345
+ [unknownFieldsSymbol]?: Uint8Array | undefined;
346
+ [customJson]?: () => unknown;
347
+ /**
348
+ * Current lifecycle state of the tunnel.
349
+ *
350
+ */
351
+ state: TunnelStatus_State;
352
+ }
353
+ export declare const TunnelStatus: MessageFns<TunnelStatus, "nebius.tunnel.v1.TunnelStatus">;
354
+ export {};
355
+ //# sourceMappingURL=index.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../../../../src/api/nebius/tunnel/v1/index.ts"],"names":[],"mappings":"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"}