Class InstancePoolPlacementSubnetDetails
Base details about the IPv6 subnet.
Inherited Members
Namespace: Oci.CoreService.Models
Assembly: OCI.DotNetSDK.Core.dll
Syntax
public class InstancePoolPlacementSubnetDetails
Properties
Ipv6AddressIpv6SubnetCidrPairDetails
Declaration
[JsonProperty(PropertyName = "ipv6AddressIpv6SubnetCidrPairDetails")]
public List<InstancePoolPlacementIpv6AddressIpv6SubnetCidrDetails> Ipv6AddressIpv6SubnetCidrPairDetails { get; set; }
Property Value
Type | Description |
---|---|
List<InstancePoolPlacementIpv6AddressIpv6SubnetCidrDetails> | A list of IPv6 prefix ranges from which the VNIC should be assigned an IPv6 address. You can provide only the prefix ranges and OCI will select an available address from the range. You can optionally choose to leave the prefix range empty and instead provide the specific IPv6 address that should be used from within that range. |
IsAssignIpv6Ip
Declaration
[JsonProperty(PropertyName = "isAssignIpv6Ip")]
public bool? IsAssignIpv6Ip { get; set; }
Property Value
Type | Description |
---|---|
bool? | Whether to allocate an IPv6 address at instance and VNIC creation from an IPv6 enabled
subnet. Default: False. When provided you may optionally provide an IPv6 prefix
( |
SubnetId
Declaration
[Required(ErrorMessage = "SubnetId is required.")]
[JsonProperty(PropertyName = "subnetId")]
public string SubnetId { get; set; }
Property Value
Type | Description |
---|---|
string | The subnet OCID for the secondary VNIC. |
Remarks
Required