Struct google_appengine1_beta4::api::EndpointsApiService [−][src]
pub struct EndpointsApiService {
pub config_id: Option<String>,
pub disable_trace_sampling: Option<bool>,
pub name: Option<String>,
pub rollout_strategy: Option<String>,
}Expand description
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.
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”
rollout_strategy: Option<String>Endpoints rollout strategy. If FIXED, config_id must be specified. If MANAGED, config_id must be omitted.
Trait Implementations
Returns the “default value” for a type. Read more
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations
impl RefUnwindSafe for EndpointsApiService
impl Send for EndpointsApiService
impl Sync for EndpointsApiService
impl Unpin for EndpointsApiService
impl UnwindSafe for EndpointsApiService
Blanket Implementations
Mutably borrows from an owned value. Read more
Instruments this type with the provided Span, returning an
Instrumented wrapper. Read more