[][src]Struct google_cloudresourcemanager2::SearchFoldersRequest

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

The request message for searching folders.

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

page_token: Option<String>

A pagination token returned from a previous call to SearchFolders that indicates from where search should continue. This field is optional.

page_size: Option<i32>

The maximum number of folders to return in the response. This field is optional.

query: Option<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 RequestValue for SearchFoldersRequest[src]

impl Default for SearchFoldersRequest[src]

impl Clone for SearchFoldersRequest[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for SearchFoldersRequest[src]

impl Serialize for SearchFoldersRequest[src]

impl<'de> Deserialize<'de> for SearchFoldersRequest[src]

Auto Trait Implementations

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]