pub struct IamPolicyAnalysisResult {
pub access_control_lists: Option<Vec<GoogleCloudAssetV1AccessControlList>>,
pub attached_resource_full_name: Option<String>,
pub fully_explored: Option<bool>,
pub iam_binding: Option<Binding>,
pub identity_list: Option<GoogleCloudAssetV1IdentityList>,
}Expand description
IAM Policy analysis result, consisting of one IAM policy binding and derived access control lists.
This type is not used in any activity, and only used as part of another schema.
Fields§
§access_control_lists: Option<Vec<GoogleCloudAssetV1AccessControlList>>The access control lists derived from the iam_binding that match or potentially match resource and access selectors specified in the request.
attached_resource_full_name: Option<String>The full resource name of the resource to which the iam_binding policy attaches.
fully_explored: Option<bool>Represents whether all analyses on the iam_binding have successfully finished.
iam_binding: Option<Binding>The IAM policy binding under analysis.
identity_list: Option<GoogleCloudAssetV1IdentityList>The identity list derived from members of the iam_binding that match or potentially match identity selector specified in the request.
Trait Implementations§
Source§impl Clone for IamPolicyAnalysisResult
impl Clone for IamPolicyAnalysisResult
Source§fn clone(&self) -> IamPolicyAnalysisResult
fn clone(&self) -> IamPolicyAnalysisResult
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 IamPolicyAnalysisResult
impl Debug for IamPolicyAnalysisResult
Source§impl Default for IamPolicyAnalysisResult
impl Default for IamPolicyAnalysisResult
Source§fn default() -> IamPolicyAnalysisResult
fn default() -> IamPolicyAnalysisResult
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IamPolicyAnalysisResult
impl<'de> Deserialize<'de> for IamPolicyAnalysisResult
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 Serialize for IamPolicyAnalysisResult
impl Serialize for IamPolicyAnalysisResult
impl Part for IamPolicyAnalysisResult
Auto Trait Implementations§
impl Freeze for IamPolicyAnalysisResult
impl RefUnwindSafe for IamPolicyAnalysisResult
impl Send for IamPolicyAnalysisResult
impl Sync for IamPolicyAnalysisResult
impl Unpin for IamPolicyAnalysisResult
impl UnwindSafe for IamPolicyAnalysisResult
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