[][src]Struct gcp_client::google::cloud::bigquery::reservation::v1::CreateReservationRequest

pub struct CreateReservationRequest {
    pub parent: String,
    pub reservation_id: String,
    pub reservation: Option<Reservation>,
}

The request for [ReservationService.CreateReservation][google.cloud.bigquery.reservation.v1.ReservationService.CreateReservation].

Fields

parent: String

Required. Project, location. E.g., projects/myproject/locations/US

reservation_id: String

The reservation ID. This field must only contain lower case alphanumeric characters or dash. Max length is 64 characters.

reservation: Option<Reservation>

Definition of the new reservation to create.

Trait Implementations

impl Clone for CreateReservationRequest[src]

impl Debug for CreateReservationRequest[src]

impl Default for CreateReservationRequest[src]

impl Message for CreateReservationRequest[src]

impl PartialEq<CreateReservationRequest> for CreateReservationRequest[src]

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