Show / Hide Table of Contents

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" ] } } ]}

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

In this article
Back to top