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

oci.CloudGuard.getGuardTargets

Explore with Pulumi AI

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

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

    Returns a list of targets (TargetCollection resource with page of TargetSummary resources) for the target identified by compartmentId. By default, only the target associated with the compartment is returned. Setting compartmentIdInSubtree to true returns the entire hierarchy of targets in subcompartments.

    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 ListTargets 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 targets in 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 testTargets = oci.CloudGuard.getGuardTargets({
        compartmentId: compartmentId,
        accessLevel: targetAccessLevel,
        compartmentIdInSubtree: targetCompartmentIdInSubtree,
        displayName: targetDisplayName,
        isNonSecurityZoneTargetsOnlyQuery: targetIsNonSecurityZoneTargetsOnlyQuery,
        state: targetState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_targets = oci.CloudGuard.get_guard_targets(compartment_id=compartment_id,
        access_level=target_access_level,
        compartment_id_in_subtree=target_compartment_id_in_subtree,
        display_name=target_display_name,
        is_non_security_zone_targets_only_query=target_is_non_security_zone_targets_only_query,
        state=target_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.GetGuardTargets(ctx, &cloudguard.GetGuardTargetsArgs{
    			CompartmentId:                     compartmentId,
    			AccessLevel:                       pulumi.StringRef(targetAccessLevel),
    			CompartmentIdInSubtree:            pulumi.BoolRef(targetCompartmentIdInSubtree),
    			DisplayName:                       pulumi.StringRef(targetDisplayName),
    			IsNonSecurityZoneTargetsOnlyQuery: pulumi.BoolRef(targetIsNonSecurityZoneTargetsOnlyQuery),
    			State:                             pulumi.StringRef(targetState),
    		}, 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 testTargets = Oci.CloudGuard.GetGuardTargets.Invoke(new()
        {
            CompartmentId = compartmentId,
            AccessLevel = targetAccessLevel,
            CompartmentIdInSubtree = targetCompartmentIdInSubtree,
            DisplayName = targetDisplayName,
            IsNonSecurityZoneTargetsOnlyQuery = targetIsNonSecurityZoneTargetsOnlyQuery,
            State = targetState,
        });
    
    });
    
    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.GetGuardTargetsArgs;
    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 testTargets = CloudGuardFunctions.getGuardTargets(GetGuardTargetsArgs.builder()
                .compartmentId(compartmentId)
                .accessLevel(targetAccessLevel)
                .compartmentIdInSubtree(targetCompartmentIdInSubtree)
                .displayName(targetDisplayName)
                .isNonSecurityZoneTargetsOnlyQuery(targetIsNonSecurityZoneTargetsOnlyQuery)
                .state(targetState)
                .build());
    
        }
    }
    
    variables:
      testTargets:
        fn::invoke:
          Function: oci:CloudGuard:getGuardTargets
          Arguments:
            compartmentId: ${compartmentId}
            accessLevel: ${targetAccessLevel}
            compartmentIdInSubtree: ${targetCompartmentIdInSubtree}
            displayName: ${targetDisplayName}
            isNonSecurityZoneTargetsOnlyQuery: ${targetIsNonSecurityZoneTargetsOnlyQuery}
            state: ${targetState}
    

    Using getGuardTargets

    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 getGuardTargets(args: GetGuardTargetsArgs, opts?: InvokeOptions): Promise<GetGuardTargetsResult>
    function getGuardTargetsOutput(args: GetGuardTargetsOutputArgs, opts?: InvokeOptions): Output<GetGuardTargetsResult>
    def get_guard_targets(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.GetGuardTargetsFilter]] = None,
                          is_non_security_zone_targets_only_query: Optional[bool] = None,
                          state: Optional[str] = None,
                          opts: Optional[InvokeOptions] = None) -> GetGuardTargetsResult
    def get_guard_targets_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.GetGuardTargetsFilterArgs]]]] = None,
                          is_non_security_zone_targets_only_query: Optional[pulumi.Input[bool]] = None,
                          state: Optional[pulumi.Input[str]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetGuardTargetsResult]
    func GetGuardTargets(ctx *Context, args *GetGuardTargetsArgs, opts ...InvokeOption) (*GetGuardTargetsResult, error)
    func GetGuardTargetsOutput(ctx *Context, args *GetGuardTargetsOutputArgs, opts ...InvokeOption) GetGuardTargetsResultOutput

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

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

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment in which to list resources.
    AccessLevel string
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    CompartmentIdInSubtree bool
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of accessLevel.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters List<GetGuardTargetsFilter>
    IsNonSecurityZoneTargetsOnlyQuery bool
    Default is false. When set to true, only the targets that would be deleted as part of security zone creation will be returned.
    State string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    AccessLevel string
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    CompartmentIdInSubtree bool
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of accessLevel.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters []GetGuardTargetsFilter
    IsNonSecurityZoneTargetsOnlyQuery bool
    Default is false. When set to true, only the targets that would be deleted as part of security zone creation will be returned.
    State string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    compartmentId String
    The OCID of the compartment in which to list resources.
    accessLevel String
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    compartmentIdInSubtree Boolean
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of accessLevel.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<GetGuardTargetsFilter>
    isNonSecurityZoneTargetsOnlyQuery Boolean
    Default is false. When set to true, only the targets that would be deleted as part of security zone creation will be returned.
    state String
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    compartmentId string
    The OCID of the compartment in which to list resources.
    accessLevel string
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    compartmentIdInSubtree boolean
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of accessLevel.
    displayName string
    A filter to return only resources that match the entire display name given.
    filters GetGuardTargetsFilter[]
    isNonSecurityZoneTargetsOnlyQuery boolean
    Default is false. When set to true, only the targets that would be deleted as part of security zone creation will be returned.
    state string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    compartment_id str
    The OCID of the compartment in which to list resources.
    access_level str
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    compartment_id_in_subtree bool
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of accessLevel.
    display_name str
    A filter to return only resources that match the entire display name given.
    filters Sequence[cloudguard.GetGuardTargetsFilter]
    is_non_security_zone_targets_only_query bool
    Default is false. When set to true, only the targets that would be deleted as part of security zone creation will be returned.
    state str
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    compartmentId String
    The OCID of the compartment in which to list resources.
    accessLevel String
    Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
    compartmentIdInSubtree Boolean
    Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of accessLevel.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<Property Map>
    isNonSecurityZoneTargetsOnlyQuery Boolean
    Default is false. When set to true, only the targets that would be deleted as part of security zone creation will be 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.

    getGuardTargets Result

    The following output properties are available:

    CompartmentId string
    Compartment OCID
    Id string
    The provider-assigned unique ID for this managed resource.
    TargetCollections List<GetGuardTargetsTargetCollection>
    The list of target_collection.
    AccessLevel string
    CompartmentIdInSubtree bool
    DisplayName string
    Responder rule display name
    Filters List<GetGuardTargetsFilter>
    IsNonSecurityZoneTargetsOnlyQuery bool
    State string
    The current lifecycle state of the responder rule
    CompartmentId string
    Compartment OCID
    Id string
    The provider-assigned unique ID for this managed resource.
    TargetCollections []GetGuardTargetsTargetCollection
    The list of target_collection.
    AccessLevel string
    CompartmentIdInSubtree bool
    DisplayName string
    Responder rule display name
    Filters []GetGuardTargetsFilter
    IsNonSecurityZoneTargetsOnlyQuery bool
    State string
    The current lifecycle state of the responder rule
    compartmentId String
    Compartment OCID
    id String
    The provider-assigned unique ID for this managed resource.
    targetCollections List<GetGuardTargetsTargetCollection>
    The list of target_collection.
    accessLevel String
    compartmentIdInSubtree Boolean
    displayName String
    Responder rule display name
    filters List<GetGuardTargetsFilter>
    isNonSecurityZoneTargetsOnlyQuery Boolean
    state String
    The current lifecycle state of the responder rule
    compartmentId string
    Compartment OCID
    id string
    The provider-assigned unique ID for this managed resource.
    targetCollections GetGuardTargetsTargetCollection[]
    The list of target_collection.
    accessLevel string
    compartmentIdInSubtree boolean
    displayName string
    Responder rule display name
    filters GetGuardTargetsFilter[]
    isNonSecurityZoneTargetsOnlyQuery boolean
    state string
    The current lifecycle state of the responder rule
    compartment_id str
    Compartment OCID
    id str
    The provider-assigned unique ID for this managed resource.
    target_collections Sequence[cloudguard.GetGuardTargetsTargetCollection]
    The list of target_collection.
    access_level str
    compartment_id_in_subtree bool
    display_name str
    Responder rule display name
    filters Sequence[cloudguard.GetGuardTargetsFilter]
    is_non_security_zone_targets_only_query bool
    state str
    The current lifecycle state of the responder rule
    compartmentId String
    Compartment OCID
    id String
    The provider-assigned unique ID for this managed resource.
    targetCollections List<Property Map>
    The list of target_collection.
    accessLevel String
    compartmentIdInSubtree Boolean
    displayName String
    Responder rule display name
    filters List<Property Map>
    isNonSecurityZoneTargetsOnlyQuery Boolean
    state String
    The current lifecycle state of the responder rule

    Supporting Types

    GetGuardTargetsFilter

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

    GetGuardTargetsTargetCollection

    GetGuardTargetsTargetCollectionItem

    CompartmentId string
    The OCID of the compartment in which to list resources.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    Responder rule description
    DisplayName string
    A filter to return only resources that match the entire display name given.
    FreeformTags Dictionary<string, object>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    Unique identifier of target responder recipe that can't be changed after creation
    InheritedByCompartments List<string>
    List of inherited compartments
    LifecyleDetails string
    A message describing the current lifecycle state in more detail. For example, can be used to provide actionable information for a resource in Failed state. [DEPRECATE]
    RecipeCount int
    Total number of recipes attached to target
    State string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    SystemTags Dictionary<string, object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TargetDetails List<GetGuardTargetsTargetCollectionItemTargetDetail>
    Details specific to the target type.
    TargetDetectorRecipes List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipe>
    List of detector recipes attached to target
    TargetResourceId string
    Resource ID which the target uses to monitor
    TargetResourceType string
    Type of target
    TargetResponderRecipes List<GetGuardTargetsTargetCollectionItemTargetResponderRecipe>
    List of responder recipes attached to target
    TimeCreated string
    The date and time the target was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    Responder rule description
    DisplayName string
    A filter to return only resources that match the entire display name given.
    FreeformTags map[string]interface{}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    Unique identifier of target responder recipe that can't be changed after creation
    InheritedByCompartments []string
    List of inherited compartments
    LifecyleDetails string
    A message describing the current lifecycle state in more detail. For example, can be used to provide actionable information for a resource in Failed state. [DEPRECATE]
    RecipeCount int
    Total number of recipes attached to target
    State string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    SystemTags map[string]interface{}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TargetDetails []GetGuardTargetsTargetCollectionItemTargetDetail
    Details specific to the target type.
    TargetDetectorRecipes []GetGuardTargetsTargetCollectionItemTargetDetectorRecipe
    List of detector recipes attached to target
    TargetResourceId string
    Resource ID which the target uses to monitor
    TargetResourceType string
    Type of target
    TargetResponderRecipes []GetGuardTargetsTargetCollectionItemTargetResponderRecipe
    List of responder recipes attached to target
    TimeCreated string
    The date and time the target was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    compartmentId String
    The OCID of the compartment in which to list resources.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    Responder rule description
    displayName String
    A filter to return only resources that match the entire display name given.
    freeformTags Map<String,Object>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    Unique identifier of target responder recipe that can't be changed after creation
    inheritedByCompartments List<String>
    List of inherited compartments
    lifecyleDetails String
    A message describing the current lifecycle state in more detail. For example, can be used to provide actionable information for a resource in Failed state. [DEPRECATE]
    recipeCount Integer
    Total number of recipes attached to target
    state String
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    systemTags Map<String,Object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetDetails List<GetGuardTargetsTargetCollectionItemTargetDetail>
    Details specific to the target type.
    targetDetectorRecipes List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipe>
    List of detector recipes attached to target
    targetResourceId String
    Resource ID which the target uses to monitor
    targetResourceType String
    Type of target
    targetResponderRecipes List<GetGuardTargetsTargetCollectionItemTargetResponderRecipe>
    List of responder recipes attached to target
    timeCreated String
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the target was last updated. Format defined by RFC3339.
    compartmentId string
    The OCID of the compartment in which to list resources.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string
    Responder rule description
    displayName string
    A filter to return only resources that match the entire display name given.
    freeformTags {[key: string]: any}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id string
    Unique identifier of target responder recipe that can't be changed after creation
    inheritedByCompartments string[]
    List of inherited compartments
    lifecyleDetails string
    A message describing the current lifecycle state in more detail. For example, can be used to provide actionable information for a resource in Failed state. [DEPRECATE]
    recipeCount number
    Total number of recipes attached to target
    state string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    systemTags {[key: string]: any}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetDetails GetGuardTargetsTargetCollectionItemTargetDetail[]
    Details specific to the target type.
    targetDetectorRecipes GetGuardTargetsTargetCollectionItemTargetDetectorRecipe[]
    List of detector recipes attached to target
    targetResourceId string
    Resource ID which the target uses to monitor
    targetResourceType string
    Type of target
    targetResponderRecipes GetGuardTargetsTargetCollectionItemTargetResponderRecipe[]
    List of responder recipes attached to target
    timeCreated string
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    compartment_id str
    The OCID of the compartment in which to list resources.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str
    Responder rule description
    display_name str
    A filter to return only resources that match the entire display name given.
    freeform_tags Mapping[str, Any]
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id str
    Unique identifier of target responder recipe that can't be changed after creation
    inherited_by_compartments Sequence[str]
    List of inherited compartments
    lifecyle_details str
    A message describing the current lifecycle state in more detail. For example, can be used to provide actionable information for a resource in Failed state. [DEPRECATE]
    recipe_count int
    Total number of recipes attached to target
    state str
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    system_tags Mapping[str, Any]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    target_details Sequence[cloudguard.GetGuardTargetsTargetCollectionItemTargetDetail]
    Details specific to the target type.
    target_detector_recipes Sequence[cloudguard.GetGuardTargetsTargetCollectionItemTargetDetectorRecipe]
    List of detector recipes attached to target
    target_resource_id str
    Resource ID which the target uses to monitor
    target_resource_type str
    Type of target
    target_responder_recipes Sequence[cloudguard.GetGuardTargetsTargetCollectionItemTargetResponderRecipe]
    List of responder recipes attached to target
    time_created str
    The date and time the target was created. Format defined by RFC3339.
    time_updated str
    The date and time the target was last updated. Format defined by RFC3339.
    compartmentId String
    The OCID of the compartment in which to list resources.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    Responder rule description
    displayName String
    A filter to return only resources that match the entire display name given.
    freeformTags Map<Any>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    Unique identifier of target responder recipe that can't be changed after creation
    inheritedByCompartments List<String>
    List of inherited compartments
    lifecyleDetails String
    A message describing the current lifecycle state in more detail. For example, can be used to provide actionable information for a resource in Failed state. [DEPRECATE]
    recipeCount Number
    Total number of recipes attached to target
    state String
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    systemTags Map<Any>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    targetDetails List<Property Map>
    Details specific to the target type.
    targetDetectorRecipes List<Property Map>
    List of detector recipes attached to target
    targetResourceId String
    Resource ID which the target uses to monitor
    targetResourceType String
    Type of target
    targetResponderRecipes List<Property Map>
    List of responder recipes attached to target
    timeCreated String
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the target was last updated. Format defined by RFC3339.

    GetGuardTargetsTargetCollectionItemTargetDetail

    SecurityZoneDisplayName string
    The name of the security zone to associate with this compartment.
    SecurityZoneId string
    The OCID of the security zone to associate with this compartment
    TargetResourceType string
    Type of target
    TargetSecurityZoneRecipes List<GetGuardTargetsTargetCollectionItemTargetDetailTargetSecurityZoneRecipe>
    The list of security zone recipes to associate with this compartment
    SecurityZoneDisplayName string
    The name of the security zone to associate with this compartment.
    SecurityZoneId string
    The OCID of the security zone to associate with this compartment
    TargetResourceType string
    Type of target
    TargetSecurityZoneRecipes []GetGuardTargetsTargetCollectionItemTargetDetailTargetSecurityZoneRecipe
    The list of security zone recipes to associate with this compartment
    securityZoneDisplayName String
    The name of the security zone to associate with this compartment.
    securityZoneId String
    The OCID of the security zone to associate with this compartment
    targetResourceType String
    Type of target
    targetSecurityZoneRecipes List<GetGuardTargetsTargetCollectionItemTargetDetailTargetSecurityZoneRecipe>
    The list of security zone recipes to associate with this compartment
    securityZoneDisplayName string
    The name of the security zone to associate with this compartment.
    securityZoneId string
    The OCID of the security zone to associate with this compartment
    targetResourceType string
    Type of target
    targetSecurityZoneRecipes GetGuardTargetsTargetCollectionItemTargetDetailTargetSecurityZoneRecipe[]
    The list of security zone recipes to associate with this compartment
    security_zone_display_name str
    The name of the security zone to associate with this compartment.
    security_zone_id str
    The OCID of the security zone to associate with this compartment
    target_resource_type str
    Type of target
    target_security_zone_recipes Sequence[cloudguard.GetGuardTargetsTargetCollectionItemTargetDetailTargetSecurityZoneRecipe]
    The list of security zone recipes to associate with this compartment
    securityZoneDisplayName String
    The name of the security zone to associate with this compartment.
    securityZoneId String
    The OCID of the security zone to associate with this compartment
    targetResourceType String
    Type of target
    targetSecurityZoneRecipes List<Property Map>
    The list of security zone recipes to associate with this compartment

    GetGuardTargetsTargetCollectionItemTargetDetailTargetSecurityZoneRecipe

    CompartmentId string
    The OCID of the compartment in which to list resources.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    Responder rule description
    DisplayName string
    A filter to return only resources that match the entire display name given.
    FreeformTags Dictionary<string, object>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    Unique identifier of target responder recipe that can't be changed after creation
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Owner string
    Owner of target responder recipe
    SecurityPolicies List<string>
    The list of security policy IDs that are included in the recipe
    State string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    SystemTags Dictionary<string, object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the target was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    Responder rule description
    DisplayName string
    A filter to return only resources that match the entire display name given.
    FreeformTags map[string]interface{}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    Unique identifier of target responder recipe that can't be changed after creation
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Owner string
    Owner of target responder recipe
    SecurityPolicies []string
    The list of security policy IDs that are included in the recipe
    State string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    SystemTags map[string]interface{}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the target was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    compartmentId String
    The OCID of the compartment in which to list resources.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    Responder rule description
    displayName String
    A filter to return only resources that match the entire display name given.
    freeformTags Map<String,Object>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    Unique identifier of target responder recipe that can't be changed after creation
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    owner String
    Owner of target responder recipe
    securityPolicies List<String>
    The list of security policy IDs that are included in the recipe
    state String
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    systemTags Map<String,Object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the target was last updated. Format defined by RFC3339.
    compartmentId string
    The OCID of the compartment in which to list resources.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string
    Responder rule description
    displayName string
    A filter to return only resources that match the entire display name given.
    freeformTags {[key: string]: any}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id string
    Unique identifier of target responder recipe that can't be changed after creation
    lifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    owner string
    Owner of target responder recipe
    securityPolicies string[]
    The list of security policy IDs that are included in the recipe
    state string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    systemTags {[key: string]: any}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    compartment_id str
    The OCID of the compartment in which to list resources.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str
    Responder rule description
    display_name str
    A filter to return only resources that match the entire display name given.
    freeform_tags Mapping[str, Any]
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id str
    Unique identifier of target responder recipe that can't be changed after creation
    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.
    owner str
    Owner of target responder recipe
    security_policies Sequence[str]
    The list of security policy IDs that are included in the recipe
    state str
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    system_tags Mapping[str, Any]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The date and time the target was created. Format defined by RFC3339.
    time_updated str
    The date and time the target was last updated. Format defined by RFC3339.
    compartmentId String
    The OCID of the compartment in which to list resources.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    Responder rule description
    displayName String
    A filter to return only resources that match the entire display name given.
    freeformTags Map<Any>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    Unique identifier of target responder recipe that can't be changed after creation
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    owner String
    Owner of target responder recipe
    securityPolicies List<String>
    The list of security policy IDs that are included in the recipe
    state String
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    systemTags Map<Any>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the target was last updated. Format defined by RFC3339.

    GetGuardTargetsTargetCollectionItemTargetDetectorRecipe

    CompartmentId string
    The OCID of the compartment in which to list resources.
    Description string
    Responder rule description
    Detector string
    Detector type for the rule
    DetectorRecipeId string
    Unique identifier for of original Oracle-managed detector recipe on which the TargetDetectorRecipe is based
    DetectorRecipeType string
    Recipe type ( STANDARD, ENTERPRISE )
    DetectorRules List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRule>
    List of detector rules for the detector recipe - user input
    DisplayName string
    A filter to return only resources that match the entire display name given.
    EffectiveDetectorRules List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRule>
    List of currently enabled detector rules for the detector type for recipe after applying defaults
    Id string
    Unique identifier of target responder recipe that can't be changed after creation
    Owner string
    Owner of target responder recipe
    State string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    TimeCreated string
    The date and time the target was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    Description string
    Responder rule description
    Detector string
    Detector type for the rule
    DetectorRecipeId string
    Unique identifier for of original Oracle-managed detector recipe on which the TargetDetectorRecipe is based
    DetectorRecipeType string
    Recipe type ( STANDARD, ENTERPRISE )
    DetectorRules []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRule
    List of detector rules for the detector recipe - user input
    DisplayName string
    A filter to return only resources that match the entire display name given.
    EffectiveDetectorRules []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRule
    List of currently enabled detector rules for the detector type for recipe after applying defaults
    Id string
    Unique identifier of target responder recipe that can't be changed after creation
    Owner string
    Owner of target responder recipe
    State string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    TimeCreated string
    The date and time the target was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    compartmentId String
    The OCID of the compartment in which to list resources.
    description String
    Responder rule description
    detector String
    Detector type for the rule
    detectorRecipeId String
    Unique identifier for of original Oracle-managed detector recipe on which the TargetDetectorRecipe is based
    detectorRecipeType String
    Recipe type ( STANDARD, ENTERPRISE )
    detectorRules List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRule>
    List of detector rules for the detector recipe - user input
    displayName String
    A filter to return only resources that match the entire display name given.
    effectiveDetectorRules List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRule>
    List of currently enabled detector rules for the detector type for recipe after applying defaults
    id String
    Unique identifier of target responder recipe that can't be changed after creation
    owner String
    Owner of target responder recipe
    state String
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    timeCreated String
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the target was last updated. Format defined by RFC3339.
    compartmentId string
    The OCID of the compartment in which to list resources.
    description string
    Responder rule description
    detector string
    Detector type for the rule
    detectorRecipeId string
    Unique identifier for of original Oracle-managed detector recipe on which the TargetDetectorRecipe is based
    detectorRecipeType string
    Recipe type ( STANDARD, ENTERPRISE )
    detectorRules GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRule[]
    List of detector rules for the detector recipe - user input
    displayName string
    A filter to return only resources that match the entire display name given.
    effectiveDetectorRules GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRule[]
    List of currently enabled detector rules for the detector type for recipe after applying defaults
    id string
    Unique identifier of target responder recipe that can't be changed after creation
    owner string
    Owner of target responder recipe
    state string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    timeCreated string
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    compartment_id str
    The OCID of the compartment in which to list resources.
    description str
    Responder rule description
    detector str
    Detector type for the rule
    detector_recipe_id str
    Unique identifier for of original Oracle-managed detector recipe on which the TargetDetectorRecipe is based
    detector_recipe_type str
    Recipe type ( STANDARD, ENTERPRISE )
    detector_rules Sequence[cloudguard.GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRule]
    List of detector rules for the detector recipe - user input
    display_name str
    A filter to return only resources that match the entire display name given.
    effective_detector_rules Sequence[cloudguard.GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRule]
    List of currently enabled detector rules for the detector type for recipe after applying defaults
    id str
    Unique identifier of target responder recipe that can't be changed after creation
    owner str
    Owner of target responder recipe
    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 target was created. Format defined by RFC3339.
    time_updated str
    The date and time the target was last updated. Format defined by RFC3339.
    compartmentId String
    The OCID of the compartment in which to list resources.
    description String
    Responder rule description
    detector String
    Detector type for the rule
    detectorRecipeId String
    Unique identifier for of original Oracle-managed detector recipe on which the TargetDetectorRecipe is based
    detectorRecipeType String
    Recipe type ( STANDARD, ENTERPRISE )
    detectorRules List<Property Map>
    List of detector rules for the detector recipe - user input
    displayName String
    A filter to return only resources that match the entire display name given.
    effectiveDetectorRules List<Property Map>
    List of currently enabled detector rules for the detector type for recipe after applying defaults
    id String
    Unique identifier of target responder recipe that can't be changed after creation
    owner String
    Owner of target responder recipe
    state String
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    timeCreated String
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the target was last updated. Format defined by RFC3339.

    GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRule

    DataSourceId string
    The ID of the attached data source
    Description string
    Responder rule description
    Details List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetail>
    Detailed information for a responder rule
    Detector string
    Detector type for the rule
    DetectorRuleId string
    The unique identifier of the detector rule
    DisplayName string
    A filter to return only resources that match the entire display name given.
    EntitiesMappings List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleEntitiesMapping>
    Data source entities mapping for a detector rule
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    ManagedListTypes List<string>
    List of managed list types related to this rule
    Recommendation string
    Recommendation for TargetDetectorRecipeDetectorRule resource
    ResourceType string
    The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
    ServiceType string
    Service type of the configuration to which the rule is applied
    State string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    TimeCreated string
    The date and time the target was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    DataSourceId string
    The ID of the attached data source
    Description string
    Responder rule description
    Details []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetail
    Detailed information for a responder rule
    Detector string
    Detector type for the rule
    DetectorRuleId string
    The unique identifier of the detector rule
    DisplayName string
    A filter to return only resources that match the entire display name given.
    EntitiesMappings []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleEntitiesMapping
    Data source entities mapping for a detector rule
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    ManagedListTypes []string
    List of managed list types related to this rule
    Recommendation string
    Recommendation for TargetDetectorRecipeDetectorRule resource
    ResourceType string
    The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
    ServiceType string
    Service type of the configuration to which the rule is applied
    State string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    TimeCreated string
    The date and time the target was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    dataSourceId String
    The ID of the attached data source
    description String
    Responder rule description
    details List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetail>
    Detailed information for a responder rule
    detector String
    Detector type for the rule
    detectorRuleId String
    The unique identifier of the detector rule
    displayName String
    A filter to return only resources that match the entire display name given.
    entitiesMappings List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleEntitiesMapping>
    Data source entities mapping for a detector rule
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    managedListTypes List<String>
    List of managed list types related to this rule
    recommendation String
    Recommendation for TargetDetectorRecipeDetectorRule resource
    resourceType String
    The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
    serviceType String
    Service type of the configuration to which the rule is applied
    state String
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    timeCreated String
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the target was last updated. Format defined by RFC3339.
    dataSourceId string
    The ID of the attached data source
    description string
    Responder rule description
    details GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetail[]
    Detailed information for a responder rule
    detector string
    Detector type for the rule
    detectorRuleId string
    The unique identifier of the detector rule
    displayName string
    A filter to return only resources that match the entire display name given.
    entitiesMappings GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleEntitiesMapping[]
    Data source entities mapping for a detector rule
    lifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    managedListTypes string[]
    List of managed list types related to this rule
    recommendation string
    Recommendation for TargetDetectorRecipeDetectorRule resource
    resourceType string
    The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
    serviceType string
    Service type of the configuration to which the rule is applied
    state string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    timeCreated string
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    data_source_id str
    The ID of the attached data source
    description str
    Responder rule description
    details Sequence[cloudguard.GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetail]
    Detailed information for a responder rule
    detector str
    Detector type for the rule
    detector_rule_id str
    The unique identifier of the detector rule
    display_name str
    A filter to return only resources that match the entire display name given.
    entities_mappings Sequence[cloudguard.GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleEntitiesMapping]
    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_types Sequence[str]
    List of managed list types related to this rule
    recommendation str
    Recommendation for TargetDetectorRecipeDetectorRule resource
    resource_type str
    The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
    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 target was created. Format defined by RFC3339.
    time_updated str
    The date and time the target was last updated. Format defined by RFC3339.
    dataSourceId String
    The ID of the attached data source
    description String
    Responder rule description
    details List<Property Map>
    Detailed information for a responder rule
    detector String
    Detector type for the rule
    detectorRuleId String
    The unique identifier of the detector rule
    displayName String
    A filter to return only resources that match the entire display name given.
    entitiesMappings List<Property Map>
    Data source entities mapping for a detector rule
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    managedListTypes List<String>
    List of managed list types related to this rule
    recommendation String
    Recommendation for TargetDetectorRecipeDetectorRule resource
    resourceType String
    The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
    serviceType String
    Service type of the configuration to which the rule is applied
    state String
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    timeCreated String
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the target was last updated. Format defined by RFC3339.

    GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetail

    ConditionGroups List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConditionGroup>
    Condition group corresponding to each compartment
    Configurations List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfiguration>
    List of responder rule configurations
    IsConfigurationAllowed bool
    Configuration allowed or not
    IsEnabled bool
    Enabled state for the responder rule
    Labels List<string>
    User-defined labels for a detector rule
    RiskLevel string
    The risk level of the detector rule
    ConditionGroups []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConditionGroup
    Condition group corresponding to each compartment
    Configurations []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfiguration
    List of responder rule configurations
    IsConfigurationAllowed bool
    Configuration allowed or not
    IsEnabled bool
    Enabled state for the responder rule
    Labels []string
    User-defined labels for a detector rule
    RiskLevel string
    The risk level of the detector rule
    conditionGroups List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConditionGroup>
    Condition group corresponding to each compartment
    configurations List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfiguration>
    List of responder rule configurations
    isConfigurationAllowed Boolean
    Configuration allowed or not
    isEnabled Boolean
    Enabled state for the responder rule
    labels List<String>
    User-defined labels for a detector rule
    riskLevel String
    The risk level of the detector rule
    conditionGroups GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConditionGroup[]
    Condition group corresponding to each compartment
    configurations GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfiguration[]
    List of responder rule configurations
    isConfigurationAllowed boolean
    Configuration allowed or not
    isEnabled boolean
    Enabled state for the responder rule
    labels string[]
    User-defined labels for a detector rule
    riskLevel string
    The risk level of the detector rule
    condition_groups Sequence[cloudguard.GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConditionGroup]
    Condition group corresponding to each compartment
    configurations Sequence[cloudguard.GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfiguration]
    List of responder rule configurations
    is_configuration_allowed bool
    Configuration allowed or not
    is_enabled bool
    Enabled state for the responder rule
    labels Sequence[str]
    User-defined labels for a detector rule
    risk_level str
    The risk level of the detector rule
    conditionGroups List<Property Map>
    Condition group corresponding to each compartment
    configurations List<Property Map>
    List of responder rule configurations
    isConfigurationAllowed Boolean
    Configuration allowed or not
    isEnabled Boolean
    Enabled state for the responder rule
    labels List<String>
    User-defined labels for a detector rule
    riskLevel String
    The risk level of the detector rule

    GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConditionGroup

    CompartmentId string
    The OCID of the compartment in which to list resources.
    Condition string
    The base condition resource.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    Condition string
    The base condition resource.
    compartmentId String
    The OCID of the compartment in which to list resources.
    condition String
    The base condition resource.
    compartmentId string
    The OCID of the compartment in which to list resources.
    condition string
    The base condition resource.
    compartment_id str
    The OCID of the compartment in which to list resources.
    condition str
    The base condition resource.
    compartmentId String
    The OCID of the compartment in which to list resources.
    condition String
    The base condition resource.

    GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfiguration

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

    GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfigurationValue

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

    GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleEntitiesMapping

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

    GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRule

    DataSourceId string
    The ID of the attached data source
    Description string
    Responder rule description
    Details List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetail>
    Detailed information for a responder rule
    Detector string
    Detector type for the rule
    DetectorRuleId string
    The unique identifier of the detector rule
    DisplayName string
    A filter to return only resources that match the entire display name given.
    EntitiesMappings List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleEntitiesMapping>
    Data source entities mapping for a detector rule
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    ManagedListTypes List<string>
    List of managed list types related to this rule
    Recommendation string
    Recommendation for TargetDetectorRecipeDetectorRule resource
    ResourceType string
    The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
    ServiceType string
    Service type of the configuration to which the rule is applied
    State string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    TimeCreated string
    The date and time the target was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    DataSourceId string
    The ID of the attached data source
    Description string
    Responder rule description
    Details []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetail
    Detailed information for a responder rule
    Detector string
    Detector type for the rule
    DetectorRuleId string
    The unique identifier of the detector rule
    DisplayName string
    A filter to return only resources that match the entire display name given.
    EntitiesMappings []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleEntitiesMapping
    Data source entities mapping for a detector rule
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    ManagedListTypes []string
    List of managed list types related to this rule
    Recommendation string
    Recommendation for TargetDetectorRecipeDetectorRule resource
    ResourceType string
    The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
    ServiceType string
    Service type of the configuration to which the rule is applied
    State string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    TimeCreated string
    The date and time the target was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    dataSourceId String
    The ID of the attached data source
    description String
    Responder rule description
    details List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetail>
    Detailed information for a responder rule
    detector String
    Detector type for the rule
    detectorRuleId String
    The unique identifier of the detector rule
    displayName String
    A filter to return only resources that match the entire display name given.
    entitiesMappings List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleEntitiesMapping>
    Data source entities mapping for a detector rule
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    managedListTypes List<String>
    List of managed list types related to this rule
    recommendation String
    Recommendation for TargetDetectorRecipeDetectorRule resource
    resourceType String
    The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
    serviceType String
    Service type of the configuration to which the rule is applied
    state String
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    timeCreated String
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the target was last updated. Format defined by RFC3339.
    dataSourceId string
    The ID of the attached data source
    description string
    Responder rule description
    details GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetail[]
    Detailed information for a responder rule
    detector string
    Detector type for the rule
    detectorRuleId string
    The unique identifier of the detector rule
    displayName string
    A filter to return only resources that match the entire display name given.
    entitiesMappings GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleEntitiesMapping[]
    Data source entities mapping for a detector rule
    lifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    managedListTypes string[]
    List of managed list types related to this rule
    recommendation string
    Recommendation for TargetDetectorRecipeDetectorRule resource
    resourceType string
    The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
    serviceType string
    Service type of the configuration to which the rule is applied
    state string
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    timeCreated string
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    data_source_id str
    The ID of the attached data source
    description str
    Responder rule description
    details Sequence[cloudguard.GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetail]
    Detailed information for a responder rule
    detector str
    Detector type for the rule
    detector_rule_id str
    The unique identifier of the detector rule
    display_name str
    A filter to return only resources that match the entire display name given.
    entities_mappings Sequence[cloudguard.GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleEntitiesMapping]
    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_types Sequence[str]
    List of managed list types related to this rule
    recommendation str
    Recommendation for TargetDetectorRecipeDetectorRule resource
    resource_type str
    The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
    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 target was created. Format defined by RFC3339.
    time_updated str
    The date and time the target was last updated. Format defined by RFC3339.
    dataSourceId String
    The ID of the attached data source
    description String
    Responder rule description
    details List<Property Map>
    Detailed information for a responder rule
    detector String
    Detector type for the rule
    detectorRuleId String
    The unique identifier of the detector rule
    displayName String
    A filter to return only resources that match the entire display name given.
    entitiesMappings List<Property Map>
    Data source entities mapping for a detector rule
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    managedListTypes List<String>
    List of managed list types related to this rule
    recommendation String
    Recommendation for TargetDetectorRecipeDetectorRule resource
    resourceType String
    The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
    serviceType String
    Service type of the configuration to which the rule is applied
    state String
    The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
    timeCreated String
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the target was last updated. Format defined by RFC3339.

    GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetail

    ConditionGroups List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroup>
    Condition group corresponding to each compartment
    Configurations List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfiguration>
    List of responder rule configurations
    IsConfigurationAllowed bool
    Configuration allowed or not
    IsEnabled bool
    Enabled state for the responder rule
    Labels List<string>
    User-defined labels for a detector rule
    RiskLevel string
    The risk level of the detector rule
    ConditionGroups []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroup
    Condition group corresponding to each compartment
    Configurations []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfiguration
    List of responder rule configurations
    IsConfigurationAllowed bool
    Configuration allowed or not
    IsEnabled bool
    Enabled state for the responder rule
    Labels []string
    User-defined labels for a detector rule
    RiskLevel string
    The risk level of the detector rule
    conditionGroups List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroup>
    Condition group corresponding to each compartment
    configurations List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfiguration>
    List of responder rule configurations
    isConfigurationAllowed Boolean
    Configuration allowed or not
    isEnabled Boolean
    Enabled state for the responder rule
    labels List<String>
    User-defined labels for a detector rule
    riskLevel String
    The risk level of the detector rule
    conditionGroups GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroup[]
    Condition group corresponding to each compartment
    configurations GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfiguration[]
    List of responder rule configurations
    isConfigurationAllowed boolean
    Configuration allowed or not
    isEnabled boolean
    Enabled state for the responder rule
    labels string[]
    User-defined labels for a detector rule
    riskLevel string
    The risk level of the detector rule
    condition_groups Sequence[cloudguard.GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroup]
    Condition group corresponding to each compartment
    configurations Sequence[cloudguard.GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfiguration]
    List of responder rule configurations
    is_configuration_allowed bool
    Configuration allowed or not
    is_enabled bool
    Enabled state for the responder rule
    labels Sequence[str]
    User-defined labels for a detector rule
    risk_level str
    The risk level of the detector rule
    conditionGroups List<Property Map>
    Condition group corresponding to each compartment
    configurations List<Property Map>
    List of responder rule configurations
    isConfigurationAllowed Boolean
    Configuration allowed or not
    isEnabled Boolean
    Enabled state for the responder rule
    labels List<String>
    User-defined labels for a detector rule
    riskLevel String
    The risk level of the detector rule

    GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroup

    CompartmentId string
    The OCID of the compartment in which to list resources.
    Condition string
    The base condition resource.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    Condition string
    The base condition resource.
    compartmentId String
    The OCID of the compartment in which to list resources.
    condition String
    The base condition resource.
    compartmentId string
    The OCID of the compartment in which to list resources.
    condition string
    The base condition resource.
    compartment_id str
    The OCID of the compartment in which to list resources.
    condition str
    The base condition resource.
    compartmentId String
    The OCID of the compartment in which to list resources.
    condition String
    The base condition resource.

    GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfiguration

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

    GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValue

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

    GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleEntitiesMapping

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

    GetGuardTargetsTargetCollectionItemTargetResponderRecipe

    CompartmentId string
    The OCID of the compartment in which to list resources.
    Description string
    Responder rule description
    DisplayName string
    A filter to return only resources that match the entire display name given.
    EffectiveResponderRules List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRule>
    List of currently enabled responder rules for the responder type for recipe after applying defaults
    Id string
    Unique identifier of target responder recipe that can't be changed after creation
    Owner string
    Owner of target responder recipe
    ResponderRecipeId string
    Unique identifier for the Oracle-managed responder recipe from which this recipe was cloned
    ResponderRules List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRule>
    List of responder rules associated with the recipe - user input
    TimeCreated string
    The date and time the target was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    CompartmentId string
    The OCID of the compartment in which to list resources.
    Description string
    Responder rule description
    DisplayName string
    A filter to return only resources that match the entire display name given.
    EffectiveResponderRules []GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRule
    List of currently enabled responder rules for the responder type for recipe after applying defaults
    Id string
    Unique identifier of target responder recipe that can't be changed after creation
    Owner string
    Owner of target responder recipe
    ResponderRecipeId string
    Unique identifier for the Oracle-managed responder recipe from which this recipe was cloned
    ResponderRules []GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRule
    List of responder rules associated with the recipe - user input
    TimeCreated string
    The date and time the target was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    compartmentId String
    The OCID of the compartment in which to list resources.
    description String
    Responder rule description
    displayName String
    A filter to return only resources that match the entire display name given.
    effectiveResponderRules List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRule>
    List of currently enabled responder rules for the responder type for recipe after applying defaults
    id String
    Unique identifier of target responder recipe that can't be changed after creation
    owner String
    Owner of target responder recipe
    responderRecipeId String
    Unique identifier for the Oracle-managed responder recipe from which this recipe was cloned
    responderRules List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRule>
    List of responder rules associated with the recipe - user input
    timeCreated String
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the target was last updated. Format defined by RFC3339.
    compartmentId string
    The OCID of the compartment in which to list resources.
    description string
    Responder rule description
    displayName string
    A filter to return only resources that match the entire display name given.
    effectiveResponderRules GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRule[]
    List of currently enabled responder rules for the responder type for recipe after applying defaults
    id string
    Unique identifier of target responder recipe that can't be changed after creation
    owner string
    Owner of target responder recipe
    responderRecipeId string
    Unique identifier for the Oracle-managed responder recipe from which this recipe was cloned
    responderRules GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRule[]
    List of responder rules associated with the recipe - user input
    timeCreated string
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    compartment_id str
    The OCID of the compartment in which to list resources.
    description str
    Responder rule description
    display_name str
    A filter to return only resources that match the entire display name given.
    effective_responder_rules Sequence[cloudguard.GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRule]
    List of currently enabled responder rules for the responder type for recipe after applying defaults
    id str
    Unique identifier of target responder recipe that can't be changed after creation
    owner str
    Owner of target responder recipe
    responder_recipe_id str
    Unique identifier for the Oracle-managed responder recipe from which this recipe was cloned
    responder_rules Sequence[cloudguard.GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRule]
    List of responder rules associated with the recipe - user input
    time_created str
    The date and time the target was created. Format defined by RFC3339.
    time_updated str
    The date and time the target was last updated. Format defined by RFC3339.
    compartmentId String
    The OCID of the compartment in which to list resources.
    description String
    Responder rule description
    displayName String
    A filter to return only resources that match the entire display name given.
    effectiveResponderRules List<Property Map>
    List of currently enabled responder rules for the responder type for recipe after applying defaults
    id String
    Unique identifier of target responder recipe that can't be changed after creation
    owner String
    Owner of target responder recipe
    responderRecipeId String
    Unique identifier for the Oracle-managed responder recipe from which this recipe was cloned
    responderRules List<Property Map>
    List of responder rules associated with the recipe - user input
    timeCreated String
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the target was last updated. Format defined by RFC3339.

    GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRule

    CompartmentId string
    The OCID of the compartment in which to list resources.
    Description string
    Responder rule description
    Details List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetail>
    Detailed information for a responder rule
    DisplayName string
    A filter to return only resources that match the entire display name given.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Policies List<string>
    List of policies
    ResponderRuleId string
    Unique identifier for the responder rule
    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.
    SupportedModes List<string>
    Supported execution modes for the responder rule
    TimeCreated string
    The date and time the target was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    Type string
    Type of responder
    CompartmentId string
    The OCID of the compartment in which to list resources.
    Description string
    Responder rule description
    Details []GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetail
    Detailed information for a responder rule
    DisplayName string
    A filter to return only resources that match the entire display name given.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Policies []string
    List of policies
    ResponderRuleId string
    Unique identifier for the responder rule
    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.
    SupportedModes []string
    Supported execution modes for the responder rule
    TimeCreated string
    The date and time the target was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    Type string
    Type of responder
    compartmentId String
    The OCID of the compartment in which to list resources.
    description String
    Responder rule description
    details List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetail>
    Detailed information for a responder rule
    displayName String
    A filter to return only resources that match the entire display name given.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    policies List<String>
    List of policies
    responderRuleId String
    Unique identifier for the responder rule
    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.
    supportedModes List<String>
    Supported execution modes for the responder rule
    timeCreated String
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the target was last updated. Format defined by RFC3339.
    type String
    Type of responder
    compartmentId string
    The OCID of the compartment in which to list resources.
    description string
    Responder rule description
    details GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetail[]
    Detailed information for a responder rule
    displayName string
    A filter to return only resources that match the entire display name given.
    lifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    policies string[]
    List of policies
    responderRuleId string
    Unique identifier for the responder rule
    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.
    supportedModes string[]
    Supported execution modes for the responder rule
    timeCreated string
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    type string
    Type of responder
    compartment_id str
    The OCID of the compartment in which to list resources.
    description str
    Responder rule description
    details Sequence[cloudguard.GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetail]
    Detailed information for a responder rule
    display_name str
    A filter to return only resources that match the entire display name given.
    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.
    policies Sequence[str]
    List of policies
    responder_rule_id str
    Unique identifier for the responder rule
    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.
    supported_modes Sequence[str]
    Supported execution modes for the responder rule
    time_created str
    The date and time the target was created. Format defined by RFC3339.
    time_updated str
    The date and time the target was last updated. Format defined by RFC3339.
    type str
    Type of responder
    compartmentId String
    The OCID of the compartment in which to list resources.
    description String
    Responder rule description
    details List<Property Map>
    Detailed information for a responder rule
    displayName String
    A filter to return only resources that match the entire display name given.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    policies List<String>
    List of policies
    responderRuleId String
    Unique identifier for the responder rule
    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.
    supportedModes List<String>
    Supported execution modes for the responder rule
    timeCreated String
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the target was last updated. Format defined by RFC3339.
    type String
    Type of responder

    GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetail

    Condition string
    The base condition resource.
    Configurations List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetailConfiguration>
    List of responder rule configurations
    IsEnabled bool
    Enabled state for the responder rule
    Mode string
    Execution mode for the responder rule
    Condition string
    The base condition resource.
    Configurations []GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetailConfiguration
    List of responder rule configurations
    IsEnabled bool
    Enabled state for the responder rule
    Mode string
    Execution mode for the responder rule
    condition String
    The base condition resource.
    configurations List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetailConfiguration>
    List of responder rule configurations
    isEnabled Boolean
    Enabled state for the responder rule
    mode String
    Execution mode for the responder rule
    condition string
    The base condition resource.
    configurations GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetailConfiguration[]
    List of responder rule configurations
    isEnabled boolean
    Enabled state for the responder rule
    mode string
    Execution mode for the responder rule
    condition str
    The base condition resource.
    configurations Sequence[cloudguard.GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetailConfiguration]
    List of responder rule configurations
    is_enabled bool
    Enabled state for the responder rule
    mode str
    Execution mode for the responder rule
    condition String
    The base condition resource.
    configurations List<Property Map>
    List of responder rule configurations
    isEnabled Boolean
    Enabled state for the responder rule
    mode String
    Execution mode for the responder rule

    GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetailConfiguration

    ConfigKey string
    Unique identifier of the configuration
    Name string
    Configuration name
    Value string
    Configuration value
    ConfigKey string
    Unique identifier of the configuration
    Name string
    Configuration name
    Value string
    Configuration value
    configKey String
    Unique identifier of the configuration
    name String
    Configuration name
    value String
    Configuration value
    configKey string
    Unique identifier of the configuration
    name string
    Configuration name
    value string
    Configuration value
    config_key str
    Unique identifier of the configuration
    name str
    Configuration name
    value str
    Configuration value
    configKey String
    Unique identifier of the configuration
    name String
    Configuration name
    value String
    Configuration value

    GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRule

    CompartmentId string
    The OCID of the compartment in which to list resources.
    Description string
    Responder rule description
    Details List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetail>
    Detailed information for a responder rule
    DisplayName string
    A filter to return only resources that match the entire display name given.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Policies List<string>
    List of policies
    ResponderRuleId string
    Unique identifier for the responder rule
    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.
    SupportedModes List<string>
    Supported execution modes for the responder rule
    TimeCreated string
    The date and time the target was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    Type string
    Type of responder
    CompartmentId string
    The OCID of the compartment in which to list resources.
    Description string
    Responder rule description
    Details []GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetail
    Detailed information for a responder rule
    DisplayName string
    A filter to return only resources that match the entire display name given.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Policies []string
    List of policies
    ResponderRuleId string
    Unique identifier for the responder rule
    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.
    SupportedModes []string
    Supported execution modes for the responder rule
    TimeCreated string
    The date and time the target was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    Type string
    Type of responder
    compartmentId String
    The OCID of the compartment in which to list resources.
    description String
    Responder rule description
    details List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetail>
    Detailed information for a responder rule
    displayName String
    A filter to return only resources that match the entire display name given.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    policies List<String>
    List of policies
    responderRuleId String
    Unique identifier for the responder rule
    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.
    supportedModes List<String>
    Supported execution modes for the responder rule
    timeCreated String
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the target was last updated. Format defined by RFC3339.
    type String
    Type of responder
    compartmentId string
    The OCID of the compartment in which to list resources.
    description string
    Responder rule description
    details GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetail[]
    Detailed information for a responder rule
    displayName string
    A filter to return only resources that match the entire display name given.
    lifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    policies string[]
    List of policies
    responderRuleId string
    Unique identifier for the responder rule
    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.
    supportedModes string[]
    Supported execution modes for the responder rule
    timeCreated string
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated string
    The date and time the target was last updated. Format defined by RFC3339.
    type string
    Type of responder
    compartment_id str
    The OCID of the compartment in which to list resources.
    description str
    Responder rule description
    details Sequence[cloudguard.GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetail]
    Detailed information for a responder rule
    display_name str
    A filter to return only resources that match the entire display name given.
    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.
    policies Sequence[str]
    List of policies
    responder_rule_id str
    Unique identifier for the responder rule
    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.
    supported_modes Sequence[str]
    Supported execution modes for the responder rule
    time_created str
    The date and time the target was created. Format defined by RFC3339.
    time_updated str
    The date and time the target was last updated. Format defined by RFC3339.
    type str
    Type of responder
    compartmentId String
    The OCID of the compartment in which to list resources.
    description String
    Responder rule description
    details List<Property Map>
    Detailed information for a responder rule
    displayName String
    A filter to return only resources that match the entire display name given.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    policies List<String>
    List of policies
    responderRuleId String
    Unique identifier for the responder rule
    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.
    supportedModes List<String>
    Supported execution modes for the responder rule
    timeCreated String
    The date and time the target was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the target was last updated. Format defined by RFC3339.
    type String
    Type of responder

    GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetail

    Condition string
    The base condition resource.
    Configurations List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetailConfiguration>
    List of responder rule configurations
    IsEnabled bool
    Enabled state for the responder rule
    Mode string
    Execution mode for the responder rule
    Condition string
    The base condition resource.
    Configurations []GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetailConfiguration
    List of responder rule configurations
    IsEnabled bool
    Enabled state for the responder rule
    Mode string
    Execution mode for the responder rule
    condition String
    The base condition resource.
    configurations List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetailConfiguration>
    List of responder rule configurations
    isEnabled Boolean
    Enabled state for the responder rule
    mode String
    Execution mode for the responder rule
    condition string
    The base condition resource.
    configurations GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetailConfiguration[]
    List of responder rule configurations
    isEnabled boolean
    Enabled state for the responder rule
    mode string
    Execution mode for the responder rule
    condition str
    The base condition resource.
    configurations Sequence[cloudguard.GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetailConfiguration]
    List of responder rule configurations
    is_enabled bool
    Enabled state for the responder rule
    mode str
    Execution mode for the responder rule
    condition String
    The base condition resource.
    configurations List<Property Map>
    List of responder rule configurations
    isEnabled Boolean
    Enabled state for the responder rule
    mode String
    Execution mode for the responder rule

    GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetailConfiguration

    ConfigKey string
    Unique identifier of the configuration
    Name string
    Configuration name
    Value string
    Configuration value
    ConfigKey string
    Unique identifier of the configuration
    Name string
    Configuration name
    Value string
    Configuration value
    configKey String
    Unique identifier of the configuration
    name String
    Configuration name
    value String
    Configuration value
    configKey string
    Unique identifier of the configuration
    name string
    Configuration name
    value string
    Configuration value
    config_key str
    Unique identifier of the configuration
    name str
    Configuration name
    value str
    Configuration value
    configKey String
    Unique identifier of the configuration
    name String
    Configuration name
    value String
    Configuration value

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v2.4.0 published on Thursday, Jul 25, 2024 by Pulumi