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
      String getDisk()
      The name of the disk to mount, as specified in the resources section.
      com.google.protobuf.ByteString getDiskBytes()
      The name of the disk to mount, as specified in the resources section.
      String getPath()
      The path to mount the disk inside the container.
      com.google.protobuf.ByteString getPathBytes()
      The path to mount the disk inside the container.
      boolean getReadOnly()
      If true, the disk is mounted read-only inside the container.
      • Methods inherited from interface com.google.protobuf.MessageLiteOrBuilder

        isInitialized
      • 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.