Show / Hide Table of Contents

Class ExportDataRequest

Request message for ExportData API.

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

Constructors

ExportDataRequest()

Declaration
public ExportDataRequest()

ExportDataRequest(ExportDataRequest)

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

Properties

AnnotatedDataset

Required. Annotated dataset resource name. DataItem in Dataset and their annotations in specified annotated dataset will be exported. It's in format of projects/{project_id}/datasets/{dataset_id}/annotatedDatasets/ {annotated_dataset_id}

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

AnnotatedDatasetAsAnnotatedDatasetName

AnnotatedDatasetName-typed view over the AnnotatedDataset resource name property.

Declaration
public AnnotatedDatasetName AnnotatedDatasetAsAnnotatedDatasetName { get; set; }
Property Value
Type Description
AnnotatedDatasetName

DatasetName

DatasetName-typed view over the Name resource name property.

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

Filter

Optional. Filter is not supported at this moment.

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

Name

Required. Dataset resource name, format: projects/{project_id}/datasets/{dataset_id}

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

OutputConfig

Required. Specify the output destination.

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

UserEmailAddress

Email of the user who started the export task and should be notified by email. If empty no notification will be sent.

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