Interface V1.NFSVolumeSourceOrBuilder

All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder, com.google.protobuf.MessageOrBuilder
All Known Implementing Classes:
V1.NFSVolumeSource, V1.NFSVolumeSource.Builder
Enclosing class:
V1

public static interface V1.NFSVolumeSourceOrBuilder extends com.google.protobuf.MessageOrBuilder
  • Method Summary

    Modifier and Type
    Method
    Description
    Path that is exported by the NFS server.
    com.google.protobuf.ByteString
    Path that is exported by the NFS server.
    boolean
    ReadOnly here will force the NFS export to be mounted with read-only permissions.
    Server is the hostname or IP address of the NFS server.
    com.google.protobuf.ByteString
    Server is the hostname or IP address of the NFS server.
    boolean
    Path that is exported by the NFS server.
    boolean
    ReadOnly here will force the NFS export to be mounted with read-only permissions.
    boolean
    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 Details

    • 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;
    • 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;
    • 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;
    • 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;
    • 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;
    • 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;
    • 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;
    • 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;