Show / Hide Table of Contents

Class BulkDeleteIpv6sDetails

Bulk Secondary IPv6 addresses deletion object.

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

Properties

BulkDeleteIpv6sItem

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

IPv6 addresses to deleted.

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 addresses are to be deleted.

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