[][src]Struct google_compute1::Route

pub struct Route {
    pub next_hop_gateway: Option<String>,
    pub description: Option<String>,
    pub tags: Option<Vec<String>>,
    pub next_hop_network: Option<String>,
    pub dest_range: Option<String>,
    pub creation_timestamp: Option<String>,
    pub id: Option<String>,
    pub next_hop_ip: Option<String>,
    pub network: Option<String>,
    pub kind: Option<String>,
    pub name: Option<String>,
    pub next_hop_instance: Option<String>,
    pub warnings: Option<Vec<RouteWarnings>>,
    pub next_hop_peering: Option<String>,
    pub priority: Option<u32>,
    pub next_hop_vpn_tunnel: Option<String>,
    pub self_link: Option<String>,
}

Represents a Route resource.

A route defines a path from VM instances in the VPC network to a specific destination. This destination can be inside or outside the VPC network. For more information, read the Routes overview. (== resource_for beta.routes ==) (== resource_for v1.routes ==)

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

next_hop_gateway: Option<String>

The URL to a gateway that should handle matching packets. You can only specify the internet gateway using a full or partial valid URL: projects/project/global/gateways/default-internet-gateway

description: Option<String>

An optional description of this resource. Provide this field when you create the resource.

tags: Option<Vec<String>>

A list of instance tags to which this route applies.

next_hop_network: Option<String>

The URL of the local network if it should handle matching packets.

dest_range: Option<String>

The destination range of outgoing packets that this route applies to. Only IPv4 is supported.

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.

next_hop_ip: Option<String>

The network IP address of an instance that should handle matching packets. Only IPv4 is supported.

network: Option<String>

Fully-qualified URL of the network that this route applies to.

kind: Option<String>

[Output Only] Type of this resource. Always compute#routes for Route resources.

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])?. The first character must be a lowercase letter, and all following characters (except for the last character) must be a dash, lowercase letter, or digit. The last character must be a lowercase letter or digit.

next_hop_instance: Option<String>

The URL to an instance that should handle matching packets. You can specify this as a full or partial URL. For example: https://www.googleapis.com/compute/v1/projects/project/zones/zone/instances/

warnings: Option<Vec<RouteWarnings>>

[Output Only] If potential misconfigurations are detected for this route, this field will be populated with warning messages.

next_hop_peering: Option<String>

[Output Only] The network peering name that should handle matching packets, which should conform to RFC1035.

priority: Option<u32>

The priority of this route. Priority is used to break ties in cases where there is more than one matching route of equal prefix length. In cases where multiple routes have equal prefix length, the one with the lowest-numbered priority value wins. The default value is 1000. The priority value must be from 0 to 65535, inclusive.

next_hop_vpn_tunnel: Option<String>

The URL to a VpnTunnel that should handle matching packets.

self_link: Option<String>

[Output Only] Server-defined fully-qualified URL for this resource.

Trait Implementations

impl Resource for Route[src]

impl ResponseResult for Route[src]

impl RequestValue for Route[src]

impl Default for Route[src]

impl Clone for Route[src]

fn clone_from(&mut self, source: &Self)1.0.0[src]

Performs copy-assignment from source. Read more

impl Debug for Route[src]

impl Serialize for Route[src]

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

Auto Trait Implementations

impl Send for Route

impl Unpin for Route

impl Sync for Route

impl UnwindSafe for Route

impl RefUnwindSafe for Route

Blanket Implementations

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

type Owned = T

The resulting type after obtaining ownership.

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

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

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.

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

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

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

impl<T> Typeable for T where
    T: Any

fn get_type(&self) -> TypeId

Get the TypeId of this object.

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