Show / Hide Table of Contents

Class Vnic

Private endpoint's VNIC.

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

Properties

Id

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

The OCID of the private endpoint's VNIC, which resides in the customer's VCN.

Remarks

Required

SourceIps

Declaration
[Required(ErrorMessage = "SourceIps is required.")]
[JsonProperty(PropertyName = "sourceIps")]
public List<string> SourceIps { get; set; }
Property Value
Type Description
List<string>

A list of private IP addresses (in the customer's VCN) that represent access points for the service.

Remarks

Required

In this article
Back to top