pub struct AgentOvfEnvironmentInfoOvfProperty {
pub key: String,
pub value: String,
}Expand description
Deprecated as of vSphere 9.0. Please refer to vLCM APIs.
One OVF property.
This structure may be used only with operations rendered under /eam.
§How to access
Agent::config.ovf_environment?.ovf_property?[*]Agency::config.agent_config?[*].ovf_environment?.ovf_property?[*]Agent::agent_query_config().ovf_environment?.ovf_property?[*]Agency::query_config().agent_config?[*].ovf_environment?.ovf_property?[*]Agency::update(config).agent_config?[*].ovf_environment?.ovf_property?[*]EsxAgentManager::create_agency(agency_config_info).agent_config?[*].ovf_environment?.ovf_property?[*]
Fields§
§key: StringThe name of the property in the OVF descriptor.
value: StringThe value of the property.
Trait Implementations§
Source§impl VimObjectTrait for AgentOvfEnvironmentInfoOvfProperty
impl VimObjectTrait for AgentOvfEnvironmentInfoOvfProperty
fn as_vim_object_ref<'a>(&'a self) -> &'a dyn VimObjectTrait
fn data_type(&self) -> StructType
impl DataObjectTrait for AgentOvfEnvironmentInfoOvfProperty
Auto Trait Implementations§
impl Freeze for AgentOvfEnvironmentInfoOvfProperty
impl RefUnwindSafe for AgentOvfEnvironmentInfoOvfProperty
impl Send for AgentOvfEnvironmentInfoOvfProperty
impl Sync for AgentOvfEnvironmentInfoOvfProperty
impl Unpin for AgentOvfEnvironmentInfoOvfProperty
impl UnsafeUnpin for AgentOvfEnvironmentInfoOvfProperty
impl UnwindSafe for AgentOvfEnvironmentInfoOvfProperty
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