import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Audit Profile Available Audit Volume resource in Oracle Cloud Infrastructure Data Safe service. * * Retrieves a list of audit trails, and associated audit event volume for each trail up to defined start date. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAuditProfileAvailableAuditVolume = oci.datasafe.getAuditProfileAvailableAuditVolume({ * auditProfileId: testAuditProfile.id, * workRequestId: testWorkRequest.id, * monthInConsiderationGreaterThan: auditProfileAvailableAuditVolumeMonthInConsiderationGreaterThan, * monthInConsiderationLessThan: auditProfileAvailableAuditVolumeMonthInConsiderationLessThan, * trailLocation: auditProfileAvailableAuditVolumeTrailLocation, * }); * ``` */ export declare function getAuditProfileAvailableAuditVolume(args: GetAuditProfileAvailableAuditVolumeArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAuditProfileAvailableAuditVolume. */ export interface GetAuditProfileAvailableAuditVolumeArgs { /** * The OCID of the audit. */ auditProfileId: string; /** * Specifying `monthInConsiderationGreaterThan` parameter will retrieve all items for which the event month is greater than the date and time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). * * **Example:** 2016-12-19T00:00:00.000Z */ monthInConsiderationGreaterThan?: string; /** * Specifying `monthInConsiderationLessThan` parameter will retrieve all items for which the event month is less than the date and time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). * * **Example:** 2016-12-19T00:00:00.000Z */ monthInConsiderationLessThan?: string; /** * The audit trail location. */ trailLocation?: string; /** * The OCID of the work request. */ workRequestId: string; } /** * A collection of values returned by getAuditProfileAvailableAuditVolume. */ export interface GetAuditProfileAvailableAuditVolumeResult { /** * The OCID of the audit profile resource. */ readonly auditProfileId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Array of available audit volume summary. */ readonly items: outputs.DataSafe.GetAuditProfileAvailableAuditVolumeItem[]; readonly monthInConsiderationGreaterThan?: string; readonly monthInConsiderationLessThan?: string; /** * Audit trail location on the target database from where the audit data is being collected by Data Safe. */ readonly trailLocation?: string; readonly workRequestId: string; } /** * This data source provides details about a specific Audit Profile Available Audit Volume resource in Oracle Cloud Infrastructure Data Safe service. * * Retrieves a list of audit trails, and associated audit event volume for each trail up to defined start date. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAuditProfileAvailableAuditVolume = oci.datasafe.getAuditProfileAvailableAuditVolume({ * auditProfileId: testAuditProfile.id, * workRequestId: testWorkRequest.id, * monthInConsiderationGreaterThan: auditProfileAvailableAuditVolumeMonthInConsiderationGreaterThan, * monthInConsiderationLessThan: auditProfileAvailableAuditVolumeMonthInConsiderationLessThan, * trailLocation: auditProfileAvailableAuditVolumeTrailLocation, * }); * ``` */ export declare function getAuditProfileAvailableAuditVolumeOutput(args: GetAuditProfileAvailableAuditVolumeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAuditProfileAvailableAuditVolume. */ export interface GetAuditProfileAvailableAuditVolumeOutputArgs { /** * The OCID of the audit. */ auditProfileId: pulumi.Input; /** * Specifying `monthInConsiderationGreaterThan` parameter will retrieve all items for which the event month is greater than the date and time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). * * **Example:** 2016-12-19T00:00:00.000Z */ monthInConsiderationGreaterThan?: pulumi.Input; /** * Specifying `monthInConsiderationLessThan` parameter will retrieve all items for which the event month is less than the date and time specified, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). * * **Example:** 2016-12-19T00:00:00.000Z */ monthInConsiderationLessThan?: pulumi.Input; /** * The audit trail location. */ trailLocation?: pulumi.Input; /** * The OCID of the work request. */ workRequestId: pulumi.Input; } //# sourceMappingURL=getAuditProfileAvailableAuditVolume.d.ts.map