Show / Hide Table of Contents

Class BulkCreatePrivateIpsDetails

Bulk Secondary IPv4 addresses creation object.

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

Properties

BulkCreatePrivateIpItem

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

Secondary IPv4 addresses to assign.

Remarks

Required

SubnetId

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

The OCID of the subnet from which the private IPs is to be drawn. The IP addresses, if supplied, must be valid for the given subnet.

VlanId

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

Use this attribute only with the Oracle Cloud VMware Solution. The OCID of the VLAN from which the private IPs is to be drawn. The IP addresses, if supplied, must be valid for the given VLAN. See {@link Vlan}.

VnicId

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

The OCID of the VNIC to assign the private IPs to. The VNIC and private IPs must be in the same subnet.

In this article
Back to top