|
13 | 13 | // limitations under the License. |
14 | 14 |
|
15 | 15 | /** |
16 | | - * Discovery Revision: 20250912 |
| 16 | + * Discovery Revision: 20250928 |
17 | 17 | */ |
18 | 18 |
|
19 | 19 | /** |
@@ -1706,6 +1706,10 @@ declare namespace bigquery { |
1706 | 1706 | * Optional. Format used to parse TIMESTAMP values. Supports C-style and SQL-style values. |
1707 | 1707 | */ |
1708 | 1708 | timestampFormat?: string; |
| 1709 | + /** |
| 1710 | + * Precisions (maximum number of total digits in base 10) for seconds of TIMESTAMP types that are allowed to the destination table for autodetection mode. Available for the formats: CSV. For the CSV Format, Possible values include: Not Specified, [], or [6]: timestamp(6) for all auto detected TIMESTAMP columns [6, 12]: timestamp(6) for all auto detected TIMESTAMP columns that have less than 6 digits of subseconds. timestamp(12) for all auto detected TIMESTAMP columns that have more than 6 digits of subseconds. [12]: timestamp(12) for all auto detected TIMESTAMP columns. The order of the elements in this array is ignored. Inputs that have higher precision than the highest target precision in this array will be truncated. |
| 1711 | + */ |
| 1712 | + timestampTargetPrecision?: Array<number>; |
1709 | 1713 | }; |
1710 | 1714 |
|
1711 | 1715 | /** |
@@ -2404,7 +2408,7 @@ declare namespace bigquery { |
2404 | 2408 | */ |
2405 | 2409 | load?: IJobConfigurationLoad; |
2406 | 2410 | /** |
2407 | | - * Optional. INTERNAL: DO NOT USE. The maximum rate of slot consumption to allow for this job. If set, the number of slots used to execute the job will be throttled to try and keep its slot consumption below the requested rate. |
| 2411 | + * Optional. A target limit on the rate of slot consumption by this job. If set to a value > 0, BigQuery will attempt to limit the rate of slot consumption by this job to keep it below the configured limit, even if the job is eligible for more slots based on fair scheduling. The unused slots will be available for other jobs and queries to use. Note: This feature is not yet generally available. |
2408 | 2412 | */ |
2409 | 2413 | maxSlots?: number; |
2410 | 2414 | /** |
@@ -2643,6 +2647,10 @@ declare namespace bigquery { |
2643 | 2647 | * Optional. Date format used for parsing TIMESTAMP values. |
2644 | 2648 | */ |
2645 | 2649 | timestampFormat?: string; |
| 2650 | + /** |
| 2651 | + * Precisions (maximum number of total digits in base 10) for seconds of TIMESTAMP types that are allowed to the destination table for autodetection mode. Available for the formats: CSV. For the CSV Format, Possible values include: Not Specified, [], or [6]: timestamp(6) for all auto detected TIMESTAMP columns [6, 12]: timestamp(6) for all auto detected TIMESTAMP columns that have less than 6 digits of subseconds. timestamp(12) for all auto detected TIMESTAMP columns that have more than 6 digits of subseconds. [12]: timestamp(12) for all auto detected TIMESTAMP columns. The order of the elements in this array is ignored. Inputs that have higher precision than the highest target precision in this array will be truncated. |
| 2652 | + */ |
| 2653 | + timestampTargetPrecision?: Array<number>; |
2646 | 2654 | /** |
2647 | 2655 | * Optional. If sourceFormat is set to "AVRO", indicates whether to interpret logical types as the corresponding BigQuery data type (for example, TIMESTAMP), instead of using the raw type (for example, INTEGER). |
2648 | 2656 | */ |
@@ -2974,6 +2982,10 @@ declare namespace bigquery { |
2974 | 2982 | * Output only. Quotas which delayed this job's start time. |
2975 | 2983 | */ |
2976 | 2984 | quotaDeferments?: Array<string>; |
| 2985 | + /** |
| 2986 | + * Output only. The reservation group path of the reservation assigned to this job. This field has a limit of 10 nested reservation groups. This is to maintain consistency between reservatins info schema and jobs info schema. The first reservation group is the root reservation group and the last is the leaf or lowest level reservation group. |
| 2987 | + */ |
| 2988 | + reservationGroupPath?: Array<string>; |
2977 | 2989 | /** |
2978 | 2990 | * Output only. Job resource usage breakdown by reservation. This field reported misleading information and will no longer be populated. |
2979 | 2991 | */ |
@@ -4124,7 +4136,7 @@ declare namespace bigquery { |
4124 | 4136 | */ |
4125 | 4137 | maxResults?: number; |
4126 | 4138 | /** |
4127 | | - * Optional. INTERNAL: DO NOT USE. The maximum rate of slot consumption to allow for this job. If set, the number of slots used to execute the job will be throttled to try and keep its slot consumption below the requested rate. This limit is best effort. |
| 4139 | + * Optional. A target limit on the rate of slot consumption by this query. If set to a value > 0, BigQuery will attempt to limit the rate of slot consumption by this query to keep it below the configured limit, even if the query is eligible for more slots based on fair scheduling. The unused slots will be available for other jobs and queries to use. Note: This feature is not yet generally available. |
4128 | 4140 | */ |
4129 | 4141 | maxSlots?: number; |
4130 | 4142 | /** |
@@ -5525,6 +5537,10 @@ declare namespace bigquery { |
5525 | 5537 | * Optional. See documentation for precision. |
5526 | 5538 | */ |
5527 | 5539 | scale?: string; |
| 5540 | + /** |
| 5541 | + * Optional. Precision (maximum number of total digits in base 10) for seconds of TIMESTAMP type. Possible values include: * 6 (Default, for TIMESTAMP type with microsecond precision) * 12 (For TIMESTAMP type with picosecond precision) |
| 5542 | + */ |
| 5543 | + timestampPrecision?: string; |
5528 | 5544 | /** |
5529 | 5545 | * Required. The field data type. Possible values include: * STRING * BYTES * INTEGER (or INT64) * FLOAT (or FLOAT64) * BOOLEAN (or BOOL) * TIMESTAMP * DATE * TIME * DATETIME * GEOGRAPHY * NUMERIC * BIGNUMERIC * JSON * RECORD (or STRUCT) * RANGE Use of RECORD/STRUCT indicates that the field contains a nested schema. |
5530 | 5546 | */ |
|
0 commit comments