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[_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:
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Access
Level string - Valid values are
RESTRICTED
andACCESSIBLE
. Default isRESTRICTED
. Setting this toACCESSIBLE
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 toRESTRICTED
permissions 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 string - A filter to return only resources that match the entire display name given.
- Filters
List<Get
Detector 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 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 string - The OCID of the compartment in which to list resources.
- Access
Level string - Valid values are
RESTRICTED
andACCESSIBLE
. Default isRESTRICTED
. Setting this toACCESSIBLE
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 toRESTRICTED
permissions 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 string - A filter to return only resources that match the entire display name given.
- Filters
[]Get
Detector 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 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 String - The OCID of the compartment in which to list resources.
- access
Level String - Valid values are
RESTRICTED
andACCESSIBLE
. Default isRESTRICTED
. Setting this toACCESSIBLE
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 toRESTRICTED
permissions are checked and no partial results are displayed. - compartment
Id 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
. - display
Name String - A filter to return only resources that match the entire display name given.
- filters
List<Get
Detector Recipes Filter> - resource
Metadata 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 string - The OCID of the compartment in which to list resources.
- access
Level string - Valid values are
RESTRICTED
andACCESSIBLE
. Default isRESTRICTED
. Setting this toACCESSIBLE
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 toRESTRICTED
permissions are checked and no partial results are displayed. - compartment
Id 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
. - display
Name string - A filter to return only resources that match the entire display name given.
- filters
Get
Detector Recipes Filter[] - resource
Metadata 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
RESTRICTED
andACCESSIBLE
. Default isRESTRICTED
. Setting this toACCESSIBLE
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 toRESTRICTED
permissions 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[cloudguard.
Get Detector 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.
- compartment
Id String - The OCID of the compartment in which to list resources.
- access
Level String - Valid values are
RESTRICTED
andACCESSIBLE
. Default isRESTRICTED
. Setting this toACCESSIBLE
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 toRESTRICTED
permissions are checked and no partial results are displayed. - compartment
Id 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
. - display
Name String - A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- resource
Metadata 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:
- Compartment
Id string - Compartment OCID of detector recipe
- Detector
Recipe List<GetCollections Detector Recipes Detector Recipe Collection> - The list of detector_recipe_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Access
Level string - Compartment
Id boolIn Subtree - Display
Name string - Display name of the entity
- Filters
List<Get
Detector Recipes Filter> - Resource
Metadata boolOnly - State string
- The current lifecycle state of the resource
- Compartment
Id string - Compartment OCID of detector recipe
- Detector
Recipe []GetCollections Detector Recipes Detector Recipe Collection - The list of detector_recipe_collection.
- Id string
- The provider-assigned unique ID for this managed resource.
- Access
Level string - Compartment
Id boolIn Subtree - Display
Name string - Display name of the entity
- Filters
[]Get
Detector Recipes Filter - Resource
Metadata boolOnly - State string
- The current lifecycle state of the resource
- compartment
Id String - Compartment OCID of detector recipe
- detector
Recipe List<GetCollections Detector Recipes Detector Recipe Collection> - The list of detector_recipe_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- access
Level String - compartment
Id BooleanIn Subtree - display
Name String - Display name of the entity
- filters
List<Get
Detector Recipes Filter> - resource
Metadata BooleanOnly - state String
- The current lifecycle state of the resource
- compartment
Id string - Compartment OCID of detector recipe
- detector
Recipe GetCollections Detector Recipes Detector Recipe Collection[] - The list of detector_recipe_collection.
- id string
- The provider-assigned unique ID for this managed resource.
- access
Level string - compartment
Id booleanIn Subtree - display
Name string - Display name of the entity
- filters
Get
Detector Recipes Filter[] - resource
Metadata booleanOnly - state string
- The current lifecycle state of the resource
- compartment_
id str - Compartment OCID of detector recipe
- detector_
recipe_ Sequence[cloudguard.collections Get 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[cloudguard.
Get Detector Recipes Filter] - resource_
metadata_ boolonly - state str
- The current lifecycle state of the resource
- compartment
Id String - Compartment OCID of detector recipe
- detector
Recipe List<Property Map>Collections - The list of detector_recipe_collection.
- id String
- The provider-assigned unique ID for this managed resource.
- access
Level String - compartment
Id BooleanIn Subtree - display
Name String - Display name of the entity
- filters List<Property Map>
- resource
Metadata BooleanOnly - state String
- The current lifecycle state of the resource
Supporting Types
GetDetectorRecipesDetectorRecipeCollection
GetDetectorRecipesDetectorRecipeCollectionItem
- Compartment
Id 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
- Detector
Recipe stringType - Recipe type ( STANDARD, ENTERPRISE )
- Detector
Rules List<GetDetector Recipes Detector Recipe Collection Item Detector Rule> - List of detector rules for the detector type for recipe - user input
- Display
Name string - A filter to return only resources that match the entire display name given.
- Effective
Detector 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
- Source
Detector 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"}
- Target
Ids List<string> - List of target IDs to which the recipe is attached
- Time
Created string - The date and time the detector recipe was created Format defined by RFC3339.
- Time
Updated string - The date and time the detector recipe was last updated Format defined by RFC3339.
- Compartment
Id 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
- Detector
Recipe stringType - Recipe type ( STANDARD, ENTERPRISE )
- Detector
Rules []GetDetector Recipes Detector Recipe Collection Item Detector Rule - List of detector rules for the detector type for recipe - user input
- Display
Name string - A filter to return only resources that match the entire display name given.
- Effective
Detector []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
- Source
Detector 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"}
- Target
Ids []string - List of target IDs to which the recipe is attached
- Time
Created string - The date and time the detector recipe was created Format defined by RFC3339.
- Time
Updated string - The date and time the detector recipe was last updated Format defined by RFC3339.
- compartment
Id 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
- detector
Recipe StringType - Recipe type ( STANDARD, ENTERPRISE )
- detector
Rules List<GetDetector Recipes Detector Recipe Collection Item Detector Rule> - List of detector rules for the detector type for recipe - user input
- display
Name String - A filter to return only resources that match the entire display name given.
- effective
Detector 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
- source
Detector 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"}
- target
Ids List<String> - List of target IDs to which the recipe is attached
- time
Created String - The date and time the detector recipe was created Format defined by RFC3339.
- time
Updated String - The date and time the detector recipe was last updated Format defined by RFC3339.
- compartment
Id 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
- detector
Recipe stringType - Recipe type ( STANDARD, ENTERPRISE )
- detector
Rules GetDetector Recipes Detector Recipe Collection Item Detector Rule[] - List of detector rules for the detector type for recipe - user input
- display
Name string - A filter to return only resources that match the entire display name given.
- effective
Detector 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
- source
Detector 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"}
- target
Ids string[] - List of target IDs to which the recipe is attached
- time
Created string - The date and time the detector recipe was created Format defined by RFC3339.
- time
Updated 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[cloudguard.Get Detector 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[cloudguard.rules Get 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.
- compartment
Id 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
- detector
Recipe StringType - Recipe type ( STANDARD, ENTERPRISE )
- detector
Rules List<Property Map> - List of detector rules for the detector type for recipe - user input
- display
Name String - A filter to return only resources that match the entire display name given.
- effective
Detector 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
- source
Detector 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"}
- target
Ids List<String> - List of target IDs to which the recipe is attached
- time
Created String - The date and time the detector recipe was created Format defined by RFC3339.
- time
Updated String - The date and time the detector recipe was last updated Format defined by RFC3339.
GetDetectorRecipesDetectorRecipeCollectionItemDetectorRule
- Candidate
Responder 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
- Data
Source stringId - The ID of the attached data source
- Description string
- Description for detector recipe detector rule
- Details
List<Get
Detector Recipes Detector Recipe Collection Item Detector Rule Detail> - Detailed information for a detector.
- Detector string
- Detector recipe for the rule
- Detector
Rule stringId - The unique identifier of the detector rule.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entities
Mappings List<GetDetector Recipes Detector Recipe Collection Item Detector Rule Entities Mapping> - Data source entities mapping for the detector rule
- Lifecycle
Details 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.
- Managed
List List<string>Types - List of managed list types related to this rule
- Recommendation string
- Recommendation for DetectorRecipeDetectorRule resource
- Resource
Type string - Resource type of the configuration to which the rule is applied
- Service
Type 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.
- Time
Created string - The date and time the detector recipe was created Format defined by RFC3339.
- Time
Updated string - The date and time the detector recipe was last updated Format defined by RFC3339.
- Candidate
Responder []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 stringId - The ID of the attached data source
- Description string
- Description for detector recipe detector rule
- Details
[]Get
Detector Recipes Detector Recipe Collection Item Detector Rule Detail - Detailed information for a detector.
- Detector string
- Detector recipe for the rule
- Detector
Rule stringId - The unique identifier of the detector rule.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entities
Mappings []GetDetector Recipes Detector Recipe Collection Item Detector Rule Entities Mapping - Data source entities mapping for the detector rule
- Lifecycle
Details 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.
- Managed
List []stringTypes - List of managed list types related to this rule
- Recommendation string
- Recommendation for DetectorRecipeDetectorRule resource
- Resource
Type string - Resource type of the configuration to which the rule is applied
- Service
Type 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.
- Time
Created string - The date and time the detector recipe was created Format defined by RFC3339.
- Time
Updated string - The date and time the detector recipe was last updated Format defined by RFC3339.
- candidate
Responder 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
- data
Source StringId - The ID of the attached data source
- description String
- Description for detector recipe detector rule
- details
List<Get
Detector Recipes Detector Recipe Collection Item Detector Rule Detail> - Detailed information for a detector.
- detector String
- Detector recipe for the rule
- detector
Rule StringId - The unique identifier of the detector rule.
- display
Name String - A filter to return only resources that match the entire display name given.
- entities
Mappings List<GetDetector Recipes Detector Recipe Collection Item Detector Rule Entities Mapping> - Data source entities mapping for the detector rule
- lifecycle
Details 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.
- managed
List List<String>Types - List of managed list types related to this rule
- recommendation String
- Recommendation for DetectorRecipeDetectorRule resource
- resource
Type String - Resource type of the configuration to which the rule is applied
- service
Type 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.
- time
Created String - The date and time the detector recipe was created Format defined by RFC3339.
- time
Updated String - The date and time the detector recipe was last updated Format defined by RFC3339.
- candidate
Responder 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 stringId - The ID of the attached data source
- description string
- Description for detector recipe detector rule
- details
Get
Detector Recipes Detector Recipe Collection Item Detector Rule Detail[] - Detailed information for a detector.
- detector string
- Detector recipe for the rule
- detector
Rule stringId - The unique identifier of the detector rule.
- display
Name string - A filter to return only resources that match the entire display name given.
- entities
Mappings GetDetector Recipes Detector Recipe Collection Item Detector Rule Entities Mapping[] - Data source entities mapping for the detector rule
- lifecycle
Details 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.
- managed
List string[]Types - List of managed list types related to this rule
- recommendation string
- Recommendation for DetectorRecipeDetectorRule resource
- resource
Type string - Resource type of the configuration to which the rule is applied
- service
Type 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.
- time
Created string - The date and time the detector recipe was created Format defined by RFC3339.
- time
Updated string - The date and time the detector recipe was last updated Format defined by RFC3339.
- candidate_
responder_ Sequence[cloudguard.rules Get 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[cloudguard.
Get Detector 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[cloudguard.Get Detector 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.
- candidate
Responder List<Property Map>Rules - List of responder rules that can be used to remediate this detector rule
- data
Source 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
- detector
Rule StringId - The unique identifier of the detector rule.
- display
Name String - A filter to return only resources that match the entire display name given.
- entities
Mappings List<Property Map> - Data source entities mapping for the detector rule
- lifecycle
Details 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.
- managed
List List<String>Types - List of managed list types related to this rule
- recommendation String
- Recommendation for DetectorRecipeDetectorRule resource
- resource
Type String - Resource type of the configuration to which the rule is applied
- service
Type 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.
- time
Created String - The date and time the detector recipe was created Format defined by RFC3339.
- time
Updated String - The date and time the detector recipe was last updated Format defined by RFC3339.
GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleCandidateResponderRule
- Display
Name string - A filter to return only resources that match the entire display name given.
- Id string
- OCID for detector recipe
- Is
Preferred bool - Is this the preferred state?
- Display
Name string - A filter to return only resources that match the entire display name given.
- Id string
- OCID for detector recipe
- Is
Preferred bool - Is this the preferred state?
- display
Name String - A filter to return only resources that match the entire display name given.
- id String
- OCID for detector recipe
- is
Preferred Boolean - Is this the preferred state?
- display
Name string - A filter to return only resources that match the entire display name given.
- id string
- OCID for detector recipe
- is
Preferred 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?
- display
Name String - A filter to return only resources that match the entire display name given.
- id String
- OCID for detector recipe
- is
Preferred Boolean - Is this the preferred state?
GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetail
- Condition string
- The base condition resource.
- Configurations
List<Get
Detector Recipes Detector Recipe Collection Item Detector Rule Detail Configuration> - List of detector rule configurations
- Data
Source stringId - The ID of the attached data source
- Description string
- Description for detector recipe detector rule
- Entities
Mappings List<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 List<string>
- User-defined labels for a detector rule
- Recommendation string
- Recommendation for DetectorRecipeDetectorRule resource
- Risk
Level string - The risk level for the rule
- Condition string
- The base condition resource.
- Configurations
[]Get
Detector Recipes Detector Recipe Collection Item Detector Rule Detail Configuration - List of detector rule configurations
- Data
Source stringId - The ID of the attached data source
- Description string
- Description for detector recipe detector rule
- Entities
Mappings []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 []string
- User-defined labels for a detector rule
- Recommendation string
- Recommendation for DetectorRecipeDetectorRule resource
- Risk
Level string - The risk level for the rule
- condition String
- The base condition resource.
- configurations
List<Get
Detector Recipes Detector Recipe Collection Item Detector Rule Detail Configuration> - List of detector rule configurations
- data
Source StringId - The ID of the attached data source
- description String
- Description for detector recipe detector rule
- entities
Mappings List<GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail Entities Mapping> - Data source entities mapping for the detector rule
- is
Configuration BooleanAllowed - Can the rule be configured?
- is
Enabled Boolean - Enablement status for the rule
- labels List<String>
- User-defined labels for a detector rule
- recommendation String
- Recommendation for DetectorRecipeDetectorRule resource
- risk
Level String - The risk level for the rule
- condition string
- The base condition resource.
- configurations
Get
Detector Recipes Detector Recipe Collection Item Detector Rule Detail Configuration[] - List of detector rule configurations
- data
Source stringId - The ID of the attached data source
- description string
- Description for detector recipe detector rule
- entities
Mappings GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail Entities Mapping[] - Data source entities mapping for the detector rule
- is
Configuration booleanAllowed - Can the rule be configured?
- is
Enabled boolean - Enablement status for the rule
- labels string[]
- User-defined labels for a detector rule
- recommendation string
- Recommendation for DetectorRecipeDetectorRule resource
- risk
Level string - The risk level for the rule
- condition str
- The base condition resource.
- configurations
Sequence[cloudguard.
Get Detector 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[cloudguard.Get Detector 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
- data
Source StringId - The ID of the attached data source
- description String
- Description for detector recipe detector rule
- entities
Mappings List<Property Map> - Data source entities mapping for the detector rule
- is
Configuration BooleanAllowed - Can the rule be configured?
- is
Enabled Boolean - Enablement status for the rule
- labels List<String>
- User-defined labels for a detector rule
- recommendation String
- Recommendation for DetectorRecipeDetectorRule resource
- risk
Level 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[cloudguard.
Get Detector Recipes Detector Recipe Collection Item Detector Rule Detail Configuration Value] - List of configuration values
GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailConfigurationValue
- List
Type string - Configuration list item type (CUSTOM or MANAGED)
- Managed
List stringType - Type of content in the managed list
- Value string
- Configuration value
- List
Type string - Configuration list item type (CUSTOM or MANAGED)
- Managed
List stringType - Type of content in the managed list
- Value string
- Configuration value
- list
Type String - Configuration list item type (CUSTOM or MANAGED)
- managed
List StringType - Type of content in the managed list
- value String
- Configuration value
- list
Type string - Configuration list item type (CUSTOM or MANAGED)
- managed
List 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
- list
Type String - Configuration list item type (CUSTOM or MANAGED)
- managed
List StringType - Type of content in the managed list
- value String
- Configuration value
GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailEntitiesMapping
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entity
Type string - Type of entity
- Query
Field string - The entity value mapped to a data source query
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entity
Type string - Type of entity
- Query
Field string - The entity value mapped to a data source query
- display
Name String - A filter to return only resources that match the entire display name given.
- entity
Type String - Type of entity
- query
Field String - The entity value mapped to a data source query
- display
Name string - A filter to return only resources that match the entire display name given.
- entity
Type string - Type of entity
- query
Field 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
- display
Name String - A filter to return only resources that match the entire display name given.
- entity
Type String - Type of entity
- query
Field String - The entity value mapped to a data source query
GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleEntitiesMapping
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entity
Type string - Type of entity
- Query
Field string - The entity value mapped to a data source query
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entity
Type string - Type of entity
- Query
Field string - The entity value mapped to a data source query
- display
Name String - A filter to return only resources that match the entire display name given.
- entity
Type String - Type of entity
- query
Field String - The entity value mapped to a data source query
- display
Name string - A filter to return only resources that match the entire display name given.
- entity
Type string - Type of entity
- query
Field 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
- display
Name String - A filter to return only resources that match the entire display name given.
- entity
Type String - Type of entity
- query
Field String - The entity value mapped to a data source query
GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRule
- Candidate
Responder 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
- Data
Source stringId - The ID of the attached data source
- Description string
- Description for detector recipe detector rule
- Details
List<Get
Detector Recipes Detector Recipe Collection Item Effective Detector Rule Detail> - Detailed information for a detector.
- Detector string
- Detector recipe for the rule
- Detector
Rule stringId - The unique identifier of the detector rule.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entities
Mappings List<GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Entities Mapping> - Data source entities mapping for the detector rule
- Lifecycle
Details 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.
- Managed
List List<string>Types - List of managed list types related to this rule
- Recommendation string
- Recommendation for DetectorRecipeDetectorRule resource
- Resource
Type string - Resource type of the configuration to which the rule is applied
- Service
Type 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.
- Time
Created string - The date and time the detector recipe was created Format defined by RFC3339.
- Time
Updated string - The date and time the detector recipe was last updated Format defined by RFC3339.
- Candidate
Responder []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 stringId - The ID of the attached data source
- Description string
- Description for detector recipe detector rule
- Details
[]Get
Detector Recipes Detector Recipe Collection Item Effective Detector Rule Detail - Detailed information for a detector.
- Detector string
- Detector recipe for the rule
- Detector
Rule stringId - The unique identifier of the detector rule.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entities
Mappings []GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Entities Mapping - Data source entities mapping for the detector rule
- Lifecycle
Details 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.
- Managed
List []stringTypes - List of managed list types related to this rule
- Recommendation string
- Recommendation for DetectorRecipeDetectorRule resource
- Resource
Type string - Resource type of the configuration to which the rule is applied
- Service
Type 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.
- Time
Created string - The date and time the detector recipe was created Format defined by RFC3339.
- Time
Updated string - The date and time the detector recipe was last updated Format defined by RFC3339.
- candidate
Responder 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
- data
Source StringId - The ID of the attached data source
- description String
- Description for detector recipe detector rule
- details
List<Get
Detector Recipes Detector Recipe Collection Item Effective Detector Rule Detail> - Detailed information for a detector.
- detector String
- Detector recipe for the rule
- detector
Rule StringId - The unique identifier of the detector rule.
- display
Name String - A filter to return only resources that match the entire display name given.
- entities
Mappings List<GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Entities Mapping> - Data source entities mapping for the detector rule
- lifecycle
Details 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.
- managed
List List<String>Types - List of managed list types related to this rule
- recommendation String
- Recommendation for DetectorRecipeDetectorRule resource
- resource
Type String - Resource type of the configuration to which the rule is applied
- service
Type 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.
- time
Created String - The date and time the detector recipe was created Format defined by RFC3339.
- time
Updated String - The date and time the detector recipe was last updated Format defined by RFC3339.
- candidate
Responder 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 stringId - The ID of the attached data source
- description string
- Description for detector recipe detector rule
- details
Get
Detector Recipes Detector Recipe Collection Item Effective Detector Rule Detail[] - Detailed information for a detector.
- detector string
- Detector recipe for the rule
- detector
Rule stringId - The unique identifier of the detector rule.
- display
Name string - A filter to return only resources that match the entire display name given.
- entities
Mappings GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Entities Mapping[] - Data source entities mapping for the detector rule
- lifecycle
Details 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.
- managed
List string[]Types - List of managed list types related to this rule
- recommendation string
- Recommendation for DetectorRecipeDetectorRule resource
- resource
Type string - Resource type of the configuration to which the rule is applied
- service
Type 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.
- time
Created string - The date and time the detector recipe was created Format defined by RFC3339.
- time
Updated string - The date and time the detector recipe was last updated Format defined by RFC3339.
- candidate_
responder_ Sequence[cloudguard.rules Get 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[cloudguard.
Get Detector 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[cloudguard.Get Detector 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.
- candidate
Responder List<Property Map>Rules - List of responder rules that can be used to remediate this detector rule
- data
Source 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
- detector
Rule StringId - The unique identifier of the detector rule.
- display
Name String - A filter to return only resources that match the entire display name given.
- entities
Mappings List<Property Map> - Data source entities mapping for the detector rule
- lifecycle
Details 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.
- managed
List List<String>Types - List of managed list types related to this rule
- recommendation String
- Recommendation for DetectorRecipeDetectorRule resource
- resource
Type String - Resource type of the configuration to which the rule is applied
- service
Type 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.
- time
Created String - The date and time the detector recipe was created Format defined by RFC3339.
- time
Updated String - The date and time the detector recipe was last updated Format defined by RFC3339.
GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleCandidateResponderRule
- Display
Name string - A filter to return only resources that match the entire display name given.
- Id string
- OCID for detector recipe
- Is
Preferred bool - Is this the preferred state?
- Display
Name string - A filter to return only resources that match the entire display name given.
- Id string
- OCID for detector recipe
- Is
Preferred bool - Is this the preferred state?
- display
Name String - A filter to return only resources that match the entire display name given.
- id String
- OCID for detector recipe
- is
Preferred Boolean - Is this the preferred state?
- display
Name string - A filter to return only resources that match the entire display name given.
- id string
- OCID for detector recipe
- is
Preferred 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?
- display
Name String - A filter to return only resources that match the entire display name given.
- id String
- OCID for detector recipe
- is
Preferred Boolean - Is this the preferred state?
GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetail
- Condition string
- The base condition resource.
- Configurations
List<Get
Detector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Configuration> - List of detector rule configurations
- Data
Source stringId - The ID of the attached data source
- Description string
- Description for detector recipe detector rule
- Entities
Mappings List<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 List<string>
- User-defined labels for a detector rule
- Recommendation string
- Recommendation for DetectorRecipeDetectorRule resource
- Risk
Level string - The risk level for the rule
- Condition string
- The base condition resource.
- Configurations
[]Get
Detector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Configuration - List of detector rule configurations
- Data
Source stringId - The ID of the attached data source
- Description string
- Description for detector recipe detector rule
- Entities
Mappings []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 []string
- User-defined labels for a detector rule
- Recommendation string
- Recommendation for DetectorRecipeDetectorRule resource
- Risk
Level string - The risk level for the rule
- condition String
- The base condition resource.
- configurations
List<Get
Detector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Configuration> - List of detector rule configurations
- data
Source StringId - The ID of the attached data source
- description String
- Description for detector recipe detector rule
- entities
Mappings List<GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Entities Mapping> - Data source entities mapping for the detector rule
- is
Configuration BooleanAllowed - Can the rule be configured?
- is
Enabled Boolean - Enablement status for the rule
- labels List<String>
- User-defined labels for a detector rule
- recommendation String
- Recommendation for DetectorRecipeDetectorRule resource
- risk
Level String - The risk level for the rule
- condition string
- The base condition resource.
- configurations
Get
Detector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Configuration[] - List of detector rule configurations
- data
Source stringId - The ID of the attached data source
- description string
- Description for detector recipe detector rule
- entities
Mappings GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Entities Mapping[] - Data source entities mapping for the detector rule
- is
Configuration booleanAllowed - Can the rule be configured?
- is
Enabled boolean - Enablement status for the rule
- labels string[]
- User-defined labels for a detector rule
- recommendation string
- Recommendation for DetectorRecipeDetectorRule resource
- risk
Level string - The risk level for the rule
- condition str
- The base condition resource.
- configurations
Sequence[cloudguard.
Get Detector 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[cloudguard.Get Detector 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
- data
Source StringId - The ID of the attached data source
- description String
- Description for detector recipe detector rule
- entities
Mappings List<Property Map> - Data source entities mapping for the detector rule
- is
Configuration BooleanAllowed - Can the rule be configured?
- is
Enabled Boolean - Enablement status for the rule
- labels List<String>
- User-defined labels for a detector rule
- recommendation String
- Recommendation for DetectorRecipeDetectorRule resource
- risk
Level 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[cloudguard.
Get Detector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Configuration Value] - List of configuration values
GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailConfigurationValue
- List
Type string - Configuration list item type (CUSTOM or MANAGED)
- Managed
List stringType - Type of content in the managed list
- Value string
- Configuration value
- List
Type string - Configuration list item type (CUSTOM or MANAGED)
- Managed
List stringType - Type of content in the managed list
- Value string
- Configuration value
- list
Type String - Configuration list item type (CUSTOM or MANAGED)
- managed
List StringType - Type of content in the managed list
- value String
- Configuration value
- list
Type string - Configuration list item type (CUSTOM or MANAGED)
- managed
List 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
- list
Type String - Configuration list item type (CUSTOM or MANAGED)
- managed
List StringType - Type of content in the managed list
- value String
- Configuration value
GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailEntitiesMapping
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entity
Type string - Type of entity
- Query
Field string - The entity value mapped to a data source query
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entity
Type string - Type of entity
- Query
Field string - The entity value mapped to a data source query
- display
Name String - A filter to return only resources that match the entire display name given.
- entity
Type String - Type of entity
- query
Field String - The entity value mapped to a data source query
- display
Name string - A filter to return only resources that match the entire display name given.
- entity
Type string - Type of entity
- query
Field 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
- display
Name String - A filter to return only resources that match the entire display name given.
- entity
Type String - Type of entity
- query
Field String - The entity value mapped to a data source query
GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleEntitiesMapping
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entity
Type string - Type of entity
- Query
Field string - The entity value mapped to a data source query
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entity
Type string - Type of entity
- Query
Field string - The entity value mapped to a data source query
- display
Name String - A filter to return only resources that match the entire display name given.
- entity
Type String - Type of entity
- query
Field String - The entity value mapped to a data source query
- display
Name string - A filter to return only resources that match the entire display name given.
- entity
Type string - Type of entity
- query
Field 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
- display
Name String - A filter to return only resources that match the entire display name given.
- entity
Type String - Type of entity
- query
Field 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
oci
Terraform Provider.