Package k8s.io.api.core.v1
Interface Generated.VolumeDeviceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Generated.VolumeDevice,Generated.VolumeDevice.Builder
- Enclosing class:
- Generated
public static interface Generated.VolumeDeviceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetDevicePath()devicePath is the path inside of the container that the device will be mapped to.com.google.protobuf.ByteStringgetDevicePathBytes()devicePath is the path inside of the container that the device will be mapped to.StringgetName()name must match the name of a persistentVolumeClaim in the podcom.google.protobuf.ByteStringgetNameBytes()name must match the name of a persistentVolumeClaim in the podbooleanhasDevicePath()devicePath is the path inside of the container that the device will be mapped to.booleanhasName()name must match the name of a persistentVolumeClaim in the pod-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasName
boolean hasName()
name must match the name of a persistentVolumeClaim in the pod
optional string name = 1;- Returns:
- Whether the name field is set.
-
getName
String getName()
name must match the name of a persistentVolumeClaim in the pod
optional string name = 1;- Returns:
- The name.
-
getNameBytes
com.google.protobuf.ByteString getNameBytes()
name must match the name of a persistentVolumeClaim in the pod
optional string name = 1;- Returns:
- The bytes for name.
-
hasDevicePath
boolean hasDevicePath()
devicePath is the path inside of the container that the device will be mapped to.
optional string devicePath = 2;- Returns:
- Whether the devicePath field is set.
-
getDevicePath
String getDevicePath()
devicePath is the path inside of the container that the device will be mapped to.
optional string devicePath = 2;- Returns:
- The devicePath.
-
getDevicePathBytes
com.google.protobuf.ByteString getDevicePathBytes()
devicePath is the path inside of the container that the device will be mapped to.
optional string devicePath = 2;- Returns:
- The bytes for devicePath.
-
-