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 Resource Tasks in Oracle Cloud Infrastructure Stack Monitoring service. * * Returns a list of stack monitoring resource tasks in the compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMonitoredResourceTasks = oci.stackmonitoring.getMonitoredResourceTasks({ * compartmentId: compartmentId, * status: monitoredResourceTaskStatus, * }); * ``` */ export declare function getMonitoredResourceTasks(args: GetMonitoredResourceTasksArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getMonitoredResourceTasks. */ export interface GetMonitoredResourceTasksArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment for which stack monitoring resource tasks should be listed. */ compartmentId: string; filters?: inputs.StackMonitoring.GetMonitoredResourceTasksFilter[]; /** * A filter to return only resources that matches with lifecycleState given. */ status?: string; } /** * A collection of values returned by getMonitoredResourceTasks. */ export interface GetMonitoredResourceTasksResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment identifier. */ readonly compartmentId: string; readonly filters?: outputs.StackMonitoring.GetMonitoredResourceTasksFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of monitored_resource_tasks_collection. */ readonly monitoredResourceTasksCollections: outputs.StackMonitoring.GetMonitoredResourceTasksMonitoredResourceTasksCollection[]; readonly status?: string; } /** * This data source provides the list of Monitored Resource Tasks in Oracle Cloud Infrastructure Stack Monitoring service. * * Returns a list of stack monitoring resource tasks in the compartment. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testMonitoredResourceTasks = oci.stackmonitoring.getMonitoredResourceTasks({ * compartmentId: compartmentId, * status: monitoredResourceTaskStatus, * }); * ``` */ export declare function getMonitoredResourceTasksOutput(args: GetMonitoredResourceTasksOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getMonitoredResourceTasks. */ export interface GetMonitoredResourceTasksOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment for which stack monitoring resource tasks should be listed. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources that matches with lifecycleState given. */ status?: pulumi.Input; } //# sourceMappingURL=getMonitoredResourceTasks.d.ts.map