Show / Hide Table of Contents

Class Routing

The routing information for a vantage point.

Inheritance
object
Routing
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.HealthchecksService.Models
Assembly: OCI.DotNetSDK.Healthchecks.dll
Syntax
public class Routing

Properties

AsLabel

Declaration
[JsonProperty(PropertyName = "asLabel")]
public string AsLabel { get; set; }
Property Value
Type Description
string

The registry label for asn, usually the name of the organization that owns the ASN. May be omitted or null.

Asn

Declaration
[JsonProperty(PropertyName = "asn")]
public int? Asn { get; set; }
Property Value
Type Description
int?

The Autonomous System Number (ASN) identifying the organization responsible for routing packets to prefix.

Prefix

Declaration
[JsonProperty(PropertyName = "prefix")]
public string Prefix { get; set; }
Property Value
Type Description
string

An IP prefix (CIDR syntax) that is less specific than address, through which address is routed.

Weight

Declaration
[JsonProperty(PropertyName = "weight")]
public int? Weight { get; set; }
Property Value
Type Description
int?

An integer between 0 and 100 used to select between multiple origin ASNs when routing to prefix. Most prefixes have exactly one origin ASN, in which case weight will be 100.

In this article
Back to top