Skip to content

Commit

Permalink
docs: Clarify BigQueryConfig PERMISSION_DENIED state
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 509847316

Source-Link: googleapis/googleapis@d753d63

Source-Link: googleapis/googleapis-gen@da4e7fe
Copy-Tag: eyJwIjoiYXBpcy9Hb29nbGUuQ2xvdWQuUHViU3ViLlYxLy5Pd2xCb3QueWFtbCIsImgiOiJkYTRlN2ZlMDA0NGIzMDMzMDNlZjRjOGU0NmVmYWYwZmNjOThlOGJmIn0=
  • Loading branch information
gcf-owl-bot[bot] authored and jskeet committed Feb 15, 2023
1 parent 5d43a47 commit 78feab7
Showing 1 changed file with 6 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -7006,7 +7006,7 @@ public sealed partial class BigQueryConfig : pb::IMessage<BigQueryConfig>
private string table_ = "";
/// <summary>
/// The name of the table to which to write data, of the form
/// {projectId}:{datasetId}.{tableId}
/// {projectId}.{datasetId}.{tableId}
/// </summary>
[global::System.Diagnostics.DebuggerNonUserCodeAttribute]
[global::System.CodeDom.Compiler.GeneratedCode("protoc", null)]
Expand Down Expand Up @@ -7333,6 +7333,11 @@ public enum State {
[pbr::OriginalName("ACTIVE")] Active = 1,
/// <summary>
/// Cannot write to the BigQuery table because of permission denied errors.
/// This can happen if
/// - Pub/Sub SA has not been granted the [appropriate BigQuery IAM
/// permissions](https://cloud.google.com/pubsub/docs/create-subscription#assign_bigquery_service_account)
/// - bigquery.googleapis.com API is not enabled for the project
/// ([instructions](https://cloud.google.com/service-usage/docs/enable-disable))
/// </summary>
[pbr::OriginalName("PERMISSION_DENIED")] PermissionDenied = 2,
/// <summary>
Expand Down

0 comments on commit 78feab7

Please sign in to comment.