Skip to main content
Glama

execute_sql

Destructive

Run a SQL query in the project and return the result. Prefer the execute_sql_readonly tool if possible.

This tool can execute any query that bigquery supports including:

  • SQL Queries (SELECT, INSERT, UPDATE, DELETE, CREATE, etc.)

  • AI/ML functions like AI.FORECAST, ML.EVALUATE, ML.PREDICT

  • Any other query that bigquery supports.

Example Queries:

-- Insert data into a table.
INSERT INTO `my_project.my_dataset`.my_table (name, age)
VALUES ('Alice', 30);

-- Create a table.
CREATE TABLE `my_project.my_dataset`.my_table (
  name STRING,
  age INT64);

-- DELETE data from a table.
DELETE FROM `my_project.my_dataset`.my_table WHERE name = 'Alice';

-- Create Dataset
CREATE SCHEMA `my_project.my_dataset` OPTIONS (location = 'US');

-- Drop table
DROP TABLE `my_project.my_dataset`.my_table;

-- Drop dataset
DROP SCHEMA `my_project.my_dataset`;

-- Create Model
CREATE OR REPLACE MODEL `my_project.my_dataset.my_model`
OPTIONS (
  model_type = 'LINEAR_REG'
  LS_INIT_LEARN_RATE=0.15,
  L1_REG=1,
  MAX_ITERATIONS=5,
  DATA_SPLIT_METHOD='SEQ',
  DATA_SPLIT_EVAL_FRACTION=0.3,
  DATA_SPLIT_COL='timestamp') AS
SELECT col1, col2, timestamp, label FROM `my_project.my_dataset.my_table`;

Queries executed using the execute_sql tool will always have the default job label goog-mcp-server: true automatically set in addition to any custom labels provided in the request. Queries are charged to the project specified in the project_id field.

Query Execution Behavior:

  • If the query completes within the synchronous timeout (default 20 seconds or custom timeout_ms), the tool returns job_complete: true and the initial result rows directly. For fast queries, job_id may be omitted as no persistent background job is created; no further action or polling is needed.

  • If the query takes longer than timeout_ms, the tool returns job_complete: false and a job_id. In this case, use the get_query_results tool with job_id to poll until job_complete: true, or use cancel_job to abort the running query.

  • You can optionally specify timeout_ms to configure the maximum synchronous wait time in milliseconds (defaults to 20,000 ms), and job_timeout_ms to enforce a hard server-side timeout after which BigQuery automatically terminates the job.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
queryYesRequired. The query to execute in the form of a GoogleSQL query.
dryRunNoOptional. If set to true, BigQuery doesn't run the job. Instead, if the query is valid, BigQuery returns statistics about the job such as how many bytes would be processed. If the query is invalid, an error returns. The default value is false.
labelsNoOptional. The labels associated with this query. Labels can be used to organize and group query jobs. Label keys and values can be no longer than 63 characters, can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label keys must start with a letter and each label in the map must have a different key.
projectIdYesRequired. Project that will be used for query execution and billing.
timeoutMsNoOptional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).
jobTimeoutMsNoOptional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
rowsNoAn object with as many results as can be contained within the maximum permitted reply size. To get any additional rows, you can call GetQueryResults and specify the jobReference returned above.
jobIdNoOutput only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.
errorsNoOutput only. The first errors or warnings encountered during the running of the job. The final message includes the number of errors that caused the process to stop. Errors here do not necessarily mean that the job has completed or was unsuccessful. For more information about error messages, see [Error messages](https://cloud.google.com/bigquery/docs/error-messages).
schemaNoThe schema of the results. Present only when the query completes successfully.
queryIdNoOutput only. The ID of the query.
jobCompleteNoWhether the query has completed or not. If rows or totalRows are present, this will always be true. If this is false, totalRows will not be available.
totalSlotMsNoOutput only. Number of slot ms the user is actually billed for.
totalBytesBilledNoOutput only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.
numDmlAffectedRowsNoOutput only. The number of rows affected by a DML statement.
totalBytesProcessedNoOutput only. The total number of bytes processed for this query.

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  2. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  3. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  4. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  5. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  6. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  7. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  8. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  9. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  10. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  11. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  12. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  13. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  14. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  15. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  16. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  17. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  18. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  19. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  20. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  21. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  22. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  23. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  24. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  25. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  26. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  27. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  28. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  29. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  30. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  31. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  32. Changed3 schema fields changed
    • removedInput schema / properties / jobTimeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      -  "format": "int64",
      -  "type": "string"
      -}
    • removedInput schema / properties / timeoutMs
      Removed value: -{
      -  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      -  "format": "int64",
      -  "maximum": 4294967295,
      -  "minimum": 0,
      -  "type": "integer"
      -}
    • removedOutput schema / properties / jobId
      Removed value: -{
      -  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      -  "readOnly": true,
      -  "type": "string"
      -}
  33. Changed3 schema fields changed
    • addedInput schema / properties / jobTimeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Job timeout in milliseconds. If this time limit is exceeded, BigQuery will attempt to stop the query job.",
      +  "format": "int64",
      +  "type": "string"
      +}
    • addedInput schema / properties / timeoutMs
      Added value: +{
      +  "description": "Optional. Optional: Specifies the maximum amount of time, in milliseconds, that the client is willing to wait for the query to complete. By default, this limit is 20 seconds (20,000 milliseconds).",
      +  "format": "int64",
      +  "maximum": 4294967295,
      +  "minimum": 0,
      +  "type": "integer"
      +}
    • addedOutput schema / properties / jobId
      Added value: +{
      +  "description": "Output only. The ID of the BigQuery job created for this query, if any. Present when a query job is created (e.g. for long-running operations, DML, scripts). Use this ID with `get_query_results`, `cancel_job`, or `get_job`.",
      +  "readOnly": true,
      +  "type": "string"
      +}
  34. Changed1 schema field changed
    • addedInput schema / properties / labels
      Added value: +{
      +  "additionalProperties": {
      +    "type": "string"
      +  },
      +  "description": "Optional. The labels associated with this query. Labels can be used to organize and group query jobs. Label keys and values can be no longer than 63 characters, can only contain lowercase letters, numeric characters, underscores and dashes. International characters are allowed. Label keys must start with a letter and each label in the map must have a different key.",
      +  "type": "object"
      +}
  35. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."
  36. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
  37. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."
  38. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
  39. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."
  40. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
  41. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."
  42. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
  43. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."
  44. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
  45. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."
  46. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
  47. Changed2 schema fields changed
    • changedOutput schema / $defs / DataGovernanceTagsInfo / properties / dataGovernanceTags / description
      Previous value: -"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""New value: +"Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"parent-id/pii\" where parent-id is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"parent-id/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\""
    • changedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo / description
      Previous value: -"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."New value: +"Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: * **Precedence**: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. * **Patching behavior**: Describes how this field behaves during a `Table.patch` schema update: * **Unset**: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. * **Empty Field**: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This removes all tags from the column. * **Updating tags**: To replace an existing tag, send the field with the new tag."
  48. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  49. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  50. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  51. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  52. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  53. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  54. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  55. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  56. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  57. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  58. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  59. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  60. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  61. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  62. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  63. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  64. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  65. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  66. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  67. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  68. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  69. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."
  70. Changed1 schema field changed
    • changedOutput schema / $defs / GeneratedExpressionInfo / properties / generationExpression / description
      Previous value: -"Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field."New value: +"Optional. The generation expression (e.g. AI.EMBED(...)) used to generate the field."
  71. Changed4 schema fields changed
    • addedOutput schema / $defs / DataGovernanceTagsInfo
      Added value: +{
      +  "properties": {
      +    "dataGovernanceTags": {
      +      "additionalProperties": {
      +        "type": "string"
      +      },
      +      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      +      "type": "object"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / DataPolicyList
      Added value: +{
      +  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      +  "properties": {
      +    "dataPolicies": {
      +      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      +      "items": {
      +        "$ref": "#/$defs/DataPolicyOption"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Added value: +{
      +  "$ref": "#/$defs/DataGovernanceTagsInfo",
      +  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Added value: +{
      +  "$ref": "#/$defs/DataPolicyList",
      +  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      +}
  72. Changed4 schema fields changed
    • removedOutput schema / $defs / DataGovernanceTagsInfo
      Removed value: -{
      -  "properties": {
      -    "dataGovernanceTags": {
      -      "additionalProperties": {
      -        "type": "string"
      -      },
      -      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      -      "type": "object"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / DataPolicyList
      Removed value: -{
      -  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      -  "properties": {
      -    "dataPolicies": {
      -      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      -      "items": {
      -        "$ref": "#/$defs/DataPolicyOption"
      -      },
      -      "type": "array"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Removed value: -{
      -  "$ref": "#/$defs/DataGovernanceTagsInfo",
      -  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Removed value: -{
      -  "$ref": "#/$defs/DataPolicyList",
      -  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      -}
  73. Changed4 schema fields changed
    • addedOutput schema / $defs / DataGovernanceTagsInfo
      Added value: +{
      +  "properties": {
      +    "dataGovernanceTags": {
      +      "additionalProperties": {
      +        "type": "string"
      +      },
      +      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      +      "type": "object"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / DataPolicyList
      Added value: +{
      +  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      +  "properties": {
      +    "dataPolicies": {
      +      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      +      "items": {
      +        "$ref": "#/$defs/DataPolicyOption"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Added value: +{
      +  "$ref": "#/$defs/DataGovernanceTagsInfo",
      +  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Added value: +{
      +  "$ref": "#/$defs/DataPolicyList",
      +  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      +}
  74. Changed4 schema fields changed
    • removedOutput schema / $defs / DataGovernanceTagsInfo
      Removed value: -{
      -  "properties": {
      -    "dataGovernanceTags": {
      -      "additionalProperties": {
      -        "type": "string"
      -      },
      -      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      -      "type": "object"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / DataPolicyList
      Removed value: -{
      -  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      -  "properties": {
      -    "dataPolicies": {
      -      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      -      "items": {
      -        "$ref": "#/$defs/DataPolicyOption"
      -      },
      -      "type": "array"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Removed value: -{
      -  "$ref": "#/$defs/DataGovernanceTagsInfo",
      -  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Removed value: -{
      -  "$ref": "#/$defs/DataPolicyList",
      -  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      -}
  75. Changed4 schema fields changed
    • addedOutput schema / $defs / DataGovernanceTagsInfo
      Added value: +{
      +  "properties": {
      +    "dataGovernanceTags": {
      +      "additionalProperties": {
      +        "type": "string"
      +      },
      +      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      +      "type": "object"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / DataPolicyList
      Added value: +{
      +  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      +  "properties": {
      +    "dataPolicies": {
      +      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      +      "items": {
      +        "$ref": "#/$defs/DataPolicyOption"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Added value: +{
      +  "$ref": "#/$defs/DataGovernanceTagsInfo",
      +  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Added value: +{
      +  "$ref": "#/$defs/DataPolicyList",
      +  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      +}
  76. Changed4 schema fields changed
    • removedOutput schema / $defs / DataGovernanceTagsInfo
      Removed value: -{
      -  "properties": {
      -    "dataGovernanceTags": {
      -      "additionalProperties": {
      -        "type": "string"
      -      },
      -      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      -      "type": "object"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / DataPolicyList
      Removed value: -{
      -  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      -  "properties": {
      -    "dataPolicies": {
      -      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      -      "items": {
      -        "$ref": "#/$defs/DataPolicyOption"
      -      },
      -      "type": "array"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Removed value: -{
      -  "$ref": "#/$defs/DataGovernanceTagsInfo",
      -  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Removed value: -{
      -  "$ref": "#/$defs/DataPolicyList",
      -  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      -}
  77. Changed4 schema fields changed
    • addedOutput schema / $defs / DataGovernanceTagsInfo
      Added value: +{
      +  "properties": {
      +    "dataGovernanceTags": {
      +      "additionalProperties": {
      +        "type": "string"
      +      },
      +      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      +      "type": "object"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / DataPolicyList
      Added value: +{
      +  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      +  "properties": {
      +    "dataPolicies": {
      +      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      +      "items": {
      +        "$ref": "#/$defs/DataPolicyOption"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Added value: +{
      +  "$ref": "#/$defs/DataGovernanceTagsInfo",
      +  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Added value: +{
      +  "$ref": "#/$defs/DataPolicyList",
      +  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      +}
  78. Changed4 schema fields changed
    • removedOutput schema / $defs / DataGovernanceTagsInfo
      Removed value: -{
      -  "properties": {
      -    "dataGovernanceTags": {
      -      "additionalProperties": {
      -        "type": "string"
      -      },
      -      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      -      "type": "object"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / DataPolicyList
      Removed value: -{
      -  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      -  "properties": {
      -    "dataPolicies": {
      -      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      -      "items": {
      -        "$ref": "#/$defs/DataPolicyOption"
      -      },
      -      "type": "array"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Removed value: -{
      -  "$ref": "#/$defs/DataGovernanceTagsInfo",
      -  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Removed value: -{
      -  "$ref": "#/$defs/DataPolicyList",
      -  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      -}
  79. Changed4 schema fields changed
    • addedOutput schema / $defs / DataGovernanceTagsInfo
      Added value: +{
      +  "properties": {
      +    "dataGovernanceTags": {
      +      "additionalProperties": {
      +        "type": "string"
      +      },
      +      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      +      "type": "object"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / DataPolicyList
      Added value: +{
      +  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      +  "properties": {
      +    "dataPolicies": {
      +      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      +      "items": {
      +        "$ref": "#/$defs/DataPolicyOption"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Added value: +{
      +  "$ref": "#/$defs/DataGovernanceTagsInfo",
      +  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Added value: +{
      +  "$ref": "#/$defs/DataPolicyList",
      +  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      +}
  80. Changed4 schema fields changed
    • removedOutput schema / $defs / DataGovernanceTagsInfo
      Removed value: -{
      -  "properties": {
      -    "dataGovernanceTags": {
      -      "additionalProperties": {
      -        "type": "string"
      -      },
      -      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      -      "type": "object"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / DataPolicyList
      Removed value: -{
      -  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      -  "properties": {
      -    "dataPolicies": {
      -      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      -      "items": {
      -        "$ref": "#/$defs/DataPolicyOption"
      -      },
      -      "type": "array"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Removed value: -{
      -  "$ref": "#/$defs/DataGovernanceTagsInfo",
      -  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Removed value: -{
      -  "$ref": "#/$defs/DataPolicyList",
      -  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      -}
  81. Changed4 schema fields changed
    • addedOutput schema / $defs / DataGovernanceTagsInfo
      Added value: +{
      +  "properties": {
      +    "dataGovernanceTags": {
      +      "additionalProperties": {
      +        "type": "string"
      +      },
      +      "description": "Optional. The data governance tags added to this field are used for field-level access control. Only one data governance tag is currently supported on a field. Tag keys are globally unique. Tag key is expected to be in the namespaced format, for example \"123456789012/pii\" where 123456789012 is the ID of the parent organization or project resource for this tag key. Tag value is expected to be the short name, for example \"sensitive\". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions) for more details. For example: \"123456789012/pii\": \"sensitive\", \"myProject/cost_center\": \"sales\"",
      +      "type": "object"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / DataPolicyList
      Added value: +{
      +  "description": "A list of data policy options. For more information, see [Mask data by applying data policies to a column](https://docs.cloud.google.com/bigquery/docs/column-data-masking#data-policies-on-column).",
      +  "properties": {
      +    "dataPolicies": {
      +      "description": "Contains a list of data policy options. At most 9 data policies are allowed per field.",
      +      "items": {
      +        "$ref": "#/$defs/DataPolicyOption"
      +      },
      +      "type": "array"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataGovernanceTagsInfo
      Added value: +{
      +  "$ref": "#/$defs/DataGovernanceTagsInfo",
      +  "description": "Optional. Specifies the data governance tags on this field. This field works with other column-level security fields as follows: - Precedence: If a data governance tag is attached to a column, it takes precedence over the policy tag attached to the column. However, if a data policy is attached to a column, it takes precedence over the data governance tag. - Patching behavior (how this field behaves during a `Table.patch` schema update): - Unset: If the `data_governance_tags_info` field is omitted from the update request, the existing tags on the column are preserved. - Empty Field: To clear data governance tags from a column, send the `data_governance_tags_info` field as an empty object. This will remove all tags from the column. - Updating tags: To replace existing tag, send the field with the new tag."
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / dataPolicyList
      Added value: +{
      +  "$ref": "#/$defs/DataPolicyList",
      +  "description": "Optional. Specifies data policies attached to this field, used for field-level access control. When set, this will be the source of truth for data policy information."
      +}
  82. Changed5 schema fields changed
    • addedOutput schema / properties / numDmlAffectedRows
      Added value: +{
      +  "description": "Output only. The number of rows affected by a DML statement.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / queryId
      Added value: +{
      +  "description": "Output only. The ID of the query.",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesBilled
      Added value: +{
      +  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesProcessed
      Added value: +{
      +  "description": "Output only. The total number of bytes processed for this query.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalSlotMs
      Added value: +{
      +  "description": "Output only. Number of slot ms the user is actually billed for.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
  83. Changed5 schema fields changed
    • removedOutput schema / properties / numDmlAffectedRows
      Removed value: -{
      -  "description": "Output only. The number of rows affected by a DML statement.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / queryId
      Removed value: -{
      -  "description": "Output only. The ID of the query.",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesBilled
      Removed value: -{
      -  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesProcessed
      Removed value: -{
      -  "description": "Output only. The total number of bytes processed for this query.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalSlotMs
      Removed value: -{
      -  "description": "Output only. Number of slot ms the user is actually billed for.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
  84. Changed5 schema fields changed
    • addedOutput schema / properties / numDmlAffectedRows
      Added value: +{
      +  "description": "Output only. The number of rows affected by a DML statement.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / queryId
      Added value: +{
      +  "description": "Output only. The ID of the query.",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesBilled
      Added value: +{
      +  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesProcessed
      Added value: +{
      +  "description": "Output only. The total number of bytes processed for this query.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalSlotMs
      Added value: +{
      +  "description": "Output only. Number of slot ms the user is actually billed for.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
  85. Changed5 schema fields changed
    • removedOutput schema / properties / numDmlAffectedRows
      Removed value: -{
      -  "description": "Output only. The number of rows affected by a DML statement.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / queryId
      Removed value: -{
      -  "description": "Output only. The ID of the query.",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesBilled
      Removed value: -{
      -  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesProcessed
      Removed value: -{
      -  "description": "Output only. The total number of bytes processed for this query.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalSlotMs
      Removed value: -{
      -  "description": "Output only. Number of slot ms the user is actually billed for.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
  86. Changed5 schema fields changed
    • addedOutput schema / properties / numDmlAffectedRows
      Added value: +{
      +  "description": "Output only. The number of rows affected by a DML statement.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / queryId
      Added value: +{
      +  "description": "Output only. The ID of the query.",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesBilled
      Added value: +{
      +  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesProcessed
      Added value: +{
      +  "description": "Output only. The total number of bytes processed for this query.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalSlotMs
      Added value: +{
      +  "description": "Output only. Number of slot ms the user is actually billed for.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
  87. Changed5 schema fields changed
    • removedOutput schema / properties / numDmlAffectedRows
      Removed value: -{
      -  "description": "Output only. The number of rows affected by a DML statement.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / queryId
      Removed value: -{
      -  "description": "Output only. The ID of the query.",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesBilled
      Removed value: -{
      -  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesProcessed
      Removed value: -{
      -  "description": "Output only. The total number of bytes processed for this query.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalSlotMs
      Removed value: -{
      -  "description": "Output only. Number of slot ms the user is actually billed for.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
  88. Changed5 schema fields changed
    • addedOutput schema / properties / numDmlAffectedRows
      Added value: +{
      +  "description": "Output only. The number of rows affected by a DML statement.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / queryId
      Added value: +{
      +  "description": "Output only. The ID of the query.",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesBilled
      Added value: +{
      +  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesProcessed
      Added value: +{
      +  "description": "Output only. The total number of bytes processed for this query.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalSlotMs
      Added value: +{
      +  "description": "Output only. Number of slot ms the user is actually billed for.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
  89. Changed5 schema fields changed
    • removedOutput schema / properties / numDmlAffectedRows
      Removed value: -{
      -  "description": "Output only. The number of rows affected by a DML statement.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / queryId
      Removed value: -{
      -  "description": "Output only. The ID of the query.",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesBilled
      Removed value: -{
      -  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesProcessed
      Removed value: -{
      -  "description": "Output only. The total number of bytes processed for this query.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalSlotMs
      Removed value: -{
      -  "description": "Output only. Number of slot ms the user is actually billed for.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
  90. Changed5 schema fields changed
    • addedOutput schema / properties / numDmlAffectedRows
      Added value: +{
      +  "description": "Output only. The number of rows affected by a DML statement.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / queryId
      Added value: +{
      +  "description": "Output only. The ID of the query.",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesBilled
      Added value: +{
      +  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesProcessed
      Added value: +{
      +  "description": "Output only. The total number of bytes processed for this query.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalSlotMs
      Added value: +{
      +  "description": "Output only. Number of slot ms the user is actually billed for.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
  91. Changed5 schema fields changed
    • removedOutput schema / properties / numDmlAffectedRows
      Removed value: -{
      -  "description": "Output only. The number of rows affected by a DML statement.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / queryId
      Removed value: -{
      -  "description": "Output only. The ID of the query.",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesBilled
      Removed value: -{
      -  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesProcessed
      Removed value: -{
      -  "description": "Output only. The total number of bytes processed for this query.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalSlotMs
      Removed value: -{
      -  "description": "Output only. Number of slot ms the user is actually billed for.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
  92. Changed5 schema fields changed
    • addedOutput schema / properties / numDmlAffectedRows
      Added value: +{
      +  "description": "Output only. The number of rows affected by a DML statement.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / queryId
      Added value: +{
      +  "description": "Output only. The ID of the query.",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesBilled
      Added value: +{
      +  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesProcessed
      Added value: +{
      +  "description": "Output only. The total number of bytes processed for this query.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalSlotMs
      Added value: +{
      +  "description": "Output only. Number of slot ms the user is actually billed for.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
  93. Changed5 schema fields changed
    • removedOutput schema / properties / numDmlAffectedRows
      Removed value: -{
      -  "description": "Output only. The number of rows affected by a DML statement.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / queryId
      Removed value: -{
      -  "description": "Output only. The ID of the query.",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesBilled
      Removed value: -{
      -  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesProcessed
      Removed value: -{
      -  "description": "Output only. The total number of bytes processed for this query.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalSlotMs
      Removed value: -{
      -  "description": "Output only. Number of slot ms the user is actually billed for.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
  94. Changed5 schema fields changed
    • addedOutput schema / properties / numDmlAffectedRows
      Added value: +{
      +  "description": "Output only. The number of rows affected by a DML statement.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / queryId
      Added value: +{
      +  "description": "Output only. The ID of the query.",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesBilled
      Added value: +{
      +  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesProcessed
      Added value: +{
      +  "description": "Output only. The total number of bytes processed for this query.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalSlotMs
      Added value: +{
      +  "description": "Output only. Number of slot ms the user is actually billed for.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
  95. Changed5 schema fields changed
    • removedOutput schema / properties / numDmlAffectedRows
      Removed value: -{
      -  "description": "Output only. The number of rows affected by a DML statement.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / queryId
      Removed value: -{
      -  "description": "Output only. The ID of the query.",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesBilled
      Removed value: -{
      -  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalBytesProcessed
      Removed value: -{
      -  "description": "Output only. The total number of bytes processed for this query.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
    • removedOutput schema / properties / totalSlotMs
      Removed value: -{
      -  "description": "Output only. Number of slot ms the user is actually billed for.",
      -  "format": "int64",
      -  "readOnly": true,
      -  "type": "string"
      -}
  96. Changed5 schema fields changed
    • addedOutput schema / properties / numDmlAffectedRows
      Added value: +{
      +  "description": "Output only. The number of rows affected by a DML statement.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / queryId
      Added value: +{
      +  "description": "Output only. The ID of the query.",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesBilled
      Added value: +{
      +  "description": "Output only. The total number of bytes billed for the query. Only applies if the project is configured to use on-demand pricing.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalBytesProcessed
      Added value: +{
      +  "description": "Output only. The total number of bytes processed for this query.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
    • addedOutput schema / properties / totalSlotMs
      Added value: +{
      +  "description": "Output only. Number of slot ms the user is actually billed for.",
      +  "format": "int64",
      +  "readOnly": true,
      +  "type": "string"
      +}
  97. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  98. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  99. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  100. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  101. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  102. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  103. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  104. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  105. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  106. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  107. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  108. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  109. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  110. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  111. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  112. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  113. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  114. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  115. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  116. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  117. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  118. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  119. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  120. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  121. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  122. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  123. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  124. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  125. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  126. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  127. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  128. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  129. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  130. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  131. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  132. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  133. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  134. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  135. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  136. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  137. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  138. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  139. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  140. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  141. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  142. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  143. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  144. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  145. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  146. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  147. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  148. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  149. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  150. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  151. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  152. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  153. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  154. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  155. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  156. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  157. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  158. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  159. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  160. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  161. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  162. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  163. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  164. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  165. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  166. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  167. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  168. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  169. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  170. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  171. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  172. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  173. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  174. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  175. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  176. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  177. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  178. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  179. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  180. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  181. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  182. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  183. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  184. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  185. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  186. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  187. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  188. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  189. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  190. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  191. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  192. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  193. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  194. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  195. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  196. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  197. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  198. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  199. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  200. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  201. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  202. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  203. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  204. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  205. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  206. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  207. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  208. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  209. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  210. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  211. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  212. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  213. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  214. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  215. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  216. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  217. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  218. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  219. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  220. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  221. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  222. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  223. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  224. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  225. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  226. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  227. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  228. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  229. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  230. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  231. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  232. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  233. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  234. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  235. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  236. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  237. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  238. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  239. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  240. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  241. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  242. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  243. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  244. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  245. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  246. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  247. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  248. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  249. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  250. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  251. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  252. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  253. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  254. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  255. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  256. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  257. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  258. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  259. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  260. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  261. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  262. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  263. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  264. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  265. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  266. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  267. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  268. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  269. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  270. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  271. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  272. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  273. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  274. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  275. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  276. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  277. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  278. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  279. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  280. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  281. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  282. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  283. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  284. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  285. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  286. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  287. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  288. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  289. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  290. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  291. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  292. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  293. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  294. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  295. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  296. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  297. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  298. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  299. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  300. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  301. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  302. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  303. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  304. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  305. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  306. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  307. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  308. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  309. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  310. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  311. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  312. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  313. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  314. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  315. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  316. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  317. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  318. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  319. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  320. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  321. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  322. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  323. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  324. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  325. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  326. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  327. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  328. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  329. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  330. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  331. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  332. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  333. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  334. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  335. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  336. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  337. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  338. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  339. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  340. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  341. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  342. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  343. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  344. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  345. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  346. Changed3 schema fields changed
    • removedOutput schema / $defs / GeneratedColumn
      Removed value: -{
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      -  "properties": {
      -    "generatedExpressionInfo": {
      -      "$ref": "#/$defs/GeneratedExpressionInfo",
      -      "description": "Definition of the expression used to generate the field."
      -    },
      -    "generatedMode": {
      -      "description": "Optional. Dictates when system generated values are used to populate the field.",
      -      "enum": [
      -        "GENERATED_MODE_UNSPECIFIED",
      -        "GENERATED_ALWAYS",
      -        "GENERATED_BY_DEFAULT"
      -      ],
      -      "type": "string",
      -      "x-google-enum-descriptions": [
      -        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      -        "Field can only have system generated values. Users cannot manually insert values into the field.",
      -        "Use system generated values only if the user does not explicitly provide a value."
      -      ]
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / GeneratedExpressionInfo
      Removed value: -{
      -  "description": "Definition of the expression used to generate the field.",
      -  "properties": {
      -    "asynchronous": {
      -      "description": "Optional. Whether the column generation is done asynchronously.",
      -      "type": "boolean"
      -    },
      -    "generationExpression": {
      -      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      -      "type": "string"
      -    },
      -    "stored": {
      -      "description": "Optional. Whether the generated column is stored in the table.",
      -      "type": "boolean"
      -    }
      -  },
      -  "type": "object"
      -}
    • removedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Removed value: -{
      -  "$ref": "#/$defs/GeneratedColumn",
      -  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      -}
  347. Changed3 schema fields changed
    • addedOutput schema / $defs / GeneratedColumn
      Added value: +{
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields).",
      +  "properties": {
      +    "generatedExpressionInfo": {
      +      "$ref": "#/$defs/GeneratedExpressionInfo",
      +      "description": "Definition of the expression used to generate the field."
      +    },
      +    "generatedMode": {
      +      "description": "Optional. Dictates when system generated values are used to populate the field.",
      +      "enum": [
      +        "GENERATED_MODE_UNSPECIFIED",
      +        "GENERATED_ALWAYS",
      +        "GENERATED_BY_DEFAULT"
      +      ],
      +      "type": "string",
      +      "x-google-enum-descriptions": [
      +        "Unspecified GeneratedMode will default to GENERATED_ALWAYS.",
      +        "Field can only have system generated values. Users cannot manually insert values into the field.",
      +        "Use system generated values only if the user does not explicitly provide a value."
      +      ]
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / GeneratedExpressionInfo
      Added value: +{
      +  "description": "Definition of the expression used to generate the field.",
      +  "properties": {
      +    "asynchronous": {
      +      "description": "Optional. Whether the column generation is done asynchronously.",
      +      "type": "boolean"
      +    },
      +    "generationExpression": {
      +      "description": "Optional. The generation expression (e.g. AI.EMBED(...)) used to generated the field.",
      +      "type": "string"
      +    },
      +    "stored": {
      +      "description": "Optional. Whether the generated column is stored in the table.",
      +      "type": "boolean"
      +    }
      +  },
      +  "type": "object"
      +}
    • addedOutput schema / $defs / TableFieldSchema / properties / generatedColumn
      Added value: +{
      +  "$ref": "#/$defs/GeneratedColumn",
      +  "description": "Optional. Definition of how values are generated for the field. Only valid for top-level schema fields (not nested fields)."
      +}
  348. First observed

TDQS

A4.8/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

This is a rich, honest disclosure of behavior beyond the annotations: queries are billed to the specified project, a default job label is applied, synchronous behavior is bounded by `timeout_ms`, and long queries return `job_complete: false` with a `job_id` requiring follow-up. This fully prepares the agent for side effects and asynchronous behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-organized with clear sections and front-loaded routing guidance. It is longer than strictly necessary, with some repetition ('Any other query that bigquery supports') and a lengthy example block, but the structure keeps it scannable and the examples are informative for a SQL execution tool.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with significant side effects, async behavior, billing implications, and several related sibling tools, this description is complete. It covers what the tool can run, the read-only alternative, timeout behavior, polling, cancellation, labels, and billing project selection. The output schema covers return values, so nothing essential is missing.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so the schema already documents all parameters. The description adds value by explaining the practical effect of `timeout_ms` and `job_timeout_ms`, and by noting the automatic default label on top of any custom `labels` provided. This goes beyond the schema without fully re-documenting each parameter.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states a clear verb and resource ('Run a SQL query in the project and return the result') and immediately distinguishes itself from the read-only sibling. The examples clarify the full scope including DML, DDL, and AI/ML functions, so an agent can confidently identify what this tool does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly instructs agents to prefer `execute_sql_readonly` when possible, providing a clear routing rule. It also explains when to use `get_query_results` for polling and `cancel_job` for aborting long-running queries, giving actionable guidance for the main workflow.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources