Struct google_apigateway1::api::ApigatewayGateway[][src]

pub struct ApigatewayGateway {
    pub api_config: Option<String>,
    pub create_time: Option<String>,
    pub default_hostname: Option<String>,
    pub display_name: Option<String>,
    pub labels: Option<HashMap<String, String>>,
    pub name: Option<String>,
    pub state: Option<String>,
    pub update_time: Option<String>,
}

A Gateway is an API-aware HTTP proxy. It performs API-Method and/or API-Consumer specific actions based on an API Config such as authentication, policy enforcement, and backend selection.

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).

Fields

api_config: Option<String>

Required. Resource name of the API Config for this Gateway. Format: projects/{project}/locations/global/apis/{api}/configs/{apiConfig}

create_time: Option<String>

Output only. Created time.

default_hostname: Option<String>

Output only. The default API Gateway host name of the form {gateway_id}-{hash}.{region_code}.gateway.dev.

display_name: Option<String>

Optional. Display name.

labels: Option<HashMap<String, String>>

Optional. Resource labels to represent user-provided metadata. Refer to cloud documentation on labels for more details. https://cloud.google.com/compute/docs/labeling-resources

name: Option<String>

Output only. Resource name of the Gateway. Format: projects/{project}/locations/{location}/gateways/{gateway}

state: Option<String>

Output only. The current state of the Gateway.

update_time: Option<String>

Output only. Updated time.

Trait Implementations

impl Clone for ApigatewayGateway[src]

impl Debug for ApigatewayGateway[src]

impl Default for ApigatewayGateway[src]

impl<'de> Deserialize<'de> for ApigatewayGateway[src]

impl RequestValue for ApigatewayGateway[src]

impl ResponseResult for ApigatewayGateway[src]

impl Serialize for ApigatewayGateway[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T> Instrument for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.