@databricks/sdk-features 0.40.0 → 0.42.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/index.d.ts +2 -2
- package/dist/v1/index.js +2 -2
- package/dist/v1/model.d.ts +55 -108
- package/dist/v1/model.d.ts.map +1 -1
- package/dist/v1/model.js +154 -225
- package/dist/v1/model.js.map +1 -1
- package/package.json +4 -4
package/dist/v1/model.js
CHANGED
|
@@ -21,23 +21,6 @@ const ScalarDataType = {
|
|
|
21
21
|
BINARY: "BINARY",
|
|
22
22
|
DECIMAL: "DECIMAL"
|
|
23
23
|
};
|
|
24
|
-
/** Deprecated: Use the function-specific messages in AggregationFunction.function_type oneof instead. Kept for backwards compatibility. */
|
|
25
|
-
const Function_FunctionType = {
|
|
26
|
-
FUNCTION_TYPE_UNSPECIFIED: "FUNCTION_TYPE_UNSPECIFIED",
|
|
27
|
-
AVG: "AVG",
|
|
28
|
-
COUNT: "COUNT",
|
|
29
|
-
SUM: "SUM",
|
|
30
|
-
MIN: "MIN",
|
|
31
|
-
MAX: "MAX",
|
|
32
|
-
FIRST: "FIRST",
|
|
33
|
-
LAST: "LAST",
|
|
34
|
-
APPROX_COUNT_DISTINCT: "APPROX_COUNT_DISTINCT",
|
|
35
|
-
APPROX_PERCENTILE: "APPROX_PERCENTILE",
|
|
36
|
-
STDDEV_POP: "STDDEV_POP",
|
|
37
|
-
STDDEV_SAMP: "STDDEV_SAMP",
|
|
38
|
-
VAR_POP: "VAR_POP",
|
|
39
|
-
VAR_SAMP: "VAR_SAMP"
|
|
40
|
-
};
|
|
41
24
|
const MaterializedFeature_PipelineScheduleState = {
|
|
42
25
|
PIPELINE_SCHEDULE_STATE_UNSPECIFIED: "PIPELINE_SCHEDULE_STATE_UNSPECIFIED",
|
|
43
26
|
SNAPSHOT: "SNAPSHOT",
|
|
@@ -172,15 +155,7 @@ const unmarshalBackfillSourceSchema = z.object({
|
|
|
172
155
|
deltaTableName: d.delta_table_name
|
|
173
156
|
} : void 0 }));
|
|
174
157
|
const unmarshalBatchCreateMaterializedFeaturesResponseSchema = z.object({ materialized_features: z.array(z.lazy(() => unmarshalMaterializedFeatureSchema)).optional() }).transform((d) => ({ materializedFeatures: d.materialized_features }));
|
|
175
|
-
const unmarshalColumnIdentifierSchema = z.object({ variant_expr_path: z.string().optional() }).transform((d) => ({ variantExprPath: d.variant_expr_path }));
|
|
176
158
|
const unmarshalColumnSelectionSchema = z.object({ column: z.string().optional() }).transform((d) => ({ column: d.column }));
|
|
177
|
-
const unmarshalContinuousWindowSchema = z.object({
|
|
178
|
-
window_duration: z.string().transform((s) => Temporal.Duration.from("PT" + s.toUpperCase())).optional(),
|
|
179
|
-
offset: z.string().transform((s) => Temporal.Duration.from("PT" + s.toUpperCase())).optional()
|
|
180
|
-
}).transform((d) => ({
|
|
181
|
-
windowDuration: d.window_duration,
|
|
182
|
-
offset: d.offset
|
|
183
|
-
}));
|
|
184
159
|
const unmarshalCountFunctionSchema = z.object({ input: z.string().optional() }).transform((d) => ({ input: d.input }));
|
|
185
160
|
const unmarshalCronScheduleSchema = z.object({ cron_expression: z.string().optional() }).transform((d) => ({ cronExpression: d.cron_expression }));
|
|
186
161
|
const unmarshalCustomUdfSchema = z.object({
|
|
@@ -194,31 +169,31 @@ const unmarshalDataSourceSchema = z.object({
|
|
|
194
169
|
delta_table_source: z.lazy(() => unmarshalDeltaTableSourceSchema).optional(),
|
|
195
170
|
kafka_source: z.lazy(() => unmarshalKafkaSourceSchema).optional(),
|
|
196
171
|
request_source: z.lazy(() => unmarshalRequestSourceSchema).optional(),
|
|
197
|
-
stream_source: z.lazy(() => unmarshalStreamSourceSchema).optional()
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
|
|
201
|
-
|
|
202
|
-
|
|
203
|
-
|
|
204
|
-
|
|
205
|
-
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
172
|
+
stream_source: z.lazy(() => unmarshalStreamSourceSchema).optional(),
|
|
173
|
+
lateness: z.lazy(() => unmarshalSourceLatenessSchema).optional()
|
|
174
|
+
}).transform((d) => ({
|
|
175
|
+
dataSource: d.delta_table_source !== void 0 ? {
|
|
176
|
+
$case: "deltaTableSource",
|
|
177
|
+
deltaTableSource: d.delta_table_source
|
|
178
|
+
} : d.kafka_source !== void 0 ? {
|
|
179
|
+
$case: "kafkaSource",
|
|
180
|
+
kafkaSource: d.kafka_source
|
|
181
|
+
} : d.request_source !== void 0 ? {
|
|
182
|
+
$case: "requestSource",
|
|
183
|
+
requestSource: d.request_source
|
|
184
|
+
} : d.stream_source !== void 0 ? {
|
|
185
|
+
$case: "streamSource",
|
|
186
|
+
streamSource: d.stream_source
|
|
187
|
+
} : void 0,
|
|
188
|
+
lateness: d.lateness
|
|
189
|
+
}));
|
|
211
190
|
const unmarshalDeltaTableSourceSchema = z.object({
|
|
212
191
|
full_name: z.string().optional(),
|
|
213
|
-
entity_columns: z.array(z.string()).optional(),
|
|
214
|
-
timeseries_column: z.string().optional(),
|
|
215
192
|
filter_condition: z.string().optional(),
|
|
216
193
|
transformation_sql: z.string().optional(),
|
|
217
194
|
dataframe_schema: z.string().optional()
|
|
218
195
|
}).transform((d) => ({
|
|
219
196
|
fullName: d.full_name,
|
|
220
|
-
entityColumns: d.entity_columns,
|
|
221
|
-
timeseriesColumn: d.timeseries_column,
|
|
222
197
|
filterCondition: d.filter_condition,
|
|
223
198
|
transformationSql: d.transformation_sql,
|
|
224
199
|
dataframeSchema: d.dataframe_schema
|
|
@@ -241,11 +216,8 @@ const unmarshalEntityColumnSchema = z.object({ name: z.string().optional() }).tr
|
|
|
241
216
|
const unmarshalFeatureSchema = z.object({
|
|
242
217
|
full_name: z.string().optional(),
|
|
243
218
|
source: z.lazy(() => unmarshalDataSourceSchema).optional(),
|
|
244
|
-
inputs: z.array(z.string()).optional(),
|
|
245
219
|
function: z.lazy(() => unmarshalFunctionSchema).optional(),
|
|
246
|
-
time_window: z.lazy(() => unmarshalTimeWindowSchema).optional(),
|
|
247
220
|
description: z.string().optional(),
|
|
248
|
-
filter_condition: z.string().optional(),
|
|
249
221
|
lineage_context: z.lazy(() => unmarshalLineageContextSchema).optional(),
|
|
250
222
|
entities: z.array(z.lazy(() => unmarshalEntityColumnSchema)).optional(),
|
|
251
223
|
timeseries_column: z.lazy(() => unmarshalTimeseriesColumnSchema).optional(),
|
|
@@ -257,11 +229,8 @@ const unmarshalFeatureSchema = z.object({
|
|
|
257
229
|
}).transform((d) => ({
|
|
258
230
|
fullName: d.full_name,
|
|
259
231
|
source: d.source,
|
|
260
|
-
inputs: d.inputs,
|
|
261
232
|
function: d.function,
|
|
262
|
-
timeWindow: d.time_window,
|
|
263
233
|
description: d.description,
|
|
264
|
-
filterCondition: d.filter_condition,
|
|
265
234
|
lineageContext: d.lineage_context,
|
|
266
235
|
entities: d.entities,
|
|
267
236
|
timeseriesColumn: d.timeseries_column,
|
|
@@ -303,32 +272,19 @@ const unmarshalFirstNFunctionSchema = z.object({
|
|
|
303
272
|
}));
|
|
304
273
|
const unmarshalFlatSchemaSchema = z.object({ fields: z.array(z.lazy(() => unmarshalFieldDefinitionSchema)).optional() }).transform((d) => ({ fields: d.fields }));
|
|
305
274
|
const unmarshalFunctionSchema = z.object({
|
|
306
|
-
function_type: z.string().optional(),
|
|
307
|
-
extra_parameters: z.array(z.lazy(() => unmarshalFunction_ExtraParameterSchema)).optional(),
|
|
308
275
|
aggregation_function: z.lazy(() => unmarshalAggregationFunctionSchema).optional(),
|
|
309
276
|
column_selection: z.lazy(() => unmarshalColumnSelectionSchema).optional(),
|
|
310
277
|
custom_udf: z.lazy(() => unmarshalCustomUdfSchema).optional()
|
|
311
|
-
}).transform((d) => ({
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
$case: "customUdf",
|
|
322
|
-
customUdf: d.custom_udf
|
|
323
|
-
} : void 0
|
|
324
|
-
}));
|
|
325
|
-
const unmarshalFunction_ExtraParameterSchema = z.object({
|
|
326
|
-
key: z.string().optional(),
|
|
327
|
-
value: z.string().optional()
|
|
328
|
-
}).transform((d) => ({
|
|
329
|
-
key: d.key,
|
|
330
|
-
value: d.value
|
|
331
|
-
}));
|
|
278
|
+
}).transform((d) => ({ function: d.aggregation_function !== void 0 ? {
|
|
279
|
+
$case: "aggregationFunction",
|
|
280
|
+
aggregationFunction: d.aggregation_function
|
|
281
|
+
} : d.column_selection !== void 0 ? {
|
|
282
|
+
$case: "columnSelection",
|
|
283
|
+
columnSelection: d.column_selection
|
|
284
|
+
} : d.custom_udf !== void 0 ? {
|
|
285
|
+
$case: "customUdf",
|
|
286
|
+
customUdf: d.custom_udf
|
|
287
|
+
} : void 0 }));
|
|
332
288
|
const unmarshalIngestionConfigSchema = z.object({
|
|
333
289
|
ingestion_destination: z.lazy(() => unmarshalIngestionDestinationSchema).optional(),
|
|
334
290
|
backfill_source: z.lazy(() => unmarshalBackfillSourceSchema).optional(),
|
|
@@ -401,13 +357,9 @@ const unmarshalKafkaConfigSchema = z.object({
|
|
|
401
357
|
}));
|
|
402
358
|
const unmarshalKafkaSourceSchema = z.object({
|
|
403
359
|
name: z.string().optional(),
|
|
404
|
-
entity_column_identifiers: z.array(z.lazy(() => unmarshalColumnIdentifierSchema)).optional(),
|
|
405
|
-
timeseries_column_identifier: z.lazy(() => unmarshalColumnIdentifierSchema).optional(),
|
|
406
360
|
filter_condition: z.string().optional()
|
|
407
361
|
}).transform((d) => ({
|
|
408
362
|
name: d.name,
|
|
409
|
-
entityColumnIdentifiers: d.entity_column_identifiers,
|
|
410
|
-
timeseriesColumnIdentifier: d.timeseries_column_identifier,
|
|
411
363
|
filterCondition: d.filter_condition
|
|
412
364
|
}));
|
|
413
365
|
const unmarshalKafkaStreamConfigSchema = z.object({
|
|
@@ -515,7 +467,6 @@ const unmarshalMaterializedFeatureSchema = z.object({
|
|
|
515
467
|
table_name: z.string().optional(),
|
|
516
468
|
pipeline_schedule_state: z.string().optional(),
|
|
517
469
|
last_materialization_time: z.string().transform((s) => Temporal.Instant.from(s)).optional(),
|
|
518
|
-
cron_schedule: z.string().optional(),
|
|
519
470
|
is_online: z.boolean().optional(),
|
|
520
471
|
cron_schedule_trigger: z.lazy(() => unmarshalCronScheduleSchema).optional(),
|
|
521
472
|
table_trigger: z.lazy(() => unmarshalTableTriggerSchema).optional(),
|
|
@@ -533,7 +484,6 @@ const unmarshalMaterializedFeatureSchema = z.object({
|
|
|
533
484
|
tableName: d.table_name,
|
|
534
485
|
pipelineScheduleState: d.pipeline_schedule_state,
|
|
535
486
|
lastMaterializationTime: d.last_materialization_time,
|
|
536
|
-
cronSchedule: d.cron_schedule,
|
|
537
487
|
isOnline: d.is_online,
|
|
538
488
|
trigger: d.cron_schedule_trigger !== void 0 ? {
|
|
539
489
|
$case: "cronScheduleTrigger",
|
|
@@ -653,11 +603,16 @@ const unmarshalSecretScopeReferenceSchema = z.object({
|
|
|
653
603
|
}));
|
|
654
604
|
const unmarshalSlidingWindowSchema = z.object({
|
|
655
605
|
window_duration: z.string().transform((s) => Temporal.Duration.from("PT" + s.toUpperCase())).optional(),
|
|
656
|
-
slide_duration: z.string().transform((s) => Temporal.Duration.from("PT" + s.toUpperCase())).optional()
|
|
606
|
+
slide_duration: z.string().transform((s) => Temporal.Duration.from("PT" + s.toUpperCase())).optional(),
|
|
607
|
+
delay: z.string().transform((s) => Temporal.Duration.from("PT" + s.toUpperCase())).optional(),
|
|
608
|
+
offset: z.string().transform((s) => Temporal.Duration.from("PT" + s.toUpperCase())).optional()
|
|
657
609
|
}).transform((d) => ({
|
|
658
610
|
windowDuration: d.window_duration,
|
|
659
|
-
slideDuration: d.slide_duration
|
|
611
|
+
slideDuration: d.slide_duration,
|
|
612
|
+
delay: d.delay,
|
|
613
|
+
offset: d.offset
|
|
660
614
|
}));
|
|
615
|
+
const unmarshalSourceLatenessSchema = z.object({ settling_delay: z.string().transform((s) => Temporal.Duration.from("PT" + s.toUpperCase())).optional() }).transform((d) => ({ settlingDelay: d.settling_delay }));
|
|
661
616
|
const unmarshalStddevPopFunctionSchema = z.object({ input: z.string().optional() }).transform((d) => ({ input: d.input }));
|
|
662
617
|
const unmarshalStddevSampFunctionSchema = z.object({ input: z.string().optional() }).transform((d) => ({ input: d.input }));
|
|
663
618
|
const unmarshalStreamSchema = z.object({
|
|
@@ -752,29 +707,37 @@ const unmarshalSubscriptionModeSchema = z.object({
|
|
|
752
707
|
const unmarshalSumFunctionSchema = z.object({ input: z.string().optional() }).transform((d) => ({ input: d.input }));
|
|
753
708
|
const unmarshalTableTriggerSchema = z.object({});
|
|
754
709
|
const unmarshalTimeWindowSchema = z.object({
|
|
755
|
-
continuous: z.lazy(() => unmarshalContinuousWindowSchema).optional(),
|
|
756
710
|
tumbling: z.lazy(() => unmarshalTumblingWindowSchema).optional(),
|
|
757
711
|
sliding: z.lazy(() => unmarshalSlidingWindowSchema).optional(),
|
|
758
712
|
rolling: z.lazy(() => unmarshalRollingWindowSchema).optional(),
|
|
759
|
-
sawtooth: z.lazy(() => unmarshalSawtoothWindowSchema).optional()
|
|
760
|
-
|
|
761
|
-
|
|
762
|
-
|
|
763
|
-
|
|
764
|
-
|
|
765
|
-
|
|
766
|
-
|
|
767
|
-
|
|
768
|
-
|
|
769
|
-
|
|
770
|
-
|
|
771
|
-
|
|
772
|
-
|
|
773
|
-
|
|
774
|
-
|
|
775
|
-
|
|
713
|
+
sawtooth: z.lazy(() => unmarshalSawtoothWindowSchema).optional(),
|
|
714
|
+
start_time: z.string().transform((s) => Temporal.Instant.from(s)).optional()
|
|
715
|
+
}).transform((d) => ({
|
|
716
|
+
windowType: d.tumbling !== void 0 ? {
|
|
717
|
+
$case: "tumbling",
|
|
718
|
+
tumbling: d.tumbling
|
|
719
|
+
} : d.sliding !== void 0 ? {
|
|
720
|
+
$case: "sliding",
|
|
721
|
+
sliding: d.sliding
|
|
722
|
+
} : d.rolling !== void 0 ? {
|
|
723
|
+
$case: "rolling",
|
|
724
|
+
rolling: d.rolling
|
|
725
|
+
} : d.sawtooth !== void 0 ? {
|
|
726
|
+
$case: "sawtooth",
|
|
727
|
+
sawtooth: d.sawtooth
|
|
728
|
+
} : void 0,
|
|
729
|
+
startTime: d.start_time
|
|
730
|
+
}));
|
|
776
731
|
const unmarshalTimeseriesColumnSchema = z.object({ name: z.string().optional() }).transform((d) => ({ name: d.name }));
|
|
777
|
-
const unmarshalTumblingWindowSchema = z.object({
|
|
732
|
+
const unmarshalTumblingWindowSchema = z.object({
|
|
733
|
+
window_duration: z.string().transform((s) => Temporal.Duration.from("PT" + s.toUpperCase())).optional(),
|
|
734
|
+
delay: z.string().transform((s) => Temporal.Duration.from("PT" + s.toUpperCase())).optional(),
|
|
735
|
+
offset: z.string().transform((s) => Temporal.Duration.from("PT" + s.toUpperCase())).optional()
|
|
736
|
+
}).transform((d) => ({
|
|
737
|
+
windowDuration: d.window_duration,
|
|
738
|
+
delay: d.delay,
|
|
739
|
+
offset: d.offset
|
|
740
|
+
}));
|
|
778
741
|
const unmarshalVarPopFunctionSchema = z.object({ input: z.string().optional() }).transform((d) => ({ input: d.input }));
|
|
779
742
|
const unmarshalVarSampFunctionSchema = z.object({ input: z.string().optional() }).transform((d) => ({ input: d.input }));
|
|
780
743
|
const marshalAggregationFunctionSchema = z.object({
|
|
@@ -907,15 +870,7 @@ const marshalBackfillSourceSchema = z.object({ backfillSource: z.discriminatedUn
|
|
|
907
870
|
...d.backfillSource?.$case === "deltaTableName" && { delta_table_name: d.backfillSource.deltaTableName }
|
|
908
871
|
}));
|
|
909
872
|
const marshalBatchCreateMaterializedFeaturesRequestSchema = z.object({ requests: z.array(z.lazy(() => marshalCreateMaterializedFeatureRequestSchema)).optional() }).transform((d) => ({ requests: d.requests }));
|
|
910
|
-
const marshalColumnIdentifierSchema = z.object({ variantExprPath: z.string().optional() }).transform((d) => ({ variant_expr_path: d.variantExprPath }));
|
|
911
873
|
const marshalColumnSelectionSchema = z.object({ column: z.string().optional() }).transform((d) => ({ column: d.column }));
|
|
912
|
-
const marshalContinuousWindowSchema = z.object({
|
|
913
|
-
windowDuration: z.any().transform((d) => d.toString().slice(2).toLowerCase()).optional(),
|
|
914
|
-
offset: z.any().transform((d) => d.toString().slice(2).toLowerCase()).optional()
|
|
915
|
-
}).transform((d) => ({
|
|
916
|
-
window_duration: d.windowDuration,
|
|
917
|
-
offset: d.offset
|
|
918
|
-
}));
|
|
919
874
|
const marshalCountFunctionSchema = z.object({ input: z.string().optional() }).transform((d) => ({ input: d.input }));
|
|
920
875
|
const marshalCreateMaterializedFeatureRequestSchema = z.object({ materializedFeature: z.lazy(() => marshalMaterializedFeatureSchema).optional() }).transform((d) => ({ materialized_feature: d.materializedFeature }));
|
|
921
876
|
const marshalCronScheduleSchema = z.object({ cronExpression: z.string().optional() }).transform((d) => ({ cron_expression: d.cronExpression }));
|
|
@@ -926,40 +881,40 @@ const marshalCustomUdfSchema = z.object({
|
|
|
926
881
|
function_path: d.functionPath,
|
|
927
882
|
input_bindings: d.inputBindings
|
|
928
883
|
}));
|
|
929
|
-
const marshalDataSourceSchema = z.object({
|
|
930
|
-
z.
|
|
931
|
-
|
|
932
|
-
|
|
933
|
-
|
|
934
|
-
|
|
935
|
-
|
|
936
|
-
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
942
|
-
|
|
943
|
-
|
|
944
|
-
|
|
945
|
-
|
|
946
|
-
|
|
884
|
+
const marshalDataSourceSchema = z.object({
|
|
885
|
+
dataSource: z.discriminatedUnion("$case", [
|
|
886
|
+
z.object({
|
|
887
|
+
$case: z.literal("deltaTableSource"),
|
|
888
|
+
deltaTableSource: z.lazy(() => marshalDeltaTableSourceSchema)
|
|
889
|
+
}),
|
|
890
|
+
z.object({
|
|
891
|
+
$case: z.literal("kafkaSource"),
|
|
892
|
+
kafkaSource: z.lazy(() => marshalKafkaSourceSchema)
|
|
893
|
+
}),
|
|
894
|
+
z.object({
|
|
895
|
+
$case: z.literal("requestSource"),
|
|
896
|
+
requestSource: z.lazy(() => marshalRequestSourceSchema)
|
|
897
|
+
}),
|
|
898
|
+
z.object({
|
|
899
|
+
$case: z.literal("streamSource"),
|
|
900
|
+
streamSource: z.lazy(() => marshalStreamSourceSchema)
|
|
901
|
+
})
|
|
902
|
+
]).optional(),
|
|
903
|
+
lateness: z.lazy(() => marshalSourceLatenessSchema).optional()
|
|
904
|
+
}).transform((d) => ({
|
|
947
905
|
...d.dataSource?.$case === "deltaTableSource" && { delta_table_source: d.dataSource.deltaTableSource },
|
|
948
906
|
...d.dataSource?.$case === "kafkaSource" && { kafka_source: d.dataSource.kafkaSource },
|
|
949
907
|
...d.dataSource?.$case === "requestSource" && { request_source: d.dataSource.requestSource },
|
|
950
|
-
...d.dataSource?.$case === "streamSource" && { stream_source: d.dataSource.streamSource }
|
|
908
|
+
...d.dataSource?.$case === "streamSource" && { stream_source: d.dataSource.streamSource },
|
|
909
|
+
lateness: d.lateness
|
|
951
910
|
}));
|
|
952
911
|
const marshalDeltaTableSourceSchema = z.object({
|
|
953
912
|
fullName: z.string().optional(),
|
|
954
|
-
entityColumns: z.array(z.string()).optional(),
|
|
955
|
-
timeseriesColumn: z.string().optional(),
|
|
956
913
|
filterCondition: z.string().optional(),
|
|
957
914
|
transformationSql: z.string().optional(),
|
|
958
915
|
dataframeSchema: z.string().optional()
|
|
959
916
|
}).transform((d) => ({
|
|
960
917
|
full_name: d.fullName,
|
|
961
|
-
entity_columns: d.entityColumns,
|
|
962
|
-
timeseries_column: d.timeseriesColumn,
|
|
963
918
|
filter_condition: d.filterCondition,
|
|
964
919
|
transformation_sql: d.transformationSql,
|
|
965
920
|
dataframe_schema: d.dataframeSchema
|
|
@@ -982,11 +937,8 @@ const marshalEntityColumnSchema = z.object({ name: z.string().optional() }).tran
|
|
|
982
937
|
const marshalFeatureSchema = z.object({
|
|
983
938
|
fullName: z.string().optional(),
|
|
984
939
|
source: z.lazy(() => marshalDataSourceSchema).optional(),
|
|
985
|
-
inputs: z.array(z.string()).optional(),
|
|
986
940
|
function: z.lazy(() => marshalFunctionSchema).optional(),
|
|
987
|
-
timeWindow: z.lazy(() => marshalTimeWindowSchema).optional(),
|
|
988
941
|
description: z.string().optional(),
|
|
989
|
-
filterCondition: z.string().optional(),
|
|
990
942
|
lineageContext: z.lazy(() => marshalLineageContextSchema).optional(),
|
|
991
943
|
entities: z.array(z.lazy(() => marshalEntityColumnSchema)).optional(),
|
|
992
944
|
timeseriesColumn: z.lazy(() => marshalTimeseriesColumnSchema).optional(),
|
|
@@ -998,11 +950,8 @@ const marshalFeatureSchema = z.object({
|
|
|
998
950
|
}).transform((d) => ({
|
|
999
951
|
full_name: d.fullName,
|
|
1000
952
|
source: d.source,
|
|
1001
|
-
inputs: d.inputs,
|
|
1002
953
|
function: d.function,
|
|
1003
|
-
time_window: d.timeWindow,
|
|
1004
954
|
description: d.description,
|
|
1005
|
-
filter_condition: d.filterCondition,
|
|
1006
955
|
lineage_context: d.lineageContext,
|
|
1007
956
|
entities: d.entities,
|
|
1008
957
|
timeseries_column: d.timeseriesColumn,
|
|
@@ -1035,37 +984,24 @@ const marshalFirstNFunctionSchema = z.object({
|
|
|
1035
984
|
n: d.n
|
|
1036
985
|
}));
|
|
1037
986
|
const marshalFlatSchemaSchema = z.object({ fields: z.array(z.lazy(() => marshalFieldDefinitionSchema)).optional() }).transform((d) => ({ fields: d.fields }));
|
|
1038
|
-
const marshalFunctionSchema = z.object({
|
|
1039
|
-
|
|
1040
|
-
|
|
1041
|
-
|
|
1042
|
-
|
|
1043
|
-
|
|
1044
|
-
|
|
1045
|
-
|
|
1046
|
-
|
|
1047
|
-
|
|
1048
|
-
|
|
1049
|
-
|
|
1050
|
-
|
|
1051
|
-
|
|
1052
|
-
customUdf: z.lazy(() => marshalCustomUdfSchema)
|
|
1053
|
-
})
|
|
1054
|
-
]).optional()
|
|
1055
|
-
}).transform((d) => ({
|
|
1056
|
-
function_type: d.functionType,
|
|
1057
|
-
extra_parameters: d.extraParameters,
|
|
987
|
+
const marshalFunctionSchema = z.object({ function: z.discriminatedUnion("$case", [
|
|
988
|
+
z.object({
|
|
989
|
+
$case: z.literal("aggregationFunction"),
|
|
990
|
+
aggregationFunction: z.lazy(() => marshalAggregationFunctionSchema)
|
|
991
|
+
}),
|
|
992
|
+
z.object({
|
|
993
|
+
$case: z.literal("columnSelection"),
|
|
994
|
+
columnSelection: z.lazy(() => marshalColumnSelectionSchema)
|
|
995
|
+
}),
|
|
996
|
+
z.object({
|
|
997
|
+
$case: z.literal("customUdf"),
|
|
998
|
+
customUdf: z.lazy(() => marshalCustomUdfSchema)
|
|
999
|
+
})
|
|
1000
|
+
]).optional() }).transform((d) => ({
|
|
1058
1001
|
...d.function?.$case === "aggregationFunction" && { aggregation_function: d.function.aggregationFunction },
|
|
1059
1002
|
...d.function?.$case === "columnSelection" && { column_selection: d.function.columnSelection },
|
|
1060
1003
|
...d.function?.$case === "customUdf" && { custom_udf: d.function.customUdf }
|
|
1061
1004
|
}));
|
|
1062
|
-
const marshalFunction_ExtraParameterSchema = z.object({
|
|
1063
|
-
key: z.string().optional(),
|
|
1064
|
-
value: z.string().optional()
|
|
1065
|
-
}).transform((d) => ({
|
|
1066
|
-
key: d.key,
|
|
1067
|
-
value: d.value
|
|
1068
|
-
}));
|
|
1069
1005
|
const marshalIngestionConfigSchema = z.object({
|
|
1070
1006
|
ingestionDestination: z.lazy(() => marshalIngestionDestinationSchema).optional(),
|
|
1071
1007
|
backfillSource: z.lazy(() => marshalBackfillSourceSchema).optional(),
|
|
@@ -1122,13 +1058,9 @@ const marshalKafkaConfigSchema = z.object({
|
|
|
1122
1058
|
}));
|
|
1123
1059
|
const marshalKafkaSourceSchema = z.object({
|
|
1124
1060
|
name: z.string().optional(),
|
|
1125
|
-
entityColumnIdentifiers: z.array(z.lazy(() => marshalColumnIdentifierSchema)).optional(),
|
|
1126
|
-
timeseriesColumnIdentifier: z.lazy(() => marshalColumnIdentifierSchema).optional(),
|
|
1127
1061
|
filterCondition: z.string().optional()
|
|
1128
1062
|
}).transform((d) => ({
|
|
1129
1063
|
name: d.name,
|
|
1130
|
-
entity_column_identifiers: d.entityColumnIdentifiers,
|
|
1131
|
-
timeseries_column_identifier: d.timeseriesColumnIdentifier,
|
|
1132
1064
|
filter_condition: d.filterCondition
|
|
1133
1065
|
}));
|
|
1134
1066
|
const marshalKafkaStreamConfigSchema = z.object({
|
|
@@ -1205,7 +1137,6 @@ const marshalMaterializedFeatureSchema = z.object({
|
|
|
1205
1137
|
tableName: z.string().optional(),
|
|
1206
1138
|
pipelineScheduleState: z.string().optional(),
|
|
1207
1139
|
lastMaterializationTime: z.any().transform((d) => d.toString()).optional(),
|
|
1208
|
-
cronSchedule: z.string().optional(),
|
|
1209
1140
|
isOnline: z.boolean().optional(),
|
|
1210
1141
|
trigger: z.discriminatedUnion("$case", [
|
|
1211
1142
|
z.object({
|
|
@@ -1229,7 +1160,6 @@ const marshalMaterializedFeatureSchema = z.object({
|
|
|
1229
1160
|
table_name: d.tableName,
|
|
1230
1161
|
pipeline_schedule_state: d.pipelineScheduleState,
|
|
1231
1162
|
last_materialization_time: d.lastMaterializationTime,
|
|
1232
|
-
cron_schedule: d.cronSchedule,
|
|
1233
1163
|
is_online: d.isOnline,
|
|
1234
1164
|
...d.trigger?.$case === "cronScheduleTrigger" && { cron_schedule_trigger: d.trigger.cronScheduleTrigger },
|
|
1235
1165
|
...d.trigger?.$case === "tableTrigger" && { table_trigger: d.trigger.tableTrigger },
|
|
@@ -1346,11 +1276,16 @@ const marshalSecretScopeReferenceSchema = z.object({
|
|
|
1346
1276
|
}));
|
|
1347
1277
|
const marshalSlidingWindowSchema = z.object({
|
|
1348
1278
|
windowDuration: z.any().transform((d) => d.toString().slice(2).toLowerCase()).optional(),
|
|
1349
|
-
slideDuration: z.any().transform((d) => d.toString().slice(2).toLowerCase()).optional()
|
|
1279
|
+
slideDuration: z.any().transform((d) => d.toString().slice(2).toLowerCase()).optional(),
|
|
1280
|
+
delay: z.any().transform((d) => d.toString().slice(2).toLowerCase()).optional(),
|
|
1281
|
+
offset: z.any().transform((d) => d.toString().slice(2).toLowerCase()).optional()
|
|
1350
1282
|
}).transform((d) => ({
|
|
1351
1283
|
window_duration: d.windowDuration,
|
|
1352
|
-
slide_duration: d.slideDuration
|
|
1284
|
+
slide_duration: d.slideDuration,
|
|
1285
|
+
delay: d.delay,
|
|
1286
|
+
offset: d.offset
|
|
1353
1287
|
}));
|
|
1288
|
+
const marshalSourceLatenessSchema = z.object({ settlingDelay: z.any().transform((d) => d.toString().slice(2).toLowerCase()).optional() }).transform((d) => ({ settling_delay: d.settlingDelay }));
|
|
1354
1289
|
const marshalStddevPopFunctionSchema = z.object({ input: z.string().optional() }).transform((d) => ({ input: d.input }));
|
|
1355
1290
|
const marshalStddevSampFunctionSchema = z.object({ input: z.string().optional() }).transform((d) => ({ input: d.input }));
|
|
1356
1291
|
const marshalStreamSchema = z.object({
|
|
@@ -1448,36 +1383,43 @@ const marshalSubscriptionModeSchema = z.object({ subscriptionMode: z.discriminat
|
|
|
1448
1383
|
}));
|
|
1449
1384
|
const marshalSumFunctionSchema = z.object({ input: z.string().optional() }).transform((d) => ({ input: d.input }));
|
|
1450
1385
|
const marshalTableTriggerSchema = z.object({});
|
|
1451
|
-
const marshalTimeWindowSchema = z.object({
|
|
1452
|
-
z.
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
]).optional() }).transform((d) => ({
|
|
1473
|
-
...d.windowType?.$case === "continuous" && { continuous: d.windowType.continuous },
|
|
1386
|
+
const marshalTimeWindowSchema = z.object({
|
|
1387
|
+
windowType: z.discriminatedUnion("$case", [
|
|
1388
|
+
z.object({
|
|
1389
|
+
$case: z.literal("tumbling"),
|
|
1390
|
+
tumbling: z.lazy(() => marshalTumblingWindowSchema)
|
|
1391
|
+
}),
|
|
1392
|
+
z.object({
|
|
1393
|
+
$case: z.literal("sliding"),
|
|
1394
|
+
sliding: z.lazy(() => marshalSlidingWindowSchema)
|
|
1395
|
+
}),
|
|
1396
|
+
z.object({
|
|
1397
|
+
$case: z.literal("rolling"),
|
|
1398
|
+
rolling: z.lazy(() => marshalRollingWindowSchema)
|
|
1399
|
+
}),
|
|
1400
|
+
z.object({
|
|
1401
|
+
$case: z.literal("sawtooth"),
|
|
1402
|
+
sawtooth: z.lazy(() => marshalSawtoothWindowSchema)
|
|
1403
|
+
})
|
|
1404
|
+
]).optional(),
|
|
1405
|
+
startTime: z.any().transform((d) => d.toString()).optional()
|
|
1406
|
+
}).transform((d) => ({
|
|
1474
1407
|
...d.windowType?.$case === "tumbling" && { tumbling: d.windowType.tumbling },
|
|
1475
1408
|
...d.windowType?.$case === "sliding" && { sliding: d.windowType.sliding },
|
|
1476
1409
|
...d.windowType?.$case === "rolling" && { rolling: d.windowType.rolling },
|
|
1477
|
-
...d.windowType?.$case === "sawtooth" && { sawtooth: d.windowType.sawtooth }
|
|
1410
|
+
...d.windowType?.$case === "sawtooth" && { sawtooth: d.windowType.sawtooth },
|
|
1411
|
+
start_time: d.startTime
|
|
1478
1412
|
}));
|
|
1479
1413
|
const marshalTimeseriesColumnSchema = z.object({ name: z.string().optional() }).transform((d) => ({ name: d.name }));
|
|
1480
|
-
const marshalTumblingWindowSchema = z.object({
|
|
1414
|
+
const marshalTumblingWindowSchema = z.object({
|
|
1415
|
+
windowDuration: z.any().transform((d) => d.toString().slice(2).toLowerCase()).optional(),
|
|
1416
|
+
delay: z.any().transform((d) => d.toString().slice(2).toLowerCase()).optional(),
|
|
1417
|
+
offset: z.any().transform((d) => d.toString().slice(2).toLowerCase()).optional()
|
|
1418
|
+
}).transform((d) => ({
|
|
1419
|
+
window_duration: d.windowDuration,
|
|
1420
|
+
delay: d.delay,
|
|
1421
|
+
offset: d.offset
|
|
1422
|
+
}));
|
|
1481
1423
|
const marshalVarPopFunctionSchema = z.object({ input: z.string().optional() }).transform((d) => ({ input: d.input }));
|
|
1482
1424
|
const marshalVarSampFunctionSchema = z.object({ input: z.string().optional() }).transform((d) => ({ input: d.input }));
|
|
1483
1425
|
const aggregationFunctionFieldMaskSchema = {
|
|
@@ -1578,12 +1520,7 @@ const backfillSourceFieldMaskSchema = {
|
|
|
1578
1520
|
children: () => deltaTableSourceFieldMaskSchema
|
|
1579
1521
|
}
|
|
1580
1522
|
};
|
|
1581
|
-
const columnIdentifierFieldMaskSchema = { variantExprPath: { wire: "variant_expr_path" } };
|
|
1582
1523
|
const columnSelectionFieldMaskSchema = { column: { wire: "column" } };
|
|
1583
|
-
const continuousWindowFieldMaskSchema = {
|
|
1584
|
-
offset: { wire: "offset" },
|
|
1585
|
-
windowDuration: { wire: "window_duration" }
|
|
1586
|
-
};
|
|
1587
1524
|
const countFunctionFieldMaskSchema = { input: { wire: "input" } };
|
|
1588
1525
|
const cronScheduleFieldMaskSchema = { cronExpression: { wire: "cron_expression" } };
|
|
1589
1526
|
const customUdfFieldMaskSchema = {
|
|
@@ -1599,6 +1536,10 @@ const dataSourceFieldMaskSchema = {
|
|
|
1599
1536
|
wire: "kafka_source",
|
|
1600
1537
|
children: () => kafkaSourceFieldMaskSchema
|
|
1601
1538
|
},
|
|
1539
|
+
lateness: {
|
|
1540
|
+
wire: "lateness",
|
|
1541
|
+
children: () => sourceLatenessFieldMaskSchema
|
|
1542
|
+
},
|
|
1602
1543
|
requestSource: {
|
|
1603
1544
|
wire: "request_source",
|
|
1604
1545
|
children: () => requestSourceFieldMaskSchema
|
|
@@ -1610,10 +1551,8 @@ const dataSourceFieldMaskSchema = {
|
|
|
1610
1551
|
};
|
|
1611
1552
|
const deltaTableSourceFieldMaskSchema = {
|
|
1612
1553
|
dataframeSchema: { wire: "dataframe_schema" },
|
|
1613
|
-
entityColumns: { wire: "entity_columns" },
|
|
1614
1554
|
filterCondition: { wire: "filter_condition" },
|
|
1615
1555
|
fullName: { wire: "full_name" },
|
|
1616
|
-
timeseriesColumn: { wire: "timeseries_column" },
|
|
1617
1556
|
transformationSql: { wire: "transformation_sql" }
|
|
1618
1557
|
};
|
|
1619
1558
|
const directMtlsConfigFieldMaskSchema = {
|
|
@@ -1639,13 +1578,11 @@ const featureFieldMaskSchema = {
|
|
|
1639
1578
|
createdBy: { wire: "created_by" },
|
|
1640
1579
|
description: { wire: "description" },
|
|
1641
1580
|
entities: { wire: "entities" },
|
|
1642
|
-
filterCondition: { wire: "filter_condition" },
|
|
1643
1581
|
fullName: { wire: "full_name" },
|
|
1644
1582
|
function: {
|
|
1645
1583
|
wire: "function",
|
|
1646
1584
|
children: () => functionFieldMaskSchema
|
|
1647
1585
|
},
|
|
1648
|
-
inputs: { wire: "inputs" },
|
|
1649
1586
|
lineageContext: {
|
|
1650
1587
|
wire: "lineage_context",
|
|
1651
1588
|
children: () => lineageContextFieldMaskSchema
|
|
@@ -1656,10 +1593,6 @@ const featureFieldMaskSchema = {
|
|
|
1656
1593
|
wire: "source",
|
|
1657
1594
|
children: () => dataSourceFieldMaskSchema
|
|
1658
1595
|
},
|
|
1659
|
-
timeWindow: {
|
|
1660
|
-
wire: "time_window",
|
|
1661
|
-
children: () => timeWindowFieldMaskSchema
|
|
1662
|
-
},
|
|
1663
1596
|
timeseriesColumn: {
|
|
1664
1597
|
wire: "timeseries_column",
|
|
1665
1598
|
children: () => timeseriesColumnFieldMaskSchema
|
|
@@ -1690,9 +1623,7 @@ const functionFieldMaskSchema = {
|
|
|
1690
1623
|
customUdf: {
|
|
1691
1624
|
wire: "custom_udf",
|
|
1692
1625
|
children: () => customUdfFieldMaskSchema
|
|
1693
|
-
}
|
|
1694
|
-
extraParameters: { wire: "extra_parameters" },
|
|
1695
|
-
functionType: { wire: "function_type" }
|
|
1626
|
+
}
|
|
1696
1627
|
};
|
|
1697
1628
|
const ingestionConfigFieldMaskSchema = {
|
|
1698
1629
|
backfillJobId: { wire: "backfill_job_id" },
|
|
@@ -1746,13 +1677,8 @@ function kafkaConfigFieldMask(...paths) {
|
|
|
1746
1677
|
return FieldMask.build(paths, kafkaConfigFieldMaskSchema);
|
|
1747
1678
|
}
|
|
1748
1679
|
const kafkaSourceFieldMaskSchema = {
|
|
1749
|
-
entityColumnIdentifiers: { wire: "entity_column_identifiers" },
|
|
1750
1680
|
filterCondition: { wire: "filter_condition" },
|
|
1751
|
-
name: { wire: "name" }
|
|
1752
|
-
timeseriesColumnIdentifier: {
|
|
1753
|
-
wire: "timeseries_column_identifier",
|
|
1754
|
-
children: () => columnIdentifierFieldMaskSchema
|
|
1755
|
-
}
|
|
1681
|
+
name: { wire: "name" }
|
|
1756
1682
|
};
|
|
1757
1683
|
const kafkaStreamConfigFieldMaskSchema = {
|
|
1758
1684
|
extraOptions: { wire: "extra_options" },
|
|
@@ -1794,7 +1720,6 @@ const lineageContextFieldMaskSchema = {
|
|
|
1794
1720
|
notebookId: { wire: "notebook_id" }
|
|
1795
1721
|
};
|
|
1796
1722
|
const materializedFeatureFieldMaskSchema = {
|
|
1797
|
-
cronSchedule: { wire: "cron_schedule" },
|
|
1798
1723
|
cronScheduleTrigger: {
|
|
1799
1724
|
wire: "cron_schedule_trigger",
|
|
1800
1725
|
children: () => cronScheduleFieldMaskSchema
|
|
@@ -1907,9 +1832,12 @@ const secretScopeReferenceFieldMaskSchema = {
|
|
|
1907
1832
|
scope: { wire: "scope" }
|
|
1908
1833
|
};
|
|
1909
1834
|
const slidingWindowFieldMaskSchema = {
|
|
1835
|
+
delay: { wire: "delay" },
|
|
1836
|
+
offset: { wire: "offset" },
|
|
1910
1837
|
slideDuration: { wire: "slide_duration" },
|
|
1911
1838
|
windowDuration: { wire: "window_duration" }
|
|
1912
1839
|
};
|
|
1840
|
+
const sourceLatenessFieldMaskSchema = { settlingDelay: { wire: "settling_delay" } };
|
|
1913
1841
|
const stddevPopFunctionFieldMaskSchema = { input: { wire: "input" } };
|
|
1914
1842
|
const stddevSampFunctionFieldMaskSchema = { input: { wire: "input" } };
|
|
1915
1843
|
const streamFieldMaskSchema = {
|
|
@@ -1987,10 +1915,6 @@ const subscriptionModeFieldMaskSchema = {
|
|
|
1987
1915
|
const sumFunctionFieldMaskSchema = { input: { wire: "input" } };
|
|
1988
1916
|
const tableTriggerFieldMaskSchema = {};
|
|
1989
1917
|
const timeWindowFieldMaskSchema = {
|
|
1990
|
-
continuous: {
|
|
1991
|
-
wire: "continuous",
|
|
1992
|
-
children: () => continuousWindowFieldMaskSchema
|
|
1993
|
-
},
|
|
1994
1918
|
rolling: {
|
|
1995
1919
|
wire: "rolling",
|
|
1996
1920
|
children: () => rollingWindowFieldMaskSchema
|
|
@@ -2003,16 +1927,21 @@ const timeWindowFieldMaskSchema = {
|
|
|
2003
1927
|
wire: "sliding",
|
|
2004
1928
|
children: () => slidingWindowFieldMaskSchema
|
|
2005
1929
|
},
|
|
1930
|
+
startTime: { wire: "start_time" },
|
|
2006
1931
|
tumbling: {
|
|
2007
1932
|
wire: "tumbling",
|
|
2008
1933
|
children: () => tumblingWindowFieldMaskSchema
|
|
2009
1934
|
}
|
|
2010
1935
|
};
|
|
2011
1936
|
const timeseriesColumnFieldMaskSchema = { name: { wire: "name" } };
|
|
2012
|
-
const tumblingWindowFieldMaskSchema = {
|
|
1937
|
+
const tumblingWindowFieldMaskSchema = {
|
|
1938
|
+
delay: { wire: "delay" },
|
|
1939
|
+
offset: { wire: "offset" },
|
|
1940
|
+
windowDuration: { wire: "window_duration" }
|
|
1941
|
+
};
|
|
2013
1942
|
const varPopFunctionFieldMaskSchema = { input: { wire: "input" } };
|
|
2014
1943
|
const varSampFunctionFieldMaskSchema = { input: { wire: "input" } };
|
|
2015
1944
|
|
|
2016
1945
|
//#endregion
|
|
2017
|
-
export {
|
|
1946
|
+
export { MaterializedFeature_PipelineScheduleState, ScalarDataType, SchemaLocator_Format, StreamingMode_StreamingModeType, 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 };
|
|
2018
1947
|
//# sourceMappingURL=model.js.map
|