pub struct LoadBalancerBackendInfo {
    pub backend_bucket_uri: Option<String>,
    pub backend_service_uri: Option<String>,
    pub health_check_firewalls_config_state: Option<String>,
    pub health_check_uri: Option<String>,
    pub instance_group_uri: Option<String>,
    pub instance_uri: Option<String>,
    pub name: Option<String>,
    pub network_endpoint_group_uri: Option<String>,
    pub psc_google_api_target: Option<String>,
    pub psc_service_attachment_uri: Option<String>,
}
Expand description

For display only. Metadata associated with the load balancer backend.

This type is not used in any activity, and only used as part of another schema.

Fields§

§backend_bucket_uri: Option<String>

URI of the backend bucket this backend targets (if applicable).

§backend_service_uri: Option<String>

URI of the backend service this backend belongs to (if applicable).

§health_check_firewalls_config_state: Option<String>

Output only. Health check firewalls configuration state for the backend. This is a result of the static firewall analysis (verifying that health check traffic from required IP ranges to the backend is allowed or not). The backend might still be unhealthy even if these firewalls are configured. Please refer to the documentation for more information: https://cloud.google.com/load-balancing/docs/firewall-rules

§health_check_uri: Option<String>

URI of the health check attached to this backend (if applicable).

§instance_group_uri: Option<String>

URI of the instance group this backend belongs to (if applicable).

§instance_uri: Option<String>

URI of the backend instance (if applicable). Populated for instance group backends, and zonal NEG backends.

§name: Option<String>

Display name of the backend. For example, it might be an instance name for the instance group backends, or an IP address and port for zonal network endpoint group backends.

§network_endpoint_group_uri: Option<String>

URI of the network endpoint group this backend belongs to (if applicable).

§psc_google_api_target: Option<String>

PSC Google API target this PSC NEG backend targets (if applicable).

§psc_service_attachment_uri: Option<String>

URI of the PSC service attachment this PSC NEG backend targets (if applicable).

Trait Implementations§

source§

impl Clone for LoadBalancerBackendInfo

source§

fn clone(&self) -> LoadBalancerBackendInfo

Returns a copy of the value. Read more
1.0.0 · source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
source§

impl Debug for LoadBalancerBackendInfo

source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
source§

impl Default for LoadBalancerBackendInfo

source§

fn default() -> LoadBalancerBackendInfo

Returns the “default value” for a type. Read more
source§

impl<'de> Deserialize<'de> for LoadBalancerBackendInfo

source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
source§

impl Serialize for LoadBalancerBackendInfo

source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
source§

impl Part for LoadBalancerBackendInfo

Auto Trait Implementations§

Blanket Implementations§

source§

impl<T> Any for T
where T: 'static + ?Sized,

source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
source§

impl<T> Borrow<T> for T
where T: ?Sized,

source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
source§

impl<T> From<T> for T

source§

fn from(t: T) -> T

Returns the argument unchanged.

source§

impl<T> Instrument for T

source§

fn instrument(self, span: Span) -> Instrumented<Self>

Instruments this type with the provided Span, returning an Instrumented wrapper. Read more
source§

fn in_current_span(self) -> Instrumented<Self>

Instruments this type with the current Span, returning an Instrumented wrapper. Read more
source§

impl<T, U> Into<U> for T
where U: From<T>,

source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

source§

impl<T> ToOwned for T
where T: Clone,

§

type Owned = T

The resulting type after obtaining ownership.
source§

fn to_owned(&self) -> T

Creates owned data from borrowed data, usually by cloning. Read more
source§

fn clone_into(&self, target: &mut T)

Uses borrowed data to replace owned data, usually by cloning. Read more
source§

impl<T, U> TryFrom<U> for T
where U: Into<T>,

§

type Error = Infallible

The type returned in the event of a conversion error.
source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

§

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.
source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
source§

impl<T> WithSubscriber for T

source§

fn with_subscriber<S>(self, subscriber: S) -> WithDispatch<Self>
where S: Into<Dispatch>,

Attaches the provided Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

fn with_current_subscriber(self) -> WithDispatch<Self>

Attaches the current default Subscriber to this type, returning a WithDispatch wrapper. Read more
source§

impl<T> DeserializeOwned for T
where T: for<'de> Deserialize<'de>,