Struct google_compute1::TargetHttpProxy
source · pub struct TargetHttpProxy {
pub kind: Option<String>,
pub description: Option<String>,
pub url_map: Option<String>,
pub creation_timestamp: Option<String>,
pub id: Option<String>,
pub self_link: Option<String>,
pub name: Option<String>,
}Expand description
A TargetHttpProxy resource. This resource defines an HTTP proxy. (== resource_for beta.targetHttpProxies ==) (== resource_for v1.targetHttpProxies ==)
§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).
- get target http proxies (response)
- insert target http proxies (request)
Fields§
§kind: Option<String>[Output Only] Type of resource. Always compute#targetHttpProxy for target HTTP proxies.
description: Option<String>An optional description of this resource. Provide this property when you create the resource.
url_map: Option<String>URL to the UrlMap resource that defines the mapping from URL to the BackendService.
creation_timestamp: Option<String>[Output Only] Creation timestamp in RFC3339 text format.
id: Option<String>[Output Only] The unique identifier for the resource. This identifier is defined by the server.
self_link: Option<String>[Output Only] Server-defined URL for the resource.
name: Option<String>Name of the resource. Provided by the client when the resource is created. The name must be 1-63 characters long, and comply with RFC1035. Specifically, the name must be 1-63 characters long and match the regular expression [a-z]([-a-z0-9]*[a-z0-9])? which means the first character must be a lowercase letter, and all following characters must be a dash, lowercase letter, or digit, except the last character, which cannot be a dash.
Trait Implementations§
source§impl Clone for TargetHttpProxy
impl Clone for TargetHttpProxy
source§fn clone(&self) -> TargetHttpProxy
fn clone(&self) -> TargetHttpProxy
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for TargetHttpProxy
impl Debug for TargetHttpProxy
source§impl Default for TargetHttpProxy
impl Default for TargetHttpProxy
source§fn default() -> TargetHttpProxy
fn default() -> TargetHttpProxy
source§impl<'de> Deserialize<'de> for TargetHttpProxy
impl<'de> Deserialize<'de> for TargetHttpProxy
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 TargetHttpProxy
impl Serialize for TargetHttpProxy
impl RequestValue for TargetHttpProxy
impl ResponseResult for TargetHttpProxy
Auto Trait Implementations§
impl Freeze for TargetHttpProxy
impl RefUnwindSafe for TargetHttpProxy
impl Send for TargetHttpProxy
impl Sync for TargetHttpProxy
impl Unpin for TargetHttpProxy
impl UnwindSafe for TargetHttpProxy
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§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)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