Interface DatasetOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Dataset
,Dataset.Builder
public interface DatasetOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getBlockingResources(int index)
Output only.com.google.protobuf.ByteString
getBlockingResourcesBytes(int index)
Output only.int
getBlockingResourcesCount()
Output only.List<String>
getBlockingResourcesList()
Output only.com.google.protobuf.Timestamp
getCreateTime()
Output only.com.google.protobuf.TimestampOrBuilder
getCreateTimeOrBuilder()
Output only.long
getDataItemCount()
Output only.String
getDescription()
Optional.com.google.protobuf.ByteString
getDescriptionBytes()
Optional.String
getDisplayName()
Required.com.google.protobuf.ByteString
getDisplayNameBytes()
Required.InputConfig
getInputConfigs(int index)
Output only.int
getInputConfigsCount()
Output only.List<InputConfig>
getInputConfigsList()
Output only.InputConfigOrBuilder
getInputConfigsOrBuilder(int index)
Output only.List<? extends InputConfigOrBuilder>
getInputConfigsOrBuilderList()
Output only.String
getName()
Output only.com.google.protobuf.ByteString
getNameBytes()
Output only.boolean
hasCreateTime()
Output only.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getName
String getName()
Output only. Dataset resource name, format is: projects/{project_id}/datasets/{dataset_id}
string name = 1;
- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
Output only. Dataset resource name, format is: projects/{project_id}/datasets/{dataset_id}
string name = 1;
- Returns:
- The bytes for name.
-
getDisplayName
String getDisplayName()
Required. The display name of the dataset. Maximum of 64 characters.
string display_name = 2;
- Returns:
- The displayName.
-
getDisplayNameBytes
com.google.protobuf.ByteString getDisplayNameBytes()
Required. The display name of the dataset. Maximum of 64 characters.
string display_name = 2;
- Returns:
- The bytes for displayName.
-
getDescription
String getDescription()
Optional. User-provided description of the annotation specification set. The description can be up to 10000 characters long.
string description = 3;
- Returns:
- The description.
-
getDescriptionBytes
com.google.protobuf.ByteString getDescriptionBytes()
Optional. User-provided description of the annotation specification set. The description can be up to 10000 characters long.
string description = 3;
- Returns:
- The bytes for description.
-
hasCreateTime
boolean hasCreateTime()
Output only. Time the dataset is created.
.google.protobuf.Timestamp create_time = 4;
- Returns:
- Whether the createTime field is set.
-
getCreateTime
com.google.protobuf.Timestamp getCreateTime()
Output only. Time the dataset is created.
.google.protobuf.Timestamp create_time = 4;
- Returns:
- The createTime.
-
getCreateTimeOrBuilder
com.google.protobuf.TimestampOrBuilder getCreateTimeOrBuilder()
Output only. Time the dataset is created.
.google.protobuf.Timestamp create_time = 4;
-
getInputConfigsList
List<InputConfig> getInputConfigsList()
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.
repeated .google.cloud.datalabeling.v1beta1.InputConfig input_configs = 5;
-
getInputConfigs
InputConfig getInputConfigs(int index)
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.
repeated .google.cloud.datalabeling.v1beta1.InputConfig input_configs = 5;
-
getInputConfigsCount
int getInputConfigsCount()
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.
repeated .google.cloud.datalabeling.v1beta1.InputConfig input_configs = 5;
-
getInputConfigsOrBuilderList
List<? extends InputConfigOrBuilder> getInputConfigsOrBuilderList()
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.
repeated .google.cloud.datalabeling.v1beta1.InputConfig input_configs = 5;
-
getInputConfigsOrBuilder
InputConfigOrBuilder getInputConfigsOrBuilder(int index)
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.
repeated .google.cloud.datalabeling.v1beta1.InputConfig input_configs = 5;
-
getBlockingResourcesList
List<String> getBlockingResourcesList()
Output only. The names of any related resources that are blocking changes to the dataset.
repeated string blocking_resources = 6;
- Returns:
- A list containing the blockingResources.
-
getBlockingResourcesCount
int getBlockingResourcesCount()
Output only. The names of any related resources that are blocking changes to the dataset.
repeated string blocking_resources = 6;
- Returns:
- The count of blockingResources.
-
getBlockingResources
String getBlockingResources(int index)
Output only. The names of any related resources that are blocking changes to the dataset.
repeated string blocking_resources = 6;
- Parameters:
index
- The index of the element to return.- Returns:
- The blockingResources at the given index.
-
getBlockingResourcesBytes
com.google.protobuf.ByteString getBlockingResourcesBytes(int index)
Output only. The names of any related resources that are blocking changes to the dataset.
repeated string blocking_resources = 6;
- Parameters:
index
- The index of the value to return.- Returns:
- The bytes of the blockingResources at the given index.
-
getDataItemCount
long getDataItemCount()
Output only. The number of data items in the dataset.
int64 data_item_count = 7;
- Returns:
- The dataItemCount.
-
-