#[non_exhaustive]pub struct BackendServiceTlsSettings {
pub authentication_config: Option<String>,
pub sni: Option<String>,
pub subject_alt_names: Vec<BackendServiceTlsSettingsSubjectAltName>,
/* private fields */
}backend-services or region-backend-services only.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.authentication_config: Option<String>Reference to the BackendAuthenticationConfig resource from the networksecurity.googleapis.com namespace. Can be used in authenticating TLS connections to the backend, as specified by the authenticationMode field. Can only be specified if authenticationMode is not NONE.
sni: Option<String>Server Name Indication - see RFC3546 section 3.1. If set, the load balancer sends this string as the SNI hostname in the TLS connection to the backend, and requires that this string match a Subject Alternative Name (SAN) in the backend’s server certificate. With a Regional Internet NEG backend, if the SNI is specified here, the load balancer uses it regardless of whether the Regional Internet NEG is specified with FQDN or IP address and port. When both sni and subjectAltNames[] are specified, the load balancer matches the backend certificate’s SAN only to subjectAltNames[].
subject_alt_names: Vec<BackendServiceTlsSettingsSubjectAltName>A list of Subject Alternative Names (SANs) that the Load Balancer verifies during a TLS handshake with the backend. When the server presents its X.509 certificate to the Load Balancer, the Load Balancer inspects the certificate’s SAN field, and requires that at least one SAN match one of the subjectAltNames in the list. This field is limited to 5 entries. When both sni and subjectAltNames[] are specified, the load balancer matches the backend certificate’s SAN only to subjectAltNames[].
Implementations§
Source§impl BackendServiceTlsSettings
impl BackendServiceTlsSettings
pub fn new() -> Self
Sourcepub fn set_authentication_config<T>(self, v: T) -> Self
pub fn set_authentication_config<T>(self, v: T) -> Self
Sets the value of authentication_config.
§Example
let x = BackendServiceTlsSettings::new().set_authentication_config("example");Sourcepub fn set_or_clear_authentication_config<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_authentication_config<T>(self, v: Option<T>) -> Self
Sets or clears the value of authentication_config.
§Example
let x = BackendServiceTlsSettings::new().set_or_clear_authentication_config(Some("example"));
let x = BackendServiceTlsSettings::new().set_or_clear_authentication_config(None::<String>);Sourcepub fn set_or_clear_sni<T>(self, v: Option<T>) -> Self
pub fn set_or_clear_sni<T>(self, v: Option<T>) -> Self
Sourcepub fn set_subject_alt_names<T, V>(self, v: T) -> Self
pub fn set_subject_alt_names<T, V>(self, v: T) -> Self
Sets the value of subject_alt_names.
§Example
use google_cloud_compute_v1::model::BackendServiceTlsSettingsSubjectAltName;
let x = BackendServiceTlsSettings::new()
.set_subject_alt_names([
BackendServiceTlsSettingsSubjectAltName::default()/* use setters */,
BackendServiceTlsSettingsSubjectAltName::default()/* use (different) setters */,
]);Trait Implementations§
Source§impl Clone for BackendServiceTlsSettings
impl Clone for BackendServiceTlsSettings
Source§fn clone(&self) -> BackendServiceTlsSettings
fn clone(&self) -> BackendServiceTlsSettings
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more