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 Monitored Instances in Oracle Cloud Infrastructure Appmgmt Control service. * * Returns a list of monitored instances. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMonitoredInstances = oci.appmgmtcontrol.getMonitoredInstances({ * compartmentId: compartmentId, * displayName: monitoredInstanceDisplayName, * }); * ``` */ export declare function getMonitoredInstances(args: GetMonitoredInstancesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getMonitoredInstances. */ export interface GetMonitoredInstancesArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.AppMgmtControl.GetMonitoredInstancesFilter[]; } /** * A collection of values returned by getMonitoredInstances. */ export interface GetMonitoredInstancesResult { /** * Compartment Identifier [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) */ readonly compartmentId: string; /** * A user-friendly name of the monitored instance. It is binded to [Compute Instance](https://docs.cloud.oracle.com/iaas/Content/Compute/Concepts/computeoverview.htm). DisplayName is fetched from [Core Service API](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/20160918/Instance/). */ readonly displayName?: string; readonly filters?: outputs.AppMgmtControl.GetMonitoredInstancesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of monitored_instance_collection. */ readonly monitoredInstanceCollections: outputs.AppMgmtControl.GetMonitoredInstancesMonitoredInstanceCollection[]; } /** * This data source provides the list of Monitored Instances in Oracle Cloud Infrastructure Appmgmt Control service. * * Returns a list of monitored instances. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMonitoredInstances = oci.appmgmtcontrol.getMonitoredInstances({ * compartmentId: compartmentId, * displayName: monitoredInstanceDisplayName, * }); * ``` */ export declare function getMonitoredInstancesOutput(args: GetMonitoredInstancesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getMonitoredInstances. */ export interface GetMonitoredInstancesOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getMonitoredInstances.d.ts.map