Show / Hide Table of Contents

Class Route

Represents a route that was created or discovered by a private access management service.

Inheritance
System.Object
Route
Implements
IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.ServiceNetworking.v1beta.Data
Assembly: Google.Apis.ServiceNetworking.v1beta.dll
Syntax
public class Route : IDirectResponseSchema

Properties

DestRange

Destination CIDR range that this route applies to.

Declaration
[JsonProperty("destRange")]
public virtual string DestRange { get; set; }
Property Value
Type Description
System.String

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

Name

Route name. See https://cloud.google.com/vpc/docs/routes

Declaration
[JsonProperty("name")]
public virtual string Name { get; set; }
Property Value
Type Description
System.String

Network

Fully-qualified URL of the VPC network in the producer host tenant project that this route applies to. For example: projects/123456/global/networks/host-network

Declaration
[JsonProperty("network")]
public virtual string Network { get; set; }
Property Value
Type Description
System.String

NextHopGateway

Fully-qualified URL of the gateway that should handle matching packets that this route applies to. For example: projects/123456/global/gateways/default-internet-gateway

Declaration
[JsonProperty("nextHopGateway")]
public virtual string NextHopGateway { get; set; }
Property Value
Type Description
System.String

Implements

IDirectResponseSchema
Back to top