oci.CloudGuard.getDetectorRecipes
Explore with Pulumi AI
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[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[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)
public static Output<GetDetectorRecipesResult> getDetectorRecipes(GetDetectorRecipesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:CloudGuard/getDetectorRecipes:getDetectorRecipes
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The OCID of the compartment in which to list resources.
- AccessLevel string
- Valid values are RESTRICTEDandACCESSIBLE. Default isRESTRICTED. Setting this toACCESSIBLEreturns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTEDpermissions are checked and no partial results are displayed.
- CompartmentId boolIn Subtree 
- 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<GetDetector Recipes Filter> 
- ResourceMetadata boolOnly 
- 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 RESTRICTEDandACCESSIBLE. Default isRESTRICTED. Setting this toACCESSIBLEreturns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTEDpermissions are checked and no partial results are displayed.
- CompartmentId boolIn Subtree 
- 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
[]GetDetector Recipes Filter 
- ResourceMetadata boolOnly 
- 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 RESTRICTEDandACCESSIBLE. Default isRESTRICTED. Setting this toACCESSIBLEreturns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTEDpermissions are checked and no partial results are displayed.
- compartmentId BooleanIn Subtree 
- 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<GetDetector Recipes Filter> 
- resourceMetadata BooleanOnly 
- 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 RESTRICTEDandACCESSIBLE. Default isRESTRICTED. Setting this toACCESSIBLEreturns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTEDpermissions are checked and no partial results are displayed.
- compartmentId booleanIn Subtree 
- 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
GetDetector Recipes Filter[] 
- resourceMetadata booleanOnly 
- 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 RESTRICTEDandACCESSIBLE. Default isRESTRICTED. Setting this toACCESSIBLEreturns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTEDpermissions are checked and no partial results are displayed.
- compartment_id_ boolin_ subtree 
- 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[GetDetector Recipes Filter] 
- resource_metadata_ boolonly 
- 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 RESTRICTEDandACCESSIBLE. Default isRESTRICTED. Setting this toACCESSIBLEreturns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTEDpermissions are checked and no partial results are displayed.
- compartmentId BooleanIn Subtree 
- 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>
- resourceMetadata BooleanOnly 
- 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
- DetectorRecipe List<GetCollections Detector Recipes Detector Recipe Collection> 
- The list of detector_recipe_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- AccessLevel string
- CompartmentId boolIn Subtree 
- DisplayName string
- Display name of the entity
- Filters
List<GetDetector Recipes Filter> 
- ResourceMetadata boolOnly 
- State string
- The current lifecycle state of the resource
- CompartmentId string
- Compartment OCID of detector recipe
- DetectorRecipe []GetCollections Detector Recipes Detector Recipe Collection 
- The list of detector_recipe_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- AccessLevel string
- CompartmentId boolIn Subtree 
- DisplayName string
- Display name of the entity
- Filters
[]GetDetector Recipes Filter 
- ResourceMetadata boolOnly 
- State string
- The current lifecycle state of the resource
- compartmentId String
- Compartment OCID of detector recipe
- detectorRecipe List<GetCollections Detector Recipes Detector Recipe Collection> 
- The list of detector_recipe_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- accessLevel String
- compartmentId BooleanIn Subtree 
- displayName String
- Display name of the entity
- filters
List<GetDetector Recipes Filter> 
- resourceMetadata BooleanOnly 
- state String
- The current lifecycle state of the resource
- compartmentId string
- Compartment OCID of detector recipe
- detectorRecipe GetCollections Detector Recipes Detector Recipe Collection[] 
- The list of detector_recipe_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- accessLevel string
- compartmentId booleanIn Subtree 
- displayName string
- Display name of the entity
- filters
GetDetector Recipes Filter[] 
- resourceMetadata booleanOnly 
- state string
- The current lifecycle state of the resource
- compartment_id str
- Compartment OCID of detector recipe
- detector_recipe_ Sequence[Getcollections Detector Recipes Detector Recipe Collection] 
- The list of detector_recipe_collection.
- id str
- The provider-assigned unique ID for this managed resource.
- access_level str
- compartment_id_ boolin_ subtree 
- display_name str
- Display name of the entity
- filters
Sequence[GetDetector Recipes Filter] 
- resource_metadata_ boolonly 
- state str
- The current lifecycle state of the resource
- compartmentId String
- Compartment OCID of detector recipe
- detectorRecipe List<Property Map>Collections 
- The list of detector_recipe_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- accessLevel String
- compartmentId BooleanIn Subtree 
- displayName String
- Display name of the entity
- filters List<Property Map>
- resourceMetadata BooleanOnly 
- 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.
- Dictionary<string, string>
- 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
- DetectorRecipe stringType 
- Recipe type ( STANDARD, ENTERPRISE )
- DetectorRules List<GetDetector Recipes Detector Recipe Collection Item Detector Rule> 
- 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.
- EffectiveDetector List<GetRules Detector Recipes Detector Recipe Collection Item Effective Detector Rule> 
- List of effective detector rules for the detector type for recipe after applying defaults
- Dictionary<string, string>
- 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
- SourceDetector stringRecipe Id 
- 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.
- Dictionary<string, string>
- 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.
- map[string]string
- 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
- DetectorRecipe stringType 
- Recipe type ( STANDARD, ENTERPRISE )
- DetectorRules []GetDetector Recipes Detector Recipe Collection Item Detector Rule 
- 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.
- EffectiveDetector []GetRules Detector Recipes Detector Recipe Collection Item Effective Detector Rule 
- List of effective detector rules for the detector type for recipe after applying defaults
- map[string]string
- 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
- SourceDetector stringRecipe Id 
- 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.
- map[string]string
- 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.
- Map<String,String>
- 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
- detectorRecipe StringType 
- Recipe type ( STANDARD, ENTERPRISE )
- detectorRules List<GetDetector Recipes Detector Recipe Collection Item Detector Rule> 
- 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.
- effectiveDetector List<GetRules Detector Recipes Detector Recipe Collection Item Effective Detector Rule> 
- List of effective detector rules for the detector type for recipe after applying defaults
- Map<String,String>
- 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
- sourceDetector StringRecipe Id 
- 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.
- Map<String,String>
- 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.
- {[key: string]: string}
- 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
- detectorRecipe stringType 
- Recipe type ( STANDARD, ENTERPRISE )
- detectorRules GetDetector Recipes Detector Recipe Collection Item Detector Rule[] 
- 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.
- effectiveDetector GetRules Detector Recipes Detector Recipe Collection Item Effective Detector Rule[] 
- List of effective detector rules for the detector type for recipe after applying defaults
- {[key: string]: string}
- 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
- sourceDetector stringRecipe Id 
- 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.
- {[key: string]: string}
- 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.
- Mapping[str, str]
- 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_ strtype 
- Recipe type ( STANDARD, ENTERPRISE )
- detector_rules Sequence[GetDetector Recipes Detector Recipe Collection Item Detector Rule] 
- 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_ Sequence[Getrules Detector Recipes Detector Recipe Collection Item Effective Detector Rule] 
- List of effective detector rules for the detector type for recipe after applying defaults
- Mapping[str, str]
- 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_ strrecipe_ id 
- 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.
- Mapping[str, str]
- 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.
- Map<String>
- 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
- detectorRecipe StringType 
- 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.
- effectiveDetector List<Property Map>Rules 
- List of effective detector rules for the detector type for recipe after applying defaults
- Map<String>
- 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
- sourceDetector StringRecipe Id 
- 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.
- Map<String>
- 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        
- CandidateResponder List<GetRules Detector Recipes Detector Recipe Collection Item Detector Rule Candidate Responder Rule> 
- List of responder rules that can be used to remediate this detector rule
- DataSource stringId 
- The ID of the attached data source
- Description string
- Description for detector recipe detector rule
- Details
List<GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail> 
- Detailed information for a detector.
- Detector string
- Detector recipe for the rule
- DetectorRule stringId 
- The unique identifier of the detector rule.
- DisplayName string
- A filter to return only resources that match the entire display name given.
- EntitiesMappings List<GetDetector Recipes Detector Recipe Collection Item Detector Rule Entities Mapping> 
- 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.
- ManagedList List<string>Types 
- 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.
- CandidateResponder []GetRules Detector Recipes Detector Recipe Collection Item Detector Rule Candidate Responder Rule 
- List of responder rules that can be used to remediate this detector rule
- DataSource stringId 
- The ID of the attached data source
- Description string
- Description for detector recipe detector rule
- Details
[]GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail 
- Detailed information for a detector.
- Detector string
- Detector recipe for the rule
- DetectorRule stringId 
- The unique identifier of the detector rule.
- DisplayName string
- A filter to return only resources that match the entire display name given.
- EntitiesMappings []GetDetector Recipes Detector Recipe Collection Item Detector Rule Entities Mapping 
- 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.
- ManagedList []stringTypes 
- 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.
- candidateResponder List<GetRules Detector Recipes Detector Recipe Collection Item Detector Rule Candidate Responder Rule> 
- List of responder rules that can be used to remediate this detector rule
- dataSource StringId 
- The ID of the attached data source
- description String
- Description for detector recipe detector rule
- details
List<GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail> 
- Detailed information for a detector.
- detector String
- Detector recipe for the rule
- detectorRule StringId 
- The unique identifier of the detector rule.
- displayName String
- A filter to return only resources that match the entire display name given.
- entitiesMappings List<GetDetector Recipes Detector Recipe Collection Item Detector Rule Entities Mapping> 
- 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.
- managedList List<String>Types 
- 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.
- candidateResponder GetRules Detector Recipes Detector Recipe Collection Item Detector Rule Candidate Responder Rule[] 
- List of responder rules that can be used to remediate this detector rule
- dataSource stringId 
- The ID of the attached data source
- description string
- Description for detector recipe detector rule
- details
GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail[] 
- Detailed information for a detector.
- detector string
- Detector recipe for the rule
- detectorRule stringId 
- The unique identifier of the detector rule.
- displayName string
- A filter to return only resources that match the entire display name given.
- entitiesMappings GetDetector Recipes Detector Recipe Collection Item Detector Rule Entities Mapping[] 
- 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.
- managedList string[]Types 
- 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_ Sequence[Getrules Detector Recipes Detector Recipe Collection Item Detector Rule Candidate Responder Rule] 
- List of responder rules that can be used to remediate this detector rule
- data_source_ strid 
- The ID of the attached data source
- description str
- Description for detector recipe detector rule
- details
Sequence[GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail] 
- Detailed information for a detector.
- detector str
- Detector recipe for the rule
- detector_rule_ strid 
- 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[GetDetector Recipes Detector Recipe Collection Item Detector Rule Entities Mapping] 
- 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_ Sequence[str]types 
- 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.
- candidateResponder List<Property Map>Rules 
- List of responder rules that can be used to remediate this detector rule
- dataSource StringId 
- 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
- detectorRule StringId 
- 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.
- managedList List<String>Types 
- 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<GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail Configuration> 
- List of detector rule configurations
- DataSource stringId 
- The ID of the attached data source
- Description string
- Description for detector recipe detector rule
- EntitiesMappings List<GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail Entities Mapping> 
- Data source entities mapping for the detector rule
- IsConfiguration boolAllowed 
- 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
[]GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail Configuration 
- List of detector rule configurations
- DataSource stringId 
- The ID of the attached data source
- Description string
- Description for detector recipe detector rule
- EntitiesMappings []GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail Entities Mapping 
- Data source entities mapping for the detector rule
- IsConfiguration boolAllowed 
- 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<GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail Configuration> 
- List of detector rule configurations
- dataSource StringId 
- The ID of the attached data source
- description String
- Description for detector recipe detector rule
- entitiesMappings List<GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail Entities Mapping> 
- Data source entities mapping for the detector rule
- isConfiguration BooleanAllowed 
- 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
GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail Configuration[] 
- List of detector rule configurations
- dataSource stringId 
- The ID of the attached data source
- description string
- Description for detector recipe detector rule
- entitiesMappings GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail Entities Mapping[] 
- Data source entities mapping for the detector rule
- isConfiguration booleanAllowed 
- 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[GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail Configuration] 
- List of detector rule configurations
- data_source_ strid 
- The ID of the attached data source
- description str
- Description for detector recipe detector rule
- entities_mappings Sequence[GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail Entities Mapping] 
- Data source entities mapping for the detector rule
- is_configuration_ boolallowed 
- 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
- dataSource StringId 
- 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
- isConfiguration BooleanAllowed 
- 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          
- config_key str
- Unique identifier of the configuration
- data_type str
- Configuration data type
- name str
- Configuration name
- value str
- Configuration value
- values
Sequence[GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail Configuration Value] 
- List of configuration values
GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailConfigurationValue           
- ListType string
- Configuration list item type (CUSTOM or MANAGED)
- ManagedList stringType 
- Type of content in the managed list
- Value string
- Configuration value
- ListType string
- Configuration list item type (CUSTOM or MANAGED)
- ManagedList stringType 
- Type of content in the managed list
- Value string
- Configuration value
- listType String
- Configuration list item type (CUSTOM or MANAGED)
- managedList StringType 
- Type of content in the managed list
- value String
- Configuration value
- listType string
- Configuration list item type (CUSTOM or MANAGED)
- managedList stringType 
- Type of content in the managed list
- value string
- Configuration value
- list_type str
- Configuration list item type (CUSTOM or MANAGED)
- managed_list_ strtype 
- Type of content in the managed list
- value str
- Configuration value
- listType String
- Configuration list item type (CUSTOM or MANAGED)
- managedList StringType 
- 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         
- CandidateResponder List<GetRules Detector Recipes Detector Recipe Collection Item Effective Detector Rule Candidate Responder Rule> 
- List of responder rules that can be used to remediate this detector rule
- DataSource stringId 
- The ID of the attached data source
- Description string
- Description for detector recipe detector rule
- Details
List<GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Detail> 
- Detailed information for a detector.
- Detector string
- Detector recipe for the rule
- DetectorRule stringId 
- The unique identifier of the detector rule.
- DisplayName string
- A filter to return only resources that match the entire display name given.
- EntitiesMappings List<GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Entities Mapping> 
- 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.
- ManagedList List<string>Types 
- 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.
- CandidateResponder []GetRules Detector Recipes Detector Recipe Collection Item Effective Detector Rule Candidate Responder Rule 
- List of responder rules that can be used to remediate this detector rule
- DataSource stringId 
- The ID of the attached data source
- Description string
- Description for detector recipe detector rule
- Details
[]GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Detail 
- Detailed information for a detector.
- Detector string
- Detector recipe for the rule
- DetectorRule stringId 
- The unique identifier of the detector rule.
- DisplayName string
- A filter to return only resources that match the entire display name given.
- EntitiesMappings []GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Entities Mapping 
- 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.
- ManagedList []stringTypes 
- 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.
- candidateResponder List<GetRules Detector Recipes Detector Recipe Collection Item Effective Detector Rule Candidate Responder Rule> 
- List of responder rules that can be used to remediate this detector rule
- dataSource StringId 
- The ID of the attached data source
- description String
- Description for detector recipe detector rule
- details
List<GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Detail> 
- Detailed information for a detector.
- detector String
- Detector recipe for the rule
- detectorRule StringId 
- The unique identifier of the detector rule.
- displayName String
- A filter to return only resources that match the entire display name given.
- entitiesMappings List<GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Entities Mapping> 
- 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.
- managedList List<String>Types 
- 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.
- candidateResponder GetRules Detector Recipes Detector Recipe Collection Item Effective Detector Rule Candidate Responder Rule[] 
- List of responder rules that can be used to remediate this detector rule
- dataSource stringId 
- The ID of the attached data source
- description string
- Description for detector recipe detector rule
- details
GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Detail[] 
- Detailed information for a detector.
- detector string
- Detector recipe for the rule
- detectorRule stringId 
- The unique identifier of the detector rule.
- displayName string
- A filter to return only resources that match the entire display name given.
- entitiesMappings GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Entities Mapping[] 
- 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.
- managedList string[]Types 
- 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_ Sequence[Getrules Detector Recipes Detector Recipe Collection Item Effective Detector Rule Candidate Responder Rule] 
- List of responder rules that can be used to remediate this detector rule
- data_source_ strid 
- The ID of the attached data source
- description str
- Description for detector recipe detector rule
- details
Sequence[GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Detail] 
- Detailed information for a detector.
- detector str
- Detector recipe for the rule
- detector_rule_ strid 
- 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[GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Entities Mapping] 
- 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_ Sequence[str]types 
- 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.
- candidateResponder List<Property Map>Rules 
- List of responder rules that can be used to remediate this detector rule
- dataSource StringId 
- 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
- detectorRule StringId 
- 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.
- managedList List<String>Types 
- 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<GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Configuration> 
- List of detector rule configurations
- DataSource stringId 
- The ID of the attached data source
- Description string
- Description for detector recipe detector rule
- EntitiesMappings List<GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Entities Mapping> 
- Data source entities mapping for the detector rule
- IsConfiguration boolAllowed 
- 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
[]GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Configuration 
- List of detector rule configurations
- DataSource stringId 
- The ID of the attached data source
- Description string
- Description for detector recipe detector rule
- EntitiesMappings []GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Entities Mapping 
- Data source entities mapping for the detector rule
- IsConfiguration boolAllowed 
- 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<GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Configuration> 
- List of detector rule configurations
- dataSource StringId 
- The ID of the attached data source
- description String
- Description for detector recipe detector rule
- entitiesMappings List<GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Entities Mapping> 
- Data source entities mapping for the detector rule
- isConfiguration BooleanAllowed 
- 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
GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Configuration[] 
- List of detector rule configurations
- dataSource stringId 
- The ID of the attached data source
- description string
- Description for detector recipe detector rule
- entitiesMappings GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Entities Mapping[] 
- Data source entities mapping for the detector rule
- isConfiguration booleanAllowed 
- 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[GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Configuration] 
- List of detector rule configurations
- data_source_ strid 
- The ID of the attached data source
- description str
- Description for detector recipe detector rule
- entities_mappings Sequence[GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Entities Mapping] 
- Data source entities mapping for the detector rule
- is_configuration_ boolallowed 
- 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
- dataSource StringId 
- 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
- isConfiguration BooleanAllowed 
- 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           
- config_key str
- Unique identifier of the configuration
- data_type str
- Configuration data type
- name str
- Configuration name
- value str
- Configuration value
- values
Sequence[GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Configuration Value] 
- List of configuration values
GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailConfigurationValue            
- ListType string
- Configuration list item type (CUSTOM or MANAGED)
- ManagedList stringType 
- Type of content in the managed list
- Value string
- Configuration value
- ListType string
- Configuration list item type (CUSTOM or MANAGED)
- ManagedList stringType 
- Type of content in the managed list
- Value string
- Configuration value
- listType String
- Configuration list item type (CUSTOM or MANAGED)
- managedList StringType 
- Type of content in the managed list
- value String
- Configuration value
- listType string
- Configuration list item type (CUSTOM or MANAGED)
- managedList stringType 
- Type of content in the managed list
- value string
- Configuration value
- list_type str
- Configuration list item type (CUSTOM or MANAGED)
- managed_list_ strtype 
- Type of content in the managed list
- value str
- Configuration value
- listType String
- Configuration list item type (CUSTOM or MANAGED)
- managedList StringType 
- 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   
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.