import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Unified Audit Policy Definition resource in Oracle Cloud Infrastructure Data Safe service. * * Gets a unified audit policy definition by the specified OCID of the unified audit policy definition resource. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testUnifiedAuditPolicyDefinition = oci.datasafe.getUnifiedAuditPolicyDefinition({ * unifiedAuditPolicyDefinitionId: testUnifiedAuditPolicyDefinitionOciDataSafeUnifiedAuditPolicyDefinition.id, * }); * ``` */ export declare function getUnifiedAuditPolicyDefinition(args: GetUnifiedAuditPolicyDefinitionArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getUnifiedAuditPolicyDefinition. */ export interface GetUnifiedAuditPolicyDefinitionArgs { /** * The OCID of the unified audit policy definition resource. */ unifiedAuditPolicyDefinitionId: string; } /** * A collection of values returned by getUnifiedAuditPolicyDefinition. */ export interface GetUnifiedAuditPolicyDefinitionResult { /** * The category to which the unified audit policy belongs in the target database. */ readonly auditPolicyCategory: string; /** * The OCID of the compartment containing the unified audit policy definition. */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * The description of the unified audit policy definition. */ readonly description: string; /** * The display name of the unified audit policy definition. */ readonly displayName: string; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm) Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The OCID of the unified audit policy definition. */ readonly id: string; /** * Signifies whether the unified audit policy definition is seeded or not. */ readonly isSeeded: boolean; /** * Details about the current state of the unified audit policy definition. */ readonly lifecycleDetails: string; /** * The definition of the unified audit policy to be provisioned in the target database. */ readonly policyDefinitionStatement: string; /** * The unified audit policy name in the target database. */ readonly policyName: string; /** * The current state of the unified audit policy definition. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The time the unified audit policy was created, in the format defined by RFC3339. */ readonly timeCreated: string; /** * The last date and time the unified audit policy was updated, in the format defined by RFC3339. */ readonly timeUpdated: string; readonly unifiedAuditPolicyDefinitionId: string; } /** * This data source provides details about a specific Unified Audit Policy Definition resource in Oracle Cloud Infrastructure Data Safe service. * * Gets a unified audit policy definition by the specified OCID of the unified audit policy definition resource. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testUnifiedAuditPolicyDefinition = oci.datasafe.getUnifiedAuditPolicyDefinition({ * unifiedAuditPolicyDefinitionId: testUnifiedAuditPolicyDefinitionOciDataSafeUnifiedAuditPolicyDefinition.id, * }); * ``` */ export declare function getUnifiedAuditPolicyDefinitionOutput(args: GetUnifiedAuditPolicyDefinitionOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getUnifiedAuditPolicyDefinition. */ export interface GetUnifiedAuditPolicyDefinitionOutputArgs { /** * The OCID of the unified audit policy definition resource. */ unifiedAuditPolicyDefinitionId: pulumi.Input; } //# sourceMappingURL=getUnifiedAuditPolicyDefinition.d.ts.map