#[non_exhaustive]pub struct EndpointsApiService {
pub name: String,
pub config_id: String,
pub rollout_strategy: RolloutStrategy,
pub disable_trace_sampling: bool,
/* private fields */
}
Expand description
Cloud 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.
Fields (Non-exhaustive)§
This struct is marked as non-exhaustive
Struct { .. }
syntax; cannot be matched against without a wildcard ..
; and struct update syntax will not work.name: String
Endpoints service name which is the name of the “service” resource in the Service Management API. For example “myapi.endpoints.myproject.cloud.goog”
config_id: String
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.
rollout_strategy: RolloutStrategy
Endpoints rollout strategy. If FIXED
, config_id
must be specified. If
MANAGED
, config_id
must be omitted.
disable_trace_sampling: bool
Enable or disable trace sampling. By default, this is set to false for enabled.
Implementations§
Source§impl EndpointsApiService
impl EndpointsApiService
pub fn new() -> Self
Sourcepub fn set_config_id<T: Into<String>>(self, v: T) -> Self
pub fn set_config_id<T: Into<String>>(self, v: T) -> Self
Sets the value of config_id.
Sourcepub fn set_rollout_strategy<T: Into<RolloutStrategy>>(self, v: T) -> Self
pub fn set_rollout_strategy<T: Into<RolloutStrategy>>(self, v: T) -> Self
Sets the value of rollout_strategy.
Sourcepub fn set_disable_trace_sampling<T: Into<bool>>(self, v: T) -> Self
pub fn set_disable_trace_sampling<T: Into<bool>>(self, v: T) -> Self
Sets the value of disable_trace_sampling.
Trait Implementations§
Source§impl Clone for EndpointsApiService
impl Clone for EndpointsApiService
Source§fn clone(&self) -> EndpointsApiService
fn clone(&self) -> EndpointsApiService
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read more