import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Cross Connect Group resource in Oracle Cloud Infrastructure Core service. * * Gets the specified cross-connect group's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCrossConnectGroup = oci.core.getCrossConnectGroup({ * crossConnectGroupId: testCrossConnectGroupOciCoreCrossConnectGroup.id, * }); * ``` */ export declare function getCrossConnectGroup(args: GetCrossConnectGroupArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getCrossConnectGroup. */ export interface GetCrossConnectGroupArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cross-connect group. */ crossConnectGroupId: string; } /** * A collection of values returned by getCrossConnectGroup. */ export interface GetCrossConnectGroupResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the cross-connect group. */ readonly compartmentId: string; readonly crossConnectGroupId: string; /** * A reference name or identifier for the physical fiber connection that this cross-connect group uses. */ readonly customerReferenceName: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. */ readonly displayName: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The cross-connect group's Oracle ID (OCID). */ readonly id: string; /** * The duration of the interface down timer in milliseconds between 0 and 3000 in multiples of 500. */ readonly interfaceDownTimerValueInMilliseconds: number; /** * The flag to enable or disable the down timer for the interface. */ readonly isInterfaceHoldTimerEnabled: boolean; /** * The flag to enable or disable the Qos for the cross-connect-group. */ readonly isQosEnabled: boolean; /** * Properties used for MACsec (if capable). */ readonly macsecProperties: outputs.Core.GetCrossConnectGroupMacsecProperty[]; /** * Minimum number of active cross-connects required for the cross-connect group to be considered operational. If the number of active cross-connects falls below this value, the group is not considered operational. If this value was not explicitly set when the group was created or updated, it defaults to 1. */ readonly minimumLinks: number; /** * The FastConnect device that terminates the logical connection. This device might be different than the device that terminates the physical connection. */ readonly ociLogicalDeviceName: string; /** * The FastConnect device that terminates the physical connection. */ readonly ociPhysicalDeviceName: string; /** * The cross-connect group's current state. */ readonly state: string; /** * The date and time the cross-connect group was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; } /** * This data source provides details about a specific Cross Connect Group resource in Oracle Cloud Infrastructure Core service. * * Gets the specified cross-connect group's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCrossConnectGroup = oci.core.getCrossConnectGroup({ * crossConnectGroupId: testCrossConnectGroupOciCoreCrossConnectGroup.id, * }); * ``` */ export declare function getCrossConnectGroupOutput(args: GetCrossConnectGroupOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getCrossConnectGroup. */ export interface GetCrossConnectGroupOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cross-connect group. */ crossConnectGroupId: pulumi.Input; } //# sourceMappingURL=getCrossConnectGroup.d.ts.map