Show / Hide Table of Contents

Class Ipv6AddressConfiguration

IPv6 address configuration details that should be used when creating the gateway.

Inheritance
object
Ipv6AddressConfiguration
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.ApigatewayService.Models
Assembly: OCI.DotNetSDK.Apigateway.dll
Syntax
public class Ipv6AddressConfiguration

Properties

Addresses

Declaration
[JsonProperty(PropertyName = "addresses")]
public List<string> Addresses { get; set; }
Property Value
Type Description
List<string>

List of IPv6 addresses that will be assigned to the gateway during creation.

SubnetCidrs

Declaration
[JsonProperty(PropertyName = "subnetCidrs")]
public List<string> SubnetCidrs { get; set; }
Property Value
Type Description
List<string>

List of IPv6 prefixes from which to provision IPv6 addresses from. This is required if more than one prefix exists on the subnet.

In this article
Back to top