Struct google_compute1::api::NetworkEndpointGroupCloudFunction [−][src]
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>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 "/". The URL mask will parse them to { function = "function1" } and { function = "function2" } respectively.
Trait Implementations
impl Clone for NetworkEndpointGroupCloudFunction[src]
fn clone(&self) -> NetworkEndpointGroupCloudFunction[src]
pub fn clone_from(&mut self, source: &Self)1.0.0[src]
impl Debug for NetworkEndpointGroupCloudFunction[src]
impl Default for NetworkEndpointGroupCloudFunction[src]
impl<'de> Deserialize<'de> for NetworkEndpointGroupCloudFunction[src]
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error> where
__D: Deserializer<'de>, [src]
__D: Deserializer<'de>,
impl Part for NetworkEndpointGroupCloudFunction[src]
impl Serialize for NetworkEndpointGroupCloudFunction[src]
Auto Trait Implementations
impl RefUnwindSafe for NetworkEndpointGroupCloudFunction[src]
impl Send for NetworkEndpointGroupCloudFunction[src]
impl Sync for NetworkEndpointGroupCloudFunction[src]
impl Unpin for NetworkEndpointGroupCloudFunction[src]
impl UnwindSafe for NetworkEndpointGroupCloudFunction[src]
Blanket Implementations
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
pub fn borrow_mut(&mut self) -> &mut T[src]
impl<T> DeserializeOwned for T where
T: for<'de> Deserialize<'de>, [src]
T: for<'de> Deserialize<'de>,
impl<T> From<T> for T[src]
impl<T> Instrument for T[src]
pub fn instrument(self, span: Span) -> Instrumented<Self>[src]
pub fn in_current_span(self) -> Instrumented<Self>[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
pub fn to_owned(&self) -> T[src]
pub fn clone_into(&self, target: &mut T)[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
pub fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,