Struct gapi_grpc::google::cloud::resourcemanager::v3::ListFoldersRequest[][src]

pub struct ListFoldersRequest {
    pub parent: String,
    pub page_size: i32,
    pub page_token: String,
    pub show_deleted: bool,
}

The ListFolders request message.

Fields

parent: String

Required. The resource name of the organization or folder whose folders are being listed. Must be of the form folders/{folder_id} or organizations/{org_id}. Access to this method is controlled by checking the resourcemanager.folders.list permission on the parent.

page_size: i32

Optional. The maximum number of folders to return in the response. If unspecified, server picks an appropriate default.

page_token: String

Optional. A pagination token returned from a previous call to ListFolders that indicates where this listing should continue from.

show_deleted: bool

Optional. Controls whether folders in the [DELETE_REQUESTED][google.cloud.resourcemanager.v3.Folder.State.DELETE_REQUESTED] state should be returned. Defaults to false.

Trait Implementations

impl Clone for ListFoldersRequest[src]

impl Debug for ListFoldersRequest[src]

impl Default for ListFoldersRequest[src]

impl Message for ListFoldersRequest[src]

impl PartialEq<ListFoldersRequest> for ListFoldersRequest[src]

impl StructuralPartialEq for ListFoldersRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListFoldersRequest

impl Send for ListFoldersRequest

impl Sync for ListFoldersRequest

impl Unpin for ListFoldersRequest

impl UnwindSafe for ListFoldersRequest

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]