Show / Hide Table of Contents

Class Dataset

Dataset is the resource to hold your data. You can request multiple labeling tasks for a dataset while each one will generate an AnnotatedDataset.

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

Constructors

Dataset()

Declaration
public Dataset()

Dataset(Dataset)

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

Properties

BlockingResources

Output only. The names of any related resources that are blocking changes to the dataset.

Declaration
public RepeatedField<string> BlockingResources { get; }
Property Value
Type Description
RepeatedField<System.String>

CreateTime

Output only. Time the dataset is created.

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

DataItemCount

Output only. The number of data items in the dataset.

Declaration
public long DataItemCount { get; set; }
Property Value
Type Description
System.Int64

DatasetName

DatasetName-typed view over the Name resource name property.

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

Description

Optional. User-provided description of the annotation specification set. The description can be up to 10000 characters long.

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

DisplayName

Required. The display name of the dataset. Maximum of 64 characters.

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

InputConfigs

Output only. This is populated with the original input configs where ImportData is called. It is available only after the clients import data to this dataset.

Declaration
public RepeatedField<InputConfig> InputConfigs { get; }
Property Value
Type Description
RepeatedField<InputConfig>

Name

Output only. Dataset resource name, format is: projects/{project_id}/datasets/{dataset_id}

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