@databricks/sdk-features 0.49.0 → 0.52.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.
- package/dist/package.js +1 -1
- package/dist/v1/client.d.ts +52 -2
- package/dist/v1/client.d.ts.map +1 -1
- package/dist/v1/client.js +185 -3
- package/dist/v1/client.js.map +1 -1
- package/dist/v1/index.d.ts +3 -3
- package/dist/v1/index.js +3 -3
- package/dist/v1/model.d.ts +832 -4
- package/dist/v1/model.d.ts.map +1 -1
- package/dist/v1/model.js +465 -42
- package/dist/v1/model.js.map +1 -1
- package/dist/v1/transport.js +11 -3
- package/dist/v1/transport.js.map +1 -1
- package/dist/v1/utils.d.ts +13 -1
- package/dist/v1/utils.d.ts.map +1 -1
- package/dist/v1/utils.js +19 -2
- package/dist/v1/utils.js.map +1 -1
- package/package.json +4 -4
package/dist/v1/model.d.ts
CHANGED
|
@@ -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,32 @@ 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
|
+
/** Result of a completed backfill. */
|
|
718
|
+
interface BackfillFeaturesResponse {}
|
|
719
|
+
/** Progress and configuration for a backfill. */
|
|
720
|
+
interface BackfillOperationMetadata {
|
|
721
|
+
/** Full names of the features targeted by the backfill. */
|
|
722
|
+
featureFullNames?: string[] | undefined;
|
|
723
|
+
/** Output ranges targeted by the backfill. */
|
|
724
|
+
backfillRanges?: BackfillRange[] | undefined;
|
|
725
|
+
/** Current state of the backfill. */
|
|
726
|
+
state?: BackfillOperationMetadata_State | undefined;
|
|
727
|
+
}
|
|
728
|
+
/** A time range for a backfill. */
|
|
729
|
+
interface BackfillRange {
|
|
730
|
+
/** Start of the backfill range, inclusive. If unset, defaults to the earliest source timestamp of the feature. */
|
|
731
|
+
startTime?: Temporal.Instant | undefined;
|
|
732
|
+
/** End of the backfill range, exclusive. If unset, defaults to the current time. */
|
|
733
|
+
endTime?: Temporal.Instant | undefined;
|
|
734
|
+
}
|
|
148
735
|
interface BackfillSource {
|
|
149
736
|
backfillSource?: {
|
|
150
737
|
$case: 'deltaTableSource';
|
|
@@ -167,11 +754,26 @@ interface BatchCreateMaterializedFeaturesResponse {
|
|
|
167
754
|
/** The created materialized features with assigned IDs. */
|
|
168
755
|
materializedFeatures?: MaterializedFeature[] | undefined;
|
|
169
756
|
}
|
|
757
|
+
/** The request message for `CancelOperation` method. */
|
|
758
|
+
interface CancelOperationRequest {
|
|
759
|
+
/** The name of the operation resource to be cancelled. */
|
|
760
|
+
name?: string | undefined;
|
|
761
|
+
}
|
|
762
|
+
interface ColumnIdentifier {
|
|
763
|
+
/** String representation of the column name using dot-prefixed path notation. */
|
|
764
|
+
variantExprPath?: string | undefined;
|
|
765
|
+
}
|
|
170
766
|
/** A ColumnSelection function, equivalent to the LAST() record of an entity over a lifetime window */
|
|
171
767
|
interface ColumnSelection {
|
|
172
768
|
/** Column name from source to select as the feature value. */
|
|
173
769
|
column?: string | undefined;
|
|
174
770
|
}
|
|
771
|
+
interface ContinuousWindow {
|
|
772
|
+
/** The duration of the continuous window (must be positive). */
|
|
773
|
+
windowDuration?: Temporal.Duration | undefined;
|
|
774
|
+
/** The offset of the continuous window (must be non-positive). */
|
|
775
|
+
offset?: Temporal.Duration | undefined;
|
|
776
|
+
}
|
|
175
777
|
/** Computes the count of values. */
|
|
176
778
|
interface CountFunction {
|
|
177
779
|
/**
|
|
@@ -200,8 +802,15 @@ interface CreateStreamRequest {
|
|
|
200
802
|
}
|
|
201
803
|
/** A cron-based schedule trigger for the materialization pipeline. */
|
|
202
804
|
interface CronSchedule {
|
|
203
|
-
/**
|
|
805
|
+
/**
|
|
806
|
+
* The cron expression defining the schedule (e.g., "0 0 * * *" for daily at midnight). The
|
|
807
|
+
* schedule is interpreted in the UTC time zone. Required when mode is MANUAL (or unset). Left
|
|
808
|
+
* empty when mode is DERIVED, where the service computes it (aligned to UTC) from the features'
|
|
809
|
+
* window timing and fills it in on the response.
|
|
810
|
+
*/
|
|
204
811
|
cronExpression?: string | undefined;
|
|
812
|
+
/** How the schedule is determined. Defaults to MANUAL when unset. */
|
|
813
|
+
mode?: CronSchedule_Mode | undefined;
|
|
205
814
|
}
|
|
206
815
|
/**
|
|
207
816
|
* A CustomUdf function applies a registered Unity Catalog function row-wise to
|
|
@@ -230,6 +839,9 @@ interface DataSource {
|
|
|
230
839
|
} | {
|
|
231
840
|
$case: 'streamSource'; /** A Stream data source. */
|
|
232
841
|
streamSource: StreamSource;
|
|
842
|
+
} | {
|
|
843
|
+
$case: 'featureViewSource'; /** A data source composed from registered upstream Features. */
|
|
844
|
+
featureViewSource: FeatureViewSource;
|
|
233
845
|
} | undefined;
|
|
234
846
|
/**
|
|
235
847
|
* Completeness timing for this Feature's use of the source. This configuration is part of the
|
|
@@ -257,6 +869,8 @@ interface DeleteStreamRequest {
|
|
|
257
869
|
interface DeltaTableSource {
|
|
258
870
|
/** The full three-part (catalog, schema, table) name of the Delta table. */
|
|
259
871
|
fullName?: string | undefined;
|
|
872
|
+
entityColumns?: string[] | undefined;
|
|
873
|
+
timeseriesColumn?: string | undefined;
|
|
260
874
|
/** Single WHERE clause to filter delta table before applying transformations. Will be row-wise evaluated, so should only include conditionals and projections. */
|
|
261
875
|
filterCondition?: string | undefined;
|
|
262
876
|
/**
|
|
@@ -318,10 +932,13 @@ interface Feature {
|
|
|
318
932
|
fullName?: string | undefined;
|
|
319
933
|
/** The data source of the feature. */
|
|
320
934
|
source?: DataSource | undefined;
|
|
935
|
+
inputs?: string[] | undefined;
|
|
321
936
|
/** The function by which the feature is computed. */
|
|
322
937
|
function?: Function | undefined;
|
|
938
|
+
timeWindow?: TimeWindow | undefined;
|
|
323
939
|
/** The description of the feature. */
|
|
324
940
|
description?: string | undefined;
|
|
941
|
+
filterCondition?: string | undefined;
|
|
325
942
|
/**
|
|
326
943
|
* Lineage context information for this feature.
|
|
327
944
|
* WARNING: This field is primarily intended for internal use by <Databricks> systems and
|
|
@@ -345,6 +962,19 @@ interface Feature {
|
|
|
345
962
|
/** Username of the feature creator. */
|
|
346
963
|
createdBy?: string | undefined;
|
|
347
964
|
}
|
|
965
|
+
/**
|
|
966
|
+
* A reference to one registered upstream Feature. A message rather than a bare name so an
|
|
967
|
+
* upstream can later be pinned more precisely (e.g. by version) without a breaking type change.
|
|
968
|
+
*/
|
|
969
|
+
interface FeatureReference {
|
|
970
|
+
/** The three-part full name of the upstream Feature. */
|
|
971
|
+
feature?: string | undefined;
|
|
972
|
+
}
|
|
973
|
+
/** A data source composed from registered upstream Features. */
|
|
974
|
+
interface FeatureViewSource {
|
|
975
|
+
/** The upstream Features this source reads. Must include at least one feature. */
|
|
976
|
+
featureReferences?: FeatureReference[] | undefined;
|
|
977
|
+
}
|
|
348
978
|
/**
|
|
349
979
|
* A single field definition within a FlatSchema, specifying the field name and its scalar data type.
|
|
350
980
|
* Does not support nested or complex types (arrays, maps, structs).
|
|
@@ -383,6 +1013,8 @@ interface FlatSchema {
|
|
|
383
1013
|
fields?: FieldDefinition[] | undefined;
|
|
384
1014
|
}
|
|
385
1015
|
interface Function {
|
|
1016
|
+
functionType?: FunctionFunctionType | undefined;
|
|
1017
|
+
extraParameters?: FunctionExtraParameter[] | undefined;
|
|
386
1018
|
function?: {
|
|
387
1019
|
$case: 'aggregationFunction'; /** An aggregation function applied over a time window. */
|
|
388
1020
|
aggregationFunction: AggregationFunction;
|
|
@@ -394,6 +1026,12 @@ interface Function {
|
|
|
394
1026
|
customUdf: CustomUdf;
|
|
395
1027
|
} | undefined;
|
|
396
1028
|
}
|
|
1029
|
+
interface FunctionExtraParameter {
|
|
1030
|
+
/** The name of the parameter. */
|
|
1031
|
+
key?: string | undefined;
|
|
1032
|
+
/** The value of the parameter. */
|
|
1033
|
+
value?: string | undefined;
|
|
1034
|
+
}
|
|
397
1035
|
interface GetFeatureRequest {
|
|
398
1036
|
/** Name of the feature to get. */
|
|
399
1037
|
fullName?: string | undefined;
|
|
@@ -406,6 +1044,11 @@ interface GetMaterializedFeatureRequest {
|
|
|
406
1044
|
/** The ID of the materialized feature. */
|
|
407
1045
|
materializedFeatureId?: string | undefined;
|
|
408
1046
|
}
|
|
1047
|
+
/** The request message for `GetOperation` method. */
|
|
1048
|
+
interface GetOperationRequest {
|
|
1049
|
+
/** The name of the operation resource. */
|
|
1050
|
+
name?: string | undefined;
|
|
1051
|
+
}
|
|
409
1052
|
/** Get a Stream by its full three-part name (catalog.schema.stream). */
|
|
410
1053
|
interface GetStreamRequest {
|
|
411
1054
|
/** Full three-part name (catalog.schema.stream) of the Stream to get. */
|
|
@@ -425,7 +1068,8 @@ interface IngestionConfig {
|
|
|
425
1068
|
/**
|
|
426
1069
|
* A user-provided source for backfilling data. Historical data is used when creating a training set from streaming features linked to this Stream.
|
|
427
1070
|
* 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
|
|
1071
|
+
* The schema for this source must match exactly that of the key and payload schemas specified for this Stream,
|
|
1072
|
+
* except that it may omit any columns listed in excluded_columns.
|
|
429
1073
|
*/
|
|
430
1074
|
backfillSource?: BackfillSource | undefined;
|
|
431
1075
|
/**
|
|
@@ -443,6 +1087,21 @@ interface IngestionConfig {
|
|
|
443
1087
|
ingestionJobId?: bigint | undefined;
|
|
444
1088
|
/** The ID of the Databricks Job that performs the historical backfill of the ingestion Delta table. */
|
|
445
1089
|
backfillJobId?: bigint | undefined;
|
|
1090
|
+
/**
|
|
1091
|
+
* Custom tags to associate with this stream's managed ingestion. They are applied to the
|
|
1092
|
+
* ingestion pipeline and its forward-fill and backfill jobs, and forwarded to the underlying
|
|
1093
|
+
* compute as cluster tags, so ingestion cost can be attributed in the billing system tables.
|
|
1094
|
+
* These tags apply only to the managed ingestion compute; they are not applied to the Stream
|
|
1095
|
+
* entity itself, and are distinct from any Unity Catalog tags on the Stream.
|
|
1096
|
+
* A maximum of 25 tags is supported; keys and values are subject to the same limitations as
|
|
1097
|
+
* cluster tags.
|
|
1098
|
+
*/
|
|
1099
|
+
tags?: Record<string, string> | undefined;
|
|
1100
|
+
/**
|
|
1101
|
+
* The ID of the budget policy used to attribute the serverless compute cost of this stream's
|
|
1102
|
+
* managed ingestion. If not specified, a default budget policy may be applied.
|
|
1103
|
+
*/
|
|
1104
|
+
budgetPolicyId?: string | undefined;
|
|
446
1105
|
}
|
|
447
1106
|
/** Destination for the <Databricks>-managed Delta table that holds an offline copy of the streaming data for querying and training. */
|
|
448
1107
|
interface IngestionDestination {
|
|
@@ -497,6 +1156,8 @@ interface KafkaConfig {
|
|
|
497
1156
|
interface KafkaSource {
|
|
498
1157
|
/** 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
1158
|
name?: string | undefined;
|
|
1159
|
+
entityColumnIdentifiers?: ColumnIdentifier[] | undefined;
|
|
1160
|
+
timeseriesColumnIdentifier?: ColumnIdentifier | undefined;
|
|
500
1161
|
/** The filter condition applied to the source data before aggregation. */
|
|
501
1162
|
filterCondition?: string | undefined;
|
|
502
1163
|
}
|
|
@@ -558,6 +1219,18 @@ interface KinesisStreamConfig {
|
|
|
558
1219
|
} | undefined;
|
|
559
1220
|
/**
|
|
560
1221
|
* Optional Kinesis source options, validated against a server-side allowlist at request time.
|
|
1222
|
+
* Allowed keys:
|
|
1223
|
+
* - `consumerMode`
|
|
1224
|
+
* - `consumerNamePrefix`
|
|
1225
|
+
* - `maxFetchRate`
|
|
1226
|
+
* - `minFetchPeriod`
|
|
1227
|
+
* - `maxFetchDuration`
|
|
1228
|
+
* - `maxRecordsPerFetch`
|
|
1229
|
+
* - `shardsPerTask`
|
|
1230
|
+
* - `fetchBufferSize`
|
|
1231
|
+
* - `shardFetchInterval`
|
|
1232
|
+
* `consumerMode` must be `efo` or `polling` (case-insensitive).
|
|
1233
|
+
* `maxRecordsPerFetch` applies only during ingestion and does not affect the materialization pipeline.
|
|
561
1234
|
* Auth and connection details belong on the parent Stream's `connection_config`, not here.
|
|
562
1235
|
*/
|
|
563
1236
|
extraOptions?: Record<string, string> | undefined;
|
|
@@ -695,6 +1368,7 @@ interface MaterializedFeature {
|
|
|
695
1368
|
* If the pipeline has not run yet, this field will be null.
|
|
696
1369
|
*/
|
|
697
1370
|
lastMaterializationTime?: Temporal.Instant | undefined;
|
|
1371
|
+
cronSchedule?: string | undefined;
|
|
698
1372
|
/** True if this is an online materialized feature. False if it is an offline materialized feature. */
|
|
699
1373
|
isOnline?: boolean | undefined;
|
|
700
1374
|
/** The trigger configuration for the materialization pipeline. */
|
|
@@ -713,6 +1387,23 @@ interface MaterializedFeature {
|
|
|
713
1387
|
*/
|
|
714
1388
|
streamingMode: StreamingMode;
|
|
715
1389
|
} | undefined;
|
|
1390
|
+
/** Name of the latest backfill operation on this materialized feature. Format: operations/{operation_id}. */
|
|
1391
|
+
latestBackfillOperation?: string | undefined;
|
|
1392
|
+
/**
|
|
1393
|
+
* Custom tags to associate with this materialization. They are applied to the materialization
|
|
1394
|
+
* job (for batch features) or pipeline (for streaming features) and forwarded to the underlying
|
|
1395
|
+
* compute as cluster tags, so materialization cost can be attributed in the billing system
|
|
1396
|
+
* tables. These tags apply only to the materialization compute; they are not applied to the
|
|
1397
|
+
* Unity Catalog Feature resource itself, whose tags are managed separately through the Unity
|
|
1398
|
+
* Catalog tagging API. A maximum of 25 tags is supported; keys and values are subject to the
|
|
1399
|
+
* same limitations as cluster tags.
|
|
1400
|
+
*/
|
|
1401
|
+
tags?: Record<string, string> | undefined;
|
|
1402
|
+
/**
|
|
1403
|
+
* The ID of the budget policy used to attribute the serverless compute cost of this
|
|
1404
|
+
* materialization. If not specified, a default budget policy may be applied.
|
|
1405
|
+
*/
|
|
1406
|
+
budgetPolicyId?: string | undefined;
|
|
716
1407
|
}
|
|
717
1408
|
/** Computes the maximum value. */
|
|
718
1409
|
interface MaxFunction {
|
|
@@ -804,6 +1495,43 @@ interface OnlineStoreConfig {
|
|
|
804
1495
|
/** The name of the target online store. */
|
|
805
1496
|
onlineStoreName?: string | undefined;
|
|
806
1497
|
}
|
|
1498
|
+
/**
|
|
1499
|
+
* This resource represents a long-running operation that is the result of a
|
|
1500
|
+
* network API call.
|
|
1501
|
+
*/
|
|
1502
|
+
interface Operation {
|
|
1503
|
+
/**
|
|
1504
|
+
* The server-assigned name, which is only unique within the same service that
|
|
1505
|
+
* originally returns it. If you use the default HTTP mapping, the
|
|
1506
|
+
* `name` should be a resource name ending with `operations/{unique_id}`.
|
|
1507
|
+
*/
|
|
1508
|
+
name?: string | undefined;
|
|
1509
|
+
/**
|
|
1510
|
+
* Service-specific metadata associated with the operation. It typically
|
|
1511
|
+
* contains progress information and common metadata such as create time.
|
|
1512
|
+
* Some services might not provide such metadata.
|
|
1513
|
+
*/
|
|
1514
|
+
metadata?: Record<string, unknown> | undefined;
|
|
1515
|
+
/**
|
|
1516
|
+
* If the value is `false`, it means the operation is still in progress.
|
|
1517
|
+
* If `true`, the operation is completed, and either `error` or `response` is
|
|
1518
|
+
* available.
|
|
1519
|
+
*/
|
|
1520
|
+
done?: boolean | undefined;
|
|
1521
|
+
/**
|
|
1522
|
+
* The operation result, which can be either an `error` or a valid `response`.
|
|
1523
|
+
* If `done` == `false`, neither `error` nor `response` is set.
|
|
1524
|
+
* If `done` == `true`, exactly one of `error` or `response` can be set.
|
|
1525
|
+
* Some services might not provide the result.
|
|
1526
|
+
*/
|
|
1527
|
+
result?: {
|
|
1528
|
+
$case: 'error'; /** The error result of the operation in case of failure or cancellation. */
|
|
1529
|
+
error: ApiError;
|
|
1530
|
+
} | {
|
|
1531
|
+
$case: 'response'; /** The normal, successful response of the operation. */
|
|
1532
|
+
response: Record<string, unknown>;
|
|
1533
|
+
} | undefined;
|
|
1534
|
+
}
|
|
807
1535
|
/**
|
|
808
1536
|
* A Protocol Buffer schema paired with the name of the message within it that describes the
|
|
809
1537
|
* Kafka payload. A .proto file may declare multiple messages; message_name disambiguates.
|
|
@@ -822,6 +1550,65 @@ interface ProtoSchemaSpec {
|
|
|
822
1550
|
*/
|
|
823
1551
|
messageName?: string | undefined;
|
|
824
1552
|
}
|
|
1553
|
+
/** Progress and configuration for a feature entity purge. */
|
|
1554
|
+
interface PurgeFeatureEntitiesMetadata {
|
|
1555
|
+
/** Fully qualified names of the features targeted by the purge. */
|
|
1556
|
+
features?: string[] | undefined;
|
|
1557
|
+
/** Fully qualified name of the Unity Catalog Delta table containing the entity keys to purge. */
|
|
1558
|
+
entitiesTable?: string | undefined;
|
|
1559
|
+
/** Version of the entities table used by the purge. */
|
|
1560
|
+
entitiesTableVersion?: string | undefined;
|
|
1561
|
+
/** Time at which the purge operation was created. */
|
|
1562
|
+
createTime?: Temporal.Instant | undefined;
|
|
1563
|
+
/** Current state of the purge operation. */
|
|
1564
|
+
state?: PurgeFeatureEntitiesMetadata_State | undefined;
|
|
1565
|
+
/** ID of the job that executes this purge. */
|
|
1566
|
+
jobId?: bigint | undefined;
|
|
1567
|
+
}
|
|
1568
|
+
/** Request to purge materialized feature values for entities listed in a Unity Catalog Delta table. */
|
|
1569
|
+
interface PurgeFeatureEntitiesRequest {
|
|
1570
|
+
/**
|
|
1571
|
+
* Fully qualified names of the features to purge. At least one nonempty feature name is required.
|
|
1572
|
+
* A request may contain at most 10000 features; submit additional features in separate requests.
|
|
1573
|
+
* Duplicate features are rejected.
|
|
1574
|
+
*/
|
|
1575
|
+
features?: string[] | undefined;
|
|
1576
|
+
/** Source of the entity keys to purge. */
|
|
1577
|
+
entities?: {
|
|
1578
|
+
$case: 'entitiesTable';
|
|
1579
|
+
/**
|
|
1580
|
+
* Fully qualified name of the Unity Catalog Delta table containing the entity keys to purge.
|
|
1581
|
+
* The table may contain a subset of each feature's entity-key columns. A partial key match
|
|
1582
|
+
* deletes all feature rows matching the provided key values. Non-key columns are rejected;
|
|
1583
|
+
* null key values are allowed.
|
|
1584
|
+
*/
|
|
1585
|
+
entitiesTable: string;
|
|
1586
|
+
} | undefined;
|
|
1587
|
+
/** Optional UUID4 idempotency token for the request. */
|
|
1588
|
+
requestId?: string | undefined;
|
|
1589
|
+
}
|
|
1590
|
+
/** Result of a completed feature entity purge. */
|
|
1591
|
+
interface PurgeFeatureEntitiesResponse {
|
|
1592
|
+
/** Metadata about the purge operation. */
|
|
1593
|
+
metadata?: PurgeFeatureEntitiesMetadata | undefined;
|
|
1594
|
+
/** Per-feature purge results. */
|
|
1595
|
+
results?: PurgeFeatureEntitiesResult[] | undefined;
|
|
1596
|
+
/** State of the purge operation. */
|
|
1597
|
+
state?: PurgeFeatureEntitiesMetadata_State | undefined;
|
|
1598
|
+
/** Operation-level error, if the purge failed outside an individual feature target. */
|
|
1599
|
+
error?: ApiError | undefined;
|
|
1600
|
+
}
|
|
1601
|
+
/** Result of purging one feature. */
|
|
1602
|
+
interface PurgeFeatureEntitiesResult {
|
|
1603
|
+
/** Fully qualified name of the feature that was purged. */
|
|
1604
|
+
feature?: string | undefined;
|
|
1605
|
+
/** State of the offline purge for this feature. */
|
|
1606
|
+
offlineState?: PurgeFeatureEntitiesResult_State | undefined;
|
|
1607
|
+
/** State of the online purge for this feature. */
|
|
1608
|
+
onlineState?: PurgeFeatureEntitiesResult_State | undefined;
|
|
1609
|
+
/** Error encountered while purging this feature, if any. */
|
|
1610
|
+
error?: ApiError | undefined;
|
|
1611
|
+
}
|
|
825
1612
|
/** A request-time data source whose value is provided at inference time: offline batch scoring or online serving endpoint */
|
|
826
1613
|
interface RequestSource {
|
|
827
1614
|
/** The schema describing the request-time fields. Currently only flat schemas are supported. */
|
|
@@ -996,6 +1783,21 @@ interface Stream {
|
|
|
996
1783
|
schemaConfig?: StreamSchemaConfig | undefined;
|
|
997
1784
|
/** Configuration for streaming data ingestion: the managed table storing an offline copy of forward fill data and optional historical backfill. */
|
|
998
1785
|
ingestionConfig?: IngestionConfig | undefined;
|
|
1786
|
+
/**
|
|
1787
|
+
* Optional SQL predicate to filter which record types from a streaming channel (e.g. a topic for Kafka) belong to this Stream.
|
|
1788
|
+
* Events that do not match are not written to the ingestion table and are not used in materialization.
|
|
1789
|
+
* Example: "value.event_type = 'transaction'".
|
|
1790
|
+
*/
|
|
1791
|
+
recordTypeFilter?: string | undefined;
|
|
1792
|
+
/**
|
|
1793
|
+
* Column paths (dot notation, e.g. "value.email" for Kafka) to drop.
|
|
1794
|
+
* 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").
|
|
1795
|
+
* These columns are not written to the ingestion table and cannot be referenced by any feature.
|
|
1796
|
+
* They are dropped from ingestion, backfill, and materialization.
|
|
1797
|
+
* 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.
|
|
1798
|
+
* A column cannot also be a deduplication column in the ingestion_config.
|
|
1799
|
+
*/
|
|
1800
|
+
excludedColumns?: string[] | undefined;
|
|
999
1801
|
/** Time at which this Stream was created. */
|
|
1000
1802
|
createTime?: Temporal.Instant | undefined;
|
|
1001
1803
|
/** Username of the Stream creator. */
|
|
@@ -1125,6 +1927,9 @@ interface SumFunction {
|
|
|
1125
1927
|
interface TableTrigger {}
|
|
1126
1928
|
interface TimeWindow {
|
|
1127
1929
|
windowType?: {
|
|
1930
|
+
$case: 'continuous';
|
|
1931
|
+
continuous: ContinuousWindow;
|
|
1932
|
+
} | {
|
|
1128
1933
|
$case: 'tumbling';
|
|
1129
1934
|
tumbling: TumblingWindow;
|
|
1130
1935
|
} | {
|
|
@@ -1145,6 +1950,7 @@ interface TimeWindow {
|
|
|
1145
1950
|
* tumbling and fixed-duration sliding windows first emit at an offset-aligned boundary after a
|
|
1146
1951
|
* full window can be formed. If unset, lifetime sliding windows and rolling windows emit as soon as
|
|
1147
1952
|
* eligible source data exists.
|
|
1953
|
+
* Not currently supported for sawtooth windows or for Features with a stream source.
|
|
1148
1954
|
*/
|
|
1149
1955
|
startTime?: Temporal.Instant | undefined;
|
|
1150
1956
|
}
|
|
@@ -1214,13 +2020,19 @@ interface VarSampFunction {
|
|
|
1214
2020
|
input?: string | undefined;
|
|
1215
2021
|
}
|
|
1216
2022
|
declare const unmarshalAggregationFunctionSchema: z.ZodType<AggregationFunction>;
|
|
2023
|
+
declare const unmarshalApiErrorSchema: z.ZodType<ApiError>;
|
|
1217
2024
|
declare const unmarshalApproxCountDistinctFunctionSchema: z.ZodType<ApproxCountDistinctFunction>;
|
|
1218
2025
|
declare const unmarshalApproxPercentileFunctionSchema: z.ZodType<ApproxPercentileFunction>;
|
|
1219
2026
|
declare const unmarshalAuthConfigSchema: z.ZodType<AuthConfig>;
|
|
1220
2027
|
declare const unmarshalAvgFunctionSchema: z.ZodType<AvgFunction>;
|
|
2028
|
+
declare const unmarshalBackfillFeaturesResponseSchema: z.ZodType<BackfillFeaturesResponse>;
|
|
2029
|
+
declare const unmarshalBackfillOperationMetadataSchema: z.ZodType<BackfillOperationMetadata>;
|
|
2030
|
+
declare const unmarshalBackfillRangeSchema: z.ZodType<BackfillRange>;
|
|
1221
2031
|
declare const unmarshalBackfillSourceSchema: z.ZodType<BackfillSource>;
|
|
1222
2032
|
declare const unmarshalBatchCreateMaterializedFeaturesResponseSchema: z.ZodType<BatchCreateMaterializedFeaturesResponse>;
|
|
2033
|
+
declare const unmarshalColumnIdentifierSchema: z.ZodType<ColumnIdentifier>;
|
|
1223
2034
|
declare const unmarshalColumnSelectionSchema: z.ZodType<ColumnSelection>;
|
|
2035
|
+
declare const unmarshalContinuousWindowSchema: z.ZodType<ContinuousWindow>;
|
|
1224
2036
|
declare const unmarshalCountFunctionSchema: z.ZodType<CountFunction>;
|
|
1225
2037
|
declare const unmarshalCronScheduleSchema: z.ZodType<CronSchedule>;
|
|
1226
2038
|
declare const unmarshalCustomUdfSchema: z.ZodType<CustomUdf>;
|
|
@@ -1230,12 +2042,15 @@ declare const unmarshalDirectMtlsConfigSchema: z.ZodType<DirectMtlsConfig>;
|
|
|
1230
2042
|
declare const unmarshalDirectSchemasSchema: z.ZodType<DirectSchemas>;
|
|
1231
2043
|
declare const unmarshalEntityColumnSchema: z.ZodType<EntityColumn>;
|
|
1232
2044
|
declare const unmarshalFeatureSchema: z.ZodType<Feature>;
|
|
2045
|
+
declare const unmarshalFeatureReferenceSchema: z.ZodType<FeatureReference>;
|
|
2046
|
+
declare const unmarshalFeatureViewSourceSchema: z.ZodType<FeatureViewSource>;
|
|
1233
2047
|
declare const unmarshalFieldDefinitionSchema: z.ZodType<FieldDefinition>;
|
|
1234
2048
|
declare const unmarshalFirstDistinctFunctionSchema: z.ZodType<FirstDistinctFunction>;
|
|
1235
2049
|
declare const unmarshalFirstFunctionSchema: z.ZodType<FirstFunction>;
|
|
1236
2050
|
declare const unmarshalFirstNFunctionSchema: z.ZodType<FirstNFunction>;
|
|
1237
2051
|
declare const unmarshalFlatSchemaSchema: z.ZodType<FlatSchema>;
|
|
1238
2052
|
declare const unmarshalFunctionSchema: z.ZodType<Function>;
|
|
2053
|
+
declare const unmarshalFunctionExtraParameterSchema: z.ZodType<FunctionExtraParameter>;
|
|
1239
2054
|
declare const unmarshalIngestionConfigSchema: z.ZodType<IngestionConfig>;
|
|
1240
2055
|
declare const unmarshalIngestionDestinationSchema: z.ZodType<IngestionDestination>;
|
|
1241
2056
|
declare const unmarshalInputBindingSchema: z.ZodType<InputBinding>;
|
|
@@ -1259,7 +2074,11 @@ declare const unmarshalMinFunctionSchema: z.ZodType<MinFunction>;
|
|
|
1259
2074
|
declare const unmarshalMtlsConfigSchema: z.ZodType<MtlsConfig>;
|
|
1260
2075
|
declare const unmarshalOfflineStoreConfigSchema: z.ZodType<OfflineStoreConfig>;
|
|
1261
2076
|
declare const unmarshalOnlineStoreConfigSchema: z.ZodType<OnlineStoreConfig>;
|
|
2077
|
+
declare const unmarshalOperationSchema: z.ZodType<Operation>;
|
|
1262
2078
|
declare const unmarshalProtoSchemaSpecSchema: z.ZodType<ProtoSchemaSpec>;
|
|
2079
|
+
declare const unmarshalPurgeFeatureEntitiesMetadataSchema: z.ZodType<PurgeFeatureEntitiesMetadata>;
|
|
2080
|
+
declare const unmarshalPurgeFeatureEntitiesResponseSchema: z.ZodType<PurgeFeatureEntitiesResponse>;
|
|
2081
|
+
declare const unmarshalPurgeFeatureEntitiesResultSchema: z.ZodType<PurgeFeatureEntitiesResult>;
|
|
1263
2082
|
declare const unmarshalRequestSourceSchema: z.ZodType<RequestSource>;
|
|
1264
2083
|
declare const unmarshalRollingWindowSchema: z.ZodType<RollingWindow>;
|
|
1265
2084
|
declare const unmarshalSawtoothWindowSchema: z.ZodType<SawtoothWindow>;
|
|
@@ -1293,9 +2112,14 @@ declare const marshalApproxCountDistinctFunctionSchema: z.ZodType;
|
|
|
1293
2112
|
declare const marshalApproxPercentileFunctionSchema: z.ZodType;
|
|
1294
2113
|
declare const marshalAuthConfigSchema: z.ZodType;
|
|
1295
2114
|
declare const marshalAvgFunctionSchema: z.ZodType;
|
|
2115
|
+
declare const marshalBackfillFeaturesRequestSchema: z.ZodType;
|
|
2116
|
+
declare const marshalBackfillRangeSchema: z.ZodType;
|
|
1296
2117
|
declare const marshalBackfillSourceSchema: z.ZodType;
|
|
1297
2118
|
declare const marshalBatchCreateMaterializedFeaturesRequestSchema: z.ZodType;
|
|
2119
|
+
declare const marshalCancelOperationRequestSchema: z.ZodType;
|
|
2120
|
+
declare const marshalColumnIdentifierSchema: z.ZodType;
|
|
1298
2121
|
declare const marshalColumnSelectionSchema: z.ZodType;
|
|
2122
|
+
declare const marshalContinuousWindowSchema: z.ZodType;
|
|
1299
2123
|
declare const marshalCountFunctionSchema: z.ZodType;
|
|
1300
2124
|
declare const marshalCreateMaterializedFeatureRequestSchema: z.ZodType;
|
|
1301
2125
|
declare const marshalCronScheduleSchema: z.ZodType;
|
|
@@ -1306,12 +2130,15 @@ declare const marshalDirectMtlsConfigSchema: z.ZodType;
|
|
|
1306
2130
|
declare const marshalDirectSchemasSchema: z.ZodType;
|
|
1307
2131
|
declare const marshalEntityColumnSchema: z.ZodType;
|
|
1308
2132
|
declare const marshalFeatureSchema: z.ZodType;
|
|
2133
|
+
declare const marshalFeatureReferenceSchema: z.ZodType;
|
|
2134
|
+
declare const marshalFeatureViewSourceSchema: z.ZodType;
|
|
1309
2135
|
declare const marshalFieldDefinitionSchema: z.ZodType;
|
|
1310
2136
|
declare const marshalFirstDistinctFunctionSchema: z.ZodType;
|
|
1311
2137
|
declare const marshalFirstFunctionSchema: z.ZodType;
|
|
1312
2138
|
declare const marshalFirstNFunctionSchema: z.ZodType;
|
|
1313
2139
|
declare const marshalFlatSchemaSchema: z.ZodType;
|
|
1314
2140
|
declare const marshalFunctionSchema: z.ZodType;
|
|
2141
|
+
declare const marshalFunctionExtraParameterSchema: z.ZodType;
|
|
1315
2142
|
declare const marshalIngestionConfigSchema: z.ZodType;
|
|
1316
2143
|
declare const marshalIngestionDestinationSchema: z.ZodType;
|
|
1317
2144
|
declare const marshalInputBindingSchema: z.ZodType;
|
|
@@ -1332,6 +2159,7 @@ declare const marshalMtlsConfigSchema: z.ZodType;
|
|
|
1332
2159
|
declare const marshalOfflineStoreConfigSchema: z.ZodType;
|
|
1333
2160
|
declare const marshalOnlineStoreConfigSchema: z.ZodType;
|
|
1334
2161
|
declare const marshalProtoSchemaSpecSchema: z.ZodType;
|
|
2162
|
+
declare const marshalPurgeFeatureEntitiesRequestSchema: z.ZodType;
|
|
1335
2163
|
declare const marshalRequestSourceSchema: z.ZodType;
|
|
1336
2164
|
declare const marshalRollingWindowSchema: z.ZodType;
|
|
1337
2165
|
declare const marshalSawtoothWindowSchema: z.ZodType;
|
|
@@ -1365,5 +2193,5 @@ declare function kafkaConfigFieldMask(...paths: string[]): FieldMask<KafkaConfig
|
|
|
1365
2193
|
declare function materializedFeatureFieldMask(...paths: string[]): FieldMask<MaterializedFeature>;
|
|
1366
2194
|
declare function streamFieldMask(...paths: string[]): FieldMask<Stream>;
|
|
1367
2195
|
//#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 };
|
|
2196
|
+
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
2197
|
//# sourceMappingURL=model.d.ts.map
|