#[non_exhaustive]pub struct Source {
pub principals: Vec<String>,
pub ip_blocks: Vec<String>,
/* private fields */
}Expand description
Specification of traffic source attributes.
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.principals: Vec<String>Optional. List of peer identities to match for authorization. At least one principal should match. Each peer can be an exact match, or a prefix match (example, “namespace/”) or a suffix match (example, “/service-account”) or a presence match “*”. Authorization based on the principal name without certificate validation (configured by ServerTlsPolicy resource) is considered insecure.
ip_blocks: Vec<String>Optional. List of CIDR ranges to match based on source IP address. At least one IP block should match. Single IP (e.g., “1.2.3.4”) and CIDR (e.g., “1.2.3.0/24”) are supported. Authorization based on source IP alone should be avoided. The IP addresses of any load balancers or proxies should be considered untrusted.
Implementations§
Source§impl Source
impl Source
pub fn new() -> Self
Sourcepub fn set_principals<T, V>(self, v: T) -> Self
pub fn set_principals<T, V>(self, v: T) -> Self
Sets the value of principals.
Sourcepub fn set_ip_blocks<T, V>(self, v: T) -> Self
pub fn set_ip_blocks<T, V>(self, v: T) -> Self
Sets the value of ip_blocks.