pub struct NetworkEndpointGroupAppEngine {
pub service: Option<String>,
pub url_mask: Option<String>,
pub version: Option<String>,
}
Expand description
Configuration for an App Engine network endpoint group (NEG). The service is optional, may be provided explicitly or in the URL mask. The version is optional and can only be provided explicitly or in the URL mask when service is present. Note: App Engine service 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§
§service: Option<String>
Optional serving service. The service name is case-sensitive and must be 1-63 characters long. Example value: default, my-service.
url_mask: Option<String>
An URL mask is one of the main components of the Cloud Function. A template to parse service and version fields from a request URL. URL mask allows for routing to multiple App Engine services without having to create multiple Network Endpoint Groups and backend services. For example, the request URLs foo1-dot-appname.appspot.com/v1 and foo1-dot-appname.appspot.com/v2 can be backed by the same Serverless NEG with URL mask
version: Option<String>
Optional serving version. The version name is case-sensitive and must be 1-100 characters long. Example value: v1, v2.
Trait Implementations§
Source§impl Clone for NetworkEndpointGroupAppEngine
impl Clone for NetworkEndpointGroupAppEngine
Source§fn clone(&self) -> NetworkEndpointGroupAppEngine
fn clone(&self) -> NetworkEndpointGroupAppEngine
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Default for NetworkEndpointGroupAppEngine
impl Default for NetworkEndpointGroupAppEngine
Source§fn default() -> NetworkEndpointGroupAppEngine
fn default() -> NetworkEndpointGroupAppEngine
Source§impl<'de> Deserialize<'de> for NetworkEndpointGroupAppEngine
impl<'de> Deserialize<'de> for NetworkEndpointGroupAppEngine
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 NetworkEndpointGroupAppEngine
Auto Trait Implementations§
impl Freeze for NetworkEndpointGroupAppEngine
impl RefUnwindSafe for NetworkEndpointGroupAppEngine
impl Send for NetworkEndpointGroupAppEngine
impl Sync for NetworkEndpointGroupAppEngine
impl Unpin for NetworkEndpointGroupAppEngine
impl UnwindSafe for NetworkEndpointGroupAppEngine
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