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 Managed Instances in Oracle Cloud Infrastructure Wlms service. * * Lists managed instances that match the specified compartment or managed instance OCID. Filter the list against a variety of criteria including but not limited to its name, status and compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstances = oci.oci.getWlmsManagedInstances({ * compartmentId: compartmentId, * displayName: managedInstanceDisplayName, * id: managedInstanceId, * pluginStatus: managedInstancePluginStatus, * }); * ``` */ export declare function getWlmsManagedInstances(args?: GetWlmsManagedInstancesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getWlmsManagedInstances. */ export interface GetWlmsManagedInstancesArgs { /** * The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment. */ compartmentId?: string; /** * The display name. */ displayName?: string; filters?: inputs.oci.GetWlmsManagedInstancesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance. */ id?: string; /** * The plugin status of the managed instance. */ pluginStatus?: string; } /** * A collection of values returned by getWlmsManagedInstances. */ export interface GetWlmsManagedInstancesResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId?: string; /** * A user-friendly name that does not have to be unique and is changeable. */ readonly displayName?: string; readonly filters?: outputs.oci.GetWlmsManagedInstancesFilter[]; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the managed instance. */ readonly id?: string; /** * The list of managed_instance_collection. */ readonly managedInstanceCollections: outputs.oci.GetWlmsManagedInstancesManagedInstanceCollection[]; /** * The plugin status of the managed instance. */ readonly pluginStatus?: string; } /** * This data source provides the list of Managed Instances in Oracle Cloud Infrastructure Wlms service. * * Lists managed instances that match the specified compartment or managed instance OCID. Filter the list against a variety of criteria including but not limited to its name, status and compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testManagedInstances = oci.oci.getWlmsManagedInstances({ * compartmentId: compartmentId, * displayName: managedInstanceDisplayName, * id: managedInstanceId, * pluginStatus: managedInstancePluginStatus, * }); * ``` */ export declare function getWlmsManagedInstancesOutput(args?: GetWlmsManagedInstancesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getWlmsManagedInstances. */ export interface GetWlmsManagedInstancesOutputArgs { /** * The OCID of the compartment that contains the resources to list. This filter returns only resources contained within the specified compartment. */ compartmentId?: pulumi.Input; /** * The display name. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance. */ id?: pulumi.Input; /** * The plugin status of the managed instance. */ pluginStatus?: pulumi.Input; } //# sourceMappingURL=getWlmsManagedInstances.d.ts.map