Show / Hide Table of Contents

Class AddIpv4SubnetCidrDetails

Details used when adding an IPv4 prefix to a subnet.

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

Properties

Ipv4CidrBlock

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

The CIDR IP address range of the subnet. The CIDR must maintain the following rules -
a. The CIDR block is valid and correctly formatted. b. The new range is within one of the parent VCN ranges.
Example: 10.0.1.0/24

Remarks

Required

In this article
Back to top