Struct gapi_grpc::google::container::v1beta1::ListUsableSubnetworksRequest[][src]

pub struct ListUsableSubnetworksRequest {
    pub parent: String,
    pub filter: String,
    pub page_size: i32,
    pub page_token: String,
}

ListUsableSubnetworksRequest requests the list of usable subnetworks. available to a user for creating clusters.

Fields

parent: String

Required. The parent project where subnetworks are usable. Specified in the format projects/*.

filter: String

Filtering currently only supports equality on the networkProjectId and must be in the form: “networkProjectId=[PROJECTID]”, where networkProjectId is the project which owns the listed subnetworks. This defaults to the parent project ID.

page_size: i32

The max number of results per page that should be returned. If the number of available results is larger than page_size, a next_page_token is returned which can be used to get the next page of results in subsequent requests. Acceptable values are 0 to 500, inclusive. (Default: 500)

page_token: String

Specifies a page token to use. Set this to the nextPageToken returned by previous list requests to get the next page of results.

Trait Implementations

impl Clone for ListUsableSubnetworksRequest[src]

impl Debug for ListUsableSubnetworksRequest[src]

impl Default for ListUsableSubnetworksRequest[src]

impl Message for ListUsableSubnetworksRequest[src]

impl PartialEq<ListUsableSubnetworksRequest> for ListUsableSubnetworksRequest[src]

impl StructuralPartialEq for ListUsableSubnetworksRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for ListUsableSubnetworksRequest

impl Send for ListUsableSubnetworksRequest

impl Sync for ListUsableSubnetworksRequest

impl Unpin for ListUsableSubnetworksRequest

impl UnwindSafe for ListUsableSubnetworksRequest

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]