Struct gapi_grpc::google::cloud::asset::v1::SearchAllIamPoliciesRequest[][src]

pub struct SearchAllIamPoliciesRequest {
    pub scope: String,
    pub query: String,
    pub page_size: i32,
    pub page_token: String,
}

Search all IAM policies request.

Fields

scope: String

Required. A scope can be a project, a folder, or an organization. The search is limited to the IAM policies within the scope. The caller must be granted the cloudasset.assets.searchAllIamPolicies permission on the desired scope.

The allowed values are:

query: String

Optional. The query statement. See how to construct a query for more information. If not specified or empty, it will search all the IAM policies within the specified scope. Note that the query string is compared against each Cloud IAM policy binding, including its members, roles, and Cloud IAM conditions. The returned Cloud IAM policies will only contain the bindings that match your query. To learn more about the IAM policy structure, see IAM policy doc.

Examples:

page_size: i32

Optional. The page size for search result pagination. Page size is capped at 500 even if a larger value is given. If set to zero, server will pick an appropriate default. Returned results may be fewer than requested. When this happens, there could be more results as long as next_page_token is returned.

page_token: String

Optional. If present, retrieve the next batch of results from the preceding call to this method. page_token must be the value of next_page_token from the previous response. The values of all other method parameters must be identical to those in the previous call.

Trait Implementations

impl Clone for SearchAllIamPoliciesRequest[src]

impl Debug for SearchAllIamPoliciesRequest[src]

impl Default for SearchAllIamPoliciesRequest[src]

impl Message for SearchAllIamPoliciesRequest[src]

impl PartialEq<SearchAllIamPoliciesRequest> for SearchAllIamPoliciesRequest[src]

impl StructuralPartialEq for SearchAllIamPoliciesRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for SearchAllIamPoliciesRequest

impl Send for SearchAllIamPoliciesRequest

impl Sync for SearchAllIamPoliciesRequest

impl Unpin for SearchAllIamPoliciesRequest

impl UnwindSafe for SearchAllIamPoliciesRequest

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> 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>, 
[src]

impl<T> WithSubscriber for T[src]