@databricks/sdk-uc-tables 0.38.0 → 0.40.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 CHANGED
@@ -1,6 +1,6 @@
1
1
  //#region package.json
2
2
  var name = "@databricks/sdk-uc-tables";
3
- var version = "0.38.0";
3
+ var version = "0.40.0";
4
4
 
5
5
  //#endregion
6
6
  export { name, version };
package/dist/v1/model.js CHANGED
@@ -409,13 +409,25 @@ const unmarshalTableInfoSchema = z.object({
409
409
  metastore_id: z.string().optional(),
410
410
  full_name: z.string().optional(),
411
411
  data_access_configuration_id: z.string().optional(),
412
- created_at: z.union([z.number(), z.bigint()]).transform((v) => BigInt(v)).optional(),
412
+ created_at: z.union([
413
+ z.number(),
414
+ z.bigint(),
415
+ z.string()
416
+ ]).transform((v) => BigInt(v)).optional(),
413
417
  created_by: z.string().optional(),
414
- updated_at: z.union([z.number(), z.bigint()]).transform((v) => BigInt(v)).optional(),
418
+ updated_at: z.union([
419
+ z.number(),
420
+ z.bigint(),
421
+ z.string()
422
+ ]).transform((v) => BigInt(v)).optional(),
415
423
  updated_by: z.string().optional(),
416
424
  table_id: z.string().optional(),
417
425
  delta_runtime_properties_kvpairs: z.lazy(() => unmarshalDeltaRuntimePropertiesKvPairsSchema).optional(),
418
- deleted_at: z.union([z.number(), z.bigint()]).transform((v) => BigInt(v)).optional(),
426
+ deleted_at: z.union([
427
+ z.number(),
428
+ z.bigint(),
429
+ z.string()
430
+ ]).transform((v) => BigInt(v)).optional(),
419
431
  effective_predictive_optimization_flag: z.lazy(() => unmarshalEffectivePredictiveOptimizationFlagSchema).optional(),
420
432
  access_point: z.string().optional(),
421
433
  browse_only: z.boolean().optional(),
@@ -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 {z} from 'zod';\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const ColumnTypeName = {\n BOOLEAN: 'BOOLEAN',\n BYTE: 'BYTE',\n SHORT: 'SHORT',\n INT: 'INT',\n LONG: 'LONG',\n FLOAT: 'FLOAT',\n DOUBLE: 'DOUBLE',\n DATE: 'DATE',\n TIMESTAMP: 'TIMESTAMP',\n STRING: 'STRING',\n BINARY: 'BINARY',\n DECIMAL: 'DECIMAL',\n INTERVAL: 'INTERVAL',\n ARRAY: 'ARRAY',\n STRUCT: 'STRUCT',\n MAP: 'MAP',\n CHAR: 'CHAR',\n NULL: 'NULL',\n USER_DEFINED_TYPE: 'USER_DEFINED_TYPE',\n TIMESTAMP_NTZ: 'TIMESTAMP_NTZ',\n VARIANT: 'VARIANT',\n GEOMETRY: 'GEOMETRY',\n GEOGRAPHY: 'GEOGRAPHY',\n TABLE_TYPE: 'TABLE_TYPE',\n} as const;\nexport type ColumnTypeName =\n | (typeof ColumnTypeName)[keyof typeof ColumnTypeName]\n | (string & {});\n\n/** Data source format */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const DataSourceFormat = {\n DELTA: 'DELTA',\n CSV: 'CSV',\n JSON: 'JSON',\n AVRO: 'AVRO',\n PARQUET: 'PARQUET',\n ORC: 'ORC',\n TEXT: 'TEXT',\n UNITY_CATALOG: 'UNITY_CATALOG',\n /** A table shared through Delta Sharing protocol. */\n DELTASHARING: 'DELTASHARING',\n /** BEGIN - Query federation data source formats. */\n DATABRICKS_FORMAT: 'DATABRICKS_FORMAT',\n MYSQL_FORMAT: 'MYSQL_FORMAT',\n ORACLE_FORMAT: 'ORACLE_FORMAT',\n POSTGRESQL_FORMAT: 'POSTGRESQL_FORMAT',\n REDSHIFT_FORMAT: 'REDSHIFT_FORMAT',\n SNOWFLAKE_FORMAT: 'SNOWFLAKE_FORMAT',\n SQLDW_FORMAT: 'SQLDW_FORMAT',\n SQLSERVER_FORMAT: 'SQLSERVER_FORMAT',\n SALESFORCE_FORMAT: 'SALESFORCE_FORMAT',\n SALESFORCE_DATA_CLOUD_FORMAT: 'SALESFORCE_DATA_CLOUD_FORMAT',\n TERADATA_FORMAT: 'TERADATA_FORMAT',\n BIGQUERY_FORMAT: 'BIGQUERY_FORMAT',\n NETSUITE_FORMAT: 'NETSUITE_FORMAT',\n WORKDAY_RAAS_FORMAT: 'WORKDAY_RAAS_FORMAT',\n MONGODB_FORMAT: 'MONGODB_FORMAT',\n /** datasource format used for hive tables. */\n HIVE: 'HIVE',\n /**\n * END - Query federation data source formats.\n * Vector search managed index format\n */\n VECTOR_INDEX_FORMAT: 'VECTOR_INDEX_FORMAT',\n /** Brickstore managed online row-oriented storage format. */\n DATABRICKS_ROW_STORE_FORMAT: 'DATABRICKS_ROW_STORE_FORMAT',\n /** Uniform storage format for Hudi */\n DELTA_UNIFORM_HUDI: 'DELTA_UNIFORM_HUDI',\n /** Uniform storage format for Iceberg */\n DELTA_UNIFORM_ICEBERG: 'DELTA_UNIFORM_ICEBERG',\n /** Apache Iceberg DataFormat */\n ICEBERG: 'ICEBERG',\n} as const;\nexport type DataSourceFormat =\n | (typeof DataSourceFormat)[keyof typeof DataSourceFormat]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const SecurableKind = {\n TABLE_STANDARD: 'TABLE_STANDARD',\n TABLE_EXTERNAL: 'TABLE_EXTERNAL',\n TABLE_DELTA: 'TABLE_DELTA',\n TABLE_DELTA_EXTERNAL: 'TABLE_DELTA_EXTERNAL',\n TABLE_VIEW: 'TABLE_VIEW',\n TABLE_METRIC_VIEW: 'TABLE_METRIC_VIEW',\n TABLE_DELTASHARING: 'TABLE_DELTASHARING',\n TABLE_DELTASHARING_MUTABLE: 'TABLE_DELTASHARING_MUTABLE',\n TABLE_VIEW_DELTASHARING: 'TABLE_VIEW_DELTASHARING',\n TABLE_METRIC_VIEW_DELTASHARING: 'TABLE_METRIC_VIEW_DELTASHARING',\n TABLE_MATERIALIZED_VIEW_DELTASHARING: 'TABLE_MATERIALIZED_VIEW_DELTASHARING',\n TABLE_STREAMING_LIVE_TABLE_DELTASHARING:\n 'TABLE_STREAMING_LIVE_TABLE_DELTASHARING',\n TABLE_FOREIGN_DELTASHARING: 'TABLE_FOREIGN_DELTASHARING',\n TABLE_DELTA_ICEBERG_DELTASHARING: 'TABLE_DELTA_ICEBERG_DELTASHARING',\n TABLE_DELTASHARING_OPEN_DIR_BASED: 'TABLE_DELTASHARING_OPEN_DIR_BASED',\n /** TABLE_FEATURE_STORE and TABLE_FEATURE_STORE_EXTERNAL are deprecated. */\n TABLE_FEATURE_STORE: 'TABLE_FEATURE_STORE',\n TABLE_FEATURE_STORE_EXTERNAL: 'TABLE_FEATURE_STORE_EXTERNAL',\n TABLE_STREAMING_LIVE_TABLE: 'TABLE_STREAMING_LIVE_TABLE',\n TABLE_SYSTEM: 'TABLE_SYSTEM',\n TABLE_SYSTEM_DELTASHARING: 'TABLE_SYSTEM_DELTASHARING',\n TABLE_MATERIALIZED_VIEW: 'TABLE_MATERIALIZED_VIEW',\n TABLE_INTERNAL: 'TABLE_INTERNAL',\n TABLE_FOREIGN_BIGQUERY: 'TABLE_FOREIGN_BIGQUERY',\n TABLE_FOREIGN_MYSQL: 'TABLE_FOREIGN_MYSQL',\n TABLE_FOREIGN_ORACLE: 'TABLE_FOREIGN_ORACLE',\n TABLE_FOREIGN_POSTGRESQL: 'TABLE_FOREIGN_POSTGRESQL',\n TABLE_FOREIGN_SQLDW: 'TABLE_FOREIGN_SQLDW',\n TABLE_FOREIGN_REDSHIFT: 'TABLE_FOREIGN_REDSHIFT',\n TABLE_FOREIGN_SNOWFLAKE: 'TABLE_FOREIGN_SNOWFLAKE',\n TABLE_FOREIGN_SQLSERVER: 'TABLE_FOREIGN_SQLSERVER',\n TABLE_FOREIGN_SALESFORCE: 'TABLE_FOREIGN_SALESFORCE',\n TABLE_FOREIGN_SALESFORCE_DATA_CLOUD: 'TABLE_FOREIGN_SALESFORCE_DATA_CLOUD',\n TABLE_FOREIGN_SALESFORCE_DATA_CLOUD_FILE_SHARING:\n 'TABLE_FOREIGN_SALESFORCE_DATA_CLOUD_FILE_SHARING',\n TABLE_FOREIGN_SALESFORCE_DATA_CLOUD_FILE_SHARING_VIEW:\n 'TABLE_FOREIGN_SALESFORCE_DATA_CLOUD_FILE_SHARING_VIEW',\n TABLE_FOREIGN_TERADATA: 'TABLE_FOREIGN_TERADATA',\n TABLE_FOREIGN_NETSUITE: 'TABLE_FOREIGN_NETSUITE',\n TABLE_FOREIGN_DATABRICKS: 'TABLE_FOREIGN_DATABRICKS',\n TABLE_FOREIGN_WORKDAY_RAAS: 'TABLE_FOREIGN_WORKDAY_RAAS',\n /** Deprecated in favor of more specific types below */\n TABLE_FOREIGN_HIVE_METASTORE: 'TABLE_FOREIGN_HIVE_METASTORE',\n TABLE_FOREIGN_HIVE_METASTORE_MANAGED: 'TABLE_FOREIGN_HIVE_METASTORE_MANAGED',\n TABLE_FOREIGN_HIVE_METASTORE_DBFS_MANAGED:\n 'TABLE_FOREIGN_HIVE_METASTORE_DBFS_MANAGED',\n TABLE_FOREIGN_HIVE_METASTORE_EXTERNAL:\n 'TABLE_FOREIGN_HIVE_METASTORE_EXTERNAL',\n TABLE_FOREIGN_HIVE_METASTORE_DBFS_EXTERNAL:\n 'TABLE_FOREIGN_HIVE_METASTORE_DBFS_EXTERNAL',\n TABLE_FOREIGN_HIVE_METASTORE_VIEW: 'TABLE_FOREIGN_HIVE_METASTORE_VIEW',\n TABLE_FOREIGN_HIVE_METASTORE_DBFS_VIEW:\n 'TABLE_FOREIGN_HIVE_METASTORE_DBFS_VIEW',\n TABLE_FOREIGN_HIVE_METASTORE_SHALLOW_CLONE_MANAGED:\n 'TABLE_FOREIGN_HIVE_METASTORE_SHALLOW_CLONE_MANAGED',\n TABLE_FOREIGN_HIVE_METASTORE_DBFS_SHALLOW_CLONE_MANAGED:\n 'TABLE_FOREIGN_HIVE_METASTORE_DBFS_SHALLOW_CLONE_MANAGED',\n TABLE_FOREIGN_HIVE_METASTORE_SHALLOW_CLONE_EXTERNAL:\n 'TABLE_FOREIGN_HIVE_METASTORE_SHALLOW_CLONE_EXTERNAL',\n TABLE_FOREIGN_HIVE_METASTORE_DBFS_SHALLOW_CLONE_EXTERNAL:\n 'TABLE_FOREIGN_HIVE_METASTORE_DBFS_SHALLOW_CLONE_EXTERNAL',\n TABLE_FOREIGN_MONGODB: 'TABLE_FOREIGN_MONGODB',\n TABLE_DELTA_UNIFORM_HUDI_EXTERNAL: 'TABLE_DELTA_UNIFORM_HUDI_EXTERNAL',\n TABLE_DELTA_UNIFORM_ICEBERG_EXTERNAL: 'TABLE_DELTA_UNIFORM_ICEBERG_EXTERNAL',\n TABLE_DELTA_UNIFORM_ICEBERG_FOREIGN_HIVE_METASTORE_EXTERNAL:\n 'TABLE_DELTA_UNIFORM_ICEBERG_FOREIGN_HIVE_METASTORE_EXTERNAL',\n TABLE_DELTA_UNIFORM_ICEBERG_FOREIGN_HIVE_METASTORE_MANAGED:\n 'TABLE_DELTA_UNIFORM_ICEBERG_FOREIGN_HIVE_METASTORE_MANAGED',\n TABLE_DELTA_UNIFORM_ICEBERG_FOREIGN_SNOWFLAKE:\n 'TABLE_DELTA_UNIFORM_ICEBERG_FOREIGN_SNOWFLAKE',\n /**\n * The above uniform securableKinds come from different data sources,\n * each creating a foreign catalog in Databricks with its own capabilities.\n * UC uses these attributes to interact with remote connections.\n * For shared foreign iceberg tables, all are under the Delta Sharing catalog\n * with the same capabilities, so the recipient UC does not need to connect\n * to the remote source.\n */\n TABLE_DELTA_UNIFORM_ICEBERG_FOREIGN_DELTASHARING:\n 'TABLE_DELTA_UNIFORM_ICEBERG_FOREIGN_DELTASHARING',\n /**\n * This is the delta sharing version of TABLE_DELTA_UNIFORM_ICEBERG_EXTERNAL.\n * Unlike the above foreign iceberg kinds which originate from external catalogs,\n * this represents an external uniform iceberg table shared via Delta Sharing.\n */\n TABLE_DELTA_UNIFORM_ICEBERG_EXTERNAL_DELTASHARING:\n 'TABLE_DELTA_UNIFORM_ICEBERG_EXTERNAL_DELTASHARING',\n /** These represent 2 variations of Managed Iceberg tables. See ManagedIcebergTableUtils.scala for more details. */\n TABLE_ICEBERG_UNIFORM_MANAGED: 'TABLE_ICEBERG_UNIFORM_MANAGED',\n TABLE_DELTA_ICEBERG_MANAGED: 'TABLE_DELTA_ICEBERG_MANAGED',\n TABLE_ONLINE_VECTOR_INDEX_REPLICA: 'TABLE_ONLINE_VECTOR_INDEX_REPLICA',\n TABLE_ONLINE_VECTOR_INDEX_DIRECT: 'TABLE_ONLINE_VECTOR_INDEX_DIRECT',\n TABLE_ONLINE_VIEW: 'TABLE_ONLINE_VIEW',\n TABLE_DB_STORAGE: 'TABLE_DB_STORAGE',\n TABLE_MANAGED_POSTGRESQL: 'TABLE_MANAGED_POSTGRESQL',\n} as const;\nexport type SecurableKind =\n | (typeof SecurableKind)[keyof typeof SecurableKind]\n | (string & {});\n\n/** The type of Unity Catalog securable. */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const SecurableType = {\n CATALOG: 'CATALOG',\n SCHEMA: 'SCHEMA',\n TABLE: 'TABLE',\n STORAGE_CREDENTIAL: 'STORAGE_CREDENTIAL',\n EXTERNAL_LOCATION: 'EXTERNAL_LOCATION',\n FUNCTION: 'FUNCTION',\n SHARE: 'SHARE',\n PROVIDER: 'PROVIDER',\n RECIPIENT: 'RECIPIENT',\n CLEAN_ROOM: 'CLEAN_ROOM',\n METASTORE: 'METASTORE',\n PIPELINE: 'PIPELINE',\n VOLUME: 'VOLUME',\n CONNECTION: 'CONNECTION',\n CREDENTIAL: 'CREDENTIAL',\n EXTERNAL_METADATA: 'EXTERNAL_METADATA',\n /** TODO: [UC-2980] Staging tables aren't full-fleged securables yet. */\n STAGING_TABLE: 'STAGING_TABLE',\n} as const;\nexport type SecurableType =\n | (typeof SecurableType)[keyof typeof SecurableType]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const SseEncryptionAlgorithm = {\n SSE_ENCRYPTION_ALGORITHM_UNSPECIFIED: 'SSE_ENCRYPTION_ALGORITHM_UNSPECIFIED',\n AWS_SSE_S3: 'AWS_SSE_S3',\n AWS_SSE_KMS: 'AWS_SSE_KMS',\n} as const;\nexport type SseEncryptionAlgorithm =\n | (typeof SseEncryptionAlgorithm)[keyof typeof SseEncryptionAlgorithm]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const TableType = {\n MANAGED: 'MANAGED',\n EXTERNAL: 'EXTERNAL',\n VIEW: 'VIEW',\n MATERIALIZED_VIEW: 'MATERIALIZED_VIEW',\n STREAMING_TABLE: 'STREAMING_TABLE',\n MANAGED_SHALLOW_CLONE: 'MANAGED_SHALLOW_CLONE',\n FOREIGN: 'FOREIGN',\n EXTERNAL_SHALLOW_CLONE: 'EXTERNAL_SHALLOW_CLONE',\n METRIC_VIEW: 'METRIC_VIEW',\n} as const;\nexport type TableType =\n | (typeof TableType)[keyof typeof TableType]\n | (string & {});\n\n/**\n * During the OAuth flow, specifies which stage the option should be displayed in the UI.\n * OAUTH_STAGE_UNSPECIFIED is the default value for options unrelated to the OAuth flow.\n * BEFORE_AUTHORIZATION_CODE corresponds to options necessary to initiate the OAuth process.\n * BEFORE_ACCESS_TOKEN corresponds to options that are necessary to create a foreign connection,\n * but that should be displayed after the authorization code has already been received.\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const OptionSpec_OauthStage = {\n OAUTH_STAGE_UNSPECIFIED: 'OAUTH_STAGE_UNSPECIFIED',\n BEFORE_AUTHORIZATION_CODE: 'BEFORE_AUTHORIZATION_CODE',\n BEFORE_ACCESS_TOKEN: 'BEFORE_ACCESS_TOKEN',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type OptionSpec_OauthStage =\n | (typeof OptionSpec_OauthStage)[keyof typeof OptionSpec_OauthStage]\n | (string & {});\n\n/**\n * Type of the option, we purposely follow JavaScript types so that\n * the UI can map the options to JS types.\n * https://www.w3schools.com/js/js_datatypes.asp\n * Enum is a special case that it's just string with selections.\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const OptionSpec_OptionType = {\n OPTION_TYPE_UNSPECIFIED: 'OPTION_TYPE_UNSPECIFIED',\n OPTION_BOOLEAN: 'OPTION_BOOLEAN',\n OPTION_NUMBER: 'OPTION_NUMBER',\n OPTION_BIGINT: 'OPTION_BIGINT',\n OPTION_STRING: 'OPTION_STRING',\n OPTION_ENUM: 'OPTION_ENUM',\n OPTION_SERVICE_CREDENTIAL: 'OPTION_SERVICE_CREDENTIAL',\n OPTION_MULTILINE_STRING: 'OPTION_MULTILINE_STRING',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type OptionSpec_OptionType =\n | (typeof OptionSpec_OptionType)[keyof typeof OptionSpec_OptionType]\n | (string & {});\n\nexport interface ColumnInfo {\n /** Name of Column. */\n name?: string | undefined;\n /** Full data type specification as SQL/catalogString text. */\n typeText?: string | undefined;\n typeName?: ColumnTypeName | undefined;\n /** Ordinal position of column (starting at position 0). */\n position?: number | undefined;\n /** Digits of precision; required for DecimalTypes. */\n typePrecision?: number | undefined;\n /** Digits to right of decimal; Required for DecimalTypes. */\n typeScale?: number | undefined;\n /** Format of IntervalType. */\n typeIntervalType?: string | undefined;\n /** Full data type specification, JSON-serialized. */\n typeJson?: string | undefined;\n /** User-provided free-form text description. */\n comment?: string | undefined;\n /** Whether field may be Null (default: true). */\n nullable?: boolean | undefined;\n /** Partition index for column. */\n partitionIndex?: number | undefined;\n mask?: ColumnMask | undefined;\n}\n\nexport interface ColumnMask {\n /** The full name of the column mask SQL UDF. */\n functionName?: string | undefined;\n /**\n * The list of additional table columns to be passed as input to the column mask function. The\n * first arg of the mask function should be of the type of the column being masked and the\n * types of the rest of the args should match the types of columns in 'using_column_names'.\n */\n usingColumnNames?: string[] | undefined;\n /**\n * The list of additional table columns or literals to be passed as additional arguments to\n * a column mask function. This is the replacement of the deprecated using_column_names field and\n * carries information about the types (alias or constant) of the arguments to the mask function.\n */\n usingArguments?: PolicyFunctionArgument[] | undefined;\n}\n\n/** A connection that is dependent on a SQL object. */\nexport interface ConnectionDependency {\n /** Full name of the dependent connection, in the form of __connection_name__. */\n connectionName?: string | undefined;\n}\n\nexport interface CreateTableConstraintRequest {\n /** The full name of the table referenced by the constraint. */\n fullNameArg?: string | undefined;\n constraint?: TableConstraint | undefined;\n}\n\nexport interface CreateTableRequest {\n /** Name of table, relative to parent schema. */\n name?: string | 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 tableType?: TableType | undefined;\n dataSourceFormat?: DataSourceFormat | undefined;\n /** Storage root URL for table (for **MANAGED**, **EXTERNAL** tables). */\n storageLocation?: string | undefined;\n /** View definition SQL (when __table_type__ is **VIEW**, **MATERIALIZED_VIEW**, or **STREAMING_TABLE**) */\n viewDefinition?: string | undefined;\n /**\n * View dependencies (when table_type == **VIEW** or **MATERIALIZED_VIEW**, **STREAMING_TABLE**)\n * - when DependencyList is None, the dependency is not provided;\n * - when DependencyList is an empty list, the dependency is provided but is empty;\n * - when DependencyList is not an empty list, dependencies are provided and recorded.\n * Note: this field is not set in the output of the __listTables__ API.\n */\n viewDependencies?: DependencyList | undefined;\n /** List of schemes whose objects can be referenced without qualification. */\n sqlPath?: string | undefined;\n /** Username of current owner of table. */\n owner?: string | undefined;\n /** User-provided free-form text description. */\n comment?: string | undefined;\n /** Name of the storage credential, when a storage credential is configured for use with this table. */\n storageCredentialName?: string | undefined;\n /** List of table constraints. Note: this field is not set in the output of the __listTables__ API. */\n tableConstraints?: TableConstraint[] | undefined;\n rowFilter?: RowFilter | undefined;\n /** The pipeline ID of the table. Applicable for tables created by pipelines (Materialized View, Streaming Table, etc.). */\n pipelineId?: string | undefined;\n enablePredictiveOptimization?: string | undefined;\n /** Unique identifier of parent metastore. */\n metastoreId?: string | undefined;\n /** Full name of table, in form of __catalog_name__.__schema_name__.__table_name__ */\n fullName?: string | undefined;\n /** Unique ID of the Data Access Configuration to use with the table data. */\n dataAccessConfigurationId?: string | undefined;\n /** Time at which this table was created, in epoch milliseconds. */\n createdAt?: bigint | undefined;\n /** Username of table creator. */\n createdBy?: string | undefined;\n /** Time at which this table was last modified, in epoch milliseconds. */\n updatedAt?: bigint | undefined;\n /** Username of user who last modified the table. */\n updatedBy?: string | undefined;\n /** The unique identifier of the table. */\n tableId?: string | undefined;\n /** Information pertaining to current state of the delta table. */\n deltaRuntimePropertiesKvpairs?: DeltaRuntimePropertiesKvPairs | undefined;\n /** Time at which this table was deleted, in epoch milliseconds. Field is omitted if table is not deleted. */\n deletedAt?: bigint | undefined;\n effectivePredictiveOptimizationFlag?:\n | EffectivePredictiveOptimizationFlag\n | undefined;\n /** The AWS access point to use when accesing s3 for this external location. */\n accessPoint?: string | undefined;\n /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */\n browseOnly?: boolean | undefined;\n encryptionDetails?: EncryptionDetails | undefined;\n /** SecurableKindManifest of table, including capabilities the table has. */\n securableKindManifest?: SecurableKindManifest | undefined;\n /** The array of __ColumnInfo__ definitions of the table's columns. */\n columns?: ColumnInfo[] | undefined;\n /** A map of key-value properties attached to the securable. */\n properties?: Record<string, string> | undefined;\n}\n\n/** A credential that is dependent on a SQL object. */\nexport interface CredentialDependency {\n /** Full name of the dependent credential, in the form of __credential_name__. */\n credentialName?: string | undefined;\n}\n\nexport interface DeleteTableConstraintRequest {\n /** Full name of the table referenced by the constraint. */\n fullNameArg?: string | undefined;\n /** The name of the constraint to delete. */\n constraintName?: string | undefined;\n /**\n * If true, try deleting all child constraints of the current constraint.\n * If false, reject this operation if the current constraint has any child constraints.\n */\n cascade?: boolean | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface DeleteTableConstraintResponse {}\n\nexport interface DeleteTableRequest {\n /** Full name of the table. */\n fullNameArg?: string | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface DeleteTableResponse {}\n\n/**\n * Properties pertaining to the current state of the delta table as given by the commit server.\n * This does not contain **delta.*** (input) properties in __TableInfo.properties__.\n */\nexport interface DeltaRuntimePropertiesKvPairs {\n /** A map of key-value properties attached to the securable. */\n deltaRuntimeProperties?: Record<string, string> | undefined;\n}\n\n/**\n * A dependency of a SQL object. One of the following fields must be defined:\n * __table__, __function__, __connection__, __credential__, __volume__, or __secret__.\n */\nexport interface Dependency {\n value?:\n | {$case: 'table'; table: TableDependency}\n | {$case: 'function'; function: FunctionDependency}\n | {$case: 'connection'; connection: ConnectionDependency}\n | {$case: 'credential'; credential: CredentialDependency}\n | undefined;\n}\n\n/** A list of dependencies. */\nexport interface DependencyList {\n /** Array of dependencies. */\n dependencies?: Dependency[] | undefined;\n}\n\nexport interface EffectivePredictiveOptimizationFlag {\n /** Whether predictive optimization should be enabled for this object and objects under it. */\n value?: string | undefined;\n /** The type of the object from which the flag was inherited. If there was no inheritance, this field is left blank. */\n inheritedFromType?: string | undefined;\n /** The name of the object from which the flag was inherited. If there was no inheritance, this field is left blank. */\n inheritedFromName?: string | undefined;\n}\n\n/** Encryption options that apply to clients connecting to cloud storage. */\nexport interface EncryptionDetails {\n encryptionDetailsType?:\n | {\n $case: 'sseEncryptionDetails';\n /** Server-Side Encryption properties for clients communicating with AWS s3. */\n sseEncryptionDetails: SseEncryptionDetails;\n }\n | undefined;\n}\n\nexport interface ForeignKeyConstraint {\n /** The name of the constraint. */\n name?: string | undefined;\n /** Column names for this constraint. */\n childColumns?: string[] | undefined;\n /** The full name of the parent constraint. */\n parentTable?: string | undefined;\n /** Column names for this constraint. */\n parentColumns?: string[] | undefined;\n /** True if the constraint is RELY, false or unset if NORELY. */\n rely?: boolean | undefined;\n}\n\n/** A function that is dependent on a SQL object. */\nexport interface FunctionDependency {\n /** Full name of the dependent function, in the form of __catalog_name__.__schema_name__.__function_name__. */\n functionFullName?: string | undefined;\n}\n\nexport interface GetTableRequest {\n /** Full name of the table. */\n fullNameArg?: string | undefined;\n /** Whether delta metadata should be included in the response. */\n includeDeltaMetadata?: boolean | undefined;\n /** Whether to include tables in the response for which the principal can only access selective metadata for. */\n includeBrowse?: boolean | undefined;\n /** Whether to include a manifest containing table capabilities in the response. */\n includeManifestCapabilities?: boolean | undefined;\n}\n\nexport interface ListTableSummariesRequest {\n /** Name of parent catalog for tables of interest. */\n catalogName?: string | undefined;\n /**\n * A sql LIKE pattern (% and _) for schema names.\n * All schemas will be returned if not set or empty.\n */\n schemaNamePattern?: string | undefined;\n /**\n * A sql LIKE pattern (% and _) for table names.\n * All tables will be returned if not set or empty.\n */\n tableNamePattern?: string | undefined;\n /**\n * Maximum number of summaries for tables to return.\n * If not set, the page length is set to a server configured value (10000, as of 1/5/2024).\n * - when set to a value greater than 0, the page length is the minimum of this value and a server configured value (10000, as of 1/5/2024);\n * - when set to 0, the page length is set to a server configured value (10000, as of 1/5/2024) (recommended);\n * - when set to a value less than 0, an invalid parameter error is returned;\n */\n maxResults?: number | undefined;\n /** Opaque pagination token to go to next page based on previous query. */\n pageToken?: string | undefined;\n /** Whether to include a manifest containing table capabilities in the response. */\n includeManifestCapabilities?: boolean | undefined;\n}\n\nexport interface ListTableSummariesResponse {\n /** List of table summaries. */\n tables?: TableSummary[] | undefined;\n /**\n * Opaque token to retrieve the next page of results. Absent if there are no more pages.\n * __page_token__ should be set to this value for the next request (for the next page of results).\n */\n nextPageToken?: string | undefined;\n}\n\nexport interface ListTablesRequest {\n /** Name of parent catalog for tables of interest. */\n catalogName?: string | undefined;\n /** Parent schema of tables. */\n schemaName?: string | undefined;\n /**\n * Maximum number of tables to return.\n * If not set, all the tables are returned (not recommended).\n * - when set to a value greater than 0, the page length is the minimum of this value and a server configured value;\n * - when set to 0, the page length is set to a server configured value (recommended);\n * - when set to a value less than 0, an invalid parameter error is returned;\n */\n maxResults?: number | undefined;\n /** Opaque token to send for the next page of results (pagination). */\n pageToken?: string | undefined;\n /** Whether to omit the columns of the table from the response or not. */\n omitColumns?: boolean | undefined;\n /** Whether to omit the properties of the table from the response or not. */\n omitProperties?: boolean | undefined;\n /** Whether to omit the username of the table (e.g. owner, updated_by, created_by) from the response or not. */\n omitUsername?: boolean | undefined;\n /** Whether to include tables in the response for which the principal can only access selective metadata for. */\n includeBrowse?: boolean | undefined;\n /** Whether to include a manifest containing table capabilities in the response. */\n includeManifestCapabilities?: boolean | undefined;\n}\n\nexport interface ListTablesResponse {\n /** An array of table information objects. */\n tables?: TableInfo[] | undefined;\n /**\n * Opaque token to retrieve the next page of results. Absent if there are no more pages.\n * __page_token__ should be set to this value for the next request (for the next page of results).\n */\n nextPageToken?: string | undefined;\n}\n\nexport interface NamedTableConstraint {\n /** The name of the constraint. */\n name?: string | undefined;\n}\n\n/**\n * Spec of an allowed option on a securable kind and its attributes.\n * This is mostly used by UI to provide user friendly hints and descriptions\n * in order to facilitate the securable creation process.\n */\nexport interface OptionSpec {\n /** The unique name of the option. */\n name?: string | undefined;\n /** The type of the option. */\n type?: OptionSpec_OptionType | undefined;\n /** The default value of the option, for example, value '443' for 'port' option. */\n defaultValue?: string | undefined;\n /**\n * For drop down / radio button selections, UI will want to know the possible\n * input values, it can also be used by other option types to limit input selections.\n */\n allowedValues?: string[] | undefined;\n /**\n * The hint is used on the UI to suggest what the input value\n * can possibly be like, for example: example.com for 'host' option.\n * Unlike default value, it will not be applied automatically without user input.\n */\n hint?: string | undefined;\n /** A concise user facing description of what the input value of this option should look like. */\n description?: string | undefined;\n /** Is the option required. */\n isRequired?: boolean | undefined;\n /** Is the option value considered secret and thus redacted on the UI. */\n isSecret?: boolean | undefined;\n /** Is the option value not user settable and is thus not shown on the UI. */\n isHidden?: boolean | undefined;\n /** Is the option updatable by users. */\n isUpdatable?: boolean | undefined;\n /** Specifies when the option value is displayed on the UI within the OAuth flow. */\n oauthStage?: OptionSpec_OauthStage | undefined;\n /** Specifies whether this option is safe to log, i.e. no sensitive information. */\n isLoggable?: boolean | undefined;\n /** Indicates whether an option can be provided by users in the create/update path of an entity. */\n isCreatable?: boolean | undefined;\n /** Indicates whether an option should be displayed with copy button on the UI. */\n isCopiable?: boolean | undefined;\n}\n\n/**\n * A positional argument passed to a row filter or column mask function.\n * Distinguishes between column references and literals.\n */\nexport interface PolicyFunctionArgument {\n arg?:\n | {\n $case: 'column';\n /** A column reference. */\n column: string;\n }\n | {\n $case: 'constant';\n /** A constant literal. */\n constant: string;\n }\n | undefined;\n}\n\nexport interface PrimaryKeyConstraint {\n /** The name of the constraint. */\n name?: string | undefined;\n /** Column names for this constraint. */\n childColumns?: string[] | undefined;\n /** Column names that represent a timeseries. */\n timeseriesColumns?: string[] | undefined;\n /** True if the constraint is RELY, false or unset if NORELY. */\n rely?: boolean | undefined;\n}\n\nexport interface RowFilter {\n /** The full name of the row filter SQL UDF. */\n functionName?: string | undefined;\n /**\n * The list of table columns to be passed as input to the row filter function. The column types\n * should match the types of the filter function arguments.\n */\n inputColumnNames?: string[] | undefined;\n /**\n * The list of additional table columns or literals to be passed as additional arguments to\n * a row filter function. This is the replacement of the deprecated input_column_names field and\n * carries information about the types (alias or constant) of the arguments to the filter function.\n */\n inputArguments?: PolicyFunctionArgument[] | undefined;\n}\n\n/** Manifest of a specific securable kind. */\nexport interface SecurableKindManifest {\n /** Securable Type of the kind. */\n securableType?: SecurableType | undefined;\n /** Securable kind to get manifest of. */\n securableKind?: SecurableKind | undefined;\n /** Privileges that can be assigned to the securable. */\n assignablePrivileges?: string[] | undefined;\n /** Detailed specs of allowed options. */\n options?: OptionSpec[] | undefined;\n /** A list of capabilities in the securable kind. */\n capabilities?: string[] | undefined;\n}\n\n/** Server-Side Encryption properties for clients communicating with AWS s3. */\nexport interface SseEncryptionDetails {\n /** Sets the value of the 'x-amz-server-side-encryption' header in S3 request. */\n algorithm?: SseEncryptionAlgorithm | undefined;\n /**\n * Optional. The ARN of the SSE-KMS key used with the S3 location, when algorithm = \"SSE-KMS\".\n * Sets the value of the 'x-amz-server-side-encryption-aws-kms-key-id' header.\n */\n awsKmsKeyArn?: string | undefined;\n}\n\n/**\n * A table constraint, as defined by *one* of the following fields being set:\n * __primary_key_constraint__, __foreign_key_constraint__, __named_table_constraint__.\n */\nexport interface TableConstraint {\n constraint?:\n | {\n $case: 'primaryKeyConstraint';\n primaryKeyConstraint: PrimaryKeyConstraint;\n }\n | {\n $case: 'foreignKeyConstraint';\n foreignKeyConstraint: ForeignKeyConstraint;\n }\n | {\n $case: 'namedTableConstraint';\n namedTableConstraint: NamedTableConstraint;\n }\n | undefined;\n}\n\n/** A table that is dependent on a SQL object. */\nexport interface TableDependency {\n /** Full name of the dependent table, in the form of __catalog_name__.__schema_name__.__table_name__. */\n tableFullName?: string | undefined;\n}\n\nexport interface TableExistsRequest {\n /** Full name of the table. */\n fullNameArg?: string | undefined;\n}\n\nexport interface TableExistsResponse {\n /** Whether the table exists or not. */\n tableExists?: boolean | undefined;\n}\n\nexport interface TableInfo {\n /** Name of table, relative to parent schema. */\n name?: string | 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 tableType?: TableType | undefined;\n dataSourceFormat?: DataSourceFormat | undefined;\n /** Storage root URL for table (for **MANAGED**, **EXTERNAL** tables). */\n storageLocation?: string | undefined;\n /** View definition SQL (when __table_type__ is **VIEW**, **MATERIALIZED_VIEW**, or **STREAMING_TABLE**) */\n viewDefinition?: string | undefined;\n /**\n * View dependencies (when table_type == **VIEW** or **MATERIALIZED_VIEW**, **STREAMING_TABLE**)\n * - when DependencyList is None, the dependency is not provided;\n * - when DependencyList is an empty list, the dependency is provided but is empty;\n * - when DependencyList is not an empty list, dependencies are provided and recorded.\n * Note: this field is not set in the output of the __listTables__ API.\n */\n viewDependencies?: DependencyList | undefined;\n /** List of schemes whose objects can be referenced without qualification. */\n sqlPath?: string | undefined;\n /** Username of current owner of table. */\n owner?: string | undefined;\n /** User-provided free-form text description. */\n comment?: string | undefined;\n /** Name of the storage credential, when a storage credential is configured for use with this table. */\n storageCredentialName?: string | undefined;\n /** List of table constraints. Note: this field is not set in the output of the __listTables__ API. */\n tableConstraints?: TableConstraint[] | undefined;\n rowFilter?: RowFilter | undefined;\n /** The pipeline ID of the table. Applicable for tables created by pipelines (Materialized View, Streaming Table, etc.). */\n pipelineId?: string | undefined;\n enablePredictiveOptimization?: string | undefined;\n /** Unique identifier of parent metastore. */\n metastoreId?: string | undefined;\n /** Full name of table, in form of __catalog_name__.__schema_name__.__table_name__ */\n fullName?: string | undefined;\n /** Unique ID of the Data Access Configuration to use with the table data. */\n dataAccessConfigurationId?: string | undefined;\n /** Time at which this table was created, in epoch milliseconds. */\n createdAt?: bigint | undefined;\n /** Username of table creator. */\n createdBy?: string | undefined;\n /** Time at which this table was last modified, in epoch milliseconds. */\n updatedAt?: bigint | undefined;\n /** Username of user who last modified the table. */\n updatedBy?: string | undefined;\n /** The unique identifier of the table. */\n tableId?: string | undefined;\n /** Information pertaining to current state of the delta table. */\n deltaRuntimePropertiesKvpairs?: DeltaRuntimePropertiesKvPairs | undefined;\n /** Time at which this table was deleted, in epoch milliseconds. Field is omitted if table is not deleted. */\n deletedAt?: bigint | undefined;\n effectivePredictiveOptimizationFlag?:\n | EffectivePredictiveOptimizationFlag\n | undefined;\n /** The AWS access point to use when accesing s3 for this external location. */\n accessPoint?: string | undefined;\n /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */\n browseOnly?: boolean | undefined;\n encryptionDetails?: EncryptionDetails | undefined;\n /** SecurableKindManifest of table, including capabilities the table has. */\n securableKindManifest?: SecurableKindManifest | undefined;\n /** The array of __ColumnInfo__ definitions of the table's columns. */\n columns?: ColumnInfo[] | undefined;\n /** A map of key-value properties attached to the securable. */\n properties?: Record<string, string> | undefined;\n}\n\nexport interface TableSummary {\n /** The full name of the table. */\n fullName?: string | undefined;\n tableType?: TableType | undefined;\n /** SecurableKindManifest of table, including capabilities the table has. */\n securableKindManifest?: SecurableKindManifest | undefined;\n}\n\nexport interface UpdateTableRequest {\n /** Full name of the table. */\n fullNameArg?: string | undefined;\n /** Name of table, relative to parent schema. */\n name?: string | 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 tableType?: TableType | undefined;\n dataSourceFormat?: DataSourceFormat | undefined;\n /** Storage root URL for table (for **MANAGED**, **EXTERNAL** tables). */\n storageLocation?: string | undefined;\n /** View definition SQL (when __table_type__ is **VIEW**, **MATERIALIZED_VIEW**, or **STREAMING_TABLE**) */\n viewDefinition?: string | undefined;\n /**\n * View dependencies (when table_type == **VIEW** or **MATERIALIZED_VIEW**, **STREAMING_TABLE**)\n * - when DependencyList is None, the dependency is not provided;\n * - when DependencyList is an empty list, the dependency is provided but is empty;\n * - when DependencyList is not an empty list, dependencies are provided and recorded.\n * Note: this field is not set in the output of the __listTables__ API.\n */\n viewDependencies?: DependencyList | undefined;\n /** List of schemes whose objects can be referenced without qualification. */\n sqlPath?: string | undefined;\n /** Username of current owner of table. */\n owner?: string | undefined;\n /** User-provided free-form text description. */\n comment?: string | undefined;\n /** Name of the storage credential, when a storage credential is configured for use with this table. */\n storageCredentialName?: string | undefined;\n /** List of table constraints. Note: this field is not set in the output of the __listTables__ API. */\n tableConstraints?: TableConstraint[] | undefined;\n rowFilter?: RowFilter | undefined;\n /** The pipeline ID of the table. Applicable for tables created by pipelines (Materialized View, Streaming Table, etc.). */\n pipelineId?: string | undefined;\n enablePredictiveOptimization?: string | undefined;\n /** Unique identifier of parent metastore. */\n metastoreId?: string | undefined;\n /** Full name of table, in form of __catalog_name__.__schema_name__.__table_name__ */\n fullName?: string | undefined;\n /** Unique ID of the Data Access Configuration to use with the table data. */\n dataAccessConfigurationId?: string | undefined;\n /** Time at which this table was created, in epoch milliseconds. */\n createdAt?: bigint | undefined;\n /** Username of table creator. */\n createdBy?: string | undefined;\n /** Time at which this table was last modified, in epoch milliseconds. */\n updatedAt?: bigint | undefined;\n /** Username of user who last modified the table. */\n updatedBy?: string | undefined;\n /** The unique identifier of the table. */\n tableId?: string | undefined;\n /** Information pertaining to current state of the delta table. */\n deltaRuntimePropertiesKvpairs?: DeltaRuntimePropertiesKvPairs | undefined;\n /** Time at which this table was deleted, in epoch milliseconds. Field is omitted if table is not deleted. */\n deletedAt?: bigint | undefined;\n effectivePredictiveOptimizationFlag?:\n | EffectivePredictiveOptimizationFlag\n | undefined;\n /** The AWS access point to use when accesing s3 for this external location. */\n accessPoint?: string | undefined;\n /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */\n browseOnly?: boolean | undefined;\n encryptionDetails?: EncryptionDetails | undefined;\n /** SecurableKindManifest of table, including capabilities the table has. */\n securableKindManifest?: SecurableKindManifest | undefined;\n /** The array of __ColumnInfo__ definitions of the table's columns. */\n columns?: ColumnInfo[] | undefined;\n /** A map of key-value properties attached to the securable. */\n properties?: Record<string, string> | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface UpdateTableResponse {}\n\nexport const unmarshalColumnInfoSchema: z.ZodType<ColumnInfo> = z\n .object({\n name: z.string().optional(),\n type_text: z.string().optional(),\n type_name: z.string().optional(),\n position: z.number().optional(),\n type_precision: z.number().optional(),\n type_scale: z.number().optional(),\n type_interval_type: z.string().optional(),\n type_json: z.string().optional(),\n comment: z.string().optional(),\n nullable: z.boolean().optional(),\n partition_index: z.number().optional(),\n mask: z.lazy(() => unmarshalColumnMaskSchema).optional(),\n })\n .transform(d => ({\n name: d.name,\n typeText: d.type_text,\n typeName: d.type_name,\n position: d.position,\n typePrecision: d.type_precision,\n typeScale: d.type_scale,\n typeIntervalType: d.type_interval_type,\n typeJson: d.type_json,\n comment: d.comment,\n nullable: d.nullable,\n partitionIndex: d.partition_index,\n mask: d.mask,\n }));\n\nexport const unmarshalColumnMaskSchema: z.ZodType<ColumnMask> = z\n .object({\n function_name: z.string().optional(),\n using_column_names: z.array(z.string()).optional(),\n using_arguments: z\n .array(z.lazy(() => unmarshalPolicyFunctionArgumentSchema))\n .optional(),\n })\n .transform(d => ({\n functionName: d.function_name,\n usingColumnNames: d.using_column_names,\n usingArguments: d.using_arguments,\n }));\n\nexport const unmarshalConnectionDependencySchema: z.ZodType<ConnectionDependency> =\n z\n .object({\n connection_name: z.string().optional(),\n })\n .transform(d => ({\n connectionName: d.connection_name,\n }));\n\nexport const unmarshalCredentialDependencySchema: z.ZodType<CredentialDependency> =\n z\n .object({\n credential_name: z.string().optional(),\n })\n .transform(d => ({\n credentialName: d.credential_name,\n }));\n\nexport const unmarshalDeleteTableConstraintResponseSchema: z.ZodType<DeleteTableConstraintResponse> =\n z.object({});\n\nexport const unmarshalDeleteTableResponseSchema: z.ZodType<DeleteTableResponse> =\n z.object({});\n\nexport const unmarshalDeltaRuntimePropertiesKvPairsSchema: z.ZodType<DeltaRuntimePropertiesKvPairs> =\n z\n .object({\n delta_runtime_properties: z.record(z.string(), z.string()).optional(),\n })\n .transform(d => ({\n deltaRuntimeProperties: d.delta_runtime_properties,\n }));\n\nexport const unmarshalDependencySchema: z.ZodType<Dependency> = z\n .object({\n table: z.lazy(() => unmarshalTableDependencySchema).optional(),\n function: z.lazy(() => unmarshalFunctionDependencySchema).optional(),\n connection: z.lazy(() => unmarshalConnectionDependencySchema).optional(),\n credential: z.lazy(() => unmarshalCredentialDependencySchema).optional(),\n })\n .transform(d => ({\n value:\n d.table !== undefined\n ? {$case: 'table' as const, table: d.table}\n : d.function !== undefined\n ? {$case: 'function' as const, function: d.function}\n : d.connection !== undefined\n ? {$case: 'connection' as const, connection: d.connection}\n : d.credential !== undefined\n ? {$case: 'credential' as const, credential: d.credential}\n : undefined,\n }));\n\nexport const unmarshalDependencyListSchema: z.ZodType<DependencyList> = z\n .object({\n dependencies: z.array(z.lazy(() => unmarshalDependencySchema)).optional(),\n })\n .transform(d => ({\n dependencies: d.dependencies,\n }));\n\nexport const unmarshalEffectivePredictiveOptimizationFlagSchema: z.ZodType<EffectivePredictiveOptimizationFlag> =\n z\n .object({\n value: z.string().optional(),\n inherited_from_type: z.string().optional(),\n inherited_from_name: z.string().optional(),\n })\n .transform(d => ({\n value: d.value,\n inheritedFromType: d.inherited_from_type,\n inheritedFromName: d.inherited_from_name,\n }));\n\nexport const unmarshalEncryptionDetailsSchema: z.ZodType<EncryptionDetails> = z\n .object({\n sse_encryption_details: z\n .lazy(() => unmarshalSseEncryptionDetailsSchema)\n .optional(),\n })\n .transform(d => ({\n encryptionDetailsType:\n d.sse_encryption_details !== undefined\n ? {\n $case: 'sseEncryptionDetails' as const,\n sseEncryptionDetails: d.sse_encryption_details,\n }\n : undefined,\n }));\n\nexport const unmarshalForeignKeyConstraintSchema: z.ZodType<ForeignKeyConstraint> =\n z\n .object({\n name: z.string().optional(),\n child_columns: z.array(z.string()).optional(),\n parent_table: z.string().optional(),\n parent_columns: z.array(z.string()).optional(),\n rely: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n childColumns: d.child_columns,\n parentTable: d.parent_table,\n parentColumns: d.parent_columns,\n rely: d.rely,\n }));\n\nexport const unmarshalFunctionDependencySchema: z.ZodType<FunctionDependency> =\n z\n .object({\n function_full_name: z.string().optional(),\n })\n .transform(d => ({\n functionFullName: d.function_full_name,\n }));\n\nexport const unmarshalListTableSummariesResponseSchema: z.ZodType<ListTableSummariesResponse> =\n z\n .object({\n tables: z.array(z.lazy(() => unmarshalTableSummarySchema)).optional(),\n next_page_token: z.string().optional(),\n })\n .transform(d => ({\n tables: d.tables,\n nextPageToken: d.next_page_token,\n }));\n\nexport const unmarshalListTablesResponseSchema: z.ZodType<ListTablesResponse> =\n z\n .object({\n tables: z.array(z.lazy(() => unmarshalTableInfoSchema)).optional(),\n next_page_token: z.string().optional(),\n })\n .transform(d => ({\n tables: d.tables,\n nextPageToken: d.next_page_token,\n }));\n\nexport const unmarshalNamedTableConstraintSchema: z.ZodType<NamedTableConstraint> =\n z\n .object({\n name: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n }));\n\nexport const unmarshalOptionSpecSchema: z.ZodType<OptionSpec> = z\n .object({\n name: z.string().optional(),\n type: z.string().optional(),\n default_value: z.string().optional(),\n allowed_values: z.array(z.string()).optional(),\n hint: z.string().optional(),\n description: z.string().optional(),\n is_required: z.boolean().optional(),\n is_secret: z.boolean().optional(),\n is_hidden: z.boolean().optional(),\n is_updatable: z.boolean().optional(),\n oauth_stage: z.string().optional(),\n is_loggable: z.boolean().optional(),\n is_creatable: z.boolean().optional(),\n is_copiable: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n type: d.type,\n defaultValue: d.default_value,\n allowedValues: d.allowed_values,\n hint: d.hint,\n description: d.description,\n isRequired: d.is_required,\n isSecret: d.is_secret,\n isHidden: d.is_hidden,\n isUpdatable: d.is_updatable,\n oauthStage: d.oauth_stage,\n isLoggable: d.is_loggable,\n isCreatable: d.is_creatable,\n isCopiable: d.is_copiable,\n }));\n\nexport const unmarshalPolicyFunctionArgumentSchema: z.ZodType<PolicyFunctionArgument> =\n z\n .object({\n column: z.string().optional(),\n constant: z.string().optional(),\n })\n .transform(d => ({\n arg:\n d.column !== undefined\n ? {$case: 'column' as const, column: d.column}\n : d.constant !== undefined\n ? {$case: 'constant' as const, constant: d.constant}\n : undefined,\n }));\n\nexport const unmarshalPrimaryKeyConstraintSchema: z.ZodType<PrimaryKeyConstraint> =\n z\n .object({\n name: z.string().optional(),\n child_columns: z.array(z.string()).optional(),\n timeseries_columns: z.array(z.string()).optional(),\n rely: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n childColumns: d.child_columns,\n timeseriesColumns: d.timeseries_columns,\n rely: d.rely,\n }));\n\nexport const unmarshalRowFilterSchema: z.ZodType<RowFilter> = z\n .object({\n function_name: z.string().optional(),\n input_column_names: z.array(z.string()).optional(),\n input_arguments: z\n .array(z.lazy(() => unmarshalPolicyFunctionArgumentSchema))\n .optional(),\n })\n .transform(d => ({\n functionName: d.function_name,\n inputColumnNames: d.input_column_names,\n inputArguments: d.input_arguments,\n }));\n\nexport const unmarshalSecurableKindManifestSchema: z.ZodType<SecurableKindManifest> =\n z\n .object({\n securable_type: z.string().optional(),\n securable_kind: z.string().optional(),\n assignable_privileges: z.array(z.string()).optional(),\n options: z.array(z.lazy(() => unmarshalOptionSpecSchema)).optional(),\n capabilities: z.array(z.string()).optional(),\n })\n .transform(d => ({\n securableType: d.securable_type,\n securableKind: d.securable_kind,\n assignablePrivileges: d.assignable_privileges,\n options: d.options,\n capabilities: d.capabilities,\n }));\n\nexport const unmarshalSseEncryptionDetailsSchema: z.ZodType<SseEncryptionDetails> =\n z\n .object({\n algorithm: z.string().optional(),\n aws_kms_key_arn: z.string().optional(),\n })\n .transform(d => ({\n algorithm: d.algorithm,\n awsKmsKeyArn: d.aws_kms_key_arn,\n }));\n\nexport const unmarshalTableConstraintSchema: z.ZodType<TableConstraint> = z\n .object({\n primary_key_constraint: z\n .lazy(() => unmarshalPrimaryKeyConstraintSchema)\n .optional(),\n foreign_key_constraint: z\n .lazy(() => unmarshalForeignKeyConstraintSchema)\n .optional(),\n named_table_constraint: z\n .lazy(() => unmarshalNamedTableConstraintSchema)\n .optional(),\n })\n .transform(d => ({\n constraint:\n d.primary_key_constraint !== undefined\n ? {\n $case: 'primaryKeyConstraint' as const,\n primaryKeyConstraint: d.primary_key_constraint,\n }\n : d.foreign_key_constraint !== undefined\n ? {\n $case: 'foreignKeyConstraint' as const,\n foreignKeyConstraint: d.foreign_key_constraint,\n }\n : d.named_table_constraint !== undefined\n ? {\n $case: 'namedTableConstraint' as const,\n namedTableConstraint: d.named_table_constraint,\n }\n : undefined,\n }));\n\nexport const unmarshalTableDependencySchema: z.ZodType<TableDependency> = z\n .object({\n table_full_name: z.string().optional(),\n })\n .transform(d => ({\n tableFullName: d.table_full_name,\n }));\n\nexport const unmarshalTableExistsResponseSchema: z.ZodType<TableExistsResponse> =\n z\n .object({\n table_exists: z.boolean().optional(),\n })\n .transform(d => ({\n tableExists: d.table_exists,\n }));\n\nexport const unmarshalTableInfoSchema: z.ZodType<TableInfo> = z\n .object({\n name: z.string().optional(),\n catalog_name: z.string().optional(),\n schema_name: z.string().optional(),\n table_type: z.string().optional(),\n data_source_format: z.string().optional(),\n storage_location: z.string().optional(),\n view_definition: z.string().optional(),\n view_dependencies: z.lazy(() => unmarshalDependencyListSchema).optional(),\n sql_path: z.string().optional(),\n owner: z.string().optional(),\n comment: z.string().optional(),\n storage_credential_name: z.string().optional(),\n table_constraints: z\n .array(z.lazy(() => unmarshalTableConstraintSchema))\n .optional(),\n row_filter: z.lazy(() => unmarshalRowFilterSchema).optional(),\n pipeline_id: z.string().optional(),\n enable_predictive_optimization: z.string().optional(),\n metastore_id: z.string().optional(),\n full_name: z.string().optional(),\n data_access_configuration_id: z.string().optional(),\n created_at: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n created_by: z.string().optional(),\n updated_at: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n updated_by: z.string().optional(),\n table_id: z.string().optional(),\n delta_runtime_properties_kvpairs: z\n .lazy(() => unmarshalDeltaRuntimePropertiesKvPairsSchema)\n .optional(),\n deleted_at: z\n .union([z.number(), z.bigint()])\n .transform(v => BigInt(v))\n .optional(),\n effective_predictive_optimization_flag: z\n .lazy(() => unmarshalEffectivePredictiveOptimizationFlagSchema)\n .optional(),\n access_point: z.string().optional(),\n browse_only: z.boolean().optional(),\n encryption_details: z\n .lazy(() => unmarshalEncryptionDetailsSchema)\n .optional(),\n securable_kind_manifest: z\n .lazy(() => unmarshalSecurableKindManifestSchema)\n .optional(),\n columns: z.array(z.lazy(() => unmarshalColumnInfoSchema)).optional(),\n properties: z.record(z.string(), z.string()).optional(),\n })\n .transform(d => ({\n name: d.name,\n catalogName: d.catalog_name,\n schemaName: d.schema_name,\n tableType: d.table_type,\n dataSourceFormat: d.data_source_format,\n storageLocation: d.storage_location,\n viewDefinition: d.view_definition,\n viewDependencies: d.view_dependencies,\n sqlPath: d.sql_path,\n owner: d.owner,\n comment: d.comment,\n storageCredentialName: d.storage_credential_name,\n tableConstraints: d.table_constraints,\n rowFilter: d.row_filter,\n pipelineId: d.pipeline_id,\n enablePredictiveOptimization: d.enable_predictive_optimization,\n metastoreId: d.metastore_id,\n fullName: d.full_name,\n dataAccessConfigurationId: d.data_access_configuration_id,\n createdAt: d.created_at,\n createdBy: d.created_by,\n updatedAt: d.updated_at,\n updatedBy: d.updated_by,\n tableId: d.table_id,\n deltaRuntimePropertiesKvpairs: d.delta_runtime_properties_kvpairs,\n deletedAt: d.deleted_at,\n effectivePredictiveOptimizationFlag:\n d.effective_predictive_optimization_flag,\n accessPoint: d.access_point,\n browseOnly: d.browse_only,\n encryptionDetails: d.encryption_details,\n securableKindManifest: d.securable_kind_manifest,\n columns: d.columns,\n properties: d.properties,\n }));\n\nexport const unmarshalTableSummarySchema: z.ZodType<TableSummary> = z\n .object({\n full_name: z.string().optional(),\n table_type: z.string().optional(),\n securable_kind_manifest: z\n .lazy(() => unmarshalSecurableKindManifestSchema)\n .optional(),\n })\n .transform(d => ({\n fullName: d.full_name,\n tableType: d.table_type,\n securableKindManifest: d.securable_kind_manifest,\n }));\n\nexport const unmarshalUpdateTableResponseSchema: z.ZodType<UpdateTableResponse> =\n z.object({});\n\nexport const marshalColumnInfoSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n typeText: z.string().optional(),\n typeName: z.string().optional(),\n position: z.number().optional(),\n typePrecision: z.number().optional(),\n typeScale: z.number().optional(),\n typeIntervalType: z.string().optional(),\n typeJson: z.string().optional(),\n comment: z.string().optional(),\n nullable: z.boolean().optional(),\n partitionIndex: z.number().optional(),\n mask: z.lazy(() => marshalColumnMaskSchema).optional(),\n })\n .transform(d => ({\n name: d.name,\n type_text: d.typeText,\n type_name: d.typeName,\n position: d.position,\n type_precision: d.typePrecision,\n type_scale: d.typeScale,\n type_interval_type: d.typeIntervalType,\n type_json: d.typeJson,\n comment: d.comment,\n nullable: d.nullable,\n partition_index: d.partitionIndex,\n mask: d.mask,\n }));\n\nexport const marshalColumnMaskSchema: z.ZodType = z\n .object({\n functionName: z.string().optional(),\n usingColumnNames: z.array(z.string()).optional(),\n usingArguments: z\n .array(z.lazy(() => marshalPolicyFunctionArgumentSchema))\n .optional(),\n })\n .transform(d => ({\n function_name: d.functionName,\n using_column_names: d.usingColumnNames,\n using_arguments: d.usingArguments,\n }));\n\nexport const marshalConnectionDependencySchema: z.ZodType = z\n .object({\n connectionName: z.string().optional(),\n })\n .transform(d => ({\n connection_name: d.connectionName,\n }));\n\nexport const marshalCreateTableConstraintRequestSchema: z.ZodType = z\n .object({\n fullNameArg: z.string().optional(),\n constraint: z.lazy(() => marshalTableConstraintSchema).optional(),\n })\n .transform(d => ({\n full_name_arg: d.fullNameArg,\n constraint: d.constraint,\n }));\n\nexport const marshalCreateTableRequestSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n tableType: z.string().optional(),\n dataSourceFormat: z.string().optional(),\n storageLocation: z.string().optional(),\n viewDefinition: z.string().optional(),\n viewDependencies: z.lazy(() => marshalDependencyListSchema).optional(),\n sqlPath: z.string().optional(),\n owner: z.string().optional(),\n comment: z.string().optional(),\n storageCredentialName: z.string().optional(),\n tableConstraints: z\n .array(z.lazy(() => marshalTableConstraintSchema))\n .optional(),\n rowFilter: z.lazy(() => marshalRowFilterSchema).optional(),\n pipelineId: z.string().optional(),\n enablePredictiveOptimization: z.string().optional(),\n metastoreId: z.string().optional(),\n fullName: z.string().optional(),\n dataAccessConfigurationId: z.string().optional(),\n createdAt: z.bigint().optional(),\n createdBy: z.string().optional(),\n updatedAt: z.bigint().optional(),\n updatedBy: z.string().optional(),\n tableId: z.string().optional(),\n deltaRuntimePropertiesKvpairs: z\n .lazy(() => marshalDeltaRuntimePropertiesKvPairsSchema)\n .optional(),\n deletedAt: z.bigint().optional(),\n effectivePredictiveOptimizationFlag: z\n .lazy(() => marshalEffectivePredictiveOptimizationFlagSchema)\n .optional(),\n accessPoint: z.string().optional(),\n browseOnly: z.boolean().optional(),\n encryptionDetails: z.lazy(() => marshalEncryptionDetailsSchema).optional(),\n securableKindManifest: z\n .lazy(() => marshalSecurableKindManifestSchema)\n .optional(),\n columns: z.array(z.lazy(() => marshalColumnInfoSchema)).optional(),\n properties: z.record(z.string(), z.string()).optional(),\n })\n .transform(d => ({\n name: d.name,\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n table_type: d.tableType,\n data_source_format: d.dataSourceFormat,\n storage_location: d.storageLocation,\n view_definition: d.viewDefinition,\n view_dependencies: d.viewDependencies,\n sql_path: d.sqlPath,\n owner: d.owner,\n comment: d.comment,\n storage_credential_name: d.storageCredentialName,\n table_constraints: d.tableConstraints,\n row_filter: d.rowFilter,\n pipeline_id: d.pipelineId,\n enable_predictive_optimization: d.enablePredictiveOptimization,\n metastore_id: d.metastoreId,\n full_name: d.fullName,\n data_access_configuration_id: d.dataAccessConfigurationId,\n created_at: d.createdAt,\n created_by: d.createdBy,\n updated_at: d.updatedAt,\n updated_by: d.updatedBy,\n table_id: d.tableId,\n delta_runtime_properties_kvpairs: d.deltaRuntimePropertiesKvpairs,\n deleted_at: d.deletedAt,\n effective_predictive_optimization_flag:\n d.effectivePredictiveOptimizationFlag,\n access_point: d.accessPoint,\n browse_only: d.browseOnly,\n encryption_details: d.encryptionDetails,\n securable_kind_manifest: d.securableKindManifest,\n columns: d.columns,\n properties: d.properties,\n }));\n\nexport const marshalCredentialDependencySchema: z.ZodType = z\n .object({\n credentialName: z.string().optional(),\n })\n .transform(d => ({\n credential_name: d.credentialName,\n }));\n\nexport const marshalDeltaRuntimePropertiesKvPairsSchema: z.ZodType = z\n .object({\n deltaRuntimeProperties: z.record(z.string(), z.string()).optional(),\n })\n .transform(d => ({\n delta_runtime_properties: d.deltaRuntimeProperties,\n }));\n\nexport const marshalDependencySchema: z.ZodType = z\n .object({\n value: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('table'),\n table: z.lazy(() => marshalTableDependencySchema),\n }),\n z.object({\n $case: z.literal('function'),\n function: z.lazy(() => marshalFunctionDependencySchema),\n }),\n z.object({\n $case: z.literal('connection'),\n connection: z.lazy(() => marshalConnectionDependencySchema),\n }),\n z.object({\n $case: z.literal('credential'),\n credential: z.lazy(() => marshalCredentialDependencySchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.value?.$case === 'table' && {table: d.value.table}),\n ...(d.value?.$case === 'function' && {function: d.value.function}),\n ...(d.value?.$case === 'connection' && {connection: d.value.connection}),\n ...(d.value?.$case === 'credential' && {credential: d.value.credential}),\n }));\n\nexport const marshalDependencyListSchema: z.ZodType = z\n .object({\n dependencies: z.array(z.lazy(() => marshalDependencySchema)).optional(),\n })\n .transform(d => ({\n dependencies: d.dependencies,\n }));\n\nexport const marshalEffectivePredictiveOptimizationFlagSchema: z.ZodType = z\n .object({\n value: z.string().optional(),\n inheritedFromType: z.string().optional(),\n inheritedFromName: z.string().optional(),\n })\n .transform(d => ({\n value: d.value,\n inherited_from_type: d.inheritedFromType,\n inherited_from_name: d.inheritedFromName,\n }));\n\nexport const marshalEncryptionDetailsSchema: z.ZodType = z\n .object({\n encryptionDetailsType: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('sseEncryptionDetails'),\n sseEncryptionDetails: z.lazy(() => marshalSseEncryptionDetailsSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.encryptionDetailsType?.$case === 'sseEncryptionDetails' && {\n sse_encryption_details: d.encryptionDetailsType.sseEncryptionDetails,\n }),\n }));\n\nexport const marshalForeignKeyConstraintSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n childColumns: z.array(z.string()).optional(),\n parentTable: z.string().optional(),\n parentColumns: z.array(z.string()).optional(),\n rely: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n child_columns: d.childColumns,\n parent_table: d.parentTable,\n parent_columns: d.parentColumns,\n rely: d.rely,\n }));\n\nexport const marshalFunctionDependencySchema: z.ZodType = z\n .object({\n functionFullName: z.string().optional(),\n })\n .transform(d => ({\n function_full_name: d.functionFullName,\n }));\n\nexport const marshalNamedTableConstraintSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n }));\n\nexport const marshalOptionSpecSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n type: z.string().optional(),\n defaultValue: z.string().optional(),\n allowedValues: z.array(z.string()).optional(),\n hint: z.string().optional(),\n description: z.string().optional(),\n isRequired: z.boolean().optional(),\n isSecret: z.boolean().optional(),\n isHidden: z.boolean().optional(),\n isUpdatable: z.boolean().optional(),\n oauthStage: z.string().optional(),\n isLoggable: z.boolean().optional(),\n isCreatable: z.boolean().optional(),\n isCopiable: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n type: d.type,\n default_value: d.defaultValue,\n allowed_values: d.allowedValues,\n hint: d.hint,\n description: d.description,\n is_required: d.isRequired,\n is_secret: d.isSecret,\n is_hidden: d.isHidden,\n is_updatable: d.isUpdatable,\n oauth_stage: d.oauthStage,\n is_loggable: d.isLoggable,\n is_creatable: d.isCreatable,\n is_copiable: d.isCopiable,\n }));\n\nexport const marshalPolicyFunctionArgumentSchema: z.ZodType = z\n .object({\n arg: z\n .discriminatedUnion('$case', [\n z.object({$case: z.literal('column'), column: z.string()}),\n z.object({$case: z.literal('constant'), constant: z.string()}),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.arg?.$case === 'column' && {column: d.arg.column}),\n ...(d.arg?.$case === 'constant' && {constant: d.arg.constant}),\n }));\n\nexport const marshalPrimaryKeyConstraintSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n childColumns: z.array(z.string()).optional(),\n timeseriesColumns: z.array(z.string()).optional(),\n rely: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n child_columns: d.childColumns,\n timeseries_columns: d.timeseriesColumns,\n rely: d.rely,\n }));\n\nexport const marshalRowFilterSchema: z.ZodType = z\n .object({\n functionName: z.string().optional(),\n inputColumnNames: z.array(z.string()).optional(),\n inputArguments: z\n .array(z.lazy(() => marshalPolicyFunctionArgumentSchema))\n .optional(),\n })\n .transform(d => ({\n function_name: d.functionName,\n input_column_names: d.inputColumnNames,\n input_arguments: d.inputArguments,\n }));\n\nexport const marshalSecurableKindManifestSchema: z.ZodType = z\n .object({\n securableType: z.string().optional(),\n securableKind: z.string().optional(),\n assignablePrivileges: z.array(z.string()).optional(),\n options: z.array(z.lazy(() => marshalOptionSpecSchema)).optional(),\n capabilities: z.array(z.string()).optional(),\n })\n .transform(d => ({\n securable_type: d.securableType,\n securable_kind: d.securableKind,\n assignable_privileges: d.assignablePrivileges,\n options: d.options,\n capabilities: d.capabilities,\n }));\n\nexport const marshalSseEncryptionDetailsSchema: z.ZodType = z\n .object({\n algorithm: z.string().optional(),\n awsKmsKeyArn: z.string().optional(),\n })\n .transform(d => ({\n algorithm: d.algorithm,\n aws_kms_key_arn: d.awsKmsKeyArn,\n }));\n\nexport const marshalTableConstraintSchema: z.ZodType = z\n .object({\n constraint: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('primaryKeyConstraint'),\n primaryKeyConstraint: z.lazy(() => marshalPrimaryKeyConstraintSchema),\n }),\n z.object({\n $case: z.literal('foreignKeyConstraint'),\n foreignKeyConstraint: z.lazy(() => marshalForeignKeyConstraintSchema),\n }),\n z.object({\n $case: z.literal('namedTableConstraint'),\n namedTableConstraint: z.lazy(() => marshalNamedTableConstraintSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.constraint?.$case === 'primaryKeyConstraint' && {\n primary_key_constraint: d.constraint.primaryKeyConstraint,\n }),\n ...(d.constraint?.$case === 'foreignKeyConstraint' && {\n foreign_key_constraint: d.constraint.foreignKeyConstraint,\n }),\n ...(d.constraint?.$case === 'namedTableConstraint' && {\n named_table_constraint: d.constraint.namedTableConstraint,\n }),\n }));\n\nexport const marshalTableDependencySchema: z.ZodType = z\n .object({\n tableFullName: z.string().optional(),\n })\n .transform(d => ({\n table_full_name: d.tableFullName,\n }));\n\nexport const marshalUpdateTableRequestSchema: z.ZodType = z\n .object({\n fullNameArg: z.string().optional(),\n name: z.string().optional(),\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n tableType: z.string().optional(),\n dataSourceFormat: z.string().optional(),\n storageLocation: z.string().optional(),\n viewDefinition: z.string().optional(),\n viewDependencies: z.lazy(() => marshalDependencyListSchema).optional(),\n sqlPath: z.string().optional(),\n owner: z.string().optional(),\n comment: z.string().optional(),\n storageCredentialName: z.string().optional(),\n tableConstraints: z\n .array(z.lazy(() => marshalTableConstraintSchema))\n .optional(),\n rowFilter: z.lazy(() => marshalRowFilterSchema).optional(),\n pipelineId: z.string().optional(),\n enablePredictiveOptimization: z.string().optional(),\n metastoreId: z.string().optional(),\n fullName: z.string().optional(),\n dataAccessConfigurationId: z.string().optional(),\n createdAt: z.bigint().optional(),\n createdBy: z.string().optional(),\n updatedAt: z.bigint().optional(),\n updatedBy: z.string().optional(),\n tableId: z.string().optional(),\n deltaRuntimePropertiesKvpairs: z\n .lazy(() => marshalDeltaRuntimePropertiesKvPairsSchema)\n .optional(),\n deletedAt: z.bigint().optional(),\n effectivePredictiveOptimizationFlag: z\n .lazy(() => marshalEffectivePredictiveOptimizationFlagSchema)\n .optional(),\n accessPoint: z.string().optional(),\n browseOnly: z.boolean().optional(),\n encryptionDetails: z.lazy(() => marshalEncryptionDetailsSchema).optional(),\n securableKindManifest: z\n .lazy(() => marshalSecurableKindManifestSchema)\n .optional(),\n columns: z.array(z.lazy(() => marshalColumnInfoSchema)).optional(),\n properties: z.record(z.string(), z.string()).optional(),\n })\n .transform(d => ({\n full_name_arg: d.fullNameArg,\n name: d.name,\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n table_type: d.tableType,\n data_source_format: d.dataSourceFormat,\n storage_location: d.storageLocation,\n view_definition: d.viewDefinition,\n view_dependencies: d.viewDependencies,\n sql_path: d.sqlPath,\n owner: d.owner,\n comment: d.comment,\n storage_credential_name: d.storageCredentialName,\n table_constraints: d.tableConstraints,\n row_filter: d.rowFilter,\n pipeline_id: d.pipelineId,\n enable_predictive_optimization: d.enablePredictiveOptimization,\n metastore_id: d.metastoreId,\n full_name: d.fullName,\n data_access_configuration_id: d.dataAccessConfigurationId,\n created_at: d.createdAt,\n created_by: d.createdBy,\n updated_at: d.updatedAt,\n updated_by: d.updatedBy,\n table_id: d.tableId,\n delta_runtime_properties_kvpairs: d.deltaRuntimePropertiesKvpairs,\n deleted_at: d.deletedAt,\n effective_predictive_optimization_flag:\n d.effectivePredictiveOptimizationFlag,\n access_point: d.accessPoint,\n browse_only: d.browseOnly,\n encryption_details: d.encryptionDetails,\n securable_kind_manifest: d.securableKindManifest,\n columns: d.columns,\n properties: d.properties,\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 {z} from 'zod';\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const ColumnTypeName = {\n BOOLEAN: 'BOOLEAN',\n BYTE: 'BYTE',\n SHORT: 'SHORT',\n INT: 'INT',\n LONG: 'LONG',\n FLOAT: 'FLOAT',\n DOUBLE: 'DOUBLE',\n DATE: 'DATE',\n TIMESTAMP: 'TIMESTAMP',\n STRING: 'STRING',\n BINARY: 'BINARY',\n DECIMAL: 'DECIMAL',\n INTERVAL: 'INTERVAL',\n ARRAY: 'ARRAY',\n STRUCT: 'STRUCT',\n MAP: 'MAP',\n CHAR: 'CHAR',\n NULL: 'NULL',\n USER_DEFINED_TYPE: 'USER_DEFINED_TYPE',\n TIMESTAMP_NTZ: 'TIMESTAMP_NTZ',\n VARIANT: 'VARIANT',\n GEOMETRY: 'GEOMETRY',\n GEOGRAPHY: 'GEOGRAPHY',\n TABLE_TYPE: 'TABLE_TYPE',\n} as const;\nexport type ColumnTypeName =\n | (typeof ColumnTypeName)[keyof typeof ColumnTypeName]\n | (string & {});\n\n/** Data source format */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const DataSourceFormat = {\n DELTA: 'DELTA',\n CSV: 'CSV',\n JSON: 'JSON',\n AVRO: 'AVRO',\n PARQUET: 'PARQUET',\n ORC: 'ORC',\n TEXT: 'TEXT',\n UNITY_CATALOG: 'UNITY_CATALOG',\n /** A table shared through Delta Sharing protocol. */\n DELTASHARING: 'DELTASHARING',\n /** BEGIN - Query federation data source formats. */\n DATABRICKS_FORMAT: 'DATABRICKS_FORMAT',\n MYSQL_FORMAT: 'MYSQL_FORMAT',\n ORACLE_FORMAT: 'ORACLE_FORMAT',\n POSTGRESQL_FORMAT: 'POSTGRESQL_FORMAT',\n REDSHIFT_FORMAT: 'REDSHIFT_FORMAT',\n SNOWFLAKE_FORMAT: 'SNOWFLAKE_FORMAT',\n SQLDW_FORMAT: 'SQLDW_FORMAT',\n SQLSERVER_FORMAT: 'SQLSERVER_FORMAT',\n SALESFORCE_FORMAT: 'SALESFORCE_FORMAT',\n SALESFORCE_DATA_CLOUD_FORMAT: 'SALESFORCE_DATA_CLOUD_FORMAT',\n TERADATA_FORMAT: 'TERADATA_FORMAT',\n BIGQUERY_FORMAT: 'BIGQUERY_FORMAT',\n NETSUITE_FORMAT: 'NETSUITE_FORMAT',\n WORKDAY_RAAS_FORMAT: 'WORKDAY_RAAS_FORMAT',\n MONGODB_FORMAT: 'MONGODB_FORMAT',\n /** datasource format used for hive tables. */\n HIVE: 'HIVE',\n /**\n * END - Query federation data source formats.\n * Vector search managed index format\n */\n VECTOR_INDEX_FORMAT: 'VECTOR_INDEX_FORMAT',\n /** Brickstore managed online row-oriented storage format. */\n DATABRICKS_ROW_STORE_FORMAT: 'DATABRICKS_ROW_STORE_FORMAT',\n /** Uniform storage format for Hudi */\n DELTA_UNIFORM_HUDI: 'DELTA_UNIFORM_HUDI',\n /** Uniform storage format for Iceberg */\n DELTA_UNIFORM_ICEBERG: 'DELTA_UNIFORM_ICEBERG',\n /** Apache Iceberg DataFormat */\n ICEBERG: 'ICEBERG',\n} as const;\nexport type DataSourceFormat =\n | (typeof DataSourceFormat)[keyof typeof DataSourceFormat]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const SecurableKind = {\n TABLE_STANDARD: 'TABLE_STANDARD',\n TABLE_EXTERNAL: 'TABLE_EXTERNAL',\n TABLE_DELTA: 'TABLE_DELTA',\n TABLE_DELTA_EXTERNAL: 'TABLE_DELTA_EXTERNAL',\n TABLE_VIEW: 'TABLE_VIEW',\n TABLE_METRIC_VIEW: 'TABLE_METRIC_VIEW',\n TABLE_DELTASHARING: 'TABLE_DELTASHARING',\n TABLE_DELTASHARING_MUTABLE: 'TABLE_DELTASHARING_MUTABLE',\n TABLE_VIEW_DELTASHARING: 'TABLE_VIEW_DELTASHARING',\n TABLE_METRIC_VIEW_DELTASHARING: 'TABLE_METRIC_VIEW_DELTASHARING',\n TABLE_MATERIALIZED_VIEW_DELTASHARING: 'TABLE_MATERIALIZED_VIEW_DELTASHARING',\n TABLE_STREAMING_LIVE_TABLE_DELTASHARING:\n 'TABLE_STREAMING_LIVE_TABLE_DELTASHARING',\n TABLE_FOREIGN_DELTASHARING: 'TABLE_FOREIGN_DELTASHARING',\n TABLE_DELTA_ICEBERG_DELTASHARING: 'TABLE_DELTA_ICEBERG_DELTASHARING',\n TABLE_DELTASHARING_OPEN_DIR_BASED: 'TABLE_DELTASHARING_OPEN_DIR_BASED',\n /** TABLE_FEATURE_STORE and TABLE_FEATURE_STORE_EXTERNAL are deprecated. */\n TABLE_FEATURE_STORE: 'TABLE_FEATURE_STORE',\n TABLE_FEATURE_STORE_EXTERNAL: 'TABLE_FEATURE_STORE_EXTERNAL',\n TABLE_STREAMING_LIVE_TABLE: 'TABLE_STREAMING_LIVE_TABLE',\n TABLE_SYSTEM: 'TABLE_SYSTEM',\n TABLE_SYSTEM_DELTASHARING: 'TABLE_SYSTEM_DELTASHARING',\n TABLE_MATERIALIZED_VIEW: 'TABLE_MATERIALIZED_VIEW',\n TABLE_INTERNAL: 'TABLE_INTERNAL',\n TABLE_FOREIGN_BIGQUERY: 'TABLE_FOREIGN_BIGQUERY',\n TABLE_FOREIGN_MYSQL: 'TABLE_FOREIGN_MYSQL',\n TABLE_FOREIGN_ORACLE: 'TABLE_FOREIGN_ORACLE',\n TABLE_FOREIGN_POSTGRESQL: 'TABLE_FOREIGN_POSTGRESQL',\n TABLE_FOREIGN_SQLDW: 'TABLE_FOREIGN_SQLDW',\n TABLE_FOREIGN_REDSHIFT: 'TABLE_FOREIGN_REDSHIFT',\n TABLE_FOREIGN_SNOWFLAKE: 'TABLE_FOREIGN_SNOWFLAKE',\n TABLE_FOREIGN_SQLSERVER: 'TABLE_FOREIGN_SQLSERVER',\n TABLE_FOREIGN_SALESFORCE: 'TABLE_FOREIGN_SALESFORCE',\n TABLE_FOREIGN_SALESFORCE_DATA_CLOUD: 'TABLE_FOREIGN_SALESFORCE_DATA_CLOUD',\n TABLE_FOREIGN_SALESFORCE_DATA_CLOUD_FILE_SHARING:\n 'TABLE_FOREIGN_SALESFORCE_DATA_CLOUD_FILE_SHARING',\n TABLE_FOREIGN_SALESFORCE_DATA_CLOUD_FILE_SHARING_VIEW:\n 'TABLE_FOREIGN_SALESFORCE_DATA_CLOUD_FILE_SHARING_VIEW',\n TABLE_FOREIGN_TERADATA: 'TABLE_FOREIGN_TERADATA',\n TABLE_FOREIGN_NETSUITE: 'TABLE_FOREIGN_NETSUITE',\n TABLE_FOREIGN_DATABRICKS: 'TABLE_FOREIGN_DATABRICKS',\n TABLE_FOREIGN_WORKDAY_RAAS: 'TABLE_FOREIGN_WORKDAY_RAAS',\n /** Deprecated in favor of more specific types below */\n TABLE_FOREIGN_HIVE_METASTORE: 'TABLE_FOREIGN_HIVE_METASTORE',\n TABLE_FOREIGN_HIVE_METASTORE_MANAGED: 'TABLE_FOREIGN_HIVE_METASTORE_MANAGED',\n TABLE_FOREIGN_HIVE_METASTORE_DBFS_MANAGED:\n 'TABLE_FOREIGN_HIVE_METASTORE_DBFS_MANAGED',\n TABLE_FOREIGN_HIVE_METASTORE_EXTERNAL:\n 'TABLE_FOREIGN_HIVE_METASTORE_EXTERNAL',\n TABLE_FOREIGN_HIVE_METASTORE_DBFS_EXTERNAL:\n 'TABLE_FOREIGN_HIVE_METASTORE_DBFS_EXTERNAL',\n TABLE_FOREIGN_HIVE_METASTORE_VIEW: 'TABLE_FOREIGN_HIVE_METASTORE_VIEW',\n TABLE_FOREIGN_HIVE_METASTORE_DBFS_VIEW:\n 'TABLE_FOREIGN_HIVE_METASTORE_DBFS_VIEW',\n TABLE_FOREIGN_HIVE_METASTORE_SHALLOW_CLONE_MANAGED:\n 'TABLE_FOREIGN_HIVE_METASTORE_SHALLOW_CLONE_MANAGED',\n TABLE_FOREIGN_HIVE_METASTORE_DBFS_SHALLOW_CLONE_MANAGED:\n 'TABLE_FOREIGN_HIVE_METASTORE_DBFS_SHALLOW_CLONE_MANAGED',\n TABLE_FOREIGN_HIVE_METASTORE_SHALLOW_CLONE_EXTERNAL:\n 'TABLE_FOREIGN_HIVE_METASTORE_SHALLOW_CLONE_EXTERNAL',\n TABLE_FOREIGN_HIVE_METASTORE_DBFS_SHALLOW_CLONE_EXTERNAL:\n 'TABLE_FOREIGN_HIVE_METASTORE_DBFS_SHALLOW_CLONE_EXTERNAL',\n TABLE_FOREIGN_MONGODB: 'TABLE_FOREIGN_MONGODB',\n TABLE_DELTA_UNIFORM_HUDI_EXTERNAL: 'TABLE_DELTA_UNIFORM_HUDI_EXTERNAL',\n TABLE_DELTA_UNIFORM_ICEBERG_EXTERNAL: 'TABLE_DELTA_UNIFORM_ICEBERG_EXTERNAL',\n TABLE_DELTA_UNIFORM_ICEBERG_FOREIGN_HIVE_METASTORE_EXTERNAL:\n 'TABLE_DELTA_UNIFORM_ICEBERG_FOREIGN_HIVE_METASTORE_EXTERNAL',\n TABLE_DELTA_UNIFORM_ICEBERG_FOREIGN_HIVE_METASTORE_MANAGED:\n 'TABLE_DELTA_UNIFORM_ICEBERG_FOREIGN_HIVE_METASTORE_MANAGED',\n TABLE_DELTA_UNIFORM_ICEBERG_FOREIGN_SNOWFLAKE:\n 'TABLE_DELTA_UNIFORM_ICEBERG_FOREIGN_SNOWFLAKE',\n /**\n * The above uniform securableKinds come from different data sources,\n * each creating a foreign catalog in Databricks with its own capabilities.\n * UC uses these attributes to interact with remote connections.\n * For shared foreign iceberg tables, all are under the Delta Sharing catalog\n * with the same capabilities, so the recipient UC does not need to connect\n * to the remote source.\n */\n TABLE_DELTA_UNIFORM_ICEBERG_FOREIGN_DELTASHARING:\n 'TABLE_DELTA_UNIFORM_ICEBERG_FOREIGN_DELTASHARING',\n /**\n * This is the delta sharing version of TABLE_DELTA_UNIFORM_ICEBERG_EXTERNAL.\n * Unlike the above foreign iceberg kinds which originate from external catalogs,\n * this represents an external uniform iceberg table shared via Delta Sharing.\n */\n TABLE_DELTA_UNIFORM_ICEBERG_EXTERNAL_DELTASHARING:\n 'TABLE_DELTA_UNIFORM_ICEBERG_EXTERNAL_DELTASHARING',\n /** These represent 2 variations of Managed Iceberg tables. See ManagedIcebergTableUtils.scala for more details. */\n TABLE_ICEBERG_UNIFORM_MANAGED: 'TABLE_ICEBERG_UNIFORM_MANAGED',\n TABLE_DELTA_ICEBERG_MANAGED: 'TABLE_DELTA_ICEBERG_MANAGED',\n TABLE_ONLINE_VECTOR_INDEX_REPLICA: 'TABLE_ONLINE_VECTOR_INDEX_REPLICA',\n TABLE_ONLINE_VECTOR_INDEX_DIRECT: 'TABLE_ONLINE_VECTOR_INDEX_DIRECT',\n TABLE_ONLINE_VIEW: 'TABLE_ONLINE_VIEW',\n TABLE_DB_STORAGE: 'TABLE_DB_STORAGE',\n TABLE_MANAGED_POSTGRESQL: 'TABLE_MANAGED_POSTGRESQL',\n} as const;\nexport type SecurableKind =\n | (typeof SecurableKind)[keyof typeof SecurableKind]\n | (string & {});\n\n/** The type of Unity Catalog securable. */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const SecurableType = {\n CATALOG: 'CATALOG',\n SCHEMA: 'SCHEMA',\n TABLE: 'TABLE',\n STORAGE_CREDENTIAL: 'STORAGE_CREDENTIAL',\n EXTERNAL_LOCATION: 'EXTERNAL_LOCATION',\n FUNCTION: 'FUNCTION',\n SHARE: 'SHARE',\n PROVIDER: 'PROVIDER',\n RECIPIENT: 'RECIPIENT',\n CLEAN_ROOM: 'CLEAN_ROOM',\n METASTORE: 'METASTORE',\n PIPELINE: 'PIPELINE',\n VOLUME: 'VOLUME',\n CONNECTION: 'CONNECTION',\n CREDENTIAL: 'CREDENTIAL',\n EXTERNAL_METADATA: 'EXTERNAL_METADATA',\n /** TODO: [UC-2980] Staging tables aren't full-fleged securables yet. */\n STAGING_TABLE: 'STAGING_TABLE',\n} as const;\nexport type SecurableType =\n | (typeof SecurableType)[keyof typeof SecurableType]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const SseEncryptionAlgorithm = {\n SSE_ENCRYPTION_ALGORITHM_UNSPECIFIED: 'SSE_ENCRYPTION_ALGORITHM_UNSPECIFIED',\n AWS_SSE_S3: 'AWS_SSE_S3',\n AWS_SSE_KMS: 'AWS_SSE_KMS',\n} as const;\nexport type SseEncryptionAlgorithm =\n | (typeof SseEncryptionAlgorithm)[keyof typeof SseEncryptionAlgorithm]\n | (string & {});\n\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const TableType = {\n MANAGED: 'MANAGED',\n EXTERNAL: 'EXTERNAL',\n VIEW: 'VIEW',\n MATERIALIZED_VIEW: 'MATERIALIZED_VIEW',\n STREAMING_TABLE: 'STREAMING_TABLE',\n MANAGED_SHALLOW_CLONE: 'MANAGED_SHALLOW_CLONE',\n FOREIGN: 'FOREIGN',\n EXTERNAL_SHALLOW_CLONE: 'EXTERNAL_SHALLOW_CLONE',\n METRIC_VIEW: 'METRIC_VIEW',\n} as const;\nexport type TableType =\n | (typeof TableType)[keyof typeof TableType]\n | (string & {});\n\n/**\n * During the OAuth flow, specifies which stage the option should be displayed in the UI.\n * OAUTH_STAGE_UNSPECIFIED is the default value for options unrelated to the OAuth flow.\n * BEFORE_AUTHORIZATION_CODE corresponds to options necessary to initiate the OAuth process.\n * BEFORE_ACCESS_TOKEN corresponds to options that are necessary to create a foreign connection,\n * but that should be displayed after the authorization code has already been received.\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const OptionSpec_OauthStage = {\n OAUTH_STAGE_UNSPECIFIED: 'OAUTH_STAGE_UNSPECIFIED',\n BEFORE_AUTHORIZATION_CODE: 'BEFORE_AUTHORIZATION_CODE',\n BEFORE_ACCESS_TOKEN: 'BEFORE_ACCESS_TOKEN',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type OptionSpec_OauthStage =\n | (typeof OptionSpec_OauthStage)[keyof typeof OptionSpec_OauthStage]\n | (string & {});\n\n/**\n * Type of the option, we purposely follow JavaScript types so that\n * the UI can map the options to JS types.\n * https://www.w3schools.com/js/js_datatypes.asp\n * Enum is a special case that it's just string with selections.\n */\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Enum-style const object.\nexport const OptionSpec_OptionType = {\n OPTION_TYPE_UNSPECIFIED: 'OPTION_TYPE_UNSPECIFIED',\n OPTION_BOOLEAN: 'OPTION_BOOLEAN',\n OPTION_NUMBER: 'OPTION_NUMBER',\n OPTION_BIGINT: 'OPTION_BIGINT',\n OPTION_STRING: 'OPTION_STRING',\n OPTION_ENUM: 'OPTION_ENUM',\n OPTION_SERVICE_CREDENTIAL: 'OPTION_SERVICE_CREDENTIAL',\n OPTION_MULTILINE_STRING: 'OPTION_MULTILINE_STRING',\n} as const;\n// eslint-disable-next-line @typescript-eslint/naming-convention -- Proto-style nested enum name.\nexport type OptionSpec_OptionType =\n | (typeof OptionSpec_OptionType)[keyof typeof OptionSpec_OptionType]\n | (string & {});\n\nexport interface ColumnInfo {\n /** Name of Column. */\n name?: string | undefined;\n /** Full data type specification as SQL/catalogString text. */\n typeText?: string | undefined;\n typeName?: ColumnTypeName | undefined;\n /** Ordinal position of column (starting at position 0). */\n position?: number | undefined;\n /** Digits of precision; required for DecimalTypes. */\n typePrecision?: number | undefined;\n /** Digits to right of decimal; Required for DecimalTypes. */\n typeScale?: number | undefined;\n /** Format of IntervalType. */\n typeIntervalType?: string | undefined;\n /** Full data type specification, JSON-serialized. */\n typeJson?: string | undefined;\n /** User-provided free-form text description. */\n comment?: string | undefined;\n /** Whether field may be Null (default: true). */\n nullable?: boolean | undefined;\n /** Partition index for column. */\n partitionIndex?: number | undefined;\n mask?: ColumnMask | undefined;\n}\n\nexport interface ColumnMask {\n /** The full name of the column mask SQL UDF. */\n functionName?: string | undefined;\n /**\n * The list of additional table columns to be passed as input to the column mask function. The\n * first arg of the mask function should be of the type of the column being masked and the\n * types of the rest of the args should match the types of columns in 'using_column_names'.\n */\n usingColumnNames?: string[] | undefined;\n /**\n * The list of additional table columns or literals to be passed as additional arguments to\n * a column mask function. This is the replacement of the deprecated using_column_names field and\n * carries information about the types (alias or constant) of the arguments to the mask function.\n */\n usingArguments?: PolicyFunctionArgument[] | undefined;\n}\n\n/** A connection that is dependent on a SQL object. */\nexport interface ConnectionDependency {\n /** Full name of the dependent connection, in the form of __connection_name__. */\n connectionName?: string | undefined;\n}\n\nexport interface CreateTableConstraintRequest {\n /** The full name of the table referenced by the constraint. */\n fullNameArg?: string | undefined;\n constraint?: TableConstraint | undefined;\n}\n\nexport interface CreateTableRequest {\n /** Name of table, relative to parent schema. */\n name?: string | 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 tableType?: TableType | undefined;\n dataSourceFormat?: DataSourceFormat | undefined;\n /** Storage root URL for table (for **MANAGED**, **EXTERNAL** tables). */\n storageLocation?: string | undefined;\n /** View definition SQL (when __table_type__ is **VIEW**, **MATERIALIZED_VIEW**, or **STREAMING_TABLE**) */\n viewDefinition?: string | undefined;\n /**\n * View dependencies (when table_type == **VIEW** or **MATERIALIZED_VIEW**, **STREAMING_TABLE**)\n * - when DependencyList is None, the dependency is not provided;\n * - when DependencyList is an empty list, the dependency is provided but is empty;\n * - when DependencyList is not an empty list, dependencies are provided and recorded.\n * Note: this field is not set in the output of the __listTables__ API.\n */\n viewDependencies?: DependencyList | undefined;\n /** List of schemes whose objects can be referenced without qualification. */\n sqlPath?: string | undefined;\n /** Username of current owner of table. */\n owner?: string | undefined;\n /** User-provided free-form text description. */\n comment?: string | undefined;\n /** Name of the storage credential, when a storage credential is configured for use with this table. */\n storageCredentialName?: string | undefined;\n /** List of table constraints. Note: this field is not set in the output of the __listTables__ API. */\n tableConstraints?: TableConstraint[] | undefined;\n rowFilter?: RowFilter | undefined;\n /** The pipeline ID of the table. Applicable for tables created by pipelines (Materialized View, Streaming Table, etc.). */\n pipelineId?: string | undefined;\n enablePredictiveOptimization?: string | undefined;\n /** Unique identifier of parent metastore. */\n metastoreId?: string | undefined;\n /** Full name of table, in form of __catalog_name__.__schema_name__.__table_name__ */\n fullName?: string | undefined;\n /** Unique ID of the Data Access Configuration to use with the table data. */\n dataAccessConfigurationId?: string | undefined;\n /** Time at which this table was created, in epoch milliseconds. */\n createdAt?: bigint | undefined;\n /** Username of table creator. */\n createdBy?: string | undefined;\n /** Time at which this table was last modified, in epoch milliseconds. */\n updatedAt?: bigint | undefined;\n /** Username of user who last modified the table. */\n updatedBy?: string | undefined;\n /** The unique identifier of the table. */\n tableId?: string | undefined;\n /** Information pertaining to current state of the delta table. */\n deltaRuntimePropertiesKvpairs?: DeltaRuntimePropertiesKvPairs | undefined;\n /** Time at which this table was deleted, in epoch milliseconds. Field is omitted if table is not deleted. */\n deletedAt?: bigint | undefined;\n effectivePredictiveOptimizationFlag?:\n | EffectivePredictiveOptimizationFlag\n | undefined;\n /** The AWS access point to use when accesing s3 for this external location. */\n accessPoint?: string | undefined;\n /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */\n browseOnly?: boolean | undefined;\n encryptionDetails?: EncryptionDetails | undefined;\n /** SecurableKindManifest of table, including capabilities the table has. */\n securableKindManifest?: SecurableKindManifest | undefined;\n /** The array of __ColumnInfo__ definitions of the table's columns. */\n columns?: ColumnInfo[] | undefined;\n /** A map of key-value properties attached to the securable. */\n properties?: Record<string, string> | undefined;\n}\n\n/** A credential that is dependent on a SQL object. */\nexport interface CredentialDependency {\n /** Full name of the dependent credential, in the form of __credential_name__. */\n credentialName?: string | undefined;\n}\n\nexport interface DeleteTableConstraintRequest {\n /** Full name of the table referenced by the constraint. */\n fullNameArg?: string | undefined;\n /** The name of the constraint to delete. */\n constraintName?: string | undefined;\n /**\n * If true, try deleting all child constraints of the current constraint.\n * If false, reject this operation if the current constraint has any child constraints.\n */\n cascade?: boolean | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface DeleteTableConstraintResponse {}\n\nexport interface DeleteTableRequest {\n /** Full name of the table. */\n fullNameArg?: string | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface DeleteTableResponse {}\n\n/**\n * Properties pertaining to the current state of the delta table as given by the commit server.\n * This does not contain **delta.*** (input) properties in __TableInfo.properties__.\n */\nexport interface DeltaRuntimePropertiesKvPairs {\n /** A map of key-value properties attached to the securable. */\n deltaRuntimeProperties?: Record<string, string> | undefined;\n}\n\n/**\n * A dependency of a SQL object. One of the following fields must be defined:\n * __table__, __function__, __connection__, __credential__, __volume__, or __secret__.\n */\nexport interface Dependency {\n value?:\n | {$case: 'table'; table: TableDependency}\n | {$case: 'function'; function: FunctionDependency}\n | {$case: 'connection'; connection: ConnectionDependency}\n | {$case: 'credential'; credential: CredentialDependency}\n | undefined;\n}\n\n/** A list of dependencies. */\nexport interface DependencyList {\n /** Array of dependencies. */\n dependencies?: Dependency[] | undefined;\n}\n\nexport interface EffectivePredictiveOptimizationFlag {\n /** Whether predictive optimization should be enabled for this object and objects under it. */\n value?: string | undefined;\n /** The type of the object from which the flag was inherited. If there was no inheritance, this field is left blank. */\n inheritedFromType?: string | undefined;\n /** The name of the object from which the flag was inherited. If there was no inheritance, this field is left blank. */\n inheritedFromName?: string | undefined;\n}\n\n/** Encryption options that apply to clients connecting to cloud storage. */\nexport interface EncryptionDetails {\n encryptionDetailsType?:\n | {\n $case: 'sseEncryptionDetails';\n /** Server-Side Encryption properties for clients communicating with AWS s3. */\n sseEncryptionDetails: SseEncryptionDetails;\n }\n | undefined;\n}\n\nexport interface ForeignKeyConstraint {\n /** The name of the constraint. */\n name?: string | undefined;\n /** Column names for this constraint. */\n childColumns?: string[] | undefined;\n /** The full name of the parent constraint. */\n parentTable?: string | undefined;\n /** Column names for this constraint. */\n parentColumns?: string[] | undefined;\n /** True if the constraint is RELY, false or unset if NORELY. */\n rely?: boolean | undefined;\n}\n\n/** A function that is dependent on a SQL object. */\nexport interface FunctionDependency {\n /** Full name of the dependent function, in the form of __catalog_name__.__schema_name__.__function_name__. */\n functionFullName?: string | undefined;\n}\n\nexport interface GetTableRequest {\n /** Full name of the table. */\n fullNameArg?: string | undefined;\n /** Whether delta metadata should be included in the response. */\n includeDeltaMetadata?: boolean | undefined;\n /** Whether to include tables in the response for which the principal can only access selective metadata for. */\n includeBrowse?: boolean | undefined;\n /** Whether to include a manifest containing table capabilities in the response. */\n includeManifestCapabilities?: boolean | undefined;\n}\n\nexport interface ListTableSummariesRequest {\n /** Name of parent catalog for tables of interest. */\n catalogName?: string | undefined;\n /**\n * A sql LIKE pattern (% and _) for schema names.\n * All schemas will be returned if not set or empty.\n */\n schemaNamePattern?: string | undefined;\n /**\n * A sql LIKE pattern (% and _) for table names.\n * All tables will be returned if not set or empty.\n */\n tableNamePattern?: string | undefined;\n /**\n * Maximum number of summaries for tables to return.\n * If not set, the page length is set to a server configured value (10000, as of 1/5/2024).\n * - when set to a value greater than 0, the page length is the minimum of this value and a server configured value (10000, as of 1/5/2024);\n * - when set to 0, the page length is set to a server configured value (10000, as of 1/5/2024) (recommended);\n * - when set to a value less than 0, an invalid parameter error is returned;\n */\n maxResults?: number | undefined;\n /** Opaque pagination token to go to next page based on previous query. */\n pageToken?: string | undefined;\n /** Whether to include a manifest containing table capabilities in the response. */\n includeManifestCapabilities?: boolean | undefined;\n}\n\nexport interface ListTableSummariesResponse {\n /** List of table summaries. */\n tables?: TableSummary[] | undefined;\n /**\n * Opaque token to retrieve the next page of results. Absent if there are no more pages.\n * __page_token__ should be set to this value for the next request (for the next page of results).\n */\n nextPageToken?: string | undefined;\n}\n\nexport interface ListTablesRequest {\n /** Name of parent catalog for tables of interest. */\n catalogName?: string | undefined;\n /** Parent schema of tables. */\n schemaName?: string | undefined;\n /**\n * Maximum number of tables to return.\n * If not set, all the tables are returned (not recommended).\n * - when set to a value greater than 0, the page length is the minimum of this value and a server configured value;\n * - when set to 0, the page length is set to a server configured value (recommended);\n * - when set to a value less than 0, an invalid parameter error is returned;\n */\n maxResults?: number | undefined;\n /** Opaque token to send for the next page of results (pagination). */\n pageToken?: string | undefined;\n /** Whether to omit the columns of the table from the response or not. */\n omitColumns?: boolean | undefined;\n /** Whether to omit the properties of the table from the response or not. */\n omitProperties?: boolean | undefined;\n /** Whether to omit the username of the table (e.g. owner, updated_by, created_by) from the response or not. */\n omitUsername?: boolean | undefined;\n /** Whether to include tables in the response for which the principal can only access selective metadata for. */\n includeBrowse?: boolean | undefined;\n /** Whether to include a manifest containing table capabilities in the response. */\n includeManifestCapabilities?: boolean | undefined;\n}\n\nexport interface ListTablesResponse {\n /** An array of table information objects. */\n tables?: TableInfo[] | undefined;\n /**\n * Opaque token to retrieve the next page of results. Absent if there are no more pages.\n * __page_token__ should be set to this value for the next request (for the next page of results).\n */\n nextPageToken?: string | undefined;\n}\n\nexport interface NamedTableConstraint {\n /** The name of the constraint. */\n name?: string | undefined;\n}\n\n/**\n * Spec of an allowed option on a securable kind and its attributes.\n * This is mostly used by UI to provide user friendly hints and descriptions\n * in order to facilitate the securable creation process.\n */\nexport interface OptionSpec {\n /** The unique name of the option. */\n name?: string | undefined;\n /** The type of the option. */\n type?: OptionSpec_OptionType | undefined;\n /** The default value of the option, for example, value '443' for 'port' option. */\n defaultValue?: string | undefined;\n /**\n * For drop down / radio button selections, UI will want to know the possible\n * input values, it can also be used by other option types to limit input selections.\n */\n allowedValues?: string[] | undefined;\n /**\n * The hint is used on the UI to suggest what the input value\n * can possibly be like, for example: example.com for 'host' option.\n * Unlike default value, it will not be applied automatically without user input.\n */\n hint?: string | undefined;\n /** A concise user facing description of what the input value of this option should look like. */\n description?: string | undefined;\n /** Is the option required. */\n isRequired?: boolean | undefined;\n /** Is the option value considered secret and thus redacted on the UI. */\n isSecret?: boolean | undefined;\n /** Is the option value not user settable and is thus not shown on the UI. */\n isHidden?: boolean | undefined;\n /** Is the option updatable by users. */\n isUpdatable?: boolean | undefined;\n /** Specifies when the option value is displayed on the UI within the OAuth flow. */\n oauthStage?: OptionSpec_OauthStage | undefined;\n /** Specifies whether this option is safe to log, i.e. no sensitive information. */\n isLoggable?: boolean | undefined;\n /** Indicates whether an option can be provided by users in the create/update path of an entity. */\n isCreatable?: boolean | undefined;\n /** Indicates whether an option should be displayed with copy button on the UI. */\n isCopiable?: boolean | undefined;\n}\n\n/**\n * A positional argument passed to a row filter or column mask function.\n * Distinguishes between column references and literals.\n */\nexport interface PolicyFunctionArgument {\n arg?:\n | {\n $case: 'column';\n /** A column reference. */\n column: string;\n }\n | {\n $case: 'constant';\n /** A constant literal. */\n constant: string;\n }\n | undefined;\n}\n\nexport interface PrimaryKeyConstraint {\n /** The name of the constraint. */\n name?: string | undefined;\n /** Column names for this constraint. */\n childColumns?: string[] | undefined;\n /** Column names that represent a timeseries. */\n timeseriesColumns?: string[] | undefined;\n /** True if the constraint is RELY, false or unset if NORELY. */\n rely?: boolean | undefined;\n}\n\nexport interface RowFilter {\n /** The full name of the row filter SQL UDF. */\n functionName?: string | undefined;\n /**\n * The list of table columns to be passed as input to the row filter function. The column types\n * should match the types of the filter function arguments.\n */\n inputColumnNames?: string[] | undefined;\n /**\n * The list of additional table columns or literals to be passed as additional arguments to\n * a row filter function. This is the replacement of the deprecated input_column_names field and\n * carries information about the types (alias or constant) of the arguments to the filter function.\n */\n inputArguments?: PolicyFunctionArgument[] | undefined;\n}\n\n/** Manifest of a specific securable kind. */\nexport interface SecurableKindManifest {\n /** Securable Type of the kind. */\n securableType?: SecurableType | undefined;\n /** Securable kind to get manifest of. */\n securableKind?: SecurableKind | undefined;\n /** Privileges that can be assigned to the securable. */\n assignablePrivileges?: string[] | undefined;\n /** Detailed specs of allowed options. */\n options?: OptionSpec[] | undefined;\n /** A list of capabilities in the securable kind. */\n capabilities?: string[] | undefined;\n}\n\n/** Server-Side Encryption properties for clients communicating with AWS s3. */\nexport interface SseEncryptionDetails {\n /** Sets the value of the 'x-amz-server-side-encryption' header in S3 request. */\n algorithm?: SseEncryptionAlgorithm | undefined;\n /**\n * Optional. The ARN of the SSE-KMS key used with the S3 location, when algorithm = \"SSE-KMS\".\n * Sets the value of the 'x-amz-server-side-encryption-aws-kms-key-id' header.\n */\n awsKmsKeyArn?: string | undefined;\n}\n\n/**\n * A table constraint, as defined by *one* of the following fields being set:\n * __primary_key_constraint__, __foreign_key_constraint__, __named_table_constraint__.\n */\nexport interface TableConstraint {\n constraint?:\n | {\n $case: 'primaryKeyConstraint';\n primaryKeyConstraint: PrimaryKeyConstraint;\n }\n | {\n $case: 'foreignKeyConstraint';\n foreignKeyConstraint: ForeignKeyConstraint;\n }\n | {\n $case: 'namedTableConstraint';\n namedTableConstraint: NamedTableConstraint;\n }\n | undefined;\n}\n\n/** A table that is dependent on a SQL object. */\nexport interface TableDependency {\n /** Full name of the dependent table, in the form of __catalog_name__.__schema_name__.__table_name__. */\n tableFullName?: string | undefined;\n}\n\nexport interface TableExistsRequest {\n /** Full name of the table. */\n fullNameArg?: string | undefined;\n}\n\nexport interface TableExistsResponse {\n /** Whether the table exists or not. */\n tableExists?: boolean | undefined;\n}\n\nexport interface TableInfo {\n /** Name of table, relative to parent schema. */\n name?: string | 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 tableType?: TableType | undefined;\n dataSourceFormat?: DataSourceFormat | undefined;\n /** Storage root URL for table (for **MANAGED**, **EXTERNAL** tables). */\n storageLocation?: string | undefined;\n /** View definition SQL (when __table_type__ is **VIEW**, **MATERIALIZED_VIEW**, or **STREAMING_TABLE**) */\n viewDefinition?: string | undefined;\n /**\n * View dependencies (when table_type == **VIEW** or **MATERIALIZED_VIEW**, **STREAMING_TABLE**)\n * - when DependencyList is None, the dependency is not provided;\n * - when DependencyList is an empty list, the dependency is provided but is empty;\n * - when DependencyList is not an empty list, dependencies are provided and recorded.\n * Note: this field is not set in the output of the __listTables__ API.\n */\n viewDependencies?: DependencyList | undefined;\n /** List of schemes whose objects can be referenced without qualification. */\n sqlPath?: string | undefined;\n /** Username of current owner of table. */\n owner?: string | undefined;\n /** User-provided free-form text description. */\n comment?: string | undefined;\n /** Name of the storage credential, when a storage credential is configured for use with this table. */\n storageCredentialName?: string | undefined;\n /** List of table constraints. Note: this field is not set in the output of the __listTables__ API. */\n tableConstraints?: TableConstraint[] | undefined;\n rowFilter?: RowFilter | undefined;\n /** The pipeline ID of the table. Applicable for tables created by pipelines (Materialized View, Streaming Table, etc.). */\n pipelineId?: string | undefined;\n enablePredictiveOptimization?: string | undefined;\n /** Unique identifier of parent metastore. */\n metastoreId?: string | undefined;\n /** Full name of table, in form of __catalog_name__.__schema_name__.__table_name__ */\n fullName?: string | undefined;\n /** Unique ID of the Data Access Configuration to use with the table data. */\n dataAccessConfigurationId?: string | undefined;\n /** Time at which this table was created, in epoch milliseconds. */\n createdAt?: bigint | undefined;\n /** Username of table creator. */\n createdBy?: string | undefined;\n /** Time at which this table was last modified, in epoch milliseconds. */\n updatedAt?: bigint | undefined;\n /** Username of user who last modified the table. */\n updatedBy?: string | undefined;\n /** The unique identifier of the table. */\n tableId?: string | undefined;\n /** Information pertaining to current state of the delta table. */\n deltaRuntimePropertiesKvpairs?: DeltaRuntimePropertiesKvPairs | undefined;\n /** Time at which this table was deleted, in epoch milliseconds. Field is omitted if table is not deleted. */\n deletedAt?: bigint | undefined;\n effectivePredictiveOptimizationFlag?:\n | EffectivePredictiveOptimizationFlag\n | undefined;\n /** The AWS access point to use when accesing s3 for this external location. */\n accessPoint?: string | undefined;\n /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */\n browseOnly?: boolean | undefined;\n encryptionDetails?: EncryptionDetails | undefined;\n /** SecurableKindManifest of table, including capabilities the table has. */\n securableKindManifest?: SecurableKindManifest | undefined;\n /** The array of __ColumnInfo__ definitions of the table's columns. */\n columns?: ColumnInfo[] | undefined;\n /** A map of key-value properties attached to the securable. */\n properties?: Record<string, string> | undefined;\n}\n\nexport interface TableSummary {\n /** The full name of the table. */\n fullName?: string | undefined;\n tableType?: TableType | undefined;\n /** SecurableKindManifest of table, including capabilities the table has. */\n securableKindManifest?: SecurableKindManifest | undefined;\n}\n\nexport interface UpdateTableRequest {\n /** Full name of the table. */\n fullNameArg?: string | undefined;\n /** Name of table, relative to parent schema. */\n name?: string | 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 tableType?: TableType | undefined;\n dataSourceFormat?: DataSourceFormat | undefined;\n /** Storage root URL for table (for **MANAGED**, **EXTERNAL** tables). */\n storageLocation?: string | undefined;\n /** View definition SQL (when __table_type__ is **VIEW**, **MATERIALIZED_VIEW**, or **STREAMING_TABLE**) */\n viewDefinition?: string | undefined;\n /**\n * View dependencies (when table_type == **VIEW** or **MATERIALIZED_VIEW**, **STREAMING_TABLE**)\n * - when DependencyList is None, the dependency is not provided;\n * - when DependencyList is an empty list, the dependency is provided but is empty;\n * - when DependencyList is not an empty list, dependencies are provided and recorded.\n * Note: this field is not set in the output of the __listTables__ API.\n */\n viewDependencies?: DependencyList | undefined;\n /** List of schemes whose objects can be referenced without qualification. */\n sqlPath?: string | undefined;\n /** Username of current owner of table. */\n owner?: string | undefined;\n /** User-provided free-form text description. */\n comment?: string | undefined;\n /** Name of the storage credential, when a storage credential is configured for use with this table. */\n storageCredentialName?: string | undefined;\n /** List of table constraints. Note: this field is not set in the output of the __listTables__ API. */\n tableConstraints?: TableConstraint[] | undefined;\n rowFilter?: RowFilter | undefined;\n /** The pipeline ID of the table. Applicable for tables created by pipelines (Materialized View, Streaming Table, etc.). */\n pipelineId?: string | undefined;\n enablePredictiveOptimization?: string | undefined;\n /** Unique identifier of parent metastore. */\n metastoreId?: string | undefined;\n /** Full name of table, in form of __catalog_name__.__schema_name__.__table_name__ */\n fullName?: string | undefined;\n /** Unique ID of the Data Access Configuration to use with the table data. */\n dataAccessConfigurationId?: string | undefined;\n /** Time at which this table was created, in epoch milliseconds. */\n createdAt?: bigint | undefined;\n /** Username of table creator. */\n createdBy?: string | undefined;\n /** Time at which this table was last modified, in epoch milliseconds. */\n updatedAt?: bigint | undefined;\n /** Username of user who last modified the table. */\n updatedBy?: string | undefined;\n /** The unique identifier of the table. */\n tableId?: string | undefined;\n /** Information pertaining to current state of the delta table. */\n deltaRuntimePropertiesKvpairs?: DeltaRuntimePropertiesKvPairs | undefined;\n /** Time at which this table was deleted, in epoch milliseconds. Field is omitted if table is not deleted. */\n deletedAt?: bigint | undefined;\n effectivePredictiveOptimizationFlag?:\n | EffectivePredictiveOptimizationFlag\n | undefined;\n /** The AWS access point to use when accesing s3 for this external location. */\n accessPoint?: string | undefined;\n /** Indicates whether the principal is limited to retrieving metadata for the associated object through the BROWSE privilege when include_browse is enabled in the request. */\n browseOnly?: boolean | undefined;\n encryptionDetails?: EncryptionDetails | undefined;\n /** SecurableKindManifest of table, including capabilities the table has. */\n securableKindManifest?: SecurableKindManifest | undefined;\n /** The array of __ColumnInfo__ definitions of the table's columns. */\n columns?: ColumnInfo[] | undefined;\n /** A map of key-value properties attached to the securable. */\n properties?: Record<string, string> | undefined;\n}\n\n// eslint-disable-next-line @typescript-eslint/no-empty-object-type\nexport interface UpdateTableResponse {}\n\nexport const unmarshalColumnInfoSchema: z.ZodType<ColumnInfo> = z\n .object({\n name: z.string().optional(),\n type_text: z.string().optional(),\n type_name: z.string().optional(),\n position: z.number().optional(),\n type_precision: z.number().optional(),\n type_scale: z.number().optional(),\n type_interval_type: z.string().optional(),\n type_json: z.string().optional(),\n comment: z.string().optional(),\n nullable: z.boolean().optional(),\n partition_index: z.number().optional(),\n mask: z.lazy(() => unmarshalColumnMaskSchema).optional(),\n })\n .transform(d => ({\n name: d.name,\n typeText: d.type_text,\n typeName: d.type_name,\n position: d.position,\n typePrecision: d.type_precision,\n typeScale: d.type_scale,\n typeIntervalType: d.type_interval_type,\n typeJson: d.type_json,\n comment: d.comment,\n nullable: d.nullable,\n partitionIndex: d.partition_index,\n mask: d.mask,\n }));\n\nexport const unmarshalColumnMaskSchema: z.ZodType<ColumnMask> = z\n .object({\n function_name: z.string().optional(),\n using_column_names: z.array(z.string()).optional(),\n using_arguments: z\n .array(z.lazy(() => unmarshalPolicyFunctionArgumentSchema))\n .optional(),\n })\n .transform(d => ({\n functionName: d.function_name,\n usingColumnNames: d.using_column_names,\n usingArguments: d.using_arguments,\n }));\n\nexport const unmarshalConnectionDependencySchema: z.ZodType<ConnectionDependency> =\n z\n .object({\n connection_name: z.string().optional(),\n })\n .transform(d => ({\n connectionName: d.connection_name,\n }));\n\nexport const unmarshalCredentialDependencySchema: z.ZodType<CredentialDependency> =\n z\n .object({\n credential_name: z.string().optional(),\n })\n .transform(d => ({\n credentialName: d.credential_name,\n }));\n\nexport const unmarshalDeleteTableConstraintResponseSchema: z.ZodType<DeleteTableConstraintResponse> =\n z.object({});\n\nexport const unmarshalDeleteTableResponseSchema: z.ZodType<DeleteTableResponse> =\n z.object({});\n\nexport const unmarshalDeltaRuntimePropertiesKvPairsSchema: z.ZodType<DeltaRuntimePropertiesKvPairs> =\n z\n .object({\n delta_runtime_properties: z.record(z.string(), z.string()).optional(),\n })\n .transform(d => ({\n deltaRuntimeProperties: d.delta_runtime_properties,\n }));\n\nexport const unmarshalDependencySchema: z.ZodType<Dependency> = z\n .object({\n table: z.lazy(() => unmarshalTableDependencySchema).optional(),\n function: z.lazy(() => unmarshalFunctionDependencySchema).optional(),\n connection: z.lazy(() => unmarshalConnectionDependencySchema).optional(),\n credential: z.lazy(() => unmarshalCredentialDependencySchema).optional(),\n })\n .transform(d => ({\n value:\n d.table !== undefined\n ? {$case: 'table' as const, table: d.table}\n : d.function !== undefined\n ? {$case: 'function' as const, function: d.function}\n : d.connection !== undefined\n ? {$case: 'connection' as const, connection: d.connection}\n : d.credential !== undefined\n ? {$case: 'credential' as const, credential: d.credential}\n : undefined,\n }));\n\nexport const unmarshalDependencyListSchema: z.ZodType<DependencyList> = z\n .object({\n dependencies: z.array(z.lazy(() => unmarshalDependencySchema)).optional(),\n })\n .transform(d => ({\n dependencies: d.dependencies,\n }));\n\nexport const unmarshalEffectivePredictiveOptimizationFlagSchema: z.ZodType<EffectivePredictiveOptimizationFlag> =\n z\n .object({\n value: z.string().optional(),\n inherited_from_type: z.string().optional(),\n inherited_from_name: z.string().optional(),\n })\n .transform(d => ({\n value: d.value,\n inheritedFromType: d.inherited_from_type,\n inheritedFromName: d.inherited_from_name,\n }));\n\nexport const unmarshalEncryptionDetailsSchema: z.ZodType<EncryptionDetails> = z\n .object({\n sse_encryption_details: z\n .lazy(() => unmarshalSseEncryptionDetailsSchema)\n .optional(),\n })\n .transform(d => ({\n encryptionDetailsType:\n d.sse_encryption_details !== undefined\n ? {\n $case: 'sseEncryptionDetails' as const,\n sseEncryptionDetails: d.sse_encryption_details,\n }\n : undefined,\n }));\n\nexport const unmarshalForeignKeyConstraintSchema: z.ZodType<ForeignKeyConstraint> =\n z\n .object({\n name: z.string().optional(),\n child_columns: z.array(z.string()).optional(),\n parent_table: z.string().optional(),\n parent_columns: z.array(z.string()).optional(),\n rely: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n childColumns: d.child_columns,\n parentTable: d.parent_table,\n parentColumns: d.parent_columns,\n rely: d.rely,\n }));\n\nexport const unmarshalFunctionDependencySchema: z.ZodType<FunctionDependency> =\n z\n .object({\n function_full_name: z.string().optional(),\n })\n .transform(d => ({\n functionFullName: d.function_full_name,\n }));\n\nexport const unmarshalListTableSummariesResponseSchema: z.ZodType<ListTableSummariesResponse> =\n z\n .object({\n tables: z.array(z.lazy(() => unmarshalTableSummarySchema)).optional(),\n next_page_token: z.string().optional(),\n })\n .transform(d => ({\n tables: d.tables,\n nextPageToken: d.next_page_token,\n }));\n\nexport const unmarshalListTablesResponseSchema: z.ZodType<ListTablesResponse> =\n z\n .object({\n tables: z.array(z.lazy(() => unmarshalTableInfoSchema)).optional(),\n next_page_token: z.string().optional(),\n })\n .transform(d => ({\n tables: d.tables,\n nextPageToken: d.next_page_token,\n }));\n\nexport const unmarshalNamedTableConstraintSchema: z.ZodType<NamedTableConstraint> =\n z\n .object({\n name: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n }));\n\nexport const unmarshalOptionSpecSchema: z.ZodType<OptionSpec> = z\n .object({\n name: z.string().optional(),\n type: z.string().optional(),\n default_value: z.string().optional(),\n allowed_values: z.array(z.string()).optional(),\n hint: z.string().optional(),\n description: z.string().optional(),\n is_required: z.boolean().optional(),\n is_secret: z.boolean().optional(),\n is_hidden: z.boolean().optional(),\n is_updatable: z.boolean().optional(),\n oauth_stage: z.string().optional(),\n is_loggable: z.boolean().optional(),\n is_creatable: z.boolean().optional(),\n is_copiable: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n type: d.type,\n defaultValue: d.default_value,\n allowedValues: d.allowed_values,\n hint: d.hint,\n description: d.description,\n isRequired: d.is_required,\n isSecret: d.is_secret,\n isHidden: d.is_hidden,\n isUpdatable: d.is_updatable,\n oauthStage: d.oauth_stage,\n isLoggable: d.is_loggable,\n isCreatable: d.is_creatable,\n isCopiable: d.is_copiable,\n }));\n\nexport const unmarshalPolicyFunctionArgumentSchema: z.ZodType<PolicyFunctionArgument> =\n z\n .object({\n column: z.string().optional(),\n constant: z.string().optional(),\n })\n .transform(d => ({\n arg:\n d.column !== undefined\n ? {$case: 'column' as const, column: d.column}\n : d.constant !== undefined\n ? {$case: 'constant' as const, constant: d.constant}\n : undefined,\n }));\n\nexport const unmarshalPrimaryKeyConstraintSchema: z.ZodType<PrimaryKeyConstraint> =\n z\n .object({\n name: z.string().optional(),\n child_columns: z.array(z.string()).optional(),\n timeseries_columns: z.array(z.string()).optional(),\n rely: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n childColumns: d.child_columns,\n timeseriesColumns: d.timeseries_columns,\n rely: d.rely,\n }));\n\nexport const unmarshalRowFilterSchema: z.ZodType<RowFilter> = z\n .object({\n function_name: z.string().optional(),\n input_column_names: z.array(z.string()).optional(),\n input_arguments: z\n .array(z.lazy(() => unmarshalPolicyFunctionArgumentSchema))\n .optional(),\n })\n .transform(d => ({\n functionName: d.function_name,\n inputColumnNames: d.input_column_names,\n inputArguments: d.input_arguments,\n }));\n\nexport const unmarshalSecurableKindManifestSchema: z.ZodType<SecurableKindManifest> =\n z\n .object({\n securable_type: z.string().optional(),\n securable_kind: z.string().optional(),\n assignable_privileges: z.array(z.string()).optional(),\n options: z.array(z.lazy(() => unmarshalOptionSpecSchema)).optional(),\n capabilities: z.array(z.string()).optional(),\n })\n .transform(d => ({\n securableType: d.securable_type,\n securableKind: d.securable_kind,\n assignablePrivileges: d.assignable_privileges,\n options: d.options,\n capabilities: d.capabilities,\n }));\n\nexport const unmarshalSseEncryptionDetailsSchema: z.ZodType<SseEncryptionDetails> =\n z\n .object({\n algorithm: z.string().optional(),\n aws_kms_key_arn: z.string().optional(),\n })\n .transform(d => ({\n algorithm: d.algorithm,\n awsKmsKeyArn: d.aws_kms_key_arn,\n }));\n\nexport const unmarshalTableConstraintSchema: z.ZodType<TableConstraint> = z\n .object({\n primary_key_constraint: z\n .lazy(() => unmarshalPrimaryKeyConstraintSchema)\n .optional(),\n foreign_key_constraint: z\n .lazy(() => unmarshalForeignKeyConstraintSchema)\n .optional(),\n named_table_constraint: z\n .lazy(() => unmarshalNamedTableConstraintSchema)\n .optional(),\n })\n .transform(d => ({\n constraint:\n d.primary_key_constraint !== undefined\n ? {\n $case: 'primaryKeyConstraint' as const,\n primaryKeyConstraint: d.primary_key_constraint,\n }\n : d.foreign_key_constraint !== undefined\n ? {\n $case: 'foreignKeyConstraint' as const,\n foreignKeyConstraint: d.foreign_key_constraint,\n }\n : d.named_table_constraint !== undefined\n ? {\n $case: 'namedTableConstraint' as const,\n namedTableConstraint: d.named_table_constraint,\n }\n : undefined,\n }));\n\nexport const unmarshalTableDependencySchema: z.ZodType<TableDependency> = z\n .object({\n table_full_name: z.string().optional(),\n })\n .transform(d => ({\n tableFullName: d.table_full_name,\n }));\n\nexport const unmarshalTableExistsResponseSchema: z.ZodType<TableExistsResponse> =\n z\n .object({\n table_exists: z.boolean().optional(),\n })\n .transform(d => ({\n tableExists: d.table_exists,\n }));\n\nexport const unmarshalTableInfoSchema: z.ZodType<TableInfo> = z\n .object({\n name: z.string().optional(),\n catalog_name: z.string().optional(),\n schema_name: z.string().optional(),\n table_type: z.string().optional(),\n data_source_format: z.string().optional(),\n storage_location: z.string().optional(),\n view_definition: z.string().optional(),\n view_dependencies: z.lazy(() => unmarshalDependencyListSchema).optional(),\n sql_path: z.string().optional(),\n owner: z.string().optional(),\n comment: z.string().optional(),\n storage_credential_name: z.string().optional(),\n table_constraints: z\n .array(z.lazy(() => unmarshalTableConstraintSchema))\n .optional(),\n row_filter: z.lazy(() => unmarshalRowFilterSchema).optional(),\n pipeline_id: z.string().optional(),\n enable_predictive_optimization: z.string().optional(),\n metastore_id: z.string().optional(),\n full_name: z.string().optional(),\n data_access_configuration_id: z.string().optional(),\n created_at: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n created_by: z.string().optional(),\n updated_at: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n updated_by: z.string().optional(),\n table_id: z.string().optional(),\n delta_runtime_properties_kvpairs: z\n .lazy(() => unmarshalDeltaRuntimePropertiesKvPairsSchema)\n .optional(),\n deleted_at: z\n .union([z.number(), z.bigint(), z.string()])\n .transform(v => BigInt(v))\n .optional(),\n effective_predictive_optimization_flag: z\n .lazy(() => unmarshalEffectivePredictiveOptimizationFlagSchema)\n .optional(),\n access_point: z.string().optional(),\n browse_only: z.boolean().optional(),\n encryption_details: z\n .lazy(() => unmarshalEncryptionDetailsSchema)\n .optional(),\n securable_kind_manifest: z\n .lazy(() => unmarshalSecurableKindManifestSchema)\n .optional(),\n columns: z.array(z.lazy(() => unmarshalColumnInfoSchema)).optional(),\n properties: z.record(z.string(), z.string()).optional(),\n })\n .transform(d => ({\n name: d.name,\n catalogName: d.catalog_name,\n schemaName: d.schema_name,\n tableType: d.table_type,\n dataSourceFormat: d.data_source_format,\n storageLocation: d.storage_location,\n viewDefinition: d.view_definition,\n viewDependencies: d.view_dependencies,\n sqlPath: d.sql_path,\n owner: d.owner,\n comment: d.comment,\n storageCredentialName: d.storage_credential_name,\n tableConstraints: d.table_constraints,\n rowFilter: d.row_filter,\n pipelineId: d.pipeline_id,\n enablePredictiveOptimization: d.enable_predictive_optimization,\n metastoreId: d.metastore_id,\n fullName: d.full_name,\n dataAccessConfigurationId: d.data_access_configuration_id,\n createdAt: d.created_at,\n createdBy: d.created_by,\n updatedAt: d.updated_at,\n updatedBy: d.updated_by,\n tableId: d.table_id,\n deltaRuntimePropertiesKvpairs: d.delta_runtime_properties_kvpairs,\n deletedAt: d.deleted_at,\n effectivePredictiveOptimizationFlag:\n d.effective_predictive_optimization_flag,\n accessPoint: d.access_point,\n browseOnly: d.browse_only,\n encryptionDetails: d.encryption_details,\n securableKindManifest: d.securable_kind_manifest,\n columns: d.columns,\n properties: d.properties,\n }));\n\nexport const unmarshalTableSummarySchema: z.ZodType<TableSummary> = z\n .object({\n full_name: z.string().optional(),\n table_type: z.string().optional(),\n securable_kind_manifest: z\n .lazy(() => unmarshalSecurableKindManifestSchema)\n .optional(),\n })\n .transform(d => ({\n fullName: d.full_name,\n tableType: d.table_type,\n securableKindManifest: d.securable_kind_manifest,\n }));\n\nexport const unmarshalUpdateTableResponseSchema: z.ZodType<UpdateTableResponse> =\n z.object({});\n\nexport const marshalColumnInfoSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n typeText: z.string().optional(),\n typeName: z.string().optional(),\n position: z.number().optional(),\n typePrecision: z.number().optional(),\n typeScale: z.number().optional(),\n typeIntervalType: z.string().optional(),\n typeJson: z.string().optional(),\n comment: z.string().optional(),\n nullable: z.boolean().optional(),\n partitionIndex: z.number().optional(),\n mask: z.lazy(() => marshalColumnMaskSchema).optional(),\n })\n .transform(d => ({\n name: d.name,\n type_text: d.typeText,\n type_name: d.typeName,\n position: d.position,\n type_precision: d.typePrecision,\n type_scale: d.typeScale,\n type_interval_type: d.typeIntervalType,\n type_json: d.typeJson,\n comment: d.comment,\n nullable: d.nullable,\n partition_index: d.partitionIndex,\n mask: d.mask,\n }));\n\nexport const marshalColumnMaskSchema: z.ZodType = z\n .object({\n functionName: z.string().optional(),\n usingColumnNames: z.array(z.string()).optional(),\n usingArguments: z\n .array(z.lazy(() => marshalPolicyFunctionArgumentSchema))\n .optional(),\n })\n .transform(d => ({\n function_name: d.functionName,\n using_column_names: d.usingColumnNames,\n using_arguments: d.usingArguments,\n }));\n\nexport const marshalConnectionDependencySchema: z.ZodType = z\n .object({\n connectionName: z.string().optional(),\n })\n .transform(d => ({\n connection_name: d.connectionName,\n }));\n\nexport const marshalCreateTableConstraintRequestSchema: z.ZodType = z\n .object({\n fullNameArg: z.string().optional(),\n constraint: z.lazy(() => marshalTableConstraintSchema).optional(),\n })\n .transform(d => ({\n full_name_arg: d.fullNameArg,\n constraint: d.constraint,\n }));\n\nexport const marshalCreateTableRequestSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n tableType: z.string().optional(),\n dataSourceFormat: z.string().optional(),\n storageLocation: z.string().optional(),\n viewDefinition: z.string().optional(),\n viewDependencies: z.lazy(() => marshalDependencyListSchema).optional(),\n sqlPath: z.string().optional(),\n owner: z.string().optional(),\n comment: z.string().optional(),\n storageCredentialName: z.string().optional(),\n tableConstraints: z\n .array(z.lazy(() => marshalTableConstraintSchema))\n .optional(),\n rowFilter: z.lazy(() => marshalRowFilterSchema).optional(),\n pipelineId: z.string().optional(),\n enablePredictiveOptimization: z.string().optional(),\n metastoreId: z.string().optional(),\n fullName: z.string().optional(),\n dataAccessConfigurationId: z.string().optional(),\n createdAt: z.bigint().optional(),\n createdBy: z.string().optional(),\n updatedAt: z.bigint().optional(),\n updatedBy: z.string().optional(),\n tableId: z.string().optional(),\n deltaRuntimePropertiesKvpairs: z\n .lazy(() => marshalDeltaRuntimePropertiesKvPairsSchema)\n .optional(),\n deletedAt: z.bigint().optional(),\n effectivePredictiveOptimizationFlag: z\n .lazy(() => marshalEffectivePredictiveOptimizationFlagSchema)\n .optional(),\n accessPoint: z.string().optional(),\n browseOnly: z.boolean().optional(),\n encryptionDetails: z.lazy(() => marshalEncryptionDetailsSchema).optional(),\n securableKindManifest: z\n .lazy(() => marshalSecurableKindManifestSchema)\n .optional(),\n columns: z.array(z.lazy(() => marshalColumnInfoSchema)).optional(),\n properties: z.record(z.string(), z.string()).optional(),\n })\n .transform(d => ({\n name: d.name,\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n table_type: d.tableType,\n data_source_format: d.dataSourceFormat,\n storage_location: d.storageLocation,\n view_definition: d.viewDefinition,\n view_dependencies: d.viewDependencies,\n sql_path: d.sqlPath,\n owner: d.owner,\n comment: d.comment,\n storage_credential_name: d.storageCredentialName,\n table_constraints: d.tableConstraints,\n row_filter: d.rowFilter,\n pipeline_id: d.pipelineId,\n enable_predictive_optimization: d.enablePredictiveOptimization,\n metastore_id: d.metastoreId,\n full_name: d.fullName,\n data_access_configuration_id: d.dataAccessConfigurationId,\n created_at: d.createdAt,\n created_by: d.createdBy,\n updated_at: d.updatedAt,\n updated_by: d.updatedBy,\n table_id: d.tableId,\n delta_runtime_properties_kvpairs: d.deltaRuntimePropertiesKvpairs,\n deleted_at: d.deletedAt,\n effective_predictive_optimization_flag:\n d.effectivePredictiveOptimizationFlag,\n access_point: d.accessPoint,\n browse_only: d.browseOnly,\n encryption_details: d.encryptionDetails,\n securable_kind_manifest: d.securableKindManifest,\n columns: d.columns,\n properties: d.properties,\n }));\n\nexport const marshalCredentialDependencySchema: z.ZodType = z\n .object({\n credentialName: z.string().optional(),\n })\n .transform(d => ({\n credential_name: d.credentialName,\n }));\n\nexport const marshalDeltaRuntimePropertiesKvPairsSchema: z.ZodType = z\n .object({\n deltaRuntimeProperties: z.record(z.string(), z.string()).optional(),\n })\n .transform(d => ({\n delta_runtime_properties: d.deltaRuntimeProperties,\n }));\n\nexport const marshalDependencySchema: z.ZodType = z\n .object({\n value: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('table'),\n table: z.lazy(() => marshalTableDependencySchema),\n }),\n z.object({\n $case: z.literal('function'),\n function: z.lazy(() => marshalFunctionDependencySchema),\n }),\n z.object({\n $case: z.literal('connection'),\n connection: z.lazy(() => marshalConnectionDependencySchema),\n }),\n z.object({\n $case: z.literal('credential'),\n credential: z.lazy(() => marshalCredentialDependencySchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.value?.$case === 'table' && {table: d.value.table}),\n ...(d.value?.$case === 'function' && {function: d.value.function}),\n ...(d.value?.$case === 'connection' && {connection: d.value.connection}),\n ...(d.value?.$case === 'credential' && {credential: d.value.credential}),\n }));\n\nexport const marshalDependencyListSchema: z.ZodType = z\n .object({\n dependencies: z.array(z.lazy(() => marshalDependencySchema)).optional(),\n })\n .transform(d => ({\n dependencies: d.dependencies,\n }));\n\nexport const marshalEffectivePredictiveOptimizationFlagSchema: z.ZodType = z\n .object({\n value: z.string().optional(),\n inheritedFromType: z.string().optional(),\n inheritedFromName: z.string().optional(),\n })\n .transform(d => ({\n value: d.value,\n inherited_from_type: d.inheritedFromType,\n inherited_from_name: d.inheritedFromName,\n }));\n\nexport const marshalEncryptionDetailsSchema: z.ZodType = z\n .object({\n encryptionDetailsType: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('sseEncryptionDetails'),\n sseEncryptionDetails: z.lazy(() => marshalSseEncryptionDetailsSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.encryptionDetailsType?.$case === 'sseEncryptionDetails' && {\n sse_encryption_details: d.encryptionDetailsType.sseEncryptionDetails,\n }),\n }));\n\nexport const marshalForeignKeyConstraintSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n childColumns: z.array(z.string()).optional(),\n parentTable: z.string().optional(),\n parentColumns: z.array(z.string()).optional(),\n rely: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n child_columns: d.childColumns,\n parent_table: d.parentTable,\n parent_columns: d.parentColumns,\n rely: d.rely,\n }));\n\nexport const marshalFunctionDependencySchema: z.ZodType = z\n .object({\n functionFullName: z.string().optional(),\n })\n .transform(d => ({\n function_full_name: d.functionFullName,\n }));\n\nexport const marshalNamedTableConstraintSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n })\n .transform(d => ({\n name: d.name,\n }));\n\nexport const marshalOptionSpecSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n type: z.string().optional(),\n defaultValue: z.string().optional(),\n allowedValues: z.array(z.string()).optional(),\n hint: z.string().optional(),\n description: z.string().optional(),\n isRequired: z.boolean().optional(),\n isSecret: z.boolean().optional(),\n isHidden: z.boolean().optional(),\n isUpdatable: z.boolean().optional(),\n oauthStage: z.string().optional(),\n isLoggable: z.boolean().optional(),\n isCreatable: z.boolean().optional(),\n isCopiable: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n type: d.type,\n default_value: d.defaultValue,\n allowed_values: d.allowedValues,\n hint: d.hint,\n description: d.description,\n is_required: d.isRequired,\n is_secret: d.isSecret,\n is_hidden: d.isHidden,\n is_updatable: d.isUpdatable,\n oauth_stage: d.oauthStage,\n is_loggable: d.isLoggable,\n is_creatable: d.isCreatable,\n is_copiable: d.isCopiable,\n }));\n\nexport const marshalPolicyFunctionArgumentSchema: z.ZodType = z\n .object({\n arg: z\n .discriminatedUnion('$case', [\n z.object({$case: z.literal('column'), column: z.string()}),\n z.object({$case: z.literal('constant'), constant: z.string()}),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.arg?.$case === 'column' && {column: d.arg.column}),\n ...(d.arg?.$case === 'constant' && {constant: d.arg.constant}),\n }));\n\nexport const marshalPrimaryKeyConstraintSchema: z.ZodType = z\n .object({\n name: z.string().optional(),\n childColumns: z.array(z.string()).optional(),\n timeseriesColumns: z.array(z.string()).optional(),\n rely: z.boolean().optional(),\n })\n .transform(d => ({\n name: d.name,\n child_columns: d.childColumns,\n timeseries_columns: d.timeseriesColumns,\n rely: d.rely,\n }));\n\nexport const marshalRowFilterSchema: z.ZodType = z\n .object({\n functionName: z.string().optional(),\n inputColumnNames: z.array(z.string()).optional(),\n inputArguments: z\n .array(z.lazy(() => marshalPolicyFunctionArgumentSchema))\n .optional(),\n })\n .transform(d => ({\n function_name: d.functionName,\n input_column_names: d.inputColumnNames,\n input_arguments: d.inputArguments,\n }));\n\nexport const marshalSecurableKindManifestSchema: z.ZodType = z\n .object({\n securableType: z.string().optional(),\n securableKind: z.string().optional(),\n assignablePrivileges: z.array(z.string()).optional(),\n options: z.array(z.lazy(() => marshalOptionSpecSchema)).optional(),\n capabilities: z.array(z.string()).optional(),\n })\n .transform(d => ({\n securable_type: d.securableType,\n securable_kind: d.securableKind,\n assignable_privileges: d.assignablePrivileges,\n options: d.options,\n capabilities: d.capabilities,\n }));\n\nexport const marshalSseEncryptionDetailsSchema: z.ZodType = z\n .object({\n algorithm: z.string().optional(),\n awsKmsKeyArn: z.string().optional(),\n })\n .transform(d => ({\n algorithm: d.algorithm,\n aws_kms_key_arn: d.awsKmsKeyArn,\n }));\n\nexport const marshalTableConstraintSchema: z.ZodType = z\n .object({\n constraint: z\n .discriminatedUnion('$case', [\n z.object({\n $case: z.literal('primaryKeyConstraint'),\n primaryKeyConstraint: z.lazy(() => marshalPrimaryKeyConstraintSchema),\n }),\n z.object({\n $case: z.literal('foreignKeyConstraint'),\n foreignKeyConstraint: z.lazy(() => marshalForeignKeyConstraintSchema),\n }),\n z.object({\n $case: z.literal('namedTableConstraint'),\n namedTableConstraint: z.lazy(() => marshalNamedTableConstraintSchema),\n }),\n ])\n .optional(),\n })\n .transform(d => ({\n ...(d.constraint?.$case === 'primaryKeyConstraint' && {\n primary_key_constraint: d.constraint.primaryKeyConstraint,\n }),\n ...(d.constraint?.$case === 'foreignKeyConstraint' && {\n foreign_key_constraint: d.constraint.foreignKeyConstraint,\n }),\n ...(d.constraint?.$case === 'namedTableConstraint' && {\n named_table_constraint: d.constraint.namedTableConstraint,\n }),\n }));\n\nexport const marshalTableDependencySchema: z.ZodType = z\n .object({\n tableFullName: z.string().optional(),\n })\n .transform(d => ({\n table_full_name: d.tableFullName,\n }));\n\nexport const marshalUpdateTableRequestSchema: z.ZodType = z\n .object({\n fullNameArg: z.string().optional(),\n name: z.string().optional(),\n catalogName: z.string().optional(),\n schemaName: z.string().optional(),\n tableType: z.string().optional(),\n dataSourceFormat: z.string().optional(),\n storageLocation: z.string().optional(),\n viewDefinition: z.string().optional(),\n viewDependencies: z.lazy(() => marshalDependencyListSchema).optional(),\n sqlPath: z.string().optional(),\n owner: z.string().optional(),\n comment: z.string().optional(),\n storageCredentialName: z.string().optional(),\n tableConstraints: z\n .array(z.lazy(() => marshalTableConstraintSchema))\n .optional(),\n rowFilter: z.lazy(() => marshalRowFilterSchema).optional(),\n pipelineId: z.string().optional(),\n enablePredictiveOptimization: z.string().optional(),\n metastoreId: z.string().optional(),\n fullName: z.string().optional(),\n dataAccessConfigurationId: z.string().optional(),\n createdAt: z.bigint().optional(),\n createdBy: z.string().optional(),\n updatedAt: z.bigint().optional(),\n updatedBy: z.string().optional(),\n tableId: z.string().optional(),\n deltaRuntimePropertiesKvpairs: z\n .lazy(() => marshalDeltaRuntimePropertiesKvPairsSchema)\n .optional(),\n deletedAt: z.bigint().optional(),\n effectivePredictiveOptimizationFlag: z\n .lazy(() => marshalEffectivePredictiveOptimizationFlagSchema)\n .optional(),\n accessPoint: z.string().optional(),\n browseOnly: z.boolean().optional(),\n encryptionDetails: z.lazy(() => marshalEncryptionDetailsSchema).optional(),\n securableKindManifest: z\n .lazy(() => marshalSecurableKindManifestSchema)\n .optional(),\n columns: z.array(z.lazy(() => marshalColumnInfoSchema)).optional(),\n properties: z.record(z.string(), z.string()).optional(),\n })\n .transform(d => ({\n full_name_arg: d.fullNameArg,\n name: d.name,\n catalog_name: d.catalogName,\n schema_name: d.schemaName,\n table_type: d.tableType,\n data_source_format: d.dataSourceFormat,\n storage_location: d.storageLocation,\n view_definition: d.viewDefinition,\n view_dependencies: d.viewDependencies,\n sql_path: d.sqlPath,\n owner: d.owner,\n comment: d.comment,\n storage_credential_name: d.storageCredentialName,\n table_constraints: d.tableConstraints,\n row_filter: d.rowFilter,\n pipeline_id: d.pipelineId,\n enable_predictive_optimization: d.enablePredictiveOptimization,\n metastore_id: d.metastoreId,\n full_name: d.fullName,\n data_access_configuration_id: d.dataAccessConfigurationId,\n created_at: d.createdAt,\n created_by: d.createdBy,\n updated_at: d.updatedAt,\n updated_by: d.updatedBy,\n table_id: d.tableId,\n delta_runtime_properties_kvpairs: d.deltaRuntimePropertiesKvpairs,\n deleted_at: d.deletedAt,\n effective_predictive_optimization_flag:\n d.effectivePredictiveOptimizationFlag,\n access_point: d.accessPoint,\n browse_only: d.browseOnly,\n encryption_details: d.encryptionDetails,\n securable_kind_manifest: d.securableKindManifest,\n columns: d.columns,\n properties: d.properties,\n }));\n"],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@databricks/sdk-uc-tables",
3
- "version": "0.38.0",
3
+ "version": "0.40.0",
4
4
  "description": "",
5
5
  "type": "module",
6
6
  "exports": {
@@ -33,9 +33,9 @@
33
33
  "directory": "packages/uc/tables"
34
34
  },
35
35
  "dependencies": {
36
- "@databricks/sdk-auth": ">=0.38.0 <1.0.0",
37
- "@databricks/sdk-core": ">=0.38.0 <1.0.0",
38
- "@databricks/sdk-options": ">=0.38.0 <1.0.0",
36
+ "@databricks/sdk-auth": ">=0.40.0 <1.0.0",
37
+ "@databricks/sdk-core": ">=0.40.0 <1.0.0",
38
+ "@databricks/sdk-options": ">=0.40.0 <1.0.0",
39
39
  "@js-temporal/polyfill": "^0.5.0",
40
40
  "json-bigint": "^1.0.0",
41
41
  "zod": "^4.3.6"