Show / Hide Table of Contents

Class MultipathDevice

Secondary multipath device, it uses the charUsername and chapSecret from primary volume attachment

Inheritance
object
MultipathDevice
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 MultipathDevice

Properties

Ipv4

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

The volume's iSCSI IP address.
Example: 169.254.2.2

Remarks

Required

Iqn

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

The target volume's iSCSI Qualified Name in the format defined by RFC 3720.
Example: iqn.2015-12.com.oracleiaas:40b7ee03-883f-46c6-a951-63d2841d2195

Remarks

Required

Port

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

The volume's iSCSI port, usually port 860 or 3260.
Example: 3260

In this article
Back to top