[][src]Struct gcp_client::google::cloud::resourcemanager::v2::SearchFoldersRequest

pub struct SearchFoldersRequest {
    pub page_size: i32,
    pub page_token: String,
    pub query: String,
}

The request message for searching folders.

Fields

page_size: i32

Optional. The maximum number of folders to return in the response.

page_token: String

Optional. A pagination token returned from a previous call to SearchFolders that indicates from where search should continue.

query: String

Search criteria used to select the Folders to return. If no search criteria is specified then all accessible folders will be returned.

Query expressions can be used to restrict results based upon displayName, lifecycleState and parent, where the operators =, NOT, AND and OR can be used along with the suffix wildcard symbol *.

The displayName field in a query expression should use escaped quotes for values that include whitespace to prevent unexpected behavior.

Some example queries are:

  • Query displayName=Test* returns Folder resources whose display name starts with "Test".
  • Query lifecycleState=ACTIVE returns Folder resources with lifecycleState set to ACTIVE.
  • Query parent=folders/123 returns Folder resources that have folders/123 as a parent resource.
  • Query parent=folders/123 AND lifecycleState=ACTIVE returns active Folder resources that have folders/123 as a parent resource.
  • Query displayName=\\"Test String\\" returns Folder resources with display names that include both "Test" and "String".

Trait Implementations

impl Clone for SearchFoldersRequest[src]

impl Debug for SearchFoldersRequest[src]

impl Default for SearchFoldersRequest[src]

impl Message for SearchFoldersRequest[src]

impl PartialEq<SearchFoldersRequest> for SearchFoldersRequest[src]

impl StructuralPartialEq for SearchFoldersRequest[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]