Package com.google.cloud.apigateway.v1
Interface ApiConfig.FileOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
ApiConfig.File,ApiConfig.File.Builder
- Enclosing class:
- ApiConfig
public static interface ApiConfig.FileOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description com.google.protobuf.ByteStringgetContents()The bytes that constitute the file.StringgetPath()The file path (full or relative path).com.google.protobuf.ByteStringgetPathBytes()The file path (full or relative path).-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getPath
String getPath()
The file path (full or relative path). This is typically the path of the file when it is uploaded.
string path = 1;- Returns:
- The path.
-
getPathBytes
com.google.protobuf.ByteString getPathBytes()
The file path (full or relative path). This is typically the path of the file when it is uploaded.
string path = 1;- Returns:
- The bytes for path.
-
getContents
com.google.protobuf.ByteString getContents()
The bytes that constitute the file.
bytes contents = 2;- Returns:
- The contents.
-
-