Struct gapi_grpc::google::api::serviceusage::v1::BatchEnableServicesRequest[][src]

pub struct BatchEnableServicesRequest {
    pub parent: String,
    pub service_ids: Vec<String>,
}

Request message for the BatchEnableServices method.

Fields

parent: String

Parent to enable services on.

An example name would be: projects/123 where 123 is the project number.

The BatchEnableServices method currently only supports projects.

service_ids: Vec<String>

The identifiers of the services to enable on the project.

A valid identifier would be: serviceusage.googleapis.com

Enabling services requires that each service is public or is shared with the user enabling the service.

A single request can enable a maximum of 20 services at a time. If more than 20 services are specified, the request will fail, and no state changes will occur.

Trait Implementations

impl Clone for BatchEnableServicesRequest[src]

impl Debug for BatchEnableServicesRequest[src]

impl Default for BatchEnableServicesRequest[src]

impl Message for BatchEnableServicesRequest[src]

impl PartialEq<BatchEnableServicesRequest> for BatchEnableServicesRequest[src]

impl StructuralPartialEq for BatchEnableServicesRequest[src]

Auto Trait Implementations

impl RefUnwindSafe for BatchEnableServicesRequest

impl Send for BatchEnableServicesRequest

impl Sync for BatchEnableServicesRequest

impl Unpin for BatchEnableServicesRequest

impl UnwindSafe for BatchEnableServicesRequest

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]