import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Calculate Audit Volume Collected resource in Oracle Cloud Infrastructure Data Safe service. * * Calculates the volume of audit events collected by data safe. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testCalculateAuditVolumeCollected = new oci.datasafe.CalculateAuditVolumeCollected("test_calculate_audit_volume_collected", { * auditProfileId: testAuditProfile.id, * timeFromMonth: calculateAuditVolumeCollectedTimeFromMonth, * timeToMonth: calculateAuditVolumeCollectedTimeToMonth, * }); * ``` * * ## Import * * CalculateAuditVolumeCollected can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:DataSafe/calculateAuditVolumeCollected:CalculateAuditVolumeCollected test_calculate_audit_volume_collected "id" * ``` */ export declare class CalculateAuditVolumeCollected extends pulumi.CustomResource { /** * Get an existing CalculateAuditVolumeCollected resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: CalculateAuditVolumeCollectedState, opts?: pulumi.CustomResourceOptions): CalculateAuditVolumeCollected; /** * Returns true if the given object is an instance of CalculateAuditVolumeCollected. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is CalculateAuditVolumeCollected; /** * The OCID of the audit. */ readonly auditProfileId: pulumi.Output; /** * List of collected audit volumes. */ readonly collectedAuditVolumes: pulumi.Output; /** * The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339. */ readonly timeFromMonth: pulumi.Output; /** * The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339. If not specified, this will default to the current date. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ readonly timeToMonth: pulumi.Output; /** * Create a CalculateAuditVolumeCollected resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: CalculateAuditVolumeCollectedArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering CalculateAuditVolumeCollected resources. */ export interface CalculateAuditVolumeCollectedState { /** * The OCID of the audit. */ auditProfileId?: pulumi.Input; /** * List of collected audit volumes. */ collectedAuditVolumes?: pulumi.Input[] | undefined>; /** * The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339. */ timeFromMonth?: pulumi.Input; /** * The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339. If not specified, this will default to the current date. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ timeToMonth?: pulumi.Input; } /** * The set of arguments for constructing a CalculateAuditVolumeCollected resource. */ export interface CalculateAuditVolumeCollectedArgs { /** * The OCID of the audit. */ auditProfileId: pulumi.Input; /** * The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339. */ timeFromMonth: pulumi.Input; /** * The date from which the audit volume collected by data safe has to be calculated, in the format defined by RFC3339. If not specified, this will default to the current date. * * ** IMPORTANT ** * Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values */ timeToMonth?: pulumi.Input; } //# sourceMappingURL=calculateAuditVolumeCollected.d.ts.map