pub struct AgentVibMatchingRule {
pub vib_name_regex: String,
pub vib_version_regex: String,
}Expand description
Deprecated vIB matching rules are no longer supported by EAM. Same overlaps with VIB dependency requirements which reside in each VIB’s metadata.
Specifies regular expressions for Vib name and version.
This structure may be used only with operations rendered under /eam.
§How to access
Agent::config.vib_matching_rules?[*]Agency::config.agent_config?[*].vib_matching_rules?[*]Agent::agent_query_config().vib_matching_rules?[*]Agency::query_config().agent_config?[*].vib_matching_rules?[*]Agency::update(config).agent_config?[*].vib_matching_rules?[*]EsxAgentManager::create_agency(agency_config_info).agent_config?[*].vib_matching_rules?[*]
Fields§
§vib_name_regex: StringVib name regular expression.
vib_version_regex: StringVib version regular expression.
Trait Implementations§
Source§impl Debug for AgentVibMatchingRule
impl Debug for AgentVibMatchingRule
Source§impl Deserialize for AgentVibMatchingRule
impl Deserialize for AgentVibMatchingRule
Source§impl VimObjectTrait for AgentVibMatchingRule
impl VimObjectTrait for AgentVibMatchingRule
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for AgentVibMatchingRule
Auto Trait Implementations§
impl Freeze for AgentVibMatchingRule
impl RefUnwindSafe for AgentVibMatchingRule
impl Send for AgentVibMatchingRule
impl Sync for AgentVibMatchingRule
impl Unpin for AgentVibMatchingRule
impl UnsafeUnpin for AgentVibMatchingRule
impl UnwindSafe for AgentVibMatchingRule
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