Show / Hide Table of Contents

Class BulkUpdatePrivateIpsDetails

Bulk Secondary IPv4 addresses update object.

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

Properties

BulkUpdatePrivateIpItem

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

Secondary IPv4 addresses to updated.

Remarks

Required

VnicId

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

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

In this article
Back to top