Show / Hide Table of Contents

Class InstanceNetworkInterfaceAttachment

Describes a network interface attachment.

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

Properties

AttachmentKey

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

The ID of the network interface attachment.

DeviceIndex

Declaration
[JsonProperty(PropertyName = "deviceIndex")]
public int? DeviceIndex { get; set; }
Property Value
Type Description
int?

The index of the device on the instance for the network interface attachment.

IsDeleteOnTermination

Declaration
[JsonProperty(PropertyName = "isDeleteOnTermination")]
public bool? IsDeleteOnTermination { get; set; }
Property Value
Type Description
bool?

Indicates whether the network interface is deleted when the instance is terminated.

NetworkCardIndex

Declaration
[JsonProperty(PropertyName = "networkCardIndex")]
public int? NetworkCardIndex { get; set; }
Property Value
Type Description
int?

The index of the network card.

Status

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

The attachment state.

TimeAttach

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

The timestamp when the attachment initiated.

In this article
Back to top