PatchSubnetDetails¶
-
class
oci.core.models.PatchSubnetDetails(**kwargs)¶ Bases:
objectThe 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” ] } } ] }
Methods
__init__(**kwargs)Initializes a new PatchSubnetDetails object with values from keyword arguments. Attributes
patch_subnet_instructions[Required] Gets the patch_subnet_instructions of this PatchSubnetDetails. -
__init__(**kwargs)¶ Initializes a new PatchSubnetDetails object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: patch_subnet_instructions (list[oci.core.models.PatchSubnetInstruction]) – The value to assign to the patch_subnet_instructions property of this PatchSubnetDetails.
-
patch_subnet_instructions¶ [Required] Gets the patch_subnet_instructions of this PatchSubnetDetails. List of patch instructions for Subnet.
Returns: The patch_subnet_instructions of this PatchSubnetDetails. Return type: list[oci.core.models.PatchSubnetInstruction]
-