Package k8s.io.api.core.v1
Interface Generated.GlusterfsVolumeSourceOrBuilder
-
- All Superinterfaces:
com.google.protobuf.MessageLiteOrBuilder,com.google.protobuf.MessageOrBuilder
- All Known Implementing Classes:
Generated.GlusterfsVolumeSource,Generated.GlusterfsVolumeSource.Builder
- Enclosing class:
- Generated
public static interface Generated.GlusterfsVolumeSourceOrBuilder extends com.google.protobuf.MessageOrBuilder
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description StringgetEndpoints()endpoints is the endpoint name that details Glusterfs topology.com.google.protobuf.ByteStringgetEndpointsBytes()endpoints is the endpoint name that details Glusterfs topology.StringgetPath()path is the Glusterfs volume path.com.google.protobuf.ByteStringgetPathBytes()path is the Glusterfs volume path.booleangetReadOnly()readOnly here will force the Glusterfs volume to be mounted with read-only permissions.booleanhasEndpoints()endpoints is the endpoint name that details Glusterfs topology.booleanhasPath()path is the Glusterfs volume path.booleanhasReadOnly()readOnly here will force the Glusterfs volume to be mounted with read-only permissions.-
Methods inherited from interface com.google.protobuf.MessageOrBuilder
findInitializationErrors, getAllFields, getDefaultInstanceForType, getDescriptorForType, getField, getInitializationErrorString, getOneofFieldDescriptor, getRepeatedField, getRepeatedFieldCount, getUnknownFields, hasField, hasOneof
-
-
-
-
Method Detail
-
hasEndpoints
boolean hasEndpoints()
endpoints is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod
optional string endpoints = 1;- Returns:
- Whether the endpoints field is set.
-
getEndpoints
String getEndpoints()
endpoints is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod
optional string endpoints = 1;- Returns:
- The endpoints.
-
getEndpointsBytes
com.google.protobuf.ByteString getEndpointsBytes()
endpoints is the endpoint name that details Glusterfs topology. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod
optional string endpoints = 1;- Returns:
- The bytes for endpoints.
-
hasPath
boolean hasPath()
path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod
optional string path = 2;- Returns:
- Whether the path field is set.
-
getPath
String getPath()
path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod
optional string path = 2;- Returns:
- The path.
-
getPathBytes
com.google.protobuf.ByteString getPathBytes()
path is the Glusterfs volume path. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod
optional string path = 2;- Returns:
- The bytes for path.
-
hasReadOnly
boolean hasReadOnly()
readOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod +optional
optional bool readOnly = 3;- Returns:
- Whether the readOnly field is set.
-
getReadOnly
boolean getReadOnly()
readOnly here will force the Glusterfs volume to be mounted with read-only permissions. Defaults to false. More info: https://examples.k8s.io/volumes/glusterfs/README.md#create-a-pod +optional
optional bool readOnly = 3;- Returns:
- The readOnly.
-
-