Show / Hide Table of Contents

Class InputConfig

The configuration of input data, including data type, location, etc.

Inheritance
System.Object
InputConfig
Implements
IMessage<InputConfig>
System.IEquatable<InputConfig>
IDeepCloneable<InputConfig>
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 InputConfig : IMessage<InputConfig>, IEquatable<InputConfig>, IDeepCloneable<InputConfig>, IBufferMessage, IMessage

Constructors

InputConfig()

Declaration
public InputConfig()

InputConfig(InputConfig)

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

Properties

AnnotationType

Optional. The type of annotation to be performed on this data. You must specify this field if you are using this InputConfig in an [EvaluationJob][google.cloud.datalabeling.v1beta1.EvaluationJob].

Declaration
public AnnotationType AnnotationType { get; set; }
Property Value
Type Description
AnnotationType

BigquerySource

Source located in BigQuery. You must specify this field if you are using this InputConfig in an [EvaluationJob][google.cloud.datalabeling.v1beta1.EvaluationJob].

Declaration
public BigQuerySource BigquerySource { get; set; }
Property Value
Type Description
BigQuerySource

ClassificationMetadata

Optional. Metadata about annotations for the input. You must specify this field if you are using this InputConfig in an [EvaluationJob][google.cloud.datalabeling.v1beta1.EvaluationJob] for a model version that performs classification.

Declaration
public ClassificationMetadata ClassificationMetadata { get; set; }
Property Value
Type Description
ClassificationMetadata

DataType

Required. Data type must be specifed when user tries to import data.

Declaration
public DataType DataType { get; set; }
Property Value
Type Description
DataType

DataTypeMetadataCase

Declaration
public InputConfig.DataTypeMetadataOneofCase DataTypeMetadataCase { get; }
Property Value
Type Description
InputConfig.DataTypeMetadataOneofCase

GcsSource

Source located in Cloud Storage.

Declaration
public GcsSource GcsSource { get; set; }
Property Value
Type Description
GcsSource

SourceCase

Declaration
public InputConfig.SourceOneofCase SourceCase { get; }
Property Value
Type Description
InputConfig.SourceOneofCase

TextMetadata

Required for text import, as language code must be specified.

Declaration
public TextMetadata TextMetadata { get; set; }
Property Value
Type Description
TextMetadata
Back to top