pub struct AutomationAccountUpdateParameters {
pub properties: Option<AutomationAccountUpdateProperties>,
pub name: Option<String>,
pub location: Option<String>,
pub identity: Option<Identity>,
pub tags: Option<Value>,
}Expand description
The parameters supplied to the update automation account operation.
Fields§
§properties: Option<AutomationAccountUpdateProperties>The parameters supplied to the update account properties.
name: Option<String>Gets or sets the name of the resource.
location: Option<String>Gets or sets the location of the resource.
identity: Option<Identity>Identity for the resource.
Gets or sets the tags attached to the resource.
Implementations§
Trait Implementations§
Source§impl Clone for AutomationAccountUpdateParameters
impl Clone for AutomationAccountUpdateParameters
Source§fn clone(&self) -> AutomationAccountUpdateParameters
fn clone(&self) -> AutomationAccountUpdateParameters
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for AutomationAccountUpdateParameters
impl Default for AutomationAccountUpdateParameters
Source§fn default() -> AutomationAccountUpdateParameters
fn default() -> AutomationAccountUpdateParameters
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutomationAccountUpdateParameters
impl<'de> Deserialize<'de> for AutomationAccountUpdateParameters
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 PartialEq for AutomationAccountUpdateParameters
impl PartialEq for AutomationAccountUpdateParameters
Source§fn eq(&self, other: &AutomationAccountUpdateParameters) -> bool
fn eq(&self, other: &AutomationAccountUpdateParameters) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for AutomationAccountUpdateParameters
Auto Trait Implementations§
impl Freeze for AutomationAccountUpdateParameters
impl RefUnwindSafe for AutomationAccountUpdateParameters
impl Send for AutomationAccountUpdateParameters
impl Sync for AutomationAccountUpdateParameters
impl Unpin for AutomationAccountUpdateParameters
impl UnwindSafe for AutomationAccountUpdateParameters
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