pub struct GenerateSSHIdentityKeyPair {
pub target: Option<String>,
pub title: Option<String>,
}
Expand description
This action generates a new SSH identity key-pair to be used with this aggregation source. The generated public key is stored in the Key resource referenced by the PublicIdentityKey property in SSHSettings. Any existing key-pair is deleted and replace by the new key-pair.
Fields§
§target: Option<String>
Link to invoke action
title: Option<String>
Friendly action name
Trait Implementations§
Source§impl Clone for GenerateSSHIdentityKeyPair
impl Clone for GenerateSSHIdentityKeyPair
Source§fn clone(&self) -> GenerateSSHIdentityKeyPair
fn clone(&self) -> GenerateSSHIdentityKeyPair
Returns a duplicate of the value. Read more
1.0.0 · Source§const fn clone_from(&mut self, source: &Self)
const fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source
. Read moreSource§impl Debug for GenerateSSHIdentityKeyPair
impl Debug for GenerateSSHIdentityKeyPair
Source§impl Default for GenerateSSHIdentityKeyPair
impl Default for GenerateSSHIdentityKeyPair
Source§impl<'de> Deserialize<'de> for GenerateSSHIdentityKeyPair
impl<'de> Deserialize<'de> for GenerateSSHIdentityKeyPair
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Source§impl Metadata<'static> for GenerateSSHIdentityKeyPair
impl Metadata<'static> for GenerateSSHIdentityKeyPair
Source§const JSON_SCHEMA: &'static str = "AggregationSource.v1_3_1.json"
const JSON_SCHEMA: &'static str = "AggregationSource.v1_3_1.json"
Name of the json-schema file that describes the entity that implements this trait. Should
be only the file name, so that it can be resolved relative to the URL of the redfish
service, or the public Redfish schema index.
Auto Trait Implementations§
impl Freeze for GenerateSSHIdentityKeyPair
impl RefUnwindSafe for GenerateSSHIdentityKeyPair
impl Send for GenerateSSHIdentityKeyPair
impl Sync for GenerateSSHIdentityKeyPair
impl Unpin for GenerateSSHIdentityKeyPair
impl UnwindSafe for GenerateSSHIdentityKeyPair
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