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 Plugin Error Analytics in Oracle Cloud Infrastructure Jms service. * * Returns a high level summary of PluginErrors. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPluginErrorAnalytics = oci.jms.getPluginErrorAnalytics({ * compartmentId: compartmentId, * compartmentIdInSubtree: pluginErrorAnalyticCompartmentIdInSubtree === "true", * }); * ``` */ export declare function getPluginErrorAnalytics(args?: GetPluginErrorAnalyticsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getPluginErrorAnalytics. */ export interface GetPluginErrorAnalyticsArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: string; /** * Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments. */ compartmentIdInSubtree?: boolean; filters?: inputs.Jms.GetPluginErrorAnalyticsFilter[]; } /** * A collection of values returned by getPluginErrorAnalytics. */ export interface GetPluginErrorAnalyticsResult { readonly compartmentId?: string; readonly compartmentIdInSubtree?: boolean; readonly filters?: outputs.Jms.GetPluginErrorAnalyticsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of plugin_error_aggregation_collection. */ readonly pluginErrorAggregationCollections: outputs.Jms.GetPluginErrorAnalyticsPluginErrorAggregationCollection[]; } /** * This data source provides the list of Plugin Error Analytics in Oracle Cloud Infrastructure Jms service. * * Returns a high level summary of PluginErrors. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testPluginErrorAnalytics = oci.jms.getPluginErrorAnalytics({ * compartmentId: compartmentId, * compartmentIdInSubtree: pluginErrorAnalyticCompartmentIdInSubtree === "true", * }); * ``` */ export declare function getPluginErrorAnalyticsOutput(args?: GetPluginErrorAnalyticsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getPluginErrorAnalytics. */ export interface GetPluginErrorAnalyticsOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources. */ compartmentId?: pulumi.Input; /** * Flag to determine whether the info should be gathered only in the compartment or in the compartment and its subcompartments. */ compartmentIdInSubtree?: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getPluginErrorAnalytics.d.ts.map