Interface ConfigFileOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ConfigFile
,ConfigFile.Builder
public interface ConfigFileOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteString
getFileContents()
The bytes that constitute the file.String
getFilePath()
The file name of the configuration file (full or relative path).com.google.protobuf.ByteString
getFilePathBytes()
The file name of the configuration file (full or relative path).ConfigFile.FileType
getFileType()
The type of configuration file this represents.int
getFileTypeValue()
The type of configuration file this represents.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getFilePath
String getFilePath()
The file name of the configuration file (full or relative path).
string file_path = 1;
- Returns:
- The filePath.
-
getFilePathBytes
com.google.protobuf.ByteString getFilePathBytes()
The file name of the configuration file (full or relative path).
string file_path = 1;
- Returns:
- The bytes for filePath.
-
getFileContents
com.google.protobuf.ByteString getFileContents()
The bytes that constitute the file.
bytes file_contents = 3;
- Returns:
- The fileContents.
-
getFileTypeValue
int getFileTypeValue()
The type of configuration file this represents.
.google.api.servicemanagement.v1.ConfigFile.FileType file_type = 4;
- Returns:
- The enum numeric value on the wire for fileType.
-
getFileType
ConfigFile.FileType getFileType()
The type of configuration file this represents.
.google.api.servicemanagement.v1.ConfigFile.FileType file_type = 4;
- Returns:
- The fileType.
-
-