pub struct UrlMapsValidateRequest {
pub load_balancing_schemes: Option<Vec<String>>,
pub resource: Option<UrlMap>,
}
Expand description
There is no detailed description.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- validate url maps (request)
Fields§
§load_balancing_schemes: Option<Vec<String>>
Specifies the load balancer type(s) this validation request is for. Use EXTERNAL_MANAGED for global external Application Load Balancers and regional external Application Load Balancers. Use EXTERNAL for classic Application Load Balancers. Use INTERNAL_MANAGED for internal Application Load Balancers. For more information, refer to Choosing a load balancer. If unspecified, the load balancing scheme will be inferred from the backend service resources this URL map references. If that can not be inferred (for example, this URL map only references backend buckets, or this Url map is for rewrites and redirects only and doesn’t reference any backends), EXTERNAL will be used as the default type. If specified, the scheme(s) must not conflict with the load balancing scheme of the backend service resources this Url map references.
resource: Option<UrlMap>
Content of the UrlMap to be validated.
Trait Implementations§
Source§impl Clone for UrlMapsValidateRequest
impl Clone for UrlMapsValidateRequest
Source§fn clone(&self) -> UrlMapsValidateRequest
fn clone(&self) -> UrlMapsValidateRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for UrlMapsValidateRequest
impl Debug for UrlMapsValidateRequest
Source§impl Default for UrlMapsValidateRequest
impl Default for UrlMapsValidateRequest
Source§fn default() -> UrlMapsValidateRequest
fn default() -> UrlMapsValidateRequest
Source§impl<'de> Deserialize<'de> for UrlMapsValidateRequest
impl<'de> Deserialize<'de> for UrlMapsValidateRequest
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>,
Source§impl Serialize for UrlMapsValidateRequest
impl Serialize for UrlMapsValidateRequest
impl RequestValue for UrlMapsValidateRequest
Auto Trait Implementations§
impl Freeze for UrlMapsValidateRequest
impl RefUnwindSafe for UrlMapsValidateRequest
impl Send for UrlMapsValidateRequest
impl Sync for UrlMapsValidateRequest
impl Unpin for UrlMapsValidateRequest
impl UnwindSafe for UrlMapsValidateRequest
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