#[non_exhaustive]pub struct WeightedBackendService {
pub backend_service: Option<String>,
pub header_action: Option<HttpHeaderAction>,
pub weight: Option<u32>,
/* private fields */
}region-url-maps or url-maps only.Expand description
In contrast to a single BackendService in HttpRouteAction to which all matching traffic is directed to,WeightedBackendService allows traffic to be split across multiple backend services. The volume of traffic for each backend service is proportional to the weight specified in each WeightedBackendService
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.backend_service: Option<String>The full or partial URL to the default BackendService resource. Before forwarding the request to backendService, the load balancer applies any relevant headerActions specified as part of thisbackendServiceWeight.
header_action: Option<HttpHeaderAction>Specifies changes to request and response headers that need to take effect for the selected backendService.
headerAction specified here take effect beforeheaderAction in the enclosing HttpRouteRule,PathMatcher and UrlMap.
headerAction is not supported for load balancers that have their loadBalancingScheme set to EXTERNAL.
Not supported when the URL map is bound to a target gRPC proxy that has validateForProxyless field set to true.
weight: Option<u32>Specifies the fraction of traffic sent to a backend service, computed asweight / (sum of all weightedBackendService weights in routeAction).
The selection of a backend service is determined only for new traffic. Once a user’s request has been directed to a backend service, subsequent requests are sent to the same backend service as determined by the backend service’s session affinity policy. Don’t configure session affinity if you’re using weighted traffic splitting. If you do, the weighted traffic splitting configuration takes precedence.
The value must be from 0 to 1000.
Implementations§
Source§impl WeightedBackendService
impl WeightedBackendService
pub fn new() -> Self
Sourcepub fn set_backend_service<T>(self, v: T) -> Self
pub fn set_backend_service<T>(self, v: T) -> Self
Sets the value of backend_service.
§Example
let x = WeightedBackendService::new().set_backend_service("example");Sourcepub fn set_or_clear_backend_service<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_backend_service<T>(self, v: Option<T>) -> Self
Sets or clears the value of backend_service.
§Example
let x = WeightedBackendService::new().set_or_clear_backend_service(Some("example"));
let x = WeightedBackendService::new().set_or_clear_backend_service(None::<String>);Sourcepub fn set_header_action<T>(self, v: T) -> Selfwhere
T: Into<HttpHeaderAction>,
pub fn set_header_action<T>(self, v: T) -> Selfwhere
T: Into<HttpHeaderAction>,
Sets the value of header_action.
§Example
use google_cloud_compute_v1::model::HttpHeaderAction;
let x = WeightedBackendService::new().set_header_action(HttpHeaderAction::default()/* use setters */);Sourcepub fn set_or_clear_header_action<T>(self, v: Option<T>) -> Selfwhere
T: Into<HttpHeaderAction>,
pub fn set_or_clear_header_action<T>(self, v: Option<T>) -> Selfwhere
T: Into<HttpHeaderAction>,
Sets or clears the value of header_action.
§Example
use google_cloud_compute_v1::model::HttpHeaderAction;
let x = WeightedBackendService::new().set_or_clear_header_action(Some(HttpHeaderAction::default()/* use setters */));
let x = WeightedBackendService::new().set_or_clear_header_action(None::<HttpHeaderAction>);Sourcepub fn set_weight<T>(self, v: T) -> Self
pub fn set_weight<T>(self, v: T) -> Self
Trait Implementations§
Source§impl Clone for WeightedBackendService
impl Clone for WeightedBackendService
Source§fn clone(&self) -> WeightedBackendService
fn clone(&self) -> WeightedBackendService
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more