-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(all): auto-regenerate discovery clients (#2834)
- Loading branch information
1 parent
200eb0c
commit c77b5f4
Showing
55 changed files
with
3,266 additions
and
1,014 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -253,6 +253,12 @@ | |
"datasetId" | ||
], | ||
"parameters": { | ||
"accessPolicyVersion": { | ||
"description": "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\": \"[email protected]\", } ] } Please refer https://cloud.google.com/iam/docs/troubleshooting-withcond for more details.", | ||
"format": "int32", | ||
"location": "query", | ||
"type": "integer" | ||
}, | ||
"datasetId": { | ||
"description": "Required. Dataset ID of the requested dataset", | ||
"location": "path", | ||
|
@@ -304,6 +310,12 @@ | |
"projectId" | ||
], | ||
"parameters": { | ||
"accessPolicyVersion": { | ||
"description": "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.", | ||
"format": "int32", | ||
"location": "query", | ||
"type": "integer" | ||
}, | ||
"projectId": { | ||
"description": "Required. Project ID of the new dataset", | ||
"location": "path", | ||
|
@@ -382,6 +394,12 @@ | |
"datasetId" | ||
], | ||
"parameters": { | ||
"accessPolicyVersion": { | ||
"description": "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.", | ||
"format": "int32", | ||
"location": "query", | ||
"type": "integer" | ||
}, | ||
"datasetId": { | ||
"description": "Required. Dataset ID of the dataset being updated", | ||
"location": "path", | ||
|
@@ -456,6 +474,12 @@ | |
"datasetId" | ||
], | ||
"parameters": { | ||
"accessPolicyVersion": { | ||
"description": "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.", | ||
"format": "int32", | ||
"location": "query", | ||
"type": "integer" | ||
}, | ||
"datasetId": { | ||
"description": "Required. Dataset ID of the dataset being updated", | ||
"location": "path", | ||
|
@@ -1985,7 +2009,7 @@ | |
} | ||
} | ||
}, | ||
"revision": "20240919", | ||
"revision": "20241013", | ||
"rootUrl": "https://bigquery.googleapis.com/", | ||
"schemas": { | ||
"AggregateClassificationMetrics": { | ||
|
@@ -3165,6 +3189,10 @@ | |
"items": { | ||
"description": "An object that defines dataset access for an entity.", | ||
"properties": { | ||
"condition": { | ||
"$ref": "Expr", | ||
"description": "Optional. condition for the binding. If CEL expression in this field is true, this access binding will be considered" | ||
}, | ||
"dataset": { | ||
"$ref": "DatasetAccessEntry", | ||
"description": "[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." | ||
|
Oops, something went wrong.