import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Security Policy Report resource in Oracle Cloud Infrastructure Data Safe service. * * Gets a security policy report by the specified OCID of the security policy report resource. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSecurityPolicyReport = oci.datasafe.getSecurityPolicyReport({ * securityPolicyReportId: testSecurityPolicyReportOciDataSafeSecurityPolicyReport.id, * }); * ``` */ export declare function getSecurityPolicyReport(args: GetSecurityPolicyReportArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSecurityPolicyReport. */ export interface GetSecurityPolicyReportArgs { /** * The OCID of the security policy report resource. */ securityPolicyReportId: string; } /** * A collection of values returned by getSecurityPolicyReport. */ export interface GetSecurityPolicyReportResult { /** * The OCID of the compartment that contains the security policy report. */ 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 security policy report. */ readonly description: string; /** * The display name of the security policy report. */ 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 provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Details about the current state of the security policy report. */ readonly lifecycleDetails: string; readonly securityPolicyReportId: string; /** * The current state of the security policy report. */ 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 OCID of the of the target database. */ readonly targetId: string; /** * The date and time the security policy report was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). */ readonly timeCreated: string; /** * The date and time the security policy report was last updated, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339). */ readonly timeUpdated: string; } /** * This data source provides details about a specific Security Policy Report resource in Oracle Cloud Infrastructure Data Safe service. * * Gets a security policy report by the specified OCID of the security policy report resource. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSecurityPolicyReport = oci.datasafe.getSecurityPolicyReport({ * securityPolicyReportId: testSecurityPolicyReportOciDataSafeSecurityPolicyReport.id, * }); * ``` */ export declare function getSecurityPolicyReportOutput(args: GetSecurityPolicyReportOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSecurityPolicyReport. */ export interface GetSecurityPolicyReportOutputArgs { /** * The OCID of the security policy report resource. */ securityPolicyReportId: pulumi.Input; } //# sourceMappingURL=getSecurityPolicyReport.d.ts.map