Show / Hide Table of Contents

Class OutputConfig

The configuration of output data.

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

Constructors

OutputConfig()

Declaration
public OutputConfig()

OutputConfig(OutputConfig)

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

Properties

DestinationCase

Declaration
public OutputConfig.DestinationOneofCase DestinationCase { get; }
Property Value
Type Description
OutputConfig.DestinationOneofCase

GcsDestination

Output to a file in Cloud Storage. Should be used for labeling output other than image segmentation.

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

GcsFolderDestination

Output to a folder in Cloud Storage. Should be used for image segmentation labeling output.

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