import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Namespace Storage Recall Count resource in Oracle Cloud Infrastructure Log Analytics service. * * This API gets the number of recalls made and the maximum recalls that can be made * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNamespaceStorageRecallCount = oci.loganalytics.getNamespaceStorageRecallCount({ * namespace: namespaceStorageRecallCountNamespace, * }); * ``` */ export declare function getNamespaceStorageRecallCount(args: GetNamespaceStorageRecallCountArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getNamespaceStorageRecallCount. */ export interface GetNamespaceStorageRecallCountArgs { /** * The Log Analytics namespace used for the request. The namespace can be obtained by running 'oci os ns get' */ namespace: string; } /** * A collection of values returned by getNamespaceStorageRecallCount. */ export interface GetNamespaceStorageRecallCountResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly namespace: string; /** * This is the total number of recalls made so far */ readonly recallCount: number; /** * This is the number of recalls that failed */ readonly recallFailed: number; /** * This is the maximum number of recalls (including successful and pending recalls) allowed */ readonly recallLimit: number; /** * This is the number of recalls in pending state */ readonly recallPending: number; /** * This is the number of recalls that succeeded */ readonly recallSucceeded: number; } /** * This data source provides details about a specific Namespace Storage Recall Count resource in Oracle Cloud Infrastructure Log Analytics service. * * This API gets the number of recalls made and the maximum recalls that can be made * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testNamespaceStorageRecallCount = oci.loganalytics.getNamespaceStorageRecallCount({ * namespace: namespaceStorageRecallCountNamespace, * }); * ``` */ export declare function getNamespaceStorageRecallCountOutput(args: GetNamespaceStorageRecallCountOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getNamespaceStorageRecallCount. */ export interface GetNamespaceStorageRecallCountOutputArgs { /** * The Log Analytics namespace used for the request. The namespace can be obtained by running 'oci os ns get' */ namespace: pulumi.Input; } //# sourceMappingURL=getNamespaceStorageRecallCount.d.ts.map