Class PatchSubnetReplaceInstruction
Replaces the entire value of the selected subnet CIDR field with the specified final state.
For IPv6 CIDR list selections (for example, ipv6CidrBlocks), the supplied array is treated
as the authoritative set of CIDRs for that field:
- CIDRs present in both the existing list and the new list remain unchanged.
- CIDRs present in the existing list but not in the new list are removed.
- CIDRs present in the new list but not in the existing list are added.
Inherited Members
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
public class PatchSubnetReplaceInstruction : PatchSubnetInstruction
Properties
Value
Declaration
[Required(ErrorMessage = "Value is required.")]
[JsonProperty(PropertyName = "value")]
public object Value { get; set; }
Property Value
| Type | Description |
|---|---|
| object | The desired final IPv6 CIDR value(s) to apply to the selected field. This field must
always be a JSON object.
For fields that take a single CIDR (for example,
|
Remarks
Required