Show / Hide Table of Contents

Class BulkCreateIpv6sDetails

Bulk Secondary IPv6 addresses creation object.

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

Properties

BulkCreateIpv6sItem

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

Secondary IPv6 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 IPv6s are to be drawn. The IP addresses, if supplied, must be valid for the given subnet, only valid for reserved IPs currently.

VnicId

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

The OCID of the VNIC to assign the IPv6s to. The IPv6 will be in the VNIC's subnet.

In this article
Back to top