Show / Hide Table of Contents

Class ComputeInstanceEndpoint

Defines the details required for a COMPUTE_INSTANCE-type Endpoint.

Inheritance
object
Endpoint
ComputeInstanceEndpoint
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 ComputeInstanceEndpoint : 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 COMPUTE_INSTANCE-type Endpoint object.

Remarks

Required

InstanceId

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

The OCID of the compute instance.

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 attached to the compute instance.

Remarks

Required

In this article
Back to top