Interface Generated.AWSElasticBlockStoreVolumeSourceOrBuilder

    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      String getFsType()
      fsType is the filesystem type of the volume that you want to mount.
      com.google.protobuf.ByteString getFsTypeBytes()
      fsType is the filesystem type of the volume that you want to mount.
      int getPartition()
      partition is the partition in the volume that you want to mount.
      boolean getReadOnly()
      readOnly value true will force the readOnly setting in VolumeMounts.
      String getVolumeID()
      volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).
      com.google.protobuf.ByteString getVolumeIDBytes()
      volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).
      boolean hasFsType()
      fsType is the filesystem type of the volume that you want to mount.
      boolean hasPartition()
      partition is the partition in the volume that you want to mount.
      boolean hasReadOnly()
      readOnly value true will force the readOnly setting in VolumeMounts.
      boolean hasVolumeID()
      volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).
      • 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 Detail

      • hasVolumeID

        boolean hasVolumeID()
         volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).
         More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
         
        optional string volumeID = 1;
        Returns:
        Whether the volumeID field is set.
      • getVolumeID

        String getVolumeID()
         volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).
         More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
         
        optional string volumeID = 1;
        Returns:
        The volumeID.
      • getVolumeIDBytes

        com.google.protobuf.ByteString getVolumeIDBytes()
         volumeID is unique ID of the persistent disk resource in AWS (Amazon EBS volume).
         More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
         
        optional string volumeID = 1;
        Returns:
        The bytes for volumeID.
      • hasFsType

        boolean hasFsType()
         fsType is the filesystem type of the volume that you want to mount.
         Tip: Ensure that the filesystem type is supported by the host operating system.
         Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
         More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
         TODO: how do we prevent errors in the filesystem from compromising the machine
         +optional
         
        optional string fsType = 2;
        Returns:
        Whether the fsType field is set.
      • getFsType

        String getFsType()
         fsType is the filesystem type of the volume that you want to mount.
         Tip: Ensure that the filesystem type is supported by the host operating system.
         Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
         More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
         TODO: how do we prevent errors in the filesystem from compromising the machine
         +optional
         
        optional string fsType = 2;
        Returns:
        The fsType.
      • getFsTypeBytes

        com.google.protobuf.ByteString getFsTypeBytes()
         fsType is the filesystem type of the volume that you want to mount.
         Tip: Ensure that the filesystem type is supported by the host operating system.
         Examples: "ext4", "xfs", "ntfs". Implicitly inferred to be "ext4" if unspecified.
         More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
         TODO: how do we prevent errors in the filesystem from compromising the machine
         +optional
         
        optional string fsType = 2;
        Returns:
        The bytes for fsType.
      • hasPartition

        boolean hasPartition()
         partition is the partition in the volume that you want to mount.
         If omitted, the default is to mount by volume name.
         Examples: For volume /dev/sda1, you specify the partition as "1".
         Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).
         +optional
         
        optional int32 partition = 3;
        Returns:
        Whether the partition field is set.
      • getPartition

        int getPartition()
         partition is the partition in the volume that you want to mount.
         If omitted, the default is to mount by volume name.
         Examples: For volume /dev/sda1, you specify the partition as "1".
         Similarly, the volume partition for /dev/sda is "0" (or you can leave the property empty).
         +optional
         
        optional int32 partition = 3;
        Returns:
        The partition.
      • hasReadOnly

        boolean hasReadOnly()
         readOnly value true will force the readOnly setting in VolumeMounts.
         More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
         +optional
         
        optional bool readOnly = 4;
        Returns:
        Whether the readOnly field is set.
      • getReadOnly

        boolean getReadOnly()
         readOnly value true will force the readOnly setting in VolumeMounts.
         More info: https://kubernetes.io/docs/concepts/storage/volumes#awselasticblockstore
         +optional
         
        optional bool readOnly = 4;
        Returns:
        The readOnly.