1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. CloudGuard
  5. Target
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi

oci.CloudGuard.Target

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi

    This resource provides the Target resource in Oracle Cloud Infrastructure Cloud Guard service.

    Creates a target (Target resource), using parameters passed in a CreateTargetDetails resource.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testTarget = new oci.cloudguard.Target("test_target", {
        compartmentId: compartmentId,
        displayName: targetDisplayName,
        targetResourceId: testResource.id,
        targetResourceType: targetTargetResourceType,
        definedTags: {
            "foo-namespace.bar-key": "value",
        },
        description: targetDescription,
        freeformTags: {
            "bar-key": "value",
        },
        state: targetState,
        targetDetectorRecipes: [{
            detectorRecipeId: testDetectorRecipe.id,
            detectorRules: [{
                details: {
                    conditionGroups: [{
                        compartmentId: compartmentId,
                        condition: targetTargetDetectorRecipesDetectorRulesDetailsConditionGroupsCondition,
                    }],
                },
                detectorRuleId: testRule.id,
            }],
        }],
        targetResponderRecipes: [{
            responderRecipeId: testResponderRecipe.id,
            responderRules: [{
                details: {
                    condition: targetTargetResponderRecipesResponderRulesDetailsCondition,
                    configurations: [{
                        configKey: targetTargetResponderRecipesResponderRulesDetailsConfigurationsConfigKey,
                        name: targetTargetResponderRecipesResponderRulesDetailsConfigurationsName,
                        value: targetTargetResponderRecipesResponderRulesDetailsConfigurationsValue,
                    }],
                    mode: targetTargetResponderRecipesResponderRulesDetailsMode,
                },
                responderRuleId: testRule.id,
            }],
        }],
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_target = oci.cloud_guard.Target("test_target",
        compartment_id=compartment_id,
        display_name=target_display_name,
        target_resource_id=test_resource["id"],
        target_resource_type=target_target_resource_type,
        defined_tags={
            "foo-namespace.bar-key": "value",
        },
        description=target_description,
        freeform_tags={
            "bar-key": "value",
        },
        state=target_state,
        target_detector_recipes=[oci.cloud_guard.TargetTargetDetectorRecipeArgs(
            detector_recipe_id=test_detector_recipe["id"],
            detector_rules=[oci.cloud_guard.TargetTargetDetectorRecipeDetectorRuleArgs(
                details=oci.cloud_guard.TargetTargetDetectorRecipeDetectorRuleDetailsArgs(
                    condition_groups=[oci.cloud_guard.TargetTargetDetectorRecipeDetectorRuleDetailsConditionGroupArgs(
                        compartment_id=compartment_id,
                        condition=target_target_detector_recipes_detector_rules_details_condition_groups_condition,
                    )],
                ),
                detector_rule_id=test_rule["id"],
            )],
        )],
        target_responder_recipes=[oci.cloud_guard.TargetTargetResponderRecipeArgs(
            responder_recipe_id=test_responder_recipe["id"],
            responder_rules=[oci.cloud_guard.TargetTargetResponderRecipeResponderRuleArgs(
                details=oci.cloud_guard.TargetTargetResponderRecipeResponderRuleDetailsArgs(
                    condition=target_target_responder_recipes_responder_rules_details_condition,
                    configurations=[oci.cloud_guard.TargetTargetResponderRecipeResponderRuleDetailsConfigurationArgs(
                        config_key=target_target_responder_recipes_responder_rules_details_configurations_config_key,
                        name=target_target_responder_recipes_responder_rules_details_configurations_name,
                        value=target_target_responder_recipes_responder_rules_details_configurations_value,
                    )],
                    mode=target_target_responder_recipes_responder_rules_details_mode,
                ),
                responder_rule_id=test_rule["id"],
            )],
        )])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/CloudGuard"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := CloudGuard.NewTarget(ctx, "test_target", &CloudGuard.TargetArgs{
    			CompartmentId:      pulumi.Any(compartmentId),
    			DisplayName:        pulumi.Any(targetDisplayName),
    			TargetResourceId:   pulumi.Any(testResource.Id),
    			TargetResourceType: pulumi.Any(targetTargetResourceType),
    			DefinedTags: pulumi.Map{
    				"foo-namespace.bar-key": pulumi.Any("value"),
    			},
    			Description: pulumi.Any(targetDescription),
    			FreeformTags: pulumi.Map{
    				"bar-key": pulumi.Any("value"),
    			},
    			State: pulumi.Any(targetState),
    			TargetDetectorRecipes: cloudguard.TargetTargetDetectorRecipeArray{
    				&cloudguard.TargetTargetDetectorRecipeArgs{
    					DetectorRecipeId: pulumi.Any(testDetectorRecipe.Id),
    					DetectorRules: cloudguard.TargetTargetDetectorRecipeDetectorRuleArray{
    						&cloudguard.TargetTargetDetectorRecipeDetectorRuleArgs{
    							Details: &cloudguard.TargetTargetDetectorRecipeDetectorRuleDetailsArgs{
    								ConditionGroups: cloudguard.TargetTargetDetectorRecipeDetectorRuleDetailsConditionGroupArray{
    									&cloudguard.TargetTargetDetectorRecipeDetectorRuleDetailsConditionGroupArgs{
    										CompartmentId: pulumi.Any(compartmentId),
    										Condition:     pulumi.Any(targetTargetDetectorRecipesDetectorRulesDetailsConditionGroupsCondition),
    									},
    								},
    							},
    							DetectorRuleId: pulumi.Any(testRule.Id),
    						},
    					},
    				},
    			},
    			TargetResponderRecipes: cloudguard.TargetTargetResponderRecipeArray{
    				&cloudguard.TargetTargetResponderRecipeArgs{
    					ResponderRecipeId: pulumi.Any(testResponderRecipe.Id),
    					ResponderRules: cloudguard.TargetTargetResponderRecipeResponderRuleArray{
    						&cloudguard.TargetTargetResponderRecipeResponderRuleArgs{
    							Details: &cloudguard.TargetTargetResponderRecipeResponderRuleDetailsArgs{
    								Condition: pulumi.Any(targetTargetResponderRecipesResponderRulesDetailsCondition),
    								Configurations: cloudguard.TargetTargetResponderRecipeResponderRuleDetailsConfigurationArray{
    									&cloudguard.TargetTargetResponderRecipeResponderRuleDetailsConfigurationArgs{
    										ConfigKey: pulumi.Any(targetTargetResponderRecipesResponderRulesDetailsConfigurationsConfigKey),
    										Name:      pulumi.Any(targetTargetResponderRecipesResponderRulesDetailsConfigurationsName),
    										Value:     pulumi.Any(targetTargetResponderRecipesResponderRulesDetailsConfigurationsValue),
    									},
    								},
    								Mode: pulumi.Any(targetTargetResponderRecipesResponderRulesDetailsMode),
    							},
    							ResponderRuleId: pulumi.Any(testRule.Id),
    						},
    					},
    				},
    			},
    		})
    		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 testTarget = new Oci.CloudGuard.Target("test_target", new()
        {
            CompartmentId = compartmentId,
            DisplayName = targetDisplayName,
            TargetResourceId = testResource.Id,
            TargetResourceType = targetTargetResourceType,
            DefinedTags = 
            {
                { "foo-namespace.bar-key", "value" },
            },
            Description = targetDescription,
            FreeformTags = 
            {
                { "bar-key", "value" },
            },
            State = targetState,
            TargetDetectorRecipes = new[]
            {
                new Oci.CloudGuard.Inputs.TargetTargetDetectorRecipeArgs
                {
                    DetectorRecipeId = testDetectorRecipe.Id,
                    DetectorRules = new[]
                    {
                        new Oci.CloudGuard.Inputs.TargetTargetDetectorRecipeDetectorRuleArgs
                        {
                            Details = new Oci.CloudGuard.Inputs.TargetTargetDetectorRecipeDetectorRuleDetailsArgs
                            {
                                ConditionGroups = new[]
                                {
                                    new Oci.CloudGuard.Inputs.TargetTargetDetectorRecipeDetectorRuleDetailsConditionGroupArgs
                                    {
                                        CompartmentId = compartmentId,
                                        Condition = targetTargetDetectorRecipesDetectorRulesDetailsConditionGroupsCondition,
                                    },
                                },
                            },
                            DetectorRuleId = testRule.Id,
                        },
                    },
                },
            },
            TargetResponderRecipes = new[]
            {
                new Oci.CloudGuard.Inputs.TargetTargetResponderRecipeArgs
                {
                    ResponderRecipeId = testResponderRecipe.Id,
                    ResponderRules = new[]
                    {
                        new Oci.CloudGuard.Inputs.TargetTargetResponderRecipeResponderRuleArgs
                        {
                            Details = new Oci.CloudGuard.Inputs.TargetTargetResponderRecipeResponderRuleDetailsArgs
                            {
                                Condition = targetTargetResponderRecipesResponderRulesDetailsCondition,
                                Configurations = new[]
                                {
                                    new Oci.CloudGuard.Inputs.TargetTargetResponderRecipeResponderRuleDetailsConfigurationArgs
                                    {
                                        ConfigKey = targetTargetResponderRecipesResponderRulesDetailsConfigurationsConfigKey,
                                        Name = targetTargetResponderRecipesResponderRulesDetailsConfigurationsName,
                                        Value = targetTargetResponderRecipesResponderRulesDetailsConfigurationsValue,
                                    },
                                },
                                Mode = targetTargetResponderRecipesResponderRulesDetailsMode,
                            },
                            ResponderRuleId = testRule.Id,
                        },
                    },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.CloudGuard.Target;
    import com.pulumi.oci.CloudGuard.TargetArgs;
    import com.pulumi.oci.CloudGuard.inputs.TargetTargetDetectorRecipeArgs;
    import com.pulumi.oci.CloudGuard.inputs.TargetTargetResponderRecipeArgs;
    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) {
            var testTarget = new Target("testTarget", TargetArgs.builder()
                .compartmentId(compartmentId)
                .displayName(targetDisplayName)
                .targetResourceId(testResource.id())
                .targetResourceType(targetTargetResourceType)
                .definedTags(Map.of("foo-namespace.bar-key", "value"))
                .description(targetDescription)
                .freeformTags(Map.of("bar-key", "value"))
                .state(targetState)
                .targetDetectorRecipes(TargetTargetDetectorRecipeArgs.builder()
                    .detectorRecipeId(testDetectorRecipe.id())
                    .detectorRules(TargetTargetDetectorRecipeDetectorRuleArgs.builder()
                        .details(TargetTargetDetectorRecipeDetectorRuleDetailsArgs.builder()
                            .conditionGroups(TargetTargetDetectorRecipeDetectorRuleDetailsConditionGroupArgs.builder()
                                .compartmentId(compartmentId)
                                .condition(targetTargetDetectorRecipesDetectorRulesDetailsConditionGroupsCondition)
                                .build())
                            .build())
                        .detectorRuleId(testRule.id())
                        .build())
                    .build())
                .targetResponderRecipes(TargetTargetResponderRecipeArgs.builder()
                    .responderRecipeId(testResponderRecipe.id())
                    .responderRules(TargetTargetResponderRecipeResponderRuleArgs.builder()
                        .details(TargetTargetResponderRecipeResponderRuleDetailsArgs.builder()
                            .condition(targetTargetResponderRecipesResponderRulesDetailsCondition)
                            .configurations(TargetTargetResponderRecipeResponderRuleDetailsConfigurationArgs.builder()
                                .configKey(targetTargetResponderRecipesResponderRulesDetailsConfigurationsConfigKey)
                                .name(targetTargetResponderRecipesResponderRulesDetailsConfigurationsName)
                                .value(targetTargetResponderRecipesResponderRulesDetailsConfigurationsValue)
                                .build())
                            .mode(targetTargetResponderRecipesResponderRulesDetailsMode)
                            .build())
                        .responderRuleId(testRule.id())
                        .build())
                    .build())
                .build());
    
        }
    }
    
    resources:
      testTarget:
        type: oci:CloudGuard:Target
        name: test_target
        properties:
          compartmentId: ${compartmentId}
          displayName: ${targetDisplayName}
          targetResourceId: ${testResource.id}
          targetResourceType: ${targetTargetResourceType}
          definedTags:
            foo-namespace.bar-key: value
          description: ${targetDescription}
          freeformTags:
            bar-key: value
          state: ${targetState}
          targetDetectorRecipes:
            - detectorRecipeId: ${testDetectorRecipe.id}
              detectorRules:
                - details:
                    conditionGroups:
                      - compartmentId: ${compartmentId}
                        condition: ${targetTargetDetectorRecipesDetectorRulesDetailsConditionGroupsCondition}
                  detectorRuleId: ${testRule.id}
          targetResponderRecipes:
            - responderRecipeId: ${testResponderRecipe.id}
              responderRules:
                - details:
                    condition: ${targetTargetResponderRecipesResponderRulesDetailsCondition}
                    configurations:
                      - configKey: ${targetTargetResponderRecipesResponderRulesDetailsConfigurationsConfigKey}
                        name: ${targetTargetResponderRecipesResponderRulesDetailsConfigurationsName}
                        value: ${targetTargetResponderRecipesResponderRulesDetailsConfigurationsValue}
                    mode: ${targetTargetResponderRecipesResponderRulesDetailsMode}
                  responderRuleId: ${testRule.id}
    

    Create Target Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new Target(name: string, args: TargetArgs, opts?: CustomResourceOptions);
    @overload
    def Target(resource_name: str,
               args: TargetArgs,
               opts: Optional[ResourceOptions] = None)
    
    @overload
    def Target(resource_name: str,
               opts: Optional[ResourceOptions] = None,
               compartment_id: Optional[str] = None,
               display_name: Optional[str] = None,
               target_resource_id: Optional[str] = None,
               target_resource_type: Optional[str] = None,
               defined_tags: Optional[Mapping[str, Any]] = None,
               description: Optional[str] = None,
               freeform_tags: Optional[Mapping[str, Any]] = None,
               state: Optional[str] = None,
               target_detector_recipes: Optional[Sequence[_cloudguard.TargetTargetDetectorRecipeArgs]] = None,
               target_responder_recipes: Optional[Sequence[_cloudguard.TargetTargetResponderRecipeArgs]] = None)
    func NewTarget(ctx *Context, name string, args TargetArgs, opts ...ResourceOption) (*Target, error)
    public Target(string name, TargetArgs args, CustomResourceOptions? opts = null)
    public Target(String name, TargetArgs args)
    public Target(String name, TargetArgs args, CustomResourceOptions options)
    
    type: oci:CloudGuard:Target
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args TargetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args TargetArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args TargetArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args TargetArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args TargetArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var targetResource = new Oci.CloudGuard.Target("targetResource", new()
    {
        CompartmentId = "string",
        DisplayName = "string",
        TargetResourceId = "string",
        TargetResourceType = "string",
        DefinedTags = 
        {
            { "string", "any" },
        },
        Description = "string",
        FreeformTags = 
        {
            { "string", "any" },
        },
        State = "string",
        TargetDetectorRecipes = new[]
        {
            new Oci.CloudGuard.Inputs.TargetTargetDetectorRecipeArgs
            {
                DetectorRecipeId = "string",
                DisplayName = "string",
                Detector = "string",
                Description = "string",
                DetectorRecipeType = "string",
                DetectorRules = new[]
                {
                    new Oci.CloudGuard.Inputs.TargetTargetDetectorRecipeDetectorRuleArgs
                    {
                        Details = new Oci.CloudGuard.Inputs.TargetTargetDetectorRecipeDetectorRuleDetailsArgs
                        {
                            ConditionGroups = new[]
                            {
                                new Oci.CloudGuard.Inputs.TargetTargetDetectorRecipeDetectorRuleDetailsConditionGroupArgs
                                {
                                    CompartmentId = "string",
                                    Condition = "string",
                                },
                            },
                            Configurations = new[]
                            {
                                new Oci.CloudGuard.Inputs.TargetTargetDetectorRecipeDetectorRuleDetailsConfigurationArgs
                                {
                                    ConfigKey = "string",
                                    DataType = "string",
                                    Name = "string",
                                    Value = "string",
                                    Values = new[]
                                    {
                                        new Oci.CloudGuard.Inputs.TargetTargetDetectorRecipeDetectorRuleDetailsConfigurationValueArgs
                                        {
                                            ListType = "string",
                                            ManagedListType = "string",
                                            Value = "string",
                                        },
                                    },
                                },
                            },
                            IsConfigurationAllowed = false,
                            IsEnabled = false,
                            Labels = new[]
                            {
                                "string",
                            },
                            RiskLevel = "string",
                        },
                        DetectorRuleId = "string",
                        EntitiesMappings = new[]
                        {
                            new Oci.CloudGuard.Inputs.TargetTargetDetectorRecipeDetectorRuleEntitiesMappingArgs
                            {
                                DisplayName = "string",
                                EntityType = "string",
                                QueryField = "string",
                            },
                        },
                        Detector = "string",
                        Description = "string",
                        DisplayName = "string",
                        DataSourceId = "string",
                        LifecycleDetails = "string",
                        ManagedListTypes = new[]
                        {
                            "string",
                        },
                        Recommendation = "string",
                        ResourceType = "string",
                        ServiceType = "string",
                        State = "string",
                        TimeCreated = "string",
                        TimeUpdated = "string",
                    },
                },
                CompartmentId = "string",
                EffectiveDetectorRules = new[]
                {
                    new Oci.CloudGuard.Inputs.TargetTargetDetectorRecipeEffectiveDetectorRuleArgs
                    {
                        DataSourceId = "string",
                        Description = "string",
                        Details = new[]
                        {
                            new Oci.CloudGuard.Inputs.TargetTargetDetectorRecipeEffectiveDetectorRuleDetailArgs
                            {
                                ConditionGroups = new[]
                                {
                                    new Oci.CloudGuard.Inputs.TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroupArgs
                                    {
                                        CompartmentId = "string",
                                        Condition = "string",
                                    },
                                },
                                Configurations = new[]
                                {
                                    new Oci.CloudGuard.Inputs.TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationArgs
                                    {
                                        ConfigKey = "string",
                                        DataType = "string",
                                        Name = "string",
                                        Value = "string",
                                        Values = new[]
                                        {
                                            new Oci.CloudGuard.Inputs.TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValueArgs
                                            {
                                                ListType = "string",
                                                ManagedListType = "string",
                                                Value = "string",
                                            },
                                        },
                                    },
                                },
                                IsConfigurationAllowed = false,
                                IsEnabled = false,
                                Labels = new[]
                                {
                                    "string",
                                },
                                RiskLevel = "string",
                            },
                        },
                        Detector = "string",
                        DetectorRuleId = "string",
                        DisplayName = "string",
                        EntitiesMappings = new[]
                        {
                            new Oci.CloudGuard.Inputs.TargetTargetDetectorRecipeEffectiveDetectorRuleEntitiesMappingArgs
                            {
                                DisplayName = "string",
                                EntityType = "string",
                                QueryField = "string",
                            },
                        },
                        LifecycleDetails = "string",
                        ManagedListTypes = new[]
                        {
                            "string",
                        },
                        Recommendation = "string",
                        ResourceType = "string",
                        ServiceType = "string",
                        State = "string",
                        TimeCreated = "string",
                        TimeUpdated = "string",
                    },
                },
                Id = "string",
                Owner = "string",
                State = "string",
                TimeCreated = "string",
                TimeUpdated = "string",
            },
        },
        TargetResponderRecipes = new[]
        {
            new Oci.CloudGuard.Inputs.TargetTargetResponderRecipeArgs
            {
                ResponderRecipeId = "string",
                CompartmentId = "string",
                Description = "string",
                DisplayName = "string",
                EffectiveResponderRules = new[]
                {
                    new Oci.CloudGuard.Inputs.TargetTargetResponderRecipeEffectiveResponderRuleArgs
                    {
                        CompartmentId = "string",
                        Description = "string",
                        Details = new[]
                        {
                            new Oci.CloudGuard.Inputs.TargetTargetResponderRecipeEffectiveResponderRuleDetailArgs
                            {
                                Condition = "string",
                                Configurations = new[]
                                {
                                    new Oci.CloudGuard.Inputs.TargetTargetResponderRecipeEffectiveResponderRuleDetailConfigurationArgs
                                    {
                                        ConfigKey = "string",
                                        Name = "string",
                                        Value = "string",
                                    },
                                },
                                IsEnabled = false,
                                Mode = "string",
                            },
                        },
                        DisplayName = "string",
                        LifecycleDetails = "string",
                        Policies = new[]
                        {
                            "string",
                        },
                        ResponderRuleId = "string",
                        State = "string",
                        SupportedModes = new[]
                        {
                            "string",
                        },
                        TimeCreated = "string",
                        TimeUpdated = "string",
                        Type = "string",
                    },
                },
                Id = "string",
                Owner = "string",
                ResponderRules = new[]
                {
                    new Oci.CloudGuard.Inputs.TargetTargetResponderRecipeResponderRuleArgs
                    {
                        Details = new Oci.CloudGuard.Inputs.TargetTargetResponderRecipeResponderRuleDetailsArgs
                        {
                            Condition = "string",
                            Configurations = new[]
                            {
                                new Oci.CloudGuard.Inputs.TargetTargetResponderRecipeResponderRuleDetailsConfigurationArgs
                                {
                                    ConfigKey = "string",
                                    Name = "string",
                                    Value = "string",
                                },
                            },
                            IsEnabled = false,
                            Mode = "string",
                        },
                        ResponderRuleId = "string",
                        CompartmentId = "string",
                        Description = "string",
                        DisplayName = "string",
                        LifecycleDetails = "string",
                        Policies = new[]
                        {
                            "string",
                        },
                        State = "string",
                        SupportedModes = new[]
                        {
                            "string",
                        },
                        TimeCreated = "string",
                        TimeUpdated = "string",
                        Type = "string",
                    },
                },
                TimeCreated = "string",
                TimeUpdated = "string",
            },
        },
    });
    
    example, err := CloudGuard.NewTarget(ctx, "targetResource", &CloudGuard.TargetArgs{
    	CompartmentId:      pulumi.String("string"),
    	DisplayName:        pulumi.String("string"),
    	TargetResourceId:   pulumi.String("string"),
    	TargetResourceType: pulumi.String("string"),
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	Description: pulumi.String("string"),
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	State: pulumi.String("string"),
    	TargetDetectorRecipes: cloudguard.TargetTargetDetectorRecipeArray{
    		&cloudguard.TargetTargetDetectorRecipeArgs{
    			DetectorRecipeId:   pulumi.String("string"),
    			DisplayName:        pulumi.String("string"),
    			Detector:           pulumi.String("string"),
    			Description:        pulumi.String("string"),
    			DetectorRecipeType: pulumi.String("string"),
    			DetectorRules: cloudguard.TargetTargetDetectorRecipeDetectorRuleArray{
    				&cloudguard.TargetTargetDetectorRecipeDetectorRuleArgs{
    					Details: &cloudguard.TargetTargetDetectorRecipeDetectorRuleDetailsArgs{
    						ConditionGroups: cloudguard.TargetTargetDetectorRecipeDetectorRuleDetailsConditionGroupArray{
    							&cloudguard.TargetTargetDetectorRecipeDetectorRuleDetailsConditionGroupArgs{
    								CompartmentId: pulumi.String("string"),
    								Condition:     pulumi.String("string"),
    							},
    						},
    						Configurations: cloudguard.TargetTargetDetectorRecipeDetectorRuleDetailsConfigurationArray{
    							&cloudguard.TargetTargetDetectorRecipeDetectorRuleDetailsConfigurationArgs{
    								ConfigKey: pulumi.String("string"),
    								DataType:  pulumi.String("string"),
    								Name:      pulumi.String("string"),
    								Value:     pulumi.String("string"),
    								Values: cloudguard.TargetTargetDetectorRecipeDetectorRuleDetailsConfigurationValueArray{
    									&cloudguard.TargetTargetDetectorRecipeDetectorRuleDetailsConfigurationValueArgs{
    										ListType:        pulumi.String("string"),
    										ManagedListType: pulumi.String("string"),
    										Value:           pulumi.String("string"),
    									},
    								},
    							},
    						},
    						IsConfigurationAllowed: pulumi.Bool(false),
    						IsEnabled:              pulumi.Bool(false),
    						Labels: pulumi.StringArray{
    							pulumi.String("string"),
    						},
    						RiskLevel: pulumi.String("string"),
    					},
    					DetectorRuleId: pulumi.String("string"),
    					EntitiesMappings: cloudguard.TargetTargetDetectorRecipeDetectorRuleEntitiesMappingArray{
    						&cloudguard.TargetTargetDetectorRecipeDetectorRuleEntitiesMappingArgs{
    							DisplayName: pulumi.String("string"),
    							EntityType:  pulumi.String("string"),
    							QueryField:  pulumi.String("string"),
    						},
    					},
    					Detector:         pulumi.String("string"),
    					Description:      pulumi.String("string"),
    					DisplayName:      pulumi.String("string"),
    					DataSourceId:     pulumi.String("string"),
    					LifecycleDetails: pulumi.String("string"),
    					ManagedListTypes: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					Recommendation: pulumi.String("string"),
    					ResourceType:   pulumi.String("string"),
    					ServiceType:    pulumi.String("string"),
    					State:          pulumi.String("string"),
    					TimeCreated:    pulumi.String("string"),
    					TimeUpdated:    pulumi.String("string"),
    				},
    			},
    			CompartmentId: pulumi.String("string"),
    			EffectiveDetectorRules: cloudguard.TargetTargetDetectorRecipeEffectiveDetectorRuleArray{
    				&cloudguard.TargetTargetDetectorRecipeEffectiveDetectorRuleArgs{
    					DataSourceId: pulumi.String("string"),
    					Description:  pulumi.String("string"),
    					Details: cloudguard.TargetTargetDetectorRecipeEffectiveDetectorRuleDetailArray{
    						&cloudguard.TargetTargetDetectorRecipeEffectiveDetectorRuleDetailArgs{
    							ConditionGroups: cloudguard.TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroupArray{
    								&cloudguard.TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroupArgs{
    									CompartmentId: pulumi.String("string"),
    									Condition:     pulumi.String("string"),
    								},
    							},
    							Configurations: cloudguard.TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationArray{
    								&cloudguard.TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationArgs{
    									ConfigKey: pulumi.String("string"),
    									DataType:  pulumi.String("string"),
    									Name:      pulumi.String("string"),
    									Value:     pulumi.String("string"),
    									Values: cloudguard.TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValueArray{
    										&cloudguard.TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValueArgs{
    											ListType:        pulumi.String("string"),
    											ManagedListType: pulumi.String("string"),
    											Value:           pulumi.String("string"),
    										},
    									},
    								},
    							},
    							IsConfigurationAllowed: pulumi.Bool(false),
    							IsEnabled:              pulumi.Bool(false),
    							Labels: pulumi.StringArray{
    								pulumi.String("string"),
    							},
    							RiskLevel: pulumi.String("string"),
    						},
    					},
    					Detector:       pulumi.String("string"),
    					DetectorRuleId: pulumi.String("string"),
    					DisplayName:    pulumi.String("string"),
    					EntitiesMappings: cloudguard.TargetTargetDetectorRecipeEffectiveDetectorRuleEntitiesMappingArray{
    						&cloudguard.TargetTargetDetectorRecipeEffectiveDetectorRuleEntitiesMappingArgs{
    							DisplayName: pulumi.String("string"),
    							EntityType:  pulumi.String("string"),
    							QueryField:  pulumi.String("string"),
    						},
    					},
    					LifecycleDetails: pulumi.String("string"),
    					ManagedListTypes: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					Recommendation: pulumi.String("string"),
    					ResourceType:   pulumi.String("string"),
    					ServiceType:    pulumi.String("string"),
    					State:          pulumi.String("string"),
    					TimeCreated:    pulumi.String("string"),
    					TimeUpdated:    pulumi.String("string"),
    				},
    			},
    			Id:          pulumi.String("string"),
    			Owner:       pulumi.String("string"),
    			State:       pulumi.String("string"),
    			TimeCreated: pulumi.String("string"),
    			TimeUpdated: pulumi.String("string"),
    		},
    	},
    	TargetResponderRecipes: cloudguard.TargetTargetResponderRecipeArray{
    		&cloudguard.TargetTargetResponderRecipeArgs{
    			ResponderRecipeId: pulumi.String("string"),
    			CompartmentId:     pulumi.String("string"),
    			Description:       pulumi.String("string"),
    			DisplayName:       pulumi.String("string"),
    			EffectiveResponderRules: cloudguard.TargetTargetResponderRecipeEffectiveResponderRuleArray{
    				&cloudguard.TargetTargetResponderRecipeEffectiveResponderRuleArgs{
    					CompartmentId: pulumi.String("string"),
    					Description:   pulumi.String("string"),
    					Details: cloudguard.TargetTargetResponderRecipeEffectiveResponderRuleDetailArray{
    						&cloudguard.TargetTargetResponderRecipeEffectiveResponderRuleDetailArgs{
    							Condition: pulumi.String("string"),
    							Configurations: cloudguard.TargetTargetResponderRecipeEffectiveResponderRuleDetailConfigurationArray{
    								&cloudguard.TargetTargetResponderRecipeEffectiveResponderRuleDetailConfigurationArgs{
    									ConfigKey: pulumi.String("string"),
    									Name:      pulumi.String("string"),
    									Value:     pulumi.String("string"),
    								},
    							},
    							IsEnabled: pulumi.Bool(false),
    							Mode:      pulumi.String("string"),
    						},
    					},
    					DisplayName:      pulumi.String("string"),
    					LifecycleDetails: pulumi.String("string"),
    					Policies: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					ResponderRuleId: pulumi.String("string"),
    					State:           pulumi.String("string"),
    					SupportedModes: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					TimeCreated: pulumi.String("string"),
    					TimeUpdated: pulumi.String("string"),
    					Type:        pulumi.String("string"),
    				},
    			},
    			Id:    pulumi.String("string"),
    			Owner: pulumi.String("string"),
    			ResponderRules: cloudguard.TargetTargetResponderRecipeResponderRuleArray{
    				&cloudguard.TargetTargetResponderRecipeResponderRuleArgs{
    					Details: &cloudguard.TargetTargetResponderRecipeResponderRuleDetailsArgs{
    						Condition: pulumi.String("string"),
    						Configurations: cloudguard.TargetTargetResponderRecipeResponderRuleDetailsConfigurationArray{
    							&cloudguard.TargetTargetResponderRecipeResponderRuleDetailsConfigurationArgs{
    								ConfigKey: pulumi.String("string"),
    								Name:      pulumi.String("string"),
    								Value:     pulumi.String("string"),
    							},
    						},
    						IsEnabled: pulumi.Bool(false),
    						Mode:      pulumi.String("string"),
    					},
    					ResponderRuleId:  pulumi.String("string"),
    					CompartmentId:    pulumi.String("string"),
    					Description:      pulumi.String("string"),
    					DisplayName:      pulumi.String("string"),
    					LifecycleDetails: pulumi.String("string"),
    					Policies: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					State: pulumi.String("string"),
    					SupportedModes: pulumi.StringArray{
    						pulumi.String("string"),
    					},
    					TimeCreated: pulumi.String("string"),
    					TimeUpdated: pulumi.String("string"),
    					Type:        pulumi.String("string"),
    				},
    			},
    			TimeCreated: pulumi.String("string"),
    			TimeUpdated: pulumi.String("string"),
    		},
    	},
    })
    
    var targetResource = new Target("targetResource", TargetArgs.builder()
        .compartmentId("string")
        .displayName("string")
        .targetResourceId("string")
        .targetResourceType("string")
        .definedTags(Map.of("string", "any"))
        .description("string")
        .freeformTags(Map.of("string", "any"))
        .state("string")
        .targetDetectorRecipes(TargetTargetDetectorRecipeArgs.builder()
            .detectorRecipeId("string")
            .displayName("string")
            .detector("string")
            .description("string")
            .detectorRecipeType("string")
            .detectorRules(TargetTargetDetectorRecipeDetectorRuleArgs.builder()
                .details(TargetTargetDetectorRecipeDetectorRuleDetailsArgs.builder()
                    .conditionGroups(TargetTargetDetectorRecipeDetectorRuleDetailsConditionGroupArgs.builder()
                        .compartmentId("string")
                        .condition("string")
                        .build())
                    .configurations(TargetTargetDetectorRecipeDetectorRuleDetailsConfigurationArgs.builder()
                        .configKey("string")
                        .dataType("string")
                        .name("string")
                        .value("string")
                        .values(TargetTargetDetectorRecipeDetectorRuleDetailsConfigurationValueArgs.builder()
                            .listType("string")
                            .managedListType("string")
                            .value("string")
                            .build())
                        .build())
                    .isConfigurationAllowed(false)
                    .isEnabled(false)
                    .labels("string")
                    .riskLevel("string")
                    .build())
                .detectorRuleId("string")
                .entitiesMappings(TargetTargetDetectorRecipeDetectorRuleEntitiesMappingArgs.builder()
                    .displayName("string")
                    .entityType("string")
                    .queryField("string")
                    .build())
                .detector("string")
                .description("string")
                .displayName("string")
                .dataSourceId("string")
                .lifecycleDetails("string")
                .managedListTypes("string")
                .recommendation("string")
                .resourceType("string")
                .serviceType("string")
                .state("string")
                .timeCreated("string")
                .timeUpdated("string")
                .build())
            .compartmentId("string")
            .effectiveDetectorRules(TargetTargetDetectorRecipeEffectiveDetectorRuleArgs.builder()
                .dataSourceId("string")
                .description("string")
                .details(TargetTargetDetectorRecipeEffectiveDetectorRuleDetailArgs.builder()
                    .conditionGroups(TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroupArgs.builder()
                        .compartmentId("string")
                        .condition("string")
                        .build())
                    .configurations(TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationArgs.builder()
                        .configKey("string")
                        .dataType("string")
                        .name("string")
                        .value("string")
                        .values(TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValueArgs.builder()
                            .listType("string")
                            .managedListType("string")
                            .value("string")
                            .build())
                        .build())
                    .isConfigurationAllowed(false)
                    .isEnabled(false)
                    .labels("string")
                    .riskLevel("string")
                    .build())
                .detector("string")
                .detectorRuleId("string")
                .displayName("string")
                .entitiesMappings(TargetTargetDetectorRecipeEffectiveDetectorRuleEntitiesMappingArgs.builder()
                    .displayName("string")
                    .entityType("string")
                    .queryField("string")
                    .build())
                .lifecycleDetails("string")
                .managedListTypes("string")
                .recommendation("string")
                .resourceType("string")
                .serviceType("string")
                .state("string")
                .timeCreated("string")
                .timeUpdated("string")
                .build())
            .id("string")
            .owner("string")
            .state("string")
            .timeCreated("string")
            .timeUpdated("string")
            .build())
        .targetResponderRecipes(TargetTargetResponderRecipeArgs.builder()
            .responderRecipeId("string")
            .compartmentId("string")
            .description("string")
            .displayName("string")
            .effectiveResponderRules(TargetTargetResponderRecipeEffectiveResponderRuleArgs.builder()
                .compartmentId("string")
                .description("string")
                .details(TargetTargetResponderRecipeEffectiveResponderRuleDetailArgs.builder()
                    .condition("string")
                    .configurations(TargetTargetResponderRecipeEffectiveResponderRuleDetailConfigurationArgs.builder()
                        .configKey("string")
                        .name("string")
                        .value("string")
                        .build())
                    .isEnabled(false)
                    .mode("string")
                    .build())
                .displayName("string")
                .lifecycleDetails("string")
                .policies("string")
                .responderRuleId("string")
                .state("string")
                .supportedModes("string")
                .timeCreated("string")
                .timeUpdated("string")
                .type("string")
                .build())
            .id("string")
            .owner("string")
            .responderRules(TargetTargetResponderRecipeResponderRuleArgs.builder()
                .details(TargetTargetResponderRecipeResponderRuleDetailsArgs.builder()
                    .condition("string")
                    .configurations(TargetTargetResponderRecipeResponderRuleDetailsConfigurationArgs.builder()
                        .configKey("string")
                        .name("string")
                        .value("string")
                        .build())
                    .isEnabled(false)
                    .mode("string")
                    .build())
                .responderRuleId("string")
                .compartmentId("string")
                .description("string")
                .displayName("string")
                .lifecycleDetails("string")
                .policies("string")
                .state("string")
                .supportedModes("string")
                .timeCreated("string")
                .timeUpdated("string")
                .type("string")
                .build())
            .timeCreated("string")
            .timeUpdated("string")
            .build())
        .build());
    
    target_resource = oci.cloud_guard.Target("targetResource",
        compartment_id="string",
        display_name="string",
        target_resource_id="string",
        target_resource_type="string",
        defined_tags={
            "string": "any",
        },
        description="string",
        freeform_tags={
            "string": "any",
        },
        state="string",
        target_detector_recipes=[oci.cloud_guard.TargetTargetDetectorRecipeArgs(
            detector_recipe_id="string",
            display_name="string",
            detector="string",
            description="string",
            detector_recipe_type="string",
            detector_rules=[oci.cloud_guard.TargetTargetDetectorRecipeDetectorRuleArgs(
                details=oci.cloud_guard.TargetTargetDetectorRecipeDetectorRuleDetailsArgs(
                    condition_groups=[oci.cloud_guard.TargetTargetDetectorRecipeDetectorRuleDetailsConditionGroupArgs(
                        compartment_id="string",
                        condition="string",
                    )],
                    configurations=[oci.cloud_guard.TargetTargetDetectorRecipeDetectorRuleDetailsConfigurationArgs(
                        config_key="string",
                        data_type="string",
                        name="string",
                        value="string",
                        values=[oci.cloud_guard.TargetTargetDetectorRecipeDetectorRuleDetailsConfigurationValueArgs(
                            list_type="string",
                            managed_list_type="string",
                            value="string",
                        )],
                    )],
                    is_configuration_allowed=False,
                    is_enabled=False,
                    labels=["string"],
                    risk_level="string",
                ),
                detector_rule_id="string",
                entities_mappings=[oci.cloud_guard.TargetTargetDetectorRecipeDetectorRuleEntitiesMappingArgs(
                    display_name="string",
                    entity_type="string",
                    query_field="string",
                )],
                detector="string",
                description="string",
                display_name="string",
                data_source_id="string",
                lifecycle_details="string",
                managed_list_types=["string"],
                recommendation="string",
                resource_type="string",
                service_type="string",
                state="string",
                time_created="string",
                time_updated="string",
            )],
            compartment_id="string",
            effective_detector_rules=[oci.cloud_guard.TargetTargetDetectorRecipeEffectiveDetectorRuleArgs(
                data_source_id="string",
                description="string",
                details=[oci.cloud_guard.TargetTargetDetectorRecipeEffectiveDetectorRuleDetailArgs(
                    condition_groups=[oci.cloud_guard.TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroupArgs(
                        compartment_id="string",
                        condition="string",
                    )],
                    configurations=[oci.cloud_guard.TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationArgs(
                        config_key="string",
                        data_type="string",
                        name="string",
                        value="string",
                        values=[oci.cloud_guard.TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValueArgs(
                            list_type="string",
                            managed_list_type="string",
                            value="string",
                        )],
                    )],
                    is_configuration_allowed=False,
                    is_enabled=False,
                    labels=["string"],
                    risk_level="string",
                )],
                detector="string",
                detector_rule_id="string",
                display_name="string",
                entities_mappings=[oci.cloud_guard.TargetTargetDetectorRecipeEffectiveDetectorRuleEntitiesMappingArgs(
                    display_name="string",
                    entity_type="string",
                    query_field="string",
                )],
                lifecycle_details="string",
                managed_list_types=["string"],
                recommendation="string",
                resource_type="string",
                service_type="string",
                state="string",
                time_created="string",
                time_updated="string",
            )],
            id="string",
            owner="string",
            state="string",
            time_created="string",
            time_updated="string",
        )],
        target_responder_recipes=[oci.cloud_guard.TargetTargetResponderRecipeArgs(
            responder_recipe_id="string",
            compartment_id="string",
            description="string",
            display_name="string",
            effective_responder_rules=[oci.cloud_guard.TargetTargetResponderRecipeEffectiveResponderRuleArgs(
                compartment_id="string",
                description="string",
                details=[oci.cloud_guard.TargetTargetResponderRecipeEffectiveResponderRuleDetailArgs(
                    condition="string",
                    configurations=[oci.cloud_guard.TargetTargetResponderRecipeEffectiveResponderRuleDetailConfigurationArgs(
                        config_key="string",
                        name="string",
                        value="string",
                    )],
                    is_enabled=False,
                    mode="string",
                )],
                display_name="string",
                lifecycle_details="string",
                policies=["string"],
                responder_rule_id="string",
                state="string",
                supported_modes=["string"],
                time_created="string",
                time_updated="string",
                type="string",
            )],
            id="string",
            owner="string",
            responder_rules=[oci.cloud_guard.TargetTargetResponderRecipeResponderRuleArgs(
                details=oci.cloud_guard.TargetTargetResponderRecipeResponderRuleDetailsArgs(
                    condition="string",
                    configurations=[oci.cloud_guard.TargetTargetResponderRecipeResponderRuleDetailsConfigurationArgs(
                        config_key="string",
                        name="string",
                        value="string",
                    )],
                    is_enabled=False,
                    mode="string",
                ),
                responder_rule_id="string",
                compartment_id="string",
                description="string",
                display_name="string",
                lifecycle_details="string",
                policies=["string"],
                state="string",
                supported_modes=["string"],
                time_created="string",
                time_updated="string",
                type="string",
            )],
            time_created="string",
            time_updated="string",
        )])
    
    const targetResource = new oci.cloudguard.Target("targetResource", {
        compartmentId: "string",
        displayName: "string",
        targetResourceId: "string",
        targetResourceType: "string",
        definedTags: {
            string: "any",
        },
        description: "string",
        freeformTags: {
            string: "any",
        },
        state: "string",
        targetDetectorRecipes: [{
            detectorRecipeId: "string",
            displayName: "string",
            detector: "string",
            description: "string",
            detectorRecipeType: "string",
            detectorRules: [{
                details: {
                    conditionGroups: [{
                        compartmentId: "string",
                        condition: "string",
                    }],
                    configurations: [{
                        configKey: "string",
                        dataType: "string",
                        name: "string",
                        value: "string",
                        values: [{
                            listType: "string",
                            managedListType: "string",
                            value: "string",
                        }],
                    }],
                    isConfigurationAllowed: false,
                    isEnabled: false,
                    labels: ["string"],
                    riskLevel: "string",
                },
                detectorRuleId: "string",
                entitiesMappings: [{
                    displayName: "string",
                    entityType: "string",
                    queryField: "string",
                }],
                detector: "string",
                description: "string",
                displayName: "string",
                dataSourceId: "string",
                lifecycleDetails: "string",
                managedListTypes: ["string"],
                recommendation: "string",
                resourceType: "string",
                serviceType: "string",
                state: "string",
                timeCreated: "string",
                timeUpdated: "string",
            }],
            compartmentId: "string",
            effectiveDetectorRules: [{
                dataSourceId: "string",
                description: "string",
                details: [{
                    conditionGroups: [{
                        compartmentId: "string",
                        condition: "string",
                    }],
                    configurations: [{
                        configKey: "string",
                        dataType: "string",
                        name: "string",
                        value: "string",
                        values: [{
                            listType: "string",
                            managedListType: "string",
                            value: "string",
                        }],
                    }],
                    isConfigurationAllowed: false,
                    isEnabled: false,
                    labels: ["string"],
                    riskLevel: "string",
                }],
                detector: "string",
                detectorRuleId: "string",
                displayName: "string",
                entitiesMappings: [{
                    displayName: "string",
                    entityType: "string",
                    queryField: "string",
                }],
                lifecycleDetails: "string",
                managedListTypes: ["string"],
                recommendation: "string",
                resourceType: "string",
                serviceType: "string",
                state: "string",
                timeCreated: "string",
                timeUpdated: "string",
            }],
            id: "string",
            owner: "string",
            state: "string",
            timeCreated: "string",
            timeUpdated: "string",
        }],
        targetResponderRecipes: [{
            responderRecipeId: "string",
            compartmentId: "string",
            description: "string",
            displayName: "string",
            effectiveResponderRules: [{
                compartmentId: "string",
                description: "string",
                details: [{
                    condition: "string",
                    configurations: [{
                        configKey: "string",
                        name: "string",
                        value: "string",
                    }],
                    isEnabled: false,
                    mode: "string",
                }],
                displayName: "string",
                lifecycleDetails: "string",
                policies: ["string"],
                responderRuleId: "string",
                state: "string",
                supportedModes: ["string"],
                timeCreated: "string",
                timeUpdated: "string",
                type: "string",
            }],
            id: "string",
            owner: "string",
            responderRules: [{
                details: {
                    condition: "string",
                    configurations: [{
                        configKey: "string",
                        name: "string",
                        value: "string",
                    }],
                    isEnabled: false,
                    mode: "string",
                },
                responderRuleId: "string",
                compartmentId: "string",
                description: "string",
                displayName: "string",
                lifecycleDetails: "string",
                policies: ["string"],
                state: "string",
                supportedModes: ["string"],
                timeCreated: "string",
                timeUpdated: "string",
                type: "string",
            }],
            timeCreated: "string",
            timeUpdated: "string",
        }],
    });
    
    type: oci:CloudGuard:Target
    properties:
        compartmentId: string
        definedTags:
            string: any
        description: string
        displayName: string
        freeformTags:
            string: any
        state: string
        targetDetectorRecipes:
            - compartmentId: string
              description: string
              detector: string
              detectorRecipeId: string
              detectorRecipeType: string
              detectorRules:
                - dataSourceId: string
                  description: string
                  details:
                    conditionGroups:
                        - compartmentId: string
                          condition: string
                    configurations:
                        - configKey: string
                          dataType: string
                          name: string
                          value: string
                          values:
                            - listType: string
                              managedListType: string
                              value: string
                    isConfigurationAllowed: false
                    isEnabled: false
                    labels:
                        - string
                    riskLevel: string
                  detector: string
                  detectorRuleId: string
                  displayName: string
                  entitiesMappings:
                    - displayName: string
                      entityType: string
                      queryField: string
                  lifecycleDetails: string
                  managedListTypes:
                    - string
                  recommendation: string
                  resourceType: string
                  serviceType: string
                  state: string
                  timeCreated: string
                  timeUpdated: string
              displayName: string
              effectiveDetectorRules:
                - dataSourceId: string
                  description: string
                  details:
                    - conditionGroups:
                        - compartmentId: string
                          condition: string
                      configurations:
                        - configKey: string
                          dataType: string
                          name: string
                          value: string
                          values:
                            - listType: string
                              managedListType: string
                              value: string
                      isConfigurationAllowed: false
                      isEnabled: false
                      labels:
                        - string
                      riskLevel: string
                  detector: string
                  detectorRuleId: string
                  displayName: string
                  entitiesMappings:
                    - displayName: string
                      entityType: string
                      queryField: string
                  lifecycleDetails: string
                  managedListTypes:
                    - string
                  recommendation: string
                  resourceType: string
                  serviceType: string
                  state: string
                  timeCreated: string
                  timeUpdated: string
              id: string
              owner: string
              state: string
              timeCreated: string
              timeUpdated: string
        targetResourceId: string
        targetResourceType: string
        targetResponderRecipes:
            - compartmentId: string
              description: string
              displayName: string
              effectiveResponderRules:
                - compartmentId: string
                  description: string
                  details:
                    - condition: string
                      configurations:
                        - configKey: string
                          name: string
                          value: string
                      isEnabled: false
                      mode: string
                  displayName: string
                  lifecycleDetails: string
                  policies:
                    - string
                  responderRuleId: string
                  state: string
                  supportedModes:
                    - string
                  timeCreated: string
                  timeUpdated: string
                  type: string
              id: string
              owner: string
              responderRecipeId: string
              responderRules:
                - compartmentId: string
                  description: string
                  details:
                    condition: string
                    configurations:
                        - configKey: string
                          name: string
                          value: string
                    isEnabled: false
                    mode: string
                  displayName: string
                  lifecycleDetails: string
                  policies:
                    - string
                  responderRuleId: string
                  state: string
                  supportedModes:
                    - string
                  timeCreated: string
                  timeUpdated: string
                  type: string
              timeCreated: string
              timeUpdated: string
    

    Target Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The Target resource accepts the following input properties:

    CompartmentId string
    Compartment OCID where the resource is created
    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    TargetResourceId string
    Resource ID which the target uses to monitor
    TargetResourceType string
    Type of resource that target support (COMPARTMENT/FACLOUD)
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string

    The target description.

    Avoid entering confidential information.

    FreeformTags Dictionary<string, object>

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    State string
    (Updatable) The enablement state of the detector rule
    TargetDetectorRecipes List<TargetTargetDetectorRecipe>
    (Updatable) List of detector recipes to attach to target
    TargetResponderRecipes List<TargetTargetResponderRecipe>
    (Updatable) List of responder recipes to attach to target
    CompartmentId string
    Compartment OCID where the resource is created
    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    TargetResourceId string
    Resource ID which the target uses to monitor
    TargetResourceType string
    Type of resource that target support (COMPARTMENT/FACLOUD)
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string

    The target description.

    Avoid entering confidential information.

    FreeformTags map[string]interface{}

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    State string
    (Updatable) The enablement state of the detector rule
    TargetDetectorRecipes []TargetTargetDetectorRecipeArgs
    (Updatable) List of detector recipes to attach to target
    TargetResponderRecipes []TargetTargetResponderRecipeArgs
    (Updatable) List of responder recipes to attach to target
    compartmentId String
    Compartment OCID where the resource is created
    displayName String

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    targetResourceId String
    Resource ID which the target uses to monitor
    targetResourceType String
    Type of resource that target support (COMPARTMENT/FACLOUD)
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String

    The target description.

    Avoid entering confidential information.

    freeformTags Map<String,Object>

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    state String
    (Updatable) The enablement state of the detector rule
    targetDetectorRecipes List<TargetTargetDetectorRecipe>
    (Updatable) List of detector recipes to attach to target
    targetResponderRecipes List<TargetTargetResponderRecipe>
    (Updatable) List of responder recipes to attach to target
    compartmentId string
    Compartment OCID where the resource is created
    displayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    targetResourceId string
    Resource ID which the target uses to monitor
    targetResourceType string
    Type of resource that target support (COMPARTMENT/FACLOUD)
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string

    The target description.

    Avoid entering confidential information.

    freeformTags {[key: string]: any}

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    state string
    (Updatable) The enablement state of the detector rule
    targetDetectorRecipes TargetTargetDetectorRecipe[]
    (Updatable) List of detector recipes to attach to target
    targetResponderRecipes TargetTargetResponderRecipe[]
    (Updatable) List of responder recipes to attach to target
    compartment_id str
    Compartment OCID where the resource is created
    display_name str

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    target_resource_id str
    Resource ID which the target uses to monitor
    target_resource_type str
    Type of resource that target support (COMPARTMENT/FACLOUD)
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str

    The target description.

    Avoid entering confidential information.

    freeform_tags Mapping[str, Any]

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    state str
    (Updatable) The enablement state of the detector rule
    target_detector_recipes Sequence[cloudguard.TargetTargetDetectorRecipeArgs]
    (Updatable) List of detector recipes to attach to target
    target_responder_recipes Sequence[cloudguard.TargetTargetResponderRecipeArgs]
    (Updatable) List of responder recipes to attach to target
    compartmentId String
    Compartment OCID where the resource is created
    displayName String

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    targetResourceId String
    Resource ID which the target uses to monitor
    targetResourceType String
    Type of resource that target support (COMPARTMENT/FACLOUD)
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String

    The target description.

    Avoid entering confidential information.

    freeformTags Map<Any>

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    state String
    (Updatable) The enablement state of the detector rule
    targetDetectorRecipes List<Property Map>
    (Updatable) List of detector recipes to attach to target
    targetResponderRecipes List<Property Map>
    (Updatable) List of responder recipes to attach to target

    Outputs

    All input properties are implicitly available as output properties. Additionally, the Target resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    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
    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<TargetTargetDetail>
    Details specific to the target type.
    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.
    Id string
    The provider-assigned unique ID for this managed resource.
    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
    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 []TargetTargetDetail
    Details specific to the target type.
    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.
    id String
    The provider-assigned unique ID for this managed resource.
    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
    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<TargetTargetDetail>
    Details specific to the target type.
    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.
    id string
    The provider-assigned unique ID for this managed resource.
    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
    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 TargetTargetDetail[]
    Details specific to the target type.
    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.
    id str
    The provider-assigned unique ID for this managed resource.
    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
    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.TargetTargetDetail]
    Details specific to the target type.
    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.
    id String
    The provider-assigned unique ID for this managed resource.
    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
    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.
    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.

    Look up Existing Target Resource

    Get an existing Target resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: TargetState, opts?: CustomResourceOptions): Target
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            inherited_by_compartments: Optional[Sequence[str]] = None,
            lifecyle_details: Optional[str] = None,
            recipe_count: Optional[int] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, Any]] = None,
            target_details: Optional[Sequence[_cloudguard.TargetTargetDetailArgs]] = None,
            target_detector_recipes: Optional[Sequence[_cloudguard.TargetTargetDetectorRecipeArgs]] = None,
            target_resource_id: Optional[str] = None,
            target_resource_type: Optional[str] = None,
            target_responder_recipes: Optional[Sequence[_cloudguard.TargetTargetResponderRecipeArgs]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> Target
    func GetTarget(ctx *Context, name string, id IDInput, state *TargetState, opts ...ResourceOption) (*Target, error)
    public static Target Get(string name, Input<string> id, TargetState? state, CustomResourceOptions? opts = null)
    public static Target get(String name, Output<String> id, TargetState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CompartmentId string
    Compartment OCID where the resource is created
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string

    The target description.

    Avoid entering confidential information.

    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    FreeformTags Dictionary<string, object>

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    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
    (Updatable) The enablement state of the detector rule
    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<TargetTargetDetail>
    Details specific to the target type.
    TargetDetectorRecipes List<TargetTargetDetectorRecipe>
    (Updatable) List of detector recipes to attach to target
    TargetResourceId string
    Resource ID which the target uses to monitor
    TargetResourceType string
    Type of resource that target support (COMPARTMENT/FACLOUD)
    TargetResponderRecipes List<TargetTargetResponderRecipe>
    (Updatable) List of responder recipes to attach 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
    Compartment OCID where the resource is created
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string

    The target description.

    Avoid entering confidential information.

    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    FreeformTags map[string]interface{}

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    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
    (Updatable) The enablement state of the detector rule
    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 []TargetTargetDetailArgs
    Details specific to the target type.
    TargetDetectorRecipes []TargetTargetDetectorRecipeArgs
    (Updatable) List of detector recipes to attach to target
    TargetResourceId string
    Resource ID which the target uses to monitor
    TargetResourceType string
    Type of resource that target support (COMPARTMENT/FACLOUD)
    TargetResponderRecipes []TargetTargetResponderRecipeArgs
    (Updatable) List of responder recipes to attach 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
    Compartment OCID where the resource is created
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String

    The target description.

    Avoid entering confidential information.

    displayName String

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    freeformTags Map<String,Object>

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    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
    (Updatable) The enablement state of the detector rule
    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<TargetTargetDetail>
    Details specific to the target type.
    targetDetectorRecipes List<TargetTargetDetectorRecipe>
    (Updatable) List of detector recipes to attach to target
    targetResourceId String
    Resource ID which the target uses to monitor
    targetResourceType String
    Type of resource that target support (COMPARTMENT/FACLOUD)
    targetResponderRecipes List<TargetTargetResponderRecipe>
    (Updatable) List of responder recipes to attach 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
    Compartment OCID where the resource is created
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string

    The target description.

    Avoid entering confidential information.

    displayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    freeformTags {[key: string]: any}

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    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
    (Updatable) The enablement state of the detector rule
    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 TargetTargetDetail[]
    Details specific to the target type.
    targetDetectorRecipes TargetTargetDetectorRecipe[]
    (Updatable) List of detector recipes to attach to target
    targetResourceId string
    Resource ID which the target uses to monitor
    targetResourceType string
    Type of resource that target support (COMPARTMENT/FACLOUD)
    targetResponderRecipes TargetTargetResponderRecipe[]
    (Updatable) List of responder recipes to attach 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
    Compartment OCID where the resource is created
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str

    The target description.

    Avoid entering confidential information.

    display_name str

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    freeform_tags Mapping[str, Any]

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    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
    (Updatable) The enablement state of the detector rule
    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.TargetTargetDetailArgs]
    Details specific to the target type.
    target_detector_recipes Sequence[cloudguard.TargetTargetDetectorRecipeArgs]
    (Updatable) List of detector recipes to attach to target
    target_resource_id str
    Resource ID which the target uses to monitor
    target_resource_type str
    Type of resource that target support (COMPARTMENT/FACLOUD)
    target_responder_recipes Sequence[cloudguard.TargetTargetResponderRecipeArgs]
    (Updatable) List of responder recipes to attach 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
    Compartment OCID where the resource is created
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String

    The target description.

    Avoid entering confidential information.

    displayName String

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    freeformTags Map<Any>

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    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
    (Updatable) The enablement state of the detector rule
    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>
    (Updatable) List of detector recipes to attach to target
    targetResourceId String
    Resource ID which the target uses to monitor
    targetResourceType String
    Type of resource that target support (COMPARTMENT/FACLOUD)
    targetResponderRecipes List<Property Map>
    (Updatable) List of responder recipes to attach 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.

    Supporting Types

    TargetTargetDetail, TargetTargetDetailArgs

    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 resource that target support (COMPARTMENT/FACLOUD)
    TargetSecurityZoneRecipes List<TargetTargetDetailTargetSecurityZoneRecipe>
    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 resource that target support (COMPARTMENT/FACLOUD)
    TargetSecurityZoneRecipes []TargetTargetDetailTargetSecurityZoneRecipe
    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 resource that target support (COMPARTMENT/FACLOUD)
    targetSecurityZoneRecipes List<TargetTargetDetailTargetSecurityZoneRecipe>
    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 resource that target support (COMPARTMENT/FACLOUD)
    targetSecurityZoneRecipes TargetTargetDetailTargetSecurityZoneRecipe[]
    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 resource that target support (COMPARTMENT/FACLOUD)
    target_security_zone_recipes Sequence[cloudguard.TargetTargetDetailTargetSecurityZoneRecipe]
    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 resource that target support (COMPARTMENT/FACLOUD)
    targetSecurityZoneRecipes List<Property Map>
    The list of security zone recipes to associate with this compartment

    TargetTargetDetailTargetSecurityZoneRecipe, TargetTargetDetailTargetSecurityZoneRecipeArgs

    CompartmentId string
    Compartment OCID where the resource is created
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string

    The target description.

    Avoid entering confidential information.

    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    FreeformTags Dictionary<string, object>

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    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
    (Updatable) The enablement state of the detector rule
    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
    Compartment OCID where the resource is created
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string

    The target description.

    Avoid entering confidential information.

    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    FreeformTags map[string]interface{}

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    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
    (Updatable) The enablement state of the detector rule
    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
    Compartment OCID where the resource is created
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String

    The target description.

    Avoid entering confidential information.

    displayName String

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    freeformTags Map<String,Object>

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    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
    (Updatable) The enablement state of the detector rule
    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
    Compartment OCID where the resource is created
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string

    The target description.

    Avoid entering confidential information.

    displayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    freeformTags {[key: string]: any}

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    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
    (Updatable) The enablement state of the detector rule
    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
    Compartment OCID where the resource is created
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str

    The target description.

    Avoid entering confidential information.

    display_name str

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    freeform_tags Mapping[str, Any]

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    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
    (Updatable) The enablement state of the detector rule
    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
    Compartment OCID where the resource is created
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String

    The target description.

    Avoid entering confidential information.

    displayName String

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    freeformTags Map<Any>

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    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
    (Updatable) The enablement state of the detector rule
    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.

    TargetTargetDetectorRecipe, TargetTargetDetectorRecipeArgs

    DetectorRecipeId string
    Unique identifier for the target detector recipe
    CompartmentId string
    Compartment OCID where the resource is created
    Description string

    The target description.

    Avoid entering confidential information.

    Detector string
    Detector type for the rule
    DetectorRecipeType string
    Recipe type ( STANDARD, ENTERPRISE )
    DetectorRules List<TargetTargetDetectorRecipeDetectorRule>
    (Updatable) List of overrides to be applied to detector rules associated with the target
    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    EffectiveDetectorRules List<TargetTargetDetectorRecipeEffectiveDetectorRule>
    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
    (Updatable) The enablement state of the detector 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.
    DetectorRecipeId string
    Unique identifier for the target detector recipe
    CompartmentId string
    Compartment OCID where the resource is created
    Description string

    The target description.

    Avoid entering confidential information.

    Detector string
    Detector type for the rule
    DetectorRecipeType string
    Recipe type ( STANDARD, ENTERPRISE )
    DetectorRules []TargetTargetDetectorRecipeDetectorRule
    (Updatable) List of overrides to be applied to detector rules associated with the target
    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    EffectiveDetectorRules []TargetTargetDetectorRecipeEffectiveDetectorRule
    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
    (Updatable) The enablement state of the detector 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.
    detectorRecipeId String
    Unique identifier for the target detector recipe
    compartmentId String
    Compartment OCID where the resource is created
    description String

    The target description.

    Avoid entering confidential information.

    detector String
    Detector type for the rule
    detectorRecipeType String
    Recipe type ( STANDARD, ENTERPRISE )
    detectorRules List<TargetTargetDetectorRecipeDetectorRule>
    (Updatable) List of overrides to be applied to detector rules associated with the target
    displayName String

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    effectiveDetectorRules List<TargetTargetDetectorRecipeEffectiveDetectorRule>
    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
    (Updatable) The enablement state of the detector 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.
    detectorRecipeId string
    Unique identifier for the target detector recipe
    compartmentId string
    Compartment OCID where the resource is created
    description string

    The target description.

    Avoid entering confidential information.

    detector string
    Detector type for the rule
    detectorRecipeType string
    Recipe type ( STANDARD, ENTERPRISE )
    detectorRules TargetTargetDetectorRecipeDetectorRule[]
    (Updatable) List of overrides to be applied to detector rules associated with the target
    displayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    effectiveDetectorRules TargetTargetDetectorRecipeEffectiveDetectorRule[]
    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
    (Updatable) The enablement state of the detector 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.
    detector_recipe_id str
    Unique identifier for the target detector recipe
    compartment_id str
    Compartment OCID where the resource is created
    description str

    The target description.

    Avoid entering confidential information.

    detector str
    Detector type for the rule
    detector_recipe_type str
    Recipe type ( STANDARD, ENTERPRISE )
    detector_rules Sequence[cloudguard.TargetTargetDetectorRecipeDetectorRule]
    (Updatable) List of overrides to be applied to detector rules associated with the target
    display_name str

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    effective_detector_rules Sequence[cloudguard.TargetTargetDetectorRecipeEffectiveDetectorRule]
    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
    (Updatable) The enablement state of the detector 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.
    detectorRecipeId String
    Unique identifier for the target detector recipe
    compartmentId String
    Compartment OCID where the resource is created
    description String

    The target description.

    Avoid entering confidential information.

    detector String
    Detector type for the rule
    detectorRecipeType String
    Recipe type ( STANDARD, ENTERPRISE )
    detectorRules List<Property Map>
    (Updatable) List of overrides to be applied to detector rules associated with the target
    displayName String

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    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
    (Updatable) The enablement state of the detector 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.

    TargetTargetDetectorRecipeDetectorRule, TargetTargetDetectorRecipeDetectorRuleArgs

    Details TargetTargetDetectorRecipeDetectorRuleDetails
    (Updatable) Parameters to update detector rule configuration details in a detector recipe attached to a target.
    DetectorRuleId string
    (Updatable) Unique identifier for the detector rule
    DataSourceId string
    The ID of the attached data source
    Description string

    The target description.

    Avoid entering confidential information.

    Detector string
    Detector type for the rule
    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    EntitiesMappings List<TargetTargetDetectorRecipeDetectorRuleEntitiesMapping>
    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
    (Updatable) The enablement state of the detector 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.
    Details TargetTargetDetectorRecipeDetectorRuleDetails
    (Updatable) Parameters to update detector rule configuration details in a detector recipe attached to a target.
    DetectorRuleId string
    (Updatable) Unique identifier for the detector rule
    DataSourceId string
    The ID of the attached data source
    Description string

    The target description.

    Avoid entering confidential information.

    Detector string
    Detector type for the rule
    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    EntitiesMappings []TargetTargetDetectorRecipeDetectorRuleEntitiesMapping
    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
    (Updatable) The enablement state of the detector 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.
    details TargetTargetDetectorRecipeDetectorRuleDetails
    (Updatable) Parameters to update detector rule configuration details in a detector recipe attached to a target.
    detectorRuleId String
    (Updatable) Unique identifier for the detector rule
    dataSourceId String
    The ID of the attached data source
    description String

    The target description.

    Avoid entering confidential information.

    detector String
    Detector type for the rule
    displayName String

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    entitiesMappings List<TargetTargetDetectorRecipeDetectorRuleEntitiesMapping>
    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
    (Updatable) The enablement state of the detector 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.
    details TargetTargetDetectorRecipeDetectorRuleDetails
    (Updatable) Parameters to update detector rule configuration details in a detector recipe attached to a target.
    detectorRuleId string
    (Updatable) Unique identifier for the detector rule
    dataSourceId string
    The ID of the attached data source
    description string

    The target description.

    Avoid entering confidential information.

    detector string
    Detector type for the rule
    displayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    entitiesMappings TargetTargetDetectorRecipeDetectorRuleEntitiesMapping[]
    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
    (Updatable) The enablement state of the detector 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.
    details cloudguard.TargetTargetDetectorRecipeDetectorRuleDetails
    (Updatable) Parameters to update detector rule configuration details in a detector recipe attached to a target.
    detector_rule_id str
    (Updatable) Unique identifier for the detector rule
    data_source_id str
    The ID of the attached data source
    description str

    The target description.

    Avoid entering confidential information.

    detector str
    Detector type for the rule
    display_name str

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    entities_mappings Sequence[cloudguard.TargetTargetDetectorRecipeDetectorRuleEntitiesMapping]
    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
    (Updatable) The enablement state of the detector 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.
    details Property Map
    (Updatable) Parameters to update detector rule configuration details in a detector recipe attached to a target.
    detectorRuleId String
    (Updatable) Unique identifier for the detector rule
    dataSourceId String
    The ID of the attached data source
    description String

    The target description.

    Avoid entering confidential information.

    detector String
    Detector type for the rule
    displayName String

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    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
    (Updatable) The enablement state of the detector 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.

    TargetTargetDetectorRecipeDetectorRuleDetails, TargetTargetDetectorRecipeDetectorRuleDetailsArgs

    ConditionGroups List<TargetTargetDetectorRecipeDetectorRuleDetailsConditionGroup>
    (Updatable) Condition group corresponding to each compartment
    Configurations List<TargetTargetDetectorRecipeDetectorRuleDetailsConfiguration>
    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 []TargetTargetDetectorRecipeDetectorRuleDetailsConditionGroup
    (Updatable) Condition group corresponding to each compartment
    Configurations []TargetTargetDetectorRecipeDetectorRuleDetailsConfiguration
    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<TargetTargetDetectorRecipeDetectorRuleDetailsConditionGroup>
    (Updatable) Condition group corresponding to each compartment
    configurations List<TargetTargetDetectorRecipeDetectorRuleDetailsConfiguration>
    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 TargetTargetDetectorRecipeDetectorRuleDetailsConditionGroup[]
    (Updatable) Condition group corresponding to each compartment
    configurations TargetTargetDetectorRecipeDetectorRuleDetailsConfiguration[]
    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.TargetTargetDetectorRecipeDetectorRuleDetailsConditionGroup]
    (Updatable) Condition group corresponding to each compartment
    configurations Sequence[cloudguard.TargetTargetDetectorRecipeDetectorRuleDetailsConfiguration]
    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>
    (Updatable) 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

    TargetTargetDetectorRecipeDetectorRuleDetailsConditionGroup, TargetTargetDetectorRecipeDetectorRuleDetailsConditionGroupArgs

    CompartmentId string
    (Updatable) Compartment OCID associated with condition
    Condition string
    (Updatable) The base condition resource.
    CompartmentId string
    (Updatable) Compartment OCID associated with condition
    Condition string
    (Updatable) The base condition resource.
    compartmentId String
    (Updatable) Compartment OCID associated with condition
    condition String
    (Updatable) The base condition resource.
    compartmentId string
    (Updatable) Compartment OCID associated with condition
    condition string
    (Updatable) The base condition resource.
    compartment_id str
    (Updatable) Compartment OCID associated with condition
    condition str
    (Updatable) The base condition resource.
    compartmentId String
    (Updatable) Compartment OCID associated with condition
    condition String
    (Updatable) The base condition resource.

    TargetTargetDetectorRecipeDetectorRuleDetailsConfiguration, TargetTargetDetectorRecipeDetectorRuleDetailsConfigurationArgs

    ConfigKey string
    Unique identifier of the configuration
    DataType string
    Configuration data type
    Name string
    Configuration name
    Value string
    Configuration value
    Values List<TargetTargetDetectorRecipeDetectorRuleDetailsConfigurationValue>
    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 []TargetTargetDetectorRecipeDetectorRuleDetailsConfigurationValue
    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<TargetTargetDetectorRecipeDetectorRuleDetailsConfigurationValue>
    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 TargetTargetDetectorRecipeDetectorRuleDetailsConfigurationValue[]
    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.TargetTargetDetectorRecipeDetectorRuleDetailsConfigurationValue]
    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

    TargetTargetDetectorRecipeDetectorRuleDetailsConfigurationValue, TargetTargetDetectorRecipeDetectorRuleDetailsConfigurationValueArgs

    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

    TargetTargetDetectorRecipeDetectorRuleEntitiesMapping, TargetTargetDetectorRecipeDetectorRuleEntitiesMappingArgs

    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    EntityType string
    Type of entity
    QueryField string
    The entity value mapped to a data source query
    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    EntityType string
    Type of entity
    QueryField string
    The entity value mapped to a data source query
    displayName String

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    entityType String
    Type of entity
    queryField String
    The entity value mapped to a data source query
    displayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    entityType string
    Type of entity
    queryField string
    The entity value mapped to a data source query
    display_name str

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    entity_type str
    Type of entity
    query_field str
    The entity value mapped to a data source query
    displayName String

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    entityType String
    Type of entity
    queryField String
    The entity value mapped to a data source query

    TargetTargetDetectorRecipeEffectiveDetectorRule, TargetTargetDetectorRecipeEffectiveDetectorRuleArgs

    DataSourceId string
    The ID of the attached data source
    Description string

    The target description.

    Avoid entering confidential information.

    Details List<TargetTargetDetectorRecipeEffectiveDetectorRuleDetail>
    Detailed information for a responder rule
    Detector string
    Detector type for the rule
    DetectorRuleId string
    The unique identifier of the detector rule
    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    EntitiesMappings List<TargetTargetDetectorRecipeEffectiveDetectorRuleEntitiesMapping>
    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
    (Updatable) The enablement state of the detector 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.
    DataSourceId string
    The ID of the attached data source
    Description string

    The target description.

    Avoid entering confidential information.

    Details []TargetTargetDetectorRecipeEffectiveDetectorRuleDetail
    Detailed information for a responder rule
    Detector string
    Detector type for the rule
    DetectorRuleId string
    The unique identifier of the detector rule
    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    EntitiesMappings []TargetTargetDetectorRecipeEffectiveDetectorRuleEntitiesMapping
    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
    (Updatable) The enablement state of the detector 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.
    dataSourceId String
    The ID of the attached data source
    description String

    The target description.

    Avoid entering confidential information.

    details List<TargetTargetDetectorRecipeEffectiveDetectorRuleDetail>
    Detailed information for a responder rule
    detector String
    Detector type for the rule
    detectorRuleId String
    The unique identifier of the detector rule
    displayName String

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    entitiesMappings List<TargetTargetDetectorRecipeEffectiveDetectorRuleEntitiesMapping>
    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
    (Updatable) The enablement state of the detector 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.
    dataSourceId string
    The ID of the attached data source
    description string

    The target description.

    Avoid entering confidential information.

    details TargetTargetDetectorRecipeEffectiveDetectorRuleDetail[]
    Detailed information for a responder rule
    detector string
    Detector type for the rule
    detectorRuleId string
    The unique identifier of the detector rule
    displayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    entitiesMappings TargetTargetDetectorRecipeEffectiveDetectorRuleEntitiesMapping[]
    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
    (Updatable) The enablement state of the detector 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.
    data_source_id str
    The ID of the attached data source
    description str

    The target description.

    Avoid entering confidential information.

    details Sequence[cloudguard.TargetTargetDetectorRecipeEffectiveDetectorRuleDetail]
    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

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    entities_mappings Sequence[cloudguard.TargetTargetDetectorRecipeEffectiveDetectorRuleEntitiesMapping]
    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
    (Updatable) The enablement state of the detector 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.
    dataSourceId String
    The ID of the attached data source
    description String

    The target description.

    Avoid entering confidential information.

    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

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    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
    (Updatable) The enablement state of the detector 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.

    TargetTargetDetectorRecipeEffectiveDetectorRuleDetail, TargetTargetDetectorRecipeEffectiveDetectorRuleDetailArgs

    ConditionGroups List<TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroup>
    Condition group corresponding to each compartment
    Configurations List<TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfiguration>
    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 []TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroup
    Condition group corresponding to each compartment
    Configurations []TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfiguration
    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<TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroup>
    Condition group corresponding to each compartment
    configurations List<TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfiguration>
    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 TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroup[]
    Condition group corresponding to each compartment
    configurations TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfiguration[]
    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.TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroup]
    Condition group corresponding to each compartment
    configurations Sequence[cloudguard.TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfiguration]
    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

    TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroup, TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroupArgs

    CompartmentId string
    Compartment OCID where the resource is created
    Condition string
    The base condition resource.
    CompartmentId string
    Compartment OCID where the resource is created
    Condition string
    The base condition resource.
    compartmentId String
    Compartment OCID where the resource is created
    condition String
    The base condition resource.
    compartmentId string
    Compartment OCID where the resource is created
    condition string
    The base condition resource.
    compartment_id str
    Compartment OCID where the resource is created
    condition str
    The base condition resource.
    compartmentId String
    Compartment OCID where the resource is created
    condition String
    The base condition resource.

    TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfiguration, TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationArgs

    ConfigKey string
    Unique identifier of the configuration
    DataType string
    Configuration data type
    Name string
    Configuration name
    Value string
    Configuration value
    Values List<TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValue>
    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 []TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValue
    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<TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValue>
    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 TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValue[]
    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.TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValue]
    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

    TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValue, TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValueArgs

    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

    TargetTargetDetectorRecipeEffectiveDetectorRuleEntitiesMapping, TargetTargetDetectorRecipeEffectiveDetectorRuleEntitiesMappingArgs

    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    EntityType string
    Type of entity
    QueryField string
    The entity value mapped to a data source query
    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    EntityType string
    Type of entity
    QueryField string
    The entity value mapped to a data source query
    displayName String

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    entityType String
    Type of entity
    queryField String
    The entity value mapped to a data source query
    displayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    entityType string
    Type of entity
    queryField string
    The entity value mapped to a data source query
    display_name str

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    entity_type str
    Type of entity
    query_field str
    The entity value mapped to a data source query
    displayName String

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    entityType String
    Type of entity
    queryField String
    The entity value mapped to a data source query

    TargetTargetResponderRecipe, TargetTargetResponderRecipeArgs

    ResponderRecipeId string
    Unique identifier for responder recipe
    CompartmentId string
    Compartment OCID where the resource is created
    Description string

    The target description.

    Avoid entering confidential information.

    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    EffectiveResponderRules List<TargetTargetResponderRecipeEffectiveResponderRule>
    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
    ResponderRules List<TargetTargetResponderRecipeResponderRule>
    (Updatable) List of overrides to be applied to responder rules associated with the 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.
    ResponderRecipeId string
    Unique identifier for responder recipe
    CompartmentId string
    Compartment OCID where the resource is created
    Description string

    The target description.

    Avoid entering confidential information.

    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    EffectiveResponderRules []TargetTargetResponderRecipeEffectiveResponderRule
    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
    ResponderRules []TargetTargetResponderRecipeResponderRule
    (Updatable) List of overrides to be applied to responder rules associated with the 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.
    responderRecipeId String
    Unique identifier for responder recipe
    compartmentId String
    Compartment OCID where the resource is created
    description String

    The target description.

    Avoid entering confidential information.

    displayName String

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    effectiveResponderRules List<TargetTargetResponderRecipeEffectiveResponderRule>
    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
    responderRules List<TargetTargetResponderRecipeResponderRule>
    (Updatable) List of overrides to be applied to responder rules associated with the 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.
    responderRecipeId string
    Unique identifier for responder recipe
    compartmentId string
    Compartment OCID where the resource is created
    description string

    The target description.

    Avoid entering confidential information.

    displayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    effectiveResponderRules TargetTargetResponderRecipeEffectiveResponderRule[]
    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
    responderRules TargetTargetResponderRecipeResponderRule[]
    (Updatable) List of overrides to be applied to responder rules associated with the 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.
    responder_recipe_id str
    Unique identifier for responder recipe
    compartment_id str
    Compartment OCID where the resource is created
    description str

    The target description.

    Avoid entering confidential information.

    display_name str

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    effective_responder_rules Sequence[cloudguard.TargetTargetResponderRecipeEffectiveResponderRule]
    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_rules Sequence[cloudguard.TargetTargetResponderRecipeResponderRule]
    (Updatable) List of overrides to be applied to responder rules associated with the 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.
    responderRecipeId String
    Unique identifier for responder recipe
    compartmentId String
    Compartment OCID where the resource is created
    description String

    The target description.

    Avoid entering confidential information.

    displayName String

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    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
    responderRules List<Property Map>
    (Updatable) List of overrides to be applied to responder rules associated with the 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.

    TargetTargetResponderRecipeEffectiveResponderRule, TargetTargetResponderRecipeEffectiveResponderRuleArgs

    CompartmentId string
    Compartment OCID where the resource is created
    Description string

    The target description.

    Avoid entering confidential information.

    Details List<TargetTargetResponderRecipeEffectiveResponderRuleDetail>
    Detailed information for a responder rule
    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    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
    (Updatable) The enablement state of the detector rule
    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
    Compartment OCID where the resource is created
    Description string

    The target description.

    Avoid entering confidential information.

    Details []TargetTargetResponderRecipeEffectiveResponderRuleDetail
    Detailed information for a responder rule
    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    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
    (Updatable) The enablement state of the detector rule
    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
    Compartment OCID where the resource is created
    description String

    The target description.

    Avoid entering confidential information.

    details List<TargetTargetResponderRecipeEffectiveResponderRuleDetail>
    Detailed information for a responder rule
    displayName String

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    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
    (Updatable) The enablement state of the detector rule
    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
    Compartment OCID where the resource is created
    description string

    The target description.

    Avoid entering confidential information.

    details TargetTargetResponderRecipeEffectiveResponderRuleDetail[]
    Detailed information for a responder rule
    displayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    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
    (Updatable) The enablement state of the detector rule
    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
    Compartment OCID where the resource is created
    description str

    The target description.

    Avoid entering confidential information.

    details Sequence[cloudguard.TargetTargetResponderRecipeEffectiveResponderRuleDetail]
    Detailed information for a responder rule
    display_name str

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    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
    (Updatable) The enablement state of the detector rule
    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
    Compartment OCID where the resource is created
    description String

    The target description.

    Avoid entering confidential information.

    details List<Property Map>
    Detailed information for a responder rule
    displayName String

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    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
    (Updatable) The enablement state of the detector rule
    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

    TargetTargetResponderRecipeEffectiveResponderRuleDetail, TargetTargetResponderRecipeEffectiveResponderRuleDetailArgs

    Condition string
    The base condition resource.
    Configurations List<TargetTargetResponderRecipeEffectiveResponderRuleDetailConfiguration>
    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 []TargetTargetResponderRecipeEffectiveResponderRuleDetailConfiguration
    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<TargetTargetResponderRecipeEffectiveResponderRuleDetailConfiguration>
    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 TargetTargetResponderRecipeEffectiveResponderRuleDetailConfiguration[]
    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.TargetTargetResponderRecipeEffectiveResponderRuleDetailConfiguration]
    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

    TargetTargetResponderRecipeEffectiveResponderRuleDetailConfiguration, TargetTargetResponderRecipeEffectiveResponderRuleDetailConfigurationArgs

    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

    TargetTargetResponderRecipeResponderRule, TargetTargetResponderRecipeResponderRuleArgs

    Details TargetTargetResponderRecipeResponderRuleDetails
    (Updatable) Parameters to update details for a responder rule for a target responder recipe. TargetResponderRuleDetails contains all configurations associated with the ResponderRule, whereas UpdateTargetResponderRecipeResponderRuleDetails refers to the details that are to be updated for ResponderRule.
    ResponderRuleId string

    (Updatable) Unique identifier for target detector recipe

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    CompartmentId string
    Compartment OCID where the resource is created
    Description string

    The target description.

    Avoid entering confidential information.

    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    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
    State string
    (Updatable) The enablement state of the detector rule
    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
    Details TargetTargetResponderRecipeResponderRuleDetails
    (Updatable) Parameters to update details for a responder rule for a target responder recipe. TargetResponderRuleDetails contains all configurations associated with the ResponderRule, whereas UpdateTargetResponderRecipeResponderRuleDetails refers to the details that are to be updated for ResponderRule.
    ResponderRuleId string

    (Updatable) Unique identifier for target detector recipe

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    CompartmentId string
    Compartment OCID where the resource is created
    Description string

    The target description.

    Avoid entering confidential information.

    DisplayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    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
    State string
    (Updatable) The enablement state of the detector rule
    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
    details TargetTargetResponderRecipeResponderRuleDetails
    (Updatable) Parameters to update details for a responder rule for a target responder recipe. TargetResponderRuleDetails contains all configurations associated with the ResponderRule, whereas UpdateTargetResponderRecipeResponderRuleDetails refers to the details that are to be updated for ResponderRule.
    responderRuleId String

    (Updatable) Unique identifier for target detector recipe

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartmentId String
    Compartment OCID where the resource is created
    description String

    The target description.

    Avoid entering confidential information.

    displayName String

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    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
    state String
    (Updatable) The enablement state of the detector rule
    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
    details TargetTargetResponderRecipeResponderRuleDetails
    (Updatable) Parameters to update details for a responder rule for a target responder recipe. TargetResponderRuleDetails contains all configurations associated with the ResponderRule, whereas UpdateTargetResponderRecipeResponderRuleDetails refers to the details that are to be updated for ResponderRule.
    responderRuleId string

    (Updatable) Unique identifier for target detector recipe

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartmentId string
    Compartment OCID where the resource is created
    description string

    The target description.

    Avoid entering confidential information.

    displayName string

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    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
    state string
    (Updatable) The enablement state of the detector rule
    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
    details cloudguard.TargetTargetResponderRecipeResponderRuleDetails
    (Updatable) Parameters to update details for a responder rule for a target responder recipe. TargetResponderRuleDetails contains all configurations associated with the ResponderRule, whereas UpdateTargetResponderRecipeResponderRuleDetails refers to the details that are to be updated for ResponderRule.
    responder_rule_id str

    (Updatable) Unique identifier for target detector recipe

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartment_id str
    Compartment OCID where the resource is created
    description str

    The target description.

    Avoid entering confidential information.

    display_name str

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    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
    state str
    (Updatable) The enablement state of the detector rule
    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
    details Property Map
    (Updatable) Parameters to update details for a responder rule for a target responder recipe. TargetResponderRuleDetails contains all configurations associated with the ResponderRule, whereas UpdateTargetResponderRecipeResponderRuleDetails refers to the details that are to be updated for ResponderRule.
    responderRuleId String

    (Updatable) Unique identifier for target detector recipe

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    compartmentId String
    Compartment OCID where the resource is created
    description String

    The target description.

    Avoid entering confidential information.

    displayName String

    (Updatable) Display name for the target.

    Avoid entering confidential information.

    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
    state String
    (Updatable) The enablement state of the detector rule
    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

    TargetTargetResponderRecipeResponderRuleDetails, TargetTargetResponderRecipeResponderRuleDetailsArgs

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

    TargetTargetResponderRecipeResponderRuleDetailsConfiguration, TargetTargetResponderRecipeResponderRuleDetailsConfigurationArgs

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

    Import

    Targets can be imported using the id, e.g.

    $ pulumi import oci:CloudGuard/target:Target test_target "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    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 v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi