Show / Hide Table of Contents

Class VlanEndpoint

Defines the details required for a VLAN-type Endpoint.

Inheritance
object
Endpoint
VlanEndpoint
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.VnmonitoringService.Models
Assembly: OCI.DotNetSDK.Vnmonitoring.dll
Syntax
public class VlanEndpoint : Endpoint

Properties

Address

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

The IPv4 address of the Endpoint.

Remarks

Required

VlanId

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

The OCID of the VLAN containing the IP address. This can be used to disambiguate which VLAN is queried, in case the endpoint IP address belongs to more than one VLAN (when there are VLANs with overlapping IP ranges).

Remarks

Required

In this article
Back to top