struct

Kubernetes::VolumeMountStatus

Inherits YAML::Serializable < JSON::Serializable < Kubernetes::Serializable < Struct < Value < Object

VolumeMountStatus shows status of volume mounts.

Constructors

new(pull : ::JSON::PullParser)
new(*, __pull_for_json_serializable pull : ::JSON::PullParser)
new(*, __context_for_yaml_serializable ctx : YAML::ParseContext, __node_for_yaml_serializable node : YAML::Nodes::Node)

Instance methods

mount_path

MountPath corresponds to the original VolumeMount.

Source
mount_path=(mount_path : String | Nil)

MountPath corresponds to the original VolumeMount.

Source
name

Name corresponds to the name of the original VolumeMount.

Source
name=(name : String | Nil)

Name corresponds to the name of the original VolumeMount.

Source
read_only

ReadOnly corresponds to the original VolumeMount.

Source
read_only=(read_only : Bool | Nil)

ReadOnly corresponds to the original VolumeMount.

Source
recursive_read_only

RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts). An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result.

Source
recursive_read_only=(recursive_read_only : String | Nil)

RecursiveReadOnly must be set to Disabled, Enabled, or unspecified (for non-readonly mounts). An IfPossible value in the original VolumeMount must be translated to Disabled or Enabled, depending on the mount result.

Source
volume_status

volumeStatus represents volume-type-specific status about the mounted volume.

Source
volume_status=(volume_status : VolumeStatus | Nil)

volumeStatus represents volume-type-specific status about the mounted volume.

Source

Macros

field(name, type = nil, **options, &block)

Helper macro for defining fields with automatic camelCase conversion

Source