pub struct NetworkEndpointGroupCloudFunction {
pub function: Option<String>,
pub url_mask: Option<String>,
}
Expand description
Configuration for a Cloud Function network endpoint group (NEG). The function must be provided explicitly or in the URL mask. Note: Cloud Function must be in the same project and located in the same region as the Serverless NEG.
This type is not used in any activity, and only used as part of another schema.
Fields§
§function: Option<String>
A user-defined name of the Cloud Function. The function name is case-sensitive and must be 1-63 characters long. Example value: func1.
url_mask: Option<String>
An URL mask is one of the main components of the Cloud Function. A template to parse function field from a request URL. URL mask allows for routing to multiple Cloud Functions without having to create multiple Network Endpoint Groups and backend services. For example, request URLs mydomain.com/function1 and mydomain.com/function2 can be backed by the same Serverless NEG with URL mask /
Trait Implementations§
Source§impl Clone for NetworkEndpointGroupCloudFunction
impl Clone for NetworkEndpointGroupCloudFunction
Source§fn clone(&self) -> NetworkEndpointGroupCloudFunction
fn clone(&self) -> NetworkEndpointGroupCloudFunction
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for NetworkEndpointGroupCloudFunction
impl Default for NetworkEndpointGroupCloudFunction
Source§fn default() -> NetworkEndpointGroupCloudFunction
fn default() -> NetworkEndpointGroupCloudFunction
Source§impl<'de> Deserialize<'de> for NetworkEndpointGroupCloudFunction
impl<'de> Deserialize<'de> for NetworkEndpointGroupCloudFunction
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Part for NetworkEndpointGroupCloudFunction
Auto Trait Implementations§
impl Freeze for NetworkEndpointGroupCloudFunction
impl RefUnwindSafe for NetworkEndpointGroupCloudFunction
impl Send for NetworkEndpointGroupCloudFunction
impl Sync for NetworkEndpointGroupCloudFunction
impl Unpin for NetworkEndpointGroupCloudFunction
impl UnwindSafe for NetworkEndpointGroupCloudFunction
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
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> Instrument for T
impl<T> Instrument for T
Source§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
Source§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more