@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.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"model.js","names":[],"sources":["../../src/v1/model.ts"],"sourcesContent":["// Code generated from API definition by Databricks SDK Generator. DO NOT EDIT.\n\nimport {Temporal} from '@js-temporal/polyfill';\nimport {FieldMask} from '@databricks/sdk-core/wkt';\nimport type {FieldMaskSchema} from '@databricks/sdk-core/wkt';\nimport {z} from 'zod';\n\n/**\n * Scalar data types for request-time field definitions.\n * Only flat (non-nested) types are supported.\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const ScalarDataType = {\n SCALAR_DATA_TYPE_UNSPECIFIED: 'SCALAR_DATA_TYPE_UNSPECIFIED',\n INTEGER: 'INTEGER',\n FLOAT: 'FLOAT',\n BOOLEAN: 'BOOLEAN',\n STRING: 'STRING',\n DOUBLE: 'DOUBLE',\n LONG: 'LONG',\n TIMESTAMP: 'TIMESTAMP',\n DATE: 'DATE',\n SHORT: 'SHORT',\n BINARY: 'BINARY',\n DECIMAL: 'DECIMAL',\n} as const;\nexport type ScalarDataType =\n | (typeof ScalarDataType)[keyof typeof ScalarDataType]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const MaterializedFeature_PipelineScheduleState = {\n /** Default value, not used. */\n PIPELINE_SCHEDULE_STATE_UNSPECIFIED: 'PIPELINE_SCHEDULE_STATE_UNSPECIFIED',\n /** Pipeline was configured to run once then stop. */\n SNAPSHOT: 'SNAPSHOT',\n /** Pipeline is actively running and computing features. */\n ACTIVE: 'ACTIVE',\n /** Pipeline is paused and not computing features. */\n PAUSED: 'PAUSED',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type MaterializedFeature_PipelineScheduleState =\n | (typeof MaterializedFeature_PipelineScheduleState)[keyof typeof MaterializedFeature_PipelineScheduleState]\n | (string & {});\n\n/** Supported serialization formats for a schema registry schema. */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const SchemaLocator_Format = {\n /** Default value. Format is not set; the request will be rejected. */\n FORMAT_UNSPECIFIED: 'FORMAT_UNSPECIFIED',\n /** Avro-encoded schema. */\n FORMAT_AVRO: 'FORMAT_AVRO',\n /** Protobuf-encoded schema. */\n FORMAT_PROTOBUF: 'FORMAT_PROTOBUF',\n /** JSON-encoded schema. */\n FORMAT_JSON: 'FORMAT_JSON',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type SchemaLocator_Format =\n | (typeof SchemaLocator_Format)[keyof typeof SchemaLocator_Format]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const StreamingMode_StreamingModeType = {\n /** Default value, not used. */\n STREAMING_MODE_TYPE_UNSPECIFIED: 'STREAMING_MODE_TYPE_UNSPECIFIED',\n /**\n * Real-time mode. Ultra-low-latency trigger intended for operational workloads\n * that need responses in milliseconds or sub-second latency.\n */\n STREAMING_MODE_TYPE_RTM: 'STREAMING_MODE_TYPE_RTM',\n /**\n * Micro-batch mode in Structured Streaming. Better suited for ETL and analytics\n * workloads where latency is measured in seconds or minutes and cost efficiency\n * matters more.\n */\n STREAMING_MODE_TYPE_MBM: 'STREAMING_MODE_TYPE_MBM',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type StreamingMode_StreamingModeType =\n | (typeof StreamingMode_StreamingModeType)[keyof typeof StreamingMode_StreamingModeType]\n | (string & {});\n\n/** An aggregation function applied over a time window. */\nexport interface AggregationFunction {\n /** The type of the aggregation function. */\n operation?:\n | {$case: 'avg'; avg: AvgFunction}\n | {$case: 'countFunction'; countFunction: CountFunction}\n | {$case: 'sum'; sum: SumFunction}\n | {$case: 'min'; min: MinFunction}\n | {$case: 'max'; max: MaxFunction}\n | {$case: 'first'; first: FirstFunction}\n | {$case: 'last'; last: LastFunction}\n | {\n $case: 'approxCountDistinct';\n approxCountDistinct: ApproxCountDistinctFunction;\n }\n | {$case: 'approxPercentile'; approxPercentile: ApproxPercentileFunction}\n | {$case: 'stddevPop'; stddevPop: StddevPopFunction}\n | {$case: 'stddevSamp'; stddevSamp: StddevSampFunction}\n | {$case: 'varPop'; varPop: VarPopFunction}\n | {$case: 'varSamp'; varSamp: VarSampFunction}\n | {$case: 'firstN'; firstN: FirstNFunction}\n | {$case: 'lastN'; lastN: LastNFunction}\n | {$case: 'firstDistinct'; firstDistinct: FirstDistinctFunction}\n | {$case: 'lastDistinct'; lastDistinct: LastDistinctFunction}\n | undefined;\n /** The time window over which the aggregation is computed. */\n timeWindow?: TimeWindow | undefined;\n}\n\n/** Computes the approximate count of distinct values. */\nexport interface ApproxCountDistinctFunction {\n /** The input column from which the approximate count of distinct values is computed. */\n input?: string | undefined;\n /** The maximum relative standard deviation allowed (default defined by Spark). */\n relativeSd?: number | undefined;\n}\n\n/** Computes the approximate percentile of values. */\nexport interface ApproxPercentileFunction {\n /** The input column from which the approximate percentile is computed. */\n input?: string | undefined;\n /** The percentile value to compute (between 0 and 1). */\n percentile?: number | undefined;\n /** The accuracy parameter (higher is more accurate but slower). */\n accuracy?: bigint | undefined;\n}\n\nexport interface AuthConfig {\n authConfig?:\n | {\n $case: 'ucServiceCredentialName';\n /** Name of the Unity Catalog service credential. This value will be set under the option databricks.serviceCredential */\n ucServiceCredentialName: string;\n }\n | {\n $case: 'mtlsConfig';\n /** Mutual-TLS authentication. See MtlsConfig. */\n mtlsConfig: MtlsConfig;\n }\n | undefined;\n}\n\n/** Computes the average of values. */\nexport interface AvgFunction {\n /**\n * The input column from which the average is computed. For Kafka sources, use dot-prefixed path\n * notation (e.g., \"value.amount\"). For nested fields, the leaf node name is used.\n * Colon-prefixed notation (e.g., \"value:amount\") is supported for backwards\n * compatibility but is deprecated; migrate to dot notation.\n */\n input?: string | undefined;\n}\n\nexport interface BackfillSource {\n backfillSource?:\n | {\n $case: 'deltaTableSource';\n /**\n * Deprecated: Use delta_table_name instead. Kept for backwards compatibility.\n * The Delta table source containing the historical data to backfill.\n * Only the delta table name is used for backfill, other fields are ignored.\n */\n deltaTableSource: DeltaTableSource;\n }\n | {\n $case: 'deltaTableName';\n /** The full three-part name (catalog, schema, name) of the Delta table containing the historical data to backfill. */\n deltaTableName: string;\n }\n | undefined;\n}\n\nexport interface BatchCreateMaterializedFeaturesRequest {\n /** The requests to create materialized features. */\n requests?: CreateMaterializedFeatureRequest[] | undefined;\n}\n\nexport interface BatchCreateMaterializedFeaturesResponse {\n /** The created materialized features with assigned IDs. */\n materializedFeatures?: MaterializedFeature[] | undefined;\n}\n\n/** A ColumnSelection function, equivalent to the LAST() record of an entity over a lifetime window */\nexport interface ColumnSelection {\n /** Column name from source to select as the feature value. */\n column?: string | undefined;\n}\n\n/** Computes the count of values. */\nexport interface CountFunction {\n /**\n * The input column from which the count is computed. For Kafka sources, use dot-prefixed path\n * notation (e.g., \"value.amount\"). For nested fields, the leaf node name is used.\n * Colon-prefixed notation (e.g., \"value:amount\") is supported for backwards\n * compatibility but is deprecated; migrate to dot notation.\n */\n input?: string | undefined;\n}\n\nexport interface CreateFeatureRequest {\n /** Feature to create. */\n feature?: Feature | undefined;\n}\n\nexport interface CreateKafkaConfigRequest {\n kafkaConfig?: KafkaConfig | undefined;\n}\n\nexport interface CreateMaterializedFeatureRequest {\n /** The materialized feature to create. */\n materializedFeature?: MaterializedFeature | undefined;\n}\n\n/** Create a Stream, a governed UC entity representing an external streaming data source. */\nexport interface CreateStreamRequest {\n /** The Stream to create. */\n stream?: Stream | undefined;\n}\n\n/** A cron-based schedule trigger for the materialization pipeline. */\nexport interface CronSchedule {\n /** The cron expression defining the schedule (e.g., \"0 0 * * *\" for daily at midnight). */\n cronExpression?: string | undefined;\n}\n\n/**\n * A CustomUdf function applies a registered Unity Catalog function row-wise to\n * source columns, producing a single output column per row.\n */\nexport interface CustomUdf {\n /** Fully qualified 3-part Unity Catalog path of the function to apply. */\n functionPath?: string | undefined;\n /**\n * Binds each UC function parameter to a source column.\n * May be empty for zero-argument functions (e.g. a timestamp generator).\n */\n inputBindings?: InputBinding[] | undefined;\n}\n\n/** Specifies the data source backing a feature. Exactly one source type must be set. */\nexport interface DataSource {\n dataSource?:\n | {\n $case: 'deltaTableSource';\n /** A Delta table data source. */\n deltaTableSource: DeltaTableSource;\n }\n | {\n $case: 'kafkaSource';\n /** A Kafka stream data source. */\n kafkaSource: KafkaSource;\n }\n | {\n $case: 'requestSource';\n /** A request-time data source. */\n requestSource: RequestSource;\n }\n | {\n $case: 'streamSource';\n /** A Stream data source. */\n streamSource: StreamSource;\n }\n | undefined;\n /**\n * Completeness timing for this Feature's use of the source. This configuration is part of the\n * Feature definition; it does not modify the underlying table or stream.\n */\n lateness?: SourceLateness | undefined;\n}\n\nexport interface DeleteFeatureRequest {\n /** Name of the feature to delete. */\n fullName?: string | undefined;\n}\n\nexport interface DeleteKafkaConfigRequest {\n /** Name of the Kafka config to delete. */\n name?: string | undefined;\n}\n\nexport interface DeleteMaterializedFeatureRequest {\n /** The ID of the materialized feature to delete. */\n materializedFeatureId?: string | undefined;\n}\n\n/** Delete a Stream by its full three-part name (catalog.schema.stream). */\nexport interface DeleteStreamRequest {\n /** Full three-part name (catalog.schema.stream) of the Stream to delete. */\n name?: string | undefined;\n}\n\nexport interface DeltaTableSource {\n /** The full three-part (catalog, schema, table) name of the Delta table. */\n fullName?: string | undefined;\n /** Single WHERE clause to filter delta table before applying transformations. Will be row-wise evaluated, so should only include conditionals and projections. */\n filterCondition?: string | undefined;\n /**\n * A single SQL SELECT expression applied after filter_condition.\n * Should contains all the columns needed (eg. \"SELECT *, col_a + col_b AS col_c FROM x.y.z WHERE col_a > 0\" would have `transformation_sql` \"*, col_a + col_b AS col_c\")\n * If transformation_sql is not provided, all columns of the delta table are present in the DataSource dataframe.\n */\n transformationSql?: string | undefined;\n /**\n * Schema of the resulting dataframe after transformations, in Spark StructType JSON format (from df.schema.json()).\n * Required if transformation_sql is specified.\n * Example: {\"type\":\"struct\",\"fields\":[{\"name\":\"col_a\",\"type\":\"integer\",\"nullable\":true,\"metadata\":{}},{\"name\":\"col_c\",\"type\":\"integer\",\"nullable\":true,\"metadata\":{}}]}\n */\n dataframeSchema?: string | undefined;\n}\n\n/**\n * Direct connection configs for mTLS, as Kafka Connections do not support mTLS yet .\n * Temporarily used until UC Kafka Connections gain mTLS support.\n */\nexport interface DirectMtlsConfig {\n /** A comma-separated list of host:port pairs for the Kafka bootstrap servers. */\n bootstrapServers?: string | undefined;\n /** Mutual-TLS authentication configuration. */\n mtlsConfig?: MtlsConfig | undefined;\n}\n\n/**\n * Schema definitions provided directly on the Stream, as opposed to referencing a schema registry.\n * To resolve schemas from a registry instead, use SchemaRegistryConfig.\n */\nexport interface DirectSchemas {\n /**\n * Schema for the message payload. For Kafka, this is the value schema.\n * Unless the platform supports another schema (e.g. keys for Kafka), this must be specified.\n */\n payloadSchema?: SchemaConfig | undefined;\n /**\n * Schema for the message key. This is only used for Kafka streams.\n * For Kafka, at least one of payload_schema or key_schema must be specified.\n */\n keySchema?: SchemaConfig | undefined;\n}\n\nexport interface EntityColumn {\n /**\n * The name of the entity column. For Kafka sources, use dot-prefixed path notation to reference\n * fields within the key or value schema (e.g., \"value.user_id\", \"key.partition_key\"). For nested\n * fields, the leaf node name (e.g., \"user_id\" from \"value.trip_details.user_id\") is what will\n * be present in materialized tables and expected to match at query time.\n * Colon-prefixed notation (e.g., \"value:user_id\") is supported for backwards\n * compatibility but is deprecated; migrate to dot notation.\n */\n name?: string | undefined;\n}\n\nexport interface Feature {\n /**\n * The full three-part name (catalog, schema, name) of the feature. This is the\n * feature's resource identifier; the catalog_name, schema_name, and name fields\n * below are OUTPUT_ONLY decomposed views of this value.\n */\n fullName?: string | undefined;\n /** The data source of the feature. */\n source?: DataSource | undefined;\n /** The function by which the feature is computed. */\n function?: Function | undefined;\n /** The description of the feature. */\n description?: string | undefined;\n /**\n * Lineage context information for this feature.\n * WARNING: This field is primarily intended for internal use by <Databricks> systems and\n * is automatically populated when features are created through <Databricks> notebooks or jobs.\n * Users should not manually set this field as incorrect values may lead to inaccurate lineage tracking or unexpected behavior.\n * This field will be set by feature-engineering client and should be left unset by SDK and terraform users.\n */\n lineageContext?: LineageContext | undefined;\n /** The entity columns for the feature, used as aggregation keys and for query-time lookup. */\n entities?: EntityColumn[] | undefined;\n /** Column recording time, used for point-in-time joins, backfills, and aggregations. */\n timeseriesColumn?: TimeseriesColumn | undefined;\n /** Name of parent catalog. */\n catalogName?: string | undefined;\n /** Name of parent schema relative to its parent catalog. */\n schemaName?: string | undefined;\n /** Name of the feature, extracted from the full three-part name (catalog.schema.name). */\n name?: string | undefined;\n /** Time at which this feature was created. */\n createdAt?: Temporal.Instant | undefined;\n /** Username of the feature creator. */\n createdBy?: string | undefined;\n}\n\n/**\n * A single field definition within a FlatSchema, specifying the field name and its scalar data type.\n * Does not support nested or complex types (arrays, maps, structs).\n */\nexport interface FieldDefinition {\n /** The name of the field. */\n name?: string | undefined;\n /** The scalar data type of the field. */\n dataType?: ScalarDataType | undefined;\n}\n\n/** Returns the first N distinct values, ordered by the feature's timeseries column. */\nexport interface FirstDistinctFunction {\n /** The input column from which the first N distinct values are returned. */\n input?: string | undefined;\n /** The number of distinct values to return. */\n n?: bigint | undefined;\n}\n\n/** Returns the first value. */\nexport interface FirstFunction {\n /** The input column from which the first value is returned. */\n input?: string | undefined;\n}\n\n/** Returns the first N values, ordered by the feature's timeseries column. */\nexport interface FirstNFunction {\n /** The input column from which the first N values are returned. */\n input?: string | undefined;\n /** The number of values to return. */\n n?: bigint | undefined;\n}\n\n/**\n * A flat (non-nested) schema for request-time fields, defined as an ordered list of field definitions.\n * This schema only supports scalar types.\n */\nexport interface FlatSchema {\n /** The list of fields in this schema. */\n fields?: FieldDefinition[] | undefined;\n}\n\nexport interface Function {\n function?:\n | {\n $case: 'aggregationFunction';\n /** An aggregation function applied over a time window. */\n aggregationFunction: AggregationFunction;\n }\n | {\n $case: 'columnSelection';\n /** Selects the latest value of a single column in a data source */\n columnSelection: ColumnSelection;\n }\n | {\n $case: 'customUdf';\n /** Applies a registered Unity Catalog function row-wise to source columns. */\n customUdf: CustomUdf;\n }\n | undefined;\n}\n\nexport interface GetFeatureRequest {\n /** Name of the feature to get. */\n fullName?: string | undefined;\n}\n\nexport interface GetKafkaConfigRequest {\n /** Name of the Kafka config to get. */\n name?: string | undefined;\n}\n\nexport interface GetMaterializedFeatureRequest {\n /** The ID of the materialized feature. */\n materializedFeatureId?: string | undefined;\n}\n\n/** Get a Stream by its full three-part name (catalog.schema.stream). */\nexport interface GetStreamRequest {\n /** Full three-part name (catalog.schema.stream) of the Stream to get. */\n name?: string | undefined;\n}\n\n/**\n * Configuration for the <Databricks>-managed ingestion pipeline.\n * Groups the ingestion destination (required) and optional backfill source.\n */\nexport interface IngestionConfig {\n /**\n * Destination for the <Databricks>-managed Delta table that holds an offline copy of the streaming data for querying and training.\n * This table contains both 1) forward-filled data from the Stream and 2) backfilled data from the BackfillSource (if provided).\n * This table is created and managed by <Databricks> and is deleted when the Stream is deleted.\n */\n ingestionDestination?: IngestionDestination | undefined;\n /**\n * A user-provided source for backfilling data. Historical data is used when creating a training set from streaming features linked to this Stream.\n * The backfill data stored in this location will be copied into the ingestion table for offline querying and training.\n * The schema for this source must match exactly that of the key and payload schemas specified for this Stream.\n */\n backfillSource?: BackfillSource | undefined;\n /**\n * Column paths used to identify duplicate rows during ingestion; only one row per\n * distinct combination of these values is kept. Use dot notation for nested fields\n * (e.g. `value.user_id`). Empty list means every column is compared.\n */\n deduplicationColumns?: string[] | undefined;\n /**\n * The ID of the SDP pipeline that continuously copies new events from the streaming source\n * into the ingestion Delta table.\n */\n ingestionPipelineId?: string | undefined;\n /** The ID of the Databricks Job that performs the forward-fill ingestion. */\n ingestionJobId?: bigint | undefined;\n /** The ID of the Databricks Job that performs the historical backfill of the ingestion Delta table. */\n backfillJobId?: bigint | undefined;\n}\n\n/** Destination for the <Databricks>-managed Delta table that holds an offline copy of the streaming data for querying and training. */\nexport interface IngestionDestination {\n ingestionDestination?:\n | {\n $case: 'deltaTableName';\n /** The full three-part name (catalog, schema, name) of the Delta table to be created for ingestion. */\n deltaTableName: string;\n }\n | undefined;\n}\n\n/** Binds a single UC function parameter to a source column. */\nexport interface InputBinding {\n /** Name of the UC function parameter. */\n parameter?: string | undefined;\n /** Source column whose value is passed for this parameter at execution time. */\n column?: string | undefined;\n}\n\nexport interface JobContext {\n /** The job ID where this API invoked. */\n jobId?: bigint | undefined;\n /** The job run ID where this API was invoked. */\n jobRunId?: bigint | undefined;\n}\n\nexport interface KafkaConfig {\n /**\n * Name that uniquely identifies this Kafka config within the metastore. This will be the identifier used from the Feature object to reference these configs for a feature.\n * Can be distinct from topic name.\n */\n name?: string | undefined;\n /** A comma-separated list of host/port pairs pointing to Kafka cluster. */\n bootstrapServers?: string | undefined;\n /** Options to configure which Kafka topics to pull data from. */\n subscriptionMode?: SubscriptionMode | undefined;\n /** Authentication configuration for connection to topics. */\n authConfig?: AuthConfig | undefined;\n /** Schema configuration for extracting message keys from topics. At least one of key_schema and value_schema must be provided. */\n keySchema?: SchemaConfig | undefined;\n /** Schema configuration for extracting message values from topics. At least one of key_schema and value_schema must be provided. */\n valueSchema?: SchemaConfig | undefined;\n /** Catch-all for miscellaneous options. Keys should be source options or Kafka consumer options (kafka.*) */\n extraOptions?: Record<string, string> | undefined;\n /**\n * A user-provided and managed source for backfilling data. Historical data is used when creating a training set from streaming features linked to this Kafka config.\n * In the future, a separate table will be maintained by <Databricks> for forward filling data.\n * The schema for this source must match exactly that of the key and value schemas specified for this Kafka config.\n */\n backfillSource?: BackfillSource | undefined;\n /**\n * Configuration for ingesting Kafka data into a <Databricks>-managed\n * Delta table.\n */\n ingestionConfig?: IngestionConfig | undefined;\n}\n\nexport interface KafkaSource {\n /** 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. */\n name?: string | undefined;\n /** The filter condition applied to the source data before aggregation. */\n filterCondition?: string | undefined;\n}\n\n/** Kafka-specific configuration for a Stream. */\nexport interface KafkaStreamConfig {\n /** Options to configure which Kafka topics to pull data from. */\n subscriptionMode?: KafkaSubscriptionMode | undefined;\n /**\n * Optional Kafka source or consumer options, validated against a server-side\n * allowlist at request time. Allowed keys:\n * - `maxOffsetsPerTrigger`\n * - `startingOffsets`\n * - `includeHeaders`\n * - `kafka.request.timeout.ms`\n * - `kafka.session.timeout.ms`\n * - `kafka.max.partition.fetch.bytes`\n * The following keys are ingestion-only and are stripped before being forwarded to the materialization pipeline:\n * - `maxOffsetsPerTrigger`\n * - `startingOffsets`\n * Auth and connection details belong on the parent Stream's `connection_config`, not here.\n */\n extraOptions?: Record<string, string> | undefined;\n}\n\n/** Subscription mode for Kafka topic selection, matching standard Spark Structured Streaming options. */\nexport interface KafkaSubscriptionMode {\n /** These match the settings from https://spark.apache.org/docs/latest/streaming/structured-streaming-kafka-integration.html */\n subscriptionMode?:\n | {\n $case: 'assign';\n /**\n * A JSON string that contains the specific topic-partitions to consume from.\n * For example, for '{\"topicA\":[0,1],\"topicB\":[2,4]}', topicA's 0'th and 1st partitions will be consumed from.\n */\n assign: string;\n }\n | {\n $case: 'subscribe';\n /** A comma-separated list of Kafka topics to read from. For example, 'topicA,topicB,topicC'. */\n subscribe: string;\n }\n | {\n $case: 'subscribePattern';\n /** A regular expression matching topics to subscribe to. For example, 'topic.*' will subscribe to all topics starting with 'topic'. */\n subscribePattern: string;\n }\n | undefined;\n}\n\n/**\n * Kinesis-specific configuration for a Stream. For the underlying connector and its source\n * options, see the <Databricks> documentation on connecting to Amazon Kinesis\n * (https://docs.databricks.com/aws/en/connect/streaming/kinesis).\n */\nexport interface KinesisStreamConfig {\n /**\n * Identifies the Kinesis data stream(s) to read from. Set exactly one of stream_names or\n * stream_arns (identify the streams by name or by ARN, but not both). A single Stream may\n * read from one or more Kinesis streams.\n */\n streamIdentifier?:\n | {\n $case: 'streamNames';\n /** Kinesis stream names to read from. */\n streamNames: StreamNameList;\n }\n | {\n $case: 'streamArns';\n /** Kinesis stream ARNs to read from. */\n streamArns: StreamArnList;\n }\n | undefined;\n /**\n * Optional Kinesis source options, validated against a server-side allowlist at request time.\n * Auth and connection details belong on the parent Stream's `connection_config`, not here.\n */\n extraOptions?: Record<string, string> | undefined;\n}\n\n/** Returns the last N distinct values, ordered by the feature's timeseries column. */\nexport interface LastDistinctFunction {\n /** The input column from which the last N distinct values are returned. */\n input?: string | undefined;\n /** The number of distinct values to return. */\n n?: bigint | undefined;\n}\n\n/** Returns the last value. */\nexport interface LastFunction {\n /** The input column from which the last value is returned. */\n input?: string | undefined;\n}\n\n/** Returns the last N values, ordered by the feature's timeseries column. */\nexport interface LastNFunction {\n /** The input column from which the last N values are returned. */\n input?: string | undefined;\n /** The number of values to return. */\n n?: bigint | undefined;\n}\n\n/** Lineage context information for tracking where an API was invoked. This will allow us to track lineage, which currently uses caller entity information for use across the Lineage Client and Observability in Lumberjack. */\nexport interface LineageContext {\n /** The notebook ID where this API was invoked. */\n notebookId?: bigint | undefined;\n /** Job context information including job ID and run ID. */\n jobContext?: JobContext | undefined;\n}\n\n/**\n * Request to list features. Listing is always scoped to a single catalog and schema;\n * catalog_name and schema_name are required.\n */\nexport interface ListFeaturesRequest {\n /** Pagination token to go to the next page based on a previous query. */\n pageToken?: string | undefined;\n /** The maximum number of results to return. */\n pageSize?: number | undefined;\n /** Name of parent catalog for features of interest. */\n catalogName?: string | undefined;\n /** Name of parent schema relative to its parent catalog. */\n schemaName?: string | undefined;\n}\n\nexport interface ListFeaturesResponse {\n /** List of features. */\n features?: Feature[] | undefined;\n /** Pagination token to request the next page of results for this query. */\n nextPageToken?: string | undefined;\n}\n\nexport interface ListKafkaConfigsRequest {\n /** Pagination token to go to the next page based on a previous query. */\n pageToken?: string | undefined;\n /** The maximum number of results to return. */\n pageSize?: number | undefined;\n}\n\nexport interface ListKafkaConfigsResponse {\n /** List of Kafka configs. Schemas are not included in the response. */\n kafkaConfigs?: KafkaConfig[] | undefined;\n /** Pagination token to request the next page of results for this query. */\n nextPageToken?: string | undefined;\n}\n\nexport interface ListMaterializedFeaturesRequest {\n /** Filter by feature name. If specified, only materialized features materialized from this feature will be returned. */\n featureName?: string | undefined;\n /** Pagination token to go to the next page based on a previous query. */\n pageToken?: string | undefined;\n /** The maximum number of results to return. Defaults to 100 if not specified. Cannot be greater than 1000. */\n pageSize?: number | undefined;\n}\n\nexport interface ListMaterializedFeaturesResponse {\n /** List of materialized features. */\n materializedFeatures?: MaterializedFeature[] | undefined;\n /** Pagination token to request the next page of results for this query. */\n nextPageToken?: string | undefined;\n}\n\n/**\n * List Streams under a given parent.\n *\n * NOTE: Results are post-filtered by access permission on each stream's ingestion\n * table. This means:\n * - Returned results may be fewer than page_size (including zero)\n * - Page token points to next unfiltered batch, not next filtered batch, and may\n * point to an item that will be filtered out\n * - Callers should paginate until next_page_token is empty to retrieve all\n * accessible streams\n */\nexport interface ListStreamsRequest {\n /** Two-part name (catalog.schema) of the parent under which to list Streams. */\n parent?: string | undefined;\n /** The maximum number of results to return. */\n pageSize?: number | undefined;\n /** Pagination token to go to the next page based on a previous query. */\n pageToken?: string | undefined;\n}\n\n/**\n * Response to a ListStreamsRequest.\n *\n * NOTE: Results are post-filtered by access permission on each stream's ingestion\n * table. This means:\n * - Returned results may be fewer than page_size (including zero)\n * - Page token points to next unfiltered batch, not next filtered batch, and may\n * point to an item that will be filtered out\n * Callers should paginate until next_page_token is empty to retrieve all\n * accessible streams.\n */\nexport interface ListStreamsResponse {\n /** List of Streams. */\n streams?: Stream[] | undefined;\n /** Pagination token to request the next page of results for this query. */\n nextPageToken?: string | undefined;\n}\n\n/** A materialized feature represents a feature that is continuously computed and stored. */\nexport interface MaterializedFeature {\n /** Server-assigned unique identifier for the materialized feature. */\n materializedFeatureId?: string | undefined;\n /** The full name of the feature in Unity Catalog. */\n featureName?: string | undefined;\n destination?:\n | {\n $case: 'offlineStoreConfig';\n /** Destination for writing feature values to an offline Delta table. */\n offlineStoreConfig: OfflineStoreConfig;\n }\n | {\n $case: 'onlineStoreConfig';\n /** Destination for writing feature values to an online Lakebase table. */\n onlineStoreConfig: OnlineStoreConfig;\n }\n | undefined;\n /** The fully qualified Unity Catalog path to the table containing the materialized feature (Delta table or Lakebase table). Output only. */\n tableName?: string | undefined;\n /**\n * The schedule state of the materialization pipeline.\n * Hidden from GraphQL: being deprecated, so not exposed to Catalog Explorer.\n */\n pipelineScheduleState?: MaterializedFeature_PipelineScheduleState | undefined;\n /**\n * The timestamp when the pipeline last ran and updated the materialized feature values.\n * If the pipeline has not run yet, this field will be null.\n */\n lastMaterializationTime?: Temporal.Instant | undefined;\n /** True if this is an online materialized feature. False if it is an offline materialized feature. */\n isOnline?: boolean | undefined;\n /** The trigger configuration for the materialization pipeline. */\n trigger?:\n | {\n $case: 'cronScheduleTrigger';\n /** A cron-based schedule trigger for the materialization pipeline. */\n cronScheduleTrigger: CronSchedule;\n }\n | {\n $case: 'tableTrigger';\n /** A trigger that fires when the upstream source table changes. */\n tableTrigger: TableTrigger;\n }\n | {\n $case: 'streamingMode';\n /**\n * The Structured Streaming trigger mode used for materialization. Real-time mode (RTM) targets\n * sub-second latency for operational workloads; micro-batch mode (MBM) favors cost efficiency\n * for ETL and analytics workloads.\n */\n streamingMode: StreamingMode;\n }\n | undefined;\n}\n\n/** Computes the maximum value. */\nexport interface MaxFunction {\n /** The input column from which the maximum is computed. */\n input?: string | undefined;\n}\n\n/** Computes the minimum value. */\nexport interface MinFunction {\n /** The input column from which the minimum is computed. */\n input?: string | undefined;\n}\n\n/**\n * Mutual-TLS (mTLS) authentication configuration. The keystore (client certificate +\n * private key) and truststore (CAs trusted to verify the broker) live as JKS files on\n * Unity Catalog volumes, with their passwords stored in <Databricks> secret scopes. This\n * matches the SSL setup pattern documented at\n * https://docs.databricks.com/en/connect/streaming/kafka/authentication#use-ssl-to-connect-databricks-to-kafka.\n *\n * At materialization time, the generated PySpark code passes the JKS file paths and\n * resolved passwords through to the Kafka SSL options (kafka.ssl.keystore.location,\n * kafka.ssl.keystore.password, kafka.ssl.key.password, kafka.ssl.truststore.location,\n * kafka.ssl.truststore.password). Passwords are resolved on the Spark cluster via\n * dbutils.secrets.get; this message stores only references, never password values.\n */\nexport interface MtlsConfig {\n /**\n * Unity Catalog volume path to the JKS keystore file containing the client certificate\n * and private key. e.g. \"/Volumes/<catalog>/<schema>/<volume>/client.jks\". The\n * materialization compute must have read permission on this volume.\n */\n keystoreLocation?: string | undefined;\n /** Secret-scope reference for the JKS keystore password. */\n keystorePasswordRef?: SecretScopeReference | undefined;\n /**\n * Secret-scope reference for the private key password. Often the same value as the\n * keystore password (keytool's default), but provided as a separate field because\n * Apache Kafka requires it as a distinct option (kafka.ssl.key.password).\n */\n keyPasswordRef?: SecretScopeReference | undefined;\n /**\n * Unity Catalog volume path to the JKS truststore file containing the CA certificate(s)\n * trusted to verify the Kafka broker's server certificate.\n * e.g. \"/Volumes/<catalog>/<schema>/<volume>/truststore.jks\".\n */\n truststoreLocation?: string | undefined;\n /** Secret-scope reference for the JKS truststore password. */\n truststorePasswordRef?: SecretScopeReference | undefined;\n /**\n * Set to true only when the broker certificate's SAN intentionally does not match\n * the connection endpoint — for example when reaching the cluster through a\n * PrivateLink endpoint whose DNS name is not in the broker certificate. Skipping\n * the hostname check removes a defense against man-in-the-middle attacks; do not\n * enable casually. mTLS client authentication is unaffected by this option.\n *\n * See the Apache Kafka SSL security guide for background on this check:\n * https://kafka.apache.org/42/security/encryption-and-authentication-using-ssl/#host-name-verification\n */\n disableHostnameVerification?: boolean | undefined;\n}\n\n/** Configuration for offline store destination. */\nexport interface OfflineStoreConfig {\n /** The Unity Catalog catalog name. */\n catalogName?: string | undefined;\n /** The Unity Catalog schema name. */\n schemaName?: string | undefined;\n /**\n * Prefix for Unity Catalog table name.\n * The materialized feature will be stored in a table with this prefix and a generated postfix.\n */\n tableNamePrefix?: string | undefined;\n}\n\n/** Configuration for online store destination. */\nexport interface OnlineStoreConfig {\n /**\n * The Unity Catalog catalog name. This name is also used as the Lakebase logical database name.\n * Quoting is handled by the backend where needed, do not pre-quote it.\n */\n catalogName?: string | undefined;\n /**\n * The Unity Catalog schema name. This name is also used as the Lakebase schema name under the database.\n * Quoting is handled by the backend where needed, do not pre-quote it.\n */\n schemaName?: string | undefined;\n /**\n * Prefix for Unity Catalog table name.\n * The materialized feature will be stored in a Lakebase table with this prefix and a generated postfix.\n */\n tableNamePrefix?: string | undefined;\n /** The name of the target online store. */\n onlineStoreName?: string | undefined;\n}\n\n/**\n * A Protocol Buffer schema paired with the name of the message within it that describes the\n * Kafka payload. A .proto file may declare multiple messages; message_name disambiguates.\n */\nexport interface ProtoSchemaSpec {\n /**\n * The raw .proto file text (proto2 and proto3 syntax supported, see\n * https://protobuf.dev/programming-guides/proto3/ and https://protobuf.dev/programming-guides/proto2/).\n */\n schemaText?: string | undefined;\n /**\n * The fully-qualified name of the message within schema_text that describes the Kafka payload\n * (e.g. \"Event\" or \"com.example.Event\" if schema_text declares a package). Identifies which\n * message is used to decode each Kafka record — a .proto file may declare multiple messages\n * but only one represents the payload. Must not be empty.\n */\n messageName?: string | undefined;\n}\n\n/** A request-time data source whose value is provided at inference time: offline batch scoring or online serving endpoint */\nexport interface RequestSource {\n /** The schema describing the request-time fields. Currently only flat schemas are supported. */\n schema?:\n | {\n $case: 'flatSchema';\n /** A flat schema with scalar-typed fields only. */\n flatSchema: FlatSchema;\n }\n | undefined;\n}\n\n/** A rolling time window with an optional non-negative delay. */\nexport interface RollingWindow {\n /**\n * The duration of the rolling window. Must be positive when set; absent means lifetime\n * (aggregate over the entity's entire history).\n */\n windowDuration?: Temporal.Duration | undefined;\n /**\n * Non-negative analytic lag that evaluates the window this far in the past. Use this for timing\n * variations unrelated to source lateness, such as a 30-day count as of one week ago. If unset,\n * the analytic lag is zero. It composes with source.lateness when both are set.\n */\n delay?: Temporal.Duration | undefined;\n}\n\n/**\n * A sawtooth window served via the hybrid batch + streaming path. The batch pipeline maintains\n * daily partial aggregates for the bulk of the window while the streaming pipeline maintains the\n * most recent day(s), and serving merges them on read. Same field shape as RollingWindow, but a\n * distinct type so the control plane can explicitly identify hybrid (sawtooth) features rather\n * than inferring hybrid behavior from window_duration.\n */\nexport interface SawtoothWindow {\n /**\n * The duration of the window. Must be positive and span more than two days when set, so that both\n * the batch (N-1 day) and stale-path (N-2 day) partial aggregates are well defined. The duration\n * need not be a whole number of days (e.g. 3 days 15 minutes is allowed). Absent means lifetime\n * (aggregate over the entity's entire history).\n */\n windowDuration?: Temporal.Duration | undefined;\n /** Delay is not currently supported for Sawtooth windows. */\n delay?: Temporal.Duration | undefined;\n}\n\nexport interface SchemaConfig {\n schema?:\n | {\n $case: 'jsonSchema';\n /** Schema of the JSON object in standard IETF JSON schema format (https://json-schema.org/). */\n jsonSchema: string;\n }\n | {\n $case: 'avroSchema';\n /** Avro schema in JSON format (https://avro.apache.org/docs/current/specification/). */\n avroSchema: string;\n }\n | {\n $case: 'protoSchema';\n /** Protocol Buffer schema with its payload message name. */\n protoSchema: ProtoSchemaSpec;\n }\n | undefined;\n}\n\n/**\n * Schema locator for one side (payload or key) of a message.\n * Identifies which schema to use in the schema registry and the serialization format.\n */\nexport interface SchemaLocator {\n /** Registry-specific schema locator. */\n registrySchema?:\n | {\n $case: 'confluentSchema';\n /** Confluent Schema Registry schema locator. */\n confluentSchema: SchemaLocator_ConfluentSchema;\n }\n | undefined;\n /** Serialization format for this schema. */\n format?: SchemaLocator_Format | undefined;\n}\n\n/**\n * Confluent Schema Registry schema locator.\n * The value to provide for `subject` depends on the naming strategy configured in your registry:\n * - TopicNameStrategy (default): \"{topic}-key\" or \"{topic}-value\"\n * e.g. for topic \"transactions\" use \"transactions-value\" for the payload and \"transactions-key\" for the key.\n * - RecordNameStrategy: the fully-qualified record name\n * e.g. \"com.example.Payment\" for Avro, the bare message name (without package) for Protobuf,\n * or the `title` field value for JSON.\n * - TopicRecordNameStrategy: \"{topic}-{fully-qualified-record-name}\"\n * e.g. \"transactions-com.example.Payment\".\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.\nexport interface SchemaLocator_ConfluentSchema {\n /** The Confluent schema registry subject name. */\n subject?: string | undefined;\n}\n\n/** Configuration for resolving a Stream's schema from an external schema registry (e.g. Confluent). */\nexport interface SchemaRegistryConfig {\n /** A Schema Registry UC Connection object. */\n ucConnection?: string | undefined;\n /** Reference to the schema registry API secret in a <Databricks> secret scope. */\n apiSecretRef?: SecretScopeReference | undefined;\n /**\n * Schema locator for the message payload. For Kafka this is the value.\n * At least one of payload_schema_locator or key_schema_locator must be set.\n */\n payloadSchemaLocator?: SchemaLocator | undefined;\n /**\n * Schema locator for the message key. Only used for Kafka streams.\n * At least one of payload_schema_locator or key_schema_locator must be set.\n */\n keySchemaLocator?: SchemaLocator | undefined;\n}\n\n/**\n * Reference to an entry in a <Databricks> secret scope. The referenced value is fetched\n * on the Spark cluster at materialization time via dbutils.secrets.get(scope, key).\n */\nexport interface SecretScopeReference {\n /** The <Databricks> secret scope name. */\n scope?: string | undefined;\n /** The key within the scope. */\n key?: string | undefined;\n}\n\nexport interface SlidingWindow {\n /**\n * The duration of the sliding window. Must be positive when set; absent means lifetime\n * (aggregate over the entity's entire history).\n */\n windowDuration?: Temporal.Duration | undefined;\n /** The slide duration (interval by which windows advance, must be positive and less than duration). */\n slideDuration?: Temporal.Duration | undefined;\n /**\n * Non-negative analytic lag that evaluates the window this far in the past. Use this for timing\n * variations unrelated to source lateness, such as a 30-day count as of one week ago. If unset,\n * the analytic lag is zero. It composes with source.lateness when both are set.\n */\n delay?: Temporal.Duration | undefined;\n /**\n * Non-negative phase shift from the default midnight UTC alignment. For example, offset=22h on\n * a 24h slide produces boundaries at 22:00 UTC (17:00 New York in standard time) instead of\n * midnight UTC. If unset, the offset is zero. Must be shorter than slide_duration (and therefore\n * window_duration).\n */\n offset?: Temporal.Duration | undefined;\n}\n\n/** Configures when event-time data from this source is considered complete for a Feature. */\nexport interface SourceLateness {\n /**\n * Non-negative time to wait after a window ends before treating its source data as complete.\n * Training shifts the eligible evaluation time backwards by this duration so it does not join\n * data that would still have been settling online. Materialization waits for the duration to\n * elapse before publishing the window. If unset, source data is considered settled immediately.\n */\n settlingDelay?: Temporal.Duration | undefined;\n}\n\n/** Computes the population standard deviation. */\nexport interface StddevPopFunction {\n /**\n * The input column from which the population standard deviation is computed. For Kafka sources,\n * use dot-prefixed path notation (e.g., \"value.amount\"). For nested fields, the leaf node name is used.\n * Colon-prefixed notation (e.g., \"value:amount\") is supported for backwards\n * compatibility but is deprecated; migrate to dot notation.\n */\n input?: string | undefined;\n}\n\n/** Computes the sample standard deviation. */\nexport interface StddevSampFunction {\n /** The input column from which the sample standard deviation is computed. */\n input?: string | undefined;\n}\n\n/**\n * A Stream is a governed UC entity representing an external streaming data source.\n * The source_config oneof determines the streaming platform source (e.g. Kafka, Kinesis, etc.).\n */\nexport interface Stream {\n /** Full three-part (catalog.schema.stream) name of the stream. */\n name?: string | undefined;\n /** User-provided description. */\n description?: string | undefined;\n /** Source-specific configuration. Determines the streaming platform source. */\n sourceConfig?: StreamSourceConfig | undefined;\n /** Specifies how to connect and authenticate to the stream platform. */\n connectionConfig?: StreamConnectionConfig | undefined;\n /**\n * Schema definitions for the stream, provided either directly on the Stream or\n * resolved from an external schema registry through a UC Connection.\n */\n schemaConfig?: StreamSchemaConfig | undefined;\n /** Configuration for streaming data ingestion: the managed table storing an offline copy of forward fill data and optional historical backfill. */\n ingestionConfig?: IngestionConfig | undefined;\n /** Time at which this Stream was created. */\n createTime?: Temporal.Instant | undefined;\n /** Username of the Stream creator. */\n createdBy?: string | undefined;\n /** Time at which this Stream was last modified. */\n updateTime?: Temporal.Instant | undefined;\n /** Username of user who last modified the Stream. */\n updatedBy?: string | undefined;\n /**\n * Indicates whether the principal is limited to retrieving metadata for the\n * associated object through the BROWSE privilege when include_browse is enabled in the request.\n */\n browseOnly?: boolean | undefined;\n}\n\n/** A list of Kinesis stream ARNs to read from. */\nexport interface StreamArnList {\n /**\n * Kinesis stream ARNs to read from. For example,\n * 'arn:aws:kinesis:us-west-2:111122223333:stream/stream-a'.\n */\n arns?: string[] | undefined;\n}\n\n/** Specifies how to connect and authenticate to the stream platform. */\nexport interface StreamConnectionConfig {\n connectionConfig?:\n | {\n $case: 'ucConnectionName';\n /**\n * Name of an existing UC Connection for stream platform access.\n * Must be the correct type for the streaming platform (e.g. a Kafka Connection for a Kafka\n * Stream, or a Kinesis Connection for a Kinesis Stream).\n */\n ucConnectionName: string;\n }\n | {\n $case: 'directMtlsConfig';\n /**\n * Direct mTLS configuration for stream platform access. This is only used in the short term until UC Kafka Connections support mTLS .\n * Once UC Kafka Connections support mTLS, this will be deprecated.\n */\n directMtlsConfig: DirectMtlsConfig;\n }\n | undefined;\n}\n\n/** A list of Kinesis stream names to read from. */\nexport interface StreamNameList {\n /** Kinesis stream names to read from. */\n names?: string[] | undefined;\n}\n\n/**\n * Schema definitions for the stream.\n * Feature store supports both direct schemas and schema registries.\n */\nexport interface StreamSchemaConfig {\n schemaConfig?:\n | {\n $case: 'directSchemas';\n /** Schema definitions provided directly on the Stream. */\n directSchemas: DirectSchemas;\n }\n | {\n $case: 'schemaRegistryConfig';\n /** Resolve schemas from an external schema registry. */\n schemaRegistryConfig: SchemaRegistryConfig;\n }\n | undefined;\n}\n\n/** A Stream entity used as a data source for a feature. */\nexport interface StreamSource {\n /** Three-part full name of the Stream (catalog.schema.stream). */\n fullName?: string | undefined;\n /** The filter condition applied to the source data before aggregation. */\n filterCondition?: string | undefined;\n /**\n * The pipeline runs these SQL statements immediately after conversion into\n * the schema specified on the Stream object.\n */\n transformationSql?: string | undefined;\n /**\n * Schema of the resulting dataframe after transformations, in Spark StructType\n * JSON format (from df.schema.json()).\n * Any subsequent functions operate against this dataframe.\n */\n dataframeSchema?: string | undefined;\n}\n\n/** Source-specific configuration. Determines the streaming platform source. */\nexport interface StreamSourceConfig {\n sourceConfig?:\n | {\n $case: 'kafkaStreamConfig';\n /** Configuration for Apache Kafka streams. */\n kafkaStreamConfig: KafkaStreamConfig;\n }\n | {\n $case: 'kinesisStreamConfig';\n /** Configuration for AWS Kinesis Data Streams. */\n kinesisStreamConfig: KinesisStreamConfig;\n }\n | undefined;\n}\n\n/** The streaming mode configuration for a streaming materialization pipeline. */\nexport interface StreamingMode {\n /** The type of streaming mode used by the materialization pipeline. */\n mode?: StreamingMode_StreamingModeType | undefined;\n /**\n * The desired data freshness for feature materialization, expressed as a\n * duration string (e.g. \"1 minute\").\n */\n freshnessTarget?: string | undefined;\n}\n\n/** Deprecated: Use KafkaSubscriptionMode instead. */\nexport interface SubscriptionMode {\n /** These match the settings from https://spark.apache.org/docs/latest/streaming/structured-streaming-kafka-integration.html */\n subscriptionMode?:\n | {\n $case: 'assign';\n /**\n * A JSON string that contains the specific topic-partitions to consume from.\n * For example, for '{\"topicA\":[0,1],\"topicB\":[2,4]}', topicA's 0'th and 1st partitions will be consumed from.\n */\n assign: string;\n }\n | {\n $case: 'subscribe';\n /** A comma-separated list of Kafka topics to read from. For example, 'topicA,topicB,topicC'. */\n subscribe: string;\n }\n | {\n $case: 'subscribePattern';\n /** A regular expression matching topics to subscribe to. For example, 'topic.*' will subscribe to all topics starting with 'topic'. */\n subscribePattern: string;\n }\n | undefined;\n}\n\n/** Computes the sum of values. */\nexport interface SumFunction {\n /**\n * The input column from which the sum is computed. For Kafka sources, use dot-prefixed path\n * notation (e.g., \"value.amount\"). For nested fields, the leaf node name is used.\n * Colon-prefixed notation (e.g., \"value:amount\") is supported for backwards\n * compatibility but is deprecated; migrate to dot notation.\n */\n input?: string | undefined;\n}\n\n/** A trigger that fires when the upstream source table changes. */\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface TableTrigger {}\n\nexport interface TimeWindow {\n windowType?:\n | {$case: 'tumbling'; tumbling: TumblingWindow}\n | {$case: 'sliding'; sliding: SlidingWindow}\n | {$case: 'rolling'; rolling: RollingWindow}\n | {\n $case: 'sawtooth';\n /** A sawtooth window served via the hybrid batch + streaming path. */\n sawtooth: SawtoothWindow;\n }\n | undefined;\n /**\n * Earliest event-time boundary at which the Feature may emit an output. This gates outputs, not\n * the historical inputs read by a window. For example, a 365-day window with\n * start_time=2026-01-01 begins emitting partial-window values on that date instead of waiting\n * for 365 days of data; a lifetime window produces no output before start_time. If unset,\n * tumbling and fixed-duration sliding windows first emit at an offset-aligned boundary after a\n * full window can be formed. If unset, lifetime sliding windows and rolling windows emit as soon as\n * eligible source data exists.\n */\n startTime?: Temporal.Instant | undefined;\n}\n\nexport interface TimeseriesColumn {\n /**\n * The name of the timeseries column. For Kafka sources, use dot-prefixed path notation to\n * reference fields within the key or value schema (e.g., \"value.event_timestamp\"). For nested\n * fields, the leaf node name (e.g., \"event_timestamp\" from \"value.event_details.event_timestamp\")\n * is what will be present in materialized tables and expected to match at query time.\n * Colon-prefixed notation (e.g., \"value:event_timestamp\") is supported for\n * backwards compatibility but is deprecated; migrate to dot notation.\n */\n name?: string | undefined;\n}\n\nexport interface TumblingWindow {\n /** The duration of each tumbling window (non-overlapping, fixed-duration windows). */\n windowDuration?: Temporal.Duration | undefined;\n /**\n * Non-negative analytic lag that evaluates the window this far in the past. Use this for timing\n * variations unrelated to source lateness, such as a 30-day count as of one week ago. If unset,\n * the analytic lag is zero. It composes with source.lateness when both are set.\n */\n delay?: Temporal.Duration | undefined;\n /**\n * Non-negative phase shift from the default midnight UTC alignment. For example, offset=22h on\n * a 24h window produces boundaries at 22:00 UTC (17:00 New York in standard time) instead of\n * midnight UTC. If unset, the offset is zero. Must be shorter than window_duration.\n */\n offset?: Temporal.Duration | undefined;\n}\n\nexport interface UpdateFeatureRequest {\n /** Feature to update. */\n feature?: Feature | undefined;\n /** The list of fields to update. */\n updateMask?: FieldMask<Feature> | undefined;\n}\n\nexport interface UpdateKafkaConfigRequest {\n /** The Kafka config to update. */\n kafkaConfig?: KafkaConfig | undefined;\n /** The list of fields to update. */\n updateMask?: FieldMask<KafkaConfig> | undefined;\n}\n\nexport interface UpdateMaterializedFeatureRequest {\n /** The materialized feature to update. */\n materializedFeature?: MaterializedFeature | undefined;\n /**\n * Provide the materialization feature fields which should be updated.\n * Currently, only the pipeline_state field can be updated.\n */\n updateMask?: FieldMask<MaterializedFeature> | undefined;\n}\n\n/** Update a Stream. Only fields listed in `update_mask` are mutated. */\nexport interface UpdateStreamRequest {\n /** The Stream to update. */\n stream?: Stream | undefined;\n /** The list of fields to update. */\n updateMask?: FieldMask<Stream> | undefined;\n}\n\n/** Computes the population variance. */\nexport interface VarPopFunction {\n /** The input column from which the population variance is computed. */\n input?: string | undefined;\n}\n\n/** Computes the sample variance. */\nexport interface VarSampFunction {\n /** The input column from which the sample variance is computed. */\n input?: string | undefined;\n}\n\nexport const unmarshalAggregationFunctionSchema: z.ZodType<AggregationFunction> =\n z\n .object({\n avg: z.lazy(() => unmarshalAvgFunctionSchema).optional(),\n count_function: z.lazy(() => unmarshalCountFunctionSchema).optional(),\n sum: z.lazy(() => unmarshalSumFunctionSchema).optional(),\n min: z.lazy(() => unmarshalMinFunctionSchema).optional(),\n max: z.lazy(() => unmarshalMaxFunctionSchema).optional(),\n first: z.lazy(() => unmarshalFirstFunctionSchema).optional(),\n last: z.lazy(() => unmarshalLastFunctionSchema).optional(),\n approx_count_distinct: z\n .lazy(() => unmarshalApproxCountDistinctFunctionSchema)\n .optional(),\n approx_percentile: z\n .lazy(() => unmarshalApproxPercentileFunctionSchema)\n .optional(),\n stddev_pop: z.lazy(() => unmarshalStddevPopFunctionSchema).optional(),\n stddev_samp: z.lazy(() => unmarshalStddevSampFunctionSchema).optional(),\n var_pop: z.lazy(() => unmarshalVarPopFunctionSchema).optional(),\n var_samp: z.lazy(() => unmarshalVarSampFunctionSchema).optional(),\n first_n: z.lazy(() => unmarshalFirstNFunctionSchema).optional(),\n last_n: z.lazy(() => unmarshalLastNFunctionSchema).optional(),\n first_distinct: z\n .lazy(() => unmarshalFirstDistinctFunctionSchema)\n .optional(),\n last_distinct: z\n .lazy(() => unmarshalLastDistinctFunctionSchema)\n .optional(),\n time_window: z.lazy(() => unmarshalTimeWindowSchema).optional(),\n })\n .transform(d => ({\n operation:\n d.avg !== undefined\n ? {$case: 'avg' as const, avg: d.avg}\n : d.count_function !== undefined\n ? {$case: 'countFunction' as const, countFunction: d.count_function}\n : d.sum !== undefined\n ? {$case: 'sum' as const, sum: d.sum}\n : d.min !== undefined\n ? {$case: 'min' as const, min: d.min}\n : d.max !== undefined\n ? {$case: 'max' as const, max: d.max}\n : d.first !== undefined\n ? {$case: 'first' as const, first: d.first}\n : d.last !== undefined\n ? {$case: 'last' as const, last: d.last}\n : d.approx_count_distinct !== undefined\n ? {\n $case: 'approxCountDistinct' as const,\n approxCountDistinct: d.approx_count_distinct,\n }\n : d.approx_percentile !== undefined\n ? {\n $case: 'approxPercentile' as const,\n approxPercentile: d.approx_percentile,\n }\n : d.stddev_pop !== undefined\n ? {\n $case: 'stddevPop' as const,\n stddevPop: d.stddev_pop,\n }\n : d.stddev_samp !== undefined\n ? {\n $case: 'stddevSamp' as const,\n stddevSamp: d.stddev_samp,\n }\n : d.var_pop !== undefined\n ? {$case: 'varPop' as const, varPop: d.var_pop}\n : d.var_samp !== undefined\n ? {\n $case: 'varSamp' as const,\n varSamp: d.var_samp,\n }\n : d.first_n !== undefined\n ? {\n $case: 'firstN' as const,\n firstN: d.first_n,\n }\n : d.last_n !== undefined\n ? {\n $case: 'lastN' as const,\n lastN: d.last_n,\n }\n : d.first_distinct !== undefined\n ? {\n $case: 'firstDistinct' as const,\n firstDistinct: d.first_distinct,\n }\n : d.last_distinct !== undefined\n ? {\n $case: 'lastDistinct' as const,\n lastDistinct: d.last_distinct,\n }\n : undefined,\n timeWindow: d.time_window,\n }));\n\nexport const unmarshalApproxCountDistinctFunctionSchema: z.ZodType<ApproxCountDistinctFunction> =\n z\n .object({\n input: z.string().optional(),\n relative_sd: z.number().optional(),\n })\n .transform(d => ({\n input: d.input,\n relativeSd: d.relative_sd,\n }));\n\nexport const unmarshalApproxPercentileFunctionSchema: z.ZodType<ApproxPercentileFunction> =\n z\n .object({\n input: z.string().optional(),\n percentile: z.number().optional(),\n accuracy: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n })\n .transform(d => ({\n input: d.input,\n percentile: d.percentile,\n accuracy: d.accuracy,\n }));\n\nexport const unmarshalAuthConfigSchema: z.ZodType<AuthConfig> = z\n .object({\n uc_service_credential_name: z.string().optional(),\n mtls_config: z.lazy(() => unmarshalMtlsConfigSchema).optional(),\n })\n .transform(d => ({\n authConfig:\n d.uc_service_credential_name !== undefined\n ? {\n $case: 'ucServiceCredentialName' as const,\n ucServiceCredentialName: d.uc_service_credential_name,\n }\n : d.mtls_config !== undefined\n ? {$case: 'mtlsConfig' as const, mtlsConfig: d.mtls_config}\n : undefined,\n }));\n\nexport const unmarshalAvgFunctionSchema: z.ZodType<AvgFunction> = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const unmarshalBackfillSourceSchema: z.ZodType<BackfillSource> = z\n .object({\n delta_table_source: z\n .lazy(() => unmarshalDeltaTableSourceSchema)\n .optional(),\n delta_table_name: z.string().optional(),\n })\n .transform(d => ({\n backfillSource:\n d.delta_table_source !== undefined\n ? {\n $case: 'deltaTableSource' as const,\n deltaTableSource: d.delta_table_source,\n }\n : d.delta_table_name !== undefined\n ? {\n $case: 'deltaTableName' as const,\n deltaTableName: d.delta_table_name,\n }\n : undefined,\n }));\n\nexport const unmarshalBatchCreateMaterializedFeaturesResponseSchema: z.ZodType<BatchCreateMaterializedFeaturesResponse> =\n z\n .object({\n materialized_features: z\n .array(z.lazy(() => unmarshalMaterializedFeatureSchema))\n .optional(),\n })\n .transform(d => ({\n materializedFeatures: d.materialized_features,\n }));\n\nexport const unmarshalColumnSelectionSchema: z.ZodType<ColumnSelection> = z\n .object({\n column: z.string().optional(),\n })\n .transform(d => ({\n column: d.column,\n }));\n\nexport const unmarshalCountFunctionSchema: z.ZodType<CountFunction> = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const unmarshalCronScheduleSchema: z.ZodType<CronSchedule> = z\n .object({\n cron_expression: z.string().optional(),\n })\n .transform(d => ({\n cronExpression: d.cron_expression,\n }));\n\nexport const unmarshalCustomUdfSchema: z.ZodType<CustomUdf> = z\n .object({\n function_path: z.string().optional(),\n input_bindings: z\n .array(z.lazy(() => unmarshalInputBindingSchema))\n .optional(),\n })\n .transform(d => ({\n functionPath: d.function_path,\n inputBindings: d.input_bindings,\n }));\n\nexport const unmarshalDataSourceSchema: z.ZodType<DataSource> = z\n .object({\n delta_table_source: z\n .lazy(() => unmarshalDeltaTableSourceSchema)\n .optional(),\n kafka_source: z.lazy(() => unmarshalKafkaSourceSchema).optional(),\n request_source: z.lazy(() => unmarshalRequestSourceSchema).optional(),\n stream_source: z.lazy(() => unmarshalStreamSourceSchema).optional(),\n lateness: z.lazy(() => unmarshalSourceLatenessSchema).optional(),\n })\n .transform(d => ({\n dataSource:\n d.delta_table_source !== undefined\n ? {\n $case: 'deltaTableSource' as const,\n deltaTableSource: d.delta_table_source,\n }\n : d.kafka_source !== undefined\n ? {$case: 'kafkaSource' as const, kafkaSource: d.kafka_source}\n : d.request_source !== undefined\n ? {$case: 'requestSource' as const, requestSource: d.request_source}\n : d.stream_source !== undefined\n ? {$case: 'streamSource' as const, streamSource: d.stream_source}\n : undefined,\n lateness: d.lateness,\n }));\n\nexport const unmarshalDeltaTableSourceSchema: z.ZodType<DeltaTableSource> = z\n .object({\n full_name: z.string().optional(),\n filter_condition: z.string().optional(),\n transformation_sql: z.string().optional(),\n dataframe_schema: z.string().optional(),\n })\n .transform(d => ({\n fullName: d.full_name,\n filterCondition: d.filter_condition,\n transformationSql: d.transformation_sql,\n dataframeSchema: d.dataframe_schema,\n }));\n\nexport const unmarshalDirectMtlsConfigSchema: z.ZodType<DirectMtlsConfig> = z\n .object({\n bootstrap_servers: z.string().optional(),\n mtls_config: z.lazy(() => unmarshalMtlsConfigSchema).optional(),\n })\n .transform(d => ({\n bootstrapServers: d.bootstrap_servers,\n mtlsConfig: d.mtls_config,\n }));\n\nexport const unmarshalDirectSchemasSchema: z.ZodType<DirectSchemas> = z\n .object({\n payload_schema: z.lazy(() => unmarshalSchemaConfigSchema).optional(),\n key_schema: z.lazy(() => unmarshalSchemaConfigSchema).optional(),\n })\n .transform(d => ({\n payloadSchema: d.payload_schema,\n keySchema: d.key_schema,\n }));\n\nexport const unmarshalEntityColumnSchema: z.ZodType<EntityColumn> = z\n .object({\n name: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n }));\n\nexport const unmarshalFeatureSchema: z.ZodType<Feature> = z\n .object({\n full_name: z.string().optional(),\n source: z.lazy(() => unmarshalDataSourceSchema).optional(),\n function: z.lazy(() => unmarshalFunctionSchema).optional(),\n description: z.string().optional(),\n lineage_context: z.lazy(() => unmarshalLineageContextSchema).optional(),\n entities: z.array(z.lazy(() => unmarshalEntityColumnSchema)).optional(),\n timeseries_column: z.lazy(() => unmarshalTimeseriesColumnSchema).optional(),\n catalog_name: z.string().optional(),\n schema_name: z.string().optional(),\n name: z.string().optional(),\n created_at: z\n .string()\n .transform(s => Temporal.Instant.from(s))\n .optional(),\n created_by: z.string().optional(),\n })\n .transform(d => ({\n fullName: d.full_name,\n source: d.source,\n function: d.function,\n description: d.description,\n lineageContext: d.lineage_context,\n entities: d.entities,\n timeseriesColumn: d.timeseries_column,\n catalogName: d.catalog_name,\n schemaName: d.schema_name,\n name: d.name,\n createdAt: d.created_at,\n createdBy: d.created_by,\n }));\n\nexport const unmarshalFieldDefinitionSchema: z.ZodType<FieldDefinition> = z\n .object({\n name: z.string().optional(),\n data_type: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n dataType: d.data_type,\n }));\n\nexport const unmarshalFirstDistinctFunctionSchema: z.ZodType<FirstDistinctFunction> =\n z\n .object({\n input: z.string().optional(),\n n: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n })\n .transform(d => ({\n input: d.input,\n n: d.n,\n }));\n\nexport const unmarshalFirstFunctionSchema: z.ZodType<FirstFunction> = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const unmarshalFirstNFunctionSchema: z.ZodType<FirstNFunction> = z\n .object({\n input: z.string().optional(),\n n: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n })\n .transform(d => ({\n input: d.input,\n n: d.n,\n }));\n\nexport const unmarshalFlatSchemaSchema: z.ZodType<FlatSchema> = z\n .object({\n fields: z.array(z.lazy(() => unmarshalFieldDefinitionSchema)).optional(),\n })\n .transform(d => ({\n fields: d.fields,\n }));\n\nexport const unmarshalFunctionSchema: z.ZodType<Function> = z\n .object({\n aggregation_function: z\n .lazy(() => unmarshalAggregationFunctionSchema)\n .optional(),\n column_selection: z.lazy(() => unmarshalColumnSelectionSchema).optional(),\n custom_udf: z.lazy(() => unmarshalCustomUdfSchema).optional(),\n })\n .transform(d => ({\n function:\n d.aggregation_function !== undefined\n ? {\n $case: 'aggregationFunction' as const,\n aggregationFunction: d.aggregation_function,\n }\n : d.column_selection !== undefined\n ? {\n $case: 'columnSelection' as const,\n columnSelection: d.column_selection,\n }\n : d.custom_udf !== undefined\n ? {$case: 'customUdf' as const, customUdf: d.custom_udf}\n : undefined,\n }));\n\nexport const unmarshalIngestionConfigSchema: z.ZodType<IngestionConfig> = z\n .object({\n ingestion_destination: z\n .lazy(() => unmarshalIngestionDestinationSchema)\n .optional(),\n backfill_source: z.lazy(() => unmarshalBackfillSourceSchema).optional(),\n deduplication_columns: z.array(z.string()).optional(),\n ingestion_pipeline_id: z.string().optional(),\n ingestion_job_id: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n backfill_job_id: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n })\n .transform(d => ({\n ingestionDestination: d.ingestion_destination,\n backfillSource: d.backfill_source,\n deduplicationColumns: d.deduplication_columns,\n ingestionPipelineId: d.ingestion_pipeline_id,\n ingestionJobId: d.ingestion_job_id,\n backfillJobId: d.backfill_job_id,\n }));\n\nexport const unmarshalIngestionDestinationSchema: z.ZodType<IngestionDestination> =\n z\n .object({\n delta_table_name: z.string().optional(),\n })\n .transform(d => ({\n ingestionDestination:\n d.delta_table_name !== undefined\n ? {\n $case: 'deltaTableName' as const,\n deltaTableName: d.delta_table_name,\n }\n : undefined,\n }));\n\nexport const unmarshalInputBindingSchema: z.ZodType<InputBinding> = z\n .object({\n parameter: z.string().optional(),\n column: z.string().optional(),\n })\n .transform(d => ({\n parameter: d.parameter,\n column: d.column,\n }));\n\nexport const unmarshalJobContextSchema: z.ZodType<JobContext> = z\n .object({\n job_id: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n job_run_id: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n })\n .transform(d => ({\n jobId: d.job_id,\n jobRunId: d.job_run_id,\n }));\n\nexport const unmarshalKafkaConfigSchema: z.ZodType<KafkaConfig> = z\n .object({\n name: z.string().optional(),\n bootstrap_servers: z.string().optional(),\n subscription_mode: z.lazy(() => unmarshalSubscriptionModeSchema).optional(),\n auth_config: z.lazy(() => unmarshalAuthConfigSchema).optional(),\n key_schema: z.lazy(() => unmarshalSchemaConfigSchema).optional(),\n value_schema: z.lazy(() => unmarshalSchemaConfigSchema).optional(),\n extra_options: z.record(z.string(), z.string()).optional(),\n backfill_source: z.lazy(() => unmarshalBackfillSourceSchema).optional(),\n ingestion_config: z.lazy(() => unmarshalIngestionConfigSchema).optional(),\n })\n .transform(d => ({\n name: d.name,\n bootstrapServers: d.bootstrap_servers,\n subscriptionMode: d.subscription_mode,\n authConfig: d.auth_config,\n keySchema: d.key_schema,\n valueSchema: d.value_schema,\n extraOptions: d.extra_options,\n backfillSource: d.backfill_source,\n ingestionConfig: d.ingestion_config,\n }));\n\nexport const unmarshalKafkaSourceSchema: z.ZodType<KafkaSource> = z\n .object({\n name: z.string().optional(),\n filter_condition: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n filterCondition: d.filter_condition,\n }));\n\nexport const unmarshalKafkaStreamConfigSchema: z.ZodType<KafkaStreamConfig> = z\n .object({\n subscription_mode: z\n .lazy(() => unmarshalKafkaSubscriptionModeSchema)\n .optional(),\n extra_options: z.record(z.string(), z.string()).optional(),\n })\n .transform(d => ({\n subscriptionMode: d.subscription_mode,\n extraOptions: d.extra_options,\n }));\n\nexport const unmarshalKafkaSubscriptionModeSchema: z.ZodType<KafkaSubscriptionMode> =\n z\n .object({\n assign: z.string().optional(),\n subscribe: z.string().optional(),\n subscribe_pattern: z.string().optional(),\n })\n .transform(d => ({\n subscriptionMode:\n d.assign !== undefined\n ? {$case: 'assign' as const, assign: d.assign}\n : d.subscribe !== undefined\n ? {$case: 'subscribe' as const, subscribe: d.subscribe}\n : d.subscribe_pattern !== undefined\n ? {\n $case: 'subscribePattern' as const,\n subscribePattern: d.subscribe_pattern,\n }\n : undefined,\n }));\n\nexport const unmarshalKinesisStreamConfigSchema: z.ZodType<KinesisStreamConfig> =\n z\n .object({\n stream_names: z.lazy(() => unmarshalStreamNameListSchema).optional(),\n stream_arns: z.lazy(() => unmarshalStreamArnListSchema).optional(),\n extra_options: z.record(z.string(), z.string()).optional(),\n })\n .transform(d => ({\n streamIdentifier:\n d.stream_names !== undefined\n ? {$case: 'streamNames' as const, streamNames: d.stream_names}\n : d.stream_arns !== undefined\n ? {$case: 'streamArns' as const, streamArns: d.stream_arns}\n : undefined,\n extraOptions: d.extra_options,\n }));\n\nexport const unmarshalLastDistinctFunctionSchema: z.ZodType<LastDistinctFunction> =\n z\n .object({\n input: z.string().optional(),\n n: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n })\n .transform(d => ({\n input: d.input,\n n: d.n,\n }));\n\nexport const unmarshalLastFunctionSchema: z.ZodType<LastFunction> = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const unmarshalLastNFunctionSchema: z.ZodType<LastNFunction> = z\n .object({\n input: z.string().optional(),\n n: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n })\n .transform(d => ({\n input: d.input,\n n: d.n,\n }));\n\nexport const unmarshalLineageContextSchema: z.ZodType<LineageContext> = z\n .object({\n notebook_id: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n job_context: z.lazy(() => unmarshalJobContextSchema).optional(),\n })\n .transform(d => ({\n notebookId: d.notebook_id,\n jobContext: d.job_context,\n }));\n\nexport const unmarshalListFeaturesResponseSchema: z.ZodType<ListFeaturesResponse> =\n z\n .object({\n features: z.array(z.lazy(() => unmarshalFeatureSchema)).optional(),\n next_page_token: z.string().optional(),\n })\n .transform(d => ({\n features: d.features,\n nextPageToken: d.next_page_token,\n }));\n\nexport const unmarshalListKafkaConfigsResponseSchema: z.ZodType<ListKafkaConfigsResponse> =\n z\n .object({\n kafka_configs: z\n .array(z.lazy(() => unmarshalKafkaConfigSchema))\n .optional(),\n next_page_token: z.string().optional(),\n })\n .transform(d => ({\n kafkaConfigs: d.kafka_configs,\n nextPageToken: d.next_page_token,\n }));\n\nexport const unmarshalListMaterializedFeaturesResponseSchema: z.ZodType<ListMaterializedFeaturesResponse> =\n z\n .object({\n materialized_features: z\n .array(z.lazy(() => unmarshalMaterializedFeatureSchema))\n .optional(),\n next_page_token: z.string().optional(),\n })\n .transform(d => ({\n materializedFeatures: d.materialized_features,\n nextPageToken: d.next_page_token,\n }));\n\nexport const unmarshalListStreamsResponseSchema: z.ZodType<ListStreamsResponse> =\n z\n .object({\n streams: z.array(z.lazy(() => unmarshalStreamSchema)).optional(),\n next_page_token: z.string().optional(),\n })\n .transform(d => ({\n streams: d.streams,\n nextPageToken: d.next_page_token,\n }));\n\nexport const unmarshalMaterializedFeatureSchema: z.ZodType<MaterializedFeature> =\n z\n .object({\n materialized_feature_id: z.string().optional(),\n feature_name: z.string().optional(),\n offline_store_config: z\n .lazy(() => unmarshalOfflineStoreConfigSchema)\n .optional(),\n online_store_config: z\n .lazy(() => unmarshalOnlineStoreConfigSchema)\n .optional(),\n table_name: z.string().optional(),\n pipeline_schedule_state: z.string().optional(),\n last_materialization_time: z\n .string()\n .transform(s => Temporal.Instant.from(s))\n .optional(),\n is_online: z.boolean().optional(),\n cron_schedule_trigger: z\n .lazy(() => unmarshalCronScheduleSchema)\n .optional(),\n table_trigger: z.lazy(() => unmarshalTableTriggerSchema).optional(),\n streaming_mode: z.lazy(() => unmarshalStreamingModeSchema).optional(),\n })\n .transform(d => ({\n materializedFeatureId: d.materialized_feature_id,\n featureName: d.feature_name,\n destination:\n d.offline_store_config !== undefined\n ? {\n $case: 'offlineStoreConfig' as const,\n offlineStoreConfig: d.offline_store_config,\n }\n : d.online_store_config !== undefined\n ? {\n $case: 'onlineStoreConfig' as const,\n onlineStoreConfig: d.online_store_config,\n }\n : undefined,\n tableName: d.table_name,\n pipelineScheduleState: d.pipeline_schedule_state,\n lastMaterializationTime: d.last_materialization_time,\n isOnline: d.is_online,\n trigger:\n d.cron_schedule_trigger !== undefined\n ? {\n $case: 'cronScheduleTrigger' as const,\n cronScheduleTrigger: d.cron_schedule_trigger,\n }\n : d.table_trigger !== undefined\n ? {$case: 'tableTrigger' as const, tableTrigger: d.table_trigger}\n : d.streaming_mode !== undefined\n ? {\n $case: 'streamingMode' as const,\n streamingMode: d.streaming_mode,\n }\n : undefined,\n }));\n\nexport const unmarshalMaxFunctionSchema: z.ZodType<MaxFunction> = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const unmarshalMinFunctionSchema: z.ZodType<MinFunction> = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const unmarshalMtlsConfigSchema: z.ZodType<MtlsConfig> = z\n .object({\n keystore_location: z.string().optional(),\n keystore_password_ref: z\n .lazy(() => unmarshalSecretScopeReferenceSchema)\n .optional(),\n key_password_ref: z\n .lazy(() => unmarshalSecretScopeReferenceSchema)\n .optional(),\n truststore_location: z.string().optional(),\n truststore_password_ref: z\n .lazy(() => unmarshalSecretScopeReferenceSchema)\n .optional(),\n disable_hostname_verification: z.boolean().optional(),\n })\n .transform(d => ({\n keystoreLocation: d.keystore_location,\n keystorePasswordRef: d.keystore_password_ref,\n keyPasswordRef: d.key_password_ref,\n truststoreLocation: d.truststore_location,\n truststorePasswordRef: d.truststore_password_ref,\n disableHostnameVerification: d.disable_hostname_verification,\n }));\n\nexport const unmarshalOfflineStoreConfigSchema: z.ZodType<OfflineStoreConfig> =\n z\n .object({\n catalog_name: z.string().optional(),\n schema_name: z.string().optional(),\n table_name_prefix: z.string().optional(),\n })\n .transform(d => ({\n catalogName: d.catalog_name,\n schemaName: d.schema_name,\n tableNamePrefix: d.table_name_prefix,\n }));\n\nexport const unmarshalOnlineStoreConfigSchema: z.ZodType<OnlineStoreConfig> = z\n .object({\n catalog_name: z.string().optional(),\n schema_name: z.string().optional(),\n table_name_prefix: z.string().optional(),\n online_store_name: z.string().optional(),\n })\n .transform(d => ({\n catalogName: d.catalog_name,\n schemaName: d.schema_name,\n tableNamePrefix: d.table_name_prefix,\n onlineStoreName: d.online_store_name,\n }));\n\nexport const unmarshalProtoSchemaSpecSchema: z.ZodType<ProtoSchemaSpec> = z\n .object({\n schema_text: z.string().optional(),\n message_name: z.string().optional(),\n })\n .transform(d => ({\n schemaText: d.schema_text,\n messageName: d.message_name,\n }));\n\nexport const unmarshalRequestSourceSchema: z.ZodType<RequestSource> = z\n .object({\n flat_schema: z.lazy(() => unmarshalFlatSchemaSchema).optional(),\n })\n .transform(d => ({\n schema:\n d.flat_schema !== undefined\n ? {$case: 'flatSchema' as const, flatSchema: d.flat_schema}\n : undefined,\n }));\n\nexport const unmarshalRollingWindowSchema: z.ZodType<RollingWindow> = z\n .object({\n window_duration: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n delay: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n })\n .transform(d => ({\n windowDuration: d.window_duration,\n delay: d.delay,\n }));\n\nexport const unmarshalSawtoothWindowSchema: z.ZodType<SawtoothWindow> = z\n .object({\n window_duration: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n delay: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n })\n .transform(d => ({\n windowDuration: d.window_duration,\n delay: d.delay,\n }));\n\nexport const unmarshalSchemaConfigSchema: z.ZodType<SchemaConfig> = z\n .object({\n json_schema: z.string().optional(),\n avro_schema: z.string().optional(),\n proto_schema: z.lazy(() => unmarshalProtoSchemaSpecSchema).optional(),\n })\n .transform(d => ({\n schema:\n d.json_schema !== undefined\n ? {$case: 'jsonSchema' as const, jsonSchema: d.json_schema}\n : d.avro_schema !== undefined\n ? {$case: 'avroSchema' as const, avroSchema: d.avro_schema}\n : d.proto_schema !== undefined\n ? {$case: 'protoSchema' as const, protoSchema: d.proto_schema}\n : undefined,\n }));\n\nexport const unmarshalSchemaLocatorSchema: z.ZodType<SchemaLocator> = z\n .object({\n confluent_schema: z\n .lazy(() => unmarshalSchemaLocator_ConfluentSchemaSchema)\n .optional(),\n format: z.string().optional(),\n })\n .transform(d => ({\n registrySchema:\n d.confluent_schema !== undefined\n ? {\n $case: 'confluentSchema' as const,\n confluentSchema: d.confluent_schema,\n }\n : undefined,\n format: d.format,\n }));\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.\nexport const unmarshalSchemaLocator_ConfluentSchemaSchema: z.ZodType<SchemaLocator_ConfluentSchema> =\n z\n .object({\n subject: z.string().optional(),\n })\n .transform(d => ({\n subject: d.subject,\n }));\n\nexport const unmarshalSchemaRegistryConfigSchema: z.ZodType<SchemaRegistryConfig> =\n z\n .object({\n uc_connection: z.string().optional(),\n api_secret_ref: z\n .lazy(() => unmarshalSecretScopeReferenceSchema)\n .optional(),\n payload_schema_locator: z\n .lazy(() => unmarshalSchemaLocatorSchema)\n .optional(),\n key_schema_locator: z.lazy(() => unmarshalSchemaLocatorSchema).optional(),\n })\n .transform(d => ({\n ucConnection: d.uc_connection,\n apiSecretRef: d.api_secret_ref,\n payloadSchemaLocator: d.payload_schema_locator,\n keySchemaLocator: d.key_schema_locator,\n }));\n\nexport const unmarshalSecretScopeReferenceSchema: z.ZodType<SecretScopeReference> =\n z\n .object({\n scope: z.string().optional(),\n key: z.string().optional(),\n })\n .transform(d => ({\n scope: d.scope,\n key: d.key,\n }));\n\nexport const unmarshalSlidingWindowSchema: z.ZodType<SlidingWindow> = z\n .object({\n window_duration: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n slide_duration: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n delay: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n offset: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n })\n .transform(d => ({\n windowDuration: d.window_duration,\n slideDuration: d.slide_duration,\n delay: d.delay,\n offset: d.offset,\n }));\n\nexport const unmarshalSourceLatenessSchema: z.ZodType<SourceLateness> = z\n .object({\n settling_delay: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n })\n .transform(d => ({\n settlingDelay: d.settling_delay,\n }));\n\nexport const unmarshalStddevPopFunctionSchema: z.ZodType<StddevPopFunction> = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const unmarshalStddevSampFunctionSchema: z.ZodType<StddevSampFunction> =\n z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const unmarshalStreamSchema: z.ZodType<Stream> = z\n .object({\n name: z.string().optional(),\n description: z.string().optional(),\n source_config: z.lazy(() => unmarshalStreamSourceConfigSchema).optional(),\n connection_config: z\n .lazy(() => unmarshalStreamConnectionConfigSchema)\n .optional(),\n schema_config: z.lazy(() => unmarshalStreamSchemaConfigSchema).optional(),\n ingestion_config: z.lazy(() => unmarshalIngestionConfigSchema).optional(),\n create_time: z\n .string()\n .transform(s => Temporal.Instant.from(s))\n .optional(),\n created_by: z.string().optional(),\n update_time: z\n .string()\n .transform(s => Temporal.Instant.from(s))\n .optional(),\n updated_by: z.string().optional(),\n browse_only: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n description: d.description,\n sourceConfig: d.source_config,\n connectionConfig: d.connection_config,\n schemaConfig: d.schema_config,\n ingestionConfig: d.ingestion_config,\n createTime: d.create_time,\n createdBy: d.created_by,\n updateTime: d.update_time,\n updatedBy: d.updated_by,\n browseOnly: d.browse_only,\n }));\n\nexport const unmarshalStreamArnListSchema: z.ZodType<StreamArnList> = z\n .object({\n arns: z.array(z.string()).optional(),\n })\n .transform(d => ({\n arns: d.arns,\n }));\n\nexport const unmarshalStreamConnectionConfigSchema: z.ZodType<StreamConnectionConfig> =\n z\n .object({\n uc_connection_name: z.string().optional(),\n direct_mtls_config: z\n .lazy(() => unmarshalDirectMtlsConfigSchema)\n .optional(),\n })\n .transform(d => ({\n connectionConfig:\n d.uc_connection_name !== undefined\n ? {\n $case: 'ucConnectionName' as const,\n ucConnectionName: d.uc_connection_name,\n }\n : d.direct_mtls_config !== undefined\n ? {\n $case: 'directMtlsConfig' as const,\n directMtlsConfig: d.direct_mtls_config,\n }\n : undefined,\n }));\n\nexport const unmarshalStreamNameListSchema: z.ZodType<StreamNameList> = z\n .object({\n names: z.array(z.string()).optional(),\n })\n .transform(d => ({\n names: d.names,\n }));\n\nexport const unmarshalStreamSchemaConfigSchema: z.ZodType<StreamSchemaConfig> =\n z\n .object({\n direct_schemas: z.lazy(() => unmarshalDirectSchemasSchema).optional(),\n schema_registry_config: z\n .lazy(() => unmarshalSchemaRegistryConfigSchema)\n .optional(),\n })\n .transform(d => ({\n schemaConfig:\n d.direct_schemas !== undefined\n ? {$case: 'directSchemas' as const, directSchemas: d.direct_schemas}\n : d.schema_registry_config !== undefined\n ? {\n $case: 'schemaRegistryConfig' as const,\n schemaRegistryConfig: d.schema_registry_config,\n }\n : undefined,\n }));\n\nexport const unmarshalStreamSourceSchema: z.ZodType<StreamSource> = z\n .object({\n full_name: z.string().optional(),\n filter_condition: z.string().optional(),\n transformation_sql: z.string().optional(),\n dataframe_schema: z.string().optional(),\n })\n .transform(d => ({\n fullName: d.full_name,\n filterCondition: d.filter_condition,\n transformationSql: d.transformation_sql,\n dataframeSchema: d.dataframe_schema,\n }));\n\nexport const unmarshalStreamSourceConfigSchema: z.ZodType<StreamSourceConfig> =\n z\n .object({\n kafka_stream_config: z\n .lazy(() => unmarshalKafkaStreamConfigSchema)\n .optional(),\n kinesis_stream_config: z\n .lazy(() => unmarshalKinesisStreamConfigSchema)\n .optional(),\n })\n .transform(d => ({\n sourceConfig:\n d.kafka_stream_config !== undefined\n ? {\n $case: 'kafkaStreamConfig' as const,\n kafkaStreamConfig: d.kafka_stream_config,\n }\n : d.kinesis_stream_config !== undefined\n ? {\n $case: 'kinesisStreamConfig' as const,\n kinesisStreamConfig: d.kinesis_stream_config,\n }\n : undefined,\n }));\n\nexport const unmarshalStreamingModeSchema: z.ZodType<StreamingMode> = z\n .object({\n mode: z.string().optional(),\n freshness_target: z.string().optional(),\n })\n .transform(d => ({\n mode: d.mode,\n freshnessTarget: d.freshness_target,\n }));\n\nexport const unmarshalSubscriptionModeSchema: z.ZodType<SubscriptionMode> = z\n .object({\n assign: z.string().optional(),\n subscribe: z.string().optional(),\n subscribe_pattern: z.string().optional(),\n })\n .transform(d => ({\n subscriptionMode:\n d.assign !== undefined\n ? {$case: 'assign' as const, assign: d.assign}\n : d.subscribe !== undefined\n ? {$case: 'subscribe' as const, subscribe: d.subscribe}\n : d.subscribe_pattern !== undefined\n ? {\n $case: 'subscribePattern' as const,\n subscribePattern: d.subscribe_pattern,\n }\n : undefined,\n }));\n\nexport const unmarshalSumFunctionSchema: z.ZodType<SumFunction> = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const unmarshalTableTriggerSchema: z.ZodType<TableTrigger> = z.object(\n {}\n);\n\nexport const unmarshalTimeWindowSchema: z.ZodType<TimeWindow> = z\n .object({\n tumbling: z.lazy(() => unmarshalTumblingWindowSchema).optional(),\n sliding: z.lazy(() => unmarshalSlidingWindowSchema).optional(),\n rolling: z.lazy(() => unmarshalRollingWindowSchema).optional(),\n sawtooth: z.lazy(() => unmarshalSawtoothWindowSchema).optional(),\n start_time: z\n .string()\n .transform(s => Temporal.Instant.from(s))\n .optional(),\n })\n .transform(d => ({\n windowType:\n d.tumbling !== undefined\n ? {$case: 'tumbling' as const, tumbling: d.tumbling}\n : d.sliding !== undefined\n ? {$case: 'sliding' as const, sliding: d.sliding}\n : d.rolling !== undefined\n ? {$case: 'rolling' as const, rolling: d.rolling}\n : d.sawtooth !== undefined\n ? {$case: 'sawtooth' as const, sawtooth: d.sawtooth}\n : undefined,\n startTime: d.start_time,\n }));\n\nexport const unmarshalTimeseriesColumnSchema: z.ZodType<TimeseriesColumn> = z\n .object({\n name: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n }));\n\nexport const unmarshalTumblingWindowSchema: z.ZodType<TumblingWindow> = z\n .object({\n window_duration: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n delay: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n offset: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n })\n .transform(d => ({\n windowDuration: d.window_duration,\n delay: d.delay,\n offset: d.offset,\n }));\n\nexport const unmarshalVarPopFunctionSchema: z.ZodType<VarPopFunction> = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const unmarshalVarSampFunctionSchema: z.ZodType<VarSampFunction> = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalAggregationFunctionSchema: z.ZodType = z\n .object({\n operation: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('avg'),\n avg: z.lazy(() => marshalAvgFunctionSchema),\n }),\n z.object({\n $case: z.literal('countFunction'),\n countFunction: z.lazy(() => marshalCountFunctionSchema),\n }),\n z.object({\n $case: z.literal('sum'),\n sum: z.lazy(() => marshalSumFunctionSchema),\n }),\n z.object({\n $case: z.literal('min'),\n min: z.lazy(() => marshalMinFunctionSchema),\n }),\n z.object({\n $case: z.literal('max'),\n max: z.lazy(() => marshalMaxFunctionSchema),\n }),\n z.object({\n $case: z.literal('first'),\n first: z.lazy(() => marshalFirstFunctionSchema),\n }),\n z.object({\n $case: z.literal('last'),\n last: z.lazy(() => marshalLastFunctionSchema),\n }),\n z.object({\n $case: z.literal('approxCountDistinct'),\n approxCountDistinct: z.lazy(\n () => marshalApproxCountDistinctFunctionSchema\n ),\n }),\n z.object({\n $case: z.literal('approxPercentile'),\n approxPercentile: z.lazy(() => marshalApproxPercentileFunctionSchema),\n }),\n z.object({\n $case: z.literal('stddevPop'),\n stddevPop: z.lazy(() => marshalStddevPopFunctionSchema),\n }),\n z.object({\n $case: z.literal('stddevSamp'),\n stddevSamp: z.lazy(() => marshalStddevSampFunctionSchema),\n }),\n z.object({\n $case: z.literal('varPop'),\n varPop: z.lazy(() => marshalVarPopFunctionSchema),\n }),\n z.object({\n $case: z.literal('varSamp'),\n varSamp: z.lazy(() => marshalVarSampFunctionSchema),\n }),\n z.object({\n $case: z.literal('firstN'),\n firstN: z.lazy(() => marshalFirstNFunctionSchema),\n }),\n z.object({\n $case: z.literal('lastN'),\n lastN: z.lazy(() => marshalLastNFunctionSchema),\n }),\n z.object({\n $case: z.literal('firstDistinct'),\n firstDistinct: z.lazy(() => marshalFirstDistinctFunctionSchema),\n }),\n z.object({\n $case: z.literal('lastDistinct'),\n lastDistinct: z.lazy(() => marshalLastDistinctFunctionSchema),\n }),\n ])\n .optional(),\n timeWindow: z.lazy(() => marshalTimeWindowSchema).optional(),\n })\n .transform(d => ({\n ...(d.operation?.$case === 'avg' && {avg: d.operation.avg}),\n ...(d.operation?.$case === 'countFunction' && {\n count_function: d.operation.countFunction,\n }),\n ...(d.operation?.$case === 'sum' && {sum: d.operation.sum}),\n ...(d.operation?.$case === 'min' && {min: d.operation.min}),\n ...(d.operation?.$case === 'max' && {max: d.operation.max}),\n ...(d.operation?.$case === 'first' && {first: d.operation.first}),\n ...(d.operation?.$case === 'last' && {last: d.operation.last}),\n ...(d.operation?.$case === 'approxCountDistinct' && {\n approx_count_distinct: d.operation.approxCountDistinct,\n }),\n ...(d.operation?.$case === 'approxPercentile' && {\n approx_percentile: d.operation.approxPercentile,\n }),\n ...(d.operation?.$case === 'stddevPop' && {\n stddev_pop: d.operation.stddevPop,\n }),\n ...(d.operation?.$case === 'stddevSamp' && {\n stddev_samp: d.operation.stddevSamp,\n }),\n ...(d.operation?.$case === 'varPop' && {var_pop: d.operation.varPop}),\n ...(d.operation?.$case === 'varSamp' && {var_samp: d.operation.varSamp}),\n ...(d.operation?.$case === 'firstN' && {first_n: d.operation.firstN}),\n ...(d.operation?.$case === 'lastN' && {last_n: d.operation.lastN}),\n ...(d.operation?.$case === 'firstDistinct' && {\n first_distinct: d.operation.firstDistinct,\n }),\n ...(d.operation?.$case === 'lastDistinct' && {\n last_distinct: d.operation.lastDistinct,\n }),\n time_window: d.timeWindow,\n }));\n\nexport const marshalApproxCountDistinctFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n relativeSd: z.number().optional(),\n })\n .transform(d => ({\n input: d.input,\n relative_sd: d.relativeSd,\n }));\n\nexport const marshalApproxPercentileFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n percentile: z.number().optional(),\n accuracy: z.bigint().optional(),\n })\n .transform(d => ({\n input: d.input,\n percentile: d.percentile,\n accuracy: d.accuracy,\n }));\n\nexport const marshalAuthConfigSchema: z.ZodType = z\n .object({\n authConfig: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('ucServiceCredentialName'),\n ucServiceCredentialName: z.string(),\n }),\n z.object({\n $case: z.literal('mtlsConfig'),\n mtlsConfig: z.lazy(() => marshalMtlsConfigSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.authConfig?.$case === 'ucServiceCredentialName' && {\n uc_service_credential_name: d.authConfig.ucServiceCredentialName,\n }),\n ...(d.authConfig?.$case === 'mtlsConfig' && {\n mtls_config: d.authConfig.mtlsConfig,\n }),\n }));\n\nexport const marshalAvgFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalBackfillSourceSchema: z.ZodType = z\n .object({\n backfillSource: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('deltaTableSource'),\n deltaTableSource: z.lazy(() => marshalDeltaTableSourceSchema),\n }),\n z.object({\n $case: z.literal('deltaTableName'),\n deltaTableName: z.string(),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.backfillSource?.$case === 'deltaTableSource' && {\n delta_table_source: d.backfillSource.deltaTableSource,\n }),\n ...(d.backfillSource?.$case === 'deltaTableName' && {\n delta_table_name: d.backfillSource.deltaTableName,\n }),\n }));\n\nexport const marshalBatchCreateMaterializedFeaturesRequestSchema: z.ZodType = z\n .object({\n requests: z\n .array(z.lazy(() => marshalCreateMaterializedFeatureRequestSchema))\n .optional(),\n })\n .transform(d => ({\n requests: d.requests,\n }));\n\nexport const marshalColumnSelectionSchema: z.ZodType = z\n .object({\n column: z.string().optional(),\n })\n .transform(d => ({\n column: d.column,\n }));\n\nexport const marshalCountFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalCreateMaterializedFeatureRequestSchema: z.ZodType = z\n .object({\n materializedFeature: z\n .lazy(() => marshalMaterializedFeatureSchema)\n .optional(),\n })\n .transform(d => ({\n materialized_feature: d.materializedFeature,\n }));\n\nexport const marshalCronScheduleSchema: z.ZodType = z\n .object({\n cronExpression: z.string().optional(),\n })\n .transform(d => ({\n cron_expression: d.cronExpression,\n }));\n\nexport const marshalCustomUdfSchema: z.ZodType = z\n .object({\n functionPath: z.string().optional(),\n inputBindings: z.array(z.lazy(() => marshalInputBindingSchema)).optional(),\n })\n .transform(d => ({\n function_path: d.functionPath,\n input_bindings: d.inputBindings,\n }));\n\nexport const marshalDataSourceSchema: z.ZodType = z\n .object({\n dataSource: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('deltaTableSource'),\n deltaTableSource: z.lazy(() => marshalDeltaTableSourceSchema),\n }),\n z.object({\n $case: z.literal('kafkaSource'),\n kafkaSource: z.lazy(() => marshalKafkaSourceSchema),\n }),\n z.object({\n $case: z.literal('requestSource'),\n requestSource: z.lazy(() => marshalRequestSourceSchema),\n }),\n z.object({\n $case: z.literal('streamSource'),\n streamSource: z.lazy(() => marshalStreamSourceSchema),\n }),\n ])\n .optional(),\n lateness: z.lazy(() => marshalSourceLatenessSchema).optional(),\n })\n .transform(d => ({\n ...(d.dataSource?.$case === 'deltaTableSource' && {\n delta_table_source: d.dataSource.deltaTableSource,\n }),\n ...(d.dataSource?.$case === 'kafkaSource' && {\n kafka_source: d.dataSource.kafkaSource,\n }),\n ...(d.dataSource?.$case === 'requestSource' && {\n request_source: d.dataSource.requestSource,\n }),\n ...(d.dataSource?.$case === 'streamSource' && {\n stream_source: d.dataSource.streamSource,\n }),\n lateness: d.lateness,\n }));\n\nexport const marshalDeltaTableSourceSchema: z.ZodType = z\n .object({\n fullName: z.string().optional(),\n filterCondition: z.string().optional(),\n transformationSql: z.string().optional(),\n dataframeSchema: z.string().optional(),\n })\n .transform(d => ({\n full_name: d.fullName,\n filter_condition: d.filterCondition,\n transformation_sql: d.transformationSql,\n dataframe_schema: d.dataframeSchema,\n }));\n\nexport const marshalDirectMtlsConfigSchema: z.ZodType = z\n .object({\n bootstrapServers: z.string().optional(),\n mtlsConfig: z.lazy(() => marshalMtlsConfigSchema).optional(),\n })\n .transform(d => ({\n bootstrap_servers: d.bootstrapServers,\n mtls_config: d.mtlsConfig,\n }));\n\nexport const marshalDirectSchemasSchema: z.ZodType = z\n .object({\n payloadSchema: z.lazy(() => marshalSchemaConfigSchema).optional(),\n keySchema: z.lazy(() => marshalSchemaConfigSchema).optional(),\n })\n .transform(d => ({\n payload_schema: d.payloadSchema,\n key_schema: d.keySchema,\n }));\n\nexport const marshalEntityColumnSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n }));\n\nexport const marshalFeatureSchema: z.ZodType = z\n .object({\n fullName: z.string().optional(),\n source: z.lazy(() => marshalDataSourceSchema).optional(),\n function: z.lazy(() => marshalFunctionSchema).optional(),\n description: z.string().optional(),\n lineageContext: z.lazy(() => marshalLineageContextSchema).optional(),\n entities: z.array(z.lazy(() => marshalEntityColumnSchema)).optional(),\n timeseriesColumn: z.lazy(() => marshalTimeseriesColumnSchema).optional(),\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n name: z.string().optional(),\n createdAt: z\n .any()\n .transform((d: Temporal.Instant) => d.toString())\n .optional(),\n createdBy: z.string().optional(),\n })\n .transform(d => ({\n full_name: d.fullName,\n source: d.source,\n function: d.function,\n description: d.description,\n lineage_context: d.lineageContext,\n entities: d.entities,\n timeseries_column: d.timeseriesColumn,\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n name: d.name,\n created_at: d.createdAt,\n created_by: d.createdBy,\n }));\n\nexport const marshalFieldDefinitionSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n dataType: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n data_type: d.dataType,\n }));\n\nexport const marshalFirstDistinctFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n n: z.bigint().optional(),\n })\n .transform(d => ({\n input: d.input,\n n: d.n,\n }));\n\nexport const marshalFirstFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalFirstNFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n n: z.bigint().optional(),\n })\n .transform(d => ({\n input: d.input,\n n: d.n,\n }));\n\nexport const marshalFlatSchemaSchema: z.ZodType = z\n .object({\n fields: z.array(z.lazy(() => marshalFieldDefinitionSchema)).optional(),\n })\n .transform(d => ({\n fields: d.fields,\n }));\n\nexport const marshalFunctionSchema: z.ZodType = z\n .object({\n function: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('aggregationFunction'),\n aggregationFunction: z.lazy(() => marshalAggregationFunctionSchema),\n }),\n z.object({\n $case: z.literal('columnSelection'),\n columnSelection: z.lazy(() => marshalColumnSelectionSchema),\n }),\n z.object({\n $case: z.literal('customUdf'),\n customUdf: z.lazy(() => marshalCustomUdfSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.function?.$case === 'aggregationFunction' && {\n aggregation_function: d.function.aggregationFunction,\n }),\n ...(d.function?.$case === 'columnSelection' && {\n column_selection: d.function.columnSelection,\n }),\n ...(d.function?.$case === 'customUdf' && {\n custom_udf: d.function.customUdf,\n }),\n }));\n\nexport const marshalIngestionConfigSchema: z.ZodType = z\n .object({\n ingestionDestination: z\n .lazy(() => marshalIngestionDestinationSchema)\n .optional(),\n backfillSource: z.lazy(() => marshalBackfillSourceSchema).optional(),\n deduplicationColumns: z.array(z.string()).optional(),\n ingestionPipelineId: z.string().optional(),\n ingestionJobId: z.bigint().optional(),\n backfillJobId: z.bigint().optional(),\n })\n .transform(d => ({\n ingestion_destination: d.ingestionDestination,\n backfill_source: d.backfillSource,\n deduplication_columns: d.deduplicationColumns,\n ingestion_pipeline_id: d.ingestionPipelineId,\n ingestion_job_id: d.ingestionJobId,\n backfill_job_id: d.backfillJobId,\n }));\n\nexport const marshalIngestionDestinationSchema: z.ZodType = z\n .object({\n ingestionDestination: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('deltaTableName'),\n deltaTableName: z.string(),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.ingestionDestination?.$case === 'deltaTableName' && {\n delta_table_name: d.ingestionDestination.deltaTableName,\n }),\n }));\n\nexport const marshalInputBindingSchema: z.ZodType = z\n .object({\n parameter: z.string().optional(),\n column: z.string().optional(),\n })\n .transform(d => ({\n parameter: d.parameter,\n column: d.column,\n }));\n\nexport const marshalJobContextSchema: z.ZodType = z\n .object({\n jobId: z.bigint().optional(),\n jobRunId: z.bigint().optional(),\n })\n .transform(d => ({\n job_id: d.jobId,\n job_run_id: d.jobRunId,\n }));\n\nexport const marshalKafkaConfigSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n bootstrapServers: z.string().optional(),\n subscriptionMode: z.lazy(() => marshalSubscriptionModeSchema).optional(),\n authConfig: z.lazy(() => marshalAuthConfigSchema).optional(),\n keySchema: z.lazy(() => marshalSchemaConfigSchema).optional(),\n valueSchema: z.lazy(() => marshalSchemaConfigSchema).optional(),\n extraOptions: z.record(z.string(), z.string()).optional(),\n backfillSource: z.lazy(() => marshalBackfillSourceSchema).optional(),\n ingestionConfig: z.lazy(() => marshalIngestionConfigSchema).optional(),\n })\n .transform(d => ({\n name: d.name,\n bootstrap_servers: d.bootstrapServers,\n subscription_mode: d.subscriptionMode,\n auth_config: d.authConfig,\n key_schema: d.keySchema,\n value_schema: d.valueSchema,\n extra_options: d.extraOptions,\n backfill_source: d.backfillSource,\n ingestion_config: d.ingestionConfig,\n }));\n\nexport const marshalKafkaSourceSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n filterCondition: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n filter_condition: d.filterCondition,\n }));\n\nexport const marshalKafkaStreamConfigSchema: z.ZodType = z\n .object({\n subscriptionMode: z\n .lazy(() => marshalKafkaSubscriptionModeSchema)\n .optional(),\n extraOptions: z.record(z.string(), z.string()).optional(),\n })\n .transform(d => ({\n subscription_mode: d.subscriptionMode,\n extra_options: d.extraOptions,\n }));\n\nexport const marshalKafkaSubscriptionModeSchema: z.ZodType = z\n .object({\n subscriptionMode: z\n .discriminatedUnion('$case', [\n z.object({$case: z.literal('assign'), assign: z.string()}),\n z.object({$case: z.literal('subscribe'), subscribe: z.string()}),\n z.object({\n $case: z.literal('subscribePattern'),\n subscribePattern: z.string(),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.subscriptionMode?.$case === 'assign' && {\n assign: d.subscriptionMode.assign,\n }),\n ...(d.subscriptionMode?.$case === 'subscribe' && {\n subscribe: d.subscriptionMode.subscribe,\n }),\n ...(d.subscriptionMode?.$case === 'subscribePattern' && {\n subscribe_pattern: d.subscriptionMode.subscribePattern,\n }),\n }));\n\nexport const marshalKinesisStreamConfigSchema: z.ZodType = z\n .object({\n streamIdentifier: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('streamNames'),\n streamNames: z.lazy(() => marshalStreamNameListSchema),\n }),\n z.object({\n $case: z.literal('streamArns'),\n streamArns: z.lazy(() => marshalStreamArnListSchema),\n }),\n ])\n .optional(),\n extraOptions: z.record(z.string(), z.string()).optional(),\n })\n .transform(d => ({\n ...(d.streamIdentifier?.$case === 'streamNames' && {\n stream_names: d.streamIdentifier.streamNames,\n }),\n ...(d.streamIdentifier?.$case === 'streamArns' && {\n stream_arns: d.streamIdentifier.streamArns,\n }),\n extra_options: d.extraOptions,\n }));\n\nexport const marshalLastDistinctFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n n: z.bigint().optional(),\n })\n .transform(d => ({\n input: d.input,\n n: d.n,\n }));\n\nexport const marshalLastFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalLastNFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n n: z.bigint().optional(),\n })\n .transform(d => ({\n input: d.input,\n n: d.n,\n }));\n\nexport const marshalLineageContextSchema: z.ZodType = z\n .object({\n notebookId: z.bigint().optional(),\n jobContext: z.lazy(() => marshalJobContextSchema).optional(),\n })\n .transform(d => ({\n notebook_id: d.notebookId,\n job_context: d.jobContext,\n }));\n\nexport const marshalMaterializedFeatureSchema: z.ZodType = z\n .object({\n materializedFeatureId: z.string().optional(),\n featureName: z.string().optional(),\n destination: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('offlineStoreConfig'),\n offlineStoreConfig: z.lazy(() => marshalOfflineStoreConfigSchema),\n }),\n z.object({\n $case: z.literal('onlineStoreConfig'),\n onlineStoreConfig: z.lazy(() => marshalOnlineStoreConfigSchema),\n }),\n ])\n .optional(),\n tableName: z.string().optional(),\n pipelineScheduleState: z.string().optional(),\n lastMaterializationTime: z\n .any()\n .transform((d: Temporal.Instant) => d.toString())\n .optional(),\n isOnline: z.boolean().optional(),\n trigger: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('cronScheduleTrigger'),\n cronScheduleTrigger: z.lazy(() => marshalCronScheduleSchema),\n }),\n z.object({\n $case: z.literal('tableTrigger'),\n tableTrigger: z.lazy(() => marshalTableTriggerSchema),\n }),\n z.object({\n $case: z.literal('streamingMode'),\n streamingMode: z.lazy(() => marshalStreamingModeSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n materialized_feature_id: d.materializedFeatureId,\n feature_name: d.featureName,\n ...(d.destination?.$case === 'offlineStoreConfig' && {\n offline_store_config: d.destination.offlineStoreConfig,\n }),\n ...(d.destination?.$case === 'onlineStoreConfig' && {\n online_store_config: d.destination.onlineStoreConfig,\n }),\n table_name: d.tableName,\n pipeline_schedule_state: d.pipelineScheduleState,\n last_materialization_time: d.lastMaterializationTime,\n is_online: d.isOnline,\n ...(d.trigger?.$case === 'cronScheduleTrigger' && {\n cron_schedule_trigger: d.trigger.cronScheduleTrigger,\n }),\n ...(d.trigger?.$case === 'tableTrigger' && {\n table_trigger: d.trigger.tableTrigger,\n }),\n ...(d.trigger?.$case === 'streamingMode' && {\n streaming_mode: d.trigger.streamingMode,\n }),\n }));\n\nexport const marshalMaxFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalMinFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalMtlsConfigSchema: z.ZodType = z\n .object({\n keystoreLocation: z.string().optional(),\n keystorePasswordRef: z\n .lazy(() => marshalSecretScopeReferenceSchema)\n .optional(),\n keyPasswordRef: z.lazy(() => marshalSecretScopeReferenceSchema).optional(),\n truststoreLocation: z.string().optional(),\n truststorePasswordRef: z\n .lazy(() => marshalSecretScopeReferenceSchema)\n .optional(),\n disableHostnameVerification: z.boolean().optional(),\n })\n .transform(d => ({\n keystore_location: d.keystoreLocation,\n keystore_password_ref: d.keystorePasswordRef,\n key_password_ref: d.keyPasswordRef,\n truststore_location: d.truststoreLocation,\n truststore_password_ref: d.truststorePasswordRef,\n disable_hostname_verification: d.disableHostnameVerification,\n }));\n\nexport const marshalOfflineStoreConfigSchema: z.ZodType = z\n .object({\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n tableNamePrefix: z.string().optional(),\n })\n .transform(d => ({\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n table_name_prefix: d.tableNamePrefix,\n }));\n\nexport const marshalOnlineStoreConfigSchema: z.ZodType = z\n .object({\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n tableNamePrefix: z.string().optional(),\n onlineStoreName: z.string().optional(),\n })\n .transform(d => ({\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n table_name_prefix: d.tableNamePrefix,\n online_store_name: d.onlineStoreName,\n }));\n\nexport const marshalProtoSchemaSpecSchema: z.ZodType = z\n .object({\n schemaText: z.string().optional(),\n messageName: z.string().optional(),\n })\n .transform(d => ({\n schema_text: d.schemaText,\n message_name: d.messageName,\n }));\n\nexport const marshalRequestSourceSchema: z.ZodType = z\n .object({\n schema: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('flatSchema'),\n flatSchema: z.lazy(() => marshalFlatSchemaSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.schema?.$case === 'flatSchema' && {flat_schema: d.schema.flatSchema}),\n }));\n\nexport const marshalRollingWindowSchema: z.ZodType = z\n .object({\n windowDuration: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n delay: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n })\n .transform(d => ({\n window_duration: d.windowDuration,\n delay: d.delay,\n }));\n\nexport const marshalSawtoothWindowSchema: z.ZodType = z\n .object({\n windowDuration: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n delay: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n })\n .transform(d => ({\n window_duration: d.windowDuration,\n delay: d.delay,\n }));\n\nexport const marshalSchemaConfigSchema: z.ZodType = z\n .object({\n schema: z\n .discriminatedUnion('$case', [\n z.object({$case: z.literal('jsonSchema'), jsonSchema: z.string()}),\n z.object({$case: z.literal('avroSchema'), avroSchema: z.string()}),\n z.object({\n $case: z.literal('protoSchema'),\n protoSchema: z.lazy(() => marshalProtoSchemaSpecSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.schema?.$case === 'jsonSchema' && {json_schema: d.schema.jsonSchema}),\n ...(d.schema?.$case === 'avroSchema' && {avro_schema: d.schema.avroSchema}),\n ...(d.schema?.$case === 'protoSchema' && {\n proto_schema: d.schema.protoSchema,\n }),\n }));\n\nexport const marshalSchemaLocatorSchema: z.ZodType = z\n .object({\n registrySchema: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('confluentSchema'),\n confluentSchema: z.lazy(\n () => marshalSchemaLocator_ConfluentSchemaSchema\n ),\n }),\n ])\n .optional(),\n format: z.string().optional(),\n })\n .transform(d => ({\n ...(d.registrySchema?.$case === 'confluentSchema' && {\n confluent_schema: d.registrySchema.confluentSchema,\n }),\n format: d.format,\n }));\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.\nexport const marshalSchemaLocator_ConfluentSchemaSchema: z.ZodType = z\n .object({\n subject: z.string().optional(),\n })\n .transform(d => ({\n subject: d.subject,\n }));\n\nexport const marshalSchemaRegistryConfigSchema: z.ZodType = z\n .object({\n ucConnection: z.string().optional(),\n apiSecretRef: z.lazy(() => marshalSecretScopeReferenceSchema).optional(),\n payloadSchemaLocator: z.lazy(() => marshalSchemaLocatorSchema).optional(),\n keySchemaLocator: z.lazy(() => marshalSchemaLocatorSchema).optional(),\n })\n .transform(d => ({\n uc_connection: d.ucConnection,\n api_secret_ref: d.apiSecretRef,\n payload_schema_locator: d.payloadSchemaLocator,\n key_schema_locator: d.keySchemaLocator,\n }));\n\nexport const marshalSecretScopeReferenceSchema: z.ZodType = z\n .object({\n scope: z.string().optional(),\n key: z.string().optional(),\n })\n .transform(d => ({\n scope: d.scope,\n key: d.key,\n }));\n\nexport const marshalSlidingWindowSchema: z.ZodType = z\n .object({\n windowDuration: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n slideDuration: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n delay: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n offset: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n })\n .transform(d => ({\n window_duration: d.windowDuration,\n slide_duration: d.slideDuration,\n delay: d.delay,\n offset: d.offset,\n }));\n\nexport const marshalSourceLatenessSchema: z.ZodType = z\n .object({\n settlingDelay: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n })\n .transform(d => ({\n settling_delay: d.settlingDelay,\n }));\n\nexport const marshalStddevPopFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalStddevSampFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalStreamSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n description: z.string().optional(),\n sourceConfig: z.lazy(() => marshalStreamSourceConfigSchema).optional(),\n connectionConfig: z\n .lazy(() => marshalStreamConnectionConfigSchema)\n .optional(),\n schemaConfig: z.lazy(() => marshalStreamSchemaConfigSchema).optional(),\n ingestionConfig: z.lazy(() => marshalIngestionConfigSchema).optional(),\n createTime: z\n .any()\n .transform((d: Temporal.Instant) => d.toString())\n .optional(),\n createdBy: z.string().optional(),\n updateTime: z\n .any()\n .transform((d: Temporal.Instant) => d.toString())\n .optional(),\n updatedBy: z.string().optional(),\n browseOnly: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n description: d.description,\n source_config: d.sourceConfig,\n connection_config: d.connectionConfig,\n schema_config: d.schemaConfig,\n ingestion_config: d.ingestionConfig,\n create_time: d.createTime,\n created_by: d.createdBy,\n update_time: d.updateTime,\n updated_by: d.updatedBy,\n browse_only: d.browseOnly,\n }));\n\nexport const marshalStreamArnListSchema: z.ZodType = z\n .object({\n arns: z.array(z.string()).optional(),\n })\n .transform(d => ({\n arns: d.arns,\n }));\n\nexport const marshalStreamConnectionConfigSchema: z.ZodType = z\n .object({\n connectionConfig: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('ucConnectionName'),\n ucConnectionName: z.string(),\n }),\n z.object({\n $case: z.literal('directMtlsConfig'),\n directMtlsConfig: z.lazy(() => marshalDirectMtlsConfigSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.connectionConfig?.$case === 'ucConnectionName' && {\n uc_connection_name: d.connectionConfig.ucConnectionName,\n }),\n ...(d.connectionConfig?.$case === 'directMtlsConfig' && {\n direct_mtls_config: d.connectionConfig.directMtlsConfig,\n }),\n }));\n\nexport const marshalStreamNameListSchema: z.ZodType = z\n .object({\n names: z.array(z.string()).optional(),\n })\n .transform(d => ({\n names: d.names,\n }));\n\nexport const marshalStreamSchemaConfigSchema: z.ZodType = z\n .object({\n schemaConfig: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('directSchemas'),\n directSchemas: z.lazy(() => marshalDirectSchemasSchema),\n }),\n z.object({\n $case: z.literal('schemaRegistryConfig'),\n schemaRegistryConfig: z.lazy(() => marshalSchemaRegistryConfigSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.schemaConfig?.$case === 'directSchemas' && {\n direct_schemas: d.schemaConfig.directSchemas,\n }),\n ...(d.schemaConfig?.$case === 'schemaRegistryConfig' && {\n schema_registry_config: d.schemaConfig.schemaRegistryConfig,\n }),\n }));\n\nexport const marshalStreamSourceSchema: z.ZodType = z\n .object({\n fullName: z.string().optional(),\n filterCondition: z.string().optional(),\n transformationSql: z.string().optional(),\n dataframeSchema: z.string().optional(),\n })\n .transform(d => ({\n full_name: d.fullName,\n filter_condition: d.filterCondition,\n transformation_sql: d.transformationSql,\n dataframe_schema: d.dataframeSchema,\n }));\n\nexport const marshalStreamSourceConfigSchema: z.ZodType = z\n .object({\n sourceConfig: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('kafkaStreamConfig'),\n kafkaStreamConfig: z.lazy(() => marshalKafkaStreamConfigSchema),\n }),\n z.object({\n $case: z.literal('kinesisStreamConfig'),\n kinesisStreamConfig: z.lazy(() => marshalKinesisStreamConfigSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.sourceConfig?.$case === 'kafkaStreamConfig' && {\n kafka_stream_config: d.sourceConfig.kafkaStreamConfig,\n }),\n ...(d.sourceConfig?.$case === 'kinesisStreamConfig' && {\n kinesis_stream_config: d.sourceConfig.kinesisStreamConfig,\n }),\n }));\n\nexport const marshalStreamingModeSchema: z.ZodType = z\n .object({\n mode: z.string().optional(),\n freshnessTarget: z.string().optional(),\n })\n .transform(d => ({\n mode: d.mode,\n freshness_target: d.freshnessTarget,\n }));\n\nexport const marshalSubscriptionModeSchema: z.ZodType = z\n .object({\n subscriptionMode: z\n .discriminatedUnion('$case', [\n z.object({$case: z.literal('assign'), assign: z.string()}),\n z.object({$case: z.literal('subscribe'), subscribe: z.string()}),\n z.object({\n $case: z.literal('subscribePattern'),\n subscribePattern: z.string(),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.subscriptionMode?.$case === 'assign' && {\n assign: d.subscriptionMode.assign,\n }),\n ...(d.subscriptionMode?.$case === 'subscribe' && {\n subscribe: d.subscriptionMode.subscribe,\n }),\n ...(d.subscriptionMode?.$case === 'subscribePattern' && {\n subscribe_pattern: d.subscriptionMode.subscribePattern,\n }),\n }));\n\nexport const marshalSumFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalTableTriggerSchema: z.ZodType = z.object({});\n\nexport const marshalTimeWindowSchema: z.ZodType = z\n .object({\n windowType: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('tumbling'),\n tumbling: z.lazy(() => marshalTumblingWindowSchema),\n }),\n z.object({\n $case: z.literal('sliding'),\n sliding: z.lazy(() => marshalSlidingWindowSchema),\n }),\n z.object({\n $case: z.literal('rolling'),\n rolling: z.lazy(() => marshalRollingWindowSchema),\n }),\n z.object({\n $case: z.literal('sawtooth'),\n sawtooth: z.lazy(() => marshalSawtoothWindowSchema),\n }),\n ])\n .optional(),\n startTime: z\n .any()\n .transform((d: Temporal.Instant) => d.toString())\n .optional(),\n })\n .transform(d => ({\n ...(d.windowType?.$case === 'tumbling' && {\n tumbling: d.windowType.tumbling,\n }),\n ...(d.windowType?.$case === 'sliding' && {sliding: d.windowType.sliding}),\n ...(d.windowType?.$case === 'rolling' && {rolling: d.windowType.rolling}),\n ...(d.windowType?.$case === 'sawtooth' && {\n sawtooth: d.windowType.sawtooth,\n }),\n start_time: d.startTime,\n }));\n\nexport const marshalTimeseriesColumnSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n }));\n\nexport const marshalTumblingWindowSchema: z.ZodType = z\n .object({\n windowDuration: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n delay: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n offset: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n })\n .transform(d => ({\n window_duration: d.windowDuration,\n delay: d.delay,\n offset: d.offset,\n }));\n\nexport const marshalVarPopFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalVarSampFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nconst aggregationFunctionFieldMaskSchema: FieldMaskSchema = {\n approxCountDistinct: {\n wire: 'approx_count_distinct',\n children: () => approxCountDistinctFunctionFieldMaskSchema,\n },\n approxPercentile: {\n wire: 'approx_percentile',\n children: () => approxPercentileFunctionFieldMaskSchema,\n },\n avg: {wire: 'avg', children: () => avgFunctionFieldMaskSchema},\n countFunction: {\n wire: 'count_function',\n children: () => countFunctionFieldMaskSchema,\n },\n first: {wire: 'first', children: () => firstFunctionFieldMaskSchema},\n firstDistinct: {\n wire: 'first_distinct',\n children: () => firstDistinctFunctionFieldMaskSchema,\n },\n firstN: {wire: 'first_n', children: () => firstNFunctionFieldMaskSchema},\n last: {wire: 'last', children: () => lastFunctionFieldMaskSchema},\n lastDistinct: {\n wire: 'last_distinct',\n children: () => lastDistinctFunctionFieldMaskSchema,\n },\n lastN: {wire: 'last_n', children: () => lastNFunctionFieldMaskSchema},\n max: {wire: 'max', children: () => maxFunctionFieldMaskSchema},\n min: {wire: 'min', children: () => minFunctionFieldMaskSchema},\n stddevPop: {\n wire: 'stddev_pop',\n children: () => stddevPopFunctionFieldMaskSchema,\n },\n stddevSamp: {\n wire: 'stddev_samp',\n children: () => stddevSampFunctionFieldMaskSchema,\n },\n sum: {wire: 'sum', children: () => sumFunctionFieldMaskSchema},\n timeWindow: {wire: 'time_window', children: () => timeWindowFieldMaskSchema},\n varPop: {wire: 'var_pop', children: () => varPopFunctionFieldMaskSchema},\n varSamp: {wire: 'var_samp', children: () => varSampFunctionFieldMaskSchema},\n};\n\nconst approxCountDistinctFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n relativeSd: {wire: 'relative_sd'},\n};\n\nconst approxPercentileFunctionFieldMaskSchema: FieldMaskSchema = {\n accuracy: {wire: 'accuracy'},\n input: {wire: 'input'},\n percentile: {wire: 'percentile'},\n};\n\nconst authConfigFieldMaskSchema: FieldMaskSchema = {\n mtlsConfig: {wire: 'mtls_config', children: () => mtlsConfigFieldMaskSchema},\n ucServiceCredentialName: {wire: 'uc_service_credential_name'},\n};\n\nconst avgFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n\nconst backfillSourceFieldMaskSchema: FieldMaskSchema = {\n deltaTableName: {wire: 'delta_table_name'},\n deltaTableSource: {\n wire: 'delta_table_source',\n children: () => deltaTableSourceFieldMaskSchema,\n },\n};\n\nconst columnSelectionFieldMaskSchema: FieldMaskSchema = {\n column: {wire: 'column'},\n};\n\nconst countFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n\nconst cronScheduleFieldMaskSchema: FieldMaskSchema = {\n cronExpression: {wire: 'cron_expression'},\n};\n\nconst customUdfFieldMaskSchema: FieldMaskSchema = {\n functionPath: {wire: 'function_path'},\n inputBindings: {wire: 'input_bindings'},\n};\n\nconst dataSourceFieldMaskSchema: FieldMaskSchema = {\n deltaTableSource: {\n wire: 'delta_table_source',\n children: () => deltaTableSourceFieldMaskSchema,\n },\n kafkaSource: {\n wire: 'kafka_source',\n children: () => kafkaSourceFieldMaskSchema,\n },\n lateness: {wire: 'lateness', children: () => sourceLatenessFieldMaskSchema},\n requestSource: {\n wire: 'request_source',\n children: () => requestSourceFieldMaskSchema,\n },\n streamSource: {\n wire: 'stream_source',\n children: () => streamSourceFieldMaskSchema,\n },\n};\n\nconst deltaTableSourceFieldMaskSchema: FieldMaskSchema = {\n dataframeSchema: {wire: 'dataframe_schema'},\n filterCondition: {wire: 'filter_condition'},\n fullName: {wire: 'full_name'},\n transformationSql: {wire: 'transformation_sql'},\n};\n\nconst directMtlsConfigFieldMaskSchema: FieldMaskSchema = {\n bootstrapServers: {wire: 'bootstrap_servers'},\n mtlsConfig: {wire: 'mtls_config', children: () => mtlsConfigFieldMaskSchema},\n};\n\nconst directSchemasFieldMaskSchema: FieldMaskSchema = {\n keySchema: {wire: 'key_schema', children: () => schemaConfigFieldMaskSchema},\n payloadSchema: {\n wire: 'payload_schema',\n children: () => schemaConfigFieldMaskSchema,\n },\n};\n\nconst featureFieldMaskSchema: FieldMaskSchema = {\n catalogName: {wire: 'catalog_name'},\n createdAt: {wire: 'created_at'},\n createdBy: {wire: 'created_by'},\n description: {wire: 'description'},\n entities: {wire: 'entities'},\n fullName: {wire: 'full_name'},\n function: {wire: 'function', children: () => functionFieldMaskSchema},\n lineageContext: {\n wire: 'lineage_context',\n children: () => lineageContextFieldMaskSchema,\n },\n name: {wire: 'name'},\n schemaName: {wire: 'schema_name'},\n source: {wire: 'source', children: () => dataSourceFieldMaskSchema},\n timeseriesColumn: {\n wire: 'timeseries_column',\n children: () => timeseriesColumnFieldMaskSchema,\n },\n};\n\nexport function featureFieldMask(...paths: string[]): FieldMask<Feature> {\n return FieldMask.build<Feature>(paths, featureFieldMaskSchema);\n}\n\nconst firstDistinctFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n n: {wire: 'n'},\n};\n\nconst firstFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n\nconst firstNFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n n: {wire: 'n'},\n};\n\nconst flatSchemaFieldMaskSchema: FieldMaskSchema = {\n fields: {wire: 'fields'},\n};\n\nconst functionFieldMaskSchema: FieldMaskSchema = {\n aggregationFunction: {\n wire: 'aggregation_function',\n children: () => aggregationFunctionFieldMaskSchema,\n },\n columnSelection: {\n wire: 'column_selection',\n children: () => columnSelectionFieldMaskSchema,\n },\n customUdf: {wire: 'custom_udf', children: () => customUdfFieldMaskSchema},\n};\n\nconst ingestionConfigFieldMaskSchema: FieldMaskSchema = {\n backfillJobId: {wire: 'backfill_job_id'},\n backfillSource: {\n wire: 'backfill_source',\n children: () => backfillSourceFieldMaskSchema,\n },\n deduplicationColumns: {wire: 'deduplication_columns'},\n ingestionDestination: {\n wire: 'ingestion_destination',\n children: () => ingestionDestinationFieldMaskSchema,\n },\n ingestionJobId: {wire: 'ingestion_job_id'},\n ingestionPipelineId: {wire: 'ingestion_pipeline_id'},\n};\n\nconst ingestionDestinationFieldMaskSchema: FieldMaskSchema = {\n deltaTableName: {wire: 'delta_table_name'},\n};\n\nconst jobContextFieldMaskSchema: FieldMaskSchema = {\n jobId: {wire: 'job_id'},\n jobRunId: {wire: 'job_run_id'},\n};\n\nconst kafkaConfigFieldMaskSchema: FieldMaskSchema = {\n authConfig: {wire: 'auth_config', children: () => authConfigFieldMaskSchema},\n backfillSource: {\n wire: 'backfill_source',\n children: () => backfillSourceFieldMaskSchema,\n },\n bootstrapServers: {wire: 'bootstrap_servers'},\n extraOptions: {wire: 'extra_options'},\n ingestionConfig: {\n wire: 'ingestion_config',\n children: () => ingestionConfigFieldMaskSchema,\n },\n keySchema: {wire: 'key_schema', children: () => schemaConfigFieldMaskSchema},\n name: {wire: 'name'},\n subscriptionMode: {\n wire: 'subscription_mode',\n children: () => subscriptionModeFieldMaskSchema,\n },\n valueSchema: {\n wire: 'value_schema',\n children: () => schemaConfigFieldMaskSchema,\n },\n};\n\nexport function kafkaConfigFieldMask(\n ...paths: string[]\n): FieldMask<KafkaConfig> {\n return FieldMask.build<KafkaConfig>(paths, kafkaConfigFieldMaskSchema);\n}\n\nconst kafkaSourceFieldMaskSchema: FieldMaskSchema = {\n filterCondition: {wire: 'filter_condition'},\n name: {wire: 'name'},\n};\n\nconst kafkaStreamConfigFieldMaskSchema: FieldMaskSchema = {\n extraOptions: {wire: 'extra_options'},\n subscriptionMode: {\n wire: 'subscription_mode',\n children: () => kafkaSubscriptionModeFieldMaskSchema,\n },\n};\n\nconst kafkaSubscriptionModeFieldMaskSchema: FieldMaskSchema = {\n assign: {wire: 'assign'},\n subscribe: {wire: 'subscribe'},\n subscribePattern: {wire: 'subscribe_pattern'},\n};\n\nconst kinesisStreamConfigFieldMaskSchema: FieldMaskSchema = {\n extraOptions: {wire: 'extra_options'},\n streamArns: {\n wire: 'stream_arns',\n children: () => streamArnListFieldMaskSchema,\n },\n streamNames: {\n wire: 'stream_names',\n children: () => streamNameListFieldMaskSchema,\n },\n};\n\nconst lastDistinctFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n n: {wire: 'n'},\n};\n\nconst lastFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n\nconst lastNFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n n: {wire: 'n'},\n};\n\nconst lineageContextFieldMaskSchema: FieldMaskSchema = {\n jobContext: {wire: 'job_context', children: () => jobContextFieldMaskSchema},\n notebookId: {wire: 'notebook_id'},\n};\n\nconst materializedFeatureFieldMaskSchema: FieldMaskSchema = {\n cronScheduleTrigger: {\n wire: 'cron_schedule_trigger',\n children: () => cronScheduleFieldMaskSchema,\n },\n featureName: {wire: 'feature_name'},\n isOnline: {wire: 'is_online'},\n lastMaterializationTime: {wire: 'last_materialization_time'},\n materializedFeatureId: {wire: 'materialized_feature_id'},\n offlineStoreConfig: {\n wire: 'offline_store_config',\n children: () => offlineStoreConfigFieldMaskSchema,\n },\n onlineStoreConfig: {\n wire: 'online_store_config',\n children: () => onlineStoreConfigFieldMaskSchema,\n },\n pipelineScheduleState: {wire: 'pipeline_schedule_state'},\n streamingMode: {\n wire: 'streaming_mode',\n children: () => streamingModeFieldMaskSchema,\n },\n tableName: {wire: 'table_name'},\n tableTrigger: {\n wire: 'table_trigger',\n children: () => tableTriggerFieldMaskSchema,\n },\n};\n\nexport function materializedFeatureFieldMask(\n ...paths: string[]\n): FieldMask<MaterializedFeature> {\n return FieldMask.build<MaterializedFeature>(\n paths,\n materializedFeatureFieldMaskSchema\n );\n}\n\nconst maxFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n\nconst minFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n\nconst mtlsConfigFieldMaskSchema: FieldMaskSchema = {\n disableHostnameVerification: {wire: 'disable_hostname_verification'},\n keyPasswordRef: {\n wire: 'key_password_ref',\n children: () => secretScopeReferenceFieldMaskSchema,\n },\n keystoreLocation: {wire: 'keystore_location'},\n keystorePasswordRef: {\n wire: 'keystore_password_ref',\n children: () => secretScopeReferenceFieldMaskSchema,\n },\n truststoreLocation: {wire: 'truststore_location'},\n truststorePasswordRef: {\n wire: 'truststore_password_ref',\n children: () => secretScopeReferenceFieldMaskSchema,\n },\n};\n\nconst offlineStoreConfigFieldMaskSchema: FieldMaskSchema = {\n catalogName: {wire: 'catalog_name'},\n schemaName: {wire: 'schema_name'},\n tableNamePrefix: {wire: 'table_name_prefix'},\n};\n\nconst onlineStoreConfigFieldMaskSchema: FieldMaskSchema = {\n catalogName: {wire: 'catalog_name'},\n onlineStoreName: {wire: 'online_store_name'},\n schemaName: {wire: 'schema_name'},\n tableNamePrefix: {wire: 'table_name_prefix'},\n};\n\nconst protoSchemaSpecFieldMaskSchema: FieldMaskSchema = {\n messageName: {wire: 'message_name'},\n schemaText: {wire: 'schema_text'},\n};\n\nconst requestSourceFieldMaskSchema: FieldMaskSchema = {\n flatSchema: {wire: 'flat_schema', children: () => flatSchemaFieldMaskSchema},\n};\n\nconst rollingWindowFieldMaskSchema: FieldMaskSchema = {\n delay: {wire: 'delay'},\n windowDuration: {wire: 'window_duration'},\n};\n\nconst sawtoothWindowFieldMaskSchema: FieldMaskSchema = {\n delay: {wire: 'delay'},\n windowDuration: {wire: 'window_duration'},\n};\n\nconst schemaConfigFieldMaskSchema: FieldMaskSchema = {\n avroSchema: {wire: 'avro_schema'},\n jsonSchema: {wire: 'json_schema'},\n protoSchema: {\n wire: 'proto_schema',\n children: () => protoSchemaSpecFieldMaskSchema,\n },\n};\n\nconst schemaLocatorFieldMaskSchema: FieldMaskSchema = {\n confluentSchema: {\n wire: 'confluent_schema',\n children: () => schemaLocator_ConfluentSchemaFieldMaskSchema,\n },\n format: {wire: 'format'},\n};\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.\nconst schemaLocator_ConfluentSchemaFieldMaskSchema: FieldMaskSchema = {\n subject: {wire: 'subject'},\n};\n\nconst schemaRegistryConfigFieldMaskSchema: FieldMaskSchema = {\n apiSecretRef: {\n wire: 'api_secret_ref',\n children: () => secretScopeReferenceFieldMaskSchema,\n },\n keySchemaLocator: {\n wire: 'key_schema_locator',\n children: () => schemaLocatorFieldMaskSchema,\n },\n payloadSchemaLocator: {\n wire: 'payload_schema_locator',\n children: () => schemaLocatorFieldMaskSchema,\n },\n ucConnection: {wire: 'uc_connection'},\n};\n\nconst secretScopeReferenceFieldMaskSchema: FieldMaskSchema = {\n key: {wire: 'key'},\n scope: {wire: 'scope'},\n};\n\nconst slidingWindowFieldMaskSchema: FieldMaskSchema = {\n delay: {wire: 'delay'},\n offset: {wire: 'offset'},\n slideDuration: {wire: 'slide_duration'},\n windowDuration: {wire: 'window_duration'},\n};\n\nconst sourceLatenessFieldMaskSchema: FieldMaskSchema = {\n settlingDelay: {wire: 'settling_delay'},\n};\n\nconst stddevPopFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n\nconst stddevSampFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n\nconst streamFieldMaskSchema: FieldMaskSchema = {\n browseOnly: {wire: 'browse_only'},\n connectionConfig: {\n wire: 'connection_config',\n children: () => streamConnectionConfigFieldMaskSchema,\n },\n createTime: {wire: 'create_time'},\n createdBy: {wire: 'created_by'},\n description: {wire: 'description'},\n ingestionConfig: {\n wire: 'ingestion_config',\n children: () => ingestionConfigFieldMaskSchema,\n },\n name: {wire: 'name'},\n schemaConfig: {\n wire: 'schema_config',\n children: () => streamSchemaConfigFieldMaskSchema,\n },\n sourceConfig: {\n wire: 'source_config',\n children: () => streamSourceConfigFieldMaskSchema,\n },\n updateTime: {wire: 'update_time'},\n updatedBy: {wire: 'updated_by'},\n};\n\nexport function streamFieldMask(...paths: string[]): FieldMask<Stream> {\n return FieldMask.build<Stream>(paths, streamFieldMaskSchema);\n}\n\nconst streamArnListFieldMaskSchema: FieldMaskSchema = {\n arns: {wire: 'arns'},\n};\n\nconst streamConnectionConfigFieldMaskSchema: FieldMaskSchema = {\n directMtlsConfig: {\n wire: 'direct_mtls_config',\n children: () => directMtlsConfigFieldMaskSchema,\n },\n ucConnectionName: {wire: 'uc_connection_name'},\n};\n\nconst streamNameListFieldMaskSchema: FieldMaskSchema = {\n names: {wire: 'names'},\n};\n\nconst streamSchemaConfigFieldMaskSchema: FieldMaskSchema = {\n directSchemas: {\n wire: 'direct_schemas',\n children: () => directSchemasFieldMaskSchema,\n },\n schemaRegistryConfig: {\n wire: 'schema_registry_config',\n children: () => schemaRegistryConfigFieldMaskSchema,\n },\n};\n\nconst streamSourceFieldMaskSchema: FieldMaskSchema = {\n dataframeSchema: {wire: 'dataframe_schema'},\n filterCondition: {wire: 'filter_condition'},\n fullName: {wire: 'full_name'},\n transformationSql: {wire: 'transformation_sql'},\n};\n\nconst streamSourceConfigFieldMaskSchema: FieldMaskSchema = {\n kafkaStreamConfig: {\n wire: 'kafka_stream_config',\n children: () => kafkaStreamConfigFieldMaskSchema,\n },\n kinesisStreamConfig: {\n wire: 'kinesis_stream_config',\n children: () => kinesisStreamConfigFieldMaskSchema,\n },\n};\n\nconst streamingModeFieldMaskSchema: FieldMaskSchema = {\n freshnessTarget: {wire: 'freshness_target'},\n mode: {wire: 'mode'},\n};\n\nconst subscriptionModeFieldMaskSchema: FieldMaskSchema = {\n assign: {wire: 'assign'},\n subscribe: {wire: 'subscribe'},\n subscribePattern: {wire: 'subscribe_pattern'},\n};\n\nconst sumFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n\nconst tableTriggerFieldMaskSchema: FieldMaskSchema = {};\n\nconst timeWindowFieldMaskSchema: FieldMaskSchema = {\n rolling: {wire: 'rolling', children: () => rollingWindowFieldMaskSchema},\n sawtooth: {wire: 'sawtooth', children: () => sawtoothWindowFieldMaskSchema},\n sliding: {wire: 'sliding', children: () => slidingWindowFieldMaskSchema},\n startTime: {wire: 'start_time'},\n tumbling: {wire: 'tumbling', children: () => tumblingWindowFieldMaskSchema},\n};\n\nconst timeseriesColumnFieldMaskSchema: FieldMaskSchema = {\n name: {wire: 'name'},\n};\n\nconst tumblingWindowFieldMaskSchema: FieldMaskSchema = {\n delay: {wire: 'delay'},\n offset: {wire: 'offset'},\n windowDuration: {wire: 'window_duration'},\n};\n\nconst varPopFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n\nconst varSampFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n"],"mappings":"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"}
|
|
1
|
+
{"version":3,"file":"model.js","names":[],"sources":["../../src/v1/model.ts"],"sourcesContent":["// Code generated from API definition by Databricks SDK Generator. DO NOT EDIT.\n\nimport {Temporal} from '@js-temporal/polyfill';\nimport {FieldMask} from '@databricks/sdk-core/wkt';\nimport type {FieldMaskSchema} from '@databricks/sdk-core/wkt';\nimport {z} from 'zod';\n\n/** Error codes returned by Databricks APIs to indicate specific failure conditions. */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const ErrorCode = {\n /**\n * Unknown error. This error generally should not be returned explicitly, but will be used\n * as a fallback if the error enum is missing from the message for some reason.\n *\n * It's assigned tag 0 to follow the best practice from\n * https://developers.google.com/protocol-buffers/docs/style#enums\n *\n * TODO(PLAT-55898): Add custom option to declare HTTP and gRPC mappings.\n * Maps to:\n * - google.rpc.Code: UNKNOWN = 2;\n * - HTTP code: 500 Internal Server Error\n */\n UNKNOWN: 'UNKNOWN',\n /**\n * Internal error. This means that some invariants expected by the underlying system have been\n * broken. This error code is reserved for serious errors, which generally cannot be resolved\n * by the user.\n *\n * Prefer this over all kinds of detailed error messages (e.g IO_ERROR), unless there's some\n * automation that relies on the custom error code.\n *\n * Maps to:\n * - google.rpc.Code: INTERNAL = 13;\n * - HTTP code: 500 Internal Server Error\n */\n INTERNAL_ERROR: 'INTERNAL_ERROR',\n /**\n * The service is currently unavailable. This is most likely a transient condition, which can be\n * corrected by retrying with a backoff. Note that it is not always safe to retry non-idempotent\n * operations.\n *\n * Prefer this over SERVICE_UNDER_MAINTENANCE, WORKSPACE_TEMPORARILY_UNAVAILABLE.\n *\n * See https://docs.google.com/document/d/1FL8p2sbYWqBPL-UvhzI7uXAw4EoLG7Rj6PAOQWZRSOk/edit#\n * for guideline on how to pick this vs RESOURCE_EXHAUSTED.\n *\n * Maps to:\n * - google.rpc.Code: UNAVAILABLE = 14;\n * - HTTP code: 503 Service Unavailable\n */\n TEMPORARILY_UNAVAILABLE: 'TEMPORARILY_UNAVAILABLE',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n * Indicates that an IOException has been internally thrown.\n */\n IO_ERROR: 'IO_ERROR',\n /**\n * The request is invalid. Prefer more specific error code whenever possible.\n * Also see similar recommendation for the google.rpc.Code.FAILED_PRECONDITION.\n *\n * Prefer this error code over MALFORMED_REQUEST, INVALID_STATE, UNPARSEABLE_HTTP_ERROR.\n *\n * Maps to:\n * - google.rpc.Code: FAILED_PRECONDITION = 9;\n * - HTTP code: 400 Bad Request\n */\n BAD_REQUEST: 'BAD_REQUEST',\n /**\n * An external service is unavailable temporarily as it is being updated/re-deployed. Indicates\n * gateway proxy to safely retry the request.\n */\n SERVICE_UNDER_MAINTENANCE: 'SERVICE_UNDER_MAINTENANCE',\n /** A workspace is temporarily unavailable as the workspace is being re-assigned. */\n WORKSPACE_TEMPORARILY_UNAVAILABLE: 'WORKSPACE_TEMPORARILY_UNAVAILABLE',\n /**\n * The deadline expired before the operation could complete. For operations that change the state\n * of the system, this error may be returned even if the operation has completed successfully.\n * For example, a successful response from a server could have been delayed long enough for\n * the deadline to expire. When possible - implementations should make sure further processing of\n * the request is aborted, e.g. by throwing an exception instead of making the RPC request,\n * making the database query, etc.\n *\n * Maps to:\n * - google.rpc.Code: DEADLINE_EXCEEDED = 4;\n * - HTTP code: 504 Gateway Timeout\n */\n DEADLINE_EXCEEDED: 'DEADLINE_EXCEEDED',\n /**\n * The operation was canceled by the caller. An example - client closed the connection without\n * waiting for a response.\n *\n * Maps to:\n * - google.rpc.Code: CANCELLED = 1;\n * - HTTP code: 499 Client Closed Request\n */\n CANCELLED: 'CANCELLED',\n /**\n * The operation is rejected because of either rate limiting or resource quota,\n * such as the client has sent too many requests recently or the client has allocated too many\n * resources.\n *\n * See https://docs.google.com/document/d/1FL8p2sbYWqBPL-UvhzI7uXAw4EoLG7Rj6PAOQWZRSOk/edit#\n * for guideline on how to pick this vs TEMPORARILY_UNAVAILABLE.\n *\n * Maps to:\n * - google.rpc.Code: RESOURCE_EXHAUSTED = 8;\n * - HTTP code: 429 Too Many Requests\n */\n RESOURCE_EXHAUSTED: 'RESOURCE_EXHAUSTED',\n /**\n * The operation was aborted, typically due to a concurrency issue such as a sequencer\n * check failure, transaction abort, or transaction conflict.\n *\n * Maps to:\n * - google.rpc.Code: ABORTED = 10;\n * - HTTP code: 409 Conflict\n */\n ABORTED: 'ABORTED',\n /**\n * Operation was performed on a resource that does not exist,\n * e.g. file or directory was not found.\n *\n * Maps to:\n * - google.rpc.Code: NOT_FOUND = 5;\n * - HTTP code: 404 Not Found\n */\n NOT_FOUND: 'NOT_FOUND',\n /**\n * Operation was rejected due a conflict with an existing resource, e.g. attempted to create\n * file or directory that already exists.\n *\n * Prefer this over RESOURCE_CONFLICT.\n *\n * Maps to:\n * - google.rpc.Code: ALREADY_EXISTS = 6;\n * - HTTP code: 409 Conflict\n */\n ALREADY_EXISTS: 'ALREADY_EXISTS',\n /**\n * The request does not have valid authentication (AuthN) credentials for the operation.\n *\n * Prefer this over CUSTOMER_UNAUTHORIZED, unless you need to keep consistent behavior with legacy\n * code.\n * For authorization (AuthZ) errors use PERMISSION_DENIED.\n *\n * Maps to:\n * - google.rpc.Code: UNAUTHENTICATED = 16;\n * - HTTP code: 401 Unauthorized\n */\n UNAUTHENTICATED: 'UNAUTHENTICATED',\n /**\n * The service is currently unavailable. Please note that the unavailability may or may not be transient.\n * That means if this is a non-transient condition, retrying it does not work. If the unavailability\n * is certainly a transient condition, pleases use `TEMPORARILY_UNAVAILABLE` which signals its transient\n * nature explicitly.\n * An example of this error code’s use case is that when DNS resolution fails, the DNS resolver does\n * not know whether it is because the domain name is completely wrong (non-transient situation) or\n * the domain name is valid but the DNS server does not have an entry for this domain name yet (transient\n * situation). Hence, `UNAVAILABLE` is suitable for this case.\n *\n * Maps to:\n * - google.rpc.Code: UNAVAILABLE = 14;\n * - HTTP code: 503 Service Unavailable\n */\n UNAVAILABLE: 'UNAVAILABLE',\n /**\n * Supplied value for a parameter was invalid (e.g., giving a number for a string parameter).\n *\n * Maps to:\n * - google.rpc.Code: INVALID_ARGUMENT = 3;\n * - HTTP code: 400 Bad Request\n */\n INVALID_PARAMETER_VALUE: 'INVALID_PARAMETER_VALUE',\n /**\n * Indicates that the given API endpoint does not exist. Legacy, when possible - NOT_IMPLEMENTED\n * should be used instead to indicate that API doesn't exist.\n *\n * Maps to:\n * - google.rpc.Code: NOT_FOUND = 5;\n * - HTTP code: 404 Not Found\n */\n ENDPOINT_NOT_FOUND: 'ENDPOINT_NOT_FOUND',\n /** Indicates that the given API request was malformed. */\n MALFORMED_REQUEST: 'MALFORMED_REQUEST',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n * If one or more of the inputs to a given RPC are not in a valid state for the action.\n */\n INVALID_STATE: 'INVALID_STATE',\n /**\n * The caller does not have permission to execute the specified operation.\n * PERMISSION_DENIED must not be used for rejections caused by exhausting some resource,\n * use RESOURCE_EXHAUSTED instead for those errors.\n * PERMISSION_DENIED must not be used if the caller can not be identified,\n * use CUSTOMER_UNAUTHORIZED instead for those errors.\n * This error code does not imply the request is valid or the requested entity exists or\n * satisfies other pre-conditions.\n *\n * Maps to:\n * - google.rpc.Code: PERMISSION_DENIED = 7;\n * - HTTP code: 403 Forbidden\n */\n PERMISSION_DENIED: 'PERMISSION_DENIED',\n /**\n * NOTE: Deprecated due to inconsistent mapping in legacy code, see\n * https://docs.google.com/document/d/17TZIKX_Y39cJMBr333lc-d5dTvvBLSu3DPUyGU5eMJg/edit?disco=AAAAzVGt6FA.\n * Prefer using NOT_FOUND or PERMISSION_DENIED.\n *\n * If a given user/entity is trying to use a feature which has been disabled.\n *\n * Maps to:\n * - google.rpc.Code: NOT_FOUND = 5;\n * - HTTP code: 404 Not Found\n */\n FEATURE_DISABLED: 'FEATURE_DISABLED',\n /**\n * The request does not have valid authentication (AuthN) credentials for the operation.\n *\n * For authentication (AuthN) errors prefer using UNAUTHENTICATED, unless you need to keep\n * consistent behavior with legacy code.\n * For authorization (AuthZ) errors use PERMISSION_DENIED.\n *\n * Important: name is confusing, this error code is for authentication (AuthN) errors, not\n * authorization (AuthZ) errors. It maps to 401 Unauthorized and suffers from the same confusing\n * naming. See https://datatracker.ietf.org/doc/html/rfc7235#section-3.1 - \"[...] status code\n * indicates that the request has not been applied because it lacks valid authentication\n * credentials for the target resource. [...] If the request included authentication credentials,\n * then the 401 response indicates that authorization has been refused for those credentials.\"\n *\n * Also, see https://stackoverflow.com/a/6937030/16352922, it covers it pretty well.\n *\n * Maps to:\n * - google.rpc.Code: UNAUTHENTICATED = 16;\n * - HTTP code: 401 Unauthorized\n */\n CUSTOMER_UNAUTHORIZED: 'CUSTOMER_UNAUTHORIZED',\n /**\n * The operation is rejected because of request rate limit, for example rate limiting applied to\n * users, workspaces, IP addresses, etc.\n *\n * Prefer a more generic RESOURCE_EXHAUSTED for the new use cases.\n *\n * See https://docs.google.com/document/d/1FL8p2sbYWqBPL-UvhzI7uXAw4EoLG7Rj6PAOQWZRSOk/edit#\n * for guideline on the rate limiting vs throttling.\n *\n * Maps to:\n * - google.rpc.Code: RESOURCE_EXHAUSTED = 8;\n * - HTTP code: 429 Too Many Requests\n */\n REQUEST_LIMIT_EXCEEDED: 'REQUEST_LIMIT_EXCEEDED',\n /** Indicates API request was rejected due a conflict with an existing resource. */\n RESOURCE_CONFLICT: 'RESOURCE_CONFLICT',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n * Indicates that the HTTP response cannot be correctly deserialized.\n * This currently is only used in DUST test clients, and not by any real service code.\n */\n UNPARSEABLE_HTTP_ERROR: 'UNPARSEABLE_HTTP_ERROR',\n /**\n * The operation is not implemented or is not supported/enabled in this service.\n *\n * Maps to:\n * - google.rpc.Code: UNIMPLEMENTED = 12;\n * - HTTP code: 501 Not Implemented\n */\n NOT_IMPLEMENTED: 'NOT_IMPLEMENTED',\n /**\n * Unrecoverable data loss or corruption.\n *\n * One of the major use cases is to indicate that server failed to validate the integrity of\n * the request. This error can occur when the checksum specified in the `X-Databricks-Checksum`\n * request header (or trailer) doesn't match the actual request content checksum.\n *\n * Note, in case of the severe corruption that results in a malformed request, the server may\n * send a generic `400 Bad Request` response rather than sending this error code.\n *\n * Maps to:\n * - google.rpc.Code: DATA_LOSS = 15;\n * - HTTP code: 500 Internal Server Error\n */\n DATA_LOSS: 'DATA_LOSS',\n /** If the user attempts to perform an invalid state transition on a shard. */\n INVALID_STATE_TRANSITION: 'INVALID_STATE_TRANSITION',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n * Unable to perform the operation because the shard was locked by some other operation.\n */\n COULD_NOT_ACQUIRE_LOCK: 'COULD_NOT_ACQUIRE_LOCK',\n /**\n * NOTE: Deprecated, prefer using ALREADY_EXISTS.\n * Unlike ALREADY_EXISTS - this maps to HTTP code 400 Bad Request due to legacy reasons,\n * remapping will be a backwards incompatible change.\n *\n * Operation was performed on a resource that already exists.\n */\n RESOURCE_ALREADY_EXISTS: 'RESOURCE_ALREADY_EXISTS',\n /**\n * NOTE: Deprecated, prefer using NOT_FOUND - see the note for the RESOURCE_ALREADY_EXISTS,\n * because this pair of codes is related and RESOURCE_ALREADY_EXISTS has bad mapping to the HTTP\n * codes we added new error codes NOT_FOUND and ALREADY_EXISTS, and recommend to use them instead.\n *\n * Operation was performed on a resource that does not exist.\n */\n RESOURCE_DOES_NOT_EXIST: 'RESOURCE_DOES_NOT_EXIST',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n QUOTA_EXCEEDED: 'QUOTA_EXCEEDED',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n MAX_BLOCK_SIZE_EXCEEDED: 'MAX_BLOCK_SIZE_EXCEEDED',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n MAX_READ_SIZE_EXCEEDED: 'MAX_READ_SIZE_EXCEEDED',\n PARTIAL_DELETE: 'PARTIAL_DELETE',\n MAX_LIST_SIZE_EXCEEDED: 'MAX_LIST_SIZE_EXCEEDED',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n DRY_RUN_FAILED: 'DRY_RUN_FAILED',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n * Cluster request was rejected because it would exceed a resource limit.\n */\n RESOURCE_LIMIT_EXCEEDED: 'RESOURCE_LIMIT_EXCEEDED',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n DIRECTORY_NOT_EMPTY: 'DIRECTORY_NOT_EMPTY',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n DIRECTORY_PROTECTED: 'DIRECTORY_PROTECTED',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n MAX_NOTEBOOK_SIZE_EXCEEDED: 'MAX_NOTEBOOK_SIZE_EXCEEDED',\n MAX_CHILD_NODE_SIZE_EXCEEDED: 'MAX_CHILD_NODE_SIZE_EXCEEDED',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n SEARCH_QUERY_TOO_LONG: 'SEARCH_QUERY_TOO_LONG',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n SEARCH_QUERY_TOO_SHORT: 'SEARCH_QUERY_TOO_SHORT',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n MANAGED_RESOURCE_GROUP_DOES_NOT_EXIST:\n 'MANAGED_RESOURCE_GROUP_DOES_NOT_EXIST',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n PERMISSION_NOT_PROPAGATED: 'PERMISSION_NOT_PROPAGATED',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n DEPLOYMENT_TIMEOUT: 'DEPLOYMENT_TIMEOUT',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n GIT_CONFLICT: 'GIT_CONFLICT',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n GIT_UNKNOWN_REF: 'GIT_UNKNOWN_REF',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n GIT_SENSITIVE_TOKEN_DETECTED: 'GIT_SENSITIVE_TOKEN_DETECTED',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n GIT_URL_NOT_ON_ALLOW_LIST: 'GIT_URL_NOT_ON_ALLOW_LIST',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n GIT_REMOTE_ERROR: 'GIT_REMOTE_ERROR',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n PROJECTS_OPERATION_TIMEOUT: 'PROJECTS_OPERATION_TIMEOUT',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n IPYNB_FILE_IN_REPO: 'IPYNB_FILE_IN_REPO',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n INSECURE_PARTNER_RESPONSE: 'INSECURE_PARTNER_RESPONSE',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n MALFORMED_PARTNER_RESPONSE: 'MALFORMED_PARTNER_RESPONSE',\n METASTORE_DOES_NOT_EXIST: 'METASTORE_DOES_NOT_EXIST',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n DAC_DOES_NOT_EXIST: 'DAC_DOES_NOT_EXIST',\n CATALOG_DOES_NOT_EXIST: 'CATALOG_DOES_NOT_EXIST',\n SCHEMA_DOES_NOT_EXIST: 'SCHEMA_DOES_NOT_EXIST',\n TABLE_DOES_NOT_EXIST: 'TABLE_DOES_NOT_EXIST',\n SHARE_DOES_NOT_EXIST: 'SHARE_DOES_NOT_EXIST',\n RECIPIENT_DOES_NOT_EXIST: 'RECIPIENT_DOES_NOT_EXIST',\n STORAGE_CREDENTIAL_DOES_NOT_EXIST: 'STORAGE_CREDENTIAL_DOES_NOT_EXIST',\n EXTERNAL_LOCATION_DOES_NOT_EXIST: 'EXTERNAL_LOCATION_DOES_NOT_EXIST',\n PRINCIPAL_DOES_NOT_EXIST: 'PRINCIPAL_DOES_NOT_EXIST',\n PROVIDER_DOES_NOT_EXIST: 'PROVIDER_DOES_NOT_EXIST',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n METASTORE_ALREADY_EXISTS: 'METASTORE_ALREADY_EXISTS',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n DAC_ALREADY_EXISTS: 'DAC_ALREADY_EXISTS',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n CATALOG_ALREADY_EXISTS: 'CATALOG_ALREADY_EXISTS',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n SCHEMA_ALREADY_EXISTS: 'SCHEMA_ALREADY_EXISTS',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n TABLE_ALREADY_EXISTS: 'TABLE_ALREADY_EXISTS',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n SHARE_ALREADY_EXISTS: 'SHARE_ALREADY_EXISTS',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n RECIPIENT_ALREADY_EXISTS: 'RECIPIENT_ALREADY_EXISTS',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n STORAGE_CREDENTIAL_ALREADY_EXISTS: 'STORAGE_CREDENTIAL_ALREADY_EXISTS',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n EXTERNAL_LOCATION_ALREADY_EXISTS: 'EXTERNAL_LOCATION_ALREADY_EXISTS',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n PROVIDER_ALREADY_EXISTS: 'PROVIDER_ALREADY_EXISTS',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n CATALOG_NOT_EMPTY: 'CATALOG_NOT_EMPTY',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n SCHEMA_NOT_EMPTY: 'SCHEMA_NOT_EMPTY',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n METASTORE_NOT_EMPTY: 'METASTORE_NOT_EMPTY',\n /**\n * NOTE: Deprecated and kept to maintain backwards compatibility for public APIs that use it,\n * avoid using it in the new APIs, refer error codes listed in the http://go/error-codes.\n */\n PROVIDER_SHARE_NOT_ACCESSIBLE: 'PROVIDER_SHARE_NOT_ACCESSIBLE',\n} as const;\nexport type ErrorCode =\n | (typeof ErrorCode)[keyof typeof ErrorCode]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const FunctionFunctionType = {\n FUNCTION_TYPE_UNSPECIFIED: 'FUNCTION_TYPE_UNSPECIFIED',\n AVG: 'AVG',\n COUNT: 'COUNT',\n SUM: 'SUM',\n MIN: 'MIN',\n MAX: 'MAX',\n FIRST: 'FIRST',\n LAST: 'LAST',\n APPROX_COUNT_DISTINCT: 'APPROX_COUNT_DISTINCT',\n APPROX_PERCENTILE: 'APPROX_PERCENTILE',\n STDDEV_POP: 'STDDEV_POP',\n STDDEV_SAMP: 'STDDEV_SAMP',\n VAR_POP: 'VAR_POP',\n VAR_SAMP: 'VAR_SAMP',\n} as const;\nexport type FunctionFunctionType =\n | (typeof FunctionFunctionType)[keyof typeof FunctionFunctionType]\n | (string & {});\n\n/**\n * Scalar data types for request-time field definitions.\n * Only flat (non-nested) types are supported.\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const ScalarDataType = {\n SCALAR_DATA_TYPE_UNSPECIFIED: 'SCALAR_DATA_TYPE_UNSPECIFIED',\n INTEGER: 'INTEGER',\n FLOAT: 'FLOAT',\n BOOLEAN: 'BOOLEAN',\n STRING: 'STRING',\n DOUBLE: 'DOUBLE',\n LONG: 'LONG',\n TIMESTAMP: 'TIMESTAMP',\n DATE: 'DATE',\n SHORT: 'SHORT',\n BINARY: 'BINARY',\n DECIMAL: 'DECIMAL',\n} as const;\nexport type ScalarDataType =\n | (typeof ScalarDataType)[keyof typeof ScalarDataType]\n | (string & {});\n\n/** Lifecycle state of a backfill. */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const BackfillOperationMetadata_State = {\n /** The backfill state is unspecified. */\n STATE_UNSPECIFIED: 'STATE_UNSPECIFIED',\n /** The backfill is pending. */\n PENDING: 'PENDING',\n /** The backfill is running. */\n RUNNING: 'RUNNING',\n /** The backfill succeeded. */\n SUCCEEDED: 'SUCCEEDED',\n /** The backfill failed. */\n FAILED: 'FAILED',\n /** The backfill was cancelled. */\n CANCELLED: 'CANCELLED',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type BackfillOperationMetadata_State =\n | (typeof BackfillOperationMetadata_State)[keyof typeof BackfillOperationMetadata_State]\n | (string & {});\n\n/** The way a materialization schedule is arrived at. */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const CronSchedule_Mode = {\n /** Default value, not used. Treated as MANUAL. */\n MODE_UNSPECIFIED: 'MODE_UNSPECIFIED',\n /** The schedule is the hand-written cron_expression on this message. */\n MANUAL: 'MANUAL',\n /**\n * The schedule is derived from the time settings of the features being materialized, so the\n * pipeline runs as soon as the data each window needs is expected to have all arrived. The\n * caller leaves cron_expression empty; the derived expression is filled in on the response.\n */\n DERIVED: 'DERIVED',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type CronSchedule_Mode =\n | (typeof CronSchedule_Mode)[keyof typeof CronSchedule_Mode]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const MaterializedFeature_PipelineScheduleState = {\n /** Default value, not used. */\n PIPELINE_SCHEDULE_STATE_UNSPECIFIED: 'PIPELINE_SCHEDULE_STATE_UNSPECIFIED',\n /** Pipeline was configured to run once then stop. */\n SNAPSHOT: 'SNAPSHOT',\n /** Pipeline is actively running and computing features. */\n ACTIVE: 'ACTIVE',\n /** Pipeline is paused and not computing features. */\n PAUSED: 'PAUSED',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type MaterializedFeature_PipelineScheduleState =\n | (typeof MaterializedFeature_PipelineScheduleState)[keyof typeof MaterializedFeature_PipelineScheduleState]\n | (string & {});\n\n/** Lifecycle state of a feature entity purge. */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const PurgeFeatureEntitiesMetadata_State = {\n /** The feature entity purge state is unspecified. */\n STATE_UNSPECIFIED: 'STATE_UNSPECIFIED',\n /** The feature entity purge is pending. */\n PENDING: 'PENDING',\n /** The feature entity purge is running. */\n RUNNING: 'RUNNING',\n /** The feature entity purge succeeded. */\n SUCCEEDED: 'SUCCEEDED',\n /** The feature entity purge failed. */\n FAILED: 'FAILED',\n /** The feature entity purge was cancelled. */\n CANCELLED: 'CANCELLED',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type PurgeFeatureEntitiesMetadata_State =\n | (typeof PurgeFeatureEntitiesMetadata_State)[keyof typeof PurgeFeatureEntitiesMetadata_State]\n | (string & {});\n\n/** Terminal state of a purge for one store type. */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const PurgeFeatureEntitiesResult_State = {\n /** The purge result state is unspecified. */\n STATE_UNSPECIFIED: 'STATE_UNSPECIFIED',\n /** The purge succeeded. */\n SUCCEEDED: 'SUCCEEDED',\n /** The purge failed. */\n FAILED: 'FAILED',\n /** The purge did not apply to this store type for this feature. */\n NOT_APPLICABLE: 'NOT_APPLICABLE',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type PurgeFeatureEntitiesResult_State =\n | (typeof PurgeFeatureEntitiesResult_State)[keyof typeof PurgeFeatureEntitiesResult_State]\n | (string & {});\n\n/** Supported serialization formats for a schema registry schema. */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const SchemaLocator_Format = {\n /** Default value. Format is not set; the request will be rejected. */\n FORMAT_UNSPECIFIED: 'FORMAT_UNSPECIFIED',\n /** Avro-encoded schema. */\n FORMAT_AVRO: 'FORMAT_AVRO',\n /** Protobuf-encoded schema. */\n FORMAT_PROTOBUF: 'FORMAT_PROTOBUF',\n /** JSON-encoded schema. */\n FORMAT_JSON: 'FORMAT_JSON',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type SchemaLocator_Format =\n | (typeof SchemaLocator_Format)[keyof typeof SchemaLocator_Format]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const StreamingMode_StreamingModeType = {\n /** Default value, not used. */\n STREAMING_MODE_TYPE_UNSPECIFIED: 'STREAMING_MODE_TYPE_UNSPECIFIED',\n /**\n * Real-time mode. Ultra-low-latency trigger intended for operational workloads\n * that need responses in milliseconds or sub-second latency.\n */\n STREAMING_MODE_TYPE_RTM: 'STREAMING_MODE_TYPE_RTM',\n /**\n * Micro-batch mode in Structured Streaming. Better suited for ETL and analytics\n * workloads where latency is measured in seconds or minutes and cost efficiency\n * matters more.\n */\n STREAMING_MODE_TYPE_MBM: 'STREAMING_MODE_TYPE_MBM',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type StreamingMode_StreamingModeType =\n | (typeof StreamingMode_StreamingModeType)[keyof typeof StreamingMode_StreamingModeType]\n | (string & {});\n\n/** An aggregation function applied over a time window. */\nexport interface AggregationFunction {\n /** The type of the aggregation function. */\n operation?:\n | {$case: 'avg'; avg: AvgFunction}\n | {$case: 'countFunction'; countFunction: CountFunction}\n | {$case: 'sum'; sum: SumFunction}\n | {$case: 'min'; min: MinFunction}\n | {$case: 'max'; max: MaxFunction}\n | {$case: 'first'; first: FirstFunction}\n | {$case: 'last'; last: LastFunction}\n | {\n $case: 'approxCountDistinct';\n approxCountDistinct: ApproxCountDistinctFunction;\n }\n | {$case: 'approxPercentile'; approxPercentile: ApproxPercentileFunction}\n | {$case: 'stddevPop'; stddevPop: StddevPopFunction}\n | {$case: 'stddevSamp'; stddevSamp: StddevSampFunction}\n | {$case: 'varPop'; varPop: VarPopFunction}\n | {$case: 'varSamp'; varSamp: VarSampFunction}\n | {$case: 'firstN'; firstN: FirstNFunction}\n | {$case: 'lastN'; lastN: LastNFunction}\n | {$case: 'firstDistinct'; firstDistinct: FirstDistinctFunction}\n | {$case: 'lastDistinct'; lastDistinct: LastDistinctFunction}\n | undefined;\n /** The time window over which the aggregation is computed. */\n timeWindow?: TimeWindow | undefined;\n}\n\n/** Databricks Error that is returned by all Databricks APIs. */\nexport interface ApiError {\n errorCode?: ErrorCode | undefined;\n message?: string | undefined;\n stackTrace?: string | undefined;\n details?: Record<string, unknown>[] | undefined;\n}\n\n/** Computes the approximate count of distinct values. */\nexport interface ApproxCountDistinctFunction {\n /** The input column from which the approximate count of distinct values is computed. */\n input?: string | undefined;\n /** The maximum relative standard deviation allowed (default defined by Spark). */\n relativeSd?: number | undefined;\n}\n\n/** Computes the approximate percentile of values. */\nexport interface ApproxPercentileFunction {\n /** The input column from which the approximate percentile is computed. */\n input?: string | undefined;\n /** The percentile value to compute (between 0 and 1). */\n percentile?: number | undefined;\n /** The accuracy parameter (higher is more accurate but slower). */\n accuracy?: bigint | undefined;\n}\n\nexport interface AuthConfig {\n authConfig?:\n | {\n $case: 'ucServiceCredentialName';\n /** Name of the Unity Catalog service credential. This value will be set under the option databricks.serviceCredential */\n ucServiceCredentialName: string;\n }\n | {\n $case: 'mtlsConfig';\n /** Mutual-TLS authentication. See MtlsConfig. */\n mtlsConfig: MtlsConfig;\n }\n | undefined;\n}\n\n/** Computes the average of values. */\nexport interface AvgFunction {\n /**\n * The input column from which the average is computed. For Kafka sources, use dot-prefixed path\n * notation (e.g., \"value.amount\"). For nested fields, the leaf node name is used.\n * Colon-prefixed notation (e.g., \"value:amount\") is supported for backwards\n * compatibility but is deprecated; migrate to dot notation.\n */\n input?: string | undefined;\n}\n\nexport interface BackfillFeaturesRequest {\n /** Full names of the features to backfill. */\n featureFullNames?: string[] | undefined;\n /** Output ranges to backfill. */\n backfillRanges?: BackfillRange[] | undefined;\n /** Idempotency token for the request. */\n requestId?: string | undefined;\n}\n\n/** Result of a completed backfill. */\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface BackfillFeaturesResponse {}\n\n/** Progress and configuration for a backfill. */\nexport interface BackfillOperationMetadata {\n /** Full names of the features targeted by the backfill. */\n featureFullNames?: string[] | undefined;\n /** Output ranges targeted by the backfill. */\n backfillRanges?: BackfillRange[] | undefined;\n /** Current state of the backfill. */\n state?: BackfillOperationMetadata_State | undefined;\n}\n\n/** A time range for a backfill. */\nexport interface BackfillRange {\n /** Start of the backfill range, inclusive. If unset, defaults to the earliest source timestamp of the feature. */\n startTime?: Temporal.Instant | undefined;\n /** End of the backfill range, exclusive. If unset, defaults to the current time. */\n endTime?: Temporal.Instant | undefined;\n}\n\nexport interface BackfillSource {\n backfillSource?:\n | {\n $case: 'deltaTableSource';\n /**\n * Deprecated: Use delta_table_name instead. Kept for backwards compatibility.\n * The Delta table source containing the historical data to backfill.\n * Only the delta table name is used for backfill, other fields are ignored.\n */\n deltaTableSource: DeltaTableSource;\n }\n | {\n $case: 'deltaTableName';\n /** The full three-part name (catalog, schema, name) of the Delta table containing the historical data to backfill. */\n deltaTableName: string;\n }\n | undefined;\n}\n\nexport interface BatchCreateMaterializedFeaturesRequest {\n /** The requests to create materialized features. */\n requests?: CreateMaterializedFeatureRequest[] | undefined;\n}\n\nexport interface BatchCreateMaterializedFeaturesResponse {\n /** The created materialized features with assigned IDs. */\n materializedFeatures?: MaterializedFeature[] | undefined;\n}\n\n/** The request message for `CancelOperation` method. */\nexport interface CancelOperationRequest {\n /** The name of the operation resource to be cancelled. */\n name?: string | undefined;\n}\n\nexport interface ColumnIdentifier {\n /** String representation of the column name using dot-prefixed path notation. */\n variantExprPath?: string | undefined;\n}\n\n/** A ColumnSelection function, equivalent to the LAST() record of an entity over a lifetime window */\nexport interface ColumnSelection {\n /** Column name from source to select as the feature value. */\n column?: string | undefined;\n}\n\nexport interface ContinuousWindow {\n /** The duration of the continuous window (must be positive). */\n windowDuration?: Temporal.Duration | undefined;\n /** The offset of the continuous window (must be non-positive). */\n offset?: Temporal.Duration | undefined;\n}\n\n/** Computes the count of values. */\nexport interface CountFunction {\n /**\n * The input column from which the count is computed. For Kafka sources, use dot-prefixed path\n * notation (e.g., \"value.amount\"). For nested fields, the leaf node name is used.\n * Colon-prefixed notation (e.g., \"value:amount\") is supported for backwards\n * compatibility but is deprecated; migrate to dot notation.\n */\n input?: string | undefined;\n}\n\nexport interface CreateFeatureRequest {\n /** Feature to create. */\n feature?: Feature | undefined;\n}\n\nexport interface CreateKafkaConfigRequest {\n kafkaConfig?: KafkaConfig | undefined;\n}\n\nexport interface CreateMaterializedFeatureRequest {\n /** The materialized feature to create. */\n materializedFeature?: MaterializedFeature | undefined;\n}\n\n/** Create a Stream, a governed UC entity representing an external streaming data source. */\nexport interface CreateStreamRequest {\n /** The Stream to create. */\n stream?: Stream | undefined;\n}\n\n/** A cron-based schedule trigger for the materialization pipeline. */\nexport interface CronSchedule {\n /**\n * The cron expression defining the schedule (e.g., \"0 0 * * *\" for daily at midnight). The\n * schedule is interpreted in the UTC time zone. Required when mode is MANUAL (or unset). Left\n * empty when mode is DERIVED, where the service computes it (aligned to UTC) from the features'\n * window timing and fills it in on the response.\n */\n cronExpression?: string | undefined;\n /** How the schedule is determined. Defaults to MANUAL when unset. */\n mode?: CronSchedule_Mode | undefined;\n}\n\n/**\n * A CustomUdf function applies a registered Unity Catalog function row-wise to\n * source columns, producing a single output column per row.\n */\nexport interface CustomUdf {\n /** Fully qualified 3-part Unity Catalog path of the function to apply. */\n functionPath?: string | undefined;\n /**\n * Binds each UC function parameter to a source column.\n * May be empty for zero-argument functions (e.g. a timestamp generator).\n */\n inputBindings?: InputBinding[] | undefined;\n}\n\n/** Specifies the data source backing a feature. Exactly one source type must be set. */\nexport interface DataSource {\n dataSource?:\n | {\n $case: 'deltaTableSource';\n /** A Delta table data source. */\n deltaTableSource: DeltaTableSource;\n }\n | {\n $case: 'kafkaSource';\n /** A Kafka stream data source. */\n kafkaSource: KafkaSource;\n }\n | {\n $case: 'requestSource';\n /** A request-time data source. */\n requestSource: RequestSource;\n }\n | {\n $case: 'streamSource';\n /** A Stream data source. */\n streamSource: StreamSource;\n }\n | {\n $case: 'featureViewSource';\n /** A data source composed from registered upstream Features. */\n featureViewSource: FeatureViewSource;\n }\n | undefined;\n /**\n * Completeness timing for this Feature's use of the source. This configuration is part of the\n * Feature definition; it does not modify the underlying table or stream.\n */\n lateness?: SourceLateness | undefined;\n}\n\nexport interface DeleteFeatureRequest {\n /** Name of the feature to delete. */\n fullName?: string | undefined;\n}\n\nexport interface DeleteKafkaConfigRequest {\n /** Name of the Kafka config to delete. */\n name?: string | undefined;\n}\n\nexport interface DeleteMaterializedFeatureRequest {\n /** The ID of the materialized feature to delete. */\n materializedFeatureId?: string | undefined;\n}\n\n/** Delete a Stream by its full three-part name (catalog.schema.stream). */\nexport interface DeleteStreamRequest {\n /** Full three-part name (catalog.schema.stream) of the Stream to delete. */\n name?: string | undefined;\n}\n\nexport interface DeltaTableSource {\n /** The full three-part (catalog, schema, table) name of the Delta table. */\n fullName?: string | undefined;\n entityColumns?: string[] | undefined;\n timeseriesColumn?: string | undefined;\n /** Single WHERE clause to filter delta table before applying transformations. Will be row-wise evaluated, so should only include conditionals and projections. */\n filterCondition?: string | undefined;\n /**\n * A single SQL SELECT expression applied after filter_condition.\n * Should contains all the columns needed (eg. \"SELECT *, col_a + col_b AS col_c FROM x.y.z WHERE col_a > 0\" would have `transformation_sql` \"*, col_a + col_b AS col_c\")\n * If transformation_sql is not provided, all columns of the delta table are present in the DataSource dataframe.\n */\n transformationSql?: string | undefined;\n /**\n * Schema of the resulting dataframe after transformations, in Spark StructType JSON format (from df.schema.json()).\n * Required if transformation_sql is specified.\n * Example: {\"type\":\"struct\",\"fields\":[{\"name\":\"col_a\",\"type\":\"integer\",\"nullable\":true,\"metadata\":{}},{\"name\":\"col_c\",\"type\":\"integer\",\"nullable\":true,\"metadata\":{}}]}\n */\n dataframeSchema?: string | undefined;\n}\n\n/**\n * Direct connection configs for mTLS, as Kafka Connections do not support mTLS yet .\n * Temporarily used until UC Kafka Connections gain mTLS support.\n */\nexport interface DirectMtlsConfig {\n /** A comma-separated list of host:port pairs for the Kafka bootstrap servers. */\n bootstrapServers?: string | undefined;\n /** Mutual-TLS authentication configuration. */\n mtlsConfig?: MtlsConfig | undefined;\n}\n\n/**\n * Schema definitions provided directly on the Stream, as opposed to referencing a schema registry.\n * To resolve schemas from a registry instead, use SchemaRegistryConfig.\n */\nexport interface DirectSchemas {\n /**\n * Schema for the message payload. For Kafka, this is the value schema.\n * Unless the platform supports another schema (e.g. keys for Kafka), this must be specified.\n */\n payloadSchema?: SchemaConfig | undefined;\n /**\n * Schema for the message key. This is only used for Kafka streams.\n * For Kafka, at least one of payload_schema or key_schema must be specified.\n */\n keySchema?: SchemaConfig | undefined;\n}\n\nexport interface EntityColumn {\n /**\n * The name of the entity column. For Kafka sources, use dot-prefixed path notation to reference\n * fields within the key or value schema (e.g., \"value.user_id\", \"key.partition_key\"). For nested\n * fields, the leaf node name (e.g., \"user_id\" from \"value.trip_details.user_id\") is what will\n * be present in materialized tables and expected to match at query time.\n * Colon-prefixed notation (e.g., \"value:user_id\") is supported for backwards\n * compatibility but is deprecated; migrate to dot notation.\n */\n name?: string | undefined;\n}\n\nexport interface Feature {\n /**\n * The full three-part name (catalog, schema, name) of the feature. This is the\n * feature's resource identifier; the catalog_name, schema_name, and name fields\n * below are OUTPUT_ONLY decomposed views of this value.\n */\n fullName?: string | undefined;\n /** The data source of the feature. */\n source?: DataSource | undefined;\n inputs?: string[] | undefined;\n /** The function by which the feature is computed. */\n function?: Function | undefined;\n timeWindow?: TimeWindow | undefined;\n /** The description of the feature. */\n description?: string | undefined;\n filterCondition?: string | undefined;\n /**\n * Lineage context information for this feature.\n * WARNING: This field is primarily intended for internal use by <Databricks> systems and\n * is automatically populated when features are created through <Databricks> notebooks or jobs.\n * Users should not manually set this field as incorrect values may lead to inaccurate lineage tracking or unexpected behavior.\n * This field will be set by feature-engineering client and should be left unset by SDK and terraform users.\n */\n lineageContext?: LineageContext | undefined;\n /** The entity columns for the feature, used as aggregation keys and for query-time lookup. */\n entities?: EntityColumn[] | undefined;\n /** Column recording time, used for point-in-time joins, backfills, and aggregations. */\n timeseriesColumn?: TimeseriesColumn | undefined;\n /** Name of parent catalog. */\n catalogName?: string | undefined;\n /** Name of parent schema relative to its parent catalog. */\n schemaName?: string | undefined;\n /** Name of the feature, extracted from the full three-part name (catalog.schema.name). */\n name?: string | undefined;\n /** Time at which this feature was created. */\n createdAt?: Temporal.Instant | undefined;\n /** Username of the feature creator. */\n createdBy?: string | undefined;\n}\n\n/**\n * A reference to one registered upstream Feature. A message rather than a bare name so an\n * upstream can later be pinned more precisely (e.g. by version) without a breaking type change.\n */\nexport interface FeatureReference {\n /** The three-part full name of the upstream Feature. */\n feature?: string | undefined;\n}\n\n/** A data source composed from registered upstream Features. */\nexport interface FeatureViewSource {\n /** The upstream Features this source reads. Must include at least one feature. */\n featureReferences?: FeatureReference[] | undefined;\n}\n\n/**\n * A single field definition within a FlatSchema, specifying the field name and its scalar data type.\n * Does not support nested or complex types (arrays, maps, structs).\n */\nexport interface FieldDefinition {\n /** The name of the field. */\n name?: string | undefined;\n /** The scalar data type of the field. */\n dataType?: ScalarDataType | undefined;\n}\n\n/** Returns the first N distinct values, ordered by the feature's timeseries column. */\nexport interface FirstDistinctFunction {\n /** The input column from which the first N distinct values are returned. */\n input?: string | undefined;\n /** The number of distinct values to return. */\n n?: bigint | undefined;\n}\n\n/** Returns the first value. */\nexport interface FirstFunction {\n /** The input column from which the first value is returned. */\n input?: string | undefined;\n}\n\n/** Returns the first N values, ordered by the feature's timeseries column. */\nexport interface FirstNFunction {\n /** The input column from which the first N values are returned. */\n input?: string | undefined;\n /** The number of values to return. */\n n?: bigint | undefined;\n}\n\n/**\n * A flat (non-nested) schema for request-time fields, defined as an ordered list of field definitions.\n * This schema only supports scalar types.\n */\nexport interface FlatSchema {\n /** The list of fields in this schema. */\n fields?: FieldDefinition[] | undefined;\n}\n\nexport interface Function {\n functionType?: FunctionFunctionType | undefined;\n extraParameters?: FunctionExtraParameter[] | undefined;\n function?:\n | {\n $case: 'aggregationFunction';\n /** An aggregation function applied over a time window. */\n aggregationFunction: AggregationFunction;\n }\n | {\n $case: 'columnSelection';\n /** Selects the latest value of a single column in a data source */\n columnSelection: ColumnSelection;\n }\n | {\n $case: 'customUdf';\n /** Applies a registered Unity Catalog function row-wise to source columns. */\n customUdf: CustomUdf;\n }\n | undefined;\n}\n\nexport interface FunctionExtraParameter {\n /** The name of the parameter. */\n key?: string | undefined;\n /** The value of the parameter. */\n value?: string | undefined;\n}\n\nexport interface GetFeatureRequest {\n /** Name of the feature to get. */\n fullName?: string | undefined;\n}\n\nexport interface GetKafkaConfigRequest {\n /** Name of the Kafka config to get. */\n name?: string | undefined;\n}\n\nexport interface GetMaterializedFeatureRequest {\n /** The ID of the materialized feature. */\n materializedFeatureId?: string | undefined;\n}\n\n/** The request message for `GetOperation` method. */\nexport interface GetOperationRequest {\n /** The name of the operation resource. */\n name?: string | undefined;\n}\n\n/** Get a Stream by its full three-part name (catalog.schema.stream). */\nexport interface GetStreamRequest {\n /** Full three-part name (catalog.schema.stream) of the Stream to get. */\n name?: string | undefined;\n}\n\n/**\n * Configuration for the <Databricks>-managed ingestion pipeline.\n * Groups the ingestion destination (required) and optional backfill source.\n */\nexport interface IngestionConfig {\n /**\n * Destination for the <Databricks>-managed Delta table that holds an offline copy of the streaming data for querying and training.\n * This table contains both 1) forward-filled data from the Stream and 2) backfilled data from the BackfillSource (if provided).\n * This table is created and managed by <Databricks> and is deleted when the Stream is deleted.\n */\n ingestionDestination?: IngestionDestination | undefined;\n /**\n * A user-provided source for backfilling data. Historical data is used when creating a training set from streaming features linked to this Stream.\n * The backfill data stored in this location will be copied into the ingestion table for offline querying and training.\n * The schema for this source must match exactly that of the key and payload schemas specified for this Stream,\n * except that it may omit any columns listed in excluded_columns.\n */\n backfillSource?: BackfillSource | undefined;\n /**\n * Column paths used to identify duplicate rows during ingestion; only one row per\n * distinct combination of these values is kept. Use dot notation for nested fields\n * (e.g. `value.user_id`). Empty list means every column is compared.\n */\n deduplicationColumns?: string[] | undefined;\n /**\n * The ID of the SDP pipeline that continuously copies new events from the streaming source\n * into the ingestion Delta table.\n */\n ingestionPipelineId?: string | undefined;\n /** The ID of the Databricks Job that performs the forward-fill ingestion. */\n ingestionJobId?: bigint | undefined;\n /** The ID of the Databricks Job that performs the historical backfill of the ingestion Delta table. */\n backfillJobId?: bigint | undefined;\n /**\n * Custom tags to associate with this stream's managed ingestion. They are applied to the\n * ingestion pipeline and its forward-fill and backfill jobs, and forwarded to the underlying\n * compute as cluster tags, so ingestion cost can be attributed in the billing system tables.\n * These tags apply only to the managed ingestion compute; they are not applied to the Stream\n * entity itself, and are distinct from any Unity Catalog tags on the Stream.\n * A maximum of 25 tags is supported; keys and values are subject to the same limitations as\n * cluster tags.\n */\n tags?: Record<string, string> | undefined;\n /**\n * The ID of the budget policy used to attribute the serverless compute cost of this stream's\n * managed ingestion. If not specified, a default budget policy may be applied.\n */\n budgetPolicyId?: string | undefined;\n}\n\n/** Destination for the <Databricks>-managed Delta table that holds an offline copy of the streaming data for querying and training. */\nexport interface IngestionDestination {\n ingestionDestination?:\n | {\n $case: 'deltaTableName';\n /** The full three-part name (catalog, schema, name) of the Delta table to be created for ingestion. */\n deltaTableName: string;\n }\n | undefined;\n}\n\n/** Binds a single UC function parameter to a source column. */\nexport interface InputBinding {\n /** Name of the UC function parameter. */\n parameter?: string | undefined;\n /** Source column whose value is passed for this parameter at execution time. */\n column?: string | undefined;\n}\n\nexport interface JobContext {\n /** The job ID where this API invoked. */\n jobId?: bigint | undefined;\n /** The job run ID where this API was invoked. */\n jobRunId?: bigint | undefined;\n}\n\nexport interface KafkaConfig {\n /**\n * Name that uniquely identifies this Kafka config within the metastore. This will be the identifier used from the Feature object to reference these configs for a feature.\n * Can be distinct from topic name.\n */\n name?: string | undefined;\n /** A comma-separated list of host/port pairs pointing to Kafka cluster. */\n bootstrapServers?: string | undefined;\n /** Options to configure which Kafka topics to pull data from. */\n subscriptionMode?: SubscriptionMode | undefined;\n /** Authentication configuration for connection to topics. */\n authConfig?: AuthConfig | undefined;\n /** Schema configuration for extracting message keys from topics. At least one of key_schema and value_schema must be provided. */\n keySchema?: SchemaConfig | undefined;\n /** Schema configuration for extracting message values from topics. At least one of key_schema and value_schema must be provided. */\n valueSchema?: SchemaConfig | undefined;\n /** Catch-all for miscellaneous options. Keys should be source options or Kafka consumer options (kafka.*) */\n extraOptions?: Record<string, string> | undefined;\n /**\n * A user-provided and managed source for backfilling data. Historical data is used when creating a training set from streaming features linked to this Kafka config.\n * In the future, a separate table will be maintained by <Databricks> for forward filling data.\n * The schema for this source must match exactly that of the key and value schemas specified for this Kafka config.\n */\n backfillSource?: BackfillSource | undefined;\n /**\n * Configuration for ingesting Kafka data into a <Databricks>-managed\n * Delta table.\n */\n ingestionConfig?: IngestionConfig | undefined;\n}\n\nexport interface KafkaSource {\n /** 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. */\n name?: string | undefined;\n entityColumnIdentifiers?: ColumnIdentifier[] | undefined;\n timeseriesColumnIdentifier?: ColumnIdentifier | undefined;\n /** The filter condition applied to the source data before aggregation. */\n filterCondition?: string | undefined;\n}\n\n/** Kafka-specific configuration for a Stream. */\nexport interface KafkaStreamConfig {\n /** Options to configure which Kafka topics to pull data from. */\n subscriptionMode?: KafkaSubscriptionMode | undefined;\n /**\n * Optional Kafka source or consumer options, validated against a server-side\n * allowlist at request time. Allowed keys:\n * - `maxOffsetsPerTrigger`\n * - `startingOffsets`\n * - `includeHeaders`\n * - `kafka.request.timeout.ms`\n * - `kafka.session.timeout.ms`\n * - `kafka.max.partition.fetch.bytes`\n * The following keys are ingestion-only and are stripped before being forwarded to the materialization pipeline:\n * - `maxOffsetsPerTrigger`\n * - `startingOffsets`\n * Auth and connection details belong on the parent Stream's `connection_config`, not here.\n */\n extraOptions?: Record<string, string> | undefined;\n}\n\n/** Subscription mode for Kafka topic selection, matching standard Spark Structured Streaming options. */\nexport interface KafkaSubscriptionMode {\n /** These match the settings from https://spark.apache.org/docs/latest/streaming/structured-streaming-kafka-integration.html */\n subscriptionMode?:\n | {\n $case: 'assign';\n /**\n * A JSON string that contains the specific topic-partitions to consume from.\n * For example, for '{\"topicA\":[0,1],\"topicB\":[2,4]}', topicA's 0'th and 1st partitions will be consumed from.\n */\n assign: string;\n }\n | {\n $case: 'subscribe';\n /** A comma-separated list of Kafka topics to read from. For example, 'topicA,topicB,topicC'. */\n subscribe: string;\n }\n | {\n $case: 'subscribePattern';\n /** A regular expression matching topics to subscribe to. For example, 'topic.*' will subscribe to all topics starting with 'topic'. */\n subscribePattern: string;\n }\n | undefined;\n}\n\n/**\n * Kinesis-specific configuration for a Stream. For the underlying connector and its source\n * options, see the <Databricks> documentation on connecting to Amazon Kinesis\n * (https://docs.databricks.com/aws/en/connect/streaming/kinesis).\n */\nexport interface KinesisStreamConfig {\n /**\n * Identifies the Kinesis data stream(s) to read from. Set exactly one of stream_names or\n * stream_arns (identify the streams by name or by ARN, but not both). A single Stream may\n * read from one or more Kinesis streams.\n */\n streamIdentifier?:\n | {\n $case: 'streamNames';\n /** Kinesis stream names to read from. */\n streamNames: StreamNameList;\n }\n | {\n $case: 'streamArns';\n /** Kinesis stream ARNs to read from. */\n streamArns: StreamArnList;\n }\n | undefined;\n /**\n * Optional Kinesis source options, validated against a server-side allowlist at request time.\n * Allowed keys:\n * - `consumerMode`\n * - `consumerNamePrefix`\n * - `maxFetchRate`\n * - `minFetchPeriod`\n * - `maxFetchDuration`\n * - `maxRecordsPerFetch`\n * - `shardsPerTask`\n * - `fetchBufferSize`\n * - `shardFetchInterval`\n * `consumerMode` must be `efo` or `polling` (case-insensitive).\n * `maxRecordsPerFetch` applies only during ingestion and does not affect the materialization pipeline.\n * Auth and connection details belong on the parent Stream's `connection_config`, not here.\n */\n extraOptions?: Record<string, string> | undefined;\n}\n\n/** Returns the last N distinct values, ordered by the feature's timeseries column. */\nexport interface LastDistinctFunction {\n /** The input column from which the last N distinct values are returned. */\n input?: string | undefined;\n /** The number of distinct values to return. */\n n?: bigint | undefined;\n}\n\n/** Returns the last value. */\nexport interface LastFunction {\n /** The input column from which the last value is returned. */\n input?: string | undefined;\n}\n\n/** Returns the last N values, ordered by the feature's timeseries column. */\nexport interface LastNFunction {\n /** The input column from which the last N values are returned. */\n input?: string | undefined;\n /** The number of values to return. */\n n?: bigint | undefined;\n}\n\n/** Lineage context information for tracking where an API was invoked. This will allow us to track lineage, which currently uses caller entity information for use across the Lineage Client and Observability in Lumberjack. */\nexport interface LineageContext {\n /** The notebook ID where this API was invoked. */\n notebookId?: bigint | undefined;\n /** Job context information including job ID and run ID. */\n jobContext?: JobContext | undefined;\n}\n\n/**\n * Request to list features. Listing is always scoped to a single catalog and schema;\n * catalog_name and schema_name are required.\n */\nexport interface ListFeaturesRequest {\n /** Pagination token to go to the next page based on a previous query. */\n pageToken?: string | undefined;\n /** The maximum number of results to return. */\n pageSize?: number | undefined;\n /** Name of parent catalog for features of interest. */\n catalogName?: string | undefined;\n /** Name of parent schema relative to its parent catalog. */\n schemaName?: string | undefined;\n}\n\nexport interface ListFeaturesResponse {\n /** List of features. */\n features?: Feature[] | undefined;\n /** Pagination token to request the next page of results for this query. */\n nextPageToken?: string | undefined;\n}\n\nexport interface ListKafkaConfigsRequest {\n /** Pagination token to go to the next page based on a previous query. */\n pageToken?: string | undefined;\n /** The maximum number of results to return. */\n pageSize?: number | undefined;\n}\n\nexport interface ListKafkaConfigsResponse {\n /** List of Kafka configs. Schemas are not included in the response. */\n kafkaConfigs?: KafkaConfig[] | undefined;\n /** Pagination token to request the next page of results for this query. */\n nextPageToken?: string | undefined;\n}\n\nexport interface ListMaterializedFeaturesRequest {\n /** Filter by feature name. If specified, only materialized features materialized from this feature will be returned. */\n featureName?: string | undefined;\n /** Pagination token to go to the next page based on a previous query. */\n pageToken?: string | undefined;\n /** The maximum number of results to return. Defaults to 100 if not specified. Cannot be greater than 1000. */\n pageSize?: number | undefined;\n}\n\nexport interface ListMaterializedFeaturesResponse {\n /** List of materialized features. */\n materializedFeatures?: MaterializedFeature[] | undefined;\n /** Pagination token to request the next page of results for this query. */\n nextPageToken?: string | undefined;\n}\n\n/**\n * List Streams under a given parent.\n *\n * NOTE: Results are post-filtered by access permission on each stream's ingestion\n * table. This means:\n * - Returned results may be fewer than page_size (including zero)\n * - Page token points to next unfiltered batch, not next filtered batch, and may\n * point to an item that will be filtered out\n * - Callers should paginate until next_page_token is empty to retrieve all\n * accessible streams\n */\nexport interface ListStreamsRequest {\n /** Two-part name (catalog.schema) of the parent under which to list Streams. */\n parent?: string | undefined;\n /** The maximum number of results to return. */\n pageSize?: number | undefined;\n /** Pagination token to go to the next page based on a previous query. */\n pageToken?: string | undefined;\n}\n\n/**\n * Response to a ListStreamsRequest.\n *\n * NOTE: Results are post-filtered by access permission on each stream's ingestion\n * table. This means:\n * - Returned results may be fewer than page_size (including zero)\n * - Page token points to next unfiltered batch, not next filtered batch, and may\n * point to an item that will be filtered out\n * Callers should paginate until next_page_token is empty to retrieve all\n * accessible streams.\n */\nexport interface ListStreamsResponse {\n /** List of Streams. */\n streams?: Stream[] | undefined;\n /** Pagination token to request the next page of results for this query. */\n nextPageToken?: string | undefined;\n}\n\n/** A materialized feature represents a feature that is continuously computed and stored. */\nexport interface MaterializedFeature {\n /** Server-assigned unique identifier for the materialized feature. */\n materializedFeatureId?: string | undefined;\n /** The full name of the feature in Unity Catalog. */\n featureName?: string | undefined;\n destination?:\n | {\n $case: 'offlineStoreConfig';\n /** Destination for writing feature values to an offline Delta table. */\n offlineStoreConfig: OfflineStoreConfig;\n }\n | {\n $case: 'onlineStoreConfig';\n /** Destination for writing feature values to an online Lakebase table. */\n onlineStoreConfig: OnlineStoreConfig;\n }\n | undefined;\n /** The fully qualified Unity Catalog path to the table containing the materialized feature (Delta table or Lakebase table). Output only. */\n tableName?: string | undefined;\n /**\n * The schedule state of the materialization pipeline.\n * Hidden from GraphQL: being deprecated, so not exposed to Catalog Explorer.\n */\n pipelineScheduleState?: MaterializedFeature_PipelineScheduleState | undefined;\n /**\n * The timestamp when the pipeline last ran and updated the materialized feature values.\n * If the pipeline has not run yet, this field will be null.\n */\n lastMaterializationTime?: Temporal.Instant | undefined;\n cronSchedule?: string | undefined;\n /** True if this is an online materialized feature. False if it is an offline materialized feature. */\n isOnline?: boolean | undefined;\n /** The trigger configuration for the materialization pipeline. */\n trigger?:\n | {\n $case: 'cronScheduleTrigger';\n /** A cron-based schedule trigger for the materialization pipeline. */\n cronScheduleTrigger: CronSchedule;\n }\n | {\n $case: 'tableTrigger';\n /** A trigger that fires when the upstream source table changes. */\n tableTrigger: TableTrigger;\n }\n | {\n $case: 'streamingMode';\n /**\n * The Structured Streaming trigger mode used for materialization. Real-time mode (RTM) targets\n * sub-second latency for operational workloads; micro-batch mode (MBM) favors cost efficiency\n * for ETL and analytics workloads.\n */\n streamingMode: StreamingMode;\n }\n | undefined;\n /** Name of the latest backfill operation on this materialized feature. Format: operations/{operation_id}. */\n latestBackfillOperation?: string | undefined;\n /**\n * Custom tags to associate with this materialization. They are applied to the materialization\n * job (for batch features) or pipeline (for streaming features) and forwarded to the underlying\n * compute as cluster tags, so materialization cost can be attributed in the billing system\n * tables. These tags apply only to the materialization compute; they are not applied to the\n * Unity Catalog Feature resource itself, whose tags are managed separately through the Unity\n * Catalog tagging API. A maximum of 25 tags is supported; keys and values are subject to the\n * same limitations as cluster tags.\n */\n tags?: Record<string, string> | undefined;\n /**\n * The ID of the budget policy used to attribute the serverless compute cost of this\n * materialization. If not specified, a default budget policy may be applied.\n */\n budgetPolicyId?: string | undefined;\n}\n\n/** Computes the maximum value. */\nexport interface MaxFunction {\n /** The input column from which the maximum is computed. */\n input?: string | undefined;\n}\n\n/** Computes the minimum value. */\nexport interface MinFunction {\n /** The input column from which the minimum is computed. */\n input?: string | undefined;\n}\n\n/**\n * Mutual-TLS (mTLS) authentication configuration. The keystore (client certificate +\n * private key) and truststore (CAs trusted to verify the broker) live as JKS files on\n * Unity Catalog volumes, with their passwords stored in <Databricks> secret scopes. This\n * matches the SSL setup pattern documented at\n * https://docs.databricks.com/en/connect/streaming/kafka/authentication#use-ssl-to-connect-databricks-to-kafka.\n *\n * At materialization time, the generated PySpark code passes the JKS file paths and\n * resolved passwords through to the Kafka SSL options (kafka.ssl.keystore.location,\n * kafka.ssl.keystore.password, kafka.ssl.key.password, kafka.ssl.truststore.location,\n * kafka.ssl.truststore.password). Passwords are resolved on the Spark cluster via\n * dbutils.secrets.get; this message stores only references, never password values.\n */\nexport interface MtlsConfig {\n /**\n * Unity Catalog volume path to the JKS keystore file containing the client certificate\n * and private key. e.g. \"/Volumes/<catalog>/<schema>/<volume>/client.jks\". The\n * materialization compute must have read permission on this volume.\n */\n keystoreLocation?: string | undefined;\n /** Secret-scope reference for the JKS keystore password. */\n keystorePasswordRef?: SecretScopeReference | undefined;\n /**\n * Secret-scope reference for the private key password. Often the same value as the\n * keystore password (keytool's default), but provided as a separate field because\n * Apache Kafka requires it as a distinct option (kafka.ssl.key.password).\n */\n keyPasswordRef?: SecretScopeReference | undefined;\n /**\n * Unity Catalog volume path to the JKS truststore file containing the CA certificate(s)\n * trusted to verify the Kafka broker's server certificate.\n * e.g. \"/Volumes/<catalog>/<schema>/<volume>/truststore.jks\".\n */\n truststoreLocation?: string | undefined;\n /** Secret-scope reference for the JKS truststore password. */\n truststorePasswordRef?: SecretScopeReference | undefined;\n /**\n * Set to true only when the broker certificate's SAN intentionally does not match\n * the connection endpoint — for example when reaching the cluster through a\n * PrivateLink endpoint whose DNS name is not in the broker certificate. Skipping\n * the hostname check removes a defense against man-in-the-middle attacks; do not\n * enable casually. mTLS client authentication is unaffected by this option.\n *\n * See the Apache Kafka SSL security guide for background on this check:\n * https://kafka.apache.org/42/security/encryption-and-authentication-using-ssl/#host-name-verification\n */\n disableHostnameVerification?: boolean | undefined;\n}\n\n/** Configuration for offline store destination. */\nexport interface OfflineStoreConfig {\n /** The Unity Catalog catalog name. */\n catalogName?: string | undefined;\n /** The Unity Catalog schema name. */\n schemaName?: string | undefined;\n /**\n * Prefix for Unity Catalog table name.\n * The materialized feature will be stored in a table with this prefix and a generated postfix.\n */\n tableNamePrefix?: string | undefined;\n}\n\n/** Configuration for online store destination. */\nexport interface OnlineStoreConfig {\n /**\n * The Unity Catalog catalog name. This name is also used as the Lakebase logical database name.\n * Quoting is handled by the backend where needed, do not pre-quote it.\n */\n catalogName?: string | undefined;\n /**\n * The Unity Catalog schema name. This name is also used as the Lakebase schema name under the database.\n * Quoting is handled by the backend where needed, do not pre-quote it.\n */\n schemaName?: string | undefined;\n /**\n * Prefix for Unity Catalog table name.\n * The materialized feature will be stored in a Lakebase table with this prefix and a generated postfix.\n */\n tableNamePrefix?: string | undefined;\n /** The name of the target online store. */\n onlineStoreName?: string | undefined;\n}\n\n/**\n * This resource represents a long-running operation that is the result of a\n * network API call.\n */\nexport interface Operation {\n /**\n * The server-assigned name, which is only unique within the same service that\n * originally returns it. If you use the default HTTP mapping, the\n * `name` should be a resource name ending with `operations/{unique_id}`.\n */\n name?: string | undefined;\n /**\n * Service-specific metadata associated with the operation. It typically\n * contains progress information and common metadata such as create time.\n * Some services might not provide such metadata.\n */\n metadata?: Record<string, unknown> | undefined;\n /**\n * If the value is `false`, it means the operation is still in progress.\n * If `true`, the operation is completed, and either `error` or `response` is\n * available.\n */\n done?: boolean | undefined;\n /**\n * The operation result, which can be either an `error` or a valid `response`.\n * If `done` == `false`, neither `error` nor `response` is set.\n * If `done` == `true`, exactly one of `error` or `response` can be set.\n * Some services might not provide the result.\n */\n result?:\n | {\n $case: 'error';\n /** The error result of the operation in case of failure or cancellation. */\n error: ApiError;\n }\n | {\n $case: 'response';\n /** The normal, successful response of the operation. */\n response: Record<string, unknown>;\n }\n | undefined;\n}\n\n/**\n * A Protocol Buffer schema paired with the name of the message within it that describes the\n * Kafka payload. A .proto file may declare multiple messages; message_name disambiguates.\n */\nexport interface ProtoSchemaSpec {\n /**\n * The raw .proto file text (proto2 and proto3 syntax supported, see\n * https://protobuf.dev/programming-guides/proto3/ and https://protobuf.dev/programming-guides/proto2/).\n */\n schemaText?: string | undefined;\n /**\n * The fully-qualified name of the message within schema_text that describes the Kafka payload\n * (e.g. \"Event\" or \"com.example.Event\" if schema_text declares a package). Identifies which\n * message is used to decode each Kafka record — a .proto file may declare multiple messages\n * but only one represents the payload. Must not be empty.\n */\n messageName?: string | undefined;\n}\n\n/** Progress and configuration for a feature entity purge. */\nexport interface PurgeFeatureEntitiesMetadata {\n /** Fully qualified names of the features targeted by the purge. */\n features?: string[] | undefined;\n /** Fully qualified name of the Unity Catalog Delta table containing the entity keys to purge. */\n entitiesTable?: string | undefined;\n /** Version of the entities table used by the purge. */\n entitiesTableVersion?: string | undefined;\n /** Time at which the purge operation was created. */\n createTime?: Temporal.Instant | undefined;\n /** Current state of the purge operation. */\n state?: PurgeFeatureEntitiesMetadata_State | undefined;\n /** ID of the job that executes this purge. */\n jobId?: bigint | undefined;\n}\n\n/** Request to purge materialized feature values for entities listed in a Unity Catalog Delta table. */\nexport interface PurgeFeatureEntitiesRequest {\n /**\n * Fully qualified names of the features to purge. At least one nonempty feature name is required.\n * A request may contain at most 10000 features; submit additional features in separate requests.\n * Duplicate features are rejected.\n */\n features?: string[] | undefined;\n /** Source of the entity keys to purge. */\n entities?:\n | {\n $case: 'entitiesTable';\n /**\n * Fully qualified name of the Unity Catalog Delta table containing the entity keys to purge.\n * The table may contain a subset of each feature's entity-key columns. A partial key match\n * deletes all feature rows matching the provided key values. Non-key columns are rejected;\n * null key values are allowed.\n */\n entitiesTable: string;\n }\n | undefined;\n /** Optional UUID4 idempotency token for the request. */\n requestId?: string | undefined;\n}\n\n/** Result of a completed feature entity purge. */\nexport interface PurgeFeatureEntitiesResponse {\n /** Metadata about the purge operation. */\n metadata?: PurgeFeatureEntitiesMetadata | undefined;\n /** Per-feature purge results. */\n results?: PurgeFeatureEntitiesResult[] | undefined;\n /** State of the purge operation. */\n state?: PurgeFeatureEntitiesMetadata_State | undefined;\n /** Operation-level error, if the purge failed outside an individual feature target. */\n error?: ApiError | undefined;\n}\n\n/** Result of purging one feature. */\nexport interface PurgeFeatureEntitiesResult {\n /** Fully qualified name of the feature that was purged. */\n feature?: string | undefined;\n /** State of the offline purge for this feature. */\n offlineState?: PurgeFeatureEntitiesResult_State | undefined;\n /** State of the online purge for this feature. */\n onlineState?: PurgeFeatureEntitiesResult_State | undefined;\n /** Error encountered while purging this feature, if any. */\n error?: ApiError | undefined;\n}\n\n/** A request-time data source whose value is provided at inference time: offline batch scoring or online serving endpoint */\nexport interface RequestSource {\n /** The schema describing the request-time fields. Currently only flat schemas are supported. */\n schema?:\n | {\n $case: 'flatSchema';\n /** A flat schema with scalar-typed fields only. */\n flatSchema: FlatSchema;\n }\n | undefined;\n}\n\n/** A rolling time window with an optional non-negative delay. */\nexport interface RollingWindow {\n /**\n * The duration of the rolling window. Must be positive when set; absent means lifetime\n * (aggregate over the entity's entire history).\n */\n windowDuration?: Temporal.Duration | undefined;\n /**\n * Non-negative analytic lag that evaluates the window this far in the past. Use this for timing\n * variations unrelated to source lateness, such as a 30-day count as of one week ago. If unset,\n * the analytic lag is zero. It composes with source.lateness when both are set.\n */\n delay?: Temporal.Duration | undefined;\n}\n\n/**\n * A sawtooth window served via the hybrid batch + streaming path. The batch pipeline maintains\n * daily partial aggregates for the bulk of the window while the streaming pipeline maintains the\n * most recent day(s), and serving merges them on read. Same field shape as RollingWindow, but a\n * distinct type so the control plane can explicitly identify hybrid (sawtooth) features rather\n * than inferring hybrid behavior from window_duration.\n */\nexport interface SawtoothWindow {\n /**\n * The duration of the window. Must be positive and span more than two days when set, so that both\n * the batch (N-1 day) and stale-path (N-2 day) partial aggregates are well defined. The duration\n * need not be a whole number of days (e.g. 3 days 15 minutes is allowed). Absent means lifetime\n * (aggregate over the entity's entire history).\n */\n windowDuration?: Temporal.Duration | undefined;\n /** Delay is not currently supported for Sawtooth windows. */\n delay?: Temporal.Duration | undefined;\n}\n\nexport interface SchemaConfig {\n schema?:\n | {\n $case: 'jsonSchema';\n /** Schema of the JSON object in standard IETF JSON schema format (https://json-schema.org/). */\n jsonSchema: string;\n }\n | {\n $case: 'avroSchema';\n /** Avro schema in JSON format (https://avro.apache.org/docs/current/specification/). */\n avroSchema: string;\n }\n | {\n $case: 'protoSchema';\n /** Protocol Buffer schema with its payload message name. */\n protoSchema: ProtoSchemaSpec;\n }\n | undefined;\n}\n\n/**\n * Schema locator for one side (payload or key) of a message.\n * Identifies which schema to use in the schema registry and the serialization format.\n */\nexport interface SchemaLocator {\n /** Registry-specific schema locator. */\n registrySchema?:\n | {\n $case: 'confluentSchema';\n /** Confluent Schema Registry schema locator. */\n confluentSchema: SchemaLocator_ConfluentSchema;\n }\n | undefined;\n /** Serialization format for this schema. */\n format?: SchemaLocator_Format | undefined;\n}\n\n/**\n * Confluent Schema Registry schema locator.\n * The value to provide for `subject` depends on the naming strategy configured in your registry:\n * - TopicNameStrategy (default): \"{topic}-key\" or \"{topic}-value\"\n * e.g. for topic \"transactions\" use \"transactions-value\" for the payload and \"transactions-key\" for the key.\n * - RecordNameStrategy: the fully-qualified record name\n * e.g. \"com.example.Payment\" for Avro, the bare message name (without package) for Protobuf,\n * or the `title` field value for JSON.\n * - TopicRecordNameStrategy: \"{topic}-{fully-qualified-record-name}\"\n * e.g. \"transactions-com.example.Payment\".\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.\nexport interface SchemaLocator_ConfluentSchema {\n /** The Confluent schema registry subject name. */\n subject?: string | undefined;\n}\n\n/** Configuration for resolving a Stream's schema from an external schema registry (e.g. Confluent). */\nexport interface SchemaRegistryConfig {\n /** A Schema Registry UC Connection object. */\n ucConnection?: string | undefined;\n /** Reference to the schema registry API secret in a <Databricks> secret scope. */\n apiSecretRef?: SecretScopeReference | undefined;\n /**\n * Schema locator for the message payload. For Kafka this is the value.\n * At least one of payload_schema_locator or key_schema_locator must be set.\n */\n payloadSchemaLocator?: SchemaLocator | undefined;\n /**\n * Schema locator for the message key. Only used for Kafka streams.\n * At least one of payload_schema_locator or key_schema_locator must be set.\n */\n keySchemaLocator?: SchemaLocator | undefined;\n}\n\n/**\n * Reference to an entry in a <Databricks> secret scope. The referenced value is fetched\n * on the Spark cluster at materialization time via dbutils.secrets.get(scope, key).\n */\nexport interface SecretScopeReference {\n /** The <Databricks> secret scope name. */\n scope?: string | undefined;\n /** The key within the scope. */\n key?: string | undefined;\n}\n\nexport interface SlidingWindow {\n /**\n * The duration of the sliding window. Must be positive when set; absent means lifetime\n * (aggregate over the entity's entire history).\n */\n windowDuration?: Temporal.Duration | undefined;\n /** The slide duration (interval by which windows advance, must be positive and less than duration). */\n slideDuration?: Temporal.Duration | undefined;\n /**\n * Non-negative analytic lag that evaluates the window this far in the past. Use this for timing\n * variations unrelated to source lateness, such as a 30-day count as of one week ago. If unset,\n * the analytic lag is zero. It composes with source.lateness when both are set.\n */\n delay?: Temporal.Duration | undefined;\n /**\n * Non-negative phase shift from the default midnight UTC alignment. For example, offset=22h on\n * a 24h slide produces boundaries at 22:00 UTC (17:00 New York in standard time) instead of\n * midnight UTC. If unset, the offset is zero. Must be shorter than slide_duration (and therefore\n * window_duration).\n */\n offset?: Temporal.Duration | undefined;\n}\n\n/** Configures when event-time data from this source is considered complete for a Feature. */\nexport interface SourceLateness {\n /**\n * Non-negative time to wait after a window ends before treating its source data as complete.\n * Training shifts the eligible evaluation time backwards by this duration so it does not join\n * data that would still have been settling online. Materialization waits for the duration to\n * elapse before publishing the window. If unset, source data is considered settled immediately.\n */\n settlingDelay?: Temporal.Duration | undefined;\n}\n\n/** Computes the population standard deviation. */\nexport interface StddevPopFunction {\n /**\n * The input column from which the population standard deviation is computed. For Kafka sources,\n * use dot-prefixed path notation (e.g., \"value.amount\"). For nested fields, the leaf node name is used.\n * Colon-prefixed notation (e.g., \"value:amount\") is supported for backwards\n * compatibility but is deprecated; migrate to dot notation.\n */\n input?: string | undefined;\n}\n\n/** Computes the sample standard deviation. */\nexport interface StddevSampFunction {\n /** The input column from which the sample standard deviation is computed. */\n input?: string | undefined;\n}\n\n/**\n * A Stream is a governed UC entity representing an external streaming data source.\n * The source_config oneof determines the streaming platform source (e.g. Kafka, Kinesis, etc.).\n */\nexport interface Stream {\n /** Full three-part (catalog.schema.stream) name of the stream. */\n name?: string | undefined;\n /** User-provided description. */\n description?: string | undefined;\n /** Source-specific configuration. Determines the streaming platform source. */\n sourceConfig?: StreamSourceConfig | undefined;\n /** Specifies how to connect and authenticate to the stream platform. */\n connectionConfig?: StreamConnectionConfig | undefined;\n /**\n * Schema definitions for the stream, provided either directly on the Stream or\n * resolved from an external schema registry through a UC Connection.\n */\n schemaConfig?: StreamSchemaConfig | undefined;\n /** Configuration for streaming data ingestion: the managed table storing an offline copy of forward fill data and optional historical backfill. */\n ingestionConfig?: IngestionConfig | undefined;\n /**\n * Optional SQL predicate to filter which record types from a streaming channel (e.g. a topic for Kafka) belong to this Stream.\n * Events that do not match are not written to the ingestion table and are not used in materialization.\n * Example: \"value.event_type = 'transaction'\".\n */\n recordTypeFilter?: string | undefined;\n /**\n * Column paths (dot notation, e.g. \"value.email\" for Kafka) to drop.\n * 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\").\n * These columns are not written to the ingestion table and cannot be referenced by any feature.\n * They are dropped from ingestion, backfill, and materialization.\n * 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.\n * A column cannot also be a deduplication column in the ingestion_config.\n */\n excludedColumns?: string[] | undefined;\n /** Time at which this Stream was created. */\n createTime?: Temporal.Instant | undefined;\n /** Username of the Stream creator. */\n createdBy?: string | undefined;\n /** Time at which this Stream was last modified. */\n updateTime?: Temporal.Instant | undefined;\n /** Username of user who last modified the Stream. */\n updatedBy?: string | undefined;\n /**\n * Indicates whether the principal is limited to retrieving metadata for the\n * associated object through the BROWSE privilege when include_browse is enabled in the request.\n */\n browseOnly?: boolean | undefined;\n}\n\n/** A list of Kinesis stream ARNs to read from. */\nexport interface StreamArnList {\n /**\n * Kinesis stream ARNs to read from. For example,\n * 'arn:aws:kinesis:us-west-2:111122223333:stream/stream-a'.\n */\n arns?: string[] | undefined;\n}\n\n/** Specifies how to connect and authenticate to the stream platform. */\nexport interface StreamConnectionConfig {\n connectionConfig?:\n | {\n $case: 'ucConnectionName';\n /**\n * Name of an existing UC Connection for stream platform access.\n * Must be the correct type for the streaming platform (e.g. a Kafka Connection for a Kafka\n * Stream, or a Kinesis Connection for a Kinesis Stream).\n */\n ucConnectionName: string;\n }\n | {\n $case: 'directMtlsConfig';\n /**\n * Direct mTLS configuration for stream platform access. This is only used in the short term until UC Kafka Connections support mTLS .\n * Once UC Kafka Connections support mTLS, this will be deprecated.\n */\n directMtlsConfig: DirectMtlsConfig;\n }\n | undefined;\n}\n\n/** A list of Kinesis stream names to read from. */\nexport interface StreamNameList {\n /** Kinesis stream names to read from. */\n names?: string[] | undefined;\n}\n\n/**\n * Schema definitions for the stream.\n * Feature store supports both direct schemas and schema registries.\n */\nexport interface StreamSchemaConfig {\n schemaConfig?:\n | {\n $case: 'directSchemas';\n /** Schema definitions provided directly on the Stream. */\n directSchemas: DirectSchemas;\n }\n | {\n $case: 'schemaRegistryConfig';\n /** Resolve schemas from an external schema registry. */\n schemaRegistryConfig: SchemaRegistryConfig;\n }\n | undefined;\n}\n\n/** A Stream entity used as a data source for a feature. */\nexport interface StreamSource {\n /** Three-part full name of the Stream (catalog.schema.stream). */\n fullName?: string | undefined;\n /** The filter condition applied to the source data before aggregation. */\n filterCondition?: string | undefined;\n /**\n * The pipeline runs these SQL statements immediately after conversion into\n * the schema specified on the Stream object.\n */\n transformationSql?: string | undefined;\n /**\n * Schema of the resulting dataframe after transformations, in Spark StructType\n * JSON format (from df.schema.json()).\n * Any subsequent functions operate against this dataframe.\n */\n dataframeSchema?: string | undefined;\n}\n\n/** Source-specific configuration. Determines the streaming platform source. */\nexport interface StreamSourceConfig {\n sourceConfig?:\n | {\n $case: 'kafkaStreamConfig';\n /** Configuration for Apache Kafka streams. */\n kafkaStreamConfig: KafkaStreamConfig;\n }\n | {\n $case: 'kinesisStreamConfig';\n /** Configuration for AWS Kinesis Data Streams. */\n kinesisStreamConfig: KinesisStreamConfig;\n }\n | undefined;\n}\n\n/** The streaming mode configuration for a streaming materialization pipeline. */\nexport interface StreamingMode {\n /** The type of streaming mode used by the materialization pipeline. */\n mode?: StreamingMode_StreamingModeType | undefined;\n /**\n * The desired data freshness for feature materialization, expressed as a\n * duration string (e.g. \"1 minute\").\n */\n freshnessTarget?: string | undefined;\n}\n\n/** Deprecated: Use KafkaSubscriptionMode instead. */\nexport interface SubscriptionMode {\n /** These match the settings from https://spark.apache.org/docs/latest/streaming/structured-streaming-kafka-integration.html */\n subscriptionMode?:\n | {\n $case: 'assign';\n /**\n * A JSON string that contains the specific topic-partitions to consume from.\n * For example, for '{\"topicA\":[0,1],\"topicB\":[2,4]}', topicA's 0'th and 1st partitions will be consumed from.\n */\n assign: string;\n }\n | {\n $case: 'subscribe';\n /** A comma-separated list of Kafka topics to read from. For example, 'topicA,topicB,topicC'. */\n subscribe: string;\n }\n | {\n $case: 'subscribePattern';\n /** A regular expression matching topics to subscribe to. For example, 'topic.*' will subscribe to all topics starting with 'topic'. */\n subscribePattern: string;\n }\n | undefined;\n}\n\n/** Computes the sum of values. */\nexport interface SumFunction {\n /**\n * The input column from which the sum is computed. For Kafka sources, use dot-prefixed path\n * notation (e.g., \"value.amount\"). For nested fields, the leaf node name is used.\n * Colon-prefixed notation (e.g., \"value:amount\") is supported for backwards\n * compatibility but is deprecated; migrate to dot notation.\n */\n input?: string | undefined;\n}\n\n/** A trigger that fires when the upstream source table changes. */\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface TableTrigger {}\n\nexport interface TimeWindow {\n windowType?:\n | {$case: 'continuous'; continuous: ContinuousWindow}\n | {$case: 'tumbling'; tumbling: TumblingWindow}\n | {$case: 'sliding'; sliding: SlidingWindow}\n | {$case: 'rolling'; rolling: RollingWindow}\n | {\n $case: 'sawtooth';\n /** A sawtooth window served via the hybrid batch + streaming path. */\n sawtooth: SawtoothWindow;\n }\n | undefined;\n /**\n * Earliest event-time boundary at which the Feature may emit an output. This gates outputs, not\n * the historical inputs read by a window. For example, a 365-day window with\n * start_time=2026-01-01 begins emitting partial-window values on that date instead of waiting\n * for 365 days of data; a lifetime window produces no output before start_time. If unset,\n * tumbling and fixed-duration sliding windows first emit at an offset-aligned boundary after a\n * full window can be formed. If unset, lifetime sliding windows and rolling windows emit as soon as\n * eligible source data exists.\n * Not currently supported for sawtooth windows or for Features with a stream source.\n */\n startTime?: Temporal.Instant | undefined;\n}\n\nexport interface TimeseriesColumn {\n /**\n * The name of the timeseries column. For Kafka sources, use dot-prefixed path notation to\n * reference fields within the key or value schema (e.g., \"value.event_timestamp\"). For nested\n * fields, the leaf node name (e.g., \"event_timestamp\" from \"value.event_details.event_timestamp\")\n * is what will be present in materialized tables and expected to match at query time.\n * Colon-prefixed notation (e.g., \"value:event_timestamp\") is supported for\n * backwards compatibility but is deprecated; migrate to dot notation.\n */\n name?: string | undefined;\n}\n\nexport interface TumblingWindow {\n /** The duration of each tumbling window (non-overlapping, fixed-duration windows). */\n windowDuration?: Temporal.Duration | undefined;\n /**\n * Non-negative analytic lag that evaluates the window this far in the past. Use this for timing\n * variations unrelated to source lateness, such as a 30-day count as of one week ago. If unset,\n * the analytic lag is zero. It composes with source.lateness when both are set.\n */\n delay?: Temporal.Duration | undefined;\n /**\n * Non-negative phase shift from the default midnight UTC alignment. For example, offset=22h on\n * a 24h window produces boundaries at 22:00 UTC (17:00 New York in standard time) instead of\n * midnight UTC. If unset, the offset is zero. Must be shorter than window_duration.\n */\n offset?: Temporal.Duration | undefined;\n}\n\nexport interface UpdateFeatureRequest {\n /** Feature to update. */\n feature?: Feature | undefined;\n /** The list of fields to update. */\n updateMask?: FieldMask<Feature> | undefined;\n}\n\nexport interface UpdateKafkaConfigRequest {\n /** The Kafka config to update. */\n kafkaConfig?: KafkaConfig | undefined;\n /** The list of fields to update. */\n updateMask?: FieldMask<KafkaConfig> | undefined;\n}\n\nexport interface UpdateMaterializedFeatureRequest {\n /** The materialized feature to update. */\n materializedFeature?: MaterializedFeature | undefined;\n /**\n * Provide the materialization feature fields which should be updated.\n * Currently, only the pipeline_state field can be updated.\n */\n updateMask?: FieldMask<MaterializedFeature> | undefined;\n}\n\n/** Update a Stream. Only fields listed in `update_mask` are mutated. */\nexport interface UpdateStreamRequest {\n /** The Stream to update. */\n stream?: Stream | undefined;\n /** The list of fields to update. */\n updateMask?: FieldMask<Stream> | undefined;\n}\n\n/** Computes the population variance. */\nexport interface VarPopFunction {\n /** The input column from which the population variance is computed. */\n input?: string | undefined;\n}\n\n/** Computes the sample variance. */\nexport interface VarSampFunction {\n /** The input column from which the sample variance is computed. */\n input?: string | undefined;\n}\n\nexport const unmarshalAggregationFunctionSchema: z.ZodType<AggregationFunction> =\n z\n .object({\n avg: z.lazy(() => unmarshalAvgFunctionSchema).optional(),\n count_function: z.lazy(() => unmarshalCountFunctionSchema).optional(),\n sum: z.lazy(() => unmarshalSumFunctionSchema).optional(),\n min: z.lazy(() => unmarshalMinFunctionSchema).optional(),\n max: z.lazy(() => unmarshalMaxFunctionSchema).optional(),\n first: z.lazy(() => unmarshalFirstFunctionSchema).optional(),\n last: z.lazy(() => unmarshalLastFunctionSchema).optional(),\n approx_count_distinct: z\n .lazy(() => unmarshalApproxCountDistinctFunctionSchema)\n .optional(),\n approx_percentile: z\n .lazy(() => unmarshalApproxPercentileFunctionSchema)\n .optional(),\n stddev_pop: z.lazy(() => unmarshalStddevPopFunctionSchema).optional(),\n stddev_samp: z.lazy(() => unmarshalStddevSampFunctionSchema).optional(),\n var_pop: z.lazy(() => unmarshalVarPopFunctionSchema).optional(),\n var_samp: z.lazy(() => unmarshalVarSampFunctionSchema).optional(),\n first_n: z.lazy(() => unmarshalFirstNFunctionSchema).optional(),\n last_n: z.lazy(() => unmarshalLastNFunctionSchema).optional(),\n first_distinct: z\n .lazy(() => unmarshalFirstDistinctFunctionSchema)\n .optional(),\n last_distinct: z\n .lazy(() => unmarshalLastDistinctFunctionSchema)\n .optional(),\n time_window: z.lazy(() => unmarshalTimeWindowSchema).optional(),\n })\n .transform(d => ({\n operation:\n d.avg !== undefined\n ? {$case: 'avg' as const, avg: d.avg}\n : d.count_function !== undefined\n ? {$case: 'countFunction' as const, countFunction: d.count_function}\n : d.sum !== undefined\n ? {$case: 'sum' as const, sum: d.sum}\n : d.min !== undefined\n ? {$case: 'min' as const, min: d.min}\n : d.max !== undefined\n ? {$case: 'max' as const, max: d.max}\n : d.first !== undefined\n ? {$case: 'first' as const, first: d.first}\n : d.last !== undefined\n ? {$case: 'last' as const, last: d.last}\n : d.approx_count_distinct !== undefined\n ? {\n $case: 'approxCountDistinct' as const,\n approxCountDistinct: d.approx_count_distinct,\n }\n : d.approx_percentile !== undefined\n ? {\n $case: 'approxPercentile' as const,\n approxPercentile: d.approx_percentile,\n }\n : d.stddev_pop !== undefined\n ? {\n $case: 'stddevPop' as const,\n stddevPop: d.stddev_pop,\n }\n : d.stddev_samp !== undefined\n ? {\n $case: 'stddevSamp' as const,\n stddevSamp: d.stddev_samp,\n }\n : d.var_pop !== undefined\n ? {$case: 'varPop' as const, varPop: d.var_pop}\n : d.var_samp !== undefined\n ? {\n $case: 'varSamp' as const,\n varSamp: d.var_samp,\n }\n : d.first_n !== undefined\n ? {\n $case: 'firstN' as const,\n firstN: d.first_n,\n }\n : d.last_n !== undefined\n ? {\n $case: 'lastN' as const,\n lastN: d.last_n,\n }\n : d.first_distinct !== undefined\n ? {\n $case: 'firstDistinct' as const,\n firstDistinct: d.first_distinct,\n }\n : d.last_distinct !== undefined\n ? {\n $case: 'lastDistinct' as const,\n lastDistinct: d.last_distinct,\n }\n : undefined,\n timeWindow: d.time_window,\n }));\n\nexport const unmarshalApiErrorSchema: z.ZodType<ApiError> = z\n .object({\n error_code: z.string().optional(),\n message: z.string().optional(),\n stack_trace: z.string().optional(),\n details: z.array(z.record(z.string(), z.unknown())).optional(),\n })\n .transform(d => ({\n errorCode: d.error_code,\n message: d.message,\n stackTrace: d.stack_trace,\n details: d.details,\n }));\n\nexport const unmarshalApproxCountDistinctFunctionSchema: z.ZodType<ApproxCountDistinctFunction> =\n z\n .object({\n input: z.string().optional(),\n relative_sd: z.number().optional(),\n })\n .transform(d => ({\n input: d.input,\n relativeSd: d.relative_sd,\n }));\n\nexport const unmarshalApproxPercentileFunctionSchema: z.ZodType<ApproxPercentileFunction> =\n z\n .object({\n input: z.string().optional(),\n percentile: z.number().optional(),\n accuracy: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n })\n .transform(d => ({\n input: d.input,\n percentile: d.percentile,\n accuracy: d.accuracy,\n }));\n\nexport const unmarshalAuthConfigSchema: z.ZodType<AuthConfig> = z\n .object({\n uc_service_credential_name: z.string().optional(),\n mtls_config: z.lazy(() => unmarshalMtlsConfigSchema).optional(),\n })\n .transform(d => ({\n authConfig:\n d.uc_service_credential_name !== undefined\n ? {\n $case: 'ucServiceCredentialName' as const,\n ucServiceCredentialName: d.uc_service_credential_name,\n }\n : d.mtls_config !== undefined\n ? {$case: 'mtlsConfig' as const, mtlsConfig: d.mtls_config}\n : undefined,\n }));\n\nexport const unmarshalAvgFunctionSchema: z.ZodType<AvgFunction> = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const unmarshalBackfillFeaturesResponseSchema: z.ZodType<BackfillFeaturesResponse> =\n z.object({});\n\nexport const unmarshalBackfillOperationMetadataSchema: z.ZodType<BackfillOperationMetadata> =\n z\n .object({\n feature_full_names: z.array(z.string()).optional(),\n backfill_ranges: z\n .array(z.lazy(() => unmarshalBackfillRangeSchema))\n .optional(),\n state: z.string().optional(),\n })\n .transform(d => ({\n featureFullNames: d.feature_full_names,\n backfillRanges: d.backfill_ranges,\n state: d.state,\n }));\n\nexport const unmarshalBackfillRangeSchema: z.ZodType<BackfillRange> = z\n .object({\n start_time: z\n .string()\n .transform(s => Temporal.Instant.from(s))\n .optional(),\n end_time: z\n .string()\n .transform(s => Temporal.Instant.from(s))\n .optional(),\n })\n .transform(d => ({\n startTime: d.start_time,\n endTime: d.end_time,\n }));\n\nexport const unmarshalBackfillSourceSchema: z.ZodType<BackfillSource> = z\n .object({\n delta_table_source: z\n .lazy(() => unmarshalDeltaTableSourceSchema)\n .optional(),\n delta_table_name: z.string().optional(),\n })\n .transform(d => ({\n backfillSource:\n d.delta_table_source !== undefined\n ? {\n $case: 'deltaTableSource' as const,\n deltaTableSource: d.delta_table_source,\n }\n : d.delta_table_name !== undefined\n ? {\n $case: 'deltaTableName' as const,\n deltaTableName: d.delta_table_name,\n }\n : undefined,\n }));\n\nexport const unmarshalBatchCreateMaterializedFeaturesResponseSchema: z.ZodType<BatchCreateMaterializedFeaturesResponse> =\n z\n .object({\n materialized_features: z\n .array(z.lazy(() => unmarshalMaterializedFeatureSchema))\n .optional(),\n })\n .transform(d => ({\n materializedFeatures: d.materialized_features,\n }));\n\nexport const unmarshalColumnIdentifierSchema: z.ZodType<ColumnIdentifier> = z\n .object({\n variant_expr_path: z.string().optional(),\n })\n .transform(d => ({\n variantExprPath: d.variant_expr_path,\n }));\n\nexport const unmarshalColumnSelectionSchema: z.ZodType<ColumnSelection> = z\n .object({\n column: z.string().optional(),\n })\n .transform(d => ({\n column: d.column,\n }));\n\nexport const unmarshalContinuousWindowSchema: z.ZodType<ContinuousWindow> = z\n .object({\n window_duration: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n offset: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n })\n .transform(d => ({\n windowDuration: d.window_duration,\n offset: d.offset,\n }));\n\nexport const unmarshalCountFunctionSchema: z.ZodType<CountFunction> = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const unmarshalCronScheduleSchema: z.ZodType<CronSchedule> = z\n .object({\n cron_expression: z.string().optional(),\n mode: z.string().optional(),\n })\n .transform(d => ({\n cronExpression: d.cron_expression,\n mode: d.mode,\n }));\n\nexport const unmarshalCustomUdfSchema: z.ZodType<CustomUdf> = z\n .object({\n function_path: z.string().optional(),\n input_bindings: z\n .array(z.lazy(() => unmarshalInputBindingSchema))\n .optional(),\n })\n .transform(d => ({\n functionPath: d.function_path,\n inputBindings: d.input_bindings,\n }));\n\nexport const unmarshalDataSourceSchema: z.ZodType<DataSource> = z\n .object({\n delta_table_source: z\n .lazy(() => unmarshalDeltaTableSourceSchema)\n .optional(),\n kafka_source: z.lazy(() => unmarshalKafkaSourceSchema).optional(),\n request_source: z.lazy(() => unmarshalRequestSourceSchema).optional(),\n stream_source: z.lazy(() => unmarshalStreamSourceSchema).optional(),\n feature_view_source: z\n .lazy(() => unmarshalFeatureViewSourceSchema)\n .optional(),\n lateness: z.lazy(() => unmarshalSourceLatenessSchema).optional(),\n })\n .transform(d => ({\n dataSource:\n d.delta_table_source !== undefined\n ? {\n $case: 'deltaTableSource' as const,\n deltaTableSource: d.delta_table_source,\n }\n : d.kafka_source !== undefined\n ? {$case: 'kafkaSource' as const, kafkaSource: d.kafka_source}\n : d.request_source !== undefined\n ? {$case: 'requestSource' as const, requestSource: d.request_source}\n : d.stream_source !== undefined\n ? {$case: 'streamSource' as const, streamSource: d.stream_source}\n : d.feature_view_source !== undefined\n ? {\n $case: 'featureViewSource' as const,\n featureViewSource: d.feature_view_source,\n }\n : undefined,\n lateness: d.lateness,\n }));\n\nexport const unmarshalDeltaTableSourceSchema: z.ZodType<DeltaTableSource> = z\n .object({\n full_name: z.string().optional(),\n entity_columns: z.array(z.string()).optional(),\n timeseries_column: z.string().optional(),\n filter_condition: z.string().optional(),\n transformation_sql: z.string().optional(),\n dataframe_schema: z.string().optional(),\n })\n .transform(d => ({\n fullName: d.full_name,\n entityColumns: d.entity_columns,\n timeseriesColumn: d.timeseries_column,\n filterCondition: d.filter_condition,\n transformationSql: d.transformation_sql,\n dataframeSchema: d.dataframe_schema,\n }));\n\nexport const unmarshalDirectMtlsConfigSchema: z.ZodType<DirectMtlsConfig> = z\n .object({\n bootstrap_servers: z.string().optional(),\n mtls_config: z.lazy(() => unmarshalMtlsConfigSchema).optional(),\n })\n .transform(d => ({\n bootstrapServers: d.bootstrap_servers,\n mtlsConfig: d.mtls_config,\n }));\n\nexport const unmarshalDirectSchemasSchema: z.ZodType<DirectSchemas> = z\n .object({\n payload_schema: z.lazy(() => unmarshalSchemaConfigSchema).optional(),\n key_schema: z.lazy(() => unmarshalSchemaConfigSchema).optional(),\n })\n .transform(d => ({\n payloadSchema: d.payload_schema,\n keySchema: d.key_schema,\n }));\n\nexport const unmarshalEntityColumnSchema: z.ZodType<EntityColumn> = z\n .object({\n name: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n }));\n\nexport const unmarshalFeatureSchema: z.ZodType<Feature> = z\n .object({\n full_name: z.string().optional(),\n source: z.lazy(() => unmarshalDataSourceSchema).optional(),\n inputs: z.array(z.string()).optional(),\n function: z.lazy(() => unmarshalFunctionSchema).optional(),\n time_window: z.lazy(() => unmarshalTimeWindowSchema).optional(),\n description: z.string().optional(),\n filter_condition: z.string().optional(),\n lineage_context: z.lazy(() => unmarshalLineageContextSchema).optional(),\n entities: z.array(z.lazy(() => unmarshalEntityColumnSchema)).optional(),\n timeseries_column: z.lazy(() => unmarshalTimeseriesColumnSchema).optional(),\n catalog_name: z.string().optional(),\n schema_name: z.string().optional(),\n name: z.string().optional(),\n created_at: z\n .string()\n .transform(s => Temporal.Instant.from(s))\n .optional(),\n created_by: z.string().optional(),\n })\n .transform(d => ({\n fullName: d.full_name,\n source: d.source,\n inputs: d.inputs,\n function: d.function,\n timeWindow: d.time_window,\n description: d.description,\n filterCondition: d.filter_condition,\n lineageContext: d.lineage_context,\n entities: d.entities,\n timeseriesColumn: d.timeseries_column,\n catalogName: d.catalog_name,\n schemaName: d.schema_name,\n name: d.name,\n createdAt: d.created_at,\n createdBy: d.created_by,\n }));\n\nexport const unmarshalFeatureReferenceSchema: z.ZodType<FeatureReference> = z\n .object({\n feature: z.string().optional(),\n })\n .transform(d => ({\n feature: d.feature,\n }));\n\nexport const unmarshalFeatureViewSourceSchema: z.ZodType<FeatureViewSource> = z\n .object({\n feature_references: z\n .array(z.lazy(() => unmarshalFeatureReferenceSchema))\n .optional(),\n })\n .transform(d => ({\n featureReferences: d.feature_references,\n }));\n\nexport const unmarshalFieldDefinitionSchema: z.ZodType<FieldDefinition> = z\n .object({\n name: z.string().optional(),\n data_type: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n dataType: d.data_type,\n }));\n\nexport const unmarshalFirstDistinctFunctionSchema: z.ZodType<FirstDistinctFunction> =\n z\n .object({\n input: z.string().optional(),\n n: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n })\n .transform(d => ({\n input: d.input,\n n: d.n,\n }));\n\nexport const unmarshalFirstFunctionSchema: z.ZodType<FirstFunction> = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const unmarshalFirstNFunctionSchema: z.ZodType<FirstNFunction> = z\n .object({\n input: z.string().optional(),\n n: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n })\n .transform(d => ({\n input: d.input,\n n: d.n,\n }));\n\nexport const unmarshalFlatSchemaSchema: z.ZodType<FlatSchema> = z\n .object({\n fields: z.array(z.lazy(() => unmarshalFieldDefinitionSchema)).optional(),\n })\n .transform(d => ({\n fields: d.fields,\n }));\n\nexport const unmarshalFunctionSchema: z.ZodType<Function> = z\n .object({\n function_type: z.string().optional(),\n extra_parameters: z\n .array(z.lazy(() => unmarshalFunctionExtraParameterSchema))\n .optional(),\n aggregation_function: z\n .lazy(() => unmarshalAggregationFunctionSchema)\n .optional(),\n column_selection: z.lazy(() => unmarshalColumnSelectionSchema).optional(),\n custom_udf: z.lazy(() => unmarshalCustomUdfSchema).optional(),\n })\n .transform(d => ({\n functionType: d.function_type,\n extraParameters: d.extra_parameters,\n function:\n d.aggregation_function !== undefined\n ? {\n $case: 'aggregationFunction' as const,\n aggregationFunction: d.aggregation_function,\n }\n : d.column_selection !== undefined\n ? {\n $case: 'columnSelection' as const,\n columnSelection: d.column_selection,\n }\n : d.custom_udf !== undefined\n ? {$case: 'customUdf' as const, customUdf: d.custom_udf}\n : undefined,\n }));\n\nexport const unmarshalFunctionExtraParameterSchema: z.ZodType<FunctionExtraParameter> =\n z\n .object({\n key: z.string().optional(),\n value: z.string().optional(),\n })\n .transform(d => ({\n key: d.key,\n value: d.value,\n }));\n\nexport const unmarshalIngestionConfigSchema: z.ZodType<IngestionConfig> = z\n .object({\n ingestion_destination: z\n .lazy(() => unmarshalIngestionDestinationSchema)\n .optional(),\n backfill_source: z.lazy(() => unmarshalBackfillSourceSchema).optional(),\n deduplication_columns: z.array(z.string()).optional(),\n ingestion_pipeline_id: z.string().optional(),\n ingestion_job_id: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n backfill_job_id: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n tags: z.record(z.string(), z.string()).optional(),\n budget_policy_id: z.string().optional(),\n })\n .transform(d => ({\n ingestionDestination: d.ingestion_destination,\n backfillSource: d.backfill_source,\n deduplicationColumns: d.deduplication_columns,\n ingestionPipelineId: d.ingestion_pipeline_id,\n ingestionJobId: d.ingestion_job_id,\n backfillJobId: d.backfill_job_id,\n tags: d.tags,\n budgetPolicyId: d.budget_policy_id,\n }));\n\nexport const unmarshalIngestionDestinationSchema: z.ZodType<IngestionDestination> =\n z\n .object({\n delta_table_name: z.string().optional(),\n })\n .transform(d => ({\n ingestionDestination:\n d.delta_table_name !== undefined\n ? {\n $case: 'deltaTableName' as const,\n deltaTableName: d.delta_table_name,\n }\n : undefined,\n }));\n\nexport const unmarshalInputBindingSchema: z.ZodType<InputBinding> = z\n .object({\n parameter: z.string().optional(),\n column: z.string().optional(),\n })\n .transform(d => ({\n parameter: d.parameter,\n column: d.column,\n }));\n\nexport const unmarshalJobContextSchema: z.ZodType<JobContext> = z\n .object({\n job_id: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n job_run_id: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n })\n .transform(d => ({\n jobId: d.job_id,\n jobRunId: d.job_run_id,\n }));\n\nexport const unmarshalKafkaConfigSchema: z.ZodType<KafkaConfig> = z\n .object({\n name: z.string().optional(),\n bootstrap_servers: z.string().optional(),\n subscription_mode: z.lazy(() => unmarshalSubscriptionModeSchema).optional(),\n auth_config: z.lazy(() => unmarshalAuthConfigSchema).optional(),\n key_schema: z.lazy(() => unmarshalSchemaConfigSchema).optional(),\n value_schema: z.lazy(() => unmarshalSchemaConfigSchema).optional(),\n extra_options: z.record(z.string(), z.string()).optional(),\n backfill_source: z.lazy(() => unmarshalBackfillSourceSchema).optional(),\n ingestion_config: z.lazy(() => unmarshalIngestionConfigSchema).optional(),\n })\n .transform(d => ({\n name: d.name,\n bootstrapServers: d.bootstrap_servers,\n subscriptionMode: d.subscription_mode,\n authConfig: d.auth_config,\n keySchema: d.key_schema,\n valueSchema: d.value_schema,\n extraOptions: d.extra_options,\n backfillSource: d.backfill_source,\n ingestionConfig: d.ingestion_config,\n }));\n\nexport const unmarshalKafkaSourceSchema: z.ZodType<KafkaSource> = z\n .object({\n name: z.string().optional(),\n entity_column_identifiers: z\n .array(z.lazy(() => unmarshalColumnIdentifierSchema))\n .optional(),\n timeseries_column_identifier: z\n .lazy(() => unmarshalColumnIdentifierSchema)\n .optional(),\n filter_condition: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n entityColumnIdentifiers: d.entity_column_identifiers,\n timeseriesColumnIdentifier: d.timeseries_column_identifier,\n filterCondition: d.filter_condition,\n }));\n\nexport const unmarshalKafkaStreamConfigSchema: z.ZodType<KafkaStreamConfig> = z\n .object({\n subscription_mode: z\n .lazy(() => unmarshalKafkaSubscriptionModeSchema)\n .optional(),\n extra_options: z.record(z.string(), z.string()).optional(),\n })\n .transform(d => ({\n subscriptionMode: d.subscription_mode,\n extraOptions: d.extra_options,\n }));\n\nexport const unmarshalKafkaSubscriptionModeSchema: z.ZodType<KafkaSubscriptionMode> =\n z\n .object({\n assign: z.string().optional(),\n subscribe: z.string().optional(),\n subscribe_pattern: z.string().optional(),\n })\n .transform(d => ({\n subscriptionMode:\n d.assign !== undefined\n ? {$case: 'assign' as const, assign: d.assign}\n : d.subscribe !== undefined\n ? {$case: 'subscribe' as const, subscribe: d.subscribe}\n : d.subscribe_pattern !== undefined\n ? {\n $case: 'subscribePattern' as const,\n subscribePattern: d.subscribe_pattern,\n }\n : undefined,\n }));\n\nexport const unmarshalKinesisStreamConfigSchema: z.ZodType<KinesisStreamConfig> =\n z\n .object({\n stream_names: z.lazy(() => unmarshalStreamNameListSchema).optional(),\n stream_arns: z.lazy(() => unmarshalStreamArnListSchema).optional(),\n extra_options: z.record(z.string(), z.string()).optional(),\n })\n .transform(d => ({\n streamIdentifier:\n d.stream_names !== undefined\n ? {$case: 'streamNames' as const, streamNames: d.stream_names}\n : d.stream_arns !== undefined\n ? {$case: 'streamArns' as const, streamArns: d.stream_arns}\n : undefined,\n extraOptions: d.extra_options,\n }));\n\nexport const unmarshalLastDistinctFunctionSchema: z.ZodType<LastDistinctFunction> =\n z\n .object({\n input: z.string().optional(),\n n: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n })\n .transform(d => ({\n input: d.input,\n n: d.n,\n }));\n\nexport const unmarshalLastFunctionSchema: z.ZodType<LastFunction> = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const unmarshalLastNFunctionSchema: z.ZodType<LastNFunction> = z\n .object({\n input: z.string().optional(),\n n: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n })\n .transform(d => ({\n input: d.input,\n n: d.n,\n }));\n\nexport const unmarshalLineageContextSchema: z.ZodType<LineageContext> = z\n .object({\n notebook_id: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n job_context: z.lazy(() => unmarshalJobContextSchema).optional(),\n })\n .transform(d => ({\n notebookId: d.notebook_id,\n jobContext: d.job_context,\n }));\n\nexport const unmarshalListFeaturesResponseSchema: z.ZodType<ListFeaturesResponse> =\n z\n .object({\n features: z.array(z.lazy(() => unmarshalFeatureSchema)).optional(),\n next_page_token: z.string().optional(),\n })\n .transform(d => ({\n features: d.features,\n nextPageToken: d.next_page_token,\n }));\n\nexport const unmarshalListKafkaConfigsResponseSchema: z.ZodType<ListKafkaConfigsResponse> =\n z\n .object({\n kafka_configs: z\n .array(z.lazy(() => unmarshalKafkaConfigSchema))\n .optional(),\n next_page_token: z.string().optional(),\n })\n .transform(d => ({\n kafkaConfigs: d.kafka_configs,\n nextPageToken: d.next_page_token,\n }));\n\nexport const unmarshalListMaterializedFeaturesResponseSchema: z.ZodType<ListMaterializedFeaturesResponse> =\n z\n .object({\n materialized_features: z\n .array(z.lazy(() => unmarshalMaterializedFeatureSchema))\n .optional(),\n next_page_token: z.string().optional(),\n })\n .transform(d => ({\n materializedFeatures: d.materialized_features,\n nextPageToken: d.next_page_token,\n }));\n\nexport const unmarshalListStreamsResponseSchema: z.ZodType<ListStreamsResponse> =\n z\n .object({\n streams: z.array(z.lazy(() => unmarshalStreamSchema)).optional(),\n next_page_token: z.string().optional(),\n })\n .transform(d => ({\n streams: d.streams,\n nextPageToken: d.next_page_token,\n }));\n\nexport const unmarshalMaterializedFeatureSchema: z.ZodType<MaterializedFeature> =\n z\n .object({\n materialized_feature_id: z.string().optional(),\n feature_name: z.string().optional(),\n offline_store_config: z\n .lazy(() => unmarshalOfflineStoreConfigSchema)\n .optional(),\n online_store_config: z\n .lazy(() => unmarshalOnlineStoreConfigSchema)\n .optional(),\n table_name: z.string().optional(),\n pipeline_schedule_state: z.string().optional(),\n last_materialization_time: z\n .string()\n .transform(s => Temporal.Instant.from(s))\n .optional(),\n cron_schedule: z.string().optional(),\n is_online: z.boolean().optional(),\n cron_schedule_trigger: z\n .lazy(() => unmarshalCronScheduleSchema)\n .optional(),\n table_trigger: z.lazy(() => unmarshalTableTriggerSchema).optional(),\n streaming_mode: z.lazy(() => unmarshalStreamingModeSchema).optional(),\n latest_backfill_operation: z.string().optional(),\n tags: z.record(z.string(), z.string()).optional(),\n budget_policy_id: z.string().optional(),\n })\n .transform(d => ({\n materializedFeatureId: d.materialized_feature_id,\n featureName: d.feature_name,\n destination:\n d.offline_store_config !== undefined\n ? {\n $case: 'offlineStoreConfig' as const,\n offlineStoreConfig: d.offline_store_config,\n }\n : d.online_store_config !== undefined\n ? {\n $case: 'onlineStoreConfig' as const,\n onlineStoreConfig: d.online_store_config,\n }\n : undefined,\n tableName: d.table_name,\n pipelineScheduleState: d.pipeline_schedule_state,\n lastMaterializationTime: d.last_materialization_time,\n cronSchedule: d.cron_schedule,\n isOnline: d.is_online,\n trigger:\n d.cron_schedule_trigger !== undefined\n ? {\n $case: 'cronScheduleTrigger' as const,\n cronScheduleTrigger: d.cron_schedule_trigger,\n }\n : d.table_trigger !== undefined\n ? {$case: 'tableTrigger' as const, tableTrigger: d.table_trigger}\n : d.streaming_mode !== undefined\n ? {\n $case: 'streamingMode' as const,\n streamingMode: d.streaming_mode,\n }\n : undefined,\n latestBackfillOperation: d.latest_backfill_operation,\n tags: d.tags,\n budgetPolicyId: d.budget_policy_id,\n }));\n\nexport const unmarshalMaxFunctionSchema: z.ZodType<MaxFunction> = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const unmarshalMinFunctionSchema: z.ZodType<MinFunction> = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const unmarshalMtlsConfigSchema: z.ZodType<MtlsConfig> = z\n .object({\n keystore_location: z.string().optional(),\n keystore_password_ref: z\n .lazy(() => unmarshalSecretScopeReferenceSchema)\n .optional(),\n key_password_ref: z\n .lazy(() => unmarshalSecretScopeReferenceSchema)\n .optional(),\n truststore_location: z.string().optional(),\n truststore_password_ref: z\n .lazy(() => unmarshalSecretScopeReferenceSchema)\n .optional(),\n disable_hostname_verification: z.boolean().optional(),\n })\n .transform(d => ({\n keystoreLocation: d.keystore_location,\n keystorePasswordRef: d.keystore_password_ref,\n keyPasswordRef: d.key_password_ref,\n truststoreLocation: d.truststore_location,\n truststorePasswordRef: d.truststore_password_ref,\n disableHostnameVerification: d.disable_hostname_verification,\n }));\n\nexport const unmarshalOfflineStoreConfigSchema: z.ZodType<OfflineStoreConfig> =\n z\n .object({\n catalog_name: z.string().optional(),\n schema_name: z.string().optional(),\n table_name_prefix: z.string().optional(),\n })\n .transform(d => ({\n catalogName: d.catalog_name,\n schemaName: d.schema_name,\n tableNamePrefix: d.table_name_prefix,\n }));\n\nexport const unmarshalOnlineStoreConfigSchema: z.ZodType<OnlineStoreConfig> = z\n .object({\n catalog_name: z.string().optional(),\n schema_name: z.string().optional(),\n table_name_prefix: z.string().optional(),\n online_store_name: z.string().optional(),\n })\n .transform(d => ({\n catalogName: d.catalog_name,\n schemaName: d.schema_name,\n tableNamePrefix: d.table_name_prefix,\n onlineStoreName: d.online_store_name,\n }));\n\nexport const unmarshalOperationSchema: z.ZodType<Operation> = z\n .object({\n name: z.string().optional(),\n metadata: z.record(z.string(), z.unknown()).optional(),\n done: z.boolean().optional(),\n error: z.lazy(() => unmarshalApiErrorSchema).optional(),\n response: z.record(z.string(), z.unknown()).optional(),\n })\n .transform(d => ({\n name: d.name,\n metadata: d.metadata,\n done: d.done,\n result:\n d.error !== undefined\n ? {$case: 'error' as const, error: d.error}\n : d.response !== undefined\n ? {$case: 'response' as const, response: d.response}\n : undefined,\n }));\n\nexport const unmarshalProtoSchemaSpecSchema: z.ZodType<ProtoSchemaSpec> = z\n .object({\n schema_text: z.string().optional(),\n message_name: z.string().optional(),\n })\n .transform(d => ({\n schemaText: d.schema_text,\n messageName: d.message_name,\n }));\n\nexport const unmarshalPurgeFeatureEntitiesMetadataSchema: z.ZodType<PurgeFeatureEntitiesMetadata> =\n z\n .object({\n features: z.array(z.string()).optional(),\n entities_table: z.string().optional(),\n entities_table_version: z.string().optional(),\n create_time: z\n .string()\n .transform(s => Temporal.Instant.from(s))\n .optional(),\n state: z.string().optional(),\n job_id: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n })\n .transform(d => ({\n features: d.features,\n entitiesTable: d.entities_table,\n entitiesTableVersion: d.entities_table_version,\n createTime: d.create_time,\n state: d.state,\n jobId: d.job_id,\n }));\n\nexport const unmarshalPurgeFeatureEntitiesResponseSchema: z.ZodType<PurgeFeatureEntitiesResponse> =\n z\n .object({\n metadata: z\n .lazy(() => unmarshalPurgeFeatureEntitiesMetadataSchema)\n .optional(),\n results: z\n .array(z.lazy(() => unmarshalPurgeFeatureEntitiesResultSchema))\n .optional(),\n state: z.string().optional(),\n error: z.lazy(() => unmarshalApiErrorSchema).optional(),\n })\n .transform(d => ({\n metadata: d.metadata,\n results: d.results,\n state: d.state,\n error: d.error,\n }));\n\nexport const unmarshalPurgeFeatureEntitiesResultSchema: z.ZodType<PurgeFeatureEntitiesResult> =\n z\n .object({\n feature: z.string().optional(),\n offline_state: z.string().optional(),\n online_state: z.string().optional(),\n error: z.lazy(() => unmarshalApiErrorSchema).optional(),\n })\n .transform(d => ({\n feature: d.feature,\n offlineState: d.offline_state,\n onlineState: d.online_state,\n error: d.error,\n }));\n\nexport const unmarshalRequestSourceSchema: z.ZodType<RequestSource> = z\n .object({\n flat_schema: z.lazy(() => unmarshalFlatSchemaSchema).optional(),\n })\n .transform(d => ({\n schema:\n d.flat_schema !== undefined\n ? {$case: 'flatSchema' as const, flatSchema: d.flat_schema}\n : undefined,\n }));\n\nexport const unmarshalRollingWindowSchema: z.ZodType<RollingWindow> = z\n .object({\n window_duration: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n delay: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n })\n .transform(d => ({\n windowDuration: d.window_duration,\n delay: d.delay,\n }));\n\nexport const unmarshalSawtoothWindowSchema: z.ZodType<SawtoothWindow> = z\n .object({\n window_duration: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n delay: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n })\n .transform(d => ({\n windowDuration: d.window_duration,\n delay: d.delay,\n }));\n\nexport const unmarshalSchemaConfigSchema: z.ZodType<SchemaConfig> = z\n .object({\n json_schema: z.string().optional(),\n avro_schema: z.string().optional(),\n proto_schema: z.lazy(() => unmarshalProtoSchemaSpecSchema).optional(),\n })\n .transform(d => ({\n schema:\n d.json_schema !== undefined\n ? {$case: 'jsonSchema' as const, jsonSchema: d.json_schema}\n : d.avro_schema !== undefined\n ? {$case: 'avroSchema' as const, avroSchema: d.avro_schema}\n : d.proto_schema !== undefined\n ? {$case: 'protoSchema' as const, protoSchema: d.proto_schema}\n : undefined,\n }));\n\nexport const unmarshalSchemaLocatorSchema: z.ZodType<SchemaLocator> = z\n .object({\n confluent_schema: z\n .lazy(() => unmarshalSchemaLocator_ConfluentSchemaSchema)\n .optional(),\n format: z.string().optional(),\n })\n .transform(d => ({\n registrySchema:\n d.confluent_schema !== undefined\n ? {\n $case: 'confluentSchema' as const,\n confluentSchema: d.confluent_schema,\n }\n : undefined,\n format: d.format,\n }));\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.\nexport const unmarshalSchemaLocator_ConfluentSchemaSchema: z.ZodType<SchemaLocator_ConfluentSchema> =\n z\n .object({\n subject: z.string().optional(),\n })\n .transform(d => ({\n subject: d.subject,\n }));\n\nexport const unmarshalSchemaRegistryConfigSchema: z.ZodType<SchemaRegistryConfig> =\n z\n .object({\n uc_connection: z.string().optional(),\n api_secret_ref: z\n .lazy(() => unmarshalSecretScopeReferenceSchema)\n .optional(),\n payload_schema_locator: z\n .lazy(() => unmarshalSchemaLocatorSchema)\n .optional(),\n key_schema_locator: z.lazy(() => unmarshalSchemaLocatorSchema).optional(),\n })\n .transform(d => ({\n ucConnection: d.uc_connection,\n apiSecretRef: d.api_secret_ref,\n payloadSchemaLocator: d.payload_schema_locator,\n keySchemaLocator: d.key_schema_locator,\n }));\n\nexport const unmarshalSecretScopeReferenceSchema: z.ZodType<SecretScopeReference> =\n z\n .object({\n scope: z.string().optional(),\n key: z.string().optional(),\n })\n .transform(d => ({\n scope: d.scope,\n key: d.key,\n }));\n\nexport const unmarshalSlidingWindowSchema: z.ZodType<SlidingWindow> = z\n .object({\n window_duration: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n slide_duration: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n delay: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n offset: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n })\n .transform(d => ({\n windowDuration: d.window_duration,\n slideDuration: d.slide_duration,\n delay: d.delay,\n offset: d.offset,\n }));\n\nexport const unmarshalSourceLatenessSchema: z.ZodType<SourceLateness> = z\n .object({\n settling_delay: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n })\n .transform(d => ({\n settlingDelay: d.settling_delay,\n }));\n\nexport const unmarshalStddevPopFunctionSchema: z.ZodType<StddevPopFunction> = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const unmarshalStddevSampFunctionSchema: z.ZodType<StddevSampFunction> =\n z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const unmarshalStreamSchema: z.ZodType<Stream> = z\n .object({\n name: z.string().optional(),\n description: z.string().optional(),\n source_config: z.lazy(() => unmarshalStreamSourceConfigSchema).optional(),\n connection_config: z\n .lazy(() => unmarshalStreamConnectionConfigSchema)\n .optional(),\n schema_config: z.lazy(() => unmarshalStreamSchemaConfigSchema).optional(),\n ingestion_config: z.lazy(() => unmarshalIngestionConfigSchema).optional(),\n record_type_filter: z.string().optional(),\n excluded_columns: z.array(z.string()).optional(),\n create_time: z\n .string()\n .transform(s => Temporal.Instant.from(s))\n .optional(),\n created_by: z.string().optional(),\n update_time: z\n .string()\n .transform(s => Temporal.Instant.from(s))\n .optional(),\n updated_by: z.string().optional(),\n browse_only: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n description: d.description,\n sourceConfig: d.source_config,\n connectionConfig: d.connection_config,\n schemaConfig: d.schema_config,\n ingestionConfig: d.ingestion_config,\n recordTypeFilter: d.record_type_filter,\n excludedColumns: d.excluded_columns,\n createTime: d.create_time,\n createdBy: d.created_by,\n updateTime: d.update_time,\n updatedBy: d.updated_by,\n browseOnly: d.browse_only,\n }));\n\nexport const unmarshalStreamArnListSchema: z.ZodType<StreamArnList> = z\n .object({\n arns: z.array(z.string()).optional(),\n })\n .transform(d => ({\n arns: d.arns,\n }));\n\nexport const unmarshalStreamConnectionConfigSchema: z.ZodType<StreamConnectionConfig> =\n z\n .object({\n uc_connection_name: z.string().optional(),\n direct_mtls_config: z\n .lazy(() => unmarshalDirectMtlsConfigSchema)\n .optional(),\n })\n .transform(d => ({\n connectionConfig:\n d.uc_connection_name !== undefined\n ? {\n $case: 'ucConnectionName' as const,\n ucConnectionName: d.uc_connection_name,\n }\n : d.direct_mtls_config !== undefined\n ? {\n $case: 'directMtlsConfig' as const,\n directMtlsConfig: d.direct_mtls_config,\n }\n : undefined,\n }));\n\nexport const unmarshalStreamNameListSchema: z.ZodType<StreamNameList> = z\n .object({\n names: z.array(z.string()).optional(),\n })\n .transform(d => ({\n names: d.names,\n }));\n\nexport const unmarshalStreamSchemaConfigSchema: z.ZodType<StreamSchemaConfig> =\n z\n .object({\n direct_schemas: z.lazy(() => unmarshalDirectSchemasSchema).optional(),\n schema_registry_config: z\n .lazy(() => unmarshalSchemaRegistryConfigSchema)\n .optional(),\n })\n .transform(d => ({\n schemaConfig:\n d.direct_schemas !== undefined\n ? {$case: 'directSchemas' as const, directSchemas: d.direct_schemas}\n : d.schema_registry_config !== undefined\n ? {\n $case: 'schemaRegistryConfig' as const,\n schemaRegistryConfig: d.schema_registry_config,\n }\n : undefined,\n }));\n\nexport const unmarshalStreamSourceSchema: z.ZodType<StreamSource> = z\n .object({\n full_name: z.string().optional(),\n filter_condition: z.string().optional(),\n transformation_sql: z.string().optional(),\n dataframe_schema: z.string().optional(),\n })\n .transform(d => ({\n fullName: d.full_name,\n filterCondition: d.filter_condition,\n transformationSql: d.transformation_sql,\n dataframeSchema: d.dataframe_schema,\n }));\n\nexport const unmarshalStreamSourceConfigSchema: z.ZodType<StreamSourceConfig> =\n z\n .object({\n kafka_stream_config: z\n .lazy(() => unmarshalKafkaStreamConfigSchema)\n .optional(),\n kinesis_stream_config: z\n .lazy(() => unmarshalKinesisStreamConfigSchema)\n .optional(),\n })\n .transform(d => ({\n sourceConfig:\n d.kafka_stream_config !== undefined\n ? {\n $case: 'kafkaStreamConfig' as const,\n kafkaStreamConfig: d.kafka_stream_config,\n }\n : d.kinesis_stream_config !== undefined\n ? {\n $case: 'kinesisStreamConfig' as const,\n kinesisStreamConfig: d.kinesis_stream_config,\n }\n : undefined,\n }));\n\nexport const unmarshalStreamingModeSchema: z.ZodType<StreamingMode> = z\n .object({\n mode: z.string().optional(),\n freshness_target: z.string().optional(),\n })\n .transform(d => ({\n mode: d.mode,\n freshnessTarget: d.freshness_target,\n }));\n\nexport const unmarshalSubscriptionModeSchema: z.ZodType<SubscriptionMode> = z\n .object({\n assign: z.string().optional(),\n subscribe: z.string().optional(),\n subscribe_pattern: z.string().optional(),\n })\n .transform(d => ({\n subscriptionMode:\n d.assign !== undefined\n ? {$case: 'assign' as const, assign: d.assign}\n : d.subscribe !== undefined\n ? {$case: 'subscribe' as const, subscribe: d.subscribe}\n : d.subscribe_pattern !== undefined\n ? {\n $case: 'subscribePattern' as const,\n subscribePattern: d.subscribe_pattern,\n }\n : undefined,\n }));\n\nexport const unmarshalSumFunctionSchema: z.ZodType<SumFunction> = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const unmarshalTableTriggerSchema: z.ZodType<TableTrigger> = z.object(\n {}\n);\n\nexport const unmarshalTimeWindowSchema: z.ZodType<TimeWindow> = z\n .object({\n continuous: z.lazy(() => unmarshalContinuousWindowSchema).optional(),\n tumbling: z.lazy(() => unmarshalTumblingWindowSchema).optional(),\n sliding: z.lazy(() => unmarshalSlidingWindowSchema).optional(),\n rolling: z.lazy(() => unmarshalRollingWindowSchema).optional(),\n sawtooth: z.lazy(() => unmarshalSawtoothWindowSchema).optional(),\n start_time: z\n .string()\n .transform(s => Temporal.Instant.from(s))\n .optional(),\n })\n .transform(d => ({\n windowType:\n d.continuous !== undefined\n ? {$case: 'continuous' as const, continuous: d.continuous}\n : d.tumbling !== undefined\n ? {$case: 'tumbling' as const, tumbling: d.tumbling}\n : d.sliding !== undefined\n ? {$case: 'sliding' as const, sliding: d.sliding}\n : d.rolling !== undefined\n ? {$case: 'rolling' as const, rolling: d.rolling}\n : d.sawtooth !== undefined\n ? {$case: 'sawtooth' as const, sawtooth: d.sawtooth}\n : undefined,\n startTime: d.start_time,\n }));\n\nexport const unmarshalTimeseriesColumnSchema: z.ZodType<TimeseriesColumn> = z\n .object({\n name: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n }));\n\nexport const unmarshalTumblingWindowSchema: z.ZodType<TumblingWindow> = z\n .object({\n window_duration: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n delay: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n offset: z\n .string()\n .transform(s => Temporal.Duration.from('PT' + s.toUpperCase()))\n .optional(),\n })\n .transform(d => ({\n windowDuration: d.window_duration,\n delay: d.delay,\n offset: d.offset,\n }));\n\nexport const unmarshalVarPopFunctionSchema: z.ZodType<VarPopFunction> = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const unmarshalVarSampFunctionSchema: z.ZodType<VarSampFunction> = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalAggregationFunctionSchema: z.ZodType = z\n .object({\n operation: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('avg'),\n avg: z.lazy(() => marshalAvgFunctionSchema),\n }),\n z.object({\n $case: z.literal('countFunction'),\n countFunction: z.lazy(() => marshalCountFunctionSchema),\n }),\n z.object({\n $case: z.literal('sum'),\n sum: z.lazy(() => marshalSumFunctionSchema),\n }),\n z.object({\n $case: z.literal('min'),\n min: z.lazy(() => marshalMinFunctionSchema),\n }),\n z.object({\n $case: z.literal('max'),\n max: z.lazy(() => marshalMaxFunctionSchema),\n }),\n z.object({\n $case: z.literal('first'),\n first: z.lazy(() => marshalFirstFunctionSchema),\n }),\n z.object({\n $case: z.literal('last'),\n last: z.lazy(() => marshalLastFunctionSchema),\n }),\n z.object({\n $case: z.literal('approxCountDistinct'),\n approxCountDistinct: z.lazy(\n () => marshalApproxCountDistinctFunctionSchema\n ),\n }),\n z.object({\n $case: z.literal('approxPercentile'),\n approxPercentile: z.lazy(() => marshalApproxPercentileFunctionSchema),\n }),\n z.object({\n $case: z.literal('stddevPop'),\n stddevPop: z.lazy(() => marshalStddevPopFunctionSchema),\n }),\n z.object({\n $case: z.literal('stddevSamp'),\n stddevSamp: z.lazy(() => marshalStddevSampFunctionSchema),\n }),\n z.object({\n $case: z.literal('varPop'),\n varPop: z.lazy(() => marshalVarPopFunctionSchema),\n }),\n z.object({\n $case: z.literal('varSamp'),\n varSamp: z.lazy(() => marshalVarSampFunctionSchema),\n }),\n z.object({\n $case: z.literal('firstN'),\n firstN: z.lazy(() => marshalFirstNFunctionSchema),\n }),\n z.object({\n $case: z.literal('lastN'),\n lastN: z.lazy(() => marshalLastNFunctionSchema),\n }),\n z.object({\n $case: z.literal('firstDistinct'),\n firstDistinct: z.lazy(() => marshalFirstDistinctFunctionSchema),\n }),\n z.object({\n $case: z.literal('lastDistinct'),\n lastDistinct: z.lazy(() => marshalLastDistinctFunctionSchema),\n }),\n ])\n .optional(),\n timeWindow: z.lazy(() => marshalTimeWindowSchema).optional(),\n })\n .transform(d => ({\n ...(d.operation?.$case === 'avg' && {avg: d.operation.avg}),\n ...(d.operation?.$case === 'countFunction' && {\n count_function: d.operation.countFunction,\n }),\n ...(d.operation?.$case === 'sum' && {sum: d.operation.sum}),\n ...(d.operation?.$case === 'min' && {min: d.operation.min}),\n ...(d.operation?.$case === 'max' && {max: d.operation.max}),\n ...(d.operation?.$case === 'first' && {first: d.operation.first}),\n ...(d.operation?.$case === 'last' && {last: d.operation.last}),\n ...(d.operation?.$case === 'approxCountDistinct' && {\n approx_count_distinct: d.operation.approxCountDistinct,\n }),\n ...(d.operation?.$case === 'approxPercentile' && {\n approx_percentile: d.operation.approxPercentile,\n }),\n ...(d.operation?.$case === 'stddevPop' && {\n stddev_pop: d.operation.stddevPop,\n }),\n ...(d.operation?.$case === 'stddevSamp' && {\n stddev_samp: d.operation.stddevSamp,\n }),\n ...(d.operation?.$case === 'varPop' && {var_pop: d.operation.varPop}),\n ...(d.operation?.$case === 'varSamp' && {var_samp: d.operation.varSamp}),\n ...(d.operation?.$case === 'firstN' && {first_n: d.operation.firstN}),\n ...(d.operation?.$case === 'lastN' && {last_n: d.operation.lastN}),\n ...(d.operation?.$case === 'firstDistinct' && {\n first_distinct: d.operation.firstDistinct,\n }),\n ...(d.operation?.$case === 'lastDistinct' && {\n last_distinct: d.operation.lastDistinct,\n }),\n time_window: d.timeWindow,\n }));\n\nexport const marshalApproxCountDistinctFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n relativeSd: z.number().optional(),\n })\n .transform(d => ({\n input: d.input,\n relative_sd: d.relativeSd,\n }));\n\nexport const marshalApproxPercentileFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n percentile: z.number().optional(),\n accuracy: z.bigint().optional(),\n })\n .transform(d => ({\n input: d.input,\n percentile: d.percentile,\n accuracy: d.accuracy,\n }));\n\nexport const marshalAuthConfigSchema: z.ZodType = z\n .object({\n authConfig: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('ucServiceCredentialName'),\n ucServiceCredentialName: z.string(),\n }),\n z.object({\n $case: z.literal('mtlsConfig'),\n mtlsConfig: z.lazy(() => marshalMtlsConfigSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.authConfig?.$case === 'ucServiceCredentialName' && {\n uc_service_credential_name: d.authConfig.ucServiceCredentialName,\n }),\n ...(d.authConfig?.$case === 'mtlsConfig' && {\n mtls_config: d.authConfig.mtlsConfig,\n }),\n }));\n\nexport const marshalAvgFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalBackfillFeaturesRequestSchema: z.ZodType = z\n .object({\n featureFullNames: z.array(z.string()).optional(),\n backfillRanges: z\n .array(z.lazy(() => marshalBackfillRangeSchema))\n .optional(),\n requestId: z.string().optional(),\n })\n .transform(d => ({\n feature_full_names: d.featureFullNames,\n backfill_ranges: d.backfillRanges,\n request_id: d.requestId,\n }));\n\nexport const marshalBackfillRangeSchema: z.ZodType = z\n .object({\n startTime: z\n .any()\n .transform((d: Temporal.Instant) => d.toString())\n .optional(),\n endTime: z\n .any()\n .transform((d: Temporal.Instant) => d.toString())\n .optional(),\n })\n .transform(d => ({\n start_time: d.startTime,\n end_time: d.endTime,\n }));\n\nexport const marshalBackfillSourceSchema: z.ZodType = z\n .object({\n backfillSource: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('deltaTableSource'),\n deltaTableSource: z.lazy(() => marshalDeltaTableSourceSchema),\n }),\n z.object({\n $case: z.literal('deltaTableName'),\n deltaTableName: z.string(),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.backfillSource?.$case === 'deltaTableSource' && {\n delta_table_source: d.backfillSource.deltaTableSource,\n }),\n ...(d.backfillSource?.$case === 'deltaTableName' && {\n delta_table_name: d.backfillSource.deltaTableName,\n }),\n }));\n\nexport const marshalBatchCreateMaterializedFeaturesRequestSchema: z.ZodType = z\n .object({\n requests: z\n .array(z.lazy(() => marshalCreateMaterializedFeatureRequestSchema))\n .optional(),\n })\n .transform(d => ({\n requests: d.requests,\n }));\n\nexport const marshalCancelOperationRequestSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n }));\n\nexport const marshalColumnIdentifierSchema: z.ZodType = z\n .object({\n variantExprPath: z.string().optional(),\n })\n .transform(d => ({\n variant_expr_path: d.variantExprPath,\n }));\n\nexport const marshalColumnSelectionSchema: z.ZodType = z\n .object({\n column: z.string().optional(),\n })\n .transform(d => ({\n column: d.column,\n }));\n\nexport const marshalContinuousWindowSchema: z.ZodType = z\n .object({\n windowDuration: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n offset: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n })\n .transform(d => ({\n window_duration: d.windowDuration,\n offset: d.offset,\n }));\n\nexport const marshalCountFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalCreateMaterializedFeatureRequestSchema: z.ZodType = z\n .object({\n materializedFeature: z\n .lazy(() => marshalMaterializedFeatureSchema)\n .optional(),\n })\n .transform(d => ({\n materialized_feature: d.materializedFeature,\n }));\n\nexport const marshalCronScheduleSchema: z.ZodType = z\n .object({\n cronExpression: z.string().optional(),\n mode: z.string().optional(),\n })\n .transform(d => ({\n cron_expression: d.cronExpression,\n mode: d.mode,\n }));\n\nexport const marshalCustomUdfSchema: z.ZodType = z\n .object({\n functionPath: z.string().optional(),\n inputBindings: z.array(z.lazy(() => marshalInputBindingSchema)).optional(),\n })\n .transform(d => ({\n function_path: d.functionPath,\n input_bindings: d.inputBindings,\n }));\n\nexport const marshalDataSourceSchema: z.ZodType = z\n .object({\n dataSource: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('deltaTableSource'),\n deltaTableSource: z.lazy(() => marshalDeltaTableSourceSchema),\n }),\n z.object({\n $case: z.literal('kafkaSource'),\n kafkaSource: z.lazy(() => marshalKafkaSourceSchema),\n }),\n z.object({\n $case: z.literal('requestSource'),\n requestSource: z.lazy(() => marshalRequestSourceSchema),\n }),\n z.object({\n $case: z.literal('streamSource'),\n streamSource: z.lazy(() => marshalStreamSourceSchema),\n }),\n z.object({\n $case: z.literal('featureViewSource'),\n featureViewSource: z.lazy(() => marshalFeatureViewSourceSchema),\n }),\n ])\n .optional(),\n lateness: z.lazy(() => marshalSourceLatenessSchema).optional(),\n })\n .transform(d => ({\n ...(d.dataSource?.$case === 'deltaTableSource' && {\n delta_table_source: d.dataSource.deltaTableSource,\n }),\n ...(d.dataSource?.$case === 'kafkaSource' && {\n kafka_source: d.dataSource.kafkaSource,\n }),\n ...(d.dataSource?.$case === 'requestSource' && {\n request_source: d.dataSource.requestSource,\n }),\n ...(d.dataSource?.$case === 'streamSource' && {\n stream_source: d.dataSource.streamSource,\n }),\n ...(d.dataSource?.$case === 'featureViewSource' && {\n feature_view_source: d.dataSource.featureViewSource,\n }),\n lateness: d.lateness,\n }));\n\nexport const marshalDeltaTableSourceSchema: z.ZodType = z\n .object({\n fullName: z.string().optional(),\n entityColumns: z.array(z.string()).optional(),\n timeseriesColumn: z.string().optional(),\n filterCondition: z.string().optional(),\n transformationSql: z.string().optional(),\n dataframeSchema: z.string().optional(),\n })\n .transform(d => ({\n full_name: d.fullName,\n entity_columns: d.entityColumns,\n timeseries_column: d.timeseriesColumn,\n filter_condition: d.filterCondition,\n transformation_sql: d.transformationSql,\n dataframe_schema: d.dataframeSchema,\n }));\n\nexport const marshalDirectMtlsConfigSchema: z.ZodType = z\n .object({\n bootstrapServers: z.string().optional(),\n mtlsConfig: z.lazy(() => marshalMtlsConfigSchema).optional(),\n })\n .transform(d => ({\n bootstrap_servers: d.bootstrapServers,\n mtls_config: d.mtlsConfig,\n }));\n\nexport const marshalDirectSchemasSchema: z.ZodType = z\n .object({\n payloadSchema: z.lazy(() => marshalSchemaConfigSchema).optional(),\n keySchema: z.lazy(() => marshalSchemaConfigSchema).optional(),\n })\n .transform(d => ({\n payload_schema: d.payloadSchema,\n key_schema: d.keySchema,\n }));\n\nexport const marshalEntityColumnSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n }));\n\nexport const marshalFeatureSchema: z.ZodType = z\n .object({\n fullName: z.string().optional(),\n source: z.lazy(() => marshalDataSourceSchema).optional(),\n inputs: z.array(z.string()).optional(),\n function: z.lazy(() => marshalFunctionSchema).optional(),\n timeWindow: z.lazy(() => marshalTimeWindowSchema).optional(),\n description: z.string().optional(),\n filterCondition: z.string().optional(),\n lineageContext: z.lazy(() => marshalLineageContextSchema).optional(),\n entities: z.array(z.lazy(() => marshalEntityColumnSchema)).optional(),\n timeseriesColumn: z.lazy(() => marshalTimeseriesColumnSchema).optional(),\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n name: z.string().optional(),\n createdAt: z\n .any()\n .transform((d: Temporal.Instant) => d.toString())\n .optional(),\n createdBy: z.string().optional(),\n })\n .transform(d => ({\n full_name: d.fullName,\n source: d.source,\n inputs: d.inputs,\n function: d.function,\n time_window: d.timeWindow,\n description: d.description,\n filter_condition: d.filterCondition,\n lineage_context: d.lineageContext,\n entities: d.entities,\n timeseries_column: d.timeseriesColumn,\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n name: d.name,\n created_at: d.createdAt,\n created_by: d.createdBy,\n }));\n\nexport const marshalFeatureReferenceSchema: z.ZodType = z\n .object({\n feature: z.string().optional(),\n })\n .transform(d => ({\n feature: d.feature,\n }));\n\nexport const marshalFeatureViewSourceSchema: z.ZodType = z\n .object({\n featureReferences: z\n .array(z.lazy(() => marshalFeatureReferenceSchema))\n .optional(),\n })\n .transform(d => ({\n feature_references: d.featureReferences,\n }));\n\nexport const marshalFieldDefinitionSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n dataType: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n data_type: d.dataType,\n }));\n\nexport const marshalFirstDistinctFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n n: z.bigint().optional(),\n })\n .transform(d => ({\n input: d.input,\n n: d.n,\n }));\n\nexport const marshalFirstFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalFirstNFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n n: z.bigint().optional(),\n })\n .transform(d => ({\n input: d.input,\n n: d.n,\n }));\n\nexport const marshalFlatSchemaSchema: z.ZodType = z\n .object({\n fields: z.array(z.lazy(() => marshalFieldDefinitionSchema)).optional(),\n })\n .transform(d => ({\n fields: d.fields,\n }));\n\nexport const marshalFunctionSchema: z.ZodType = z\n .object({\n functionType: z.string().optional(),\n extraParameters: z\n .array(z.lazy(() => marshalFunctionExtraParameterSchema))\n .optional(),\n function: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('aggregationFunction'),\n aggregationFunction: z.lazy(() => marshalAggregationFunctionSchema),\n }),\n z.object({\n $case: z.literal('columnSelection'),\n columnSelection: z.lazy(() => marshalColumnSelectionSchema),\n }),\n z.object({\n $case: z.literal('customUdf'),\n customUdf: z.lazy(() => marshalCustomUdfSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n function_type: d.functionType,\n extra_parameters: d.extraParameters,\n ...(d.function?.$case === 'aggregationFunction' && {\n aggregation_function: d.function.aggregationFunction,\n }),\n ...(d.function?.$case === 'columnSelection' && {\n column_selection: d.function.columnSelection,\n }),\n ...(d.function?.$case === 'customUdf' && {\n custom_udf: d.function.customUdf,\n }),\n }));\n\nexport const marshalFunctionExtraParameterSchema: z.ZodType = z\n .object({\n key: z.string().optional(),\n value: z.string().optional(),\n })\n .transform(d => ({\n key: d.key,\n value: d.value,\n }));\n\nexport const marshalIngestionConfigSchema: z.ZodType = z\n .object({\n ingestionDestination: z\n .lazy(() => marshalIngestionDestinationSchema)\n .optional(),\n backfillSource: z.lazy(() => marshalBackfillSourceSchema).optional(),\n deduplicationColumns: z.array(z.string()).optional(),\n ingestionPipelineId: z.string().optional(),\n ingestionJobId: z.bigint().optional(),\n backfillJobId: z.bigint().optional(),\n tags: z.record(z.string(), z.string()).optional(),\n budgetPolicyId: z.string().optional(),\n })\n .transform(d => ({\n ingestion_destination: d.ingestionDestination,\n backfill_source: d.backfillSource,\n deduplication_columns: d.deduplicationColumns,\n ingestion_pipeline_id: d.ingestionPipelineId,\n ingestion_job_id: d.ingestionJobId,\n backfill_job_id: d.backfillJobId,\n tags: d.tags,\n budget_policy_id: d.budgetPolicyId,\n }));\n\nexport const marshalIngestionDestinationSchema: z.ZodType = z\n .object({\n ingestionDestination: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('deltaTableName'),\n deltaTableName: z.string(),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.ingestionDestination?.$case === 'deltaTableName' && {\n delta_table_name: d.ingestionDestination.deltaTableName,\n }),\n }));\n\nexport const marshalInputBindingSchema: z.ZodType = z\n .object({\n parameter: z.string().optional(),\n column: z.string().optional(),\n })\n .transform(d => ({\n parameter: d.parameter,\n column: d.column,\n }));\n\nexport const marshalJobContextSchema: z.ZodType = z\n .object({\n jobId: z.bigint().optional(),\n jobRunId: z.bigint().optional(),\n })\n .transform(d => ({\n job_id: d.jobId,\n job_run_id: d.jobRunId,\n }));\n\nexport const marshalKafkaConfigSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n bootstrapServers: z.string().optional(),\n subscriptionMode: z.lazy(() => marshalSubscriptionModeSchema).optional(),\n authConfig: z.lazy(() => marshalAuthConfigSchema).optional(),\n keySchema: z.lazy(() => marshalSchemaConfigSchema).optional(),\n valueSchema: z.lazy(() => marshalSchemaConfigSchema).optional(),\n extraOptions: z.record(z.string(), z.string()).optional(),\n backfillSource: z.lazy(() => marshalBackfillSourceSchema).optional(),\n ingestionConfig: z.lazy(() => marshalIngestionConfigSchema).optional(),\n })\n .transform(d => ({\n name: d.name,\n bootstrap_servers: d.bootstrapServers,\n subscription_mode: d.subscriptionMode,\n auth_config: d.authConfig,\n key_schema: d.keySchema,\n value_schema: d.valueSchema,\n extra_options: d.extraOptions,\n backfill_source: d.backfillSource,\n ingestion_config: d.ingestionConfig,\n }));\n\nexport const marshalKafkaSourceSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n entityColumnIdentifiers: z\n .array(z.lazy(() => marshalColumnIdentifierSchema))\n .optional(),\n timeseriesColumnIdentifier: z\n .lazy(() => marshalColumnIdentifierSchema)\n .optional(),\n filterCondition: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n entity_column_identifiers: d.entityColumnIdentifiers,\n timeseries_column_identifier: d.timeseriesColumnIdentifier,\n filter_condition: d.filterCondition,\n }));\n\nexport const marshalKafkaStreamConfigSchema: z.ZodType = z\n .object({\n subscriptionMode: z\n .lazy(() => marshalKafkaSubscriptionModeSchema)\n .optional(),\n extraOptions: z.record(z.string(), z.string()).optional(),\n })\n .transform(d => ({\n subscription_mode: d.subscriptionMode,\n extra_options: d.extraOptions,\n }));\n\nexport const marshalKafkaSubscriptionModeSchema: z.ZodType = z\n .object({\n subscriptionMode: z\n .discriminatedUnion('$case', [\n z.object({$case: z.literal('assign'), assign: z.string()}),\n z.object({$case: z.literal('subscribe'), subscribe: z.string()}),\n z.object({\n $case: z.literal('subscribePattern'),\n subscribePattern: z.string(),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.subscriptionMode?.$case === 'assign' && {\n assign: d.subscriptionMode.assign,\n }),\n ...(d.subscriptionMode?.$case === 'subscribe' && {\n subscribe: d.subscriptionMode.subscribe,\n }),\n ...(d.subscriptionMode?.$case === 'subscribePattern' && {\n subscribe_pattern: d.subscriptionMode.subscribePattern,\n }),\n }));\n\nexport const marshalKinesisStreamConfigSchema: z.ZodType = z\n .object({\n streamIdentifier: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('streamNames'),\n streamNames: z.lazy(() => marshalStreamNameListSchema),\n }),\n z.object({\n $case: z.literal('streamArns'),\n streamArns: z.lazy(() => marshalStreamArnListSchema),\n }),\n ])\n .optional(),\n extraOptions: z.record(z.string(), z.string()).optional(),\n })\n .transform(d => ({\n ...(d.streamIdentifier?.$case === 'streamNames' && {\n stream_names: d.streamIdentifier.streamNames,\n }),\n ...(d.streamIdentifier?.$case === 'streamArns' && {\n stream_arns: d.streamIdentifier.streamArns,\n }),\n extra_options: d.extraOptions,\n }));\n\nexport const marshalLastDistinctFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n n: z.bigint().optional(),\n })\n .transform(d => ({\n input: d.input,\n n: d.n,\n }));\n\nexport const marshalLastFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalLastNFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n n: z.bigint().optional(),\n })\n .transform(d => ({\n input: d.input,\n n: d.n,\n }));\n\nexport const marshalLineageContextSchema: z.ZodType = z\n .object({\n notebookId: z.bigint().optional(),\n jobContext: z.lazy(() => marshalJobContextSchema).optional(),\n })\n .transform(d => ({\n notebook_id: d.notebookId,\n job_context: d.jobContext,\n }));\n\nexport const marshalMaterializedFeatureSchema: z.ZodType = z\n .object({\n materializedFeatureId: z.string().optional(),\n featureName: z.string().optional(),\n destination: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('offlineStoreConfig'),\n offlineStoreConfig: z.lazy(() => marshalOfflineStoreConfigSchema),\n }),\n z.object({\n $case: z.literal('onlineStoreConfig'),\n onlineStoreConfig: z.lazy(() => marshalOnlineStoreConfigSchema),\n }),\n ])\n .optional(),\n tableName: z.string().optional(),\n pipelineScheduleState: z.string().optional(),\n lastMaterializationTime: z\n .any()\n .transform((d: Temporal.Instant) => d.toString())\n .optional(),\n cronSchedule: z.string().optional(),\n isOnline: z.boolean().optional(),\n trigger: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('cronScheduleTrigger'),\n cronScheduleTrigger: z.lazy(() => marshalCronScheduleSchema),\n }),\n z.object({\n $case: z.literal('tableTrigger'),\n tableTrigger: z.lazy(() => marshalTableTriggerSchema),\n }),\n z.object({\n $case: z.literal('streamingMode'),\n streamingMode: z.lazy(() => marshalStreamingModeSchema),\n }),\n ])\n .optional(),\n latestBackfillOperation: z.string().optional(),\n tags: z.record(z.string(), z.string()).optional(),\n budgetPolicyId: z.string().optional(),\n })\n .transform(d => ({\n materialized_feature_id: d.materializedFeatureId,\n feature_name: d.featureName,\n ...(d.destination?.$case === 'offlineStoreConfig' && {\n offline_store_config: d.destination.offlineStoreConfig,\n }),\n ...(d.destination?.$case === 'onlineStoreConfig' && {\n online_store_config: d.destination.onlineStoreConfig,\n }),\n table_name: d.tableName,\n pipeline_schedule_state: d.pipelineScheduleState,\n last_materialization_time: d.lastMaterializationTime,\n cron_schedule: d.cronSchedule,\n is_online: d.isOnline,\n ...(d.trigger?.$case === 'cronScheduleTrigger' && {\n cron_schedule_trigger: d.trigger.cronScheduleTrigger,\n }),\n ...(d.trigger?.$case === 'tableTrigger' && {\n table_trigger: d.trigger.tableTrigger,\n }),\n ...(d.trigger?.$case === 'streamingMode' && {\n streaming_mode: d.trigger.streamingMode,\n }),\n latest_backfill_operation: d.latestBackfillOperation,\n tags: d.tags,\n budget_policy_id: d.budgetPolicyId,\n }));\n\nexport const marshalMaxFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalMinFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalMtlsConfigSchema: z.ZodType = z\n .object({\n keystoreLocation: z.string().optional(),\n keystorePasswordRef: z\n .lazy(() => marshalSecretScopeReferenceSchema)\n .optional(),\n keyPasswordRef: z.lazy(() => marshalSecretScopeReferenceSchema).optional(),\n truststoreLocation: z.string().optional(),\n truststorePasswordRef: z\n .lazy(() => marshalSecretScopeReferenceSchema)\n .optional(),\n disableHostnameVerification: z.boolean().optional(),\n })\n .transform(d => ({\n keystore_location: d.keystoreLocation,\n keystore_password_ref: d.keystorePasswordRef,\n key_password_ref: d.keyPasswordRef,\n truststore_location: d.truststoreLocation,\n truststore_password_ref: d.truststorePasswordRef,\n disable_hostname_verification: d.disableHostnameVerification,\n }));\n\nexport const marshalOfflineStoreConfigSchema: z.ZodType = z\n .object({\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n tableNamePrefix: z.string().optional(),\n })\n .transform(d => ({\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n table_name_prefix: d.tableNamePrefix,\n }));\n\nexport const marshalOnlineStoreConfigSchema: z.ZodType = z\n .object({\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n tableNamePrefix: z.string().optional(),\n onlineStoreName: z.string().optional(),\n })\n .transform(d => ({\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n table_name_prefix: d.tableNamePrefix,\n online_store_name: d.onlineStoreName,\n }));\n\nexport const marshalProtoSchemaSpecSchema: z.ZodType = z\n .object({\n schemaText: z.string().optional(),\n messageName: z.string().optional(),\n })\n .transform(d => ({\n schema_text: d.schemaText,\n message_name: d.messageName,\n }));\n\nexport const marshalPurgeFeatureEntitiesRequestSchema: z.ZodType = z\n .object({\n features: z.array(z.string()).optional(),\n entities: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('entitiesTable'),\n entitiesTable: z.string(),\n }),\n ])\n .optional(),\n requestId: z.string().optional(),\n })\n .transform(d => ({\n features: d.features,\n ...(d.entities?.$case === 'entitiesTable' && {\n entities_table: d.entities.entitiesTable,\n }),\n request_id: d.requestId,\n }));\n\nexport const marshalRequestSourceSchema: z.ZodType = z\n .object({\n schema: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('flatSchema'),\n flatSchema: z.lazy(() => marshalFlatSchemaSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.schema?.$case === 'flatSchema' && {flat_schema: d.schema.flatSchema}),\n }));\n\nexport const marshalRollingWindowSchema: z.ZodType = z\n .object({\n windowDuration: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n delay: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n })\n .transform(d => ({\n window_duration: d.windowDuration,\n delay: d.delay,\n }));\n\nexport const marshalSawtoothWindowSchema: z.ZodType = z\n .object({\n windowDuration: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n delay: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n })\n .transform(d => ({\n window_duration: d.windowDuration,\n delay: d.delay,\n }));\n\nexport const marshalSchemaConfigSchema: z.ZodType = z\n .object({\n schema: z\n .discriminatedUnion('$case', [\n z.object({$case: z.literal('jsonSchema'), jsonSchema: z.string()}),\n z.object({$case: z.literal('avroSchema'), avroSchema: z.string()}),\n z.object({\n $case: z.literal('protoSchema'),\n protoSchema: z.lazy(() => marshalProtoSchemaSpecSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.schema?.$case === 'jsonSchema' && {json_schema: d.schema.jsonSchema}),\n ...(d.schema?.$case === 'avroSchema' && {avro_schema: d.schema.avroSchema}),\n ...(d.schema?.$case === 'protoSchema' && {\n proto_schema: d.schema.protoSchema,\n }),\n }));\n\nexport const marshalSchemaLocatorSchema: z.ZodType = z\n .object({\n registrySchema: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('confluentSchema'),\n confluentSchema: z.lazy(\n () => marshalSchemaLocator_ConfluentSchemaSchema\n ),\n }),\n ])\n .optional(),\n format: z.string().optional(),\n })\n .transform(d => ({\n ...(d.registrySchema?.$case === 'confluentSchema' && {\n confluent_schema: d.registrySchema.confluentSchema,\n }),\n format: d.format,\n }));\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.\nexport const marshalSchemaLocator_ConfluentSchemaSchema: z.ZodType = z\n .object({\n subject: z.string().optional(),\n })\n .transform(d => ({\n subject: d.subject,\n }));\n\nexport const marshalSchemaRegistryConfigSchema: z.ZodType = z\n .object({\n ucConnection: z.string().optional(),\n apiSecretRef: z.lazy(() => marshalSecretScopeReferenceSchema).optional(),\n payloadSchemaLocator: z.lazy(() => marshalSchemaLocatorSchema).optional(),\n keySchemaLocator: z.lazy(() => marshalSchemaLocatorSchema).optional(),\n })\n .transform(d => ({\n uc_connection: d.ucConnection,\n api_secret_ref: d.apiSecretRef,\n payload_schema_locator: d.payloadSchemaLocator,\n key_schema_locator: d.keySchemaLocator,\n }));\n\nexport const marshalSecretScopeReferenceSchema: z.ZodType = z\n .object({\n scope: z.string().optional(),\n key: z.string().optional(),\n })\n .transform(d => ({\n scope: d.scope,\n key: d.key,\n }));\n\nexport const marshalSlidingWindowSchema: z.ZodType = z\n .object({\n windowDuration: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n slideDuration: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n delay: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n offset: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n })\n .transform(d => ({\n window_duration: d.windowDuration,\n slide_duration: d.slideDuration,\n delay: d.delay,\n offset: d.offset,\n }));\n\nexport const marshalSourceLatenessSchema: z.ZodType = z\n .object({\n settlingDelay: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n })\n .transform(d => ({\n settling_delay: d.settlingDelay,\n }));\n\nexport const marshalStddevPopFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalStddevSampFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalStreamSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n description: z.string().optional(),\n sourceConfig: z.lazy(() => marshalStreamSourceConfigSchema).optional(),\n connectionConfig: z\n .lazy(() => marshalStreamConnectionConfigSchema)\n .optional(),\n schemaConfig: z.lazy(() => marshalStreamSchemaConfigSchema).optional(),\n ingestionConfig: z.lazy(() => marshalIngestionConfigSchema).optional(),\n recordTypeFilter: z.string().optional(),\n excludedColumns: z.array(z.string()).optional(),\n createTime: z\n .any()\n .transform((d: Temporal.Instant) => d.toString())\n .optional(),\n createdBy: z.string().optional(),\n updateTime: z\n .any()\n .transform((d: Temporal.Instant) => d.toString())\n .optional(),\n updatedBy: z.string().optional(),\n browseOnly: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n description: d.description,\n source_config: d.sourceConfig,\n connection_config: d.connectionConfig,\n schema_config: d.schemaConfig,\n ingestion_config: d.ingestionConfig,\n record_type_filter: d.recordTypeFilter,\n excluded_columns: d.excludedColumns,\n create_time: d.createTime,\n created_by: d.createdBy,\n update_time: d.updateTime,\n updated_by: d.updatedBy,\n browse_only: d.browseOnly,\n }));\n\nexport const marshalStreamArnListSchema: z.ZodType = z\n .object({\n arns: z.array(z.string()).optional(),\n })\n .transform(d => ({\n arns: d.arns,\n }));\n\nexport const marshalStreamConnectionConfigSchema: z.ZodType = z\n .object({\n connectionConfig: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('ucConnectionName'),\n ucConnectionName: z.string(),\n }),\n z.object({\n $case: z.literal('directMtlsConfig'),\n directMtlsConfig: z.lazy(() => marshalDirectMtlsConfigSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.connectionConfig?.$case === 'ucConnectionName' && {\n uc_connection_name: d.connectionConfig.ucConnectionName,\n }),\n ...(d.connectionConfig?.$case === 'directMtlsConfig' && {\n direct_mtls_config: d.connectionConfig.directMtlsConfig,\n }),\n }));\n\nexport const marshalStreamNameListSchema: z.ZodType = z\n .object({\n names: z.array(z.string()).optional(),\n })\n .transform(d => ({\n names: d.names,\n }));\n\nexport const marshalStreamSchemaConfigSchema: z.ZodType = z\n .object({\n schemaConfig: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('directSchemas'),\n directSchemas: z.lazy(() => marshalDirectSchemasSchema),\n }),\n z.object({\n $case: z.literal('schemaRegistryConfig'),\n schemaRegistryConfig: z.lazy(() => marshalSchemaRegistryConfigSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.schemaConfig?.$case === 'directSchemas' && {\n direct_schemas: d.schemaConfig.directSchemas,\n }),\n ...(d.schemaConfig?.$case === 'schemaRegistryConfig' && {\n schema_registry_config: d.schemaConfig.schemaRegistryConfig,\n }),\n }));\n\nexport const marshalStreamSourceSchema: z.ZodType = z\n .object({\n fullName: z.string().optional(),\n filterCondition: z.string().optional(),\n transformationSql: z.string().optional(),\n dataframeSchema: z.string().optional(),\n })\n .transform(d => ({\n full_name: d.fullName,\n filter_condition: d.filterCondition,\n transformation_sql: d.transformationSql,\n dataframe_schema: d.dataframeSchema,\n }));\n\nexport const marshalStreamSourceConfigSchema: z.ZodType = z\n .object({\n sourceConfig: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('kafkaStreamConfig'),\n kafkaStreamConfig: z.lazy(() => marshalKafkaStreamConfigSchema),\n }),\n z.object({\n $case: z.literal('kinesisStreamConfig'),\n kinesisStreamConfig: z.lazy(() => marshalKinesisStreamConfigSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.sourceConfig?.$case === 'kafkaStreamConfig' && {\n kafka_stream_config: d.sourceConfig.kafkaStreamConfig,\n }),\n ...(d.sourceConfig?.$case === 'kinesisStreamConfig' && {\n kinesis_stream_config: d.sourceConfig.kinesisStreamConfig,\n }),\n }));\n\nexport const marshalStreamingModeSchema: z.ZodType = z\n .object({\n mode: z.string().optional(),\n freshnessTarget: z.string().optional(),\n })\n .transform(d => ({\n mode: d.mode,\n freshness_target: d.freshnessTarget,\n }));\n\nexport const marshalSubscriptionModeSchema: z.ZodType = z\n .object({\n subscriptionMode: z\n .discriminatedUnion('$case', [\n z.object({$case: z.literal('assign'), assign: z.string()}),\n z.object({$case: z.literal('subscribe'), subscribe: z.string()}),\n z.object({\n $case: z.literal('subscribePattern'),\n subscribePattern: z.string(),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.subscriptionMode?.$case === 'assign' && {\n assign: d.subscriptionMode.assign,\n }),\n ...(d.subscriptionMode?.$case === 'subscribe' && {\n subscribe: d.subscriptionMode.subscribe,\n }),\n ...(d.subscriptionMode?.$case === 'subscribePattern' && {\n subscribe_pattern: d.subscriptionMode.subscribePattern,\n }),\n }));\n\nexport const marshalSumFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalTableTriggerSchema: z.ZodType = z.object({});\n\nexport const marshalTimeWindowSchema: z.ZodType = z\n .object({\n windowType: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('continuous'),\n continuous: z.lazy(() => marshalContinuousWindowSchema),\n }),\n z.object({\n $case: z.literal('tumbling'),\n tumbling: z.lazy(() => marshalTumblingWindowSchema),\n }),\n z.object({\n $case: z.literal('sliding'),\n sliding: z.lazy(() => marshalSlidingWindowSchema),\n }),\n z.object({\n $case: z.literal('rolling'),\n rolling: z.lazy(() => marshalRollingWindowSchema),\n }),\n z.object({\n $case: z.literal('sawtooth'),\n sawtooth: z.lazy(() => marshalSawtoothWindowSchema),\n }),\n ])\n .optional(),\n startTime: z\n .any()\n .transform((d: Temporal.Instant) => d.toString())\n .optional(),\n })\n .transform(d => ({\n ...(d.windowType?.$case === 'continuous' && {\n continuous: d.windowType.continuous,\n }),\n ...(d.windowType?.$case === 'tumbling' && {\n tumbling: d.windowType.tumbling,\n }),\n ...(d.windowType?.$case === 'sliding' && {sliding: d.windowType.sliding}),\n ...(d.windowType?.$case === 'rolling' && {rolling: d.windowType.rolling}),\n ...(d.windowType?.$case === 'sawtooth' && {\n sawtooth: d.windowType.sawtooth,\n }),\n start_time: d.startTime,\n }));\n\nexport const marshalTimeseriesColumnSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n }));\n\nexport const marshalTumblingWindowSchema: z.ZodType = z\n .object({\n windowDuration: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n delay: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n offset: z\n .any()\n .transform((d: Temporal.Duration) => d.toString().slice(2).toLowerCase())\n .optional(),\n })\n .transform(d => ({\n window_duration: d.windowDuration,\n delay: d.delay,\n offset: d.offset,\n }));\n\nexport const marshalVarPopFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nexport const marshalVarSampFunctionSchema: z.ZodType = z\n .object({\n input: z.string().optional(),\n })\n .transform(d => ({\n input: d.input,\n }));\n\nconst aggregationFunctionFieldMaskSchema: FieldMaskSchema = {\n approxCountDistinct: {\n wire: 'approx_count_distinct',\n children: () => approxCountDistinctFunctionFieldMaskSchema,\n },\n approxPercentile: {\n wire: 'approx_percentile',\n children: () => approxPercentileFunctionFieldMaskSchema,\n },\n avg: {wire: 'avg', children: () => avgFunctionFieldMaskSchema},\n countFunction: {\n wire: 'count_function',\n children: () => countFunctionFieldMaskSchema,\n },\n first: {wire: 'first', children: () => firstFunctionFieldMaskSchema},\n firstDistinct: {\n wire: 'first_distinct',\n children: () => firstDistinctFunctionFieldMaskSchema,\n },\n firstN: {wire: 'first_n', children: () => firstNFunctionFieldMaskSchema},\n last: {wire: 'last', children: () => lastFunctionFieldMaskSchema},\n lastDistinct: {\n wire: 'last_distinct',\n children: () => lastDistinctFunctionFieldMaskSchema,\n },\n lastN: {wire: 'last_n', children: () => lastNFunctionFieldMaskSchema},\n max: {wire: 'max', children: () => maxFunctionFieldMaskSchema},\n min: {wire: 'min', children: () => minFunctionFieldMaskSchema},\n stddevPop: {\n wire: 'stddev_pop',\n children: () => stddevPopFunctionFieldMaskSchema,\n },\n stddevSamp: {\n wire: 'stddev_samp',\n children: () => stddevSampFunctionFieldMaskSchema,\n },\n sum: {wire: 'sum', children: () => sumFunctionFieldMaskSchema},\n timeWindow: {wire: 'time_window', children: () => timeWindowFieldMaskSchema},\n varPop: {wire: 'var_pop', children: () => varPopFunctionFieldMaskSchema},\n varSamp: {wire: 'var_samp', children: () => varSampFunctionFieldMaskSchema},\n};\n\nconst approxCountDistinctFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n relativeSd: {wire: 'relative_sd'},\n};\n\nconst approxPercentileFunctionFieldMaskSchema: FieldMaskSchema = {\n accuracy: {wire: 'accuracy'},\n input: {wire: 'input'},\n percentile: {wire: 'percentile'},\n};\n\nconst authConfigFieldMaskSchema: FieldMaskSchema = {\n mtlsConfig: {wire: 'mtls_config', children: () => mtlsConfigFieldMaskSchema},\n ucServiceCredentialName: {wire: 'uc_service_credential_name'},\n};\n\nconst avgFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n\nconst backfillSourceFieldMaskSchema: FieldMaskSchema = {\n deltaTableName: {wire: 'delta_table_name'},\n deltaTableSource: {\n wire: 'delta_table_source',\n children: () => deltaTableSourceFieldMaskSchema,\n },\n};\n\nconst columnIdentifierFieldMaskSchema: FieldMaskSchema = {\n variantExprPath: {wire: 'variant_expr_path'},\n};\n\nconst columnSelectionFieldMaskSchema: FieldMaskSchema = {\n column: {wire: 'column'},\n};\n\nconst continuousWindowFieldMaskSchema: FieldMaskSchema = {\n offset: {wire: 'offset'},\n windowDuration: {wire: 'window_duration'},\n};\n\nconst countFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n\nconst cronScheduleFieldMaskSchema: FieldMaskSchema = {\n cronExpression: {wire: 'cron_expression'},\n mode: {wire: 'mode'},\n};\n\nconst customUdfFieldMaskSchema: FieldMaskSchema = {\n functionPath: {wire: 'function_path'},\n inputBindings: {wire: 'input_bindings'},\n};\n\nconst dataSourceFieldMaskSchema: FieldMaskSchema = {\n deltaTableSource: {\n wire: 'delta_table_source',\n children: () => deltaTableSourceFieldMaskSchema,\n },\n featureViewSource: {\n wire: 'feature_view_source',\n children: () => featureViewSourceFieldMaskSchema,\n },\n kafkaSource: {\n wire: 'kafka_source',\n children: () => kafkaSourceFieldMaskSchema,\n },\n lateness: {wire: 'lateness', children: () => sourceLatenessFieldMaskSchema},\n requestSource: {\n wire: 'request_source',\n children: () => requestSourceFieldMaskSchema,\n },\n streamSource: {\n wire: 'stream_source',\n children: () => streamSourceFieldMaskSchema,\n },\n};\n\nconst deltaTableSourceFieldMaskSchema: FieldMaskSchema = {\n dataframeSchema: {wire: 'dataframe_schema'},\n entityColumns: {wire: 'entity_columns'},\n filterCondition: {wire: 'filter_condition'},\n fullName: {wire: 'full_name'},\n timeseriesColumn: {wire: 'timeseries_column'},\n transformationSql: {wire: 'transformation_sql'},\n};\n\nconst directMtlsConfigFieldMaskSchema: FieldMaskSchema = {\n bootstrapServers: {wire: 'bootstrap_servers'},\n mtlsConfig: {wire: 'mtls_config', children: () => mtlsConfigFieldMaskSchema},\n};\n\nconst directSchemasFieldMaskSchema: FieldMaskSchema = {\n keySchema: {wire: 'key_schema', children: () => schemaConfigFieldMaskSchema},\n payloadSchema: {\n wire: 'payload_schema',\n children: () => schemaConfigFieldMaskSchema,\n },\n};\n\nconst featureFieldMaskSchema: FieldMaskSchema = {\n catalogName: {wire: 'catalog_name'},\n createdAt: {wire: 'created_at'},\n createdBy: {wire: 'created_by'},\n description: {wire: 'description'},\n entities: {wire: 'entities'},\n filterCondition: {wire: 'filter_condition'},\n fullName: {wire: 'full_name'},\n function: {wire: 'function', children: () => functionFieldMaskSchema},\n inputs: {wire: 'inputs'},\n lineageContext: {\n wire: 'lineage_context',\n children: () => lineageContextFieldMaskSchema,\n },\n name: {wire: 'name'},\n schemaName: {wire: 'schema_name'},\n source: {wire: 'source', children: () => dataSourceFieldMaskSchema},\n timeWindow: {wire: 'time_window', children: () => timeWindowFieldMaskSchema},\n timeseriesColumn: {\n wire: 'timeseries_column',\n children: () => timeseriesColumnFieldMaskSchema,\n },\n};\n\nexport function featureFieldMask(...paths: string[]): FieldMask<Feature> {\n return FieldMask.build<Feature>(paths, featureFieldMaskSchema);\n}\n\nconst featureViewSourceFieldMaskSchema: FieldMaskSchema = {\n featureReferences: {wire: 'feature_references'},\n};\n\nconst firstDistinctFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n n: {wire: 'n'},\n};\n\nconst firstFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n\nconst firstNFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n n: {wire: 'n'},\n};\n\nconst flatSchemaFieldMaskSchema: FieldMaskSchema = {\n fields: {wire: 'fields'},\n};\n\nconst functionFieldMaskSchema: FieldMaskSchema = {\n aggregationFunction: {\n wire: 'aggregation_function',\n children: () => aggregationFunctionFieldMaskSchema,\n },\n columnSelection: {\n wire: 'column_selection',\n children: () => columnSelectionFieldMaskSchema,\n },\n customUdf: {wire: 'custom_udf', children: () => customUdfFieldMaskSchema},\n extraParameters: {wire: 'extra_parameters'},\n functionType: {wire: 'function_type'},\n};\n\nconst ingestionConfigFieldMaskSchema: FieldMaskSchema = {\n backfillJobId: {wire: 'backfill_job_id'},\n backfillSource: {\n wire: 'backfill_source',\n children: () => backfillSourceFieldMaskSchema,\n },\n budgetPolicyId: {wire: 'budget_policy_id'},\n deduplicationColumns: {wire: 'deduplication_columns'},\n ingestionDestination: {\n wire: 'ingestion_destination',\n children: () => ingestionDestinationFieldMaskSchema,\n },\n ingestionJobId: {wire: 'ingestion_job_id'},\n ingestionPipelineId: {wire: 'ingestion_pipeline_id'},\n tags: {wire: 'tags'},\n};\n\nconst ingestionDestinationFieldMaskSchema: FieldMaskSchema = {\n deltaTableName: {wire: 'delta_table_name'},\n};\n\nconst jobContextFieldMaskSchema: FieldMaskSchema = {\n jobId: {wire: 'job_id'},\n jobRunId: {wire: 'job_run_id'},\n};\n\nconst kafkaConfigFieldMaskSchema: FieldMaskSchema = {\n authConfig: {wire: 'auth_config', children: () => authConfigFieldMaskSchema},\n backfillSource: {\n wire: 'backfill_source',\n children: () => backfillSourceFieldMaskSchema,\n },\n bootstrapServers: {wire: 'bootstrap_servers'},\n extraOptions: {wire: 'extra_options'},\n ingestionConfig: {\n wire: 'ingestion_config',\n children: () => ingestionConfigFieldMaskSchema,\n },\n keySchema: {wire: 'key_schema', children: () => schemaConfigFieldMaskSchema},\n name: {wire: 'name'},\n subscriptionMode: {\n wire: 'subscription_mode',\n children: () => subscriptionModeFieldMaskSchema,\n },\n valueSchema: {\n wire: 'value_schema',\n children: () => schemaConfigFieldMaskSchema,\n },\n};\n\nexport function kafkaConfigFieldMask(\n ...paths: string[]\n): FieldMask<KafkaConfig> {\n return FieldMask.build<KafkaConfig>(paths, kafkaConfigFieldMaskSchema);\n}\n\nconst kafkaSourceFieldMaskSchema: FieldMaskSchema = {\n entityColumnIdentifiers: {wire: 'entity_column_identifiers'},\n filterCondition: {wire: 'filter_condition'},\n name: {wire: 'name'},\n timeseriesColumnIdentifier: {\n wire: 'timeseries_column_identifier',\n children: () => columnIdentifierFieldMaskSchema,\n },\n};\n\nconst kafkaStreamConfigFieldMaskSchema: FieldMaskSchema = {\n extraOptions: {wire: 'extra_options'},\n subscriptionMode: {\n wire: 'subscription_mode',\n children: () => kafkaSubscriptionModeFieldMaskSchema,\n },\n};\n\nconst kafkaSubscriptionModeFieldMaskSchema: FieldMaskSchema = {\n assign: {wire: 'assign'},\n subscribe: {wire: 'subscribe'},\n subscribePattern: {wire: 'subscribe_pattern'},\n};\n\nconst kinesisStreamConfigFieldMaskSchema: FieldMaskSchema = {\n extraOptions: {wire: 'extra_options'},\n streamArns: {\n wire: 'stream_arns',\n children: () => streamArnListFieldMaskSchema,\n },\n streamNames: {\n wire: 'stream_names',\n children: () => streamNameListFieldMaskSchema,\n },\n};\n\nconst lastDistinctFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n n: {wire: 'n'},\n};\n\nconst lastFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n\nconst lastNFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n n: {wire: 'n'},\n};\n\nconst lineageContextFieldMaskSchema: FieldMaskSchema = {\n jobContext: {wire: 'job_context', children: () => jobContextFieldMaskSchema},\n notebookId: {wire: 'notebook_id'},\n};\n\nconst materializedFeatureFieldMaskSchema: FieldMaskSchema = {\n budgetPolicyId: {wire: 'budget_policy_id'},\n cronSchedule: {wire: 'cron_schedule'},\n cronScheduleTrigger: {\n wire: 'cron_schedule_trigger',\n children: () => cronScheduleFieldMaskSchema,\n },\n featureName: {wire: 'feature_name'},\n isOnline: {wire: 'is_online'},\n lastMaterializationTime: {wire: 'last_materialization_time'},\n latestBackfillOperation: {wire: 'latest_backfill_operation'},\n materializedFeatureId: {wire: 'materialized_feature_id'},\n offlineStoreConfig: {\n wire: 'offline_store_config',\n children: () => offlineStoreConfigFieldMaskSchema,\n },\n onlineStoreConfig: {\n wire: 'online_store_config',\n children: () => onlineStoreConfigFieldMaskSchema,\n },\n pipelineScheduleState: {wire: 'pipeline_schedule_state'},\n streamingMode: {\n wire: 'streaming_mode',\n children: () => streamingModeFieldMaskSchema,\n },\n tableName: {wire: 'table_name'},\n tableTrigger: {\n wire: 'table_trigger',\n children: () => tableTriggerFieldMaskSchema,\n },\n tags: {wire: 'tags'},\n};\n\nexport function materializedFeatureFieldMask(\n ...paths: string[]\n): FieldMask<MaterializedFeature> {\n return FieldMask.build<MaterializedFeature>(\n paths,\n materializedFeatureFieldMaskSchema\n );\n}\n\nconst maxFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n\nconst minFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n\nconst mtlsConfigFieldMaskSchema: FieldMaskSchema = {\n disableHostnameVerification: {wire: 'disable_hostname_verification'},\n keyPasswordRef: {\n wire: 'key_password_ref',\n children: () => secretScopeReferenceFieldMaskSchema,\n },\n keystoreLocation: {wire: 'keystore_location'},\n keystorePasswordRef: {\n wire: 'keystore_password_ref',\n children: () => secretScopeReferenceFieldMaskSchema,\n },\n truststoreLocation: {wire: 'truststore_location'},\n truststorePasswordRef: {\n wire: 'truststore_password_ref',\n children: () => secretScopeReferenceFieldMaskSchema,\n },\n};\n\nconst offlineStoreConfigFieldMaskSchema: FieldMaskSchema = {\n catalogName: {wire: 'catalog_name'},\n schemaName: {wire: 'schema_name'},\n tableNamePrefix: {wire: 'table_name_prefix'},\n};\n\nconst onlineStoreConfigFieldMaskSchema: FieldMaskSchema = {\n catalogName: {wire: 'catalog_name'},\n onlineStoreName: {wire: 'online_store_name'},\n schemaName: {wire: 'schema_name'},\n tableNamePrefix: {wire: 'table_name_prefix'},\n};\n\nconst protoSchemaSpecFieldMaskSchema: FieldMaskSchema = {\n messageName: {wire: 'message_name'},\n schemaText: {wire: 'schema_text'},\n};\n\nconst requestSourceFieldMaskSchema: FieldMaskSchema = {\n flatSchema: {wire: 'flat_schema', children: () => flatSchemaFieldMaskSchema},\n};\n\nconst rollingWindowFieldMaskSchema: FieldMaskSchema = {\n delay: {wire: 'delay'},\n windowDuration: {wire: 'window_duration'},\n};\n\nconst sawtoothWindowFieldMaskSchema: FieldMaskSchema = {\n delay: {wire: 'delay'},\n windowDuration: {wire: 'window_duration'},\n};\n\nconst schemaConfigFieldMaskSchema: FieldMaskSchema = {\n avroSchema: {wire: 'avro_schema'},\n jsonSchema: {wire: 'json_schema'},\n protoSchema: {\n wire: 'proto_schema',\n children: () => protoSchemaSpecFieldMaskSchema,\n },\n};\n\nconst schemaLocatorFieldMaskSchema: FieldMaskSchema = {\n confluentSchema: {\n wire: 'confluent_schema',\n children: () => schemaLocator_ConfluentSchemaFieldMaskSchema,\n },\n format: {wire: 'format'},\n};\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested message name.\nconst schemaLocator_ConfluentSchemaFieldMaskSchema: FieldMaskSchema = {\n subject: {wire: 'subject'},\n};\n\nconst schemaRegistryConfigFieldMaskSchema: FieldMaskSchema = {\n apiSecretRef: {\n wire: 'api_secret_ref',\n children: () => secretScopeReferenceFieldMaskSchema,\n },\n keySchemaLocator: {\n wire: 'key_schema_locator',\n children: () => schemaLocatorFieldMaskSchema,\n },\n payloadSchemaLocator: {\n wire: 'payload_schema_locator',\n children: () => schemaLocatorFieldMaskSchema,\n },\n ucConnection: {wire: 'uc_connection'},\n};\n\nconst secretScopeReferenceFieldMaskSchema: FieldMaskSchema = {\n key: {wire: 'key'},\n scope: {wire: 'scope'},\n};\n\nconst slidingWindowFieldMaskSchema: FieldMaskSchema = {\n delay: {wire: 'delay'},\n offset: {wire: 'offset'},\n slideDuration: {wire: 'slide_duration'},\n windowDuration: {wire: 'window_duration'},\n};\n\nconst sourceLatenessFieldMaskSchema: FieldMaskSchema = {\n settlingDelay: {wire: 'settling_delay'},\n};\n\nconst stddevPopFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n\nconst stddevSampFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n\nconst streamFieldMaskSchema: FieldMaskSchema = {\n browseOnly: {wire: 'browse_only'},\n connectionConfig: {\n wire: 'connection_config',\n children: () => streamConnectionConfigFieldMaskSchema,\n },\n createTime: {wire: 'create_time'},\n createdBy: {wire: 'created_by'},\n description: {wire: 'description'},\n excludedColumns: {wire: 'excluded_columns'},\n ingestionConfig: {\n wire: 'ingestion_config',\n children: () => ingestionConfigFieldMaskSchema,\n },\n name: {wire: 'name'},\n recordTypeFilter: {wire: 'record_type_filter'},\n schemaConfig: {\n wire: 'schema_config',\n children: () => streamSchemaConfigFieldMaskSchema,\n },\n sourceConfig: {\n wire: 'source_config',\n children: () => streamSourceConfigFieldMaskSchema,\n },\n updateTime: {wire: 'update_time'},\n updatedBy: {wire: 'updated_by'},\n};\n\nexport function streamFieldMask(...paths: string[]): FieldMask<Stream> {\n return FieldMask.build<Stream>(paths, streamFieldMaskSchema);\n}\n\nconst streamArnListFieldMaskSchema: FieldMaskSchema = {\n arns: {wire: 'arns'},\n};\n\nconst streamConnectionConfigFieldMaskSchema: FieldMaskSchema = {\n directMtlsConfig: {\n wire: 'direct_mtls_config',\n children: () => directMtlsConfigFieldMaskSchema,\n },\n ucConnectionName: {wire: 'uc_connection_name'},\n};\n\nconst streamNameListFieldMaskSchema: FieldMaskSchema = {\n names: {wire: 'names'},\n};\n\nconst streamSchemaConfigFieldMaskSchema: FieldMaskSchema = {\n directSchemas: {\n wire: 'direct_schemas',\n children: () => directSchemasFieldMaskSchema,\n },\n schemaRegistryConfig: {\n wire: 'schema_registry_config',\n children: () => schemaRegistryConfigFieldMaskSchema,\n },\n};\n\nconst streamSourceFieldMaskSchema: FieldMaskSchema = {\n dataframeSchema: {wire: 'dataframe_schema'},\n filterCondition: {wire: 'filter_condition'},\n fullName: {wire: 'full_name'},\n transformationSql: {wire: 'transformation_sql'},\n};\n\nconst streamSourceConfigFieldMaskSchema: FieldMaskSchema = {\n kafkaStreamConfig: {\n wire: 'kafka_stream_config',\n children: () => kafkaStreamConfigFieldMaskSchema,\n },\n kinesisStreamConfig: {\n wire: 'kinesis_stream_config',\n children: () => kinesisStreamConfigFieldMaskSchema,\n },\n};\n\nconst streamingModeFieldMaskSchema: FieldMaskSchema = {\n freshnessTarget: {wire: 'freshness_target'},\n mode: {wire: 'mode'},\n};\n\nconst subscriptionModeFieldMaskSchema: FieldMaskSchema = {\n assign: {wire: 'assign'},\n subscribe: {wire: 'subscribe'},\n subscribePattern: {wire: 'subscribe_pattern'},\n};\n\nconst sumFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n\nconst tableTriggerFieldMaskSchema: FieldMaskSchema = {};\n\nconst timeWindowFieldMaskSchema: FieldMaskSchema = {\n continuous: {\n wire: 'continuous',\n children: () => continuousWindowFieldMaskSchema,\n },\n rolling: {wire: 'rolling', children: () => rollingWindowFieldMaskSchema},\n sawtooth: {wire: 'sawtooth', children: () => sawtoothWindowFieldMaskSchema},\n sliding: {wire: 'sliding', children: () => slidingWindowFieldMaskSchema},\n startTime: {wire: 'start_time'},\n tumbling: {wire: 'tumbling', children: () => tumblingWindowFieldMaskSchema},\n};\n\nconst timeseriesColumnFieldMaskSchema: FieldMaskSchema = {\n name: {wire: 'name'},\n};\n\nconst tumblingWindowFieldMaskSchema: FieldMaskSchema = {\n delay: {wire: 'delay'},\n offset: {wire: 'offset'},\n windowDuration: {wire: 'window_duration'},\n};\n\nconst varPopFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n\nconst varSampFunctionFieldMaskSchema: FieldMaskSchema = {\n input: {wire: 'input'},\n};\n"],"mappings":"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"}
|