@databricks/sdk-features 0.49.0 → 0.53.0

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.
@@ -1,8 +1,522 @@
1
+ import { z } from "zod";
1
2
  import { Temporal } from "@js-temporal/polyfill";
2
3
  import { FieldMask } from "@databricks/sdk-core/wkt";
3
- import { z } from "zod";
4
4
 
5
5
  //#region src/v1/model.d.ts
6
+ /** Error codes returned by Databricks APIs to indicate specific failure conditions. */
7
+ declare const ErrorCode: {
8
+ /**
9
+ * Unknown error. This error generally should not be returned explicitly, but will be used
10
+ * as a fallback if the error enum is missing from the message for some reason.
11
+ *
12
+ * It's assigned tag 0 to follow the best practice from
13
+ * https://developers.google.com/protocol-buffers/docs/style#enums
14
+ *
15
+ * TODO(PLAT-55898): Add custom option to declare HTTP and gRPC mappings.
16
+ * Maps to:
17
+ * - google.rpc.Code: UNKNOWN = 2;
18
+ * - HTTP code: 500 Internal Server Error
19
+ */
20
+ readonly UNKNOWN: "UNKNOWN";
21
+ /**
22
+ * Internal error. This means that some invariants expected by the underlying system have been
23
+ * broken. This error code is reserved for serious errors, which generally cannot be resolved
24
+ * by the user.
25
+ *
26
+ * Prefer this over all kinds of detailed error messages (e.g IO_ERROR), unless there's some
27
+ * automation that relies on the custom error code.
28
+ *
29
+ * Maps to:
30
+ * - google.rpc.Code: INTERNAL = 13;
31
+ * - HTTP code: 500 Internal Server Error
32
+ */
33
+ readonly INTERNAL_ERROR: "INTERNAL_ERROR";
34
+ /**
35
+ * The service is currently unavailable. This is most likely a transient condition, which can be
36
+ * corrected by retrying with a backoff. Note that it is not always safe to retry non-idempotent
37
+ * operations.
38
+ *
39
+ * Prefer this over SERVICE_UNDER_MAINTENANCE, WORKSPACE_TEMPORARILY_UNAVAILABLE.
40
+ *
41
+ * See https://docs.google.com/document/d/1FL8p2sbYWqBPL-UvhzI7uXAw4EoLG7Rj6PAOQWZRSOk/edit#
42
+ * for guideline on how to pick this vs RESOURCE_EXHAUSTED.
43
+ *
44
+ * Maps to:
45
+ * - google.rpc.Code: UNAVAILABLE = 14;
46
+ * - HTTP code: 503 Service Unavailable
47
+ */
48
+ readonly TEMPORARILY_UNAVAILABLE: "TEMPORARILY_UNAVAILABLE";
49
+ /**
50
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
51
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
52
+ * Indicates that an IOException has been internally thrown.
53
+ */
54
+ readonly IO_ERROR: "IO_ERROR";
55
+ /**
56
+ * The request is invalid. Prefer more specific error code whenever possible.
57
+ * Also see similar recommendation for the google.rpc.Code.FAILED_PRECONDITION.
58
+ *
59
+ * Prefer this error code over MALFORMED_REQUEST, INVALID_STATE, UNPARSEABLE_HTTP_ERROR.
60
+ *
61
+ * Maps to:
62
+ * - google.rpc.Code: FAILED_PRECONDITION = 9;
63
+ * - HTTP code: 400 Bad Request
64
+ */
65
+ readonly BAD_REQUEST: "BAD_REQUEST";
66
+ /**
67
+ * An external service is unavailable temporarily as it is being updated/re-deployed. Indicates
68
+ * gateway proxy to safely retry the request.
69
+ */
70
+ readonly SERVICE_UNDER_MAINTENANCE: "SERVICE_UNDER_MAINTENANCE"; /** A workspace is temporarily unavailable as the workspace is being re-assigned. */
71
+ readonly WORKSPACE_TEMPORARILY_UNAVAILABLE: "WORKSPACE_TEMPORARILY_UNAVAILABLE";
72
+ /**
73
+ * The deadline expired before the operation could complete. For operations that change the state
74
+ * of the system, this error may be returned even if the operation has completed successfully.
75
+ * For example, a successful response from a server could have been delayed long enough for
76
+ * the deadline to expire. When possible - implementations should make sure further processing of
77
+ * the request is aborted, e.g. by throwing an exception instead of making the RPC request,
78
+ * making the database query, etc.
79
+ *
80
+ * Maps to:
81
+ * - google.rpc.Code: DEADLINE_EXCEEDED = 4;
82
+ * - HTTP code: 504 Gateway Timeout
83
+ */
84
+ readonly DEADLINE_EXCEEDED: "DEADLINE_EXCEEDED";
85
+ /**
86
+ * The operation was canceled by the caller. An example - client closed the connection without
87
+ * waiting for a response.
88
+ *
89
+ * Maps to:
90
+ * - google.rpc.Code: CANCELLED = 1;
91
+ * - HTTP code: 499 Client Closed Request
92
+ */
93
+ readonly CANCELLED: "CANCELLED";
94
+ /**
95
+ * The operation is rejected because of either rate limiting or resource quota,
96
+ * such as the client has sent too many requests recently or the client has allocated too many
97
+ * resources.
98
+ *
99
+ * See https://docs.google.com/document/d/1FL8p2sbYWqBPL-UvhzI7uXAw4EoLG7Rj6PAOQWZRSOk/edit#
100
+ * for guideline on how to pick this vs TEMPORARILY_UNAVAILABLE.
101
+ *
102
+ * Maps to:
103
+ * - google.rpc.Code: RESOURCE_EXHAUSTED = 8;
104
+ * - HTTP code: 429 Too Many Requests
105
+ */
106
+ readonly RESOURCE_EXHAUSTED: "RESOURCE_EXHAUSTED";
107
+ /**
108
+ * The operation was aborted, typically due to a concurrency issue such as a sequencer
109
+ * check failure, transaction abort, or transaction conflict.
110
+ *
111
+ * Maps to:
112
+ * - google.rpc.Code: ABORTED = 10;
113
+ * - HTTP code: 409 Conflict
114
+ */
115
+ readonly ABORTED: "ABORTED";
116
+ /**
117
+ * Operation was performed on a resource that does not exist,
118
+ * e.g. file or directory was not found.
119
+ *
120
+ * Maps to:
121
+ * - google.rpc.Code: NOT_FOUND = 5;
122
+ * - HTTP code: 404 Not Found
123
+ */
124
+ readonly NOT_FOUND: "NOT_FOUND";
125
+ /**
126
+ * Operation was rejected due a conflict with an existing resource, e.g. attempted to create
127
+ * file or directory that already exists.
128
+ *
129
+ * Prefer this over RESOURCE_CONFLICT.
130
+ *
131
+ * Maps to:
132
+ * - google.rpc.Code: ALREADY_EXISTS = 6;
133
+ * - HTTP code: 409 Conflict
134
+ */
135
+ readonly ALREADY_EXISTS: "ALREADY_EXISTS";
136
+ /**
137
+ * The request does not have valid authentication (AuthN) credentials for the operation.
138
+ *
139
+ * Prefer this over CUSTOMER_UNAUTHORIZED, unless you need to keep consistent behavior with legacy
140
+ * code.
141
+ * For authorization (AuthZ) errors use PERMISSION_DENIED.
142
+ *
143
+ * Maps to:
144
+ * - google.rpc.Code: UNAUTHENTICATED = 16;
145
+ * - HTTP code: 401 Unauthorized
146
+ */
147
+ readonly UNAUTHENTICATED: "UNAUTHENTICATED";
148
+ /**
149
+ * The service is currently unavailable. Please note that the unavailability may or may not be transient.
150
+ * That means if this is a non-transient condition, retrying it does not work. If the unavailability
151
+ * is certainly a transient condition, pleases use `TEMPORARILY_UNAVAILABLE` which signals its transient
152
+ * nature explicitly.
153
+ * An example of this error code’s use case is that when DNS resolution fails, the DNS resolver does
154
+ * not know whether it is because the domain name is completely wrong (non-transient situation) or
155
+ * the domain name is valid but the DNS server does not have an entry for this domain name yet (transient
156
+ * situation). Hence, `UNAVAILABLE` is suitable for this case.
157
+ *
158
+ * Maps to:
159
+ * - google.rpc.Code: UNAVAILABLE = 14;
160
+ * - HTTP code: 503 Service Unavailable
161
+ */
162
+ readonly UNAVAILABLE: "UNAVAILABLE";
163
+ /**
164
+ * Supplied value for a parameter was invalid (e.g., giving a number for a string parameter).
165
+ *
166
+ * Maps to:
167
+ * - google.rpc.Code: INVALID_ARGUMENT = 3;
168
+ * - HTTP code: 400 Bad Request
169
+ */
170
+ readonly INVALID_PARAMETER_VALUE: "INVALID_PARAMETER_VALUE";
171
+ /**
172
+ * Indicates that the given API endpoint does not exist. Legacy, when possible - NOT_IMPLEMENTED
173
+ * should be used instead to indicate that API doesn't exist.
174
+ *
175
+ * Maps to:
176
+ * - google.rpc.Code: NOT_FOUND = 5;
177
+ * - HTTP code: 404 Not Found
178
+ */
179
+ readonly ENDPOINT_NOT_FOUND: "ENDPOINT_NOT_FOUND"; /** Indicates that the given API request was malformed. */
180
+ readonly MALFORMED_REQUEST: "MALFORMED_REQUEST";
181
+ /**
182
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
183
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
184
+ * If one or more of the inputs to a given RPC are not in a valid state for the action.
185
+ */
186
+ readonly INVALID_STATE: "INVALID_STATE";
187
+ /**
188
+ * The caller does not have permission to execute the specified operation.
189
+ * PERMISSION_DENIED must not be used for rejections caused by exhausting some resource,
190
+ * use RESOURCE_EXHAUSTED instead for those errors.
191
+ * PERMISSION_DENIED must not be used if the caller can not be identified,
192
+ * use CUSTOMER_UNAUTHORIZED instead for those errors.
193
+ * This error code does not imply the request is valid or the requested entity exists or
194
+ * satisfies other pre-conditions.
195
+ *
196
+ * Maps to:
197
+ * - google.rpc.Code: PERMISSION_DENIED = 7;
198
+ * - HTTP code: 403 Forbidden
199
+ */
200
+ readonly PERMISSION_DENIED: "PERMISSION_DENIED";
201
+ /**
202
+ * NOTE: Deprecated due to inconsistent mapping in legacy code, see
203
+ * https://docs.google.com/document/d/17TZIKX_Y39cJMBr333lc-d5dTvvBLSu3DPUyGU5eMJg/edit?disco=AAAAzVGt6FA.
204
+ * Prefer using NOT_FOUND or PERMISSION_DENIED.
205
+ *
206
+ * If a given user/entity is trying to use a feature which has been disabled.
207
+ *
208
+ * Maps to:
209
+ * - google.rpc.Code: NOT_FOUND = 5;
210
+ * - HTTP code: 404 Not Found
211
+ */
212
+ readonly FEATURE_DISABLED: "FEATURE_DISABLED";
213
+ /**
214
+ * The request does not have valid authentication (AuthN) credentials for the operation.
215
+ *
216
+ * For authentication (AuthN) errors prefer using UNAUTHENTICATED, unless you need to keep
217
+ * consistent behavior with legacy code.
218
+ * For authorization (AuthZ) errors use PERMISSION_DENIED.
219
+ *
220
+ * Important: name is confusing, this error code is for authentication (AuthN) errors, not
221
+ * authorization (AuthZ) errors. It maps to 401 Unauthorized and suffers from the same confusing
222
+ * naming. See https://datatracker.ietf.org/doc/html/rfc7235#section-3.1 - "[...] status code
223
+ * indicates that the request has not been applied because it lacks valid authentication
224
+ * credentials for the target resource. [...] If the request included authentication credentials,
225
+ * then the 401 response indicates that authorization has been refused for those credentials."
226
+ *
227
+ * Also, see https://stackoverflow.com/a/6937030/16352922, it covers it pretty well.
228
+ *
229
+ * Maps to:
230
+ * - google.rpc.Code: UNAUTHENTICATED = 16;
231
+ * - HTTP code: 401 Unauthorized
232
+ */
233
+ readonly CUSTOMER_UNAUTHORIZED: "CUSTOMER_UNAUTHORIZED";
234
+ /**
235
+ * The operation is rejected because of request rate limit, for example rate limiting applied to
236
+ * users, workspaces, IP addresses, etc.
237
+ *
238
+ * Prefer a more generic RESOURCE_EXHAUSTED for the new use cases.
239
+ *
240
+ * See https://docs.google.com/document/d/1FL8p2sbYWqBPL-UvhzI7uXAw4EoLG7Rj6PAOQWZRSOk/edit#
241
+ * for guideline on the rate limiting vs throttling.
242
+ *
243
+ * Maps to:
244
+ * - google.rpc.Code: RESOURCE_EXHAUSTED = 8;
245
+ * - HTTP code: 429 Too Many Requests
246
+ */
247
+ readonly REQUEST_LIMIT_EXCEEDED: "REQUEST_LIMIT_EXCEEDED"; /** Indicates API request was rejected due a conflict with an existing resource. */
248
+ readonly RESOURCE_CONFLICT: "RESOURCE_CONFLICT";
249
+ /**
250
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
251
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
252
+ * Indicates that the HTTP response cannot be correctly deserialized.
253
+ * This currently is only used in DUST test clients, and not by any real service code.
254
+ */
255
+ readonly UNPARSEABLE_HTTP_ERROR: "UNPARSEABLE_HTTP_ERROR";
256
+ /**
257
+ * The operation is not implemented or is not supported/enabled in this service.
258
+ *
259
+ * Maps to:
260
+ * - google.rpc.Code: UNIMPLEMENTED = 12;
261
+ * - HTTP code: 501 Not Implemented
262
+ */
263
+ readonly NOT_IMPLEMENTED: "NOT_IMPLEMENTED";
264
+ /**
265
+ * Unrecoverable data loss or corruption.
266
+ *
267
+ * One of the major use cases is to indicate that server failed to validate the integrity of
268
+ * the request. This error can occur when the checksum specified in the `X-Databricks-Checksum`
269
+ * request header (or trailer) doesn't match the actual request content checksum.
270
+ *
271
+ * Note, in case of the severe corruption that results in a malformed request, the server may
272
+ * send a generic `400 Bad Request` response rather than sending this error code.
273
+ *
274
+ * Maps to:
275
+ * - google.rpc.Code: DATA_LOSS = 15;
276
+ * - HTTP code: 500 Internal Server Error
277
+ */
278
+ readonly DATA_LOSS: "DATA_LOSS"; /** If the user attempts to perform an invalid state transition on a shard. */
279
+ readonly INVALID_STATE_TRANSITION: "INVALID_STATE_TRANSITION";
280
+ /**
281
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
282
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
283
+ * Unable to perform the operation because the shard was locked by some other operation.
284
+ */
285
+ readonly COULD_NOT_ACQUIRE_LOCK: "COULD_NOT_ACQUIRE_LOCK";
286
+ /**
287
+ * NOTE: Deprecated, prefer using ALREADY_EXISTS.
288
+ * Unlike ALREADY_EXISTS - this maps to HTTP code 400 Bad Request due to legacy reasons,
289
+ * remapping will be a backwards incompatible change.
290
+ *
291
+ * Operation was performed on a resource that already exists.
292
+ */
293
+ readonly RESOURCE_ALREADY_EXISTS: "RESOURCE_ALREADY_EXISTS";
294
+ /**
295
+ * NOTE: Deprecated, prefer using NOT_FOUND - see the note for the RESOURCE_ALREADY_EXISTS,
296
+ * because this pair of codes is related and RESOURCE_ALREADY_EXISTS has bad mapping to the HTTP
297
+ * codes we added new error codes NOT_FOUND and ALREADY_EXISTS, and recommend to use them instead.
298
+ *
299
+ * Operation was performed on a resource that does not exist.
300
+ */
301
+ readonly RESOURCE_DOES_NOT_EXIST: "RESOURCE_DOES_NOT_EXIST";
302
+ /**
303
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
304
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
305
+ */
306
+ readonly QUOTA_EXCEEDED: "QUOTA_EXCEEDED";
307
+ /**
308
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
309
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
310
+ */
311
+ readonly MAX_BLOCK_SIZE_EXCEEDED: "MAX_BLOCK_SIZE_EXCEEDED";
312
+ /**
313
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
314
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
315
+ */
316
+ readonly MAX_READ_SIZE_EXCEEDED: "MAX_READ_SIZE_EXCEEDED";
317
+ readonly PARTIAL_DELETE: "PARTIAL_DELETE";
318
+ readonly MAX_LIST_SIZE_EXCEEDED: "MAX_LIST_SIZE_EXCEEDED";
319
+ /**
320
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
321
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
322
+ */
323
+ readonly DRY_RUN_FAILED: "DRY_RUN_FAILED";
324
+ /**
325
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
326
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
327
+ * Cluster request was rejected because it would exceed a resource limit.
328
+ */
329
+ readonly RESOURCE_LIMIT_EXCEEDED: "RESOURCE_LIMIT_EXCEEDED";
330
+ /**
331
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
332
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
333
+ */
334
+ readonly DIRECTORY_NOT_EMPTY: "DIRECTORY_NOT_EMPTY";
335
+ /**
336
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
337
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
338
+ */
339
+ readonly DIRECTORY_PROTECTED: "DIRECTORY_PROTECTED";
340
+ /**
341
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
342
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
343
+ */
344
+ readonly MAX_NOTEBOOK_SIZE_EXCEEDED: "MAX_NOTEBOOK_SIZE_EXCEEDED";
345
+ readonly MAX_CHILD_NODE_SIZE_EXCEEDED: "MAX_CHILD_NODE_SIZE_EXCEEDED";
346
+ /**
347
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
348
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
349
+ */
350
+ readonly SEARCH_QUERY_TOO_LONG: "SEARCH_QUERY_TOO_LONG";
351
+ /**
352
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
353
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
354
+ */
355
+ readonly SEARCH_QUERY_TOO_SHORT: "SEARCH_QUERY_TOO_SHORT";
356
+ /**
357
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
358
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
359
+ */
360
+ readonly MANAGED_RESOURCE_GROUP_DOES_NOT_EXIST: "MANAGED_RESOURCE_GROUP_DOES_NOT_EXIST";
361
+ /**
362
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
363
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
364
+ */
365
+ readonly PERMISSION_NOT_PROPAGATED: "PERMISSION_NOT_PROPAGATED";
366
+ /**
367
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
368
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
369
+ */
370
+ readonly DEPLOYMENT_TIMEOUT: "DEPLOYMENT_TIMEOUT";
371
+ /**
372
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
373
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
374
+ */
375
+ readonly GIT_CONFLICT: "GIT_CONFLICT";
376
+ /**
377
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
378
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
379
+ */
380
+ readonly GIT_UNKNOWN_REF: "GIT_UNKNOWN_REF";
381
+ /**
382
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
383
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
384
+ */
385
+ readonly GIT_SENSITIVE_TOKEN_DETECTED: "GIT_SENSITIVE_TOKEN_DETECTED";
386
+ /**
387
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
388
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
389
+ */
390
+ readonly GIT_URL_NOT_ON_ALLOW_LIST: "GIT_URL_NOT_ON_ALLOW_LIST";
391
+ /**
392
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
393
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
394
+ */
395
+ readonly GIT_REMOTE_ERROR: "GIT_REMOTE_ERROR";
396
+ /**
397
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
398
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
399
+ */
400
+ readonly PROJECTS_OPERATION_TIMEOUT: "PROJECTS_OPERATION_TIMEOUT";
401
+ /**
402
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
403
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
404
+ */
405
+ readonly IPYNB_FILE_IN_REPO: "IPYNB_FILE_IN_REPO";
406
+ /**
407
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
408
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
409
+ */
410
+ readonly INSECURE_PARTNER_RESPONSE: "INSECURE_PARTNER_RESPONSE";
411
+ /**
412
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
413
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
414
+ */
415
+ readonly MALFORMED_PARTNER_RESPONSE: "MALFORMED_PARTNER_RESPONSE";
416
+ readonly METASTORE_DOES_NOT_EXIST: "METASTORE_DOES_NOT_EXIST";
417
+ /**
418
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
419
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
420
+ */
421
+ readonly DAC_DOES_NOT_EXIST: "DAC_DOES_NOT_EXIST";
422
+ readonly CATALOG_DOES_NOT_EXIST: "CATALOG_DOES_NOT_EXIST";
423
+ readonly SCHEMA_DOES_NOT_EXIST: "SCHEMA_DOES_NOT_EXIST";
424
+ readonly TABLE_DOES_NOT_EXIST: "TABLE_DOES_NOT_EXIST";
425
+ readonly SHARE_DOES_NOT_EXIST: "SHARE_DOES_NOT_EXIST";
426
+ readonly RECIPIENT_DOES_NOT_EXIST: "RECIPIENT_DOES_NOT_EXIST";
427
+ readonly STORAGE_CREDENTIAL_DOES_NOT_EXIST: "STORAGE_CREDENTIAL_DOES_NOT_EXIST";
428
+ readonly EXTERNAL_LOCATION_DOES_NOT_EXIST: "EXTERNAL_LOCATION_DOES_NOT_EXIST";
429
+ readonly PRINCIPAL_DOES_NOT_EXIST: "PRINCIPAL_DOES_NOT_EXIST";
430
+ readonly PROVIDER_DOES_NOT_EXIST: "PROVIDER_DOES_NOT_EXIST";
431
+ /**
432
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
433
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
434
+ */
435
+ readonly METASTORE_ALREADY_EXISTS: "METASTORE_ALREADY_EXISTS";
436
+ /**
437
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
438
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
439
+ */
440
+ readonly DAC_ALREADY_EXISTS: "DAC_ALREADY_EXISTS";
441
+ /**
442
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
443
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
444
+ */
445
+ readonly CATALOG_ALREADY_EXISTS: "CATALOG_ALREADY_EXISTS";
446
+ /**
447
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
448
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
449
+ */
450
+ readonly SCHEMA_ALREADY_EXISTS: "SCHEMA_ALREADY_EXISTS";
451
+ /**
452
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
453
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
454
+ */
455
+ readonly TABLE_ALREADY_EXISTS: "TABLE_ALREADY_EXISTS";
456
+ /**
457
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
458
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
459
+ */
460
+ readonly SHARE_ALREADY_EXISTS: "SHARE_ALREADY_EXISTS";
461
+ /**
462
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
463
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
464
+ */
465
+ readonly RECIPIENT_ALREADY_EXISTS: "RECIPIENT_ALREADY_EXISTS";
466
+ /**
467
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
468
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
469
+ */
470
+ readonly STORAGE_CREDENTIAL_ALREADY_EXISTS: "STORAGE_CREDENTIAL_ALREADY_EXISTS";
471
+ /**
472
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
473
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
474
+ */
475
+ readonly EXTERNAL_LOCATION_ALREADY_EXISTS: "EXTERNAL_LOCATION_ALREADY_EXISTS";
476
+ /**
477
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
478
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
479
+ */
480
+ readonly PROVIDER_ALREADY_EXISTS: "PROVIDER_ALREADY_EXISTS";
481
+ /**
482
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
483
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
484
+ */
485
+ readonly CATALOG_NOT_EMPTY: "CATALOG_NOT_EMPTY";
486
+ /**
487
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
488
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
489
+ */
490
+ readonly SCHEMA_NOT_EMPTY: "SCHEMA_NOT_EMPTY";
491
+ /**
492
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
493
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
494
+ */
495
+ readonly METASTORE_NOT_EMPTY: "METASTORE_NOT_EMPTY";
496
+ /**
497
+ * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,
498
+ * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.
499
+ */
500
+ readonly PROVIDER_SHARE_NOT_ACCESSIBLE: "PROVIDER_SHARE_NOT_ACCESSIBLE";
501
+ };
502
+ type ErrorCode = (typeof ErrorCode)[keyof typeof ErrorCode] | (string & {});
503
+ declare const FunctionFunctionType: {
504
+ readonly FUNCTION_TYPE_UNSPECIFIED: "FUNCTION_TYPE_UNSPECIFIED";
505
+ readonly AVG: "AVG";
506
+ readonly COUNT: "COUNT";
507
+ readonly SUM: "SUM";
508
+ readonly MIN: "MIN";
509
+ readonly MAX: "MAX";
510
+ readonly FIRST: "FIRST";
511
+ readonly LAST: "LAST";
512
+ readonly APPROX_COUNT_DISTINCT: "APPROX_COUNT_DISTINCT";
513
+ readonly APPROX_PERCENTILE: "APPROX_PERCENTILE";
514
+ readonly STDDEV_POP: "STDDEV_POP";
515
+ readonly STDDEV_SAMP: "STDDEV_SAMP";
516
+ readonly VAR_POP: "VAR_POP";
517
+ readonly VAR_SAMP: "VAR_SAMP";
518
+ };
519
+ type FunctionFunctionType = (typeof FunctionFunctionType)[keyof typeof FunctionFunctionType] | (string & {});
6
520
  /**
7
521
  * Scalar data types for request-time field definitions.
8
522
  * Only flat (non-nested) types are supported.
@@ -22,6 +536,28 @@ declare const ScalarDataType: {
22
536
  readonly DECIMAL: "DECIMAL";
23
537
  };
24
538
  type ScalarDataType = (typeof ScalarDataType)[keyof typeof ScalarDataType] | (string & {});
539
+ /** Lifecycle state of a backfill. */
540
+ declare const BackfillOperationMetadata_State: {
541
+ /** The backfill state is unspecified. */readonly STATE_UNSPECIFIED: "STATE_UNSPECIFIED"; /** The backfill is pending. */
542
+ readonly PENDING: "PENDING"; /** The backfill is running. */
543
+ readonly RUNNING: "RUNNING"; /** The backfill succeeded. */
544
+ readonly SUCCEEDED: "SUCCEEDED"; /** The backfill failed. */
545
+ readonly FAILED: "FAILED"; /** The backfill was cancelled. */
546
+ readonly CANCELLED: "CANCELLED";
547
+ };
548
+ type BackfillOperationMetadata_State = (typeof BackfillOperationMetadata_State)[keyof typeof BackfillOperationMetadata_State] | (string & {});
549
+ /** The way a materialization schedule is arrived at. */
550
+ declare const CronSchedule_Mode: {
551
+ /** Default value, not used. Treated as MANUAL. */readonly MODE_UNSPECIFIED: "MODE_UNSPECIFIED"; /** The schedule is the hand-written cron_expression on this message. */
552
+ readonly MANUAL: "MANUAL";
553
+ /**
554
+ * The schedule is derived from the time settings of the features being materialized, so the
555
+ * pipeline runs as soon as the data each window needs is expected to have all arrived. The
556
+ * caller leaves cron_expression empty; the derived expression is filled in on the response.
557
+ */
558
+ readonly DERIVED: "DERIVED";
559
+ };
560
+ type CronSchedule_Mode = (typeof CronSchedule_Mode)[keyof typeof CronSchedule_Mode] | (string & {});
25
561
  declare const MaterializedFeature_PipelineScheduleState: {
26
562
  /** Default value, not used. */readonly PIPELINE_SCHEDULE_STATE_UNSPECIFIED: "PIPELINE_SCHEDULE_STATE_UNSPECIFIED"; /** Pipeline was configured to run once then stop. */
27
563
  readonly SNAPSHOT: "SNAPSHOT"; /** Pipeline is actively running and computing features. */
@@ -29,6 +565,24 @@ declare const MaterializedFeature_PipelineScheduleState: {
29
565
  readonly PAUSED: "PAUSED";
30
566
  };
31
567
  type MaterializedFeature_PipelineScheduleState = (typeof MaterializedFeature_PipelineScheduleState)[keyof typeof MaterializedFeature_PipelineScheduleState] | (string & {});
568
+ /** Lifecycle state of a feature entity purge. */
569
+ declare const PurgeFeatureEntitiesMetadata_State: {
570
+ /** The feature entity purge state is unspecified. */readonly STATE_UNSPECIFIED: "STATE_UNSPECIFIED"; /** The feature entity purge is pending. */
571
+ readonly PENDING: "PENDING"; /** The feature entity purge is running. */
572
+ readonly RUNNING: "RUNNING"; /** The feature entity purge succeeded. */
573
+ readonly SUCCEEDED: "SUCCEEDED"; /** The feature entity purge failed. */
574
+ readonly FAILED: "FAILED"; /** The feature entity purge was cancelled. */
575
+ readonly CANCELLED: "CANCELLED";
576
+ };
577
+ type PurgeFeatureEntitiesMetadata_State = (typeof PurgeFeatureEntitiesMetadata_State)[keyof typeof PurgeFeatureEntitiesMetadata_State] | (string & {});
578
+ /** Terminal state of a purge for one store type. */
579
+ declare const PurgeFeatureEntitiesResult_State: {
580
+ /** The purge result state is unspecified. */readonly STATE_UNSPECIFIED: "STATE_UNSPECIFIED"; /** The purge succeeded. */
581
+ readonly SUCCEEDED: "SUCCEEDED"; /** The purge failed. */
582
+ readonly FAILED: "FAILED"; /** The purge did not apply to this store type for this feature. */
583
+ readonly NOT_APPLICABLE: "NOT_APPLICABLE";
584
+ };
585
+ type PurgeFeatureEntitiesResult_State = (typeof PurgeFeatureEntitiesResult_State)[keyof typeof PurgeFeatureEntitiesResult_State] | (string & {});
32
586
  /** Supported serialization formats for a schema registry schema. */
33
587
  declare const SchemaLocator_Format: {
34
588
  /** Default value. Format is not set; the request will be rejected. */readonly FORMAT_UNSPECIFIED: "FORMAT_UNSPECIFIED"; /** Avro-encoded schema. */
@@ -110,6 +664,13 @@ interface AggregationFunction {
110
664
  /** The time window over which the aggregation is computed. */
111
665
  timeWindow?: TimeWindow | undefined;
112
666
  }
667
+ /** Databricks Error that is returned by all Databricks APIs. */
668
+ interface ApiError {
669
+ errorCode?: ErrorCode | undefined;
670
+ message?: string | undefined;
671
+ stackTrace?: string | undefined;
672
+ details?: Record<string, unknown>[] | undefined;
673
+ }
113
674
  /** Computes the approximate count of distinct values. */
114
675
  interface ApproxCountDistinctFunction {
115
676
  /** The input column from which the approximate count of distinct values is computed. */
@@ -145,6 +706,46 @@ interface AvgFunction {
145
706
  */
146
707
  input?: string | undefined;
147
708
  }
709
+ interface BackfillFeaturesRequest {
710
+ /** Full names of the features to backfill. */
711
+ featureFullNames?: string[] | undefined;
712
+ /** Output ranges to backfill. */
713
+ backfillRanges?: BackfillRange[] | undefined;
714
+ /** Idempotency token for the request. */
715
+ requestId?: string | undefined;
716
+ /**
717
+ * Custom tags to associate with this backfill. They are applied to the backfill job and
718
+ * forwarded to the underlying compute as Databricks resource tags, so backfill cost can be
719
+ * attributed in the billing system tables. These tags apply only to the backfill compute; they
720
+ * are not applied to the Unity Catalog Feature resources themselves, whose tags are managed
721
+ * separately through the Unity Catalog tagging API. A maximum of 25 tags is supported; keys and
722
+ * values are subject to the same limitations as Databricks resource tags.
723
+ */
724
+ tags?: Record<string, string> | undefined;
725
+ /**
726
+ * The budget policy ID, in UUID format, used to attribute the serverless compute cost of this
727
+ * backfill. If not specified, a default budget policy may be applied.
728
+ */
729
+ budgetPolicyId?: string | undefined;
730
+ }
731
+ /** Result of a completed backfill. */
732
+ interface BackfillFeaturesResponse {}
733
+ /** Progress and configuration for a backfill. */
734
+ interface BackfillOperationMetadata {
735
+ /** Full names of the features targeted by the backfill. */
736
+ featureFullNames?: string[] | undefined;
737
+ /** Output ranges targeted by the backfill. */
738
+ backfillRanges?: BackfillRange[] | undefined;
739
+ /** Current state of the backfill. */
740
+ state?: BackfillOperationMetadata_State | undefined;
741
+ }
742
+ /** A time range for a backfill. */
743
+ interface BackfillRange {
744
+ /** Start of the backfill range, inclusive. If unset, defaults to the earliest source timestamp of the feature. */
745
+ startTime?: Temporal.Instant | undefined;
746
+ /** End of the backfill range, exclusive. If unset, defaults to the current time. */
747
+ endTime?: Temporal.Instant | undefined;
748
+ }
148
749
  interface BackfillSource {
149
750
  backfillSource?: {
150
751
  $case: 'deltaTableSource';
@@ -167,11 +768,26 @@ interface BatchCreateMaterializedFeaturesResponse {
167
768
  /** The created materialized features with assigned IDs. */
168
769
  materializedFeatures?: MaterializedFeature[] | undefined;
169
770
  }
771
+ /** The request message for `CancelOperation` method. */
772
+ interface CancelOperationRequest {
773
+ /** The name of the operation resource to be cancelled. */
774
+ name?: string | undefined;
775
+ }
776
+ interface ColumnIdentifier {
777
+ /** String representation of the column name using dot-prefixed path notation. */
778
+ variantExprPath?: string | undefined;
779
+ }
170
780
  /** A ColumnSelection function, equivalent to the LAST() record of an entity over a lifetime window */
171
781
  interface ColumnSelection {
172
782
  /** Column name from source to select as the feature value. */
173
783
  column?: string | undefined;
174
784
  }
785
+ interface ContinuousWindow {
786
+ /** The duration of the continuous window (must be positive). */
787
+ windowDuration?: Temporal.Duration | undefined;
788
+ /** The offset of the continuous window (must be non-positive). */
789
+ offset?: Temporal.Duration | undefined;
790
+ }
175
791
  /** Computes the count of values. */
176
792
  interface CountFunction {
177
793
  /**
@@ -200,8 +816,21 @@ interface CreateStreamRequest {
200
816
  }
201
817
  /** A cron-based schedule trigger for the materialization pipeline. */
202
818
  interface CronSchedule {
203
- /** The cron expression defining the schedule (e.g., "0 0 * * *" for daily at midnight). */
819
+ /**
820
+ * The cron expression defining the schedule (e.g., "0 0 * * *" for daily at midnight). The
821
+ * schedule is interpreted in timezone_id (defaults to UTC). Required when mode is MANUAL (or
822
+ * unset). Left empty when mode is DERIVED, where the service computes it (aligned to UTC) from
823
+ * the features' window timing and fills it in on the response.
824
+ */
204
825
  cronExpression?: string | undefined;
826
+ /** How the schedule is determined. Defaults to MANUAL when unset. */
827
+ mode?: CronSchedule_Mode | undefined;
828
+ /**
829
+ * A Java timezone ID. The schedule is resolved with respect to this timezone. Defaults to UTC
830
+ * when omitted. Can only be configured for MANUAL schedules; DERIVED schedules are always aligned
831
+ * to UTC.
832
+ */
833
+ timezoneId?: string | undefined;
205
834
  }
206
835
  /**
207
836
  * A CustomUdf function applies a registered Unity Catalog function row-wise to
@@ -230,6 +859,9 @@ interface DataSource {
230
859
  } | {
231
860
  $case: 'streamSource'; /** A Stream data source. */
232
861
  streamSource: StreamSource;
862
+ } | {
863
+ $case: 'featureViewSource'; /** A data source composed from registered upstream Features. */
864
+ featureViewSource: FeatureViewSource;
233
865
  } | undefined;
234
866
  /**
235
867
  * Completeness timing for this Feature's use of the source. This configuration is part of the
@@ -257,6 +889,8 @@ interface DeleteStreamRequest {
257
889
  interface DeltaTableSource {
258
890
  /** The full three-part (catalog, schema, table) name of the Delta table. */
259
891
  fullName?: string | undefined;
892
+ entityColumns?: string[] | undefined;
893
+ timeseriesColumn?: string | undefined;
260
894
  /** Single WHERE clause to filter delta table before applying transformations. Will be row-wise evaluated, so should only include conditionals and projections. */
261
895
  filterCondition?: string | undefined;
262
896
  /**
@@ -318,10 +952,13 @@ interface Feature {
318
952
  fullName?: string | undefined;
319
953
  /** The data source of the feature. */
320
954
  source?: DataSource | undefined;
955
+ inputs?: string[] | undefined;
321
956
  /** The function by which the feature is computed. */
322
957
  function?: Function | undefined;
958
+ timeWindow?: TimeWindow | undefined;
323
959
  /** The description of the feature. */
324
960
  description?: string | undefined;
961
+ filterCondition?: string | undefined;
325
962
  /**
326
963
  * Lineage context information for this feature.
327
964
  * WARNING: This field is primarily intended for internal use by <Databricks> systems and
@@ -345,6 +982,19 @@ interface Feature {
345
982
  /** Username of the feature creator. */
346
983
  createdBy?: string | undefined;
347
984
  }
985
+ /**
986
+ * A reference to one registered upstream Feature. A message rather than a bare name so an
987
+ * upstream can later be pinned more precisely (e.g. by version) without a breaking type change.
988
+ */
989
+ interface FeatureReference {
990
+ /** The three-part full name of the upstream Feature. */
991
+ feature?: string | undefined;
992
+ }
993
+ /** A data source composed from registered upstream Features. */
994
+ interface FeatureViewSource {
995
+ /** The upstream Features this source reads. Must include at least one feature. */
996
+ featureReferences?: FeatureReference[] | undefined;
997
+ }
348
998
  /**
349
999
  * A single field definition within a FlatSchema, specifying the field name and its scalar data type.
350
1000
  * Does not support nested or complex types (arrays, maps, structs).
@@ -383,6 +1033,8 @@ interface FlatSchema {
383
1033
  fields?: FieldDefinition[] | undefined;
384
1034
  }
385
1035
  interface Function {
1036
+ functionType?: FunctionFunctionType | undefined;
1037
+ extraParameters?: FunctionExtraParameter[] | undefined;
386
1038
  function?: {
387
1039
  $case: 'aggregationFunction'; /** An aggregation function applied over a time window. */
388
1040
  aggregationFunction: AggregationFunction;
@@ -394,6 +1046,12 @@ interface Function {
394
1046
  customUdf: CustomUdf;
395
1047
  } | undefined;
396
1048
  }
1049
+ interface FunctionExtraParameter {
1050
+ /** The name of the parameter. */
1051
+ key?: string | undefined;
1052
+ /** The value of the parameter. */
1053
+ value?: string | undefined;
1054
+ }
397
1055
  interface GetFeatureRequest {
398
1056
  /** Name of the feature to get. */
399
1057
  fullName?: string | undefined;
@@ -406,6 +1064,11 @@ interface GetMaterializedFeatureRequest {
406
1064
  /** The ID of the materialized feature. */
407
1065
  materializedFeatureId?: string | undefined;
408
1066
  }
1067
+ /** The request message for `GetOperation` method. */
1068
+ interface GetOperationRequest {
1069
+ /** The name of the operation resource. */
1070
+ name?: string | undefined;
1071
+ }
409
1072
  /** Get a Stream by its full three-part name (catalog.schema.stream). */
410
1073
  interface GetStreamRequest {
411
1074
  /** Full three-part name (catalog.schema.stream) of the Stream to get. */
@@ -425,7 +1088,8 @@ interface IngestionConfig {
425
1088
  /**
426
1089
  * A user-provided source for backfilling data. Historical data is used when creating a training set from streaming features linked to this Stream.
427
1090
  * The backfill data stored in this location will be copied into the ingestion table for offline querying and training.
428
- * The schema for this source must match exactly that of the key and payload schemas specified for this Stream.
1091
+ * The schema for this source must match exactly that of the key and payload schemas specified for this Stream,
1092
+ * except that it may omit any columns listed in excluded_columns.
429
1093
  */
430
1094
  backfillSource?: BackfillSource | undefined;
431
1095
  /**
@@ -443,6 +1107,21 @@ interface IngestionConfig {
443
1107
  ingestionJobId?: bigint | undefined;
444
1108
  /** The ID of the Databricks Job that performs the historical backfill of the ingestion Delta table. */
445
1109
  backfillJobId?: bigint | undefined;
1110
+ /**
1111
+ * Custom tags to associate with this stream's managed ingestion. They are applied to the
1112
+ * ingestion pipeline and its forward-fill and backfill jobs, and forwarded to the underlying
1113
+ * compute as cluster tags, so ingestion cost can be attributed in the billing system tables.
1114
+ * These tags apply only to the managed ingestion compute; they are not applied to the Stream
1115
+ * entity itself, and are distinct from any Unity Catalog tags on the Stream.
1116
+ * A maximum of 25 tags is supported; keys and values are subject to the same limitations as
1117
+ * cluster tags.
1118
+ */
1119
+ tags?: Record<string, string> | undefined;
1120
+ /**
1121
+ * The ID of the budget policy used to attribute the serverless compute cost of this stream's
1122
+ * managed ingestion. If not specified, a default budget policy may be applied.
1123
+ */
1124
+ budgetPolicyId?: string | undefined;
446
1125
  }
447
1126
  /** Destination for the <Databricks>-managed Delta table that holds an offline copy of the streaming data for querying and training. */
448
1127
  interface IngestionDestination {
@@ -497,6 +1176,8 @@ interface KafkaConfig {
497
1176
  interface KafkaSource {
498
1177
  /** Name of the Kafka source, used to identify it. This is used to look up the corresponding KafkaConfig object. Can be distinct from topic name. */
499
1178
  name?: string | undefined;
1179
+ entityColumnIdentifiers?: ColumnIdentifier[] | undefined;
1180
+ timeseriesColumnIdentifier?: ColumnIdentifier | undefined;
500
1181
  /** The filter condition applied to the source data before aggregation. */
501
1182
  filterCondition?: string | undefined;
502
1183
  }
@@ -558,6 +1239,18 @@ interface KinesisStreamConfig {
558
1239
  } | undefined;
559
1240
  /**
560
1241
  * Optional Kinesis source options, validated against a server-side allowlist at request time.
1242
+ * Allowed keys:
1243
+ * - `consumerMode`
1244
+ * - `consumerNamePrefix`
1245
+ * - `maxFetchRate`
1246
+ * - `minFetchPeriod`
1247
+ * - `maxFetchDuration`
1248
+ * - `maxRecordsPerFetch`
1249
+ * - `shardsPerTask`
1250
+ * - `fetchBufferSize`
1251
+ * - `shardFetchInterval`
1252
+ * `consumerMode` must be `efo` or `polling` (case-insensitive).
1253
+ * `maxRecordsPerFetch` applies only during ingestion and does not affect the materialization pipeline.
561
1254
  * Auth and connection details belong on the parent Stream's `connection_config`, not here.
562
1255
  */
563
1256
  extraOptions?: Record<string, string> | undefined;
@@ -695,6 +1388,7 @@ interface MaterializedFeature {
695
1388
  * If the pipeline has not run yet, this field will be null.
696
1389
  */
697
1390
  lastMaterializationTime?: Temporal.Instant | undefined;
1391
+ cronSchedule?: string | undefined;
698
1392
  /** True if this is an online materialized feature. False if it is an offline materialized feature. */
699
1393
  isOnline?: boolean | undefined;
700
1394
  /** The trigger configuration for the materialization pipeline. */
@@ -713,6 +1407,23 @@ interface MaterializedFeature {
713
1407
  */
714
1408
  streamingMode: StreamingMode;
715
1409
  } | undefined;
1410
+ /** Name of the latest backfill operation on this materialized feature. Format: operations/{operation_id}. */
1411
+ latestBackfillOperation?: string | undefined;
1412
+ /**
1413
+ * Custom tags to associate with this materialization. They are applied to the materialization
1414
+ * job (for batch features) or pipeline (for streaming features) and forwarded to the underlying
1415
+ * compute as cluster tags, so materialization cost can be attributed in the billing system
1416
+ * tables. These tags apply only to the materialization compute; they are not applied to the
1417
+ * Unity Catalog Feature resource itself, whose tags are managed separately through the Unity
1418
+ * Catalog tagging API. A maximum of 25 tags is supported; keys and values are subject to the
1419
+ * same limitations as cluster tags.
1420
+ */
1421
+ tags?: Record<string, string> | undefined;
1422
+ /**
1423
+ * The ID of the budget policy used to attribute the serverless compute cost of this
1424
+ * materialization. If not specified, a default budget policy may be applied.
1425
+ */
1426
+ budgetPolicyId?: string | undefined;
716
1427
  }
717
1428
  /** Computes the maximum value. */
718
1429
  interface MaxFunction {
@@ -804,6 +1515,43 @@ interface OnlineStoreConfig {
804
1515
  /** The name of the target online store. */
805
1516
  onlineStoreName?: string | undefined;
806
1517
  }
1518
+ /**
1519
+ * This resource represents a long-running operation that is the result of a
1520
+ * network API call.
1521
+ */
1522
+ interface Operation {
1523
+ /**
1524
+ * The server-assigned name, which is only unique within the same service that
1525
+ * originally returns it. If you use the default HTTP mapping, the
1526
+ * `name` should be a resource name ending with `operations/{unique_id}`.
1527
+ */
1528
+ name?: string | undefined;
1529
+ /**
1530
+ * Service-specific metadata associated with the operation. It typically
1531
+ * contains progress information and common metadata such as create time.
1532
+ * Some services might not provide such metadata.
1533
+ */
1534
+ metadata?: Record<string, unknown> | undefined;
1535
+ /**
1536
+ * If the value is `false`, it means the operation is still in progress.
1537
+ * If `true`, the operation is completed, and either `error` or `response` is
1538
+ * available.
1539
+ */
1540
+ done?: boolean | undefined;
1541
+ /**
1542
+ * The operation result, which can be either an `error` or a valid `response`.
1543
+ * If `done` == `false`, neither `error` nor `response` is set.
1544
+ * If `done` == `true`, exactly one of `error` or `response` can be set.
1545
+ * Some services might not provide the result.
1546
+ */
1547
+ result?: {
1548
+ $case: 'error'; /** The error result of the operation in case of failure or cancellation. */
1549
+ error: ApiError;
1550
+ } | {
1551
+ $case: 'response'; /** The normal, successful response of the operation. */
1552
+ response: Record<string, unknown>;
1553
+ } | undefined;
1554
+ }
807
1555
  /**
808
1556
  * A Protocol Buffer schema paired with the name of the message within it that describes the
809
1557
  * Kafka payload. A .proto file may declare multiple messages; message_name disambiguates.
@@ -822,6 +1570,79 @@ interface ProtoSchemaSpec {
822
1570
  */
823
1571
  messageName?: string | undefined;
824
1572
  }
1573
+ /** Progress and configuration for a feature entity purge. */
1574
+ interface PurgeFeatureEntitiesMetadata {
1575
+ /** Fully qualified names of the features targeted by the purge. */
1576
+ features?: string[] | undefined;
1577
+ /** Fully qualified name of the Unity Catalog Delta table containing the entity keys to purge. */
1578
+ entitiesTable?: string | undefined;
1579
+ /** Version of the entities table used by the purge. */
1580
+ entitiesTableVersion?: string | undefined;
1581
+ /** Time at which the purge operation was created. */
1582
+ createTime?: Temporal.Instant | undefined;
1583
+ /** Current state of the purge operation. */
1584
+ state?: PurgeFeatureEntitiesMetadata_State | undefined;
1585
+ /** ID of the job that executes this purge. */
1586
+ jobId?: bigint | undefined;
1587
+ }
1588
+ /** Request to purge materialized feature values for entities listed in a Unity Catalog Delta table. */
1589
+ interface PurgeFeatureEntitiesRequest {
1590
+ /**
1591
+ * Fully qualified names of the features to purge. At least one nonempty feature name is required.
1592
+ * A request may contain at most 10000 features; submit additional features in separate requests.
1593
+ * Duplicate features are rejected.
1594
+ */
1595
+ features?: string[] | undefined;
1596
+ /** Source of the entity keys to purge. */
1597
+ entities?: {
1598
+ $case: 'entitiesTable';
1599
+ /**
1600
+ * Fully qualified name of the Unity Catalog Delta table containing the entity keys to purge.
1601
+ * The table may contain a subset of each feature's entity-key columns. A partial key match
1602
+ * deletes all feature rows matching the provided key values. Non-key columns are rejected;
1603
+ * null key values are allowed.
1604
+ */
1605
+ entitiesTable: string;
1606
+ } | undefined;
1607
+ /** Optional UUID4 idempotency token for the request. */
1608
+ requestId?: string | undefined;
1609
+ /**
1610
+ * Custom tags to associate with this purge. They are applied to the purge job and forwarded to
1611
+ * the underlying compute as Databricks resource tags, so purge cost can be attributed in the
1612
+ * billing system tables. These tags apply only to the purge compute; they are not applied to the
1613
+ * Unity Catalog Feature resources themselves, whose tags are managed separately through the Unity
1614
+ * Catalog tagging API. A maximum of 25 tags is supported; keys and values are subject to the same
1615
+ * limitations as Databricks resource tags.
1616
+ */
1617
+ tags?: Record<string, string> | undefined;
1618
+ /**
1619
+ * The budget policy ID, in UUID format, used to attribute the serverless compute cost of this
1620
+ * purge. If not specified, a default budget policy may be applied.
1621
+ */
1622
+ budgetPolicyId?: string | undefined;
1623
+ }
1624
+ /** Result of a completed feature entity purge. */
1625
+ interface PurgeFeatureEntitiesResponse {
1626
+ /** Metadata about the purge operation. */
1627
+ metadata?: PurgeFeatureEntitiesMetadata | undefined;
1628
+ /** Per-feature purge results. */
1629
+ results?: PurgeFeatureEntitiesResult[] | undefined;
1630
+ /** State of the purge operation. */
1631
+ state?: PurgeFeatureEntitiesMetadata_State | undefined;
1632
+ /** Operation-level error, if the purge failed outside an individual feature target. */
1633
+ error?: ApiError | undefined;
1634
+ }
1635
+ /** Result of purging one feature. */
1636
+ interface PurgeFeatureEntitiesResult {
1637
+ /** Fully qualified name of the feature that was purged. */
1638
+ feature?: string | undefined;
1639
+ /** State of the offline purge for this feature. */
1640
+ offlineState?: PurgeFeatureEntitiesResult_State | undefined;
1641
+ /** State of the online purge for this feature. */
1642
+ onlineState?: PurgeFeatureEntitiesResult_State | undefined;
1643
+ /** Error encountered while purging this feature, if any. */
1644
+ error?: ApiError | undefined;
1645
+ }
825
1646
  /** A request-time data source whose value is provided at inference time: offline batch scoring or online serving endpoint */
826
1647
  interface RequestSource {
827
1648
  /** The schema describing the request-time fields. Currently only flat schemas are supported. */
@@ -996,6 +1817,21 @@ interface Stream {
996
1817
  schemaConfig?: StreamSchemaConfig | undefined;
997
1818
  /** Configuration for streaming data ingestion: the managed table storing an offline copy of forward fill data and optional historical backfill. */
998
1819
  ingestionConfig?: IngestionConfig | undefined;
1820
+ /**
1821
+ * Optional SQL predicate to filter which record types from a streaming channel (e.g. a topic for Kafka) belong to this Stream.
1822
+ * Events that do not match are not written to the ingestion table and are not used in materialization.
1823
+ * Example: "value.event_type = 'transaction'".
1824
+ */
1825
+ recordTypeFilter?: string | undefined;
1826
+ /**
1827
+ * Column paths (dot notation, e.g. "value.email" for Kafka) to drop.
1828
+ * A path may reference a struct, in which case all of its nested fields are dropped (e.g. "value.address" drops "value.address.city" and "value.address.zip").
1829
+ * These columns are not written to the ingestion table and cannot be referenced by any feature.
1830
+ * They are dropped from ingestion, backfill, and materialization.
1831
+ * For direct schemas, each column must exist in the relevant key or payload schema. With a schema registry, a column can be excluded before it exists.
1832
+ * A column cannot also be a deduplication column in the ingestion_config.
1833
+ */
1834
+ excludedColumns?: string[] | undefined;
999
1835
  /** Time at which this Stream was created. */
1000
1836
  createTime?: Temporal.Instant | undefined;
1001
1837
  /** Username of the Stream creator. */
@@ -1125,6 +1961,9 @@ interface SumFunction {
1125
1961
  interface TableTrigger {}
1126
1962
  interface TimeWindow {
1127
1963
  windowType?: {
1964
+ $case: 'continuous';
1965
+ continuous: ContinuousWindow;
1966
+ } | {
1128
1967
  $case: 'tumbling';
1129
1968
  tumbling: TumblingWindow;
1130
1969
  } | {
@@ -1145,6 +1984,7 @@ interface TimeWindow {
1145
1984
  * tumbling and fixed-duration sliding windows first emit at an offset-aligned boundary after a
1146
1985
  * full window can be formed. If unset, lifetime sliding windows and rolling windows emit as soon as
1147
1986
  * eligible source data exists.
1987
+ * Not currently supported for sawtooth windows or for Features with a stream source.
1148
1988
  */
1149
1989
  startTime?: Temporal.Instant | undefined;
1150
1990
  }
@@ -1214,13 +2054,19 @@ interface VarSampFunction {
1214
2054
  input?: string | undefined;
1215
2055
  }
1216
2056
  declare const unmarshalAggregationFunctionSchema: z.ZodType<AggregationFunction>;
2057
+ declare const unmarshalApiErrorSchema: z.ZodType<ApiError>;
1217
2058
  declare const unmarshalApproxCountDistinctFunctionSchema: z.ZodType<ApproxCountDistinctFunction>;
1218
2059
  declare const unmarshalApproxPercentileFunctionSchema: z.ZodType<ApproxPercentileFunction>;
1219
2060
  declare const unmarshalAuthConfigSchema: z.ZodType<AuthConfig>;
1220
2061
  declare const unmarshalAvgFunctionSchema: z.ZodType<AvgFunction>;
2062
+ declare const unmarshalBackfillFeaturesResponseSchema: z.ZodType<BackfillFeaturesResponse>;
2063
+ declare const unmarshalBackfillOperationMetadataSchema: z.ZodType<BackfillOperationMetadata>;
2064
+ declare const unmarshalBackfillRangeSchema: z.ZodType<BackfillRange>;
1221
2065
  declare const unmarshalBackfillSourceSchema: z.ZodType<BackfillSource>;
1222
2066
  declare const unmarshalBatchCreateMaterializedFeaturesResponseSchema: z.ZodType<BatchCreateMaterializedFeaturesResponse>;
2067
+ declare const unmarshalColumnIdentifierSchema: z.ZodType<ColumnIdentifier>;
1223
2068
  declare const unmarshalColumnSelectionSchema: z.ZodType<ColumnSelection>;
2069
+ declare const unmarshalContinuousWindowSchema: z.ZodType<ContinuousWindow>;
1224
2070
  declare const unmarshalCountFunctionSchema: z.ZodType<CountFunction>;
1225
2071
  declare const unmarshalCronScheduleSchema: z.ZodType<CronSchedule>;
1226
2072
  declare const unmarshalCustomUdfSchema: z.ZodType<CustomUdf>;
@@ -1230,12 +2076,15 @@ declare const unmarshalDirectMtlsConfigSchema: z.ZodType<DirectMtlsConfig>;
1230
2076
  declare const unmarshalDirectSchemasSchema: z.ZodType<DirectSchemas>;
1231
2077
  declare const unmarshalEntityColumnSchema: z.ZodType<EntityColumn>;
1232
2078
  declare const unmarshalFeatureSchema: z.ZodType<Feature>;
2079
+ declare const unmarshalFeatureReferenceSchema: z.ZodType<FeatureReference>;
2080
+ declare const unmarshalFeatureViewSourceSchema: z.ZodType<FeatureViewSource>;
1233
2081
  declare const unmarshalFieldDefinitionSchema: z.ZodType<FieldDefinition>;
1234
2082
  declare const unmarshalFirstDistinctFunctionSchema: z.ZodType<FirstDistinctFunction>;
1235
2083
  declare const unmarshalFirstFunctionSchema: z.ZodType<FirstFunction>;
1236
2084
  declare const unmarshalFirstNFunctionSchema: z.ZodType<FirstNFunction>;
1237
2085
  declare const unmarshalFlatSchemaSchema: z.ZodType<FlatSchema>;
1238
2086
  declare const unmarshalFunctionSchema: z.ZodType<Function>;
2087
+ declare const unmarshalFunctionExtraParameterSchema: z.ZodType<FunctionExtraParameter>;
1239
2088
  declare const unmarshalIngestionConfigSchema: z.ZodType<IngestionConfig>;
1240
2089
  declare const unmarshalIngestionDestinationSchema: z.ZodType<IngestionDestination>;
1241
2090
  declare const unmarshalInputBindingSchema: z.ZodType<InputBinding>;
@@ -1259,7 +2108,11 @@ declare const unmarshalMinFunctionSchema: z.ZodType<MinFunction>;
1259
2108
  declare const unmarshalMtlsConfigSchema: z.ZodType<MtlsConfig>;
1260
2109
  declare const unmarshalOfflineStoreConfigSchema: z.ZodType<OfflineStoreConfig>;
1261
2110
  declare const unmarshalOnlineStoreConfigSchema: z.ZodType<OnlineStoreConfig>;
2111
+ declare const unmarshalOperationSchema: z.ZodType<Operation>;
1262
2112
  declare const unmarshalProtoSchemaSpecSchema: z.ZodType<ProtoSchemaSpec>;
2113
+ declare const unmarshalPurgeFeatureEntitiesMetadataSchema: z.ZodType<PurgeFeatureEntitiesMetadata>;
2114
+ declare const unmarshalPurgeFeatureEntitiesResponseSchema: z.ZodType<PurgeFeatureEntitiesResponse>;
2115
+ declare const unmarshalPurgeFeatureEntitiesResultSchema: z.ZodType<PurgeFeatureEntitiesResult>;
1263
2116
  declare const unmarshalRequestSourceSchema: z.ZodType<RequestSource>;
1264
2117
  declare const unmarshalRollingWindowSchema: z.ZodType<RollingWindow>;
1265
2118
  declare const unmarshalSawtoothWindowSchema: z.ZodType<SawtoothWindow>;
@@ -1293,9 +2146,14 @@ declare const marshalApproxCountDistinctFunctionSchema: z.ZodType;
1293
2146
  declare const marshalApproxPercentileFunctionSchema: z.ZodType;
1294
2147
  declare const marshalAuthConfigSchema: z.ZodType;
1295
2148
  declare const marshalAvgFunctionSchema: z.ZodType;
2149
+ declare const marshalBackfillFeaturesRequestSchema: z.ZodType;
2150
+ declare const marshalBackfillRangeSchema: z.ZodType;
1296
2151
  declare const marshalBackfillSourceSchema: z.ZodType;
1297
2152
  declare const marshalBatchCreateMaterializedFeaturesRequestSchema: z.ZodType;
2153
+ declare const marshalCancelOperationRequestSchema: z.ZodType;
2154
+ declare const marshalColumnIdentifierSchema: z.ZodType;
1298
2155
  declare const marshalColumnSelectionSchema: z.ZodType;
2156
+ declare const marshalContinuousWindowSchema: z.ZodType;
1299
2157
  declare const marshalCountFunctionSchema: z.ZodType;
1300
2158
  declare const marshalCreateMaterializedFeatureRequestSchema: z.ZodType;
1301
2159
  declare const marshalCronScheduleSchema: z.ZodType;
@@ -1306,12 +2164,15 @@ declare const marshalDirectMtlsConfigSchema: z.ZodType;
1306
2164
  declare const marshalDirectSchemasSchema: z.ZodType;
1307
2165
  declare const marshalEntityColumnSchema: z.ZodType;
1308
2166
  declare const marshalFeatureSchema: z.ZodType;
2167
+ declare const marshalFeatureReferenceSchema: z.ZodType;
2168
+ declare const marshalFeatureViewSourceSchema: z.ZodType;
1309
2169
  declare const marshalFieldDefinitionSchema: z.ZodType;
1310
2170
  declare const marshalFirstDistinctFunctionSchema: z.ZodType;
1311
2171
  declare const marshalFirstFunctionSchema: z.ZodType;
1312
2172
  declare const marshalFirstNFunctionSchema: z.ZodType;
1313
2173
  declare const marshalFlatSchemaSchema: z.ZodType;
1314
2174
  declare const marshalFunctionSchema: z.ZodType;
2175
+ declare const marshalFunctionExtraParameterSchema: z.ZodType;
1315
2176
  declare const marshalIngestionConfigSchema: z.ZodType;
1316
2177
  declare const marshalIngestionDestinationSchema: z.ZodType;
1317
2178
  declare const marshalInputBindingSchema: z.ZodType;
@@ -1332,6 +2193,7 @@ declare const marshalMtlsConfigSchema: z.ZodType;
1332
2193
  declare const marshalOfflineStoreConfigSchema: z.ZodType;
1333
2194
  declare const marshalOnlineStoreConfigSchema: z.ZodType;
1334
2195
  declare const marshalProtoSchemaSpecSchema: z.ZodType;
2196
+ declare const marshalPurgeFeatureEntitiesRequestSchema: z.ZodType;
1335
2197
  declare const marshalRequestSourceSchema: z.ZodType;
1336
2198
  declare const marshalRollingWindowSchema: z.ZodType;
1337
2199
  declare const marshalSawtoothWindowSchema: z.ZodType;
@@ -1365,5 +2227,5 @@ declare function kafkaConfigFieldMask(...paths: string[]): FieldMask<KafkaConfig
1365
2227
  declare function materializedFeatureFieldMask(...paths: string[]): FieldMask<MaterializedFeature>;
1366
2228
  declare function streamFieldMask(...paths: string[]): FieldMask<Stream>;
1367
2229
  //#endregion
1368
- export { AggregationFunction, ApproxCountDistinctFunction, ApproxPercentileFunction, AuthConfig, AvgFunction, BackfillSource, BatchCreateMaterializedFeaturesRequest, BatchCreateMaterializedFeaturesResponse, ColumnSelection, CountFunction, CreateFeatureRequest, CreateKafkaConfigRequest, CreateMaterializedFeatureRequest, CreateStreamRequest, CronSchedule, CustomUdf, DataSource, DeleteFeatureRequest, DeleteKafkaConfigRequest, DeleteMaterializedFeatureRequest, DeleteStreamRequest, DeltaTableSource, DirectMtlsConfig, DirectSchemas, EntityColumn, Feature, FieldDefinition, FirstDistinctFunction, FirstFunction, FirstNFunction, FlatSchema, Function, GetFeatureRequest, GetKafkaConfigRequest, GetMaterializedFeatureRequest, GetStreamRequest, IngestionConfig, IngestionDestination, InputBinding, JobContext, KafkaConfig, KafkaSource, KafkaStreamConfig, KafkaSubscriptionMode, KinesisStreamConfig, LastDistinctFunction, LastFunction, LastNFunction, LineageContext, ListFeaturesRequest, ListFeaturesResponse, ListKafkaConfigsRequest, ListKafkaConfigsResponse, ListMaterializedFeaturesRequest, ListMaterializedFeaturesResponse, ListStreamsRequest, ListStreamsResponse, MaterializedFeature, MaterializedFeature_PipelineScheduleState, MaxFunction, MinFunction, MtlsConfig, OfflineStoreConfig, OnlineStoreConfig, ProtoSchemaSpec, RequestSource, RollingWindow, SawtoothWindow, ScalarDataType, SchemaConfig, SchemaLocator, SchemaLocator_ConfluentSchema, SchemaLocator_Format, SchemaRegistryConfig, SecretScopeReference, SlidingWindow, SourceLateness, StddevPopFunction, StddevSampFunction, Stream, StreamArnList, StreamConnectionConfig, StreamNameList, StreamSchemaConfig, StreamSource, StreamSourceConfig, StreamingMode, StreamingMode_StreamingModeType, SubscriptionMode, SumFunction, TableTrigger, TimeWindow, TimeseriesColumn, TumblingWindow, UpdateFeatureRequest, UpdateKafkaConfigRequest, UpdateMaterializedFeatureRequest, UpdateStreamRequest, VarPopFunction, VarSampFunction, featureFieldMask, kafkaConfigFieldMask, marshalAggregationFunctionSchema, marshalApproxCountDistinctFunctionSchema, marshalApproxPercentileFunctionSchema, marshalAuthConfigSchema, marshalAvgFunctionSchema, marshalBackfillSourceSchema, marshalBatchCreateMaterializedFeaturesRequestSchema, marshalColumnSelectionSchema, marshalCountFunctionSchema, marshalCreateMaterializedFeatureRequestSchema, marshalCronScheduleSchema, marshalCustomUdfSchema, marshalDataSourceSchema, marshalDeltaTableSourceSchema, marshalDirectMtlsConfigSchema, marshalDirectSchemasSchema, marshalEntityColumnSchema, marshalFeatureSchema, marshalFieldDefinitionSchema, marshalFirstDistinctFunctionSchema, marshalFirstFunctionSchema, marshalFirstNFunctionSchema, marshalFlatSchemaSchema, marshalFunctionSchema, marshalIngestionConfigSchema, marshalIngestionDestinationSchema, marshalInputBindingSchema, marshalJobContextSchema, marshalKafkaConfigSchema, marshalKafkaSourceSchema, marshalKafkaStreamConfigSchema, marshalKafkaSubscriptionModeSchema, marshalKinesisStreamConfigSchema, marshalLastDistinctFunctionSchema, marshalLastFunctionSchema, marshalLastNFunctionSchema, marshalLineageContextSchema, marshalMaterializedFeatureSchema, marshalMaxFunctionSchema, marshalMinFunctionSchema, marshalMtlsConfigSchema, marshalOfflineStoreConfigSchema, marshalOnlineStoreConfigSchema, marshalProtoSchemaSpecSchema, marshalRequestSourceSchema, marshalRollingWindowSchema, marshalSawtoothWindowSchema, marshalSchemaConfigSchema, marshalSchemaLocatorSchema, marshalSchemaLocator_ConfluentSchemaSchema, marshalSchemaRegistryConfigSchema, marshalSecretScopeReferenceSchema, marshalSlidingWindowSchema, marshalSourceLatenessSchema, marshalStddevPopFunctionSchema, marshalStddevSampFunctionSchema, marshalStreamArnListSchema, marshalStreamConnectionConfigSchema, marshalStreamNameListSchema, marshalStreamSchema, marshalStreamSchemaConfigSchema, marshalStreamSourceConfigSchema, marshalStreamSourceSchema, marshalStreamingModeSchema, marshalSubscriptionModeSchema, marshalSumFunctionSchema, marshalTableTriggerSchema, marshalTimeWindowSchema, marshalTimeseriesColumnSchema, marshalTumblingWindowSchema, marshalVarPopFunctionSchema, marshalVarSampFunctionSchema, materializedFeatureFieldMask, streamFieldMask, unmarshalAggregationFunctionSchema, unmarshalApproxCountDistinctFunctionSchema, unmarshalApproxPercentileFunctionSchema, unmarshalAuthConfigSchema, unmarshalAvgFunctionSchema, unmarshalBackfillSourceSchema, unmarshalBatchCreateMaterializedFeaturesResponseSchema, unmarshalColumnSelectionSchema, unmarshalCountFunctionSchema, unmarshalCronScheduleSchema, unmarshalCustomUdfSchema, unmarshalDataSourceSchema, unmarshalDeltaTableSourceSchema, unmarshalDirectMtlsConfigSchema, unmarshalDirectSchemasSchema, unmarshalEntityColumnSchema, unmarshalFeatureSchema, unmarshalFieldDefinitionSchema, unmarshalFirstDistinctFunctionSchema, unmarshalFirstFunctionSchema, unmarshalFirstNFunctionSchema, unmarshalFlatSchemaSchema, unmarshalFunctionSchema, unmarshalIngestionConfigSchema, unmarshalIngestionDestinationSchema, unmarshalInputBindingSchema, unmarshalJobContextSchema, unmarshalKafkaConfigSchema, unmarshalKafkaSourceSchema, unmarshalKafkaStreamConfigSchema, unmarshalKafkaSubscriptionModeSchema, unmarshalKinesisStreamConfigSchema, unmarshalLastDistinctFunctionSchema, unmarshalLastFunctionSchema, unmarshalLastNFunctionSchema, unmarshalLineageContextSchema, unmarshalListFeaturesResponseSchema, unmarshalListKafkaConfigsResponseSchema, unmarshalListMaterializedFeaturesResponseSchema, unmarshalListStreamsResponseSchema, unmarshalMaterializedFeatureSchema, unmarshalMaxFunctionSchema, unmarshalMinFunctionSchema, unmarshalMtlsConfigSchema, unmarshalOfflineStoreConfigSchema, unmarshalOnlineStoreConfigSchema, unmarshalProtoSchemaSpecSchema, unmarshalRequestSourceSchema, unmarshalRollingWindowSchema, unmarshalSawtoothWindowSchema, unmarshalSchemaConfigSchema, unmarshalSchemaLocatorSchema, unmarshalSchemaLocator_ConfluentSchemaSchema, unmarshalSchemaRegistryConfigSchema, unmarshalSecretScopeReferenceSchema, unmarshalSlidingWindowSchema, unmarshalSourceLatenessSchema, unmarshalStddevPopFunctionSchema, unmarshalStddevSampFunctionSchema, unmarshalStreamArnListSchema, unmarshalStreamConnectionConfigSchema, unmarshalStreamNameListSchema, unmarshalStreamSchema, unmarshalStreamSchemaConfigSchema, unmarshalStreamSourceConfigSchema, unmarshalStreamSourceSchema, unmarshalStreamingModeSchema, unmarshalSubscriptionModeSchema, unmarshalSumFunctionSchema, unmarshalTableTriggerSchema, unmarshalTimeWindowSchema, unmarshalTimeseriesColumnSchema, unmarshalTumblingWindowSchema, unmarshalVarPopFunctionSchema, unmarshalVarSampFunctionSchema };
2230
+ export { AggregationFunction, ApiError, ApproxCountDistinctFunction, ApproxPercentileFunction, AuthConfig, AvgFunction, BackfillFeaturesRequest, BackfillFeaturesResponse, BackfillOperationMetadata, BackfillOperationMetadata_State, BackfillRange, BackfillSource, BatchCreateMaterializedFeaturesRequest, BatchCreateMaterializedFeaturesResponse, CancelOperationRequest, ColumnIdentifier, ColumnSelection, ContinuousWindow, CountFunction, CreateFeatureRequest, CreateKafkaConfigRequest, CreateMaterializedFeatureRequest, CreateStreamRequest, CronSchedule, CronSchedule_Mode, CustomUdf, DataSource, DeleteFeatureRequest, DeleteKafkaConfigRequest, DeleteMaterializedFeatureRequest, DeleteStreamRequest, DeltaTableSource, DirectMtlsConfig, DirectSchemas, EntityColumn, ErrorCode, Feature, FeatureReference, FeatureViewSource, FieldDefinition, FirstDistinctFunction, FirstFunction, FirstNFunction, FlatSchema, Function, FunctionExtraParameter, FunctionFunctionType, GetFeatureRequest, GetKafkaConfigRequest, GetMaterializedFeatureRequest, GetOperationRequest, GetStreamRequest, IngestionConfig, IngestionDestination, InputBinding, JobContext, KafkaConfig, KafkaSource, KafkaStreamConfig, KafkaSubscriptionMode, KinesisStreamConfig, LastDistinctFunction, LastFunction, LastNFunction, LineageContext, ListFeaturesRequest, ListFeaturesResponse, ListKafkaConfigsRequest, ListKafkaConfigsResponse, ListMaterializedFeaturesRequest, ListMaterializedFeaturesResponse, ListStreamsRequest, ListStreamsResponse, MaterializedFeature, MaterializedFeature_PipelineScheduleState, MaxFunction, MinFunction, MtlsConfig, OfflineStoreConfig, OnlineStoreConfig, Operation, ProtoSchemaSpec, PurgeFeatureEntitiesMetadata, PurgeFeatureEntitiesMetadata_State, PurgeFeatureEntitiesRequest, PurgeFeatureEntitiesResponse, PurgeFeatureEntitiesResult, PurgeFeatureEntitiesResult_State, RequestSource, RollingWindow, SawtoothWindow, ScalarDataType, SchemaConfig, SchemaLocator, SchemaLocator_ConfluentSchema, SchemaLocator_Format, SchemaRegistryConfig, SecretScopeReference, SlidingWindow, SourceLateness, StddevPopFunction, StddevSampFunction, Stream, StreamArnList, StreamConnectionConfig, StreamNameList, StreamSchemaConfig, StreamSource, StreamSourceConfig, StreamingMode, StreamingMode_StreamingModeType, SubscriptionMode, SumFunction, TableTrigger, TimeWindow, TimeseriesColumn, TumblingWindow, UpdateFeatureRequest, UpdateKafkaConfigRequest, UpdateMaterializedFeatureRequest, UpdateStreamRequest, VarPopFunction, VarSampFunction, featureFieldMask, kafkaConfigFieldMask, marshalAggregationFunctionSchema, marshalApproxCountDistinctFunctionSchema, marshalApproxPercentileFunctionSchema, marshalAuthConfigSchema, marshalAvgFunctionSchema, marshalBackfillFeaturesRequestSchema, marshalBackfillRangeSchema, marshalBackfillSourceSchema, marshalBatchCreateMaterializedFeaturesRequestSchema, marshalCancelOperationRequestSchema, marshalColumnIdentifierSchema, marshalColumnSelectionSchema, marshalContinuousWindowSchema, marshalCountFunctionSchema, marshalCreateMaterializedFeatureRequestSchema, marshalCronScheduleSchema, marshalCustomUdfSchema, marshalDataSourceSchema, marshalDeltaTableSourceSchema, marshalDirectMtlsConfigSchema, marshalDirectSchemasSchema, marshalEntityColumnSchema, marshalFeatureReferenceSchema, marshalFeatureSchema, marshalFeatureViewSourceSchema, marshalFieldDefinitionSchema, marshalFirstDistinctFunctionSchema, marshalFirstFunctionSchema, marshalFirstNFunctionSchema, marshalFlatSchemaSchema, marshalFunctionExtraParameterSchema, marshalFunctionSchema, marshalIngestionConfigSchema, marshalIngestionDestinationSchema, marshalInputBindingSchema, marshalJobContextSchema, marshalKafkaConfigSchema, marshalKafkaSourceSchema, marshalKafkaStreamConfigSchema, marshalKafkaSubscriptionModeSchema, marshalKinesisStreamConfigSchema, marshalLastDistinctFunctionSchema, marshalLastFunctionSchema, marshalLastNFunctionSchema, marshalLineageContextSchema, marshalMaterializedFeatureSchema, marshalMaxFunctionSchema, marshalMinFunctionSchema, marshalMtlsConfigSchema, marshalOfflineStoreConfigSchema, marshalOnlineStoreConfigSchema, marshalProtoSchemaSpecSchema, marshalPurgeFeatureEntitiesRequestSchema, marshalRequestSourceSchema, marshalRollingWindowSchema, marshalSawtoothWindowSchema, marshalSchemaConfigSchema, marshalSchemaLocatorSchema, marshalSchemaLocator_ConfluentSchemaSchema, marshalSchemaRegistryConfigSchema, marshalSecretScopeReferenceSchema, marshalSlidingWindowSchema, marshalSourceLatenessSchema, marshalStddevPopFunctionSchema, marshalStddevSampFunctionSchema, marshalStreamArnListSchema, marshalStreamConnectionConfigSchema, marshalStreamNameListSchema, marshalStreamSchema, marshalStreamSchemaConfigSchema, marshalStreamSourceConfigSchema, marshalStreamSourceSchema, marshalStreamingModeSchema, marshalSubscriptionModeSchema, marshalSumFunctionSchema, marshalTableTriggerSchema, marshalTimeWindowSchema, marshalTimeseriesColumnSchema, marshalTumblingWindowSchema, marshalVarPopFunctionSchema, marshalVarSampFunctionSchema, materializedFeatureFieldMask, streamFieldMask, unmarshalAggregationFunctionSchema, unmarshalApiErrorSchema, unmarshalApproxCountDistinctFunctionSchema, unmarshalApproxPercentileFunctionSchema, unmarshalAuthConfigSchema, unmarshalAvgFunctionSchema, unmarshalBackfillFeaturesResponseSchema, unmarshalBackfillOperationMetadataSchema, unmarshalBackfillRangeSchema, unmarshalBackfillSourceSchema, unmarshalBatchCreateMaterializedFeaturesResponseSchema, unmarshalColumnIdentifierSchema, unmarshalColumnSelectionSchema, unmarshalContinuousWindowSchema, unmarshalCountFunctionSchema, unmarshalCronScheduleSchema, unmarshalCustomUdfSchema, unmarshalDataSourceSchema, unmarshalDeltaTableSourceSchema, unmarshalDirectMtlsConfigSchema, unmarshalDirectSchemasSchema, unmarshalEntityColumnSchema, unmarshalFeatureReferenceSchema, unmarshalFeatureSchema, unmarshalFeatureViewSourceSchema, unmarshalFieldDefinitionSchema, unmarshalFirstDistinctFunctionSchema, unmarshalFirstFunctionSchema, unmarshalFirstNFunctionSchema, unmarshalFlatSchemaSchema, unmarshalFunctionExtraParameterSchema, unmarshalFunctionSchema, unmarshalIngestionConfigSchema, unmarshalIngestionDestinationSchema, unmarshalInputBindingSchema, unmarshalJobContextSchema, unmarshalKafkaConfigSchema, unmarshalKafkaSourceSchema, unmarshalKafkaStreamConfigSchema, unmarshalKafkaSubscriptionModeSchema, unmarshalKinesisStreamConfigSchema, unmarshalLastDistinctFunctionSchema, unmarshalLastFunctionSchema, unmarshalLastNFunctionSchema, unmarshalLineageContextSchema, unmarshalListFeaturesResponseSchema, unmarshalListKafkaConfigsResponseSchema, unmarshalListMaterializedFeaturesResponseSchema, unmarshalListStreamsResponseSchema, unmarshalMaterializedFeatureSchema, unmarshalMaxFunctionSchema, unmarshalMinFunctionSchema, unmarshalMtlsConfigSchema, unmarshalOfflineStoreConfigSchema, unmarshalOnlineStoreConfigSchema, unmarshalOperationSchema, unmarshalProtoSchemaSpecSchema, unmarshalPurgeFeatureEntitiesMetadataSchema, unmarshalPurgeFeatureEntitiesResponseSchema, unmarshalPurgeFeatureEntitiesResultSchema, unmarshalRequestSourceSchema, unmarshalRollingWindowSchema, unmarshalSawtoothWindowSchema, unmarshalSchemaConfigSchema, unmarshalSchemaLocatorSchema, unmarshalSchemaLocator_ConfluentSchemaSchema, unmarshalSchemaRegistryConfigSchema, unmarshalSecretScopeReferenceSchema, unmarshalSlidingWindowSchema, unmarshalSourceLatenessSchema, unmarshalStddevPopFunctionSchema, unmarshalStddevSampFunctionSchema, unmarshalStreamArnListSchema, unmarshalStreamConnectionConfigSchema, unmarshalStreamNameListSchema, unmarshalStreamSchema, unmarshalStreamSchemaConfigSchema, unmarshalStreamSourceConfigSchema, unmarshalStreamSourceSchema, unmarshalStreamingModeSchema, unmarshalSubscriptionModeSchema, unmarshalSumFunctionSchema, unmarshalTableTriggerSchema, unmarshalTimeWindowSchema, unmarshalTimeseriesColumnSchema, unmarshalTumblingWindowSchema, unmarshalVarPopFunctionSchema, unmarshalVarSampFunctionSchema };
1369
2231
  //# sourceMappingURL=model.d.ts.map