Show / Hide Table of Contents

Class GcsDestination

Export destination of the data.Only gcs path is allowed in output_uri.

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

Constructors

GcsDestination()

Declaration
public GcsDestination()

GcsDestination(GcsDestination)

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

Properties

MimeType

Required. The format of the gcs destination. Only "text/csv" and "application/json" are supported.

Declaration
public string MimeType { get; set; }
Property Value
Type Description
System.String

OutputUri

Required. The output uri of destination file.

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