Package k8s.io.api.core.v1
Interface Generated.LocalVolumeSourceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Generated.LocalVolumeSource,Generated.LocalVolumeSource.Builder
- Enclosing class:
- Generated
public static interface Generated.LocalVolumeSourceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFsType()fsType is the filesystem type to mount.com.google.protobuf.ByteStringgetFsTypeBytes()fsType is the filesystem type to mount.StringgetPath()path of the full path to the volume on the node.com.google.protobuf.ByteStringgetPathBytes()path of the full path to the volume on the node.booleanhasFsType()fsType is the filesystem type to mount.booleanhasPath()path of the full path to the volume on the node.-
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.
-
-