Package com.google.cloud.compute.v1
Interface FileContentBufferOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder
,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
FileContentBuffer
,FileContentBuffer.Builder
public interface FileContentBufferOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description String
getContent()
The raw content in the secure keys file.com.google.protobuf.ByteString
getContentBytes()
The raw content in the secure keys file.String
getFileType()
The file type of source file.com.google.protobuf.ByteString
getFileTypeBytes()
The file type of source file.boolean
hasContent()
The raw content in the secure keys file.boolean
hasFileType()
The file type of source file.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasContent
boolean hasContent()
The raw content in the secure keys file.
optional string content = 414659705;
- Returns:
- Whether the content field is set.
-
getContent
String getContent()
The raw content in the secure keys file.
optional string content = 414659705;
- Returns:
- The content.
-
getContentBytes
com.google.protobuf.ByteString getContentBytes()
The raw content in the secure keys file.
optional string content = 414659705;
- Returns:
- The bytes for content.
-
hasFileType
boolean hasFileType()
The file type of source file. Check the FileType enum for the list of possible values.
optional string file_type = 294346781;
- Returns:
- Whether the fileType field is set.
-
getFileType
String getFileType()
The file type of source file. Check the FileType enum for the list of possible values.
optional string file_type = 294346781;
- Returns:
- The fileType.
-
getFileTypeBytes
com.google.protobuf.ByteString getFileTypeBytes()
The file type of source file. Check the FileType enum for the list of possible values.
optional string file_type = 294346781;
- Returns:
- The bytes for fileType.
-
-