Show / Hide Table of Contents

Class VantagePointInfo

Details of the vantage point.

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

Properties

DisplayName

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

Unique name that can be edited. The name should not contain any confidential information.

Remarks

Required

Name

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

Name of the vantage point.

Remarks

Required

WorkerList

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

List of workers running the assigned monitor.

In this article
Back to top