pub struct NetworkEndpointGroupCloudRun {
pub service: Option<String>,
pub tag: Option<String>,
pub url_mask: Option<String>,
}
Expand description
Configuration for a Cloud Run network endpoint group (NEG). The service must be provided explicitly or in the URL mask. The tag is optional, may be provided explicitly or in the URL mask. Note: Cloud Run 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>
Cloud Run service is the main resource of Cloud Run. The service must be 1-63 characters long, and comply with RFC1035. Example value: “run-service”.
tag: Option<String>
Optional Cloud Run tag represents the “named-revision” to provide additional fine-grained traffic routing information. The tag must be 1-63 characters long, and comply with RFC1035. Example value: “revision-0010”.
url_mask: Option<String>
An URL mask is one of the main components of the Cloud Function. A template to parse
Trait Implementations§
Source§impl Clone for NetworkEndpointGroupCloudRun
impl Clone for NetworkEndpointGroupCloudRun
Source§fn clone(&self) -> NetworkEndpointGroupCloudRun
fn clone(&self) -> NetworkEndpointGroupCloudRun
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for NetworkEndpointGroupCloudRun
impl Debug for NetworkEndpointGroupCloudRun
Source§impl Default for NetworkEndpointGroupCloudRun
impl Default for NetworkEndpointGroupCloudRun
Source§fn default() -> NetworkEndpointGroupCloudRun
fn default() -> NetworkEndpointGroupCloudRun
Source§impl<'de> Deserialize<'de> for NetworkEndpointGroupCloudRun
impl<'de> Deserialize<'de> for NetworkEndpointGroupCloudRun
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 NetworkEndpointGroupCloudRun
Auto Trait Implementations§
impl Freeze for NetworkEndpointGroupCloudRun
impl RefUnwindSafe for NetworkEndpointGroupCloudRun
impl Send for NetworkEndpointGroupCloudRun
impl Sync for NetworkEndpointGroupCloudRun
impl Unpin for NetworkEndpointGroupCloudRun
impl UnwindSafe for NetworkEndpointGroupCloudRun
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