1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. SecurityPolicyDeploymentManagement
Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi

oci.DataSafe.SecurityPolicyDeploymentManagement

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi

    This resource provides the Security Policy Deployment Management resource in Oracle Cloud Infrastructure Data Safe service.

    Creates a Data Safe security policy deployment in the Data Safe Console.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testSecurityPolicyDeploymentManagement = new oci.datasafe.SecurityPolicyDeploymentManagement("test_security_policy_deployment_management", {
        compartmentId: compartmentId,
        securityPolicyId: testSecurityPolicy.id,
        targetId: testTarget.id,
        targetType: securityPolicyDeploymentManagementTargetType,
        definedTags: {
            "Operations.CostCenter": "42",
        },
        description: securityPolicyDeploymentManagementDescription,
        displayName: securityPolicyDeploymentManagementDisplayName,
        freeformTags: {
            Department: "Finance",
        },
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_security_policy_deployment_management = oci.datasafe.SecurityPolicyDeploymentManagement("test_security_policy_deployment_management",
        compartment_id=compartment_id,
        security_policy_id=test_security_policy["id"],
        target_id=test_target["id"],
        target_type=security_policy_deployment_management_target_type,
        defined_tags={
            "Operations.CostCenter": "42",
        },
        description=security_policy_deployment_management_description,
        display_name=security_policy_deployment_management_display_name,
        freeform_tags={
            "Department": "Finance",
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/datasafe"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := datasafe.NewSecurityPolicyDeploymentManagement(ctx, "test_security_policy_deployment_management", &datasafe.SecurityPolicyDeploymentManagementArgs{
    			CompartmentId:    pulumi.Any(compartmentId),
    			SecurityPolicyId: pulumi.Any(testSecurityPolicy.Id),
    			TargetId:         pulumi.Any(testTarget.Id),
    			TargetType:       pulumi.Any(securityPolicyDeploymentManagementTargetType),
    			DefinedTags: pulumi.StringMap{
    				"Operations.CostCenter": pulumi.String("42"),
    			},
    			Description: pulumi.Any(securityPolicyDeploymentManagementDescription),
    			DisplayName: pulumi.Any(securityPolicyDeploymentManagementDisplayName),
    			FreeformTags: pulumi.StringMap{
    				"Department": pulumi.String("Finance"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testSecurityPolicyDeploymentManagement = new Oci.DataSafe.SecurityPolicyDeploymentManagement("test_security_policy_deployment_management", new()
        {
            CompartmentId = compartmentId,
            SecurityPolicyId = testSecurityPolicy.Id,
            TargetId = testTarget.Id,
            TargetType = securityPolicyDeploymentManagementTargetType,
            DefinedTags = 
            {
                { "Operations.CostCenter", "42" },
            },
            Description = securityPolicyDeploymentManagementDescription,
            DisplayName = securityPolicyDeploymentManagementDisplayName,
            FreeformTags = 
            {
                { "Department", "Finance" },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DataSafe.SecurityPolicyDeploymentManagement;
    import com.pulumi.oci.DataSafe.SecurityPolicyDeploymentManagementArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var testSecurityPolicyDeploymentManagement = new SecurityPolicyDeploymentManagement("testSecurityPolicyDeploymentManagement", SecurityPolicyDeploymentManagementArgs.builder()
                .compartmentId(compartmentId)
                .securityPolicyId(testSecurityPolicy.id())
                .targetId(testTarget.id())
                .targetType(securityPolicyDeploymentManagementTargetType)
                .definedTags(Map.of("Operations.CostCenter", "42"))
                .description(securityPolicyDeploymentManagementDescription)
                .displayName(securityPolicyDeploymentManagementDisplayName)
                .freeformTags(Map.of("Department", "Finance"))
                .build());
    
        }
    }
    
    resources:
      testSecurityPolicyDeploymentManagement:
        type: oci:DataSafe:SecurityPolicyDeploymentManagement
        name: test_security_policy_deployment_management
        properties:
          compartmentId: ${compartmentId}
          securityPolicyId: ${testSecurityPolicy.id}
          targetId: ${testTarget.id}
          targetType: ${securityPolicyDeploymentManagementTargetType}
          definedTags:
            Operations.CostCenter: '42'
          description: ${securityPolicyDeploymentManagementDescription}
          displayName: ${securityPolicyDeploymentManagementDisplayName}
          freeformTags:
            Department: Finance
    

    Create SecurityPolicyDeploymentManagement Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new SecurityPolicyDeploymentManagement(name: string, args: SecurityPolicyDeploymentManagementArgs, opts?: CustomResourceOptions);
    @overload
    def SecurityPolicyDeploymentManagement(resource_name: str,
                                           args: SecurityPolicyDeploymentManagementArgs,
                                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def SecurityPolicyDeploymentManagement(resource_name: str,
                                           opts: Optional[ResourceOptions] = None,
                                           compartment_id: Optional[str] = None,
                                           security_policy_id: Optional[str] = None,
                                           target_id: Optional[str] = None,
                                           target_type: Optional[str] = None,
                                           defined_tags: Optional[Mapping[str, str]] = None,
                                           deploy_trigger: Optional[int] = None,
                                           description: Optional[str] = None,
                                           display_name: Optional[str] = None,
                                           freeform_tags: Optional[Mapping[str, str]] = None,
                                           refresh_trigger: Optional[int] = None)
    func NewSecurityPolicyDeploymentManagement(ctx *Context, name string, args SecurityPolicyDeploymentManagementArgs, opts ...ResourceOption) (*SecurityPolicyDeploymentManagement, error)
    public SecurityPolicyDeploymentManagement(string name, SecurityPolicyDeploymentManagementArgs args, CustomResourceOptions? opts = null)
    public SecurityPolicyDeploymentManagement(String name, SecurityPolicyDeploymentManagementArgs args)
    public SecurityPolicyDeploymentManagement(String name, SecurityPolicyDeploymentManagementArgs args, CustomResourceOptions options)
    
    type: oci:DataSafe:SecurityPolicyDeploymentManagement
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args SecurityPolicyDeploymentManagementArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args SecurityPolicyDeploymentManagementArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args SecurityPolicyDeploymentManagementArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args SecurityPolicyDeploymentManagementArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args SecurityPolicyDeploymentManagementArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var securityPolicyDeploymentManagementResource = new Oci.DataSafe.SecurityPolicyDeploymentManagement("securityPolicyDeploymentManagementResource", new()
    {
        CompartmentId = "string",
        SecurityPolicyId = "string",
        TargetId = "string",
        TargetType = "string",
        DefinedTags = 
        {
            { "string", "string" },
        },
        DeployTrigger = 0,
        Description = "string",
        DisplayName = "string",
        FreeformTags = 
        {
            { "string", "string" },
        },
        RefreshTrigger = 0,
    });
    
    example, err := datasafe.NewSecurityPolicyDeploymentManagement(ctx, "securityPolicyDeploymentManagementResource", &datasafe.SecurityPolicyDeploymentManagementArgs{
    	CompartmentId:    pulumi.String("string"),
    	SecurityPolicyId: pulumi.String("string"),
    	TargetId:         pulumi.String("string"),
    	TargetType:       pulumi.String("string"),
    	DefinedTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	DeployTrigger: pulumi.Int(0),
    	Description:   pulumi.String("string"),
    	DisplayName:   pulumi.String("string"),
    	FreeformTags: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	RefreshTrigger: pulumi.Int(0),
    })
    
    var securityPolicyDeploymentManagementResource = new SecurityPolicyDeploymentManagement("securityPolicyDeploymentManagementResource", SecurityPolicyDeploymentManagementArgs.builder()
        .compartmentId("string")
        .securityPolicyId("string")
        .targetId("string")
        .targetType("string")
        .definedTags(Map.of("string", "string"))
        .deployTrigger(0)
        .description("string")
        .displayName("string")
        .freeformTags(Map.of("string", "string"))
        .refreshTrigger(0)
        .build());
    
    security_policy_deployment_management_resource = oci.datasafe.SecurityPolicyDeploymentManagement("securityPolicyDeploymentManagementResource",
        compartment_id="string",
        security_policy_id="string",
        target_id="string",
        target_type="string",
        defined_tags={
            "string": "string",
        },
        deploy_trigger=0,
        description="string",
        display_name="string",
        freeform_tags={
            "string": "string",
        },
        refresh_trigger=0)
    
    const securityPolicyDeploymentManagementResource = new oci.datasafe.SecurityPolicyDeploymentManagement("securityPolicyDeploymentManagementResource", {
        compartmentId: "string",
        securityPolicyId: "string",
        targetId: "string",
        targetType: "string",
        definedTags: {
            string: "string",
        },
        deployTrigger: 0,
        description: "string",
        displayName: "string",
        freeformTags: {
            string: "string",
        },
        refreshTrigger: 0,
    });
    
    type: oci:DataSafe:SecurityPolicyDeploymentManagement
    properties:
        compartmentId: string
        definedTags:
            string: string
        deployTrigger: 0
        description: string
        displayName: string
        freeformTags:
            string: string
        refreshTrigger: 0
        securityPolicyId: string
        targetId: string
        targetType: string
    

    SecurityPolicyDeploymentManagement Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The SecurityPolicyDeploymentManagement resource accepts the following input properties:

    CompartmentId string
    (Updatable) The OCID of the compartment in which to create the unified audit policy.
    SecurityPolicyId string
    The OCID of the security policy corresponding to the security policy deployment.
    TargetId string
    The OCID of the target where the security policy is deployed.
    TargetType string
    Indicates whether the security policy deployment is for a target database or a target database group.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    DeployTrigger int
    (Updatable) An optional property when incremented triggers Deploy. Could be set to any integer value.
    Description string
    (Updatable) The description of the security policy.
    DisplayName string
    (Updatable) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.
    FreeformTags Dictionary<string, string>
    (Updatable) 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 Example: {"Department": "Finance"}
    RefreshTrigger int

    (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.

    ** 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

    CompartmentId string
    (Updatable) The OCID of the compartment in which to create the unified audit policy.
    SecurityPolicyId string
    The OCID of the security policy corresponding to the security policy deployment.
    TargetId string
    The OCID of the target where the security policy is deployed.
    TargetType string
    Indicates whether the security policy deployment is for a target database or a target database group.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    DeployTrigger int
    (Updatable) An optional property when incremented triggers Deploy. Could be set to any integer value.
    Description string
    (Updatable) The description of the security policy.
    DisplayName string
    (Updatable) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.
    FreeformTags map[string]string
    (Updatable) 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 Example: {"Department": "Finance"}
    RefreshTrigger int

    (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.

    ** 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

    compartmentId String
    (Updatable) The OCID of the compartment in which to create the unified audit policy.
    securityPolicyId String
    The OCID of the security policy corresponding to the security policy deployment.
    targetId String
    The OCID of the target where the security policy is deployed.
    targetType String
    Indicates whether the security policy deployment is for a target database or a target database group.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    deployTrigger Integer
    (Updatable) An optional property when incremented triggers Deploy. Could be set to any integer value.
    description String
    (Updatable) The description of the security policy.
    displayName String
    (Updatable) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.
    freeformTags Map<String,String>
    (Updatable) 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 Example: {"Department": "Finance"}
    refreshTrigger Integer

    (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.

    ** 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

    compartmentId string
    (Updatable) The OCID of the compartment in which to create the unified audit policy.
    securityPolicyId string
    The OCID of the security policy corresponding to the security policy deployment.
    targetId string
    The OCID of the target where the security policy is deployed.
    targetType string
    Indicates whether the security policy deployment is for a target database or a target database group.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    deployTrigger number
    (Updatable) An optional property when incremented triggers Deploy. Could be set to any integer value.
    description string
    (Updatable) The description of the security policy.
    displayName string
    (Updatable) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.
    freeformTags {[key: string]: string}
    (Updatable) 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 Example: {"Department": "Finance"}
    refreshTrigger number

    (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.

    ** 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

    compartment_id str
    (Updatable) The OCID of the compartment in which to create the unified audit policy.
    security_policy_id str
    The OCID of the security policy corresponding to the security policy deployment.
    target_id str
    The OCID of the target where the security policy is deployed.
    target_type str
    Indicates whether the security policy deployment is for a target database or a target database group.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    deploy_trigger int
    (Updatable) An optional property when incremented triggers Deploy. Could be set to any integer value.
    description str
    (Updatable) The description of the security policy.
    display_name str
    (Updatable) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.
    freeform_tags Mapping[str, str]
    (Updatable) 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 Example: {"Department": "Finance"}
    refresh_trigger int

    (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.

    ** 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

    compartmentId String
    (Updatable) The OCID of the compartment in which to create the unified audit policy.
    securityPolicyId String
    The OCID of the security policy corresponding to the security policy deployment.
    targetId String
    The OCID of the target where the security policy is deployed.
    targetType String
    Indicates whether the security policy deployment is for a target database or a target database group.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    deployTrigger Number
    (Updatable) An optional property when incremented triggers Deploy. Could be set to any integer value.
    description String
    (Updatable) The description of the security policy.
    displayName String
    (Updatable) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.
    freeformTags Map<String>
    (Updatable) 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 Example: {"Department": "Finance"}
    refreshTrigger Number

    (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.

    ** 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

    Outputs

    All input properties are implicitly available as output properties. Additionally, the SecurityPolicyDeploymentManagement resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    Details about the current state of the security policy deployment in Data Safe.
    State string
    The current state of the security policy deployment.
    SystemTags Dictionary<string, 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"}
    TimeCreated string
    The time that the security policy deployment was created, in the format defined by RFC3339.
    TimeDeployed string
    The last date and time the security policy was deployed, in the format defined by RFC3339.
    TimeUpdated string
    The last date and time the security policy deployment was updated, in the format defined by RFC3339.
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    Details about the current state of the security policy deployment in Data Safe.
    State string
    The current state of the security policy deployment.
    SystemTags map[string]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"}
    TimeCreated string
    The time that the security policy deployment was created, in the format defined by RFC3339.
    TimeDeployed string
    The last date and time the security policy was deployed, in the format defined by RFC3339.
    TimeUpdated string
    The last date and time the security policy deployment was updated, in the format defined by RFC3339.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    Details about the current state of the security policy deployment in Data Safe.
    state String
    The current state of the security policy deployment.
    systemTags Map<String,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"}
    timeCreated String
    The time that the security policy deployment was created, in the format defined by RFC3339.
    timeDeployed String
    The last date and time the security policy was deployed, in the format defined by RFC3339.
    timeUpdated String
    The last date and time the security policy deployment was updated, in the format defined by RFC3339.
    id string
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails string
    Details about the current state of the security policy deployment in Data Safe.
    state string
    The current state of the security policy deployment.
    systemTags {[key: string]: 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"}
    timeCreated string
    The time that the security policy deployment was created, in the format defined by RFC3339.
    timeDeployed string
    The last date and time the security policy was deployed, in the format defined by RFC3339.
    timeUpdated string
    The last date and time the security policy deployment was updated, in the format defined by RFC3339.
    id str
    The provider-assigned unique ID for this managed resource.
    lifecycle_details str
    Details about the current state of the security policy deployment in Data Safe.
    state str
    The current state of the security policy deployment.
    system_tags Mapping[str, str]
    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"}
    time_created str
    The time that the security policy deployment was created, in the format defined by RFC3339.
    time_deployed str
    The last date and time the security policy was deployed, in the format defined by RFC3339.
    time_updated str
    The last date and time the security policy deployment was updated, in the format defined by RFC3339.
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    Details about the current state of the security policy deployment in Data Safe.
    state String
    The current state of the security policy deployment.
    systemTags Map<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"}
    timeCreated String
    The time that the security policy deployment was created, in the format defined by RFC3339.
    timeDeployed String
    The last date and time the security policy was deployed, in the format defined by RFC3339.
    timeUpdated String
    The last date and time the security policy deployment was updated, in the format defined by RFC3339.

    Look up Existing SecurityPolicyDeploymentManagement Resource

    Get an existing SecurityPolicyDeploymentManagement resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: SecurityPolicyDeploymentManagementState, opts?: CustomResourceOptions): SecurityPolicyDeploymentManagement
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, str]] = None,
            deploy_trigger: Optional[int] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, str]] = None,
            lifecycle_details: Optional[str] = None,
            refresh_trigger: Optional[int] = None,
            security_policy_id: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, str]] = None,
            target_id: Optional[str] = None,
            target_type: Optional[str] = None,
            time_created: Optional[str] = None,
            time_deployed: Optional[str] = None,
            time_updated: Optional[str] = None) -> SecurityPolicyDeploymentManagement
    func GetSecurityPolicyDeploymentManagement(ctx *Context, name string, id IDInput, state *SecurityPolicyDeploymentManagementState, opts ...ResourceOption) (*SecurityPolicyDeploymentManagement, error)
    public static SecurityPolicyDeploymentManagement Get(string name, Input<string> id, SecurityPolicyDeploymentManagementState? state, CustomResourceOptions? opts = null)
    public static SecurityPolicyDeploymentManagement get(String name, Output<String> id, SecurityPolicyDeploymentManagementState state, CustomResourceOptions options)
    resources:  _:    type: oci:DataSafe:SecurityPolicyDeploymentManagement    get:      id: ${id}
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CompartmentId string
    (Updatable) The OCID of the compartment in which to create the unified audit policy.
    DefinedTags Dictionary<string, string>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    DeployTrigger int
    (Updatable) An optional property when incremented triggers Deploy. Could be set to any integer value.
    Description string
    (Updatable) The description of the security policy.
    DisplayName string
    (Updatable) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.
    FreeformTags Dictionary<string, string>
    (Updatable) 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 Example: {"Department": "Finance"}
    LifecycleDetails string
    Details about the current state of the security policy deployment in Data Safe.
    RefreshTrigger int

    (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.

    ** 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

    SecurityPolicyId string
    The OCID of the security policy corresponding to the security policy deployment.
    State string
    The current state of the security policy deployment.
    SystemTags Dictionary<string, 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"}
    TargetId string
    The OCID of the target where the security policy is deployed.
    TargetType string
    Indicates whether the security policy deployment is for a target database or a target database group.
    TimeCreated string
    The time that the security policy deployment was created, in the format defined by RFC3339.
    TimeDeployed string
    The last date and time the security policy was deployed, in the format defined by RFC3339.
    TimeUpdated string
    The last date and time the security policy deployment was updated, in the format defined by RFC3339.
    CompartmentId string
    (Updatable) The OCID of the compartment in which to create the unified audit policy.
    DefinedTags map[string]string
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    DeployTrigger int
    (Updatable) An optional property when incremented triggers Deploy. Could be set to any integer value.
    Description string
    (Updatable) The description of the security policy.
    DisplayName string
    (Updatable) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.
    FreeformTags map[string]string
    (Updatable) 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 Example: {"Department": "Finance"}
    LifecycleDetails string
    Details about the current state of the security policy deployment in Data Safe.
    RefreshTrigger int

    (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.

    ** 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

    SecurityPolicyId string
    The OCID of the security policy corresponding to the security policy deployment.
    State string
    The current state of the security policy deployment.
    SystemTags map[string]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"}
    TargetId string
    The OCID of the target where the security policy is deployed.
    TargetType string
    Indicates whether the security policy deployment is for a target database or a target database group.
    TimeCreated string
    The time that the security policy deployment was created, in the format defined by RFC3339.
    TimeDeployed string
    The last date and time the security policy was deployed, in the format defined by RFC3339.
    TimeUpdated string
    The last date and time the security policy deployment was updated, in the format defined by RFC3339.
    compartmentId String
    (Updatable) The OCID of the compartment in which to create the unified audit policy.
    definedTags Map<String,String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    deployTrigger Integer
    (Updatable) An optional property when incremented triggers Deploy. Could be set to any integer value.
    description String
    (Updatable) The description of the security policy.
    displayName String
    (Updatable) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.
    freeformTags Map<String,String>
    (Updatable) 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 Example: {"Department": "Finance"}
    lifecycleDetails String
    Details about the current state of the security policy deployment in Data Safe.
    refreshTrigger Integer

    (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.

    ** 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

    securityPolicyId String
    The OCID of the security policy corresponding to the security policy deployment.
    state String
    The current state of the security policy deployment.
    systemTags Map<String,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"}
    targetId String
    The OCID of the target where the security policy is deployed.
    targetType String
    Indicates whether the security policy deployment is for a target database or a target database group.
    timeCreated String
    The time that the security policy deployment was created, in the format defined by RFC3339.
    timeDeployed String
    The last date and time the security policy was deployed, in the format defined by RFC3339.
    timeUpdated String
    The last date and time the security policy deployment was updated, in the format defined by RFC3339.
    compartmentId string
    (Updatable) The OCID of the compartment in which to create the unified audit policy.
    definedTags {[key: string]: string}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    deployTrigger number
    (Updatable) An optional property when incremented triggers Deploy. Could be set to any integer value.
    description string
    (Updatable) The description of the security policy.
    displayName string
    (Updatable) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.
    freeformTags {[key: string]: string}
    (Updatable) 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 Example: {"Department": "Finance"}
    lifecycleDetails string
    Details about the current state of the security policy deployment in Data Safe.
    refreshTrigger number

    (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.

    ** 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

    securityPolicyId string
    The OCID of the security policy corresponding to the security policy deployment.
    state string
    The current state of the security policy deployment.
    systemTags {[key: string]: 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"}
    targetId string
    The OCID of the target where the security policy is deployed.
    targetType string
    Indicates whether the security policy deployment is for a target database or a target database group.
    timeCreated string
    The time that the security policy deployment was created, in the format defined by RFC3339.
    timeDeployed string
    The last date and time the security policy was deployed, in the format defined by RFC3339.
    timeUpdated string
    The last date and time the security policy deployment was updated, in the format defined by RFC3339.
    compartment_id str
    (Updatable) The OCID of the compartment in which to create the unified audit policy.
    defined_tags Mapping[str, str]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    deploy_trigger int
    (Updatable) An optional property when incremented triggers Deploy. Could be set to any integer value.
    description str
    (Updatable) The description of the security policy.
    display_name str
    (Updatable) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.
    freeform_tags Mapping[str, str]
    (Updatable) 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 Example: {"Department": "Finance"}
    lifecycle_details str
    Details about the current state of the security policy deployment in Data Safe.
    refresh_trigger int

    (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.

    ** 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

    security_policy_id str
    The OCID of the security policy corresponding to the security policy deployment.
    state str
    The current state of the security policy deployment.
    system_tags Mapping[str, str]
    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"}
    target_id str
    The OCID of the target where the security policy is deployed.
    target_type str
    Indicates whether the security policy deployment is for a target database or a target database group.
    time_created str
    The time that the security policy deployment was created, in the format defined by RFC3339.
    time_deployed str
    The last date and time the security policy was deployed, in the format defined by RFC3339.
    time_updated str
    The last date and time the security policy deployment was updated, in the format defined by RFC3339.
    compartmentId String
    (Updatable) The OCID of the compartment in which to create the unified audit policy.
    definedTags Map<String>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    deployTrigger Number
    (Updatable) An optional property when incremented triggers Deploy. Could be set to any integer value.
    description String
    (Updatable) The description of the security policy.
    displayName String
    (Updatable) The display name of the security policy deployment. The name does not have to be unique, and it is changeable.
    freeformTags Map<String>
    (Updatable) 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 Example: {"Department": "Finance"}
    lifecycleDetails String
    Details about the current state of the security policy deployment in Data Safe.
    refreshTrigger Number

    (Updatable) An optional property when incremented triggers Refresh. Could be set to any integer value.

    ** 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

    securityPolicyId String
    The OCID of the security policy corresponding to the security policy deployment.
    state String
    The current state of the security policy deployment.
    systemTags Map<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"}
    targetId String
    The OCID of the target where the security policy is deployed.
    targetType String
    Indicates whether the security policy deployment is for a target database or a target database group.
    timeCreated String
    The time that the security policy deployment was created, in the format defined by RFC3339.
    timeDeployed String
    The last date and time the security policy was deployed, in the format defined by RFC3339.
    timeUpdated String
    The last date and time the security policy deployment was updated, in the format defined by RFC3339.

    Import

    Import is not supported for this resource.

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi