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 Collected Audit Volumes in Oracle Cloud Infrastructure Data Safe service. * * Gets a list of all collected audit volume data points. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAuditProfileCollectedAuditVolumes = oci.datasafe.getAuditProfileCollectedAuditVolumes({ * auditProfileId: testAuditProfile.id, * workRequestId: testWorkRequest.id, * monthInConsiderationGreaterThan: auditProfileCollectedAuditVolumeMonthInConsiderationGreaterThan, * monthInConsiderationLessThan: auditProfileCollectedAuditVolumeMonthInConsiderationLessThan, * }); * ``` */ export declare function getAuditProfileCollectedAuditVolumes(args: GetAuditProfileCollectedAuditVolumesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAuditProfileCollectedAuditVolumes. */ export interface GetAuditProfileCollectedAuditVolumesArgs { /** * The OCID of the audit. */ auditProfileId: string; filters?: inputs.DataSafe.GetAuditProfileCollectedAuditVolumesFilter[]; /** * 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 OCID of the work request. */ workRequestId: string; } /** * A collection of values returned by getAuditProfileCollectedAuditVolumes. */ export interface GetAuditProfileCollectedAuditVolumesResult { /** * The OCID of the audit profile resource. */ readonly auditProfileId: string; /** * The list of collected_audit_volume_collection. */ readonly collectedAuditVolumeCollections: outputs.DataSafe.GetAuditProfileCollectedAuditVolumesCollectedAuditVolumeCollection[]; readonly filters?: outputs.DataSafe.GetAuditProfileCollectedAuditVolumesFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly monthInConsiderationGreaterThan?: string; readonly monthInConsiderationLessThan?: string; readonly workRequestId: string; } /** * This data source provides the list of Audit Profile Collected Audit Volumes in Oracle Cloud Infrastructure Data Safe service. * * Gets a list of all collected audit volume data points. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testAuditProfileCollectedAuditVolumes = oci.datasafe.getAuditProfileCollectedAuditVolumes({ * auditProfileId: testAuditProfile.id, * workRequestId: testWorkRequest.id, * monthInConsiderationGreaterThan: auditProfileCollectedAuditVolumeMonthInConsiderationGreaterThan, * monthInConsiderationLessThan: auditProfileCollectedAuditVolumeMonthInConsiderationLessThan, * }); * ``` */ export declare function getAuditProfileCollectedAuditVolumesOutput(args: GetAuditProfileCollectedAuditVolumesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAuditProfileCollectedAuditVolumes. */ export interface GetAuditProfileCollectedAuditVolumesOutputArgs { /** * 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 OCID of the work request. */ workRequestId: pulumi.Input; } //# sourceMappingURL=getAuditProfileCollectedAuditVolumes.d.ts.map