Package com.google.cloud.aiplatform.v1
Interface ExportDataResponseOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ExportDataResponse,ExportDataResponse.Builder
public interface ExportDataResponseOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetExportedFiles(int index)All of the files that are exported in this export operation.com.google.protobuf.ByteStringgetExportedFilesBytes(int index)All of the files that are exported in this export operation.intgetExportedFilesCount()All of the files that are exported in this export operation.List<String>getExportedFilesList()All of the files that are exported in this export operation.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getExportedFilesList
List<String> getExportedFilesList()
All of the files that are exported in this export operation.
repeated string exported_files = 1;- Returns:
- A list containing the exportedFiles.
-
getExportedFilesCount
int getExportedFilesCount()
All of the files that are exported in this export operation.
repeated string exported_files = 1;- Returns:
- The count of exportedFiles.
-
getExportedFiles
String getExportedFiles(int index)
All of the files that are exported in this export operation.
repeated string exported_files = 1;- Parameters:
index- The index of the element to return.- Returns:
- The exportedFiles at the given index.
-
getExportedFilesBytes
com.google.protobuf.ByteString getExportedFilesBytes(int index)
All of the files that are exported in this export operation.
repeated string exported_files = 1;- Parameters:
index- The index of the value to return.- Returns:
- The bytes of the exportedFiles at the given index.
-
-