import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Enterprise Manager Bridges in Oracle Cloud Infrastructure Opsi service. * * Gets a list of Ops Insights Enterprise Manager bridges. Either compartmentId or id must be specified. * When both compartmentId and compartmentIdInSubtree are specified, a list of bridges in that compartment and in all sub-compartments will be returned. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testEnterpriseManagerBridges = oci.opsi.getEnterpriseManagerBridges({ * compartmentId: compartmentId, * compartmentIdInSubtree: enterpriseManagerBridgeCompartmentIdInSubtree === "true", * displayName: enterpriseManagerBridgeDisplayName, * id: enterpriseManagerBridgeId, * states: enterpriseManagerBridgeState, * }); * ``` */ export declare function getEnterpriseManagerBridges(args?: GetEnterpriseManagerBridgesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getEnterpriseManagerBridges. */ export interface GetEnterpriseManagerBridgesArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId?: string; /** * A flag to search all resources within a given compartment and all sub-compartments. */ compartmentIdInSubtree?: boolean; /** * A filter to return only resources that match the entire display name. */ displayName?: string; filters?: inputs.Opsi.GetEnterpriseManagerBridgesFilter[]; /** * Unique Enterprise Manager bridge identifier */ id?: string; /** * Lifecycle states */ states?: string[]; } /** * A collection of values returned by getEnterpriseManagerBridges. */ export interface GetEnterpriseManagerBridgesResult { /** * Compartment identifier of the Enterprise Manager bridge */ readonly compartmentId?: string; readonly compartmentIdInSubtree?: boolean; /** * User-friedly name of Enterprise Manager Bridge that does not have to be unique. */ readonly displayName?: string; /** * The list of enterprise_manager_bridge_collection. */ readonly enterpriseManagerBridgeCollections: outputs.Opsi.GetEnterpriseManagerBridgesEnterpriseManagerBridgeCollection[]; readonly filters?: outputs.Opsi.GetEnterpriseManagerBridgesFilter[]; /** * Enterprise Manager bridge identifier */ readonly id?: string; /** * The current state of the Enterprise Manager bridge. */ readonly states?: string[]; } /** * This data source provides the list of Enterprise Manager Bridges in Oracle Cloud Infrastructure Opsi service. * * Gets a list of Ops Insights Enterprise Manager bridges. Either compartmentId or id must be specified. * When both compartmentId and compartmentIdInSubtree are specified, a list of bridges in that compartment and in all sub-compartments will be returned. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testEnterpriseManagerBridges = oci.opsi.getEnterpriseManagerBridges({ * compartmentId: compartmentId, * compartmentIdInSubtree: enterpriseManagerBridgeCompartmentIdInSubtree === "true", * displayName: enterpriseManagerBridgeDisplayName, * id: enterpriseManagerBridgeId, * states: enterpriseManagerBridgeState, * }); * ``` */ export declare function getEnterpriseManagerBridgesOutput(args?: GetEnterpriseManagerBridgesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getEnterpriseManagerBridges. */ export interface GetEnterpriseManagerBridgesOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ compartmentId?: pulumi.Input; /** * A flag to search all resources within a given compartment and all sub-compartments. */ compartmentIdInSubtree?: pulumi.Input; /** * A filter to return only resources that match the entire display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * Unique Enterprise Manager bridge identifier */ id?: pulumi.Input; /** * Lifecycle states */ states?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getEnterpriseManagerBridges.d.ts.map