1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. CloudGuard
  5. getDetectorRecipes
Oracle Cloud Infrastructure v2.4.0 published on Thursday, Jul 25, 2024 by Pulumi

oci.CloudGuard.getDetectorRecipes

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.4.0 published on Thursday, Jul 25, 2024 by Pulumi

    This data source provides the list of Detector Recipes in Oracle Cloud Infrastructure Cloud Guard service.

    Returns a list of all detector recipes (DetectorRecipe resources) in a compartment, identified by compartmentId.

    The ListDetectorRecipes operation returns only the detector recipes in compartmentId passed. The list does not include any subcompartments of the compartmentId passed.

    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 ListDetectorRecipes 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 testDetectorRecipes = oci.CloudGuard.getDetectorRecipes({
        compartmentId: compartmentId,
        accessLevel: detectorRecipeAccessLevel,
        compartmentIdInSubtree: detectorRecipeCompartmentIdInSubtree,
        displayName: detectorRecipeDisplayName,
        resourceMetadataOnly: detectorRecipeResourceMetadataOnly,
        state: detectorRecipeState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_detector_recipes = oci.CloudGuard.get_detector_recipes(compartment_id=compartment_id,
        access_level=detector_recipe_access_level,
        compartment_id_in_subtree=detector_recipe_compartment_id_in_subtree,
        display_name=detector_recipe_display_name,
        resource_metadata_only=detector_recipe_resource_metadata_only,
        state=detector_recipe_state)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/CloudGuard"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := CloudGuard.GetDetectorRecipes(ctx, &cloudguard.GetDetectorRecipesArgs{
    			CompartmentId:          compartmentId,
    			AccessLevel:            pulumi.StringRef(detectorRecipeAccessLevel),
    			CompartmentIdInSubtree: pulumi.BoolRef(detectorRecipeCompartmentIdInSubtree),
    			DisplayName:            pulumi.StringRef(detectorRecipeDisplayName),
    			ResourceMetadataOnly:   pulumi.BoolRef(detectorRecipeResourceMetadataOnly),
    			State:                  pulumi.StringRef(detectorRecipeState),
    		}, 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 testDetectorRecipes = Oci.CloudGuard.GetDetectorRecipes.Invoke(new()
        {
            CompartmentId = compartmentId,
            AccessLevel = detectorRecipeAccessLevel,
            CompartmentIdInSubtree = detectorRecipeCompartmentIdInSubtree,
            DisplayName = detectorRecipeDisplayName,
            ResourceMetadataOnly = detectorRecipeResourceMetadataOnly,
            State = detectorRecipeState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.CloudGuard.CloudGuardFunctions;
    import com.pulumi.oci.CloudGuard.inputs.GetDetectorRecipesArgs;
    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 testDetectorRecipes = CloudGuardFunctions.getDetectorRecipes(GetDetectorRecipesArgs.builder()
                .compartmentId(compartmentId)
                .accessLevel(detectorRecipeAccessLevel)
                .compartmentIdInSubtree(detectorRecipeCompartmentIdInSubtree)
                .displayName(detectorRecipeDisplayName)
                .resourceMetadataOnly(detectorRecipeResourceMetadataOnly)
                .state(detectorRecipeState)
                .build());
    
        }
    }
    
    variables:
      testDetectorRecipes:
        fn::invoke:
          Function: oci:CloudGuard:getDetectorRecipes
          Arguments:
            compartmentId: ${compartmentId}
            accessLevel: ${detectorRecipeAccessLevel}
            compartmentIdInSubtree: ${detectorRecipeCompartmentIdInSubtree}
            displayName: ${detectorRecipeDisplayName}
            resourceMetadataOnly: ${detectorRecipeResourceMetadataOnly}
            state: ${detectorRecipeState}
    

    Using getDetectorRecipes

    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 getDetectorRecipes(args: GetDetectorRecipesArgs, opts?: InvokeOptions): Promise<GetDetectorRecipesResult>
    function getDetectorRecipesOutput(args: GetDetectorRecipesOutputArgs, opts?: InvokeOptions): Output<GetDetectorRecipesResult>
    def get_detector_recipes(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[_cloudguard.GetDetectorRecipesFilter]] = None,
                             resource_metadata_only: Optional[bool] = None,
                             state: Optional[str] = None,
                             opts: Optional[InvokeOptions] = None) -> GetDetectorRecipesResult
    def get_detector_recipes_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[_cloudguard.GetDetectorRecipesFilterArgs]]]] = None,
                             resource_metadata_only: Optional[pulumi.Input[bool]] = None,
                             state: Optional[pulumi.Input[str]] = None,
                             opts: Optional[InvokeOptions] = None) -> Output[GetDetectorRecipesResult]
    func GetDetectorRecipes(ctx *Context, args *GetDetectorRecipesArgs, opts ...InvokeOption) (*GetDetectorRecipesResult, error)
    func GetDetectorRecipesOutput(ctx *Context, args *GetDetectorRecipesOutputArgs, opts ...InvokeOption) GetDetectorRecipesResultOutput

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

    public static class GetDetectorRecipes 
    {
        public static Task<GetDetectorRecipesResult> InvokeAsync(GetDetectorRecipesArgs args, InvokeOptions? opts = null)
        public static Output<GetDetectorRecipesResult> Invoke(GetDetectorRecipesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDetectorRecipesResult> getDetectorRecipes(GetDetectorRecipesArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:CloudGuard/getDetectorRecipes:getDetectorRecipes
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment in which to list resources.
    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 depending on the setting of accessLevel.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters List<GetDetectorRecipesFilter>
    ResourceMetadataOnly bool
    Default is false. When set to true, the list of all Oracle-managed resources metadata supported by Cloud Guard is returned.
    State string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    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 depending on the setting of accessLevel.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters []GetDetectorRecipesFilter
    ResourceMetadataOnly bool
    Default is false. When set to true, the list of all Oracle-managed resources metadata supported by Cloud Guard is returned.
    State string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    compartmentId String
    The OCID of the compartment in which to list resources.
    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 depending on the setting of accessLevel.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<GetDetectorRecipesFilter>
    resourceMetadataOnly Boolean
    Default is false. When set to true, the list of all Oracle-managed resources metadata supported by Cloud Guard is returned.
    state String
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    compartmentId string
    The OCID of the compartment in which to list resources.
    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 depending on the setting of accessLevel.
    displayName string
    A filter to return only resources that match the entire display name given.
    filters GetDetectorRecipesFilter[]
    resourceMetadataOnly boolean
    Default is false. When set to true, the list of all Oracle-managed resources metadata supported by Cloud Guard is returned.
    state string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    compartment_id str
    The OCID of the compartment in which to list resources.
    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 depending on the setting of accessLevel.
    display_name str
    A filter to return only resources that match the entire display name given.
    filters Sequence[cloudguard.GetDetectorRecipesFilter]
    resource_metadata_only bool
    Default is false. When set to true, the list of all Oracle-managed resources metadata supported by Cloud Guard is returned.
    state str
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    compartmentId String
    The OCID of the compartment in which to list resources.
    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 depending on the setting of accessLevel.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<Property Map>
    resourceMetadataOnly Boolean
    Default is false. When set to true, the list of all Oracle-managed resources metadata supported by Cloud Guard is returned.
    state String
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

    getDetectorRecipes Result

    The following output properties are available:

    CompartmentId string
    Compartment OCID of detector recipe
    DetectorRecipeCollections List<GetDetectorRecipesDetectorRecipeCollection>
    The list of detector_recipe_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    AccessLevel string
    CompartmentIdInSubtree bool
    DisplayName string
    Display name of the entity
    Filters List<GetDetectorRecipesFilter>
    ResourceMetadataOnly bool
    State string
    The current lifecycle state of the resource
    CompartmentId string
    Compartment OCID of detector recipe
    DetectorRecipeCollections []GetDetectorRecipesDetectorRecipeCollection
    The list of detector_recipe_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    AccessLevel string
    CompartmentIdInSubtree bool
    DisplayName string
    Display name of the entity
    Filters []GetDetectorRecipesFilter
    ResourceMetadataOnly bool
    State string
    The current lifecycle state of the resource
    compartmentId String
    Compartment OCID of detector recipe
    detectorRecipeCollections List<GetDetectorRecipesDetectorRecipeCollection>
    The list of detector_recipe_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    accessLevel String
    compartmentIdInSubtree Boolean
    displayName String
    Display name of the entity
    filters List<GetDetectorRecipesFilter>
    resourceMetadataOnly Boolean
    state String
    The current lifecycle state of the resource
    compartmentId string
    Compartment OCID of detector recipe
    detectorRecipeCollections GetDetectorRecipesDetectorRecipeCollection[]
    The list of detector_recipe_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    accessLevel string
    compartmentIdInSubtree boolean
    displayName string
    Display name of the entity
    filters GetDetectorRecipesFilter[]
    resourceMetadataOnly boolean
    state string
    The current lifecycle state of the resource
    compartment_id str
    Compartment OCID of detector recipe
    detector_recipe_collections Sequence[cloudguard.GetDetectorRecipesDetectorRecipeCollection]
    The list of detector_recipe_collection.
    id str
    The provider-assigned unique ID for this managed resource.
    access_level str
    compartment_id_in_subtree bool
    display_name str
    Display name of the entity
    filters Sequence[cloudguard.GetDetectorRecipesFilter]
    resource_metadata_only bool
    state str
    The current lifecycle state of the resource
    compartmentId String
    Compartment OCID of detector recipe
    detectorRecipeCollections List<Property Map>
    The list of detector_recipe_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    accessLevel String
    compartmentIdInSubtree Boolean
    displayName String
    Display name of the entity
    filters List<Property Map>
    resourceMetadataOnly Boolean
    state String
    The current lifecycle state of the resource

    Supporting Types

    GetDetectorRecipesDetectorRecipeCollection

    GetDetectorRecipesDetectorRecipeCollectionItem

    CompartmentId string
    The OCID of the compartment in which to list resources.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    Description for detector recipe detector rule
    Detector string
    Detector recipe for the rule
    DetectorRecipeType string
    Recipe type ( STANDARD, ENTERPRISE )
    DetectorRules List<GetDetectorRecipesDetectorRecipeCollectionItemDetectorRule>
    List of detector rules for the detector type for recipe - user input
    DisplayName string
    A filter to return only resources that match the entire display name given.
    EffectiveDetectorRules List<GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRule>
    List of effective detector rules for the detector type for recipe after applying defaults
    FreeformTags Dictionary<string, object>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    OCID for detector recipe
    Owner string
    Owner of detector recipe
    SourceDetectorRecipeId string
    Recipe OCID of the source recipe to be cloned
    State string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    SystemTags Dictionary<string, object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TargetIds List<string>
    List of target IDs to which the recipe is attached
    TimeCreated string
    The date and time the detector recipe was created Format defined by RFC3339.
    TimeUpdated string
    The date and time the detector recipe was last updated Format defined by RFC3339.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    Description for detector recipe detector rule
    Detector string
    Detector recipe for the rule
    DetectorRecipeType string
    Recipe type ( STANDARD, ENTERPRISE )
    DetectorRules []GetDetectorRecipesDetectorRecipeCollectionItemDetectorRule
    List of detector rules for the detector type for recipe - user input
    DisplayName string
    A filter to return only resources that match the entire display name given.
    EffectiveDetectorRules []GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRule
    List of effective detector rules for the detector type for recipe after applying defaults
    FreeformTags map[string]interface{}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    OCID for detector recipe
    Owner string
    Owner of detector recipe
    SourceDetectorRecipeId string
    Recipe OCID of the source recipe to be cloned
    State string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    SystemTags map[string]interface{}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TargetIds []string
    List of target IDs to which the recipe is attached
    TimeCreated string
    The date and time the detector recipe was created Format defined by RFC3339.
    TimeUpdated string
    The date and time the detector recipe was last updated Format defined by RFC3339.
    compartmentId String
    The OCID of the compartment in which to list resources.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    Description for detector recipe detector rule
    detector String
    Detector recipe for the rule
    detectorRecipeType String
    Recipe type ( STANDARD, ENTERPRISE )
    detectorRules List<GetDetectorRecipesDetectorRecipeCollectionItemDetectorRule>
    List of detector rules for the detector type for recipe - user input
    displayName String
    A filter to return only resources that match the entire display name given.
    effectiveDetectorRules List<GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRule>
    List of effective detector rules for the detector type for recipe after applying defaults
    freeformTags Map<String,Object>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    OCID for detector recipe
    owner String
    Owner of detector recipe
    sourceDetectorRecipeId String
    Recipe OCID of the source recipe to be cloned
    state String
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    systemTags Map<String,Object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetIds List<String>
    List of target IDs to which the recipe is attached
    timeCreated String
    The date and time the detector recipe was created Format defined by RFC3339.
    timeUpdated String
    The date and time the detector recipe was last updated Format defined by RFC3339.
    compartmentId string
    The OCID of the compartment in which to list resources.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string
    Description for detector recipe detector rule
    detector string
    Detector recipe for the rule
    detectorRecipeType string
    Recipe type ( STANDARD, ENTERPRISE )
    detectorRules GetDetectorRecipesDetectorRecipeCollectionItemDetectorRule[]
    List of detector rules for the detector type for recipe - user input
    displayName string
    A filter to return only resources that match the entire display name given.
    effectiveDetectorRules GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRule[]
    List of effective detector rules for the detector type for recipe after applying defaults
    freeformTags {[key: string]: any}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id string
    OCID for detector recipe
    owner string
    Owner of detector recipe
    sourceDetectorRecipeId string
    Recipe OCID of the source recipe to be cloned
    state string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    systemTags {[key: string]: any}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetIds string[]
    List of target IDs to which the recipe is attached
    timeCreated string
    The date and time the detector recipe was created Format defined by RFC3339.
    timeUpdated string
    The date and time the detector recipe was last updated Format defined by RFC3339.
    compartment_id str
    The OCID of the compartment in which to list resources.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str
    Description for detector recipe detector rule
    detector str
    Detector recipe for the rule
    detector_recipe_type str
    Recipe type ( STANDARD, ENTERPRISE )
    detector_rules Sequence[cloudguard.GetDetectorRecipesDetectorRecipeCollectionItemDetectorRule]
    List of detector rules for the detector type for recipe - user input
    display_name str
    A filter to return only resources that match the entire display name given.
    effective_detector_rules Sequence[cloudguard.GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRule]
    List of effective detector rules for the detector type for recipe after applying defaults
    freeform_tags Mapping[str, Any]
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id str
    OCID for detector recipe
    owner str
    Owner of detector recipe
    source_detector_recipe_id str
    Recipe OCID of the source recipe to be cloned
    state str
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    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. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    target_ids Sequence[str]
    List of target IDs to which the recipe is attached
    time_created str
    The date and time the detector recipe was created Format defined by RFC3339.
    time_updated str
    The date and time the detector recipe was last updated Format defined by RFC3339.
    compartmentId String
    The OCID of the compartment in which to list resources.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    Description for detector recipe detector rule
    detector String
    Detector recipe for the rule
    detectorRecipeType String
    Recipe type ( STANDARD, ENTERPRISE )
    detectorRules List<Property Map>
    List of detector rules for the detector type for recipe - user input
    displayName String
    A filter to return only resources that match the entire display name given.
    effectiveDetectorRules List<Property Map>
    List of effective detector rules for the detector type for recipe after applying defaults
    freeformTags Map<Any>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    OCID for detector recipe
    owner String
    Owner of detector recipe
    sourceDetectorRecipeId String
    Recipe OCID of the source recipe to be cloned
    state String
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    systemTags Map<Any>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetIds List<String>
    List of target IDs to which the recipe is attached
    timeCreated String
    The date and time the detector recipe was created Format defined by RFC3339.
    timeUpdated String
    The date and time the detector recipe was last updated Format defined by RFC3339.

    GetDetectorRecipesDetectorRecipeCollectionItemDetectorRule

    CandidateResponderRules List<GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleCandidateResponderRule>
    List of responder rules that can be used to remediate this detector rule
    DataSourceId string
    The ID of the attached data source
    Description string
    Description for detector recipe detector rule
    Details List<GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetail>
    Detailed information for a detector.
    Detector string
    Detector recipe for the rule
    DetectorRuleId string
    The unique identifier of the detector rule.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    EntitiesMappings List<GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleEntitiesMapping>
    Data source entities mapping for the detector rule
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    ManagedListTypes List<string>
    List of managed list types related to this rule
    Recommendation string
    Recommendation for DetectorRecipeDetectorRule resource
    ResourceType string
    Resource type of the configuration to which the rule is applied
    ServiceType string
    Service type of the configuration to which the rule is applied
    State string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    TimeCreated string
    The date and time the detector recipe was created Format defined by RFC3339.
    TimeUpdated string
    The date and time the detector recipe was last updated Format defined by RFC3339.
    CandidateResponderRules []GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleCandidateResponderRule
    List of responder rules that can be used to remediate this detector rule
    DataSourceId string
    The ID of the attached data source
    Description string
    Description for detector recipe detector rule
    Details []GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetail
    Detailed information for a detector.
    Detector string
    Detector recipe for the rule
    DetectorRuleId string
    The unique identifier of the detector rule.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    EntitiesMappings []GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleEntitiesMapping
    Data source entities mapping for the detector rule
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    ManagedListTypes []string
    List of managed list types related to this rule
    Recommendation string
    Recommendation for DetectorRecipeDetectorRule resource
    ResourceType string
    Resource type of the configuration to which the rule is applied
    ServiceType string
    Service type of the configuration to which the rule is applied
    State string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    TimeCreated string
    The date and time the detector recipe was created Format defined by RFC3339.
    TimeUpdated string
    The date and time the detector recipe was last updated Format defined by RFC3339.
    candidateResponderRules List<GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleCandidateResponderRule>
    List of responder rules that can be used to remediate this detector rule
    dataSourceId String
    The ID of the attached data source
    description String
    Description for detector recipe detector rule
    details List<GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetail>
    Detailed information for a detector.
    detector String
    Detector recipe for the rule
    detectorRuleId String
    The unique identifier of the detector rule.
    displayName String
    A filter to return only resources that match the entire display name given.
    entitiesMappings List<GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleEntitiesMapping>
    Data source entities mapping for the detector rule
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    managedListTypes List<String>
    List of managed list types related to this rule
    recommendation String
    Recommendation for DetectorRecipeDetectorRule resource
    resourceType String
    Resource type of the configuration to which the rule is applied
    serviceType String
    Service type of the configuration to which the rule is applied
    state String
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    timeCreated String
    The date and time the detector recipe was created Format defined by RFC3339.
    timeUpdated String
    The date and time the detector recipe was last updated Format defined by RFC3339.
    candidateResponderRules GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleCandidateResponderRule[]
    List of responder rules that can be used to remediate this detector rule
    dataSourceId string
    The ID of the attached data source
    description string
    Description for detector recipe detector rule
    details GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetail[]
    Detailed information for a detector.
    detector string
    Detector recipe for the rule
    detectorRuleId string
    The unique identifier of the detector rule.
    displayName string
    A filter to return only resources that match the entire display name given.
    entitiesMappings GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleEntitiesMapping[]
    Data source entities mapping for the detector rule
    lifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    managedListTypes string[]
    List of managed list types related to this rule
    recommendation string
    Recommendation for DetectorRecipeDetectorRule resource
    resourceType string
    Resource type of the configuration to which the rule is applied
    serviceType string
    Service type of the configuration to which the rule is applied
    state string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    timeCreated string
    The date and time the detector recipe was created Format defined by RFC3339.
    timeUpdated string
    The date and time the detector recipe was last updated Format defined by RFC3339.
    candidate_responder_rules Sequence[cloudguard.GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleCandidateResponderRule]
    List of responder rules that can be used to remediate this detector rule
    data_source_id str
    The ID of the attached data source
    description str
    Description for detector recipe detector rule
    details Sequence[cloudguard.GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetail]
    Detailed information for a detector.
    detector str
    Detector recipe for the rule
    detector_rule_id str
    The unique identifier of the detector rule.
    display_name str
    A filter to return only resources that match the entire display name given.
    entities_mappings Sequence[cloudguard.GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleEntitiesMapping]
    Data source entities mapping for the detector rule
    lifecycle_details str
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    managed_list_types Sequence[str]
    List of managed list types related to this rule
    recommendation str
    Recommendation for DetectorRecipeDetectorRule resource
    resource_type str
    Resource type of the configuration to which the rule is applied
    service_type str
    Service type of the configuration to which the rule is applied
    state str
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    time_created str
    The date and time the detector recipe was created Format defined by RFC3339.
    time_updated str
    The date and time the detector recipe was last updated Format defined by RFC3339.
    candidateResponderRules List<Property Map>
    List of responder rules that can be used to remediate this detector rule
    dataSourceId String
    The ID of the attached data source
    description String
    Description for detector recipe detector rule
    details List<Property Map>
    Detailed information for a detector.
    detector String
    Detector recipe for the rule
    detectorRuleId String
    The unique identifier of the detector rule.
    displayName String
    A filter to return only resources that match the entire display name given.
    entitiesMappings List<Property Map>
    Data source entities mapping for the detector rule
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    managedListTypes List<String>
    List of managed list types related to this rule
    recommendation String
    Recommendation for DetectorRecipeDetectorRule resource
    resourceType String
    Resource type of the configuration to which the rule is applied
    serviceType String
    Service type of the configuration to which the rule is applied
    state String
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    timeCreated String
    The date and time the detector recipe was created Format defined by RFC3339.
    timeUpdated String
    The date and time the detector recipe was last updated Format defined by RFC3339.

    GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleCandidateResponderRule

    DisplayName string
    A filter to return only resources that match the entire display name given.
    Id string
    OCID for detector recipe
    IsPreferred bool
    Is this the preferred state?
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Id string
    OCID for detector recipe
    IsPreferred bool
    Is this the preferred state?
    displayName String
    A filter to return only resources that match the entire display name given.
    id String
    OCID for detector recipe
    isPreferred Boolean
    Is this the preferred state?
    displayName string
    A filter to return only resources that match the entire display name given.
    id string
    OCID for detector recipe
    isPreferred boolean
    Is this the preferred state?
    display_name str
    A filter to return only resources that match the entire display name given.
    id str
    OCID for detector recipe
    is_preferred bool
    Is this the preferred state?
    displayName String
    A filter to return only resources that match the entire display name given.
    id String
    OCID for detector recipe
    isPreferred Boolean
    Is this the preferred state?

    GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetail

    Condition string
    The base condition resource.
    Configurations List<GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailConfiguration>
    List of detector rule configurations
    DataSourceId string
    The ID of the attached data source
    Description string
    Description for detector recipe detector rule
    EntitiesMappings List<GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailEntitiesMapping>
    Data source entities mapping for the detector rule
    IsConfigurationAllowed bool
    Can the rule be configured?
    IsEnabled bool
    Enablement status for the rule
    Labels List<string>
    User-defined labels for a detector rule
    Recommendation string
    Recommendation for DetectorRecipeDetectorRule resource
    RiskLevel string
    The risk level for the rule
    Condition string
    The base condition resource.
    Configurations []GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailConfiguration
    List of detector rule configurations
    DataSourceId string
    The ID of the attached data source
    Description string
    Description for detector recipe detector rule
    EntitiesMappings []GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailEntitiesMapping
    Data source entities mapping for the detector rule
    IsConfigurationAllowed bool
    Can the rule be configured?
    IsEnabled bool
    Enablement status for the rule
    Labels []string
    User-defined labels for a detector rule
    Recommendation string
    Recommendation for DetectorRecipeDetectorRule resource
    RiskLevel string
    The risk level for the rule
    condition String
    The base condition resource.
    configurations List<GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailConfiguration>
    List of detector rule configurations
    dataSourceId String
    The ID of the attached data source
    description String
    Description for detector recipe detector rule
    entitiesMappings List<GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailEntitiesMapping>
    Data source entities mapping for the detector rule
    isConfigurationAllowed Boolean
    Can the rule be configured?
    isEnabled Boolean
    Enablement status for the rule
    labels List<String>
    User-defined labels for a detector rule
    recommendation String
    Recommendation for DetectorRecipeDetectorRule resource
    riskLevel String
    The risk level for the rule
    condition string
    The base condition resource.
    configurations GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailConfiguration[]
    List of detector rule configurations
    dataSourceId string
    The ID of the attached data source
    description string
    Description for detector recipe detector rule
    entitiesMappings GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailEntitiesMapping[]
    Data source entities mapping for the detector rule
    isConfigurationAllowed boolean
    Can the rule be configured?
    isEnabled boolean
    Enablement status for the rule
    labels string[]
    User-defined labels for a detector rule
    recommendation string
    Recommendation for DetectorRecipeDetectorRule resource
    riskLevel string
    The risk level for the rule
    condition str
    The base condition resource.
    configurations Sequence[cloudguard.GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailConfiguration]
    List of detector rule configurations
    data_source_id str
    The ID of the attached data source
    description str
    Description for detector recipe detector rule
    entities_mappings Sequence[cloudguard.GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailEntitiesMapping]
    Data source entities mapping for the detector rule
    is_configuration_allowed bool
    Can the rule be configured?
    is_enabled bool
    Enablement status for the rule
    labels Sequence[str]
    User-defined labels for a detector rule
    recommendation str
    Recommendation for DetectorRecipeDetectorRule resource
    risk_level str
    The risk level for the rule
    condition String
    The base condition resource.
    configurations List<Property Map>
    List of detector rule configurations
    dataSourceId String
    The ID of the attached data source
    description String
    Description for detector recipe detector rule
    entitiesMappings List<Property Map>
    Data source entities mapping for the detector rule
    isConfigurationAllowed Boolean
    Can the rule be configured?
    isEnabled Boolean
    Enablement status for the rule
    labels List<String>
    User-defined labels for a detector rule
    recommendation String
    Recommendation for DetectorRecipeDetectorRule resource
    riskLevel String
    The risk level for the rule

    GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailConfiguration

    ConfigKey string
    Unique identifier of the configuration
    DataType string
    Configuration data type
    Name string
    Configuration name
    Value string
    Configuration value
    Values List<GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailConfigurationValue>
    List of configuration values
    ConfigKey string
    Unique identifier of the configuration
    DataType string
    Configuration data type
    Name string
    Configuration name
    Value string
    Configuration value
    Values []GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailConfigurationValue
    List of configuration values
    configKey String
    Unique identifier of the configuration
    dataType String
    Configuration data type
    name String
    Configuration name
    value String
    Configuration value
    values List<GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailConfigurationValue>
    List of configuration values
    configKey string
    Unique identifier of the configuration
    dataType string
    Configuration data type
    name string
    Configuration name
    value string
    Configuration value
    values GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailConfigurationValue[]
    List of configuration values
    config_key str
    Unique identifier of the configuration
    data_type str
    Configuration data type
    name str
    Configuration name
    value str
    Configuration value
    values Sequence[cloudguard.GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailConfigurationValue]
    List of configuration values
    configKey String
    Unique identifier of the configuration
    dataType String
    Configuration data type
    name String
    Configuration name
    value String
    Configuration value
    values List<Property Map>
    List of configuration values

    GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailConfigurationValue

    ListType string
    Configuration list item type (CUSTOM or MANAGED)
    ManagedListType string
    Type of content in the managed list
    Value string
    Configuration value
    ListType string
    Configuration list item type (CUSTOM or MANAGED)
    ManagedListType string
    Type of content in the managed list
    Value string
    Configuration value
    listType String
    Configuration list item type (CUSTOM or MANAGED)
    managedListType String
    Type of content in the managed list
    value String
    Configuration value
    listType string
    Configuration list item type (CUSTOM or MANAGED)
    managedListType string
    Type of content in the managed list
    value string
    Configuration value
    list_type str
    Configuration list item type (CUSTOM or MANAGED)
    managed_list_type str
    Type of content in the managed list
    value str
    Configuration value
    listType String
    Configuration list item type (CUSTOM or MANAGED)
    managedListType String
    Type of content in the managed list
    value String
    Configuration value

    GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailEntitiesMapping

    DisplayName string
    A filter to return only resources that match the entire display name given.
    EntityType string
    Type of entity
    QueryField string
    The entity value mapped to a data source query
    DisplayName string
    A filter to return only resources that match the entire display name given.
    EntityType string
    Type of entity
    QueryField string
    The entity value mapped to a data source query
    displayName String
    A filter to return only resources that match the entire display name given.
    entityType String
    Type of entity
    queryField String
    The entity value mapped to a data source query
    displayName string
    A filter to return only resources that match the entire display name given.
    entityType string
    Type of entity
    queryField string
    The entity value mapped to a data source query
    display_name str
    A filter to return only resources that match the entire display name given.
    entity_type str
    Type of entity
    query_field str
    The entity value mapped to a data source query
    displayName String
    A filter to return only resources that match the entire display name given.
    entityType String
    Type of entity
    queryField String
    The entity value mapped to a data source query

    GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleEntitiesMapping

    DisplayName string
    A filter to return only resources that match the entire display name given.
    EntityType string
    Type of entity
    QueryField string
    The entity value mapped to a data source query
    DisplayName string
    A filter to return only resources that match the entire display name given.
    EntityType string
    Type of entity
    QueryField string
    The entity value mapped to a data source query
    displayName String
    A filter to return only resources that match the entire display name given.
    entityType String
    Type of entity
    queryField String
    The entity value mapped to a data source query
    displayName string
    A filter to return only resources that match the entire display name given.
    entityType string
    Type of entity
    queryField string
    The entity value mapped to a data source query
    display_name str
    A filter to return only resources that match the entire display name given.
    entity_type str
    Type of entity
    query_field str
    The entity value mapped to a data source query
    displayName String
    A filter to return only resources that match the entire display name given.
    entityType String
    Type of entity
    queryField String
    The entity value mapped to a data source query

    GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRule

    CandidateResponderRules List<GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleCandidateResponderRule>
    List of responder rules that can be used to remediate this detector rule
    DataSourceId string
    The ID of the attached data source
    Description string
    Description for detector recipe detector rule
    Details List<GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetail>
    Detailed information for a detector.
    Detector string
    Detector recipe for the rule
    DetectorRuleId string
    The unique identifier of the detector rule.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    EntitiesMappings List<GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleEntitiesMapping>
    Data source entities mapping for the detector rule
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    ManagedListTypes List<string>
    List of managed list types related to this rule
    Recommendation string
    Recommendation for DetectorRecipeDetectorRule resource
    ResourceType string
    Resource type of the configuration to which the rule is applied
    ServiceType string
    Service type of the configuration to which the rule is applied
    State string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    TimeCreated string
    The date and time the detector recipe was created Format defined by RFC3339.
    TimeUpdated string
    The date and time the detector recipe was last updated Format defined by RFC3339.
    CandidateResponderRules []GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleCandidateResponderRule
    List of responder rules that can be used to remediate this detector rule
    DataSourceId string
    The ID of the attached data source
    Description string
    Description for detector recipe detector rule
    Details []GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetail
    Detailed information for a detector.
    Detector string
    Detector recipe for the rule
    DetectorRuleId string
    The unique identifier of the detector rule.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    EntitiesMappings []GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleEntitiesMapping
    Data source entities mapping for the detector rule
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    ManagedListTypes []string
    List of managed list types related to this rule
    Recommendation string
    Recommendation for DetectorRecipeDetectorRule resource
    ResourceType string
    Resource type of the configuration to which the rule is applied
    ServiceType string
    Service type of the configuration to which the rule is applied
    State string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    TimeCreated string
    The date and time the detector recipe was created Format defined by RFC3339.
    TimeUpdated string
    The date and time the detector recipe was last updated Format defined by RFC3339.
    candidateResponderRules List<GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleCandidateResponderRule>
    List of responder rules that can be used to remediate this detector rule
    dataSourceId String
    The ID of the attached data source
    description String
    Description for detector recipe detector rule
    details List<GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetail>
    Detailed information for a detector.
    detector String
    Detector recipe for the rule
    detectorRuleId String
    The unique identifier of the detector rule.
    displayName String
    A filter to return only resources that match the entire display name given.
    entitiesMappings List<GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleEntitiesMapping>
    Data source entities mapping for the detector rule
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    managedListTypes List<String>
    List of managed list types related to this rule
    recommendation String
    Recommendation for DetectorRecipeDetectorRule resource
    resourceType String
    Resource type of the configuration to which the rule is applied
    serviceType String
    Service type of the configuration to which the rule is applied
    state String
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    timeCreated String
    The date and time the detector recipe was created Format defined by RFC3339.
    timeUpdated String
    The date and time the detector recipe was last updated Format defined by RFC3339.
    candidateResponderRules GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleCandidateResponderRule[]
    List of responder rules that can be used to remediate this detector rule
    dataSourceId string
    The ID of the attached data source
    description string
    Description for detector recipe detector rule
    details GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetail[]
    Detailed information for a detector.
    detector string
    Detector recipe for the rule
    detectorRuleId string
    The unique identifier of the detector rule.
    displayName string
    A filter to return only resources that match the entire display name given.
    entitiesMappings GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleEntitiesMapping[]
    Data source entities mapping for the detector rule
    lifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    managedListTypes string[]
    List of managed list types related to this rule
    recommendation string
    Recommendation for DetectorRecipeDetectorRule resource
    resourceType string
    Resource type of the configuration to which the rule is applied
    serviceType string
    Service type of the configuration to which the rule is applied
    state string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    timeCreated string
    The date and time the detector recipe was created Format defined by RFC3339.
    timeUpdated string
    The date and time the detector recipe was last updated Format defined by RFC3339.
    candidate_responder_rules Sequence[cloudguard.GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleCandidateResponderRule]
    List of responder rules that can be used to remediate this detector rule
    data_source_id str
    The ID of the attached data source
    description str
    Description for detector recipe detector rule
    details Sequence[cloudguard.GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetail]
    Detailed information for a detector.
    detector str
    Detector recipe for the rule
    detector_rule_id str
    The unique identifier of the detector rule.
    display_name str
    A filter to return only resources that match the entire display name given.
    entities_mappings Sequence[cloudguard.GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleEntitiesMapping]
    Data source entities mapping for the detector rule
    lifecycle_details str
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    managed_list_types Sequence[str]
    List of managed list types related to this rule
    recommendation str
    Recommendation for DetectorRecipeDetectorRule resource
    resource_type str
    Resource type of the configuration to which the rule is applied
    service_type str
    Service type of the configuration to which the rule is applied
    state str
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    time_created str
    The date and time the detector recipe was created Format defined by RFC3339.
    time_updated str
    The date and time the detector recipe was last updated Format defined by RFC3339.
    candidateResponderRules List<Property Map>
    List of responder rules that can be used to remediate this detector rule
    dataSourceId String
    The ID of the attached data source
    description String
    Description for detector recipe detector rule
    details List<Property Map>
    Detailed information for a detector.
    detector String
    Detector recipe for the rule
    detectorRuleId String
    The unique identifier of the detector rule.
    displayName String
    A filter to return only resources that match the entire display name given.
    entitiesMappings List<Property Map>
    Data source entities mapping for the detector rule
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    managedListTypes List<String>
    List of managed list types related to this rule
    recommendation String
    Recommendation for DetectorRecipeDetectorRule resource
    resourceType String
    Resource type of the configuration to which the rule is applied
    serviceType String
    Service type of the configuration to which the rule is applied
    state String
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    timeCreated String
    The date and time the detector recipe was created Format defined by RFC3339.
    timeUpdated String
    The date and time the detector recipe was last updated Format defined by RFC3339.

    GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleCandidateResponderRule

    DisplayName string
    A filter to return only resources that match the entire display name given.
    Id string
    OCID for detector recipe
    IsPreferred bool
    Is this the preferred state?
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Id string
    OCID for detector recipe
    IsPreferred bool
    Is this the preferred state?
    displayName String
    A filter to return only resources that match the entire display name given.
    id String
    OCID for detector recipe
    isPreferred Boolean
    Is this the preferred state?
    displayName string
    A filter to return only resources that match the entire display name given.
    id string
    OCID for detector recipe
    isPreferred boolean
    Is this the preferred state?
    display_name str
    A filter to return only resources that match the entire display name given.
    id str
    OCID for detector recipe
    is_preferred bool
    Is this the preferred state?
    displayName String
    A filter to return only resources that match the entire display name given.
    id String
    OCID for detector recipe
    isPreferred Boolean
    Is this the preferred state?

    GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetail

    Condition string
    The base condition resource.
    Configurations List<GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailConfiguration>
    List of detector rule configurations
    DataSourceId string
    The ID of the attached data source
    Description string
    Description for detector recipe detector rule
    EntitiesMappings List<GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailEntitiesMapping>
    Data source entities mapping for the detector rule
    IsConfigurationAllowed bool
    Can the rule be configured?
    IsEnabled bool
    Enablement status for the rule
    Labels List<string>
    User-defined labels for a detector rule
    Recommendation string
    Recommendation for DetectorRecipeDetectorRule resource
    RiskLevel string
    The risk level for the rule
    Condition string
    The base condition resource.
    Configurations []GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailConfiguration
    List of detector rule configurations
    DataSourceId string
    The ID of the attached data source
    Description string
    Description for detector recipe detector rule
    EntitiesMappings []GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailEntitiesMapping
    Data source entities mapping for the detector rule
    IsConfigurationAllowed bool
    Can the rule be configured?
    IsEnabled bool
    Enablement status for the rule
    Labels []string
    User-defined labels for a detector rule
    Recommendation string
    Recommendation for DetectorRecipeDetectorRule resource
    RiskLevel string
    The risk level for the rule
    condition String
    The base condition resource.
    configurations List<GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailConfiguration>
    List of detector rule configurations
    dataSourceId String
    The ID of the attached data source
    description String
    Description for detector recipe detector rule
    entitiesMappings List<GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailEntitiesMapping>
    Data source entities mapping for the detector rule
    isConfigurationAllowed Boolean
    Can the rule be configured?
    isEnabled Boolean
    Enablement status for the rule
    labels List<String>
    User-defined labels for a detector rule
    recommendation String
    Recommendation for DetectorRecipeDetectorRule resource
    riskLevel String
    The risk level for the rule
    condition string
    The base condition resource.
    configurations GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailConfiguration[]
    List of detector rule configurations
    dataSourceId string
    The ID of the attached data source
    description string
    Description for detector recipe detector rule
    entitiesMappings GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailEntitiesMapping[]
    Data source entities mapping for the detector rule
    isConfigurationAllowed boolean
    Can the rule be configured?
    isEnabled boolean
    Enablement status for the rule
    labels string[]
    User-defined labels for a detector rule
    recommendation string
    Recommendation for DetectorRecipeDetectorRule resource
    riskLevel string
    The risk level for the rule
    condition str
    The base condition resource.
    configurations Sequence[cloudguard.GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailConfiguration]
    List of detector rule configurations
    data_source_id str
    The ID of the attached data source
    description str
    Description for detector recipe detector rule
    entities_mappings Sequence[cloudguard.GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailEntitiesMapping]
    Data source entities mapping for the detector rule
    is_configuration_allowed bool
    Can the rule be configured?
    is_enabled bool
    Enablement status for the rule
    labels Sequence[str]
    User-defined labels for a detector rule
    recommendation str
    Recommendation for DetectorRecipeDetectorRule resource
    risk_level str
    The risk level for the rule
    condition String
    The base condition resource.
    configurations List<Property Map>
    List of detector rule configurations
    dataSourceId String
    The ID of the attached data source
    description String
    Description for detector recipe detector rule
    entitiesMappings List<Property Map>
    Data source entities mapping for the detector rule
    isConfigurationAllowed Boolean
    Can the rule be configured?
    isEnabled Boolean
    Enablement status for the rule
    labels List<String>
    User-defined labels for a detector rule
    recommendation String
    Recommendation for DetectorRecipeDetectorRule resource
    riskLevel String
    The risk level for the rule

    GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailConfiguration

    ConfigKey string
    Unique identifier of the configuration
    DataType string
    Configuration data type
    Name string
    Configuration name
    Value string
    Configuration value
    Values List<GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailConfigurationValue>
    List of configuration values
    ConfigKey string
    Unique identifier of the configuration
    DataType string
    Configuration data type
    Name string
    Configuration name
    Value string
    Configuration value
    Values []GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailConfigurationValue
    List of configuration values
    configKey String
    Unique identifier of the configuration
    dataType String
    Configuration data type
    name String
    Configuration name
    value String
    Configuration value
    values List<GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailConfigurationValue>
    List of configuration values
    configKey string
    Unique identifier of the configuration
    dataType string
    Configuration data type
    name string
    Configuration name
    value string
    Configuration value
    values GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailConfigurationValue[]
    List of configuration values
    config_key str
    Unique identifier of the configuration
    data_type str
    Configuration data type
    name str
    Configuration name
    value str
    Configuration value
    values Sequence[cloudguard.GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailConfigurationValue]
    List of configuration values
    configKey String
    Unique identifier of the configuration
    dataType String
    Configuration data type
    name String
    Configuration name
    value String
    Configuration value
    values List<Property Map>
    List of configuration values

    GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailConfigurationValue

    ListType string
    Configuration list item type (CUSTOM or MANAGED)
    ManagedListType string
    Type of content in the managed list
    Value string
    Configuration value
    ListType string
    Configuration list item type (CUSTOM or MANAGED)
    ManagedListType string
    Type of content in the managed list
    Value string
    Configuration value
    listType String
    Configuration list item type (CUSTOM or MANAGED)
    managedListType String
    Type of content in the managed list
    value String
    Configuration value
    listType string
    Configuration list item type (CUSTOM or MANAGED)
    managedListType string
    Type of content in the managed list
    value string
    Configuration value
    list_type str
    Configuration list item type (CUSTOM or MANAGED)
    managed_list_type str
    Type of content in the managed list
    value str
    Configuration value
    listType String
    Configuration list item type (CUSTOM or MANAGED)
    managedListType String
    Type of content in the managed list
    value String
    Configuration value

    GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailEntitiesMapping

    DisplayName string
    A filter to return only resources that match the entire display name given.
    EntityType string
    Type of entity
    QueryField string
    The entity value mapped to a data source query
    DisplayName string
    A filter to return only resources that match the entire display name given.
    EntityType string
    Type of entity
    QueryField string
    The entity value mapped to a data source query
    displayName String
    A filter to return only resources that match the entire display name given.
    entityType String
    Type of entity
    queryField String
    The entity value mapped to a data source query
    displayName string
    A filter to return only resources that match the entire display name given.
    entityType string
    Type of entity
    queryField string
    The entity value mapped to a data source query
    display_name str
    A filter to return only resources that match the entire display name given.
    entity_type str
    Type of entity
    query_field str
    The entity value mapped to a data source query
    displayName String
    A filter to return only resources that match the entire display name given.
    entityType String
    Type of entity
    queryField String
    The entity value mapped to a data source query

    GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleEntitiesMapping

    DisplayName string
    A filter to return only resources that match the entire display name given.
    EntityType string
    Type of entity
    QueryField string
    The entity value mapped to a data source query
    DisplayName string
    A filter to return only resources that match the entire display name given.
    EntityType string
    Type of entity
    QueryField string
    The entity value mapped to a data source query
    displayName String
    A filter to return only resources that match the entire display name given.
    entityType String
    Type of entity
    queryField String
    The entity value mapped to a data source query
    displayName string
    A filter to return only resources that match the entire display name given.
    entityType string
    Type of entity
    queryField string
    The entity value mapped to a data source query
    display_name str
    A filter to return only resources that match the entire display name given.
    entity_type str
    Type of entity
    query_field str
    The entity value mapped to a data source query
    displayName String
    A filter to return only resources that match the entire display name given.
    entityType String
    Type of entity
    queryField String
    The entity value mapped to a data source query

    GetDetectorRecipesFilter

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

    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 v2.4.0 published on Thursday, Jul 25, 2024 by Pulumi