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 Namespace Storage Overlapping Recalls in Oracle Cloud Infrastructure Log Analytics service. * * This API gets the list of overlapping recalls made in the given timeframe * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNamespaceStorageOverlappingRecalls = oci.loganalytics.getNamespaceStorageOverlappingRecalls({ * namespace: namespaceStorageOverlappingRecallNamespace, * timeDataEnded: namespaceStorageOverlappingRecallTimeDataEnded, * timeDataStarted: namespaceStorageOverlappingRecallTimeDataStarted, * }); * ``` */ export declare function getNamespaceStorageOverlappingRecalls(args: GetNamespaceStorageOverlappingRecallsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNamespaceStorageOverlappingRecalls. */ export interface GetNamespaceStorageOverlappingRecallsArgs { filters?: inputs.LogAnalytics.GetNamespaceStorageOverlappingRecallsFilter[]; /** * The Log Analytics namespace used for the request. The namespace can be obtained by running 'oci os ns get' */ namespace: string; /** * This is the end of the time range for recalled data */ timeDataEnded?: string; /** * This is the start of the time range for recalled data */ timeDataStarted?: string; } /** * A collection of values returned by getNamespaceStorageOverlappingRecalls. */ export interface GetNamespaceStorageOverlappingRecallsResult { readonly filters?: outputs.LogAnalytics.GetNamespaceStorageOverlappingRecallsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly namespace: string; /** * The list of overlapping_recall_collection. */ readonly overlappingRecallCollections: outputs.LogAnalytics.GetNamespaceStorageOverlappingRecallsOverlappingRecallCollection[]; /** * This is the end of the time range of the archival data */ readonly timeDataEnded?: string; /** * This is the start of the time range of the archival data */ readonly timeDataStarted?: string; } /** * This data source provides the list of Namespace Storage Overlapping Recalls in Oracle Cloud Infrastructure Log Analytics service. * * This API gets the list of overlapping recalls made in the given timeframe * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNamespaceStorageOverlappingRecalls = oci.loganalytics.getNamespaceStorageOverlappingRecalls({ * namespace: namespaceStorageOverlappingRecallNamespace, * timeDataEnded: namespaceStorageOverlappingRecallTimeDataEnded, * timeDataStarted: namespaceStorageOverlappingRecallTimeDataStarted, * }); * ``` */ export declare function getNamespaceStorageOverlappingRecallsOutput(args: GetNamespaceStorageOverlappingRecallsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNamespaceStorageOverlappingRecalls. */ export interface GetNamespaceStorageOverlappingRecallsOutputArgs { filters?: pulumi.Input[] | undefined>; /** * The Log Analytics namespace used for the request. The namespace can be obtained by running 'oci os ns get' */ namespace: pulumi.Input; /** * This is the end of the time range for recalled data */ timeDataEnded?: pulumi.Input; /** * This is the start of the time range for recalled data */ timeDataStarted?: pulumi.Input; } //# sourceMappingURL=getNamespaceStorageOverlappingRecalls.d.ts.map