pub struct AnalyzeIamPolicyResponse {
pub fully_explored: Option<bool>,
pub main_analysis: Option<IamPolicyAnalysis>,
pub service_account_impersonation_analysis: Option<Vec<IamPolicyAnalysis>>,
}Expand description
A response message for AssetService.AnalyzeIamPolicy.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- analyze iam policy (response)
Fields§
§fully_explored: Option<bool>Represents whether all entries in the main_analysis and service_account_impersonation_analysis have been fully explored to answer the query in the request.
main_analysis: Option<IamPolicyAnalysis>The main analysis that matches the original request.
service_account_impersonation_analysis: Option<Vec<IamPolicyAnalysis>>The service account impersonation analysis if IamPolicyAnalysisQuery.Options.analyze_service_account_impersonation is enabled.
Trait Implementations§
Source§impl Clone for AnalyzeIamPolicyResponse
impl Clone for AnalyzeIamPolicyResponse
Source§fn clone(&self) -> AnalyzeIamPolicyResponse
fn clone(&self) -> AnalyzeIamPolicyResponse
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 AnalyzeIamPolicyResponse
impl Debug for AnalyzeIamPolicyResponse
Source§impl Default for AnalyzeIamPolicyResponse
impl Default for AnalyzeIamPolicyResponse
Source§fn default() -> AnalyzeIamPolicyResponse
fn default() -> AnalyzeIamPolicyResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for AnalyzeIamPolicyResponse
impl<'de> Deserialize<'de> for AnalyzeIamPolicyResponse
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 AnalyzeIamPolicyResponse
impl Serialize for AnalyzeIamPolicyResponse
impl ResponseResult for AnalyzeIamPolicyResponse
Auto Trait Implementations§
impl Freeze for AnalyzeIamPolicyResponse
impl RefUnwindSafe for AnalyzeIamPolicyResponse
impl Send for AnalyzeIamPolicyResponse
impl Sync for AnalyzeIamPolicyResponse
impl Unpin for AnalyzeIamPolicyResponse
impl UnwindSafe for AnalyzeIamPolicyResponse
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