Package k8s.io.api.core.v1
Interface Generated.PortworxVolumeSourceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Generated.PortworxVolumeSource,Generated.PortworxVolumeSource.Builder
- Enclosing class:
- Generated
public static interface Generated.PortworxVolumeSourceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetFsType()fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system.com.google.protobuf.ByteStringgetFsTypeBytes()fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system.booleangetReadOnly()readOnly defaults to false (read/write).StringgetVolumeID()volumeID uniquely identifies a Portworx volumecom.google.protobuf.ByteStringgetVolumeIDBytes()volumeID uniquely identifies a Portworx volumebooleanhasFsType()fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system.booleanhasReadOnly()readOnly defaults to false (read/write).booleanhasVolumeID()volumeID uniquely identifies a Portworx volume-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasVolumeID
boolean hasVolumeID()
volumeID uniquely identifies a Portworx volume
optional string volumeID = 1;- Returns:
- Whether the volumeID field is set.
-
getVolumeID
String getVolumeID()
volumeID uniquely identifies a Portworx volume
optional string volumeID = 1;- Returns:
- The volumeID.
-
getVolumeIDBytes
com.google.protobuf.ByteString getVolumeIDBytes()
volumeID uniquely identifies a Portworx volume
optional string volumeID = 1;- Returns:
- The bytes for volumeID.
-
hasFsType
boolean hasFsType()
fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified.
optional string fsType = 2;- Returns:
- Whether the fsType field is set.
-
getFsType
String getFsType()
fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified.
optional string fsType = 2;- Returns:
- The fsType.
-
getFsTypeBytes
com.google.protobuf.ByteString getFsTypeBytes()
fSType represents the filesystem type to mount Must be a filesystem type supported by the host operating system. Ex. "ext4", "xfs". Implicitly inferred to be "ext4" if unspecified.
optional string fsType = 2;- Returns:
- The bytes for fsType.
-
hasReadOnly
boolean hasReadOnly()
readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. +optional
optional bool readOnly = 3;- Returns:
- Whether the readOnly field is set.
-
getReadOnly
boolean getReadOnly()
readOnly defaults to false (read/write). ReadOnly here will force the ReadOnly setting in VolumeMounts. +optional
optional bool readOnly = 3;- Returns:
- The readOnly.
-
-