[][src]Struct gcp_client::google::cloud::runtimeconfig::v1beta1::CreateWaiterRequest

pub struct CreateWaiterRequest {
    pub parent: String,
    pub waiter: Option<Waiter>,
    pub request_id: String,
}

Request message for CreateWaiter() method.

Fields

parent: String

The path to the configuration that will own the waiter. The configuration must exist beforehand; the path must by in the format:

projects/[PROJECT_ID]/configs/[CONFIG_NAME].

waiter: Option<Waiter>

The Waiter resource to create.

request_id: String

An optional but recommended unique request_id. If the server receives two create() requests with the same request_id, then the second request will be ignored and the first resource created and stored in the backend is returned. Empty request_id fields are ignored.

It is responsibility of the client to ensure uniqueness of the request_id strings.

request_id strings are limited to 64 characters.

Trait Implementations

impl Clone for CreateWaiterRequest[src]

impl Debug for CreateWaiterRequest[src]

impl Default for CreateWaiterRequest[src]

impl Message for CreateWaiterRequest[src]

impl PartialEq<CreateWaiterRequest> for CreateWaiterRequest[src]

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