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 Report Metadata in Oracle Cloud Infrastructure Fleet Apps Management service. * * Returns a list of all the report metadata. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testReportMetadata = oci.fleetappsmanagement.getReportMetadata({ * compartmentId: compartmentId, * reportName: reportName, * }); * ``` */ export declare function getReportMetadata(args: GetReportMetadataArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getReportMetadata. */ export interface GetReportMetadataArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; filters?: inputs.FleetAppsManagement.GetReportMetadataFilter[]; /** * A filter to return data for given report name. */ reportName?: string; } /** * A collection of values returned by getReportMetadata. */ export interface GetReportMetadataResult { readonly compartmentId: string; readonly filters?: outputs.FleetAppsManagement.GetReportMetadataFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of report_metadata_collection. */ readonly reportMetadataCollections: outputs.FleetAppsManagement.GetReportMetadataReportMetadataCollection[]; readonly reportName?: string; } /** * This data source provides the list of Report Metadata in Oracle Cloud Infrastructure Fleet Apps Management service. * * Returns a list of all the report metadata. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testReportMetadata = oci.fleetappsmanagement.getReportMetadata({ * compartmentId: compartmentId, * reportName: reportName, * }); * ``` */ export declare function getReportMetadataOutput(args: GetReportMetadataOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getReportMetadata. */ export interface GetReportMetadataOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return data for given report name. */ reportName?: pulumi.Input; } //# sourceMappingURL=getReportMetadata.d.ts.map