Show / Hide Table of Contents

Class ExportDataOperationResponse

Response used for ExportDataset longrunning operation.

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

Constructors

ExportDataOperationResponse()

Declaration
public ExportDataOperationResponse()

ExportDataOperationResponse(ExportDataOperationResponse)

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

Properties

Dataset

Ouptut only. The name of dataset. "projects//datasets/"

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

ExportCount

Output only. Number of examples exported successfully.

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

LabelStats

Output only. Statistic infos of labels in the exported dataset.

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

OutputConfig

Output only. output_config in the ExportData request.

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

TotalCount

Output only. Total number of examples requested to export

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