Show / Hide Table of Contents

Class ImportDataOperationResponse

Response used for ImportData longrunning operation.

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

Constructors

ImportDataOperationResponse()

Declaration
public ImportDataOperationResponse()

ImportDataOperationResponse(ImportDataOperationResponse)

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

Properties

Dataset

Ouptut only. The name of imported dataset.

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

ImportCount

Output only. Number of examples imported successfully.

Declaration
public int ImportCount { get; set; }
Property Value
Type Description
System.Int32

TotalCount

Output only. Total number of examples requested to import

Declaration
public int TotalCount { get; set; }
Property Value
Type Description
System.Int32
Back to top