pub struct AutomationAccount {
pub tracked_resource: TrackedResource,
pub properties: Option<AutomationAccountProperties>,
pub etag: Option<String>,
pub identity: Option<Identity>,
pub system_data: Option<SystemData>,
}Expand description
Definition of the automation account type.
Fields§
§tracked_resource: TrackedResource§properties: Option<AutomationAccountProperties>Definition of the account property.
etag: Option<String>Gets or sets the etag of the resource.
identity: Option<Identity>Identity for the resource.
system_data: Option<SystemData>Metadata pertaining to creation and last modification of the resource.
Implementations§
Trait Implementations§
Source§impl Clone for AutomationAccount
impl Clone for AutomationAccount
Source§fn clone(&self) -> AutomationAccount
fn clone(&self) -> AutomationAccount
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 Debug for AutomationAccount
impl Debug for AutomationAccount
Source§impl Default for AutomationAccount
impl Default for AutomationAccount
Source§fn default() -> AutomationAccount
fn default() -> AutomationAccount
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AutomationAccount
impl<'de> Deserialize<'de> for AutomationAccount
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 AutomationAccount
impl PartialEq for AutomationAccount
Source§impl Serialize for AutomationAccount
impl Serialize for AutomationAccount
impl StructuralPartialEq for AutomationAccount
Auto Trait Implementations§
impl Freeze for AutomationAccount
impl RefUnwindSafe for AutomationAccount
impl Send for AutomationAccount
impl Sync for AutomationAccount
impl Unpin for AutomationAccount
impl UnwindSafe for AutomationAccount
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