Interface NfsMountOrBuilder

  • All Superinterfaces:
    com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
    All Known Implementing Classes:
    NfsMount, NfsMount.Builder

    public interface NfsMountOrBuilder
    extends com.google.protobuf.MessageOrBuilder
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getMountPoint()
      Required.
      com.google.protobuf.ByteString getMountPointBytes()
      Required.
      String getPath()
      Required.
      com.google.protobuf.ByteString getPathBytes()
      Required.
      String getServer()
      Required.
      com.google.protobuf.ByteString getServerBytes()
      Required.
      • 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

      • getServer

        String getServer()
         Required. IP address of the NFS server.
         
        string server = 1 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The server.
      • getServerBytes

        com.google.protobuf.ByteString getServerBytes()
         Required. IP address of the NFS server.
         
        string server = 1 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The bytes for server.
      • getPath

        String getPath()
         Required. Source path exported from NFS server.
         Has to start with '/', and combined with the ip address, it indicates
         the source mount path in the form of `server:path`
         
        string path = 2 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The path.
      • getPathBytes

        com.google.protobuf.ByteString getPathBytes()
         Required. Source path exported from NFS server.
         Has to start with '/', and combined with the ip address, it indicates
         the source mount path in the form of `server:path`
         
        string path = 2 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The bytes for path.
      • getMountPoint

        String getMountPoint()
         Required. Destination mount path. The NFS will be mounted for the user
         under /mnt/nfs/<mount_point>
         
        string mount_point = 3 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The mountPoint.
      • getMountPointBytes

        com.google.protobuf.ByteString getMountPointBytes()
         Required. Destination mount path. The NFS will be mounted for the user
         under /mnt/nfs/<mount_point>
         
        string mount_point = 3 [(.google.api.field_behavior) = REQUIRED];
        Returns:
        The bytes for mountPoint.