Struct google_api_proto::google::cloud::compute::v1::HttpRedirectAction
source · pub struct HttpRedirectAction {
pub host_redirect: Option<String>,
pub https_redirect: Option<bool>,
pub path_redirect: Option<String>,
pub prefix_redirect: Option<String>,
pub redirect_response_code: Option<String>,
pub strip_query: Option<bool>,
}
Expand description
Specifies settings for an HTTP redirect.
Fields§
§host_redirect: Option<String>
The host that is used in the redirect response instead of the one that was supplied in the request. The value must be from 1 to 255 characters.
https_redirect: Option<bool>
If set to true, the URL scheme in the redirected request is set to HTTPS. If set to false, the URL scheme of the redirected request remains the same as that of the request. This must only be set for URL maps used in TargetHttpProxys. Setting this true for TargetHttpsProxy is not permitted. The default is set to false.
path_redirect: Option<String>
The path that is used in the redirect response instead of the one that was supplied in the request. pathRedirect cannot be supplied together with prefixRedirect. Supply one alone or neither. If neither is supplied, the path of the original request is used for the redirect. The value must be from 1 to 1024 characters.
prefix_redirect: Option<String>
The prefix that replaces the prefixMatch specified in the HttpRouteRuleMatch, retaining the remaining portion of the URL before redirecting the request. prefixRedirect cannot be supplied together with pathRedirect. Supply one alone or neither. If neither is supplied, the path of the original request is used for the redirect. The value must be from 1 to 1024 characters.
redirect_response_code: Option<String>
The HTTP Status code to use for this RedirectAction. Supported values are: - MOVED_PERMANENTLY_DEFAULT, which is the default value and corresponds to 301. - FOUND, which corresponds to 302. - SEE_OTHER which corresponds to 303. - TEMPORARY_REDIRECT, which corresponds to 307. In this case, the request method is retained. - PERMANENT_REDIRECT, which corresponds to 308. In this case, the request method is retained. Check the RedirectResponseCode enum for the list of possible values.
strip_query: Option<bool>
If set to true, any accompanying query portion of the original URL is removed before redirecting the request. If set to false, the query portion of the original URL is retained. The default is set to false.
Implementations§
source§impl HttpRedirectAction
impl HttpRedirectAction
sourcepub fn strip_query(&self) -> bool
pub fn strip_query(&self) -> bool
Returns the value of strip_query
, or the default value if strip_query
is unset.
sourcepub fn host_redirect(&self) -> &str
pub fn host_redirect(&self) -> &str
Returns the value of host_redirect
, or the default value if host_redirect
is unset.
sourcepub fn https_redirect(&self) -> bool
pub fn https_redirect(&self) -> bool
Returns the value of https_redirect
, or the default value if https_redirect
is unset.
sourcepub fn path_redirect(&self) -> &str
pub fn path_redirect(&self) -> &str
Returns the value of path_redirect
, or the default value if path_redirect
is unset.
sourcepub fn redirect_response_code(&self) -> &str
pub fn redirect_response_code(&self) -> &str
Returns the value of redirect_response_code
, or the default value if redirect_response_code
is unset.
sourcepub fn prefix_redirect(&self) -> &str
pub fn prefix_redirect(&self) -> &str
Returns the value of prefix_redirect
, or the default value if prefix_redirect
is unset.
Trait Implementations§
source§impl Clone for HttpRedirectAction
impl Clone for HttpRedirectAction
source§fn clone(&self) -> HttpRedirectAction
fn clone(&self) -> HttpRedirectAction
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for HttpRedirectAction
impl Debug for HttpRedirectAction
source§impl Default for HttpRedirectAction
impl Default for HttpRedirectAction
source§impl Message for HttpRedirectAction
impl Message for HttpRedirectAction
source§fn encoded_len(&self) -> usize
fn encoded_len(&self) -> usize
source§fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
fn encode(&self, buf: &mut impl BufMut) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
fn encode_length_delimited(
&self,
buf: &mut impl BufMut,
) -> Result<(), EncodeError>where
Self: Sized,
source§fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
fn encode_length_delimited_to_vec(&self) -> Vec<u8>where
Self: Sized,
source§fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
fn decode_length_delimited(buf: impl Buf) -> Result<Self, DecodeError>where
Self: Default,
source§fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
. Read moresource§fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
fn merge_length_delimited(&mut self, buf: impl Buf) -> Result<(), DecodeError>where
Self: Sized,
self
.source§impl PartialEq for HttpRedirectAction
impl PartialEq for HttpRedirectAction
source§fn eq(&self, other: &HttpRedirectAction) -> bool
fn eq(&self, other: &HttpRedirectAction) -> bool
self
and other
values to be equal, and is used
by ==
.impl StructuralPartialEq for HttpRedirectAction
Auto Trait Implementations§
impl Freeze for HttpRedirectAction
impl RefUnwindSafe for HttpRedirectAction
impl Send for HttpRedirectAction
impl Sync for HttpRedirectAction
impl Unpin for HttpRedirectAction
impl UnwindSafe for HttpRedirectAction
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
§impl<T> Instrument for T
impl<T> Instrument for T
§fn instrument(self, span: Span) -> Instrumented<Self>
fn instrument(self, span: Span) -> Instrumented<Self>
§fn in_current_span(self) -> Instrumented<Self>
fn in_current_span(self) -> Instrumented<Self>
source§impl<T> IntoRequest<T> for T
impl<T> IntoRequest<T> for T
source§fn into_request(self) -> Request<T>
fn into_request(self) -> Request<T>
T
in a tonic::Request