Interface GcsSourceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
GcsSource
,GcsSource.Builder
public interface GcsSourceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description FileFormat
getFileFormat()
The file format of the Google Cloud Storage object.int
getFileFormatValue()
The file format of the Google Cloud Storage object.String
getInputUri()
Source data URI.com.google.protobuf.ByteString
getInputUriBytes()
Source data URI.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getInputUri
String getInputUri()
Source data URI. For example, `gs://my_bucket/my_object`.
string input_uri = 1;
- Returns:
- The inputUri.
-
getInputUriBytes
com.google.protobuf.ByteString getInputUriBytes()
Source data URI. For example, `gs://my_bucket/my_object`.
string input_uri = 1;
- Returns:
- The bytes for inputUri.
-
getFileFormatValue
int getFileFormatValue()
The file format of the Google Cloud Storage object. This is used mainly for validation.
.google.maps.mapsplatformdatasets.v1alpha.FileFormat file_format = 2;
- Returns:
- The enum numeric value on the wire for fileFormat.
-
getFileFormat
FileFormat getFileFormat()
The file format of the Google Cloud Storage object. This is used mainly for validation.
.google.maps.mapsplatformdatasets.v1alpha.FileFormat file_format = 2;
- Returns:
- The fileFormat.
-
-