Interface ExportDataConfigOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ExportDataConfig
,ExportDataConfig.Builder
public interface ExportDataConfigOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getAnnotationsFilter()
An expression for filtering what part of the Dataset is to be exported.com.google.protobuf.ByteString
getAnnotationsFilterBytes()
An expression for filtering what part of the Dataset is to be exported.ExportDataConfig.DestinationCase
getDestinationCase()
ExportFractionSplit
getFractionSplit()
Split based on fractions defining the size of each set.ExportFractionSplitOrBuilder
getFractionSplitOrBuilder()
Split based on fractions defining the size of each set.GcsDestination
getGcsDestination()
The Google Cloud Storage location where the output is to be written to.GcsDestinationOrBuilder
getGcsDestinationOrBuilder()
The Google Cloud Storage location where the output is to be written to.ExportDataConfig.SplitCase
getSplitCase()
boolean
hasFractionSplit()
Split based on fractions defining the size of each set.boolean
hasGcsDestination()
The Google Cloud Storage location where the output is to be written to.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasGcsDestination
boolean hasGcsDestination()
The Google Cloud Storage location where the output is to be written to. In the given directory a new directory will be created with name: `export-data-<dataset-display-name>-<timestamp-of-export-call>` where timestamp is in YYYY-MM-DDThh:mm:ss.sssZ ISO-8601 format. All export output will be written into that directory. Inside that directory, annotations with the same schema will be grouped into sub directories which are named with the corresponding annotations' schema title. Inside these sub directories, a schema.yaml will be created to describe the output format.
.google.cloud.aiplatform.v1beta1.GcsDestination gcs_destination = 1;
- Returns:
- Whether the gcsDestination field is set.
-
getGcsDestination
GcsDestination getGcsDestination()
The Google Cloud Storage location where the output is to be written to. In the given directory a new directory will be created with name: `export-data-<dataset-display-name>-<timestamp-of-export-call>` where timestamp is in YYYY-MM-DDThh:mm:ss.sssZ ISO-8601 format. All export output will be written into that directory. Inside that directory, annotations with the same schema will be grouped into sub directories which are named with the corresponding annotations' schema title. Inside these sub directories, a schema.yaml will be created to describe the output format.
.google.cloud.aiplatform.v1beta1.GcsDestination gcs_destination = 1;
- Returns:
- The gcsDestination.
-
getGcsDestinationOrBuilder
GcsDestinationOrBuilder getGcsDestinationOrBuilder()
The Google Cloud Storage location where the output is to be written to. In the given directory a new directory will be created with name: `export-data-<dataset-display-name>-<timestamp-of-export-call>` where timestamp is in YYYY-MM-DDThh:mm:ss.sssZ ISO-8601 format. All export output will be written into that directory. Inside that directory, annotations with the same schema will be grouped into sub directories which are named with the corresponding annotations' schema title. Inside these sub directories, a schema.yaml will be created to describe the output format.
.google.cloud.aiplatform.v1beta1.GcsDestination gcs_destination = 1;
-
hasFractionSplit
boolean hasFractionSplit()
Split based on fractions defining the size of each set.
.google.cloud.aiplatform.v1beta1.ExportFractionSplit fraction_split = 5;
- Returns:
- Whether the fractionSplit field is set.
-
getFractionSplit
ExportFractionSplit getFractionSplit()
Split based on fractions defining the size of each set.
.google.cloud.aiplatform.v1beta1.ExportFractionSplit fraction_split = 5;
- Returns:
- The fractionSplit.
-
getFractionSplitOrBuilder
ExportFractionSplitOrBuilder getFractionSplitOrBuilder()
Split based on fractions defining the size of each set.
.google.cloud.aiplatform.v1beta1.ExportFractionSplit fraction_split = 5;
-
getAnnotationsFilter
String getAnnotationsFilter()
An expression for filtering what part of the Dataset is to be exported. Only Annotations that match this filter will be exported. The filter syntax is the same as in [ListAnnotations][google.cloud.aiplatform.v1beta1.DatasetService.ListAnnotations].
string annotations_filter = 2;
- Returns:
- The annotationsFilter.
-
getAnnotationsFilterBytes
com.google.protobuf.ByteString getAnnotationsFilterBytes()
An expression for filtering what part of the Dataset is to be exported. Only Annotations that match this filter will be exported. The filter syntax is the same as in [ListAnnotations][google.cloud.aiplatform.v1beta1.DatasetService.ListAnnotations].
string annotations_filter = 2;
- Returns:
- The bytes for annotationsFilter.
-
getDestinationCase
ExportDataConfig.DestinationCase getDestinationCase()
-
getSplitCase
ExportDataConfig.SplitCase getSplitCase()
-
-