Enum google_api_proto::google::api::backend_rule::PathTranslation
source · #[repr(i32)]pub enum PathTranslation {
Unspecified = 0,
ConstantAddress = 1,
AppendPathToAddress = 2,
}
Expand description
Path Translation specifies how to combine the backend address with the request path in order to produce the appropriate forwarding URL for the request.
Path Translation is applicable only to HTTP-based backends. Backends which
do not accept requests over HTTP/HTTPS should leave path_translation
unspecified.
Variants§
Unspecified = 0
ConstantAddress = 1
Use the backend address as-is, with no modification to the path. If the URL pattern contains variables, the variable names and values will be appended to the query string. If a query string parameter and a URL pattern variable have the same name, this may result in duplicate keys in the query string.
§Examples
Given the following operation config:
Method path: /api/company/{cid}/user/{uid}
Backend address: <https://example.cloudfunctions.net/getUser>
Requests to the following request paths will call the backend at the translated path:
Request path: /api/company/widgetworks/user/johndoe
Translated:
<https://example.cloudfunctions.net/getUser?cid=widgetworks&uid=johndoe>
Request path: /api/company/widgetworks/user/johndoe?timezone=EST
Translated:
<https://example.cloudfunctions.net/getUser?timezone=EST&cid=widgetworks&uid=johndoe>
AppendPathToAddress = 2
The request path will be appended to the backend address.
§Examples
Given the following operation config:
Method path: /api/company/{cid}/user/{uid}
Backend address: <https://example.appspot.com>
Requests to the following request paths will call the backend at the translated path:
Request path: /api/company/widgetworks/user/johndoe
Translated:
<https://example.appspot.com/api/company/widgetworks/user/johndoe>
Request path: /api/company/widgetworks/user/johndoe?timezone=EST
Translated:
<https://example.appspot.com/api/company/widgetworks/user/johndoe?timezone=EST>
Implementations§
source§impl PathTranslation
impl PathTranslation
sourcepub fn as_str_name(&self) -> &'static str
pub fn as_str_name(&self) -> &'static str
String value of the enum field names used in the ProtoBuf definition.
The values are not transformed in any way and thus are considered stable (if the ProtoBuf definition does not change) and safe for programmatic use.
sourcepub fn from_str_name(value: &str) -> Option<Self>
pub fn from_str_name(value: &str) -> Option<Self>
Creates an enum from field names used in the ProtoBuf definition.
Trait Implementations§
source§impl Clone for PathTranslation
impl Clone for PathTranslation
source§fn clone(&self) -> PathTranslation
fn clone(&self) -> PathTranslation
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresource§impl Debug for PathTranslation
impl Debug for PathTranslation
source§impl Default for PathTranslation
impl Default for PathTranslation
source§fn default() -> PathTranslation
fn default() -> PathTranslation
source§impl From<PathTranslation> for i32
impl From<PathTranslation> for i32
source§fn from(value: PathTranslation) -> i32
fn from(value: PathTranslation) -> i32
source§impl Hash for PathTranslation
impl Hash for PathTranslation
source§impl Ord for PathTranslation
impl Ord for PathTranslation
source§fn cmp(&self, other: &PathTranslation) -> Ordering
fn cmp(&self, other: &PathTranslation) -> Ordering
1.21.0 · source§fn max(self, other: Self) -> Selfwhere
Self: Sized,
fn max(self, other: Self) -> Selfwhere
Self: Sized,
source§impl PartialEq for PathTranslation
impl PartialEq for PathTranslation
source§fn eq(&self, other: &PathTranslation) -> bool
fn eq(&self, other: &PathTranslation) -> bool
self
and other
values to be equal, and is used
by ==
.source§impl PartialOrd for PathTranslation
impl PartialOrd for PathTranslation
source§fn partial_cmp(&self, other: &PathTranslation) -> Option<Ordering>
fn partial_cmp(&self, other: &PathTranslation) -> Option<Ordering>
1.0.0 · source§fn le(&self, other: &Rhs) -> bool
fn le(&self, other: &Rhs) -> bool
self
and other
) and is used by the <=
operator. Read moresource§impl TryFrom<i32> for PathTranslation
impl TryFrom<i32> for PathTranslation
§type Error = UnknownEnumValue
type Error = UnknownEnumValue
source§fn try_from(value: i32) -> Result<PathTranslation, UnknownEnumValue>
fn try_from(value: i32) -> Result<PathTranslation, UnknownEnumValue>
impl Copy for PathTranslation
impl Eq for PathTranslation
impl StructuralPartialEq for PathTranslation
Auto Trait Implementations§
impl Freeze for PathTranslation
impl RefUnwindSafe for PathTranslation
impl Send for PathTranslation
impl Sync for PathTranslation
impl Unpin for PathTranslation
impl UnwindSafe for PathTranslation
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<Q, K> Comparable<K> for Q
impl<Q, K> Comparable<K> for Q
source§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
source§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
§impl<Q, K> Equivalent<K> for Q
impl<Q, K> Equivalent<K> for Q
§fn equivalent(&self, key: &K) -> bool
fn equivalent(&self, key: &K) -> bool
key
and return true
if they are equal.§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