Skip to content

Commit

Permalink
🦉 Updates from OwlBot post-processor
Browse files Browse the repository at this point in the history
  • Loading branch information
gcf-owl-bot[bot] committed Nov 21, 2024
1 parent a9b0e3d commit c700d59
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions src/types.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
// limitations under the License.

/**
* Discovery Revision: 20241013
* Discovery Revision: 20241111
*/

/**
Expand Down Expand Up @@ -77,7 +77,7 @@ declare namespace bigquery {
*/
argumentKind?: 'ARGUMENT_KIND_UNSPECIFIED' | 'FIXED_TYPE' | 'ANY_TYPE';
/**
* Required unless argument_kind = ANY_TYPE.
* Set if argument_kind == FIXED_TYPE.
*/
dataType?: IStandardSqlDataType;
/**
Expand Down Expand Up @@ -407,19 +407,19 @@ declare namespace bigquery {
*/
type IBigLakeConfiguration = {
/**
* Required. The connection specifying the credentials to be used to read and write to external storage, such as Cloud Storage. The connection_id can have the form `{project}.{location}.{connection_id}` or `projects/{project}/locations/{location}/connections/{connection_id}".
* Optional. The connection specifying the credentials to be used to read and write to external storage, such as Cloud Storage. The connection_id can have the form `{project}.{location}.{connection_id}` or `projects/{project}/locations/{location}/connections/{connection_id}".
*/
connectionId?: string;
/**
* Required. The file format the table data is stored in.
* Optional. The file format the table data is stored in.
*/
fileFormat?: 'FILE_FORMAT_UNSPECIFIED' | 'PARQUET';
/**
* Required. The fully qualified location prefix of the external folder where table data is stored. The '*' wildcard character is not allowed. The URI should be in the format `gs://bucket/path_to_table/`
* Optional. The fully qualified location prefix of the external folder where table data is stored. The '*' wildcard character is not allowed. The URI should be in the format `gs://bucket/path_to_table/`
*/
storageUri?: string;
/**
* Required. The table format the metadata only snapshots are stored in.
* Optional. The table format the metadata only snapshots are stored in.
*/
tableFormat?: 'TABLE_FORMAT_UNSPECIFIED' | 'ICEBERG';
};
Expand Down Expand Up @@ -4863,6 +4863,10 @@ declare namespace bigquery {
* Output only. The geographic location where the table resides. This value is inherited from the dataset.
*/
location?: string;
/**
* Optional. If set, overrides the default managed table type configured in the dataset.
*/
managedTableType?: 'MANAGED_TABLE_TYPE_UNSPECIFIED' | 'NATIVE' | 'ICEBERG';
/**
* Optional. The materialized view definition.
*/
Expand Down Expand Up @@ -5518,7 +5522,7 @@ declare namespace bigquery {
*/
colsampleBytree?: number;
/**
* The contribution metric. Applies to contribution analysis models. Allowed formats supported are for summable and summable ratio contribution metrics. These include expressions such as "SUM(x)" or "SUM(x)/SUM(y)", where x and y are column names from the base table.
* The contribution metric. Applies to contribution analysis models. Allowed formats supported are for summable and summable ratio contribution metrics. These include expressions such as `SUM(x)` or `SUM(x)/SUM(y)`, where x and y are column names from the base table.
*/
contributionMetric?: string;
/**
Expand Down

0 comments on commit c700d59

Please sign in to comment.