Struct google_iam1::LintPolicyResponse[][src]

pub struct LintPolicyResponse {
    pub lint_results: Option<Vec<LintResult>>,
}

The response of a lint operation. An empty response indicates the operation was able to fully execute and no lint issue was found.

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).

Fields

List of lint results sorted by a composite <severity, binding_ordinal> key, descending order of severity and ascending order of binding_ordinal. There is no certain order among the same keys.

For cross-binding results (only if the input object to lint is instance of google.iam.v1.Policy), there will be a google.iam.admin.v1.LintResult for each of the involved bindings, and the associated debug_message may enumerate the other involved binding ordinal number(s).

Trait Implementations

impl Default for LintPolicyResponse
[src]

Returns the "default value" for a type. Read more

impl Clone for LintPolicyResponse
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for LintPolicyResponse
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for LintPolicyResponse
[src]

Auto Trait Implementations