Documentation ¶
Index ¶
Constants ¶
View Source
const ( // DatasourceReady indicates that the datasource is ready for use, allowing the import process to start. DatasourceReady DatasourceReadyReason = "DatasourceReady" // ContainerRegistrySecretNotFound indicates that the container registry secret was not found, which prevents the import process from starting. ContainerRegistrySecretNotFound DatasourceReadyReason = "ContainerRegistrySecretNotFound" // ImageNotReady indicates that the `VirtualImage` datasource is not ready yet, which prevents the import process from starting. ImageNotReady DatasourceReadyReason = "ImageNotReady" // ClusterImageNotReady indicates that the `ClusterVirtualImage` datasource is not ready, which prevents the import process from starting. ClusterImageNotReady DatasourceReadyReason = "ClusterImageNotReady" // VirtualDiskNotReady indicates that the `VirtualDisk` datasource is not ready, which prevents the import process from starting. VirtualDiskNotReady DatasourceReadyReason = "VirtualDiskNotReady" // VirtualDiskInUseInRunningVirtualMachine indicates that the `VirtualDisk` attached to running `VirtualMachine` VirtualDiskInUseInRunningVirtualMachine DatasourceReadyReason = "VirtualDiskInUseInRunningVirtualMachine" // WaitForUserUpload indicates that the `ClusterVirtualImage` is waiting for the user to upload a datasource for the import process to continue. WaitForUserUpload ReadyReason = "WaitForUserUpload" // Provisioning indicates that the provisioning process is currently in progress. Provisioning ReadyReason = "Provisioning" // ProvisioningNotStarted indicates that the provisioning process has not started yet. ProvisioningNotStarted ReadyReason = "ProvisioningNotStarted" // ProvisioningFailed indicates that the provisioning process has failed. ProvisioningFailed ReadyReason = "ProvisioningFailed" // Ready indicates that the import process is complete and the `ClusterVirtualImage` is ready for use. Ready ReadyReason = "Ready" )
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DatasourceReadyReason ¶
type DatasourceReadyReason string
DatasourceReadyReason represents the various reasons for the DatasourceReady condition type.
func (DatasourceReadyReason) String ¶
func (s DatasourceReadyReason) String() string
type ReadyReason ¶
type ReadyReason string
ReadyReason represents the various reasons for the Ready condition type.
func (ReadyReason) String ¶
func (s ReadyReason) String() string
type Type ¶
type Type string
Type represents the various condition types for the `ClusterVirtualImage`.
const ( // DatasourceReadyType indicates whether the datasource (for example, a `VirtualImage`) is ready, allowing the import process for the `ClusterVirtualImage` to start. DatasourceReadyType Type = "DatasourceReady" // ReadyType indicates whether the import process succeeded and the `ClusterVirtualImage` is ready for use. ReadyType Type = "Ready" )
Click to show internal directories.
Click to hide internal directories.