Show / Hide Table of Contents

Class HealthChecksVantagePointSummary

Information about a vantage point.

Inheritance
object
HealthChecksVantagePointSummary
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 HealthChecksVantagePointSummary

Properties

DisplayName

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

The display name for the vantage point. Display names are determined by the best information available and may change over time.

Geo

Declaration
[JsonProperty(PropertyName = "geo")]
public Geolocation Geo { get; set; }
Property Value
Type Description
Geolocation

Name

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

The unique, permanent name for the vantage point.

ProviderName

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

The organization on whose infrastructure this vantage point resides. Provider names are not unique, as Oracle Cloud Infrastructure maintains many vantage points in each major provider.

Routing

Declaration
[JsonProperty(PropertyName = "routing")]
public List<Routing> Routing { get; set; }
Property Value
Type Description
List<Routing>

An array of objects that describe how traffic to this vantage point is routed, including which prefixes and ASNs connect it to the internet.
The addresses are sorted from the most-specific to least-specific prefix (the smallest network to largest network). When a prefix has multiple origin ASNs (MOAS routing), they are sorted by weight (highest to lowest). Weight is determined by the total percentage of peers observing the prefix originating from an ASN. Only present if fields includes routing. The field will be null if the address's routing information is unknown.

In this article
Back to top