Oracle Cloud Infrastructure v0.20.0, May 31 23
Oracle Cloud Infrastructure v0.20.0, May 31 23
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 in a compartment
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
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 = @var.Compartment_id,
AccessLevel = @var.Detector_recipe_access_level,
CompartmentIdInSubtree = @var.Detector_recipe_compartment_id_in_subtree,
DisplayName = @var.Detector_recipe_display_name,
ResourceMetadataOnly = @var.Detector_recipe_resource_metadata_only,
State = @var.Detector_recipe_state,
});
});
package main
import (
"github.com/pulumi/pulumi-oci/sdk/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: _var.Compartment_id,
AccessLevel: pulumi.StringRef(_var.Detector_recipe_access_level),
CompartmentIdInSubtree: pulumi.BoolRef(_var.Detector_recipe_compartment_id_in_subtree),
DisplayName: pulumi.StringRef(_var.Detector_recipe_display_name),
ResourceMetadataOnly: pulumi.BoolRef(_var.Detector_recipe_resource_metadata_only),
State: pulumi.StringRef(_var.Detector_recipe_state),
}, nil)
if err != nil {
return err
}
return nil
})
}
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(var_.compartment_id())
.accessLevel(var_.detector_recipe_access_level())
.compartmentIdInSubtree(var_.detector_recipe_compartment_id_in_subtree())
.displayName(var_.detector_recipe_display_name())
.resourceMetadataOnly(var_.detector_recipe_resource_metadata_only())
.state(var_.detector_recipe_state())
.build());
}
}
import pulumi
import pulumi_oci as oci
test_detector_recipes = oci.CloudGuard.get_detector_recipes(compartment_id=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
access_level=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
compartment_id_in_subtree=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
display_name=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
resource_metadata_only=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
state=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testDetectorRecipes = oci.CloudGuard.getDetectorRecipes({
compartmentId: _var.compartment_id,
accessLevel: _var.detector_recipe_access_level,
compartmentIdInSubtree: _var.detector_recipe_compartment_id_in_subtree,
displayName: _var.detector_recipe_display_name,
resourceMetadataOnly: _var.detector_recipe_resource_metadata_only,
state: _var.detector_recipe_state,
});
variables:
testDetectorRecipes:
fn::invoke:
Function: oci:CloudGuard:getDetectorRecipes
Arguments:
compartmentId: ${var.compartment_id}
accessLevel: ${var.detector_recipe_access_level}
compartmentIdInSubtree: ${var.detector_recipe_compartment_id_in_subtree}
displayName: ${var.detector_recipe_display_name}
resourceMetadataOnly: ${var.detector_recipe_resource_metadata_only}
state: ${var.detector_recipe_state}
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 ID 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 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 are returned.
- State string
The field life cycle 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 ID 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 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 are returned.
- State string
The field life cycle 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 ID 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 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 are returned.
- state String
The field life cycle 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 ID 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 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 are returned.
- state string
The field life cycle 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 ID 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 the setting of
accessLevel
.- display_
name str 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 are returned.
- state str
The field life cycle 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 ID 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 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 are returned.
- state String
The field life cycle 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 compartmentId 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 The display name of entity
- Filters
List<Get
Detector Recipes Filter> - Resource
Metadata boolOnly - State string
The current state of the resource.
- Compartment
Id string compartmentId 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 The display name of entity
- Filters
[]Get
Detector Recipes Filter - Resource
Metadata boolOnly - State string
The current state of the resource.
- compartment
Id String compartmentId 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 The display name of entity
- filters
List<Get
Detector Recipes Filter> - resource
Metadata BooleanOnly - state String
The current state of the resource.
- compartment
Id string compartmentId 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 The display name of entity
- filters
Get
Detector Recipes Filter[] - resource
Metadata booleanOnly - state string
The current state of the resource.
- compartment_
id str compartmentId of detector recipe
- detector_
recipe_ 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 The display name of entity
- filters
Get
Detector Recipes Filter] - resource_
metadata_ boolonly - state str
The current state of the resource.
- compartment
Id String compartmentId 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 The display name of entity
- filters List<Property Map>
- resource
Metadata BooleanOnly - state String
The current state of the resource.
Supporting Types
GetDetectorRecipesDetectorRecipeCollection
GetDetectorRecipesDetectorRecipeCollectionItem
- Compartment
Id string The ID of the compartment in which to list resources.
- Dictionary<string, object>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
Description for DetectorRecipeDetectorRule.
- Detector string
detector for the rule
- 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, object>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id string
Ocid for detector recipe
- Owner string
Owner of detector recipe
- Source
Detector stringRecipe Id Recipe Ocid of the Source Recipe to be cloned
- State string
The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Dictionary<string, object>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Target
Ids List<string> The recipe attached to targets
- 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 updated. Format defined by RFC3339.
- Compartment
Id string The ID of the compartment in which to list resources.
- map[string]interface{}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
Description for DetectorRecipeDetectorRule.
- Detector string
detector for the rule
- 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]interface{}
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id string
Ocid for detector recipe
- Owner string
Owner of detector recipe
- Source
Detector stringRecipe Id Recipe Ocid of the Source Recipe to be cloned
- State string
The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- map[string]interface{}
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Target
Ids []string The recipe attached to targets
- 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 updated. Format defined by RFC3339.
- compartment
Id String The ID of the compartment in which to list resources.
- Map<String,Object>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
Description for DetectorRecipeDetectorRule.
- detector String
detector for the rule
- 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,Object>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id String
Ocid for detector recipe
- owner String
Owner of detector recipe
- source
Detector StringRecipe Id Recipe Ocid of the Source Recipe to be cloned
- state String
The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Map<String,Object>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Ids List<String> The recipe attached to targets
- 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 updated. Format defined by RFC3339.
- compartment
Id string The ID of the compartment in which to list resources.
- {[key: string]: any}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
Description for DetectorRecipeDetectorRule.
- detector string
detector for the rule
- 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]: any}
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id string
Ocid for detector recipe
- owner string
Owner of detector recipe
- source
Detector stringRecipe Id Recipe Ocid of the Source Recipe to be cloned
- state string
The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- {[key: string]: any}
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Ids string[] The recipe attached to targets
- 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 updated. Format defined by RFC3339.
- compartment_
id str The ID of the compartment in which to list resources.
- Mapping[str, Any]
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
Description for DetectorRecipeDetectorRule.
- detector str
detector for the rule
- detector_
rules 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_ 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, Any]
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id str
Ocid for detector recipe
- owner str
Owner of detector recipe
- source_
detector_ strrecipe_ id Recipe Ocid of the Source Recipe to be cloned
- state str
The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Mapping[str, Any]
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target_
ids Sequence[str] The recipe attached to targets
- 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 updated. Format defined by RFC3339.
- compartment
Id String The ID of the compartment in which to list resources.
- Map<Any>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
Description for DetectorRecipeDetectorRule.
- detector String
detector for the rule
- 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<Any>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id String
Ocid for detector recipe
- owner String
Owner of detector recipe
- source
Detector StringRecipe Id Recipe Ocid of the Source Recipe to be cloned
- state String
The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Map<Any>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Ids List<String> The recipe attached to targets
- 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 updated. Format defined by RFC3339.
GetDetectorRecipesDetectorRecipeCollectionItemDetectorRule
- Candidate
Responder List<GetRules Detector Recipes Detector Recipe Collection Item Detector Rule Candidate Responder Rule> List of CandidateResponderRule related to this rule
- Data
Source stringId The id of the attached DataSource.
- Description string
Description for DetectorRecipeDetectorRule.
- Details
List<Get
Detector Recipes Detector Recipe Collection Item Detector Rule Detail> Details of a Detector Rule
- Detector string
detector 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 a 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 cloudguard managed list types related to this rule
- Recommendation string
Recommendation for DetectorRecipeDetectorRule
- 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 life cycle 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 updated. Format defined by RFC3339.
- Candidate
Responder []GetRules Detector Recipes Detector Recipe Collection Item Detector Rule Candidate Responder Rule List of CandidateResponderRule related to this rule
- Data
Source stringId The id of the attached DataSource.
- Description string
Description for DetectorRecipeDetectorRule.
- Details
[]Get
Detector Recipes Detector Recipe Collection Item Detector Rule Detail Details of a Detector Rule
- Detector string
detector 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 a 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 cloudguard managed list types related to this rule
- Recommendation string
Recommendation for DetectorRecipeDetectorRule
- 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 life cycle 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 updated. Format defined by RFC3339.
- candidate
Responder List<GetRules Detector Recipes Detector Recipe Collection Item Detector Rule Candidate Responder Rule> List of CandidateResponderRule related to this rule
- data
Source StringId The id of the attached DataSource.
- description String
Description for DetectorRecipeDetectorRule.
- details
List<Get
Detector Recipes Detector Recipe Collection Item Detector Rule Detail> Details of a Detector Rule
- detector String
detector 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 a 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 cloudguard managed list types related to this rule
- recommendation String
Recommendation for DetectorRecipeDetectorRule
- 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 life cycle 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 updated. Format defined by RFC3339.
- candidate
Responder GetRules Detector Recipes Detector Recipe Collection Item Detector Rule Candidate Responder Rule[] List of CandidateResponderRule related to this rule
- data
Source stringId The id of the attached DataSource.
- description string
Description for DetectorRecipeDetectorRule.
- details
Get
Detector Recipes Detector Recipe Collection Item Detector Rule Detail[] Details of a Detector Rule
- detector string
detector 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 a 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 cloudguard managed list types related to this rule
- recommendation string
Recommendation for DetectorRecipeDetectorRule
- 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 life cycle 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 updated. Format defined by RFC3339.
- candidate_
responder_ Getrules Detector Recipes Detector Recipe Collection Item Detector Rule Candidate Responder Rule] List of CandidateResponderRule related to this rule
- data_
source_ strid The id of the attached DataSource.
- description str
Description for DetectorRecipeDetectorRule.
- details
Get
Detector Recipes Detector Recipe Collection Item Detector Rule Detail] Details of a Detector Rule
- detector str
detector 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 GetDetector Recipes Detector Recipe Collection Item Detector Rule Entities Mapping] Data Source entities mapping for a 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 cloudguard managed list types related to this rule
- recommendation str
Recommendation for DetectorRecipeDetectorRule
- 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 life cycle 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 updated. Format defined by RFC3339.
- candidate
Responder List<Property Map>Rules List of CandidateResponderRule related to this rule
- data
Source StringId The id of the attached DataSource.
- description String
Description for DetectorRecipeDetectorRule.
- details List<Property Map>
Details of a Detector Rule
- detector String
detector 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 a 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 cloudguard managed list types related to this rule
- recommendation String
Recommendation for DetectorRecipeDetectorRule
- 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 life cycle 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 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 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 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 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 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 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 Preferred state
GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetail
- Condition string
Base condition object
- Configurations
List<Get
Detector Recipes Detector Recipe Collection Item Detector Rule Detail Configuration> Configuration details
- Data
Source stringId The id of the attached DataSource.
- Description string
Description for DetectorRecipeDetectorRule.
- Entities
Mappings List<GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail Entities Mapping> Data Source entities mapping for a Detector Rule
- Is
Configuration boolAllowed configuration allowed or not
- Is
Enabled bool Enables the control
- Labels List<string>
user defined labels for a detector rule
- Recommendation string
Recommendation for DetectorRecipeDetectorRule
- Risk
Level string The Risk Level
- Condition string
Base condition object
- Configurations
[]Get
Detector Recipes Detector Recipe Collection Item Detector Rule Detail Configuration Configuration details
- Data
Source stringId The id of the attached DataSource.
- Description string
Description for DetectorRecipeDetectorRule.
- Entities
Mappings []GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail Entities Mapping Data Source entities mapping for a Detector Rule
- Is
Configuration boolAllowed configuration allowed or not
- Is
Enabled bool Enables the control
- Labels []string
user defined labels for a detector rule
- Recommendation string
Recommendation for DetectorRecipeDetectorRule
- Risk
Level string The Risk Level
- condition String
Base condition object
- configurations
List<Get
Detector Recipes Detector Recipe Collection Item Detector Rule Detail Configuration> Configuration details
- data
Source StringId The id of the attached DataSource.
- description String
Description for DetectorRecipeDetectorRule.
- entities
Mappings List<GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail Entities Mapping> Data Source entities mapping for a Detector Rule
- is
Configuration BooleanAllowed configuration allowed or not
- is
Enabled Boolean Enables the control
- labels List<String>
user defined labels for a detector rule
- recommendation String
Recommendation for DetectorRecipeDetectorRule
- risk
Level String The Risk Level
- condition string
Base condition object
- configurations
Get
Detector Recipes Detector Recipe Collection Item Detector Rule Detail Configuration[] Configuration details
- data
Source stringId The id of the attached DataSource.
- description string
Description for DetectorRecipeDetectorRule.
- entities
Mappings GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail Entities Mapping[] Data Source entities mapping for a Detector Rule
- is
Configuration booleanAllowed configuration allowed or not
- is
Enabled boolean Enables the control
- labels string[]
user defined labels for a detector rule
- recommendation string
Recommendation for DetectorRecipeDetectorRule
- risk
Level string The Risk Level
- condition str
Base condition object
- configurations
Get
Detector Recipes Detector Recipe Collection Item Detector Rule Detail Configuration] Configuration details
- data_
source_ strid The id of the attached DataSource.
- description str
Description for DetectorRecipeDetectorRule.
- entities_
mappings GetDetector Recipes Detector Recipe Collection Item Detector Rule Detail Entities Mapping] Data Source entities mapping for a Detector Rule
- is_
configuration_ boolallowed configuration allowed or not
- is_
enabled bool Enables the control
- labels Sequence[str]
user defined labels for a detector rule
- recommendation str
Recommendation for DetectorRecipeDetectorRule
- risk_
level str The Risk Level
- condition String
Base condition object
- configurations List<Property Map>
Configuration details
- data
Source StringId The id of the attached DataSource.
- description String
Description for DetectorRecipeDetectorRule.
- entities
Mappings List<Property Map> Data Source entities mapping for a Detector Rule
- is
Configuration BooleanAllowed configuration allowed or not
- is
Enabled Boolean Enables the control
- labels List<String>
user defined labels for a detector rule
- recommendation String
Recommendation for DetectorRecipeDetectorRule
- risk
Level String The Risk Level
GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailConfiguration
- config_
key str Unique name of the configuration
- data_
type str configuration data type
- name str
configuration name
- value str
configuration value
- values
Get
Detector Recipes Detector Recipe Collection Item Detector Rule Detail Configuration Value] List of configuration values
GetDetectorRecipesDetectorRecipeCollectionItemDetectorRuleDetailConfigurationValue
- List
Type string configuration list item type, either CUSTOM or MANAGED
- Managed
List stringType type of the managed list
- Value string
configuration value
- List
Type string configuration list item type, either CUSTOM or MANAGED
- Managed
List stringType type of the managed list
- Value string
configuration value
- list
Type String configuration list item type, either CUSTOM or MANAGED
- managed
List StringType type of the managed list
- value String
configuration value
- list
Type string configuration list item type, either CUSTOM or MANAGED
- managed
List stringType type of the managed list
- value string
configuration value
- list_
type str configuration list item type, either CUSTOM or MANAGED
- managed_
list_ strtype type of the managed list
- value str
configuration value
- list
Type String configuration list item type, either CUSTOM or MANAGED
- managed
List StringType type of 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 Possible 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 Possible 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 Possible 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 Possible 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 Possible 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 Possible 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 Possible 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 Possible 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 Possible 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 Possible 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 Possible 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 Possible 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 CandidateResponderRule related to this rule
- Data
Source stringId The id of the attached DataSource.
- Description string
Description for DetectorRecipeDetectorRule.
- Details
List<Get
Detector Recipes Detector Recipe Collection Item Effective Detector Rule Detail> Details of a Detector Rule
- Detector string
detector 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 a 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 cloudguard managed list types related to this rule
- Recommendation string
Recommendation for DetectorRecipeDetectorRule
- 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 life cycle 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 updated. Format defined by RFC3339.
- Candidate
Responder []GetRules Detector Recipes Detector Recipe Collection Item Effective Detector Rule Candidate Responder Rule List of CandidateResponderRule related to this rule
- Data
Source stringId The id of the attached DataSource.
- Description string
Description for DetectorRecipeDetectorRule.
- Details
[]Get
Detector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Details of a Detector Rule
- Detector string
detector 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 a 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 cloudguard managed list types related to this rule
- Recommendation string
Recommendation for DetectorRecipeDetectorRule
- 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 life cycle 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 updated. Format defined by RFC3339.
- candidate
Responder List<GetRules Detector Recipes Detector Recipe Collection Item Effective Detector Rule Candidate Responder Rule> List of CandidateResponderRule related to this rule
- data
Source StringId The id of the attached DataSource.
- description String
Description for DetectorRecipeDetectorRule.
- details
List<Get
Detector Recipes Detector Recipe Collection Item Effective Detector Rule Detail> Details of a Detector Rule
- detector String
detector 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 a 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 cloudguard managed list types related to this rule
- recommendation String
Recommendation for DetectorRecipeDetectorRule
- 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 life cycle 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 updated. Format defined by RFC3339.
- candidate
Responder GetRules Detector Recipes Detector Recipe Collection Item Effective Detector Rule Candidate Responder Rule[] List of CandidateResponderRule related to this rule
- data
Source stringId The id of the attached DataSource.
- description string
Description for DetectorRecipeDetectorRule.
- details
Get
Detector Recipes Detector Recipe Collection Item Effective Detector Rule Detail[] Details of a Detector Rule
- detector string
detector 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 a 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 cloudguard managed list types related to this rule
- recommendation string
Recommendation for DetectorRecipeDetectorRule
- 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 life cycle 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 updated. Format defined by RFC3339.
- candidate_
responder_ Getrules Detector Recipes Detector Recipe Collection Item Effective Detector Rule Candidate Responder Rule] List of CandidateResponderRule related to this rule
- data_
source_ strid The id of the attached DataSource.
- description str
Description for DetectorRecipeDetectorRule.
- details
Get
Detector Recipes Detector Recipe Collection Item Effective Detector Rule Detail] Details of a Detector Rule
- detector str
detector 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 GetDetector Recipes Detector Recipe Collection Item Effective Detector Rule Entities Mapping] Data Source entities mapping for a 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 cloudguard managed list types related to this rule
- recommendation str
Recommendation for DetectorRecipeDetectorRule
- 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 life cycle 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 updated. Format defined by RFC3339.
- candidate
Responder List<Property Map>Rules List of CandidateResponderRule related to this rule
- data
Source StringId The id of the attached DataSource.
- description String
Description for DetectorRecipeDetectorRule.
- details List<Property Map>
Details of a Detector Rule
- detector String
detector 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 a 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 cloudguard managed list types related to this rule
- recommendation String
Recommendation for DetectorRecipeDetectorRule
- 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 life cycle 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 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 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 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 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 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 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 Preferred state
GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetail
- Condition string
Base condition object
- Configurations
List<Get
Detector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Configuration> Configuration details
- Is
Configuration boolAllowed configuration allowed or not
- Is
Enabled bool Enables the control
- Labels List<string>
user defined labels for a detector rule
- Risk
Level string The Risk Level
- Condition string
Base condition object
- Configurations
[]Get
Detector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Configuration Configuration details
- Is
Configuration boolAllowed configuration allowed or not
- Is
Enabled bool Enables the control
- Labels []string
user defined labels for a detector rule
- Risk
Level string The Risk Level
- condition String
Base condition object
- configurations
List<Get
Detector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Configuration> Configuration details
- is
Configuration BooleanAllowed configuration allowed or not
- is
Enabled Boolean Enables the control
- labels List<String>
user defined labels for a detector rule
- risk
Level String The Risk Level
- condition string
Base condition object
- configurations
Get
Detector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Configuration[] Configuration details
- is
Configuration booleanAllowed configuration allowed or not
- is
Enabled boolean Enables the control
- labels string[]
user defined labels for a detector rule
- risk
Level string The Risk Level
- condition str
Base condition object
- configurations
Get
Detector Recipes Detector Recipe Collection Item Effective Detector Rule Detail Configuration] Configuration details
- is_
configuration_ boolallowed configuration allowed or not
- is_
enabled bool Enables the control
- labels Sequence[str]
user defined labels for a detector rule
- risk_
level str The Risk Level
- condition String
Base condition object
- configurations List<Property Map>
Configuration details
- is
Configuration BooleanAllowed configuration allowed or not
- is
Enabled Boolean Enables the control
- labels List<String>
user defined labels for a detector rule
- risk
Level String The Risk Level
GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleDetailConfiguration
- config_
key str Unique name of the configuration
- data_
type str configuration data type
- name str
configuration name
- value str
configuration value
- values
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, either CUSTOM or MANAGED
- Managed
List stringType type of the managed list
- Value string
configuration value
- List
Type string configuration list item type, either CUSTOM or MANAGED
- Managed
List stringType type of the managed list
- Value string
configuration value
- list
Type String configuration list item type, either CUSTOM or MANAGED
- managed
List StringType type of the managed list
- value String
configuration value
- list
Type string configuration list item type, either CUSTOM or MANAGED
- managed
List stringType type of the managed list
- value string
configuration value
- list_
type str configuration list item type, either CUSTOM or MANAGED
- managed_
list_ strtype type of the managed list
- value str
configuration value
- list
Type String configuration list item type, either CUSTOM or MANAGED
- managed
List StringType type of the managed list
- value String
configuration value
GetDetectorRecipesDetectorRecipeCollectionItemEffectiveDetectorRuleEntitiesMapping
- Display
Name string A filter to return only resources that match the entire display name given.
- Entity
Type string Possible 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 Possible 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 Possible 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 Possible 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 Possible 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 Possible 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.