@maxim_mazurok/gapi.client.bigquery-v2 0.0.20240623 → 0.0.20240714
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/index.d.ts +8 -6
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
// This file was generated by https://github.com/Maxim-Mazurok/google-api-typings-generator. Please do not edit it manually.
|
|
10
10
|
// In case of any problems please post issue to https://github.com/Maxim-Mazurok/google-api-typings-generator
|
|
11
11
|
// Generated from: https://bigquery.googleapis.com/$discovery/rest?version=v2
|
|
12
|
-
// Revision:
|
|
12
|
+
// Revision: 20240714
|
|
13
13
|
|
|
14
14
|
/// <reference types="gapi.client" />
|
|
15
15
|
|
|
@@ -205,7 +205,7 @@ declare namespace gapi.client {
|
|
|
205
205
|
type?: string;
|
|
206
206
|
}
|
|
207
207
|
interface BigtableColumnFamily {
|
|
208
|
-
/** Optional. Lists of columns that should be exposed as individual fields as opposed to a list of (column name, value) pairs. All columns whose qualifier matches a qualifier in this list can be accessed as `.`. Other columns can be accessed as a list through `.Column` field. */
|
|
208
|
+
/** Optional. Lists of columns that should be exposed as individual fields as opposed to a list of (column name, value) pairs. All columns whose qualifier matches a qualifier in this list can be accessed as `.`. Other columns can be accessed as a list through the `.Column` field. */
|
|
209
209
|
columns?: BigtableColumn[];
|
|
210
210
|
/** Optional. The encoding of the values when the type is not STRING. Acceptable encoding values are: TEXT - indicates values are alphanumeric text strings. BINARY - indicates values are encoded using HBase Bytes.toBytes family of functions. This can be overridden for a specific column by listing that column in 'columns' and specifying an encoding for it. */
|
|
211
211
|
encoding?: string;
|
|
@@ -379,7 +379,7 @@ declare namespace gapi.client {
|
|
|
379
379
|
dataMaskingApplied?: boolean;
|
|
380
380
|
}
|
|
381
381
|
interface Dataset {
|
|
382
|
-
/** Optional. An array of objects that define dataset access for one or more entities. You can set this property when inserting or updating a dataset in order to control who is allowed to access the data. If unspecified at dataset creation time, BigQuery adds default dataset access for the following entities: access.specialGroup: projectReaders; access.role: READER; access.specialGroup: projectWriters; access.role: WRITER; access.specialGroup: projectOwners; access.role: OWNER; access.userByEmail: [dataset creator email]; access.role: OWNER; */
|
|
382
|
+
/** Optional. An array of objects that define dataset access for one or more entities. You can set this property when inserting or updating a dataset in order to control who is allowed to access the data. If unspecified at dataset creation time, BigQuery adds default dataset access for the following entities: access.specialGroup: projectReaders; access.role: READER; access.specialGroup: projectWriters; access.role: WRITER; access.specialGroup: projectOwners; access.role: OWNER; access.userByEmail: [dataset creator email]; access.role: OWNER; If you patch a dataset, then this field is overwritten by the patched dataset's access field. To add entities, you must supply the entire existing access array in addition to any new entities that you want to add. */
|
|
383
383
|
access?: Array<{
|
|
384
384
|
/** [Pick one] A grant authorizing all resources of a particular type in a particular dataset access to this dataset. Only views are supported for now. The role field is not required when this field is set. If that dataset is deleted and re-created, its access needs to be granted again via an update operation. */
|
|
385
385
|
dataset?: DatasetAccessEntry;
|
|
@@ -389,11 +389,11 @@ declare namespace gapi.client {
|
|
|
389
389
|
groupByEmail?: string;
|
|
390
390
|
/** [Pick one] Some other type of member that appears in the IAM Policy but isn't a user, group, domain, or special group. */
|
|
391
391
|
iamMember?: string;
|
|
392
|
-
/** An IAM role ID that should be granted to the user, group, or domain specified in this access entry. The following legacy mappings will be applied: * OWNER
|
|
392
|
+
/** An IAM role ID that should be granted to the user, group, or domain specified in this access entry. The following legacy mappings will be applied: * `OWNER`: `roles/bigquery.dataOwner` * `WRITER`: `roles/bigquery.dataEditor` * `READER`: `roles/bigquery.dataViewer` This field will accept any of the above formats, but will return only the legacy format. For example, if you set this field to "roles/bigquery.dataOwner", it will be returned back as "OWNER". */
|
|
393
393
|
role?: string;
|
|
394
394
|
/** [Pick one] A routine from a different dataset to grant access to. Queries executed against that routine will have read access to views/tables/routines in this dataset. Only UDF is supported for now. The role field is not required when this field is set. If that routine is updated by any user, access to the routine needs to be granted again via an update operation. */
|
|
395
395
|
routine?: RoutineReference;
|
|
396
|
-
/** [Pick one] A special group to grant access to. Possible values include: projectOwners: Owners of the enclosing project. projectReaders: Readers of the enclosing project. projectWriters: Writers of the enclosing project. allAuthenticatedUsers: All authenticated BigQuery users. Maps to similarly-named IAM members. */
|
|
396
|
+
/** [Pick one] A special group to grant access to. Possible values include: * projectOwners: Owners of the enclosing project. * projectReaders: Readers of the enclosing project. * projectWriters: Writers of the enclosing project. * allAuthenticatedUsers: All authenticated BigQuery users. Maps to similarly-named IAM members. */
|
|
397
397
|
specialGroup?: string;
|
|
398
398
|
/** [Pick one] An email address of a user to grant access to. For example: fred@example.com. Maps to IAM policy member "user:EMAIL" or "serviceAccount:EMAIL". */
|
|
399
399
|
userByEmail?: string;
|
|
@@ -454,7 +454,7 @@ declare namespace gapi.client {
|
|
|
454
454
|
selfLink?: string;
|
|
455
455
|
/** Optional. Updates storage_billing_model for the dataset. */
|
|
456
456
|
storageBillingModel?: string;
|
|
457
|
-
/** Output only. Tags for the
|
|
457
|
+
/** Output only. Tags for the dataset. To provide tags as inputs, use the `resourceTags` field. */
|
|
458
458
|
tags?: Array<{
|
|
459
459
|
/** Required. The namespaced friendly name of the tag key, e.g. "12345/environment" where 12345 is org id. */
|
|
460
460
|
tagKey?: string;
|
|
@@ -1257,6 +1257,8 @@ declare namespace gapi.client {
|
|
|
1257
1257
|
creationTime?: string;
|
|
1258
1258
|
/** Output only. Statistics for data-masking. Present only for query and extract jobs. */
|
|
1259
1259
|
dataMaskingStatistics?: DataMaskingStatistics;
|
|
1260
|
+
/** Output only. Name of edition corresponding to the reservation for this job at the time of this update. */
|
|
1261
|
+
edition?: string;
|
|
1260
1262
|
/** Output only. End time of this job, in milliseconds since the epoch. This field will be present whenever a job is in the DONE state. */
|
|
1261
1263
|
endTime?: string;
|
|
1262
1264
|
/** Output only. Statistics for an extract job. */
|