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 Fleet Error Analytics in Oracle Cloud Infrastructure Jms service. * * Returns a high level summary of FleetErrors. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetErrorAnalytics = oci.jms.getFleetErrorAnalytics({ * compartmentId: compartmentId, * compartmentIdInSubtree: fleetErrorAnalyticCompartmentIdInSubtree === "true", * }); * ``` */ export declare function getFleetErrorAnalytics(args?: GetFleetErrorAnalyticsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getFleetErrorAnalytics. */ export interface GetFleetErrorAnalyticsArgs { /** * 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.GetFleetErrorAnalyticsFilter[]; } /** * A collection of values returned by getFleetErrorAnalytics. */ export interface GetFleetErrorAnalyticsResult { readonly compartmentId?: string; readonly compartmentIdInSubtree?: boolean; readonly filters?: outputs.Jms.GetFleetErrorAnalyticsFilter[]; /** * The list of fleet_error_aggregation_collection. */ readonly fleetErrorAggregationCollections: outputs.Jms.GetFleetErrorAnalyticsFleetErrorAggregationCollection[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; } /** * This data source provides the list of Fleet Error Analytics in Oracle Cloud Infrastructure Jms service. * * Returns a high level summary of FleetErrors. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testFleetErrorAnalytics = oci.jms.getFleetErrorAnalytics({ * compartmentId: compartmentId, * compartmentIdInSubtree: fleetErrorAnalyticCompartmentIdInSubtree === "true", * }); * ``` */ export declare function getFleetErrorAnalyticsOutput(args?: GetFleetErrorAnalyticsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getFleetErrorAnalytics. */ export interface GetFleetErrorAnalyticsOutputArgs { /** * 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=getFleetErrorAnalytics.d.ts.map