Interface MountOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Mount,Mount.Builder
public interface MountOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDisk()The name of the disk to mount, as specified in the resources section.com.google.protobuf.ByteStringgetDiskBytes()The name of the disk to mount, as specified in the resources section.StringgetPath()The path to mount the disk inside the container.com.google.protobuf.ByteStringgetPathBytes()The path to mount the disk inside the container.booleangetReadOnly()If true, the disk is mounted read-only inside the container.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
getDisk
String getDisk()
The name of the disk to mount, as specified in the resources section.
string disk = 1;- Returns:
- The disk.
-
getDiskBytes
com.google.protobuf.ByteString getDiskBytes()
The name of the disk to mount, as specified in the resources section.
string disk = 1;- Returns:
- The bytes for disk.
-
getPath
String getPath()
The path to mount the disk inside the container.
string path = 2;- Returns:
- The path.
-
getPathBytes
com.google.protobuf.ByteString getPathBytes()
The path to mount the disk inside the container.
string path = 2;- Returns:
- The bytes for path.
-
getReadOnly
boolean getReadOnly()
If true, the disk is mounted read-only inside the container.
bool read_only = 3;- Returns:
- The readOnly.
-
-