pub struct ServiceAccountDelegationInfo {
pub principal_email: Option<String>,
pub principal_subject: Option<String>,
}Expand description
Identity delegation history of an authenticated service account.
This type is not used in any activity, and only used as part of another schema.
Fields§
§principal_email: Option<String>The email address of a Google account.
principal_subject: Option<String>A string representing the principal_subject associated with the identity. As compared to principal_email, supports principals that aren’t associated with email addresses, such as third party principals. For most identities, the format will be principal://iam.googleapis.com/{identity pool name}/subjects/{subject} except for some GKE identities (GKE_WORKLOAD, FREEFORM, GKE_HUB_WORKLOAD) that are still in the legacy format serviceAccount:{identity pool name}[{subject}]
Trait Implementations§
Source§impl Clone for ServiceAccountDelegationInfo
impl Clone for ServiceAccountDelegationInfo
Source§fn clone(&self) -> ServiceAccountDelegationInfo
fn clone(&self) -> ServiceAccountDelegationInfo
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 ServiceAccountDelegationInfo
impl Debug for ServiceAccountDelegationInfo
Source§impl Default for ServiceAccountDelegationInfo
impl Default for ServiceAccountDelegationInfo
Source§fn default() -> ServiceAccountDelegationInfo
fn default() -> ServiceAccountDelegationInfo
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ServiceAccountDelegationInfo
impl<'de> Deserialize<'de> for ServiceAccountDelegationInfo
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 Part for ServiceAccountDelegationInfo
Auto Trait Implementations§
impl Freeze for ServiceAccountDelegationInfo
impl RefUnwindSafe for ServiceAccountDelegationInfo
impl Send for ServiceAccountDelegationInfo
impl Sync for ServiceAccountDelegationInfo
impl Unpin for ServiceAccountDelegationInfo
impl UnsafeUnpin for ServiceAccountDelegationInfo
impl UnwindSafe for ServiceAccountDelegationInfo
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