Interface TranslationFileMappingOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
TranslationFileMapping
,TranslationFileMapping.Builder
public interface TranslationFileMappingOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getInputPath()
The Cloud Storage path for a file to translation in a subtask.com.google.protobuf.ByteString
getInputPathBytes()
The Cloud Storage path for a file to translation in a subtask.String
getOutputPath()
The Cloud Storage path to write back the corresponding input file to.com.google.protobuf.ByteString
getOutputPathBytes()
The Cloud Storage path to write back the corresponding input file to.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getInputPath
String getInputPath()
The Cloud Storage path for a file to translation in a subtask.
string input_path = 1;
- Returns:
- The inputPath.
-
getInputPathBytes
com.google.protobuf.ByteString getInputPathBytes()
The Cloud Storage path for a file to translation in a subtask.
string input_path = 1;
- Returns:
- The bytes for inputPath.
-
getOutputPath
String getOutputPath()
The Cloud Storage path to write back the corresponding input file to.
string output_path = 2;
- Returns:
- The outputPath.
-
getOutputPathBytes
com.google.protobuf.ByteString getOutputPathBytes()
The Cloud Storage path to write back the corresponding input file to.
string output_path = 2;
- Returns:
- The bytes for outputPath.
-
-