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 Audit Profile Available Audit Volumes 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 testAuditProfileAvailableAuditVolumes = oci.datasafe.getAuditProfileAvailableAuditVolumes({ * auditProfileId: testAuditProfile.id, * workRequestId: testWorkRequest.id, * monthInConsiderationGreaterThan: auditProfileAvailableAuditVolumeMonthInConsiderationGreaterThan, * monthInConsiderationLessThan: auditProfileAvailableAuditVolumeMonthInConsiderationLessThan, * trailLocation: auditProfileAvailableAuditVolumeTrailLocation, * }); * ``` */ export declare function getAuditProfileAvailableAuditVolumes(args: GetAuditProfileAvailableAuditVolumesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAuditProfileAvailableAuditVolumes. */ export interface GetAuditProfileAvailableAuditVolumesArgs { /** * The OCID of the audit. */ auditProfileId: string; filters?: inputs.DataSafe.GetAuditProfileAvailableAuditVolumesFilter[]; /** * 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 getAuditProfileAvailableAuditVolumes. */ export interface GetAuditProfileAvailableAuditVolumesResult { /** * The OCID of the audit profile resource. */ readonly auditProfileId: string; /** * The list of available_audit_volume_collection. */ readonly availableAuditVolumeCollections: outputs.DataSafe.GetAuditProfileAvailableAuditVolumesAvailableAuditVolumeCollection[]; readonly filters?: outputs.DataSafe.GetAuditProfileAvailableAuditVolumesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; 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 the list of Audit Profile Available Audit Volumes 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 testAuditProfileAvailableAuditVolumes = oci.datasafe.getAuditProfileAvailableAuditVolumes({ * auditProfileId: testAuditProfile.id, * workRequestId: testWorkRequest.id, * monthInConsiderationGreaterThan: auditProfileAvailableAuditVolumeMonthInConsiderationGreaterThan, * monthInConsiderationLessThan: auditProfileAvailableAuditVolumeMonthInConsiderationLessThan, * trailLocation: auditProfileAvailableAuditVolumeTrailLocation, * }); * ``` */ export declare function getAuditProfileAvailableAuditVolumesOutput(args: GetAuditProfileAvailableAuditVolumesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAuditProfileAvailableAuditVolumes. */ export interface GetAuditProfileAvailableAuditVolumesOutputArgs { /** * The OCID of the audit. */ auditProfileId: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * 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=getAuditProfileAvailableAuditVolumes.d.ts.map