Interface ExportDataOperationMetadataOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ExportDataOperationMetadata
,ExportDataOperationMetadata.Builder
public interface ExportDataOperationMetadataOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getGcsOutputDirectory()
A Google Cloud Storage directory which path ends with '/'.com.google.protobuf.ByteString
getGcsOutputDirectoryBytes()
A Google Cloud Storage directory which path ends with '/'.GenericOperationMetadata
getGenericMetadata()
The common part of the operation metadata.GenericOperationMetadataOrBuilder
getGenericMetadataOrBuilder()
The common part of the operation metadata.boolean
hasGenericMetadata()
The common part of the operation metadata.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasGenericMetadata
boolean hasGenericMetadata()
The common part of the operation metadata.
.google.cloud.aiplatform.v1beta1.GenericOperationMetadata generic_metadata = 1;
- Returns:
- Whether the genericMetadata field is set.
-
getGenericMetadata
GenericOperationMetadata getGenericMetadata()
The common part of the operation metadata.
.google.cloud.aiplatform.v1beta1.GenericOperationMetadata generic_metadata = 1;
- Returns:
- The genericMetadata.
-
getGenericMetadataOrBuilder
GenericOperationMetadataOrBuilder getGenericMetadataOrBuilder()
The common part of the operation metadata.
.google.cloud.aiplatform.v1beta1.GenericOperationMetadata generic_metadata = 1;
-
getGcsOutputDirectory
String getGcsOutputDirectory()
A Google Cloud Storage directory which path ends with '/'. The exported data is stored in the directory.
string gcs_output_directory = 2;
- Returns:
- The gcsOutputDirectory.
-
getGcsOutputDirectoryBytes
com.google.protobuf.ByteString getGcsOutputDirectoryBytes()
A Google Cloud Storage directory which path ends with '/'. The exported data is stored in the directory.
string gcs_output_directory = 2;
- Returns:
- The bytes for gcsOutputDirectory.
-
-