import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Audit Profile Collected Audit Volume resource 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 testAuditProfileCollectedAuditVolume = oci.datasafe.getAuditProfileCollectedAuditVolume({ * auditProfileId: testAuditProfile.id, * workRequestId: testWorkRequest.id, * monthInConsiderationGreaterThan: auditProfileCollectedAuditVolumeMonthInConsiderationGreaterThan, * monthInConsiderationLessThan: auditProfileCollectedAuditVolumeMonthInConsiderationLessThan, * }); * ``` */ export declare function getAuditProfileCollectedAuditVolume(args: GetAuditProfileCollectedAuditVolumeArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getAuditProfileCollectedAuditVolume. */ export interface GetAuditProfileCollectedAuditVolumeArgs { /** * 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 OCID of the work request. */ workRequestId: string; } /** * A collection of values returned by getAuditProfileCollectedAuditVolume. */ export interface GetAuditProfileCollectedAuditVolumeResult { /** * The OCID of the audit profile resource. */ readonly auditProfileId: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Array of collected audit volume summary. */ readonly items: outputs.DataSafe.GetAuditProfileCollectedAuditVolumeItem[]; readonly monthInConsiderationGreaterThan?: string; readonly monthInConsiderationLessThan?: string; readonly workRequestId: string; } /** * This data source provides details about a specific Audit Profile Collected Audit Volume resource 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 testAuditProfileCollectedAuditVolume = oci.datasafe.getAuditProfileCollectedAuditVolume({ * auditProfileId: testAuditProfile.id, * workRequestId: testWorkRequest.id, * monthInConsiderationGreaterThan: auditProfileCollectedAuditVolumeMonthInConsiderationGreaterThan, * monthInConsiderationLessThan: auditProfileCollectedAuditVolumeMonthInConsiderationLessThan, * }); * ``` */ export declare function getAuditProfileCollectedAuditVolumeOutput(args: GetAuditProfileCollectedAuditVolumeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getAuditProfileCollectedAuditVolume. */ export interface GetAuditProfileCollectedAuditVolumeOutputArgs { /** * 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 OCID of the work request. */ workRequestId: pulumi.Input; } //# sourceMappingURL=getAuditProfileCollectedAuditVolume.d.ts.map