pub struct Identity {
pub principal_id: Option<String>,
pub tenant_id: Option<String>,
pub type_: Option<Type>,
pub user_assigned_identities: Option<Value>,
}Expand description
Identity for the resource.
Fields§
§principal_id: Option<String>The principal ID of resource identity.
tenant_id: Option<String>The tenant ID of resource.
type_: Option<Type>The identity type.
user_assigned_identities: Option<Value>The list of user identities associated with the resource.
Implementations§
Trait Implementations§
Source§impl<'de> Deserialize<'de> for Identity
impl<'de> Deserialize<'de> for Identity
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
impl StructuralPartialEq for Identity
Auto Trait Implementations§
impl Freeze for Identity
impl RefUnwindSafe for Identity
impl Send for Identity
impl Sync for Identity
impl Unpin for Identity
impl UnwindSafe for Identity
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