pub struct VsanBurnInTestCheckResult {
pub passed_tests: Option<Vec<VsanBurnInTest>>,
pub not_performed_tests: Option<Vec<VsanBurnInTest>>,
pub failed_tests: Option<Vec<VsanBurnInTest>>,
}Expand description
Deprecated as of vSphere API 6.7.
Checks that verify if all recommended vSAN burn in tests have been performed and passed.
This structure may be used only with operations rendered under /vsan.
§How to access
VsanVcClusterHealthSystem::vsan_query_vc_cluster_health_summary().burn_in_test?VsanVcClusterHealthSystem::vsan_query_cluster_historical_health().burn_in_test?VsanResourceCheckSystem::vsan_get_resource_check_status().result?.health?.burn_in_test?
Fields§
§passed_tests: Option<Vec<VsanBurnInTest>>Passed burn in tests.
not_performed_tests: Option<Vec<VsanBurnInTest>>Burn in tests with issue: There are burn in tests that have not been performed.
It is recommended to perform all burn in tests.
failed_tests: Option<Vec<VsanBurnInTest>>Burn in tests with issue: There are burn in tests that have failed.
It is recommended to perform and pass all burn in tests.
Trait Implementations§
Source§impl Debug for VsanBurnInTestCheckResult
impl Debug for VsanBurnInTestCheckResult
Source§impl VimObjectTrait for VsanBurnInTestCheckResult
impl VimObjectTrait for VsanBurnInTestCheckResult
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for VsanBurnInTestCheckResult
Auto Trait Implementations§
impl Freeze for VsanBurnInTestCheckResult
impl RefUnwindSafe for VsanBurnInTestCheckResult
impl Send for VsanBurnInTestCheckResult
impl Sync for VsanBurnInTestCheckResult
impl Unpin for VsanBurnInTestCheckResult
impl UnsafeUnpin for VsanBurnInTestCheckResult
impl UnwindSafe for VsanBurnInTestCheckResult
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