import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Security Policy Deployment resource in Oracle Cloud Infrastructure Data Safe service. * * Gets a security policy deployment by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSecurityPolicyDeployment = oci.datasafe.getSecurityPolicyDeployment({ * securityPolicyDeploymentId: testSecurityPolicyDeploymentOciDataSafeSecurityPolicyDeployment.id, * }); * ``` */ export declare function getSecurityPolicyDeployment(args: GetSecurityPolicyDeploymentArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSecurityPolicyDeployment. */ export interface GetSecurityPolicyDeploymentArgs { /** * The OCID of the security policy deployment resource. */ securityPolicyDeploymentId: string; } /** * A collection of values returned by getSecurityPolicyDeployment. */ export interface GetSecurityPolicyDeploymentResult { /** * The OCID of the compartment containing the security policy deployment. */ 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; }; readonly deployTrigger: number; /** * The description of the security policy deployment. */ readonly description: string; /** * The display name of the security policy deployment. */ 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 security policy deployment. */ readonly id: string; /** * Details about the current state of the security policy deployment in Data Safe. */ readonly lifecycleDetails: string; readonly refreshTrigger: number; readonly securityPolicyDeploymentId: string; /** * The OCID of the security policy corresponding to the security policy deployment. */ readonly securityPolicyId: string; /** * The current state of the security policy deployment. */ 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 target/target group where the security policy is deployed. */ readonly targetId: string; /** * Indicates whether the security policy deployment is for a target database or a target database group. */ readonly targetType: string; /** * The time that the security policy deployment was created, in the format defined by RFC3339. */ readonly timeCreated: string; /** * The last date and time the security policy was deployed, in the format defined by RFC3339. */ readonly timeDeployed: string; /** * The last date and time the security policy deployment was updated, in the format defined by RFC3339. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Security Policy Deployment resource in Oracle Cloud Infrastructure Data Safe service. * * Gets a security policy deployment by identifier. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSecurityPolicyDeployment = oci.datasafe.getSecurityPolicyDeployment({ * securityPolicyDeploymentId: testSecurityPolicyDeploymentOciDataSafeSecurityPolicyDeployment.id, * }); * ``` */ export declare function getSecurityPolicyDeploymentOutput(args: GetSecurityPolicyDeploymentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSecurityPolicyDeployment. */ export interface GetSecurityPolicyDeploymentOutputArgs { /** * The OCID of the security policy deployment resource. */ securityPolicyDeploymentId: pulumi.Input; } //# sourceMappingURL=getSecurityPolicyDeployment.d.ts.map