Show / Hide Table of Contents

Class BulkDeletePrivateIpsDetails

Bulk Secondary IPv4 deletion object.

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

Properties

BulkDeletePrivateIpItem

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

Secondary IPv4 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 private IPs is to be deleted.

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 IP is to be deleted.

VnicId

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

The OCID of the VNIC of which private IPs should be deleted. The VNIC and private IPs must be in the same subnet.

In this article
Back to top