Struct google_appengine1::EndpointsApiService[][src]

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

Endpoints service configuration ID as specified by the Service Management API. For example "2016-09-19r1".By default, the rollout strategy for Endpoints is RolloutStrategy.FIXED. This means that Endpoints starts up with a particular configuration ID. When a new configuration is rolled out, Endpoints must be given the new configuration ID. The config_id field is used to give the configuration ID and is required in this case.Endpoints also has a rollout strategy called RolloutStrategy.MANAGED. When using this, Endpoints fetches the latest configuration and does not need the configuration ID. In this case, config_id must be omitted.

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

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

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 Default for EndpointsApiService
[src]

Returns the "default value" for a type. Read more

impl Clone for EndpointsApiService
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for EndpointsApiService
[src]

Formats the value using the given formatter. Read more

impl Part for EndpointsApiService
[src]

Auto Trait Implementations