oci.CloudGuard.Target
Explore with Pulumi AI
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=[{
"detector_recipe_id": test_detector_recipe["id"],
"detector_rules": [{
"details": {
"condition_groups": [{
"compartment_id": compartment_id,
"condition": target_target_detector_recipes_detector_rules_details_condition_groups_condition,
}],
},
"detector_rule_id": test_rule["id"],
}],
}],
target_responder_recipes=[{
"responder_recipe_id": test_responder_recipe["id"],
"responder_rules": [{
"details": {
"condition": target_target_responder_recipes_responder_rules_details_condition,
"configurations": [{
"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/v2/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.StringMap{
"foo-namespace.bar-key": pulumi.String("value"),
},
Description: pulumi.Any(targetDescription),
FreeformTags: pulumi.StringMap{
"bar-key": pulumi.String("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, str]] = None,
description: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = 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", "string" },
},
Description = "string",
FreeformTags =
{
{ "string", "string" },
},
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.StringMap{
"string": pulumi.String("string"),
},
Description: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
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", "string"))
.description("string")
.freeformTags(Map.of("string", "string"))
.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": "string",
},
description="string",
freeform_tags={
"string": "string",
},
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: "string",
},
description: "string",
freeformTags: {
string: "string",
},
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: string
description: string
displayName: string
freeformTags:
string: string
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:
- Compartment
Id string - Compartment OCID where the resource is created
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- Target
Resource stringId - Resource ID which the target uses to monitor
- Target
Resource stringType - Type of resource that target support (COMPARTMENT/FACLOUD)
- Dictionary<string, string>
- (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.
- Dictionary<string, string>
(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
- Target
Detector List<TargetRecipes Target Detector Recipe> - (Updatable) List of detector recipes to attach to target
- Target
Responder List<TargetRecipes Target Responder Recipe> - (Updatable) List of responder recipes to attach to target
- Compartment
Id string - Compartment OCID where the resource is created
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- Target
Resource stringId - Resource ID which the target uses to monitor
- Target
Resource stringType - Type of resource that target support (COMPARTMENT/FACLOUD)
- map[string]string
- (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.
- map[string]string
(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
- Target
Detector []TargetRecipes Target Detector Recipe Args - (Updatable) List of detector recipes to attach to target
- Target
Responder []TargetRecipes Target Responder Recipe Args - (Updatable) List of responder recipes to attach to target
- compartment
Id String - Compartment OCID where the resource is created
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- target
Resource StringId - Resource ID which the target uses to monitor
- target
Resource StringType - Type of resource that target support (COMPARTMENT/FACLOUD)
- Map<String,String>
- (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.
- Map<String,String>
(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
- target
Detector List<TargetRecipes Target Detector Recipe> - (Updatable) List of detector recipes to attach to target
- target
Responder List<TargetRecipes Target Responder Recipe> - (Updatable) List of responder recipes to attach to target
- compartment
Id string - Compartment OCID where the resource is created
- display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- target
Resource stringId - Resource ID which the target uses to monitor
- target
Resource stringType - Type of resource that target support (COMPARTMENT/FACLOUD)
- {[key: string]: string}
- (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.
- {[key: string]: string}
(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
- target
Detector TargetRecipes Target Detector Recipe[] - (Updatable) List of detector recipes to attach to target
- target
Responder TargetRecipes Target Responder Recipe[] - (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_ strid - Resource ID which the target uses to monitor
- target_
resource_ strtype - Type of resource that target support (COMPARTMENT/FACLOUD)
- Mapping[str, str]
- (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.
- Mapping[str, str]
(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_ Sequence[cloudguard.recipes Target Target Detector Recipe Args] - (Updatable) List of detector recipes to attach to target
- target_
responder_ Sequence[cloudguard.recipes Target Target Responder Recipe Args] - (Updatable) List of responder recipes to attach to target
- compartment
Id String - Compartment OCID where the resource is created
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- target
Resource StringId - Resource ID which the target uses to monitor
- target
Resource StringType - Type of resource that target support (COMPARTMENT/FACLOUD)
- Map<String>
- (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.
- Map<String>
(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
- target
Detector List<Property Map>Recipes - (Updatable) List of detector recipes to attach to target
- target
Responder List<Property Map>Recipes - (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.
- Inherited
By List<string>Compartments - List of inherited compartments
- Lifecyle
Details 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]
- Recipe
Count int - Total number of recipes attached to target
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Target
Details List<TargetTarget Detail> - Details specific to the target type.
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated 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.
- Inherited
By []stringCompartments - List of inherited compartments
- Lifecyle
Details 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]
- Recipe
Count int - Total number of recipes attached to target
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Target
Details []TargetTarget Detail - Details specific to the target type.
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated 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.
- inherited
By List<String>Compartments - List of inherited compartments
- lifecyle
Details 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]
- recipe
Count Integer - Total number of recipes attached to target
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Details List<TargetTarget Detail> - Details specific to the target type.
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated 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.
- inherited
By string[]Compartments - List of inherited compartments
- lifecyle
Details 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]
- recipe
Count number - Total number of recipes attached to target
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Details TargetTarget Detail[] - Details specific to the target type.
- time
Created string - The date and time the target was created. Format defined by RFC3339.
- time
Updated 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_ Sequence[str]compartments - 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
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target_
details Sequence[cloudguard.Target Target Detail] - 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.
- inherited
By List<String>Compartments - List of inherited compartments
- lifecyle
Details 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]
- recipe
Count Number - Total number of recipes attached to target
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Details List<Property Map> - Details specific to the target type.
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated 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, str]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = 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, str]] = 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.
- Compartment
Id string - Compartment OCID where the resource is created
- Dictionary<string, string>
- (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.
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- Dictionary<string, string>
(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 List<string>Compartments - List of inherited compartments
- Lifecyle
Details 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]
- Recipe
Count int - Total number of recipes attached to target
- State string
- (Updatable) The enablement state of the detector rule
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Target
Details List<TargetTarget Detail> - Details specific to the target type.
- Target
Detector List<TargetRecipes Target Detector Recipe> - (Updatable) List of detector recipes to attach to target
- Target
Resource stringId - Resource ID which the target uses to monitor
- Target
Resource stringType - Type of resource that target support (COMPARTMENT/FACLOUD)
- Target
Responder List<TargetRecipes Target Responder Recipe> - (Updatable) List of responder recipes to attach to target
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- Compartment
Id string - Compartment OCID where the resource is created
- map[string]string
- (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.
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- map[string]string
(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 []stringCompartments - List of inherited compartments
- Lifecyle
Details 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]
- Recipe
Count int - Total number of recipes attached to target
- State string
- (Updatable) The enablement state of the detector rule
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Target
Details []TargetTarget Detail Args - Details specific to the target type.
- Target
Detector []TargetRecipes Target Detector Recipe Args - (Updatable) List of detector recipes to attach to target
- Target
Resource stringId - Resource ID which the target uses to monitor
- Target
Resource stringType - Type of resource that target support (COMPARTMENT/FACLOUD)
- Target
Responder []TargetRecipes Target Responder Recipe Args - (Updatable) List of responder recipes to attach to target
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id String - Compartment OCID where the resource is created
- Map<String,String>
- (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.
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- Map<String,String>
(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 List<String>Compartments - List of inherited compartments
- lifecyle
Details 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]
- recipe
Count Integer - Total number of recipes attached to target
- state String
- (Updatable) The enablement state of the detector rule
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Details List<TargetTarget Detail> - Details specific to the target type.
- target
Detector List<TargetRecipes Target Detector Recipe> - (Updatable) List of detector recipes to attach to target
- target
Resource StringId - Resource ID which the target uses to monitor
- target
Resource StringType - Type of resource that target support (COMPARTMENT/FACLOUD)
- target
Responder List<TargetRecipes Target Responder Recipe> - (Updatable) List of responder recipes to attach to target
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id string - Compartment OCID where the resource is created
- {[key: string]: string}
- (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.
- display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- {[key: string]: string}
(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 string[]Compartments - List of inherited compartments
- lifecyle
Details 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]
- recipe
Count number - Total number of recipes attached to target
- state string
- (Updatable) The enablement state of the detector rule
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Details TargetTarget Detail[] - Details specific to the target type.
- target
Detector TargetRecipes Target Detector Recipe[] - (Updatable) List of detector recipes to attach to target
- target
Resource stringId - Resource ID which the target uses to monitor
- target
Resource stringType - Type of resource that target support (COMPARTMENT/FACLOUD)
- target
Responder TargetRecipes Target Responder Recipe[] - (Updatable) List of responder recipes to attach to target
- time
Created string - The date and time the target was created. Format defined by RFC3339.
- time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- compartment_
id str - Compartment OCID where the resource is created
- Mapping[str, str]
- (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.
- Mapping[str, str]
(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_ Sequence[str]compartments - 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
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target_
details Sequence[cloudguard.Target Target Detail Args] - Details specific to the target type.
- target_
detector_ Sequence[cloudguard.recipes Target Target Detector Recipe Args] - (Updatable) List of detector recipes to attach to target
- target_
resource_ strid - Resource ID which the target uses to monitor
- target_
resource_ strtype - Type of resource that target support (COMPARTMENT/FACLOUD)
- target_
responder_ Sequence[cloudguard.recipes Target Target Responder Recipe Args] - (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.
- compartment
Id String - Compartment OCID where the resource is created
- Map<String>
- (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.
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- Map<String>
(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 List<String>Compartments - List of inherited compartments
- lifecyle
Details 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]
- recipe
Count Number - Total number of recipes attached to target
- state String
- (Updatable) The enablement state of the detector rule
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Details List<Property Map> - Details specific to the target type.
- target
Detector List<Property Map>Recipes - (Updatable) List of detector recipes to attach to target
- target
Resource StringId - Resource ID which the target uses to monitor
- target
Resource StringType - Type of resource that target support (COMPARTMENT/FACLOUD)
- target
Responder List<Property Map>Recipes - (Updatable) List of responder recipes to attach to target
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
Supporting Types
TargetTargetDetail, TargetTargetDetailArgs
- Security
Zone stringDisplay Name - The name of the security zone to associate with this compartment.
- Security
Zone stringId - The OCID of the security zone to associate with this compartment
- Target
Resource stringType - Type of resource that target support (COMPARTMENT/FACLOUD)
- Target
Security List<TargetZone Recipes Target Detail Target Security Zone Recipe> - The list of security zone recipes to associate with this compartment
- Security
Zone stringDisplay Name - The name of the security zone to associate with this compartment.
- Security
Zone stringId - The OCID of the security zone to associate with this compartment
- Target
Resource stringType - Type of resource that target support (COMPARTMENT/FACLOUD)
- Target
Security []TargetZone Recipes Target Detail Target Security Zone Recipe - The list of security zone recipes to associate with this compartment
- security
Zone StringDisplay Name - The name of the security zone to associate with this compartment.
- security
Zone StringId - The OCID of the security zone to associate with this compartment
- target
Resource StringType - Type of resource that target support (COMPARTMENT/FACLOUD)
- target
Security List<TargetZone Recipes Target Detail Target Security Zone Recipe> - The list of security zone recipes to associate with this compartment
- security
Zone stringDisplay Name - The name of the security zone to associate with this compartment.
- security
Zone stringId - The OCID of the security zone to associate with this compartment
- target
Resource stringType - Type of resource that target support (COMPARTMENT/FACLOUD)
- target
Security TargetZone Recipes Target Detail Target Security Zone Recipe[] - The list of security zone recipes to associate with this compartment
- security_
zone_ strdisplay_ name - The name of the security zone to associate with this compartment.
- security_
zone_ strid - The OCID of the security zone to associate with this compartment
- target_
resource_ strtype - Type of resource that target support (COMPARTMENT/FACLOUD)
- target_
security_ Sequence[cloudguard.zone_ recipes Target Target Detail Target Security Zone Recipe] - The list of security zone recipes to associate with this compartment
- security
Zone StringDisplay Name - The name of the security zone to associate with this compartment.
- security
Zone StringId - The OCID of the security zone to associate with this compartment
- target
Resource StringType - Type of resource that target support (COMPARTMENT/FACLOUD)
- target
Security List<Property Map>Zone Recipes - The list of security zone recipes to associate with this compartment
TargetTargetDetailTargetSecurityZoneRecipe, TargetTargetDetailTargetSecurityZoneRecipeArgs
- Compartment
Id string - Compartment OCID where the resource is created
- Dictionary<string, string>
- (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.
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- Dictionary<string, string>
(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
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Owner string
- Owner of target responder recipe
- Security
Policies List<string> - The list of security policy IDs that are included in the recipe
- State string
- (Updatable) The enablement state of the detector rule
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- Compartment
Id string - Compartment OCID where the resource is created
- map[string]string
- (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.
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- map[string]string
(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
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Owner string
- Owner of target responder recipe
- Security
Policies []string - The list of security policy IDs that are included in the recipe
- State string
- (Updatable) The enablement state of the detector rule
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id String - Compartment OCID where the resource is created
- Map<String,String>
- (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.
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- Map<String,String>
(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
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- owner String
- Owner of target responder recipe
- security
Policies List<String> - The list of security policy IDs that are included in the recipe
- state String
- (Updatable) The enablement state of the detector rule
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id string - Compartment OCID where the resource is created
- {[key: string]: string}
- (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.
- display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- {[key: string]: string}
(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
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- owner string
- Owner of target responder recipe
- security
Policies string[] - The list of security policy IDs that are included in the recipe
- state string
- (Updatable) The enablement state of the detector rule
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The date and time the target was created. Format defined by RFC3339.
- time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- compartment_
id str - Compartment OCID where the resource is created
- Mapping[str, str]
- (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.
- Mapping[str, str]
(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
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- 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.
- compartment
Id String - Compartment OCID where the resource is created
- Map<String>
- (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.
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- Map<String>
(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
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- owner String
- Owner of target responder recipe
- security
Policies List<String> - The list of security policy IDs that are included in the recipe
- state String
- (Updatable) The enablement state of the detector rule
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
TargetTargetDetectorRecipe, TargetTargetDetectorRecipeArgs
- Detector
Recipe stringId - Unique identifier for the target detector recipe
- Compartment
Id string - Compartment OCID where the resource is created
- Description string
The target description.
Avoid entering confidential information.
- Detector string
- Detector type for the rule
- Detector
Recipe stringType - Recipe type ( STANDARD, ENTERPRISE )
- Detector
Rules List<TargetTarget Detector Recipe Detector Rule> - (Updatable) List of overrides to be applied to detector rules associated with the target
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- Effective
Detector List<TargetRules Target Detector Recipe Effective Detector Rule> - 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
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- Detector
Recipe stringId - Unique identifier for the target detector recipe
- Compartment
Id string - Compartment OCID where the resource is created
- Description string
The target description.
Avoid entering confidential information.
- Detector string
- Detector type for the rule
- Detector
Recipe stringType - Recipe type ( STANDARD, ENTERPRISE )
- Detector
Rules []TargetTarget Detector Recipe Detector Rule - (Updatable) List of overrides to be applied to detector rules associated with the target
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- Effective
Detector []TargetRules Target Detector Recipe Effective Detector Rule - 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
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- detector
Recipe StringId - Unique identifier for the target detector recipe
- compartment
Id String - Compartment OCID where the resource is created
- description String
The target description.
Avoid entering confidential information.
- detector String
- Detector type for the rule
- detector
Recipe StringType - Recipe type ( STANDARD, ENTERPRISE )
- detector
Rules List<TargetTarget Detector Recipe Detector Rule> - (Updatable) List of overrides to be applied to detector rules associated with the target
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- effective
Detector List<TargetRules Target Detector Recipe Effective Detector Rule> - 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
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
- detector
Recipe stringId - Unique identifier for the target detector recipe
- compartment
Id string - Compartment OCID where the resource is created
- description string
The target description.
Avoid entering confidential information.
- detector string
- Detector type for the rule
- detector
Recipe stringType - Recipe type ( STANDARD, ENTERPRISE )
- detector
Rules TargetTarget Detector Recipe Detector Rule[] - (Updatable) List of overrides to be applied to detector rules associated with the target
- display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- effective
Detector TargetRules Target Detector Recipe Effective Detector Rule[] - 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
- time
Created string - The date and time the target was created. Format defined by RFC3339.
- time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- detector_
recipe_ strid - 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_ strtype - Recipe type ( STANDARD, ENTERPRISE )
- detector_
rules Sequence[cloudguard.Target Target Detector Recipe Detector Rule] - (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_ Sequence[cloudguard.rules Target Target Detector Recipe Effective Detector Rule] - 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.
- detector
Recipe StringId - Unique identifier for the target detector recipe
- compartment
Id String - Compartment OCID where the resource is created
- description String
The target description.
Avoid entering confidential information.
- detector String
- Detector type for the rule
- detector
Recipe StringType - Recipe type ( STANDARD, ENTERPRISE )
- detector
Rules List<Property Map> - (Updatable) List of overrides to be applied to detector rules associated with the target
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- effective
Detector List<Property Map>Rules - 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
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
TargetTargetDetectorRecipeDetectorRule, TargetTargetDetectorRecipeDetectorRuleArgs
- Details
Target
Target Detector Recipe Detector Rule Details - (Updatable) Parameters to update detector rule configuration details in a detector recipe attached to a target.
- Detector
Rule stringId - (Updatable) Unique identifier for the detector rule
- Data
Source stringId - The ID of the attached data source
- Description string
The target description.
Avoid entering confidential information.
- Detector string
- Detector type for the rule
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- Entities
Mappings List<TargetTarget Detector Recipe Detector Rule Entities Mapping> - Data source entities mapping for a detector rule
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Managed
List List<string>Types - List of managed list types related to this rule
- Recommendation string
- Recommendation for TargetDetectorRecipeDetectorRule resource
- Resource
Type 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).
- Service
Type string - Service type of the configuration to which the rule is applied
- State string
- (Updatable) The enablement state of the detector rule
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- Details
Target
Target Detector Recipe Detector Rule Details - (Updatable) Parameters to update detector rule configuration details in a detector recipe attached to a target.
- Detector
Rule stringId - (Updatable) Unique identifier for the detector rule
- Data
Source stringId - The ID of the attached data source
- Description string
The target description.
Avoid entering confidential information.
- Detector string
- Detector type for the rule
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- Entities
Mappings []TargetTarget Detector Recipe Detector Rule Entities Mapping - Data source entities mapping for a detector rule
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Managed
List []stringTypes - List of managed list types related to this rule
- Recommendation string
- Recommendation for TargetDetectorRecipeDetectorRule resource
- Resource
Type 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).
- Service
Type string - Service type of the configuration to which the rule is applied
- State string
- (Updatable) The enablement state of the detector rule
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- details
Target
Target Detector Recipe Detector Rule Details - (Updatable) Parameters to update detector rule configuration details in a detector recipe attached to a target.
- detector
Rule StringId - (Updatable) Unique identifier for the detector rule
- data
Source StringId - The ID of the attached data source
- description String
The target description.
Avoid entering confidential information.
- detector String
- Detector type for the rule
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- entities
Mappings List<TargetTarget Detector Recipe Detector Rule Entities Mapping> - Data source entities mapping for a detector rule
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed
List List<String>Types - List of managed list types related to this rule
- recommendation String
- Recommendation for TargetDetectorRecipeDetectorRule resource
- resource
Type 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).
- service
Type String - Service type of the configuration to which the rule is applied
- state String
- (Updatable) The enablement state of the detector rule
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
- details
Target
Target Detector Recipe Detector Rule Details - (Updatable) Parameters to update detector rule configuration details in a detector recipe attached to a target.
- detector
Rule stringId - (Updatable) Unique identifier for the detector rule
- data
Source stringId - The ID of the attached data source
- description string
The target description.
Avoid entering confidential information.
- detector string
- Detector type for the rule
- display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- entities
Mappings TargetTarget Detector Recipe Detector Rule Entities Mapping[] - Data source entities mapping for a detector rule
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed
List string[]Types - List of managed list types related to this rule
- recommendation string
- Recommendation for TargetDetectorRecipeDetectorRule resource
- resource
Type 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).
- service
Type string - Service type of the configuration to which the rule is applied
- state string
- (Updatable) The enablement state of the detector rule
- time
Created string - The date and time the target was created. Format defined by RFC3339.
- time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- details
cloudguard.
Target Target Detector Recipe Detector Rule Details - (Updatable) Parameters to update detector rule configuration details in a detector recipe attached to a target.
- detector_
rule_ strid - (Updatable) Unique identifier for the detector rule
- data_
source_ strid - 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.Target Target Detector Recipe Detector Rule Entities Mapping] - Data source entities mapping for a detector rule
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed_
list_ Sequence[str]types - List of 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.
- detector
Rule StringId - (Updatable) Unique identifier for the detector rule
- data
Source StringId - The ID of the attached data source
- description String
The target description.
Avoid entering confidential information.
- detector String
- Detector type for the rule
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- entities
Mappings List<Property Map> - Data source entities mapping for a detector rule
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed
List List<String>Types - List of managed list types related to this rule
- recommendation String
- Recommendation for TargetDetectorRecipeDetectorRule resource
- resource
Type 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).
- service
Type String - Service type of the configuration to which the rule is applied
- state String
- (Updatable) The enablement state of the detector rule
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
TargetTargetDetectorRecipeDetectorRuleDetails, TargetTargetDetectorRecipeDetectorRuleDetailsArgs
- Condition
Groups List<TargetTarget Detector Recipe Detector Rule Details Condition Group> - (Updatable) Condition group corresponding to each compartment
- Configurations
List<Target
Target Detector Recipe Detector Rule Details Configuration> - List of responder rule configurations
- Is
Configuration boolAllowed - Configuration allowed or not
- Is
Enabled bool - Enabled state for the responder rule
- Labels List<string>
- User-defined labels for a detector rule
- Risk
Level string - The risk level of the detector rule
- Condition
Groups []TargetTarget Detector Recipe Detector Rule Details Condition Group - (Updatable) Condition group corresponding to each compartment
- Configurations
[]Target
Target Detector Recipe Detector Rule Details Configuration - List of responder rule configurations
- Is
Configuration boolAllowed - Configuration allowed or not
- Is
Enabled bool - Enabled state for the responder rule
- Labels []string
- User-defined labels for a detector rule
- Risk
Level string - The risk level of the detector rule
- condition
Groups List<TargetTarget Detector Recipe Detector Rule Details Condition Group> - (Updatable) Condition group corresponding to each compartment
- configurations
List<Target
Target Detector Recipe Detector Rule Details Configuration> - List of responder rule configurations
- is
Configuration BooleanAllowed - Configuration allowed or not
- is
Enabled Boolean - Enabled state for the responder rule
- labels List<String>
- User-defined labels for a detector rule
- risk
Level String - The risk level of the detector rule
- condition
Groups TargetTarget Detector Recipe Detector Rule Details Condition Group[] - (Updatable) Condition group corresponding to each compartment
- configurations
Target
Target Detector Recipe Detector Rule Details Configuration[] - List of responder rule configurations
- is
Configuration booleanAllowed - Configuration allowed or not
- is
Enabled boolean - Enabled state for the responder rule
- labels string[]
- User-defined labels for a detector rule
- risk
Level string - The risk level of the detector rule
- condition_
groups Sequence[cloudguard.Target Target Detector Recipe Detector Rule Details Condition Group] - (Updatable) Condition group corresponding to each compartment
- configurations
Sequence[cloudguard.
Target Target Detector Recipe Detector Rule Details Configuration] - List of responder rule configurations
- is_
configuration_ boolallowed - 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
- condition
Groups List<Property Map> - (Updatable) Condition group corresponding to each compartment
- configurations List<Property Map>
- List of responder rule configurations
- is
Configuration BooleanAllowed - Configuration allowed or not
- is
Enabled Boolean - Enabled state for the responder rule
- labels List<String>
- User-defined labels for a detector rule
- risk
Level String - The risk level of the detector rule
TargetTargetDetectorRecipeDetectorRuleDetailsConditionGroup, TargetTargetDetectorRecipeDetectorRuleDetailsConditionGroupArgs
- Compartment
Id string - (Updatable) Compartment OCID associated with condition
- Condition string
- (Updatable) The base condition resource.
- Compartment
Id string - (Updatable) Compartment OCID associated with condition
- Condition string
- (Updatable) The base condition resource.
- compartment
Id String - (Updatable) Compartment OCID associated with condition
- condition String
- (Updatable) The base condition resource.
- compartment
Id 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.
- compartment
Id String - (Updatable) Compartment OCID associated with condition
- condition String
- (Updatable) The base condition resource.
TargetTargetDetectorRecipeDetectorRuleDetailsConfiguration, TargetTargetDetectorRecipeDetectorRuleDetailsConfigurationArgs
- 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.
Target Target Detector Recipe Detector Rule Details Configuration Value] - List of configuration values
TargetTargetDetectorRecipeDetectorRuleDetailsConfigurationValue, TargetTargetDetectorRecipeDetectorRuleDetailsConfigurationValueArgs
- List
Type string - Configuration list item type (CUSTOM or MANAGED)
- Managed
List stringType - Type of content in the managed list
- Value string
- Configuration value
- List
Type string - Configuration list item type (CUSTOM or MANAGED)
- Managed
List stringType - Type of content in the managed list
- Value string
- Configuration value
- list
Type String - Configuration list item type (CUSTOM or MANAGED)
- managed
List StringType - Type of content in the managed list
- value String
- Configuration value
- list
Type string - Configuration list item type (CUSTOM or MANAGED)
- managed
List stringType - Type of content in the managed list
- value string
- Configuration value
- list_
type str - Configuration list item type (CUSTOM or MANAGED)
- managed_
list_ strtype - Type of content in the managed list
- value str
- Configuration value
- list
Type String - Configuration list item type (CUSTOM or MANAGED)
- managed
List StringType - Type of content in the managed list
- value String
- Configuration value
TargetTargetDetectorRecipeDetectorRuleEntitiesMapping, TargetTargetDetectorRecipeDetectorRuleEntitiesMappingArgs
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- Entity
Type string - Type of entity
- Query
Field string - The entity value mapped to a data source query
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- Entity
Type string - Type of entity
- Query
Field string - The entity value mapped to a data source query
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- entity
Type String - Type of entity
- query
Field String - The entity value mapped to a data source query
- display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- entity
Type string - Type of entity
- query
Field 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
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- entity
Type String - Type of entity
- query
Field String - The entity value mapped to a data source query
TargetTargetDetectorRecipeEffectiveDetectorRule, TargetTargetDetectorRecipeEffectiveDetectorRuleArgs
- Data
Source stringId - The ID of the attached data source
- Description string
The target description.
Avoid entering confidential information.
- Details
List<Target
Target Detector Recipe Effective Detector Rule Detail> - Detailed information for a responder rule
- Detector string
- Detector type for the rule
- Detector
Rule stringId - The unique identifier of the detector rule
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- Entities
Mappings List<TargetTarget Detector Recipe Effective Detector Rule Entities Mapping> - Data source entities mapping for a detector rule
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Managed
List List<string>Types - List of managed list types related to this rule
- Recommendation string
- Recommendation for TargetDetectorRecipeDetectorRule resource
- Resource
Type 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).
- Service
Type string - Service type of the configuration to which the rule is applied
- State string
- (Updatable) The enablement state of the detector rule
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- Data
Source stringId - The ID of the attached data source
- Description string
The target description.
Avoid entering confidential information.
- Details
[]Target
Target Detector Recipe Effective Detector Rule Detail - Detailed information for a responder rule
- Detector string
- Detector type for the rule
- Detector
Rule stringId - The unique identifier of the detector rule
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- Entities
Mappings []TargetTarget Detector Recipe Effective Detector Rule Entities Mapping - Data source entities mapping for a detector rule
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Managed
List []stringTypes - List of managed list types related to this rule
- Recommendation string
- Recommendation for TargetDetectorRecipeDetectorRule resource
- Resource
Type 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).
- Service
Type string - Service type of the configuration to which the rule is applied
- State string
- (Updatable) The enablement state of the detector rule
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- data
Source StringId - The ID of the attached data source
- description String
The target description.
Avoid entering confidential information.
- details
List<Target
Target Detector Recipe Effective Detector Rule Detail> - Detailed information for a responder rule
- detector String
- Detector type for the rule
- detector
Rule StringId - The unique identifier of the detector rule
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- entities
Mappings List<TargetTarget Detector Recipe Effective Detector Rule Entities Mapping> - Data source entities mapping for a detector rule
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed
List List<String>Types - List of managed list types related to this rule
- recommendation String
- Recommendation for TargetDetectorRecipeDetectorRule resource
- resource
Type 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).
- service
Type String - Service type of the configuration to which the rule is applied
- state String
- (Updatable) The enablement state of the detector rule
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
- data
Source stringId - The ID of the attached data source
- description string
The target description.
Avoid entering confidential information.
- details
Target
Target Detector Recipe Effective Detector Rule Detail[] - Detailed information for a responder rule
- detector string
- Detector type for the rule
- detector
Rule stringId - The unique identifier of the detector rule
- display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- entities
Mappings TargetTarget Detector Recipe Effective Detector Rule Entities Mapping[] - Data source entities mapping for a detector rule
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed
List string[]Types - List of managed list types related to this rule
- recommendation string
- Recommendation for TargetDetectorRecipeDetectorRule resource
- resource
Type 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).
- service
Type string - Service type of the configuration to which the rule is applied
- state string
- (Updatable) The enablement state of the detector rule
- time
Created string - The date and time the target was created. Format defined by RFC3339.
- time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- data_
source_ strid - The ID of the attached data source
- description str
The target description.
Avoid entering confidential information.
- details
Sequence[cloudguard.
Target Target Detector Recipe Effective Detector Rule Detail] - Detailed information for a responder rule
- detector str
- Detector type for the rule
- detector_
rule_ strid - The unique identifier of the detector rule
- display_
name str (Updatable) Display name for the target.
Avoid entering confidential information.
- entities_
mappings Sequence[cloudguard.Target Target Detector Recipe Effective Detector Rule Entities Mapping] - Data source entities mapping for a detector rule
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed_
list_ Sequence[str]types - List of 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.
- data
Source StringId - 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
- detector
Rule StringId - The unique identifier of the detector rule
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- entities
Mappings List<Property Map> - Data source entities mapping for a detector rule
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed
List List<String>Types - List of managed list types related to this rule
- recommendation String
- Recommendation for TargetDetectorRecipeDetectorRule resource
- resource
Type 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).
- service
Type String - Service type of the configuration to which the rule is applied
- state String
- (Updatable) The enablement state of the detector rule
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
TargetTargetDetectorRecipeEffectiveDetectorRuleDetail, TargetTargetDetectorRecipeEffectiveDetectorRuleDetailArgs
- Condition
Groups List<TargetTarget Detector Recipe Effective Detector Rule Detail Condition Group> - Condition group corresponding to each compartment
- Configurations
List<Target
Target Detector Recipe Effective Detector Rule Detail Configuration> - List of responder rule configurations
- Is
Configuration boolAllowed - Configuration allowed or not
- Is
Enabled bool - Enabled state for the responder rule
- Labels List<string>
- User-defined labels for a detector rule
- Risk
Level string - The risk level of the detector rule
- Condition
Groups []TargetTarget Detector Recipe Effective Detector Rule Detail Condition Group - Condition group corresponding to each compartment
- Configurations
[]Target
Target Detector Recipe Effective Detector Rule Detail Configuration - List of responder rule configurations
- Is
Configuration boolAllowed - Configuration allowed or not
- Is
Enabled bool - Enabled state for the responder rule
- Labels []string
- User-defined labels for a detector rule
- Risk
Level string - The risk level of the detector rule
- condition
Groups List<TargetTarget Detector Recipe Effective Detector Rule Detail Condition Group> - Condition group corresponding to each compartment
- configurations
List<Target
Target Detector Recipe Effective Detector Rule Detail Configuration> - List of responder rule configurations
- is
Configuration BooleanAllowed - Configuration allowed or not
- is
Enabled Boolean - Enabled state for the responder rule
- labels List<String>
- User-defined labels for a detector rule
- risk
Level String - The risk level of the detector rule
- condition
Groups TargetTarget Detector Recipe Effective Detector Rule Detail Condition Group[] - Condition group corresponding to each compartment
- configurations
Target
Target Detector Recipe Effective Detector Rule Detail Configuration[] - List of responder rule configurations
- is
Configuration booleanAllowed - Configuration allowed or not
- is
Enabled boolean - Enabled state for the responder rule
- labels string[]
- User-defined labels for a detector rule
- risk
Level string - The risk level of the detector rule
- condition_
groups Sequence[cloudguard.Target Target Detector Recipe Effective Detector Rule Detail Condition Group] - Condition group corresponding to each compartment
- configurations
Sequence[cloudguard.
Target Target Detector Recipe Effective Detector Rule Detail Configuration] - List of responder rule configurations
- is_
configuration_ boolallowed - 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
- condition
Groups List<Property Map> - Condition group corresponding to each compartment
- configurations List<Property Map>
- List of responder rule configurations
- is
Configuration BooleanAllowed - Configuration allowed or not
- is
Enabled Boolean - Enabled state for the responder rule
- labels List<String>
- User-defined labels for a detector rule
- risk
Level String - The risk level of the detector rule
TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroup, TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroupArgs
- Compartment
Id string - Compartment OCID where the resource is created
- Condition string
- The base condition resource.
- Compartment
Id string - Compartment OCID where the resource is created
- Condition string
- The base condition resource.
- compartment
Id String - Compartment OCID where the resource is created
- condition String
- The base condition resource.
- compartment
Id 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.
- compartment
Id String - Compartment OCID where the resource is created
- condition String
- The base condition resource.
TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfiguration, TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationArgs
- 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.
Target Target Detector Recipe Effective Detector Rule Detail Configuration Value] - List of configuration values
TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValue, TargetTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValueArgs
- List
Type string - Configuration list item type (CUSTOM or MANAGED)
- Managed
List stringType - Type of content in the managed list
- Value string
- Configuration value
- List
Type string - Configuration list item type (CUSTOM or MANAGED)
- Managed
List stringType - Type of content in the managed list
- Value string
- Configuration value
- list
Type String - Configuration list item type (CUSTOM or MANAGED)
- managed
List StringType - Type of content in the managed list
- value String
- Configuration value
- list
Type string - Configuration list item type (CUSTOM or MANAGED)
- managed
List stringType - Type of content in the managed list
- value string
- Configuration value
- list_
type str - Configuration list item type (CUSTOM or MANAGED)
- managed_
list_ strtype - Type of content in the managed list
- value str
- Configuration value
- list
Type String - Configuration list item type (CUSTOM or MANAGED)
- managed
List StringType - Type of content in the managed list
- value String
- Configuration value
TargetTargetDetectorRecipeEffectiveDetectorRuleEntitiesMapping, TargetTargetDetectorRecipeEffectiveDetectorRuleEntitiesMappingArgs
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- Entity
Type string - Type of entity
- Query
Field string - The entity value mapped to a data source query
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- Entity
Type string - Type of entity
- Query
Field string - The entity value mapped to a data source query
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- entity
Type String - Type of entity
- query
Field String - The entity value mapped to a data source query
- display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- entity
Type string - Type of entity
- query
Field 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
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- entity
Type String - Type of entity
- query
Field String - The entity value mapped to a data source query
TargetTargetResponderRecipe, TargetTargetResponderRecipeArgs
- Responder
Recipe stringId - Unique identifier for responder recipe
- Compartment
Id string - Compartment OCID where the resource is created
- Description string
The target description.
Avoid entering confidential information.
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- Effective
Responder List<TargetRules Target Responder Recipe Effective Responder Rule> - 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
- Responder
Rules List<TargetTarget Responder Recipe Responder Rule> - (Updatable) List of overrides to be applied to responder rules associated with the target
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- Responder
Recipe stringId - Unique identifier for responder recipe
- Compartment
Id string - Compartment OCID where the resource is created
- Description string
The target description.
Avoid entering confidential information.
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- Effective
Responder []TargetRules Target Responder Recipe Effective Responder Rule - 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
- Responder
Rules []TargetTarget Responder Recipe Responder Rule - (Updatable) List of overrides to be applied to responder rules associated with the target
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- responder
Recipe StringId - Unique identifier for responder recipe
- compartment
Id String - Compartment OCID where the resource is created
- description String
The target description.
Avoid entering confidential information.
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- effective
Responder List<TargetRules Target Responder Recipe Effective Responder Rule> - 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
- responder
Rules List<TargetTarget Responder Recipe Responder Rule> - (Updatable) List of overrides to be applied to responder rules associated with the target
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
- responder
Recipe stringId - Unique identifier for responder recipe
- compartment
Id string - Compartment OCID where the resource is created
- description string
The target description.
Avoid entering confidential information.
- display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- effective
Responder TargetRules Target Responder Recipe Effective Responder Rule[] - 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
- responder
Rules TargetTarget Responder Recipe Responder Rule[] - (Updatable) List of overrides to be applied to responder rules associated with the target
- time
Created string - The date and time the target was created. Format defined by RFC3339.
- time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- responder_
recipe_ strid - 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_ Sequence[cloudguard.rules Target Target Responder Recipe Effective Responder Rule] - 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.Target Target Responder Recipe Responder Rule] - (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.
- responder
Recipe StringId - Unique identifier for responder recipe
- compartment
Id String - Compartment OCID where the resource is created
- description String
The target description.
Avoid entering confidential information.
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- effective
Responder List<Property Map>Rules - 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
- responder
Rules List<Property Map> - (Updatable) List of overrides to be applied to responder rules associated with the target
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
TargetTargetResponderRecipeEffectiveResponderRule, TargetTargetResponderRecipeEffectiveResponderRuleArgs
- Compartment
Id string - Compartment OCID where the resource is created
- Description string
The target description.
Avoid entering confidential information.
- Details
List<Target
Target Responder Recipe Effective Responder Rule Detail> - Detailed information for a responder rule
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Policies List<string>
- List of policies
- Responder
Rule stringId - Unique identifier for the responder rule
- State string
- (Updatable) The enablement state of the detector rule
- Supported
Modes List<string> - Supported execution modes for the responder rule
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- Type string
- Type of responder
- Compartment
Id string - Compartment OCID where the resource is created
- Description string
The target description.
Avoid entering confidential information.
- Details
[]Target
Target Responder Recipe Effective Responder Rule Detail - Detailed information for a responder rule
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Policies []string
- List of policies
- Responder
Rule stringId - Unique identifier for the responder rule
- State string
- (Updatable) The enablement state of the detector rule
- Supported
Modes []string - Supported execution modes for the responder rule
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- Type string
- Type of responder
- compartment
Id String - Compartment OCID where the resource is created
- description String
The target description.
Avoid entering confidential information.
- details
List<Target
Target Responder Recipe Effective Responder Rule Detail> - Detailed information for a responder rule
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies List<String>
- List of policies
- responder
Rule StringId - Unique identifier for the responder rule
- state String
- (Updatable) The enablement state of the detector rule
- supported
Modes List<String> - Supported execution modes for the responder rule
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
- type String
- Type of responder
- compartment
Id string - Compartment OCID where the resource is created
- description string
The target description.
Avoid entering confidential information.
- details
Target
Target Responder Recipe Effective Responder Rule Detail[] - Detailed information for a responder rule
- display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies string[]
- List of policies
- responder
Rule stringId - Unique identifier for the responder rule
- state string
- (Updatable) The enablement state of the detector rule
- supported
Modes string[] - Supported execution modes for the responder rule
- time
Created string - The date and time the target was created. Format defined by RFC3339.
- time
Updated 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.
Target Target Responder Recipe Effective Responder Rule Detail] - 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_ strid - 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
- compartment
Id 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
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies List<String>
- List of policies
- responder
Rule StringId - Unique identifier for the responder rule
- state String
- (Updatable) The enablement state of the detector rule
- supported
Modes List<String> - Supported execution modes for the responder rule
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated 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<Target
Target Responder Recipe Effective Responder Rule Detail Configuration> - List of responder rule configurations
- Is
Enabled bool - Enabled state for the responder rule
- Mode string
- Execution mode for the responder rule
- Condition string
- The base condition resource.
- Configurations
[]Target
Target Responder Recipe Effective Responder Rule Detail Configuration - List of responder rule configurations
- Is
Enabled bool - Enabled state for the responder rule
- Mode string
- Execution mode for the responder rule
- condition String
- The base condition resource.
- configurations
List<Target
Target Responder Recipe Effective Responder Rule Detail Configuration> - List of responder rule configurations
- is
Enabled Boolean - Enabled state for the responder rule
- mode String
- Execution mode for the responder rule
- condition string
- The base condition resource.
- configurations
Target
Target Responder Recipe Effective Responder Rule Detail Configuration[] - List of responder rule configurations
- is
Enabled boolean - Enabled state for the responder rule
- mode string
- Execution mode for the responder rule
- condition str
- The base condition resource.
- configurations
Sequence[cloudguard.
Target Target Responder Recipe Effective Responder Rule Detail Configuration] - 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
- is
Enabled Boolean - Enabled state for the responder rule
- mode String
- Execution mode for the responder rule
TargetTargetResponderRecipeEffectiveResponderRuleDetailConfiguration, TargetTargetResponderRecipeEffectiveResponderRuleDetailConfigurationArgs
- config_
key str - Unique identifier of the configuration
- name str
- Configuration name
- value str
- Configuration value
TargetTargetResponderRecipeResponderRule, TargetTargetResponderRecipeResponderRuleArgs
- Details
Target
Target Responder Recipe Responder Rule Details - (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 stringId (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 string - Compartment OCID where the resource is created
- Description string
The target description.
Avoid entering confidential information.
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Policies List<string>
- List of policies
- State string
- (Updatable) The enablement state of the detector rule
- Supported
Modes List<string> - Supported execution modes for the responder rule
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- Type string
- Type of responder
- Details
Target
Target Responder Recipe Responder Rule Details - (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 stringId (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 string - Compartment OCID where the resource is created
- Description string
The target description.
Avoid entering confidential information.
- Display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Policies []string
- List of policies
- State string
- (Updatable) The enablement state of the detector rule
- Supported
Modes []string - Supported execution modes for the responder rule
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- Type string
- Type of responder
- details
Target
Target Responder Recipe Responder Rule Details - (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 StringId (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 String - Compartment OCID where the resource is created
- description String
The target description.
Avoid entering confidential information.
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies List<String>
- List of policies
- state String
- (Updatable) The enablement state of the detector rule
- supported
Modes List<String> - Supported execution modes for the responder rule
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
- type String
- Type of responder
- details
Target
Target Responder Recipe Responder Rule Details - (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 stringId (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 string - Compartment OCID where the resource is created
- description string
The target description.
Avoid entering confidential information.
- display
Name string (Updatable) Display name for the target.
Avoid entering confidential information.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies string[]
- List of policies
- state string
- (Updatable) The enablement state of the detector rule
- supported
Modes string[] - Supported execution modes for the responder rule
- time
Created string - The date and time the target was created. Format defined by RFC3339.
- time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- type string
- Type of responder
- details
cloudguard.
Target Target Responder Recipe Responder Rule Details - (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_ strid (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.
- responder
Rule StringId (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 String - Compartment OCID where the resource is created
- description String
The target description.
Avoid entering confidential information.
- display
Name String (Updatable) Display name for the target.
Avoid entering confidential information.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies List<String>
- List of policies
- state String
- (Updatable) The enablement state of the detector rule
- supported
Modes List<String> - Supported execution modes for the responder rule
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated 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<Target
Target Responder Recipe Responder Rule Details Configuration> - (Updatable) List of responder rule configurations
- Is
Enabled bool - Enabled state for the responder rule
- Mode string
- (Updatable) Execution mode for the responder rule
- Condition string
- (Updatable) The base condition resource.
- Configurations
[]Target
Target Responder Recipe Responder Rule Details Configuration - (Updatable) List of responder rule configurations
- Is
Enabled 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<Target
Target Responder Recipe Responder Rule Details Configuration> - (Updatable) List of responder rule configurations
- is
Enabled Boolean - Enabled state for the responder rule
- mode String
- (Updatable) Execution mode for the responder rule
- condition string
- (Updatable) The base condition resource.
- configurations
Target
Target Responder Recipe Responder Rule Details Configuration[] - (Updatable) List of responder rule configurations
- is
Enabled 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.
Target Target Responder Recipe Responder Rule Details Configuration] - (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
- is
Enabled Boolean - Enabled state for the responder rule
- mode String
- (Updatable) Execution mode for the responder rule
TargetTargetResponderRecipeResponderRuleDetailsConfiguration, TargetTargetResponderRecipeResponderRuleDetailsConfigurationArgs
- config_
key str - (Updatable) Unique identifier of the configuration
- name str
- (Updatable) Configuration name
- value str
- (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.