Show / Hide Table of Contents

Class BlockVolumeAttachment

The details about the attachment of block volume.

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

Properties

EsxiHostId

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

The OCIDs of the ESXi host that block volume is attached to.

Remarks

Required

IpAddress

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

The IP address of block volume attachment.

Remarks

Required

Port

Declaration
[Required(ErrorMessage = "Port is required.")]
[JsonProperty(PropertyName = "port")]
public int? Port { get; set; }
Property Value
Type Description
int?

The port of block volume attachment.

Remarks

Required

In this article
Back to top