Show / Hide Table of Contents

Class VnicEndpoint

Defines the details required for a VNIC-type Endpoint.

Inheritance
object
Endpoint
VnicEndpoint
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 VnicEndpoint : 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 a VNIC type Endpoint.

Remarks

Required

VnicId

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

The OCID of the VNIC.

Remarks

Required

In this article
Back to top