Show / Hide Table of Contents

Class ImportDataRequest

Request message for ImportData API.

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

Constructors

ImportDataRequest()

Declaration
public ImportDataRequest()

ImportDataRequest(ImportDataRequest)

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

Properties

DatasetName

DatasetName-typed view over the Name resource name property.

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

InputConfig

Required. Specify the input source of the data.

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

Name

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

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

UserEmailAddress

Email of the user who started the import 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