pub struct HostVFlashManagerVFlashResourceRunTimeInfo {
pub usage: i64,
pub capacity: i64,
pub accessible: bool,
pub capacity_for_vm_cache: i64,
pub free_for_vm_cache: i64,
}Expand description
Data object provides vFlash resource runtime usage.
§How to access
HostSystem::runtime.v_flash_resource_runtime_info?HostSystem::summary.runtime?.v_flash_resource_runtime_info?HostSystem::query_host_connection_info().host.runtime?.v_flash_resource_runtime_info?Datacenter::query_connection_info().host.runtime?.v_flash_resource_runtime_info?Datacenter::query_connection_info_via_spec().host.runtime?.v_flash_resource_runtime_info?
Fields§
§usage: i64Overall usage of vFlash resource, in bytes.
capacity: i64Overall capacity of vFlash resource, in bytes.
accessible: boolTrue if all the included the VFFS volumes are accessible.
False if one or multiple included VFFS volumes are inaccessible.
capacity_for_vm_cache: i64vFlash resource capacity can be allocated for VM caches
free_for_vm_cache: i64Free vFlash resource can be allocated for VM caches
Trait Implementations§
Source§impl VimObjectTrait for HostVFlashManagerVFlashResourceRunTimeInfo
impl VimObjectTrait for HostVFlashManagerVFlashResourceRunTimeInfo
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for HostVFlashManagerVFlashResourceRunTimeInfo
Auto Trait Implementations§
impl Freeze for HostVFlashManagerVFlashResourceRunTimeInfo
impl RefUnwindSafe for HostVFlashManagerVFlashResourceRunTimeInfo
impl Send for HostVFlashManagerVFlashResourceRunTimeInfo
impl Sync for HostVFlashManagerVFlashResourceRunTimeInfo
impl Unpin for HostVFlashManagerVFlashResourceRunTimeInfo
impl UnsafeUnpin for HostVFlashManagerVFlashResourceRunTimeInfo
impl UnwindSafe for HostVFlashManagerVFlashResourceRunTimeInfo
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more