Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 919 Bytes

File metadata and controls

24 lines (18 loc) · 919 Bytes

Kubevirt::V1AddVolumeOptions

Properties

Name Type Description Notes
disk V1Disk
dry_run Array<String> When present, indicates that modifications should not be persisted. An invalid or unrecognized dryRun directive will result in an error response and no further processing of the request. Valid values are: - All: all dry run stages will be processed [optional]
name String Name represents the name that will be used to map the disk to the corresponding volume. This overrides any name set inside the Disk struct itself. [default to '']
volume_source V1HotplugVolumeSource

Example

require 'kubevirt'

instance = Kubevirt::V1AddVolumeOptions.new(
  disk: null,
  dry_run: null,
  name: null,
  volume_source: null
)