Show / Hide Table of Contents

Class NetworkSecurityGroupVnic

Information about a VNIC that belongs to a network security group.

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

Properties

ResourceId

Declaration
[JsonProperty(PropertyName = "resourceId")]
public string ResourceId { get; set; }
Property Value
Type Description
string

The OCID of the parent resource that the VNIC is attached to (for example, a Compute instance).

TimeAssociated

Declaration
[JsonProperty(PropertyName = "timeAssociated")]
public DateTime? TimeAssociated { get; set; }
Property Value
Type Description
DateTime?

The date and time the VNIC was added to the network security group, in the format defined by RFC3339.
Example: 2016-08-25T21:10:29.600Z

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