/** * 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. */ /** * The status of the cross-connect. */ export interface CrossConnectStatus { /** * The [OCID](https://docs.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cross-connect. */ "crossConnectId": string; /** * Indicates whether Oracle's side of the interface is up or down. */ "interfaceState"?: CrossConnectStatus.InterfaceState; /** * The light level of the cross-connect (in dBm). *

Example: {@code 14.0} * Note: Numbers greater than Number.MAX_SAFE_INTEGER will result in rounding issues. */ "lightLevelIndBm"?: number; /** * Status indicator corresponding to the light level. *

* **NO_LIGHT:** No measurable light * * **LOW_WARN:** There's measurable light but it's too low * * **HIGH_WARN:** Light level is too high * * **BAD:** There's measurable light but the signal-to-noise ratio is bad * * **GOOD:** Good light level * */ "lightLevelIndicator"?: CrossConnectStatus.LightLevelIndicator; } export declare namespace CrossConnectStatus { enum InterfaceState { Up = "UP", Down = "DOWN", /** * 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" } enum LightLevelIndicator { NoLight = "NO_LIGHT", LowWarn = "LOW_WARN", HighWarn = "HIGH_WARN", Bad = "BAD", Good = "GOOD", /** * 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: CrossConnectStatus): object; function getDeserializedJsonObj(obj: CrossConnectStatus): object; }