Struct google_api_proto::google::cloud::compute::v1::TargetPool
source · pub struct TargetPool {Show 13 fields
pub backup_pool: Option<String>,
pub creation_timestamp: Option<String>,
pub description: Option<String>,
pub failover_ratio: Option<f32>,
pub health_checks: Vec<String>,
pub id: Option<u64>,
pub instances: Vec<String>,
pub kind: Option<String>,
pub name: Option<String>,
pub region: Option<String>,
pub security_policy: Option<String>,
pub self_link: Option<String>,
pub session_affinity: Option<String>,
}
Expand description
Represents a Target Pool resource. Target pools are used with external passthrough Network Load Balancers. A target pool references member instances, an associated legacy HttpHealthCheck resource, and, optionally, a backup target pool. For more information, read Using target pools.
Fields§
§backup_pool: Option<String>
The server-defined URL for the resource. This field is applicable only when the containing target pool is serving a forwarding rule as the primary pool, and its failoverRatio field is properly set to a value between [0, 1]. backupPool and failoverRatio together define the fallback behavior of the primary target pool: if the ratio of the healthy instances in the primary pool is at or below failoverRatio, traffic arriving at the load-balanced IP will be directed to the backup pool. In case where failoverRatio and backupPool are not set, or all the instances in the backup pool are unhealthy, the traffic will be directed back to the primary pool in the “force” mode, where traffic will be spread to the healthy instances with the best effort, or to all instances when no instance is healthy.
creation_timestamp: Option<String>
[Output Only] Creation timestamp in RFC3339 text format.
description: Option<String>
An optional description of this resource. Provide this property when you create the resource.
failover_ratio: Option<f32>
This field is applicable only when the containing target pool is serving a forwarding rule as the primary pool (i.e., not as a backup pool to some other target pool). The value of the field must be in [0, 1]. If set, backupPool must also be set. They together define the fallback behavior of the primary target pool: if the ratio of the healthy instances in the primary pool is at or below this number, traffic arriving at the load-balanced IP will be directed to the backup pool. In case where failoverRatio is not set or all the instances in the backup pool are unhealthy, the traffic will be directed back to the primary pool in the “force” mode, where traffic will be spread to the healthy instances with the best effort, or to all instances when no instance is healthy.
health_checks: Vec<String>
The URL of the HttpHealthCheck resource. A member instance in this pool is considered healthy if and only if the health checks pass. Only legacy HttpHealthChecks are supported. Only one health check may be specified.
id: Option<u64>
[Output Only] The unique identifier for the resource. This identifier is defined by the server.
instances: Vec<String>
A list of resource URLs to the virtual machine instances serving this pool. They must live in zones contained in the same region as this pool.
kind: Option<String>
[Output Only] Type of the resource. Always compute#targetPool for target pools.
name: Option<String>
Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z](\[-a-z0-9\]*[a-z0-9])?
which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
region: Option<String>
[Output Only] URL of the region where the target pool resides.
security_policy: Option<String>
[Output Only] The resource URL for the security policy associated with this target pool.
self_link: Option<String>
[Output Only] Server-defined URL for the resource.
session_affinity: Option<String>
Session affinity option, must be one of the following values: NONE: Connections from the same client IP may go to any instance in the pool. CLIENT_IP: Connections from the same client IP will go to the same instance in the pool while that instance remains healthy. CLIENT_IP_PROTO: Connections from the same client IP with the same IP protocol will go to the same instance in the pool while that instance remains healthy. Check the SessionAffinity enum for the list of possible values.
Implementations§
source§impl TargetPool
impl TargetPool
sourcepub fn creation_timestamp(&self) -> &str
pub fn creation_timestamp(&self) -> &str
Returns the value of creation_timestamp
, or the default value if creation_timestamp
is unset.
sourcepub fn backup_pool(&self) -> &str
pub fn backup_pool(&self) -> &str
Returns the value of backup_pool
, or the default value if backup_pool
is unset.
sourcepub fn region(&self) -> &str
pub fn region(&self) -> &str
Returns the value of region
, or the default value if region
is unset.
sourcepub fn security_policy(&self) -> &str
pub fn security_policy(&self) -> &str
Returns the value of security_policy
, or the default value if security_policy
is unset.
sourcepub fn failover_ratio(&self) -> f32
pub fn failover_ratio(&self) -> f32
Returns the value of failover_ratio
, or the default value if failover_ratio
is unset.
sourcepub fn description(&self) -> &str
pub fn description(&self) -> &str
Returns the value of description
, or the default value if description
is unset.
sourcepub fn self_link(&self) -> &str
pub fn self_link(&self) -> &str
Returns the value of self_link
, or the default value if self_link
is unset.
sourcepub fn session_affinity(&self) -> &str
pub fn session_affinity(&self) -> &str
Returns the value of session_affinity
, or the default value if session_affinity
is unset.
Trait Implementations§
source§impl Clone for TargetPool
impl Clone for TargetPool
source§fn clone(&self) -> TargetPool
fn clone(&self) -> TargetPool
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for TargetPool
impl Debug for TargetPool
source§impl Default for TargetPool
impl Default for TargetPool
source§impl Message for TargetPool
impl Message for TargetPool
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for TargetPool
impl PartialEq for TargetPool
source§fn eq(&self, other: &TargetPool) -> bool
fn eq(&self, other: &TargetPool) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for TargetPool
Auto Trait Implementations§
impl Freeze for TargetPool
impl RefUnwindSafe for TargetPool
impl Send for TargetPool
impl Sync for TargetPool
impl Unpin for TargetPool
impl UnwindSafe for TargetPool
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request