Class PatchSubnetDetails
The request to patch the subnet. Example: { "patchSubnetInstructions": [ { "operation": "REPLACE", "selection": "ipv6CidrBlock", "value": {"cidr": "2001::/56"} }, { "operation": "REPLACE", "selection": "ipv6CidrBlocks", "value": { "cidrs": [ "2001:db8:1234:1111::/64", "2001:db8:1234:2121::/64" ] } } ]}
Inherited Members
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
public class PatchSubnetDetails
Properties
PatchSubnetInstructions
Declaration
[Required(ErrorMessage = "PatchSubnetInstructions is required.")]
[JsonProperty(PropertyName = "patchSubnetInstructions")]
public List<PatchSubnetInstruction> PatchSubnetInstructions { get; set; }
Property Value
| Type | Description |
|---|---|
| List<PatchSubnetInstruction> | List of patch instructions for Subnet. |
Remarks
Required