Interface Generated.NFSVolumeSourceOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getPath()
      path that is exported by the NFS server.
      com.google.protobuf.ByteString getPathBytes()
      path that is exported by the NFS server.
      boolean getReadOnly()
      readOnly here will force the NFS export to be mounted with read-only permissions.
      String getServer()
      server is the hostname or IP address of the NFS server.
      com.google.protobuf.ByteString getServerBytes()
      server is the hostname or IP address of the NFS server.
      boolean hasPath()
      path that is exported by the NFS server.
      boolean hasReadOnly()
      readOnly here will force the NFS export to be mounted with read-only permissions.
      boolean hasServer()
      server is the hostname or IP address of the NFS server.
      • 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

      • hasServer

        boolean hasServer()
         server is the hostname or IP address of the NFS server.
         More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
         
        optional string server = 1;
        Returns:
        Whether the server field is set.
      • getServer

        String getServer()
         server is the hostname or IP address of the NFS server.
         More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
         
        optional string server = 1;
        Returns:
        The server.
      • getServerBytes

        com.google.protobuf.ByteString getServerBytes()
         server is the hostname or IP address of the NFS server.
         More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
         
        optional string server = 1;
        Returns:
        The bytes for server.
      • hasPath

        boolean hasPath()
         path that is exported by the NFS server.
         More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
         
        optional string path = 2;
        Returns:
        Whether the path field is set.
      • getPath

        String getPath()
         path that is exported by the NFS server.
         More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
         
        optional string path = 2;
        Returns:
        The path.
      • getPathBytes

        com.google.protobuf.ByteString getPathBytes()
         path that is exported by the NFS server.
         More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
         
        optional string path = 2;
        Returns:
        The bytes for path.
      • hasReadOnly

        boolean hasReadOnly()
         readOnly here will force the NFS export to be mounted with read-only permissions.
         Defaults to false.
         More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
         +optional
         
        optional bool readOnly = 3;
        Returns:
        Whether the readOnly field is set.
      • getReadOnly

        boolean getReadOnly()
         readOnly here will force the NFS export to be mounted with read-only permissions.
         Defaults to false.
         More info: https://kubernetes.io/docs/concepts/storage/volumes#nfs
         +optional
         
        optional bool readOnly = 3;
        Returns:
        The readOnly.