Show / Hide Table of Contents

Class BigQuerySource

The BigQuery location for input data. If used in an [EvaluationJob][google.cloud.datalabeling.v1beta1.EvaluationJob], this is where the service saves the prediction input and output sampled from the model version.

Inheritance
System.Object
BigQuerySource
Implements
IMessage<BigQuerySource>
System.IEquatable<BigQuerySource>
IDeepCloneable<BigQuerySource>
Google.Protobuf.IBufferMessage
IMessage
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.DataLabeling.V1Beta1
Assembly: Google.Cloud.DataLabeling.V1Beta1.dll
Syntax
public sealed class BigQuerySource : IMessage<BigQuerySource>, IEquatable<BigQuerySource>, IDeepCloneable<BigQuerySource>, IBufferMessage, IMessage

Constructors

BigQuerySource()

Declaration
public BigQuerySource()

BigQuerySource(BigQuerySource)

Declaration
public BigQuerySource(BigQuerySource other)
Parameters
Type Name Description
BigQuerySource other

Properties

InputUri

Required. BigQuery URI to a table, up to 2,000 characters long. If you specify the URI of a table that does not exist, Data Labeling Service creates a table at the URI with the correct schema when you create your [EvaluationJob][google.cloud.datalabeling.v1beta1.EvaluationJob]. If you specify the URI of a table that already exists, it must have the correct schema.

Provide the table URI in the following format:

"bq://<var>{your_project_id}</var>/<var>{your_dataset_name}</var>/<var>{your_table_name}</var>"

Learn more.

Declaration
public string InputUri { get; set; }
Property Value
Type Description
System.String
Back to top