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 Process Sets in Oracle Cloud Infrastructure Stack Monitoring service. * * API to get the details of all Process Sets. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testProcessSets = oci.stackmonitoring.getProcessSets({ * compartmentId: compartmentId, * displayName: processSetDisplayName, * }); * ``` */ export declare function getProcessSets(args: GetProcessSetsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getProcessSets. */ export interface GetProcessSetsArgs { /** * The ID of the compartment in which data is listed. */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.StackMonitoring.GetProcessSetsFilter[]; } /** * A collection of values returned by getProcessSets. */ export interface GetProcessSetsResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ readonly compartmentId: string; /** * Name of the Process Set. */ readonly displayName?: string; readonly filters?: outputs.StackMonitoring.GetProcessSetsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of process_set_collection. */ readonly processSetCollections: outputs.StackMonitoring.GetProcessSetsProcessSetCollection[]; } /** * This data source provides the list of Process Sets in Oracle Cloud Infrastructure Stack Monitoring service. * * API to get the details of all Process Sets. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testProcessSets = oci.stackmonitoring.getProcessSets({ * compartmentId: compartmentId, * displayName: processSetDisplayName, * }); * ``` */ export declare function getProcessSetsOutput(args: GetProcessSetsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getProcessSets. */ export interface GetProcessSetsOutputArgs { /** * The ID of the compartment in which data is listed. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getProcessSets.d.ts.map