[][src]Struct google_appengine1_beta5::EndpointsApiService

pub struct EndpointsApiService {
    pub config_id: Option<String>,
    pub rollout_strategy: Option<String>,
    pub disable_trace_sampling: Option<bool>,
    pub name: Option<String>,
}

Cloud Endpoints (https://cloud.google.com/endpoints) configuration. The Endpoints API Service provides tooling for serving Open API and gRPC endpoints via an NGINX proxy. Only valid for App Engine Flexible environment deployments.The fields here refer to the name and configuration id of a "service" resource in the Service Management API (https://cloud.google.com/service-management/overview).

This type is not used in any activity, and only used as part of another schema.

Fields

config_id: Option<String>

Endpoints service configuration id as specified by the Service Management API. For example "2016-09-19r1"By default, the Endpoints service configuration id is fixed and config_id must be specified. To keep the Endpoints service configuration id updated with each rollout, specify RolloutStrategy.MANAGED and omit config_id.

rollout_strategy: Option<String>

Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted.

disable_trace_sampling: Option<bool>

Enable or disable trace sampling. By default, this is set to false for enabled.

name: Option<String>

Endpoints service name which is the name of the "service" resource in the Service Management API. For example "myapi.endpoints.myproject.cloud.goog"

Trait Implementations

impl Part for EndpointsApiService[src]

impl Default for EndpointsApiService[src]

impl Clone for EndpointsApiService[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for EndpointsApiService[src]

impl Serialize for EndpointsApiService[src]

impl<'de> Deserialize<'de> for EndpointsApiService[src]

Auto Trait Implementations

Blanket Implementations

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

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<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]