Role roles/bigquery.jobs.create is not supported for this resource (project)

Viewed 32

I'm using gcloud projects add-iam-policy-binding ... command to add role: roles/bigquery.jobs.create (because this is necessity if you want to be able to run query in BigQuery GCP project).

I get an output: INVALID_ARGUMENT: Role roles/bigquery.jobs.create is not supported for this resource.

Problem here is I'm unable to set this through bq CLI as well, because it seems like permissions can be added on table/dataset level only. Anyone knows the possible solution (unix shell)?

1 Answers

The IAM role you mentioned in the question does not exist. It is a permission rather than a role.

The list of roles and their descriptions are provided in the BigQuery Predefined IAM roles

Related