Show / Hide Table of Contents

Class ModifyVcnCidrDetails

Details for updating a CIDR block.

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

Properties

NewCidrBlock

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

The new CIDR IP address.

Remarks

Required

OriginalCidrBlock

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

The CIDR IP address to update.

Remarks

Required

In this article
Back to top