Show / Hide Table of Contents

Class ImportDataOperationMetadata

Metadata of an ImportData operation.

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

Constructors

ImportDataOperationMetadata()

Declaration
public ImportDataOperationMetadata()

ImportDataOperationMetadata(ImportDataOperationMetadata)

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

Properties

CreateTime

Output only. Timestamp when import dataset request was created.

Declaration
public Timestamp CreateTime { get; set; }
Property Value
Type Description
Timestamp

Dataset

Output only. The name of imported dataset. "projects//datasets/"

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

PartialFailures

Output only. Partial failures encountered. E.g. single files that couldn't be read. Status details field will contain standard GCP error details.

Declaration
public RepeatedField<Status> PartialFailures { get; }
Property Value
Type Description
RepeatedField<Status>
Back to top