Class BigQueryTable (3.2.0)

public sealed class BigQueryTable : IMessage<BigQueryTable>, IEquatable<BigQueryTable>, IDeepCloneable<BigQueryTable>, IBufferMessage, IMessage

Message defining the location of a BigQuery table. A table is uniquely identified by its project_id, dataset_id, and table_name. Within a query a table is often referenced with a string in the format of: &lt;project_id>:&lt;dataset_id>.&lt;table_id> or &lt;project_id>.&lt;dataset_id>.&lt;table_id>.

Inheritance

Object > BigQueryTable

Namespace

Google.Cloud.Dlp.V2

Assembly

Google.Cloud.Dlp.V2.dll

Constructors

BigQueryTable()

public BigQueryTable()

BigQueryTable(BigQueryTable)

public BigQueryTable(BigQueryTable other)
Parameter
NameDescription
otherBigQueryTable

Properties

DatasetId

public string DatasetId { get; set; }

Dataset ID of the table.

Property Value
TypeDescription
String

ProjectId

public string ProjectId { get; set; }

The Google Cloud Platform project ID of the project containing the table. If omitted, project ID is inferred from the API call.

Property Value
TypeDescription
String

TableId

public string TableId { get; set; }

Name of the table.

Property Value
TypeDescription
String