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

pub struct ListProjectsRequest {
    pub parent: String,
    pub page_token: String,
    pub page_size: i32,
    pub show_deleted: bool,
}
[]

The request sent to the [ListProjects][google.cloud.resourcemanager.v3.Projects.ListProjects] method.

Fields

parent: String
[]

Required. The name of the parent resource to list projects under.

For example, setting this field to ‘folders/1234’ would list all projects directly under that folder.

page_token: String
[]

Optional. A pagination token returned from a previous call to [ListProjects] [google.cloud.resourcemanager.v3.Projects.ListProjects] that indicates from where listing should continue.

page_size: i32
[]

Optional. The maximum number of projects to return in the response. The server can return fewer projects than requested. If unspecified, server picks an appropriate default.

show_deleted: bool
[]

Optional. Indicate that projects in the DELETE_REQUESTED state should also be returned. Normally only ACTIVE projects are returned.

Trait Implementations

impl Clone for ListProjectsRequest[src][+]

impl Debug for ListProjectsRequest[src][+]

impl Default for ListProjectsRequest[src][+]

impl Message for ListProjectsRequest[src][+]

impl PartialEq<ListProjectsRequest> for ListProjectsRequest[src][+]

impl StructuralPartialEq for ListProjectsRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListProjectsRequest

impl Send for ListProjectsRequest

impl Sync for ListProjectsRequest

impl Unpin for ListProjectsRequest

impl UnwindSafe for ListProjectsRequest

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][+]