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

pub struct CreateConfigRequest {
    pub parent: String,
    pub config: Option<RuntimeConfig>,
    pub request_id: String,
}

Creates a RuntimeConfig resource.

Fields

parent: String

The project ID for this request, in the format projects/[PROJECT_ID].

config: Option<RuntimeConfig>

The RuntimeConfig 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 CreateConfigRequest[src]

impl Debug for CreateConfigRequest[src]

impl Default for CreateConfigRequest[src]

impl Message for CreateConfigRequest[src]

impl PartialEq<CreateConfigRequest> for CreateConfigRequest[src]

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