/** * Network Monitoring API * Use the Network Monitoring API to troubleshoot routing and security issues for resources such as virtual cloud networks (VCNs) and compute instances. For more information, see the console documentation for the [Network Path Analyzer](https://docs.oracle.com/iaas/Content/Network/Concepts/path_analyzer.htm) tool. * OpenAPI spec version: 20160918 * * * NOTE: This class is auto generated by OracleSDKGenerator. * Do not edit the class manually. * * Copyright (c) 2020, 2026, Oracle and/or its affiliates. All rights reserved. * This software is dual-licensed to you under the Universal Permissive License (UPL) 1.0 as shown at https://oss.oracle.com/licenses/upl or Apache License 2.0 as shown at http://www.apache.org/licenses/LICENSE-2.0. You may choose either license. */ /** * An *IPv6* is a conceptual term that refers to an IPv6 address and related properties. * The {@code IPv6} object is the API representation of an IPv6. *
You can create and assign an IPv6 to any VNIC that is in an IPv6-enabled subnet in an * IPv6-enabled VCN. *
**Note:** IPv6 addressing is supported for all commercial and government regions. For important * details about IPv6 addressing in a VCN, see [IPv6 Addresses](https://docs.oracle.com/iaas/Content/Network/Concepts/ipv6.htm). * */ export interface Ipv6 { /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the IPv6. * This is the same as the VNIC's compartment. * */ "compartmentId": string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. * Example: {@code {\"foo-namespace\": {\"bar-key\": \"value\"}}} * */ "definedTags"?: { [key: string]: { [key: string]: any; }; }; /** * A user-friendly name. Does not have to be unique, and it's changeable. * Avoid entering confidential information. * */ "displayName": string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. * Example: {@code {\"bar-key\": \"value\"}} * */ "freeformTags"?: { [key: string]: string; }; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the IPv6. */ "id": string; /** * The IPv6 address of the {@code IPv6} object. The address is within the IPv6 prefix * of the VNIC's subnet (see the {@code ipv6CidrBlock} attribute for the {@link Subnet} * object. *
Example: {@code 2001:0db8:0123:1111:abcd:ef01:2345:6789} * */ "ipAddress": string; /** * Whether the IPv6 can be used for internet communication. Allowed by default for an IPv6 in * a public subnet. Never allowed for an IPv6 in a private subnet. If the value is {@code true}, the * IPv6 uses its public IP address for internet communication. *
Example: {@code true} * */ "isInternetAccessAllowed"?: boolean; /** * The IPv6's current state. */ "lifecycleState": Ipv6.LifecycleState; /** * The IPv6 address to be used for internet communication. The address is within the * IPv6 prefix of the VNIC's subnet (see the {@code ipv6PublicCidrBlock} attribute for the * {@link Subnet} object). *
If your organization did NOT assign a custom IPv6 prefix to the VCN for the private address * space, Oracle provides the IPv6 prefix and uses that same prefix for the private and public * address space. Therefore the {@code publicIpAddress} would be the same as the {@code ipAddress}. *
If your organization assigned a custom IPv6 prefix to the VCN for the address space, * the right 80 bits of the IPv6 IP (the subnet and address bits) are the same as for * the {@code ipAddress}. But the left 48 bits are from the IPv6 prefix that Oracle assigned * to the VCN. *
This is null if the IPv6 is created with {@code isInternetAccessAllowed} set to {@code false}. *
Example: {@code 2001:0db8:0123:1111:abcd:ef01:2345:6789} * */ "publicIpAddress"?: string; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the VNIC is in. */ "subnetId": string; /** * The date and time the IPv6 was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). *
Example: {@code 2016-08-25T21:10:29.600Z} * */ "timeCreated": Date; /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VNIC the IPv6 is assigned to. * The VNIC and IPv6 must be in the same subnet. * */ "vnicId": string; } export declare namespace Ipv6 { enum LifecycleState { Provisioning = "PROVISIONING", Available = "AVAILABLE", Terminating = "TERMINATING", Terminated = "TERMINATED", /** * This value is used if a service returns a value for this enum that is not recognized by this * version of the SDK. */ UnknownValue = "UNKNOWN_VALUE" } function getJsonObj(obj: Ipv6): object; function getDeserializedJsonObj(obj: Ipv6): object; }