Interface Generated.LocalVolumeSourceOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getFsType()
      fsType is the filesystem type to mount.
      com.google.protobuf.ByteString getFsTypeBytes()
      fsType is the filesystem type to mount.
      String getPath()
      path of the full path to the volume on the node.
      com.google.protobuf.ByteString getPathBytes()
      path of the full path to the volume on the node.
      boolean hasFsType()
      fsType is the filesystem type to mount.
      boolean hasPath()
      path of the full path to the volume on the node.
      • 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

      • hasPath

        boolean hasPath()
         path of the full path to the volume on the node.
         It can be either a directory or block device (disk, partition, ...).
         
        optional string path = 1;
        Returns:
        Whether the path field is set.
      • getPath

        String getPath()
         path of the full path to the volume on the node.
         It can be either a directory or block device (disk, partition, ...).
         
        optional string path = 1;
        Returns:
        The path.
      • getPathBytes

        com.google.protobuf.ByteString getPathBytes()
         path of the full path to the volume on the node.
         It can be either a directory or block device (disk, partition, ...).
         
        optional string path = 1;
        Returns:
        The bytes for path.
      • hasFsType

        boolean hasFsType()
         fsType is the filesystem type to mount.
         It applies only when the Path is a block device.
         Must be a filesystem type supported by the host operating system.
         Ex. "ext4", "xfs", "ntfs". The default value is to auto-select a filesystem if unspecified.
         +optional
         
        optional string fsType = 2;
        Returns:
        Whether the fsType field is set.
      • getFsType

        String getFsType()
         fsType is the filesystem type to mount.
         It applies only when the Path is a block device.
         Must be a filesystem type supported by the host operating system.
         Ex. "ext4", "xfs", "ntfs". The default value is to auto-select a filesystem if unspecified.
         +optional
         
        optional string fsType = 2;
        Returns:
        The fsType.
      • getFsTypeBytes

        com.google.protobuf.ByteString getFsTypeBytes()
         fsType is the filesystem type to mount.
         It applies only when the Path is a block device.
         Must be a filesystem type supported by the host operating system.
         Ex. "ext4", "xfs", "ntfs". The default value is to auto-select a filesystem if unspecified.
         +optional
         
        optional string fsType = 2;
        Returns:
        The bytes for fsType.