Struct google_compute1::api::NetworkEndpointGroupCloudFunction[][src]

pub struct NetworkEndpointGroupCloudFunction {
    pub function: Option<String>,
    pub url_mask: Option<String>,
}

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]

impl Debug for NetworkEndpointGroupCloudFunction[src]

impl Default for NetworkEndpointGroupCloudFunction[src]

impl<'de> Deserialize<'de> for NetworkEndpointGroupCloudFunction[src]

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]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

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

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

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

The type returned in the event of a conversion error.