[][src]Struct gcp_client::google::cloud::asset::v1p4beta1::AnalyzeIamPolicyResponse

pub struct AnalyzeIamPolicyResponse {
    pub main_analysis: Option<IamPolicyAnalysis>,
    pub service_account_impersonation_analysis: Vec<IamPolicyAnalysis>,
    pub fully_explored: bool,
    pub non_critical_errors: Vec<AnalysisState>,
}

A response message for [AssetService.AnalyzeIamPolicy][google.cloud.asset.v1p4beta1.AssetService.AnalyzeIamPolicy].

Fields

main_analysis: Option<IamPolicyAnalysis>

The main analysis that matches the original request.

service_account_impersonation_analysis: Vec<IamPolicyAnalysis>

The service account impersonation analysis if [AnalyzeIamPolicyRequest.analyze_service_account_impersonation][] is enabled.

fully_explored: bool

Represents whether all entries in the [main_analysis][google.cloud.asset.v1p4beta1.AnalyzeIamPolicyResponse.main_analysis] and [service_account_impersonation_analysis][google.cloud.asset.v1p4beta1.AnalyzeIamPolicyResponse.service_account_impersonation_analysis] have been fully explored to answer the query in the request.

non_critical_errors: Vec<AnalysisState>

A list of non-critical errors happened during the request handling to explain why fully_explored is false, or empty if no error happened.

Trait Implementations

impl Clone for AnalyzeIamPolicyResponse[src]

impl Debug for AnalyzeIamPolicyResponse[src]

impl Default for AnalyzeIamPolicyResponse[src]

impl Message for AnalyzeIamPolicyResponse[src]

impl PartialEq<AnalyzeIamPolicyResponse> for AnalyzeIamPolicyResponse[src]

impl StructuralPartialEq for AnalyzeIamPolicyResponse[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> IntoRequest<T> for T[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<V, T> VZip<V> for T where
    V: MultiLane<T>, 

impl<T> WithSubscriber for T[src]