Show / Hide Table of Contents

Class GcsSource

Source of the Cloud Storage file to be imported.

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

Constructors

GcsSource()

Declaration
public GcsSource()

GcsSource(GcsSource)

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

Properties

InputUri

Required. The input URI of source file. This must be a Cloud Storage path (gs://...).

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

MimeType

Required. The format of the source file. Only "text/csv" is supported.

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