import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Configuration resource in Oracle Cloud Infrastructure Audit service. * * Get the configuration * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testConfiguration = oci.audit.getConfiguration({ * compartmentId: tenancyOcid, * }); * ``` */ export declare function getConfiguration(args: GetConfigurationArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getConfiguration. */ export interface GetConfigurationArgs { /** * ID of the root compartment (tenancy) */ compartmentId: string; } /** * A collection of values returned by getConfiguration. */ export interface GetConfigurationResult { readonly compartmentId: string; readonly id: string; /** * The retention period setting, specified in days. The minimum is 90, the maximum 365. Example: `90` */ readonly retentionPeriodDays: number; } /** * This data source provides details about a specific Configuration resource in Oracle Cloud Infrastructure Audit service. * * Get the configuration * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testConfiguration = oci.audit.getConfiguration({ * compartmentId: tenancyOcid, * }); * ``` */ export declare function getConfigurationOutput(args: GetConfigurationOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getConfiguration. */ export interface GetConfigurationOutputArgs { /** * ID of the root compartment (tenancy) */ compartmentId: pulumi.Input; } //# sourceMappingURL=getConfiguration.d.ts.map