@maxim_mazurok/gapi.client.bigquery-v2 0.0.20240905 → 0.0.20241013

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.
Files changed (2) hide show
  1. package/index.d.ts +25 -1
  2. 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: 20240905
12
+ // Revision: 20241013
13
13
 
14
14
  /// <reference types="gapi.client" />
15
15
 
@@ -385,6 +385,8 @@ declare namespace gapi.client {
385
385
  interface Dataset {
386
386
  /** 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. */
387
387
  access?: Array<{
388
+ /** Optional. condition for the binding. If CEL expression in this field is true, this access binding will be considered */
389
+ condition?: Expr;
388
390
  /** [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. */
389
391
  dataset?: DatasetAccessEntry;
390
392
  /** [Pick one] A domain to grant access to. Any users signed in with the domain specified will be granted the specified access. Example: "example.com". Maps to IAM policy member "domain:DOMAIN". */
@@ -2501,6 +2503,8 @@ declare namespace gapi.client {
2501
2503
  colsampleBynode?: number;
2502
2504
  /** Subsample ratio of columns when constructing each tree for boosted tree models. */
2503
2505
  colsampleBytree?: number;
2506
+ /** 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. */
2507
+ contributionMetric?: string;
2504
2508
  /** Type of normalization algorithm for boosted tree models using dart booster. */
2505
2509
  dartNormalizeType?: string;
2506
2510
  /** The data frequency of a time series. */
@@ -2513,6 +2517,8 @@ declare namespace gapi.client {
2513
2517
  dataSplitMethod?: string;
2514
2518
  /** If true, perform decompose time series and save the results. */
2515
2519
  decomposeTimeSeries?: boolean;
2520
+ /** Optional. Names of the columns to slice on. Applies to contribution analysis models. */
2521
+ dimensionIdColumns?: string[];
2516
2522
  /** Distance type for clustering models. */
2517
2523
  distanceType?: string;
2518
2524
  /** Dropout probability for dnn models. */
@@ -2545,6 +2551,8 @@ declare namespace gapi.client {
2545
2551
  instanceWeightColumn?: string;
2546
2552
  /** Number of integral steps for the integrated gradients explain method. */
2547
2553
  integratedGradientsNumSteps?: string;
2554
+ /** Name of the column used to determine the rows corresponding to control and test. Applies to contribution analysis models. */
2555
+ isTestColumn?: string;
2548
2556
  /** Item column specified for matrix factorization models. */
2549
2557
  itemColumn?: string;
2550
2558
  /** The column used to provide the initial centroids for kmeans algorithm when kmeans_initialization_method is CUSTOM. */
@@ -2573,6 +2581,8 @@ declare namespace gapi.client {
2573
2581
  maxTimeSeriesLength?: string;
2574
2582
  /** Maximum depth of a tree for boosted tree models. */
2575
2583
  maxTreeDepth?: string;
2584
+ /** The apriori support minimum. Applies to contribution analysis models. */
2585
+ minAprioriSupport?: number;
2576
2586
  /** When early_stop is true, stops training when accuracy improvement is less than 'min_relative_progress'. Used only for iterative training algorithms. */
2577
2587
  minRelativeProgress?: number;
2578
2588
  /** Minimum split loss for boosted tree models. */
@@ -2742,6 +2752,8 @@ declare namespace gapi.client {
2742
2752
  '$.xgafv'?: string;
2743
2753
  /** OAuth access token. */
2744
2754
  access_token?: string;
2755
+ /** Optional. The version of the access policy schema to fetch. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. Requests for conditional access policy binding in datasets must specify version 3. Dataset with no conditional role bindings in access policy may specify any valid value or leave the field unset. This field will be maped to [IAM Policy version] (https://cloud.google.com/iam/docs/policies#versions) and will be used to fetch policy from IAM. If unset or if 0 or 1 value is used for dataset with conditional bindings, access entry with condition will have role string appended by 'withcond' string followed by a hash value. For example : { "access": [ { "role": "roles/bigquery.dataViewer_with_conditionalbinding_7a34awqsda", "userByEmail": "user@example.com", } ] } Please refer https://cloud.google.com/iam/docs/troubleshooting-withcond for more details. */
2756
+ accessPolicyVersion?: number;
2745
2757
  /** Data format for response. */
2746
2758
  alt?: string;
2747
2759
  /** JSONP */
@@ -2773,6 +2785,8 @@ declare namespace gapi.client {
2773
2785
  '$.xgafv'?: string;
2774
2786
  /** OAuth access token. */
2775
2787
  access_token?: string;
2788
+ /** Optional. The version of the provided access policy schema. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. This version refers to the schema version of the access policy and not the version of access policy. This field's value can be equal or more than the access policy schema provided in the request. For example, * Requests with conditional access policy binding in datasets must specify version 3. * But dataset with no conditional role bindings in access policy may specify any valid value or leave the field unset. If unset or if 0 or 1 value is used for dataset with conditional bindings, request will be rejected. This field will be maped to IAM Policy version (https://cloud.google.com/iam/docs/policies#versions) and will be used to set policy in IAM. */
2789
+ accessPolicyVersion?: number;
2776
2790
  /** Data format for response. */
2777
2791
  alt?: string;
2778
2792
  /** JSONP */
@@ -2802,6 +2816,8 @@ declare namespace gapi.client {
2802
2816
  '$.xgafv'?: string;
2803
2817
  /** OAuth access token. */
2804
2818
  access_token?: string;
2819
+ /** Optional. The version of the provided access policy schema. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. This version refers to the schema version of the access policy and not the version of access policy. This field's value can be equal or more than the access policy schema provided in the request. For example, * Requests with conditional access policy binding in datasets must specify version 3. * But dataset with no conditional role bindings in access policy may specify any valid value or leave the field unset. If unset or if 0 or 1 value is used for dataset with conditional bindings, request will be rejected. This field will be maped to IAM Policy version (https://cloud.google.com/iam/docs/policies#versions) and will be used to set policy in IAM. */
2820
+ accessPolicyVersion?: number;
2805
2821
  /** Data format for response. */
2806
2822
  alt?: string;
2807
2823
  /** JSONP */
@@ -2866,6 +2882,8 @@ declare namespace gapi.client {
2866
2882
  '$.xgafv'?: string;
2867
2883
  /** OAuth access token. */
2868
2884
  access_token?: string;
2885
+ /** Optional. The version of the provided access policy schema. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. This version refers to the schema version of the access policy and not the version of access policy. This field's value can be equal or more than the access policy schema provided in the request. For example, * Operations updating conditional access policy binding in datasets must specify version 3. Some of the operations are : - Adding a new access policy entry with condition. - Removing an access policy entry with condition. - Updating an access policy entry with condition. * But dataset with no conditional role bindings in access policy may specify any valid value or leave the field unset. If unset or if 0 or 1 value is used for dataset with conditional bindings, request will be rejected. This field will be maped to IAM Policy version (https://cloud.google.com/iam/docs/policies#versions) and will be used to set policy in IAM. */
2886
+ accessPolicyVersion?: number;
2869
2887
  /** Data format for response. */
2870
2888
  alt?: string;
2871
2889
  /** JSONP */
@@ -2897,6 +2915,8 @@ declare namespace gapi.client {
2897
2915
  '$.xgafv'?: string;
2898
2916
  /** OAuth access token. */
2899
2917
  access_token?: string;
2918
+ /** Optional. The version of the provided access policy schema. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. This version refers to the schema version of the access policy and not the version of access policy. This field's value can be equal or more than the access policy schema provided in the request. For example, * Operations updating conditional access policy binding in datasets must specify version 3. Some of the operations are : - Adding a new access policy entry with condition. - Removing an access policy entry with condition. - Updating an access policy entry with condition. * But dataset with no conditional role bindings in access policy may specify any valid value or leave the field unset. If unset or if 0 or 1 value is used for dataset with conditional bindings, request will be rejected. This field will be maped to IAM Policy version (https://cloud.google.com/iam/docs/policies#versions) and will be used to set policy in IAM. */
2919
+ accessPolicyVersion?: number;
2900
2920
  /** Data format for response. */
2901
2921
  alt?: string;
2902
2922
  /** JSONP */
@@ -2990,6 +3010,8 @@ declare namespace gapi.client {
2990
3010
  '$.xgafv'?: string;
2991
3011
  /** OAuth access token. */
2992
3012
  access_token?: string;
3013
+ /** Optional. The version of the provided access policy schema. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. This version refers to the schema version of the access policy and not the version of access policy. This field's value can be equal or more than the access policy schema provided in the request. For example, * Operations updating conditional access policy binding in datasets must specify version 3. Some of the operations are : - Adding a new access policy entry with condition. - Removing an access policy entry with condition. - Updating an access policy entry with condition. * But dataset with no conditional role bindings in access policy may specify any valid value or leave the field unset. If unset or if 0 or 1 value is used for dataset with conditional bindings, request will be rejected. This field will be maped to IAM Policy version (https://cloud.google.com/iam/docs/policies#versions) and will be used to set policy in IAM. */
3014
+ accessPolicyVersion?: number;
2993
3015
  /** Data format for response. */
2994
3016
  alt?: string;
2995
3017
  /** JSONP */
@@ -3021,6 +3043,8 @@ declare namespace gapi.client {
3021
3043
  '$.xgafv'?: string;
3022
3044
  /** OAuth access token. */
3023
3045
  access_token?: string;
3046
+ /** Optional. The version of the provided access policy schema. Valid values are 0, 1, and 3. Requests specifying an invalid value will be rejected. This version refers to the schema version of the access policy and not the version of access policy. This field's value can be equal or more than the access policy schema provided in the request. For example, * Operations updating conditional access policy binding in datasets must specify version 3. Some of the operations are : - Adding a new access policy entry with condition. - Removing an access policy entry with condition. - Updating an access policy entry with condition. * But dataset with no conditional role bindings in access policy may specify any valid value or leave the field unset. If unset or if 0 or 1 value is used for dataset with conditional bindings, request will be rejected. This field will be maped to IAM Policy version (https://cloud.google.com/iam/docs/policies#versions) and will be used to set policy in IAM. */
3047
+ accessPolicyVersion?: number;
3024
3048
  /** Data format for response. */
3025
3049
  alt?: string;
3026
3050
  /** JSONP */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@maxim_mazurok/gapi.client.bigquery-v2",
3
- "version": "0.0.20240905",
3
+ "version": "0.0.20241013",
4
4
  "description": "TypeScript typings for BigQuery API v2",
5
5
  "repository": {
6
6
  "type": "git",