1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DataSafe
  5. getSecurityPolicyDeployments
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

oci.DataSafe.getSecurityPolicyDeployments

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi

    This data source provides the list of Security Policy Deployments in Oracle Cloud Infrastructure Data Safe service.

    Retrieves a list of all security policy deployments in Data Safe.

    The ListSecurityPolicyDeployments operation returns only the security policy deployments in the specified compartmentId.

    The parameter accessLevel specifies whether to return only those compartments for which the requestor has INSPECT permissions on at least one resource directly or indirectly (ACCESSIBLE) (the resource can be in a subcompartment) or to return Not Authorized if Principal doesn’t have access to even one of the child compartments. This is valid only when compartmentIdInSubtree is set to true.

    The parameter compartmentIdInSubtree applies when you perform ListSecurityPolicyDeployments on the compartmentId passed and when it is set to true, the entire hierarchy of compartments can be returned. To get a full list of all compartments and subcompartments in the tenancy (root compartment), set the parameter compartmentIdInSubtree to true and accessLevel to ACCESSIBLE.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testSecurityPolicyDeployments = oci.DataSafe.getSecurityPolicyDeployments({
        compartmentId: compartmentId,
        accessLevel: securityPolicyDeploymentAccessLevel,
        compartmentIdInSubtree: securityPolicyDeploymentCompartmentIdInSubtree,
        displayName: securityPolicyDeploymentDisplayName,
        securityPolicyDeploymentId: testSecurityPolicyDeployment.id,
        securityPolicyId: testSecurityPolicy.id,
        state: securityPolicyDeploymentState,
        targetId: testTarget.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_security_policy_deployments = oci.DataSafe.get_security_policy_deployments(compartment_id=compartment_id,
        access_level=security_policy_deployment_access_level,
        compartment_id_in_subtree=security_policy_deployment_compartment_id_in_subtree,
        display_name=security_policy_deployment_display_name,
        security_policy_deployment_id=test_security_policy_deployment["id"],
        security_policy_id=test_security_policy["id"],
        state=security_policy_deployment_state,
        target_id=test_target["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/DataSafe"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := DataSafe.GetSecurityPolicyDeployments(ctx, &datasafe.GetSecurityPolicyDeploymentsArgs{
    			CompartmentId:              compartmentId,
    			AccessLevel:                pulumi.StringRef(securityPolicyDeploymentAccessLevel),
    			CompartmentIdInSubtree:     pulumi.BoolRef(securityPolicyDeploymentCompartmentIdInSubtree),
    			DisplayName:                pulumi.StringRef(securityPolicyDeploymentDisplayName),
    			SecurityPolicyDeploymentId: pulumi.StringRef(testSecurityPolicyDeployment.Id),
    			SecurityPolicyId:           pulumi.StringRef(testSecurityPolicy.Id),
    			State:                      pulumi.StringRef(securityPolicyDeploymentState),
    			TargetId:                   pulumi.StringRef(testTarget.Id),
    		}, nil)
    		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 testSecurityPolicyDeployments = Oci.DataSafe.GetSecurityPolicyDeployments.Invoke(new()
        {
            CompartmentId = compartmentId,
            AccessLevel = securityPolicyDeploymentAccessLevel,
            CompartmentIdInSubtree = securityPolicyDeploymentCompartmentIdInSubtree,
            DisplayName = securityPolicyDeploymentDisplayName,
            SecurityPolicyDeploymentId = testSecurityPolicyDeployment.Id,
            SecurityPolicyId = testSecurityPolicy.Id,
            State = securityPolicyDeploymentState,
            TargetId = testTarget.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DataSafe.DataSafeFunctions;
    import com.pulumi.oci.DataSafe.inputs.GetSecurityPolicyDeploymentsArgs;
    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) {
            final var testSecurityPolicyDeployments = DataSafeFunctions.getSecurityPolicyDeployments(GetSecurityPolicyDeploymentsArgs.builder()
                .compartmentId(compartmentId)
                .accessLevel(securityPolicyDeploymentAccessLevel)
                .compartmentIdInSubtree(securityPolicyDeploymentCompartmentIdInSubtree)
                .displayName(securityPolicyDeploymentDisplayName)
                .securityPolicyDeploymentId(testSecurityPolicyDeployment.id())
                .securityPolicyId(testSecurityPolicy.id())
                .state(securityPolicyDeploymentState)
                .targetId(testTarget.id())
                .build());
    
        }
    }
    
    variables:
      testSecurityPolicyDeployments:
        fn::invoke:
          Function: oci:DataSafe:getSecurityPolicyDeployments
          Arguments:
            compartmentId: ${compartmentId}
            accessLevel: ${securityPolicyDeploymentAccessLevel}
            compartmentIdInSubtree: ${securityPolicyDeploymentCompartmentIdInSubtree}
            displayName: ${securityPolicyDeploymentDisplayName}
            securityPolicyDeploymentId: ${testSecurityPolicyDeployment.id}
            securityPolicyId: ${testSecurityPolicy.id}
            state: ${securityPolicyDeploymentState}
            targetId: ${testTarget.id}
    

    Using getSecurityPolicyDeployments

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getSecurityPolicyDeployments(args: GetSecurityPolicyDeploymentsArgs, opts?: InvokeOptions): Promise<GetSecurityPolicyDeploymentsResult>
    function getSecurityPolicyDeploymentsOutput(args: GetSecurityPolicyDeploymentsOutputArgs, opts?: InvokeOptions): Output<GetSecurityPolicyDeploymentsResult>
    def get_security_policy_deployments(access_level: Optional[str] = None,
                                        compartment_id: Optional[str] = None,
                                        compartment_id_in_subtree: Optional[bool] = None,
                                        display_name: Optional[str] = None,
                                        filters: Optional[Sequence[_datasafe.GetSecurityPolicyDeploymentsFilter]] = None,
                                        security_policy_deployment_id: Optional[str] = None,
                                        security_policy_id: Optional[str] = None,
                                        state: Optional[str] = None,
                                        target_id: Optional[str] = None,
                                        opts: Optional[InvokeOptions] = None) -> GetSecurityPolicyDeploymentsResult
    def get_security_policy_deployments_output(access_level: Optional[pulumi.Input[str]] = None,
                                        compartment_id: Optional[pulumi.Input[str]] = None,
                                        compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                                        display_name: Optional[pulumi.Input[str]] = None,
                                        filters: Optional[pulumi.Input[Sequence[pulumi.Input[_datasafe.GetSecurityPolicyDeploymentsFilterArgs]]]] = None,
                                        security_policy_deployment_id: Optional[pulumi.Input[str]] = None,
                                        security_policy_id: Optional[pulumi.Input[str]] = None,
                                        state: Optional[pulumi.Input[str]] = None,
                                        target_id: Optional[pulumi.Input[str]] = None,
                                        opts: Optional[InvokeOptions] = None) -> Output[GetSecurityPolicyDeploymentsResult]
    func GetSecurityPolicyDeployments(ctx *Context, args *GetSecurityPolicyDeploymentsArgs, opts ...InvokeOption) (*GetSecurityPolicyDeploymentsResult, error)
    func GetSecurityPolicyDeploymentsOutput(ctx *Context, args *GetSecurityPolicyDeploymentsOutputArgs, opts ...InvokeOption) GetSecurityPolicyDeploymentsResultOutput

    > Note: This function is named GetSecurityPolicyDeployments in the Go SDK.

    public static class GetSecurityPolicyDeployments 
    {
        public static Task<GetSecurityPolicyDeploymentsResult> InvokeAsync(GetSecurityPolicyDeploymentsArgs args, InvokeOptions? opts = null)
        public static Output<GetSecurityPolicyDeploymentsResult> Invoke(GetSecurityPolicyDeploymentsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetSecurityPolicyDeploymentsResult> getSecurityPolicyDeployments(GetSecurityPolicyDeploymentsArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:DataSafe/getSecurityPolicyDeployments:getSecurityPolicyDeployments
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    A filter to return only resources that match the specified compartment OCID.
    AccessLevel string
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    CompartmentIdInSubtree bool
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    DisplayName string
    A filter to return only resources that match the specified display name.
    Filters List<GetSecurityPolicyDeploymentsFilter>
    SecurityPolicyDeploymentId string
    An optional filter to return only resources that match the specified OCID of the security policy deployment resource.
    SecurityPolicyId string
    An optional filter to return only resources that match the specified OCID of the security policy resource.
    State string
    The current state of the security policy deployment.
    TargetId string
    A filter to return only items related to a specific target OCID.
    CompartmentId string
    A filter to return only resources that match the specified compartment OCID.
    AccessLevel string
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    CompartmentIdInSubtree bool
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    DisplayName string
    A filter to return only resources that match the specified display name.
    Filters []GetSecurityPolicyDeploymentsFilter
    SecurityPolicyDeploymentId string
    An optional filter to return only resources that match the specified OCID of the security policy deployment resource.
    SecurityPolicyId string
    An optional filter to return only resources that match the specified OCID of the security policy resource.
    State string
    The current state of the security policy deployment.
    TargetId string
    A filter to return only items related to a specific target OCID.
    compartmentId String
    A filter to return only resources that match the specified compartment OCID.
    accessLevel String
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    compartmentIdInSubtree Boolean
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    displayName String
    A filter to return only resources that match the specified display name.
    filters List<GetSecurityPolicyDeploymentsFilter>
    securityPolicyDeploymentId String
    An optional filter to return only resources that match the specified OCID of the security policy deployment resource.
    securityPolicyId String
    An optional filter to return only resources that match the specified OCID of the security policy resource.
    state String
    The current state of the security policy deployment.
    targetId String
    A filter to return only items related to a specific target OCID.
    compartmentId string
    A filter to return only resources that match the specified compartment OCID.
    accessLevel string
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    compartmentIdInSubtree boolean
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    displayName string
    A filter to return only resources that match the specified display name.
    filters GetSecurityPolicyDeploymentsFilter[]
    securityPolicyDeploymentId string
    An optional filter to return only resources that match the specified OCID of the security policy deployment resource.
    securityPolicyId string
    An optional filter to return only resources that match the specified OCID of the security policy resource.
    state string
    The current state of the security policy deployment.
    targetId string
    A filter to return only items related to a specific target OCID.
    compartment_id str
    A filter to return only resources that match the specified compartment OCID.
    access_level str
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    compartment_id_in_subtree bool
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    display_name str
    A filter to return only resources that match the specified display name.
    filters Sequence[datasafe.GetSecurityPolicyDeploymentsFilter]
    security_policy_deployment_id str
    An optional filter to return only resources that match the specified OCID of the security policy deployment resource.
    security_policy_id str
    An optional filter to return only resources that match the specified OCID of the security policy resource.
    state str
    The current state of the security policy deployment.
    target_id str
    A filter to return only items related to a specific target OCID.
    compartmentId String
    A filter to return only resources that match the specified compartment OCID.
    accessLevel String
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    compartmentIdInSubtree Boolean
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned. Depends on the 'accessLevel' setting.
    displayName String
    A filter to return only resources that match the specified display name.
    filters List<Property Map>
    securityPolicyDeploymentId String
    An optional filter to return only resources that match the specified OCID of the security policy deployment resource.
    securityPolicyId String
    An optional filter to return only resources that match the specified OCID of the security policy resource.
    state String
    The current state of the security policy deployment.
    targetId String
    A filter to return only items related to a specific target OCID.

    getSecurityPolicyDeployments Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment containing the security policy deployment.
    Id string
    The provider-assigned unique ID for this managed resource.
    SecurityPolicyDeploymentCollections List<GetSecurityPolicyDeploymentsSecurityPolicyDeploymentCollection>
    The list of security_policy_deployment_collection.
    AccessLevel string
    CompartmentIdInSubtree bool
    DisplayName string
    The display name of the security policy deployment.
    Filters List<GetSecurityPolicyDeploymentsFilter>
    SecurityPolicyDeploymentId string
    SecurityPolicyId string
    The OCID of the security policy corresponding to the security policy deployment.
    State string
    The current state of the security policy deployment.
    TargetId string
    The OCID of the target where the security policy is deployed.
    CompartmentId string
    The OCID of the compartment containing the security policy deployment.
    Id string
    The provider-assigned unique ID for this managed resource.
    SecurityPolicyDeploymentCollections []GetSecurityPolicyDeploymentsSecurityPolicyDeploymentCollection
    The list of security_policy_deployment_collection.
    AccessLevel string
    CompartmentIdInSubtree bool
    DisplayName string
    The display name of the security policy deployment.
    Filters []GetSecurityPolicyDeploymentsFilter
    SecurityPolicyDeploymentId string
    SecurityPolicyId string
    The OCID of the security policy corresponding to the security policy deployment.
    State string
    The current state of the security policy deployment.
    TargetId string
    The OCID of the target where the security policy is deployed.
    compartmentId String
    The OCID of the compartment containing the security policy deployment.
    id String
    The provider-assigned unique ID for this managed resource.
    securityPolicyDeploymentCollections List<GetSecurityPolicyDeploymentsSecurityPolicyDeploymentCollection>
    The list of security_policy_deployment_collection.
    accessLevel String
    compartmentIdInSubtree Boolean
    displayName String
    The display name of the security policy deployment.
    filters List<GetSecurityPolicyDeploymentsFilter>
    securityPolicyDeploymentId String
    securityPolicyId String
    The OCID of the security policy corresponding to the security policy deployment.
    state String
    The current state of the security policy deployment.
    targetId String
    The OCID of the target where the security policy is deployed.
    compartmentId string
    The OCID of the compartment containing the security policy deployment.
    id string
    The provider-assigned unique ID for this managed resource.
    securityPolicyDeploymentCollections GetSecurityPolicyDeploymentsSecurityPolicyDeploymentCollection[]
    The list of security_policy_deployment_collection.
    accessLevel string
    compartmentIdInSubtree boolean
    displayName string
    The display name of the security policy deployment.
    filters GetSecurityPolicyDeploymentsFilter[]
    securityPolicyDeploymentId string
    securityPolicyId string
    The OCID of the security policy corresponding to the security policy deployment.
    state string
    The current state of the security policy deployment.
    targetId string
    The OCID of the target where the security policy is deployed.
    compartment_id str
    The OCID of the compartment containing the security policy deployment.
    id str
    The provider-assigned unique ID for this managed resource.
    security_policy_deployment_collections Sequence[datasafe.GetSecurityPolicyDeploymentsSecurityPolicyDeploymentCollection]
    The list of security_policy_deployment_collection.
    access_level str
    compartment_id_in_subtree bool
    display_name str
    The display name of the security policy deployment.
    filters Sequence[datasafe.GetSecurityPolicyDeploymentsFilter]
    security_policy_deployment_id str
    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.
    target_id str
    The OCID of the target where the security policy is deployed.
    compartmentId String
    The OCID of the compartment containing the security policy deployment.
    id String
    The provider-assigned unique ID for this managed resource.
    securityPolicyDeploymentCollections List<Property Map>
    The list of security_policy_deployment_collection.
    accessLevel String
    compartmentIdInSubtree Boolean
    displayName String
    The display name of the security policy deployment.
    filters List<Property Map>
    securityPolicyDeploymentId String
    securityPolicyId String
    The OCID of the security policy corresponding to the security policy deployment.
    state String
    The current state of the security policy deployment.
    targetId String
    The OCID of the target where the security policy is deployed.

    Supporting Types

    GetSecurityPolicyDeploymentsFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetSecurityPolicyDeploymentsSecurityPolicyDeploymentCollection

    GetSecurityPolicyDeploymentsSecurityPolicyDeploymentCollectionItem

    CompartmentId string
    A filter to return only resources that match the specified compartment OCID.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    Description string
    The description of the security policy deployment.
    DisplayName string
    A filter to return only resources that match the specified display name.
    FreeformTags Dictionary<string, object>
    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"}
    Id string
    The OCID of the security policy deployment.
    LifecycleDetails string
    Details about the current state of the security policy deployment in Data Safe.
    SecurityPolicyDeploymentId string
    An optional filter to return only resources that match the specified OCID of the security policy deployment resource.
    SecurityPolicyId string
    An optional filter to return only resources that match the specified OCID of the security policy resource.
    State string
    The current state of the security policy deployment.
    SystemTags Dictionary<string, object>
    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
    A filter to return only items related to a specific target OCID.
    TimeCreated string
    The time that the security policy deployment was created, 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
    A filter to return only resources that match the specified compartment OCID.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    Description string
    The description of the security policy deployment.
    DisplayName string
    A filter to return only resources that match the specified display name.
    FreeformTags map[string]interface{}
    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"}
    Id string
    The OCID of the security policy deployment.
    LifecycleDetails string
    Details about the current state of the security policy deployment in Data Safe.
    SecurityPolicyDeploymentId string
    An optional filter to return only resources that match the specified OCID of the security policy deployment resource.
    SecurityPolicyId string
    An optional filter to return only resources that match the specified OCID of the security policy resource.
    State string
    The current state of the security policy deployment.
    SystemTags map[string]interface{}
    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
    A filter to return only items related to a specific target OCID.
    TimeCreated string
    The time that the security policy deployment was created, 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
    A filter to return only resources that match the specified compartment OCID.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    description String
    The description of the security policy deployment.
    displayName String
    A filter to return only resources that match the specified display name.
    freeformTags Map<String,Object>
    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"}
    id String
    The OCID of the security policy deployment.
    lifecycleDetails String
    Details about the current state of the security policy deployment in Data Safe.
    securityPolicyDeploymentId String
    An optional filter to return only resources that match the specified OCID of the security policy deployment resource.
    securityPolicyId String
    An optional filter to return only resources that match the specified OCID of the security policy resource.
    state String
    The current state of the security policy deployment.
    systemTags Map<String,Object>
    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
    A filter to return only items related to a specific target OCID.
    timeCreated String
    The time that the security policy deployment was created, 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
    A filter to return only resources that match the specified compartment OCID.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    description string
    The description of the security policy deployment.
    displayName string
    A filter to return only resources that match the specified display name.
    freeformTags {[key: string]: any}
    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"}
    id string
    The OCID of the security policy deployment.
    lifecycleDetails string
    Details about the current state of the security policy deployment in Data Safe.
    securityPolicyDeploymentId string
    An optional filter to return only resources that match the specified OCID of the security policy deployment resource.
    securityPolicyId string
    An optional filter to return only resources that match the specified OCID of the security policy resource.
    state string
    The current state of the security policy deployment.
    systemTags {[key: string]: any}
    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
    A filter to return only items related to a specific target OCID.
    timeCreated string
    The time that the security policy deployment was created, 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
    A filter to return only resources that match the specified compartment OCID.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    description str
    The description of the security policy deployment.
    display_name str
    A filter to return only resources that match the specified display name.
    freeform_tags Mapping[str, Any]
    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"}
    id str
    The OCID of the security policy deployment.
    lifecycle_details str
    Details about the current state of the security policy deployment in Data Safe.
    security_policy_deployment_id str
    An optional filter to return only resources that match the specified OCID of the security policy deployment resource.
    security_policy_id str
    An optional filter to return only resources that match the specified OCID of the security policy resource.
    state str
    The current state of the security policy deployment.
    system_tags Mapping[str, Any]
    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
    A filter to return only items related to a specific target OCID.
    time_created str
    The time that the security policy deployment was created, 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
    A filter to return only resources that match the specified compartment OCID.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags Example: {"Operations.CostCenter": "42"}
    description String
    The description of the security policy deployment.
    displayName String
    A filter to return only resources that match the specified display name.
    freeformTags Map<Any>
    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"}
    id String
    The OCID of the security policy deployment.
    lifecycleDetails String
    Details about the current state of the security policy deployment in Data Safe.
    securityPolicyDeploymentId String
    An optional filter to return only resources that match the specified OCID of the security policy deployment resource.
    securityPolicyId String
    An optional filter to return only resources that match the specified OCID of the security policy resource.
    state String
    The current state of the security policy deployment.
    systemTags Map<Any>
    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
    A filter to return only items related to a specific target OCID.
    timeCreated String
    The time that the security policy deployment was created, 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.

    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 v1.33.0 published on Thursday, Apr 25, 2024 by Pulumi