Show / Hide Table of Contents

Class RemoveIpv4SubnetCidrDetails

Details object for removing an IPv4 prefix from a subnet.

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

Properties

Ipv4CidrBlock

Declaration
[Required(ErrorMessage = "Ipv4CidrBlock is required.")]
[JsonProperty(PropertyName = "ipv4CidrBlock")]
public string Ipv4CidrBlock { get; set; }
Property Value
Type Description
string

This field should only be specified when removing an IPv4 prefix from a subnet's IPv4 address space. The CIDR must maintain the following rules -
a. The CIDR block is valid and correctly formatted. b. The CIDR range is within one of the parent VCN ranges. c. The CIDR range to be removed is already present in the list of ipv4CidrBlocks
Example: 10.0.1.0/24

Remarks

Required

In this article
Back to top