oci logo
Oracle Cloud Infrastructure v0.20.0, May 31 23

oci.CloudGuard.getGuardTargets

Explore with Pulumi AI

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

Returns a list of all Targets in a compartment The ListTargets operation returns only the targets in compartmentId passed. The list does not include any subcompartments of the compartmentId passed.

The parameter accessLevel specifies whether to return only those compartments for which the requestor has INSPECT permissions on at least one resource directly or indirectly (ACCESSIBLE) (the resource can be in a subcompartment) or to return Not Authorized if Principal doesn’t have access to even one of the child compartments. This is valid only when compartmentIdInSubtree is set to true.

The parameter compartmentIdInSubtree applies when you perform ListTargets on the compartmentId passed and when it is set to true, the entire hierarchy of compartments can be returned. To get a full list of all compartments and subcompartments in the tenancy (root compartment), set the parameter compartmentIdInSubtree to true and accessLevel to ACCESSIBLE.

Example Usage

using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testTargets = Oci.CloudGuard.GetGuardTargets.Invoke(new()
    {
        CompartmentId = @var.Compartment_id,
        AccessLevel = @var.Target_access_level,
        CompartmentIdInSubtree = @var.Target_compartment_id_in_subtree,
        DisplayName = @var.Target_display_name,
        IsNonSecurityZoneTargetsOnlyQuery = @var.Target_is_non_security_zone_targets_only_query,
        State = @var.Target_state,
    });

});
package main

import (
	"github.com/pulumi/pulumi-oci/sdk/go/oci/CloudGuard"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := CloudGuard.GetGuardTargets(ctx, &cloudguard.GetGuardTargetsArgs{
			CompartmentId:                     _var.Compartment_id,
			AccessLevel:                       pulumi.StringRef(_var.Target_access_level),
			CompartmentIdInSubtree:            pulumi.BoolRef(_var.Target_compartment_id_in_subtree),
			DisplayName:                       pulumi.StringRef(_var.Target_display_name),
			IsNonSecurityZoneTargetsOnlyQuery: pulumi.BoolRef(_var.Target_is_non_security_zone_targets_only_query),
			State:                             pulumi.StringRef(_var.Target_state),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
package generated_program;

import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.CloudGuard.CloudGuardFunctions;
import com.pulumi.oci.CloudGuard.inputs.GetGuardTargetsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;

public class App {
    public static void main(String[] args) {
        Pulumi.run(App::stack);
    }

    public static void stack(Context ctx) {
        final var testTargets = CloudGuardFunctions.getGuardTargets(GetGuardTargetsArgs.builder()
            .compartmentId(var_.compartment_id())
            .accessLevel(var_.target_access_level())
            .compartmentIdInSubtree(var_.target_compartment_id_in_subtree())
            .displayName(var_.target_display_name())
            .isNonSecurityZoneTargetsOnlyQuery(var_.target_is_non_security_zone_targets_only_query())
            .state(var_.target_state())
            .build());

    }
}
import pulumi
import pulumi_oci as oci

test_targets = oci.CloudGuard.get_guard_targets(compartment_id=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    access_level=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    compartment_id_in_subtree=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    display_name=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    is_non_security_zone_targets_only_query=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
    state=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testTargets = oci.CloudGuard.getGuardTargets({
    compartmentId: _var.compartment_id,
    accessLevel: _var.target_access_level,
    compartmentIdInSubtree: _var.target_compartment_id_in_subtree,
    displayName: _var.target_display_name,
    isNonSecurityZoneTargetsOnlyQuery: _var.target_is_non_security_zone_targets_only_query,
    state: _var.target_state,
});
variables:
  testTargets:
    fn::invoke:
      Function: oci:CloudGuard:getGuardTargets
      Arguments:
        compartmentId: ${var.compartment_id}
        accessLevel: ${var.target_access_level}
        compartmentIdInSubtree: ${var.target_compartment_id_in_subtree}
        displayName: ${var.target_display_name}
        isNonSecurityZoneTargetsOnlyQuery: ${var.target_is_non_security_zone_targets_only_query}
        state: ${var.target_state}

Using getGuardTargets

Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

function getGuardTargets(args: GetGuardTargetsArgs, opts?: InvokeOptions): Promise<GetGuardTargetsResult>
function getGuardTargetsOutput(args: GetGuardTargetsOutputArgs, opts?: InvokeOptions): Output<GetGuardTargetsResult>
def get_guard_targets(access_level: Optional[str] = None,
                      compartment_id: Optional[str] = None,
                      compartment_id_in_subtree: Optional[bool] = None,
                      display_name: Optional[str] = None,
                      filters: Optional[Sequence[_cloudguard.GetGuardTargetsFilter]] = None,
                      is_non_security_zone_targets_only_query: Optional[bool] = None,
                      state: Optional[str] = None,
                      opts: Optional[InvokeOptions] = None) -> GetGuardTargetsResult
def get_guard_targets_output(access_level: Optional[pulumi.Input[str]] = None,
                      compartment_id: Optional[pulumi.Input[str]] = None,
                      compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
                      display_name: Optional[pulumi.Input[str]] = None,
                      filters: Optional[pulumi.Input[Sequence[pulumi.Input[_cloudguard.GetGuardTargetsFilterArgs]]]] = None,
                      is_non_security_zone_targets_only_query: Optional[pulumi.Input[bool]] = None,
                      state: Optional[pulumi.Input[str]] = None,
                      opts: Optional[InvokeOptions] = None) -> Output[GetGuardTargetsResult]
func GetGuardTargets(ctx *Context, args *GetGuardTargetsArgs, opts ...InvokeOption) (*GetGuardTargetsResult, error)
func GetGuardTargetsOutput(ctx *Context, args *GetGuardTargetsOutputArgs, opts ...InvokeOption) GetGuardTargetsResultOutput

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

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

The following arguments are supported:

CompartmentId string

The ID of the compartment in which to list resources.

AccessLevel string

Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.

CompartmentIdInSubtree bool

Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the the setting of accessLevel.

DisplayName string

A filter to return only resources that match the entire display name given.

Filters List<GetGuardTargetsFilter>
IsNonSecurityZoneTargetsOnlyQuery bool

Default is false. When set to true, only the targets that would be deleted as part of security zone creation will be returned.

State string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

CompartmentId string

The ID of the compartment in which to list resources.

AccessLevel string

Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.

CompartmentIdInSubtree bool

Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the the setting of accessLevel.

DisplayName string

A filter to return only resources that match the entire display name given.

Filters []GetGuardTargetsFilter
IsNonSecurityZoneTargetsOnlyQuery bool

Default is false. When set to true, only the targets that would be deleted as part of security zone creation will be returned.

State string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

compartmentId String

The ID of the compartment in which to list resources.

accessLevel String

Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.

compartmentIdInSubtree Boolean

Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the the setting of accessLevel.

displayName String

A filter to return only resources that match the entire display name given.

filters List<GetGuardTargetsFilter>
isNonSecurityZoneTargetsOnlyQuery Boolean

Default is false. When set to true, only the targets that would be deleted as part of security zone creation will be returned.

state String

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

compartmentId string

The ID of the compartment in which to list resources.

accessLevel string

Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.

compartmentIdInSubtree boolean

Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the the setting of accessLevel.

displayName string

A filter to return only resources that match the entire display name given.

filters GetGuardTargetsFilter[]
isNonSecurityZoneTargetsOnlyQuery boolean

Default is false. When set to true, only the targets that would be deleted as part of security zone creation will be returned.

state string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

compartment_id str

The ID of the compartment in which to list resources.

access_level str

Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.

compartment_id_in_subtree bool

Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the the setting of accessLevel.

display_name str

A filter to return only resources that match the entire display name given.

filters GetGuardTargetsFilter]
is_non_security_zone_targets_only_query bool

Default is false. When set to true, only the targets that would be deleted as part of security zone creation will be returned.

state str

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

compartmentId String

The ID of the compartment in which to list resources.

accessLevel String

Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.

compartmentIdInSubtree Boolean

Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the the setting of accessLevel.

displayName String

A filter to return only resources that match the entire display name given.

filters List<Property Map>
isNonSecurityZoneTargetsOnlyQuery Boolean

Default is false. When set to true, only the targets that would be deleted as part of security zone creation will be returned.

state String

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

getGuardTargets Result

The following output properties are available:

CompartmentId string

Compartment Identifier

Id string

The provider-assigned unique ID for this managed resource.

TargetCollections List<GetGuardTargetsTargetCollection>

The list of target_collection.

AccessLevel string
CompartmentIdInSubtree bool
DisplayName string

ResponderRule display name.

Filters List<GetGuardTargetsFilter>
IsNonSecurityZoneTargetsOnlyQuery bool
State string

The current state of the ResponderRule.

CompartmentId string

Compartment Identifier

Id string

The provider-assigned unique ID for this managed resource.

TargetCollections []GetGuardTargetsTargetCollection

The list of target_collection.

AccessLevel string
CompartmentIdInSubtree bool
DisplayName string

ResponderRule display name.

Filters []GetGuardTargetsFilter
IsNonSecurityZoneTargetsOnlyQuery bool
State string

The current state of the ResponderRule.

compartmentId String

Compartment Identifier

id String

The provider-assigned unique ID for this managed resource.

targetCollections List<GetGuardTargetsTargetCollection>

The list of target_collection.

accessLevel String
compartmentIdInSubtree Boolean
displayName String

ResponderRule display name.

filters List<GetGuardTargetsFilter>
isNonSecurityZoneTargetsOnlyQuery Boolean
state String

The current state of the ResponderRule.

compartmentId string

Compartment Identifier

id string

The provider-assigned unique ID for this managed resource.

targetCollections GetGuardTargetsTargetCollection[]

The list of target_collection.

accessLevel string
compartmentIdInSubtree boolean
displayName string

ResponderRule display name.

filters GetGuardTargetsFilter[]
isNonSecurityZoneTargetsOnlyQuery boolean
state string

The current state of the ResponderRule.

compartment_id str

Compartment Identifier

id str

The provider-assigned unique ID for this managed resource.

target_collections GetGuardTargetsTargetCollection]

The list of target_collection.

access_level str
compartment_id_in_subtree bool
display_name str

ResponderRule display name.

filters GetGuardTargetsFilter]
is_non_security_zone_targets_only_query bool
state str

The current state of the ResponderRule.

compartmentId String

Compartment Identifier

id String

The provider-assigned unique ID for this managed resource.

targetCollections List<Property Map>

The list of target_collection.

accessLevel String
compartmentIdInSubtree Boolean
displayName String

ResponderRule display name.

filters List<Property Map>
isNonSecurityZoneTargetsOnlyQuery Boolean
state String

The current state of the ResponderRule.

Supporting Types

GetGuardTargetsFilter

Name string

configuration name

Values List<string>

List of configuration values

Regex bool
Name string

configuration name

Values []string

List of configuration values

Regex bool
name String

configuration name

values List<String>

List of configuration values

regex Boolean
name string

configuration name

values string[]

List of configuration values

regex boolean
name str

configuration name

values Sequence[str]

List of configuration values

regex bool
name String

configuration name

values List<String>

List of configuration values

regex Boolean

GetGuardTargetsTargetCollection

GetGuardTargetsTargetCollectionItem

CompartmentId string

The ID of the compartment in which to list resources.

DefinedTags Dictionary<string, object>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

Description string

ResponderRule description.

DisplayName string

A filter to return only resources that match the entire display name given.

FreeformTags Dictionary<string, object>

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

Id string

Unique identifier of TargetResponderRecipe that can't be changed after creation.

InheritedByCompartments List<string>

List of inherited compartments

LifecyleDetails 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.

RecipeCount int

Total number of recipes attached to target

State string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

SystemTags Dictionary<string, object>

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

TargetDetails List<GetGuardTargetsTargetCollectionItemTargetDetail>

Details specific to the target type.

TargetDetectorRecipes List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipe>

List of detector recipes associated with target

TargetResourceId string

Resource ID which the target uses to monitor

TargetResourceType string

possible type of targets

TargetResponderRecipes List<GetGuardTargetsTargetCollectionItemTargetResponderRecipe>

List of responder recipes associated with target

TimeCreated string

The date and time the target was created. Format defined by RFC3339.

TimeUpdated string

The date and time the target was updated. Format defined by RFC3339.

CompartmentId string

The ID of the compartment in which to list resources.

DefinedTags map[string]interface{}

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

Description string

ResponderRule description.

DisplayName string

A filter to return only resources that match the entire display name given.

FreeformTags map[string]interface{}

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

Id string

Unique identifier of TargetResponderRecipe that can't be changed after creation.

InheritedByCompartments []string

List of inherited compartments

LifecyleDetails 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.

RecipeCount int

Total number of recipes attached to target

State string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

SystemTags map[string]interface{}

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

TargetDetails []GetGuardTargetsTargetCollectionItemTargetDetail

Details specific to the target type.

TargetDetectorRecipes []GetGuardTargetsTargetCollectionItemTargetDetectorRecipe

List of detector recipes associated with target

TargetResourceId string

Resource ID which the target uses to monitor

TargetResourceType string

possible type of targets

TargetResponderRecipes []GetGuardTargetsTargetCollectionItemTargetResponderRecipe

List of responder recipes associated with target

TimeCreated string

The date and time the target was created. Format defined by RFC3339.

TimeUpdated string

The date and time the target was updated. Format defined by RFC3339.

compartmentId String

The ID of the compartment in which to list resources.

definedTags Map<String,Object>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

description String

ResponderRule description.

displayName String

A filter to return only resources that match the entire display name given.

freeformTags Map<String,Object>

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

id String

Unique identifier of TargetResponderRecipe that can't be changed after creation.

inheritedByCompartments List<String>

List of inherited compartments

lifecyleDetails 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.

recipeCount Integer

Total number of recipes attached to target

state String

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

systemTags Map<String,Object>

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

targetDetails List<GetGuardTargetsTargetCollectionItemTargetDetail>

Details specific to the target type.

targetDetectorRecipes List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipe>

List of detector recipes associated with target

targetResourceId String

Resource ID which the target uses to monitor

targetResourceType String

possible type of targets

targetResponderRecipes List<GetGuardTargetsTargetCollectionItemTargetResponderRecipe>

List of responder recipes associated with target

timeCreated String

The date and time the target was created. Format defined by RFC3339.

timeUpdated String

The date and time the target was updated. Format defined by RFC3339.

compartmentId string

The ID of the compartment in which to list resources.

definedTags {[key: string]: any}

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

description string

ResponderRule description.

displayName string

A filter to return only resources that match the entire display name given.

freeformTags {[key: string]: any}

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

id string

Unique identifier of TargetResponderRecipe that can't be changed after creation.

inheritedByCompartments string[]

List of inherited compartments

lifecyleDetails 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.

recipeCount number

Total number of recipes attached to target

state string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

systemTags {[key: string]: any}

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

targetDetails GetGuardTargetsTargetCollectionItemTargetDetail[]

Details specific to the target type.

targetDetectorRecipes GetGuardTargetsTargetCollectionItemTargetDetectorRecipe[]

List of detector recipes associated with target

targetResourceId string

Resource ID which the target uses to monitor

targetResourceType string

possible type of targets

targetResponderRecipes GetGuardTargetsTargetCollectionItemTargetResponderRecipe[]

List of responder recipes associated with target

timeCreated string

The date and time the target was created. Format defined by RFC3339.

timeUpdated string

The date and time the target was updated. Format defined by RFC3339.

compartment_id str

The ID of the compartment in which to list resources.

defined_tags Mapping[str, Any]

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

description str

ResponderRule description.

display_name str

A filter to return only resources that match the entire display name given.

freeform_tags Mapping[str, Any]

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

id str

Unique identifier of TargetResponderRecipe that can't be changed after creation.

inherited_by_compartments Sequence[str]

List of inherited compartments

lifecyle_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.

recipe_count int

Total number of recipes attached to target

state str

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

system_tags Mapping[str, Any]

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

target_details GetGuardTargetsTargetCollectionItemTargetDetail]

Details specific to the target type.

target_detector_recipes GetGuardTargetsTargetCollectionItemTargetDetectorRecipe]

List of detector recipes associated with target

target_resource_id str

Resource ID which the target uses to monitor

target_resource_type str

possible type of targets

target_responder_recipes GetGuardTargetsTargetCollectionItemTargetResponderRecipe]

List of responder recipes associated with 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 updated. Format defined by RFC3339.

compartmentId String

The ID of the compartment in which to list resources.

definedTags Map<Any>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

description String

ResponderRule description.

displayName String

A filter to return only resources that match the entire display name given.

freeformTags Map<Any>

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

id String

Unique identifier of TargetResponderRecipe that can't be changed after creation.

inheritedByCompartments List<String>

List of inherited compartments

lifecyleDetails 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.

recipeCount Number

Total number of recipes attached to target

state String

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

systemTags Map<Any>

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

targetDetails List<Property Map>

Details specific to the target type.

targetDetectorRecipes List<Property Map>

List of detector recipes associated with target

targetResourceId String

Resource ID which the target uses to monitor

targetResourceType String

possible type of targets

targetResponderRecipes List<Property Map>

List of responder recipes associated with target

timeCreated String

The date and time the target was created. Format defined by RFC3339.

timeUpdated String

The date and time the target was updated. Format defined by RFC3339.

GetGuardTargetsTargetCollectionItemTargetDetail

SecurityZoneDisplayName string

The name of the security zone to associate this compartment with.

SecurityZoneId string

The OCID of the security zone to associate this compartment with.

TargetResourceType string

possible type of targets

TargetSecurityZoneRecipes List<GetGuardTargetsTargetCollectionItemTargetDetailTargetSecurityZoneRecipe>

The list of security zone recipes to associate this compartment with.

SecurityZoneDisplayName string

The name of the security zone to associate this compartment with.

SecurityZoneId string

The OCID of the security zone to associate this compartment with.

TargetResourceType string

possible type of targets

TargetSecurityZoneRecipes []GetGuardTargetsTargetCollectionItemTargetDetailTargetSecurityZoneRecipe

The list of security zone recipes to associate this compartment with.

securityZoneDisplayName String

The name of the security zone to associate this compartment with.

securityZoneId String

The OCID of the security zone to associate this compartment with.

targetResourceType String

possible type of targets

targetSecurityZoneRecipes List<GetGuardTargetsTargetCollectionItemTargetDetailTargetSecurityZoneRecipe>

The list of security zone recipes to associate this compartment with.

securityZoneDisplayName string

The name of the security zone to associate this compartment with.

securityZoneId string

The OCID of the security zone to associate this compartment with.

targetResourceType string

possible type of targets

targetSecurityZoneRecipes GetGuardTargetsTargetCollectionItemTargetDetailTargetSecurityZoneRecipe[]

The list of security zone recipes to associate this compartment with.

security_zone_display_name str

The name of the security zone to associate this compartment with.

security_zone_id str

The OCID of the security zone to associate this compartment with.

target_resource_type str

possible type of targets

target_security_zone_recipes GetGuardTargetsTargetCollectionItemTargetDetailTargetSecurityZoneRecipe]

The list of security zone recipes to associate this compartment with.

securityZoneDisplayName String

The name of the security zone to associate this compartment with.

securityZoneId String

The OCID of the security zone to associate this compartment with.

targetResourceType String

possible type of targets

targetSecurityZoneRecipes List<Property Map>

The list of security zone recipes to associate this compartment with.

GetGuardTargetsTargetCollectionItemTargetDetailTargetSecurityZoneRecipe

CompartmentId string

The ID of the compartment in which to list resources.

DefinedTags Dictionary<string, object>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

Description string

ResponderRule description.

DisplayName string

A filter to return only resources that match the entire display name given.

FreeformTags Dictionary<string, object>

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

Id string

Unique identifier of TargetResponderRecipe that can't be changed after creation.

LifecycleDetails string

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

Owner string

Owner of ResponderRecipe

SecurityPolicies List<string>

The list of SecurityPolicy ids that are included in the recipe

State string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

SystemTags Dictionary<string, object>

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

TimeCreated string

The date and time the target was created. Format defined by RFC3339.

TimeUpdated string

The date and time the target was updated. Format defined by RFC3339.

CompartmentId string

The ID of the compartment in which to list resources.

DefinedTags map[string]interface{}

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

Description string

ResponderRule description.

DisplayName string

A filter to return only resources that match the entire display name given.

FreeformTags map[string]interface{}

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

Id string

Unique identifier of TargetResponderRecipe that can't be changed after creation.

LifecycleDetails string

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

Owner string

Owner of ResponderRecipe

SecurityPolicies []string

The list of SecurityPolicy ids that are included in the recipe

State string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

SystemTags map[string]interface{}

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

TimeCreated string

The date and time the target was created. Format defined by RFC3339.

TimeUpdated string

The date and time the target was updated. Format defined by RFC3339.

compartmentId String

The ID of the compartment in which to list resources.

definedTags Map<String,Object>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

description String

ResponderRule description.

displayName String

A filter to return only resources that match the entire display name given.

freeformTags Map<String,Object>

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

id String

Unique identifier of TargetResponderRecipe that can't be changed after creation.

lifecycleDetails String

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

owner String

Owner of ResponderRecipe

securityPolicies List<String>

The list of SecurityPolicy ids that are included in the recipe

state String

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

systemTags Map<String,Object>

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

timeCreated String

The date and time the target was created. Format defined by RFC3339.

timeUpdated String

The date and time the target was updated. Format defined by RFC3339.

compartmentId string

The ID of the compartment in which to list resources.

definedTags {[key: string]: any}

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

description string

ResponderRule description.

displayName string

A filter to return only resources that match the entire display name given.

freeformTags {[key: string]: any}

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

id string

Unique identifier of TargetResponderRecipe that can't be changed after creation.

lifecycleDetails string

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

owner string

Owner of ResponderRecipe

securityPolicies string[]

The list of SecurityPolicy ids that are included in the recipe

state string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

systemTags {[key: string]: any}

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

timeCreated string

The date and time the target was created. Format defined by RFC3339.

timeUpdated string

The date and time the target was updated. Format defined by RFC3339.

compartment_id str

The ID of the compartment in which to list resources.

defined_tags Mapping[str, Any]

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

description str

ResponderRule description.

display_name str

A filter to return only resources that match the entire display name given.

freeform_tags Mapping[str, Any]

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

id str

Unique identifier of TargetResponderRecipe 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 ResponderRecipe

security_policies Sequence[str]

The list of SecurityPolicy ids that are included in the recipe

state str

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

system_tags Mapping[str, Any]

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

time_created str

The date and time the target was created. Format defined by RFC3339.

time_updated str

The date and time the target was updated. Format defined by RFC3339.

compartmentId String

The ID of the compartment in which to list resources.

definedTags Map<Any>

Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}

description String

ResponderRule description.

displayName String

A filter to return only resources that match the entire display name given.

freeformTags Map<Any>

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

id String

Unique identifier of TargetResponderRecipe that can't be changed after creation.

lifecycleDetails String

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

owner String

Owner of ResponderRecipe

securityPolicies List<String>

The list of SecurityPolicy ids that are included in the recipe

state String

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

systemTags Map<Any>

System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}

timeCreated String

The date and time the target was created. Format defined by RFC3339.

timeUpdated String

The date and time the target was updated. Format defined by RFC3339.

GetGuardTargetsTargetCollectionItemTargetDetectorRecipe

CompartmentId string

The ID of the compartment in which to list resources.

Description string

ResponderRule description.

Detector string

detector for the rule

DetectorRecipeId string

Unique identifier for Detector Recipe of which this is an extension

DetectorRules List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRule>

List of detector rules for the detector type for recipe - user input

DisplayName string

A filter to return only resources that match the entire display name given.

EffectiveDetectorRules List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRule>

List of effective detector rules for the detector type for recipe after applying defaults

Id string

Unique identifier of TargetResponderRecipe that can't be changed after creation.

Owner string

Owner of ResponderRecipe

State string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

TimeCreated string

The date and time the target was created. Format defined by RFC3339.

TimeUpdated string

The date and time the target was updated. Format defined by RFC3339.

CompartmentId string

The ID of the compartment in which to list resources.

Description string

ResponderRule description.

Detector string

detector for the rule

DetectorRecipeId string

Unique identifier for Detector Recipe of which this is an extension

DetectorRules []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRule

List of detector rules for the detector type for recipe - user input

DisplayName string

A filter to return only resources that match the entire display name given.

EffectiveDetectorRules []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRule

List of effective detector rules for the detector type for recipe after applying defaults

Id string

Unique identifier of TargetResponderRecipe that can't be changed after creation.

Owner string

Owner of ResponderRecipe

State string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

TimeCreated string

The date and time the target was created. Format defined by RFC3339.

TimeUpdated string

The date and time the target was updated. Format defined by RFC3339.

compartmentId String

The ID of the compartment in which to list resources.

description String

ResponderRule description.

detector String

detector for the rule

detectorRecipeId String

Unique identifier for Detector Recipe of which this is an extension

detectorRules List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRule>

List of detector rules for the detector type for recipe - user input

displayName String

A filter to return only resources that match the entire display name given.

effectiveDetectorRules List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRule>

List of effective detector rules for the detector type for recipe after applying defaults

id String

Unique identifier of TargetResponderRecipe that can't be changed after creation.

owner String

Owner of ResponderRecipe

state String

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

timeCreated String

The date and time the target was created. Format defined by RFC3339.

timeUpdated String

The date and time the target was updated. Format defined by RFC3339.

compartmentId string

The ID of the compartment in which to list resources.

description string

ResponderRule description.

detector string

detector for the rule

detectorRecipeId string

Unique identifier for Detector Recipe of which this is an extension

detectorRules GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRule[]

List of detector rules for the detector type for recipe - user input

displayName string

A filter to return only resources that match the entire display name given.

effectiveDetectorRules GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRule[]

List of effective detector rules for the detector type for recipe after applying defaults

id string

Unique identifier of TargetResponderRecipe that can't be changed after creation.

owner string

Owner of ResponderRecipe

state string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

timeCreated string

The date and time the target was created. Format defined by RFC3339.

timeUpdated string

The date and time the target was updated. Format defined by RFC3339.

compartment_id str

The ID of the compartment in which to list resources.

description str

ResponderRule description.

detector str

detector for the rule

detector_recipe_id str

Unique identifier for Detector Recipe of which this is an extension

detector_rules GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRule]

List of detector rules for the detector type for recipe - user input

display_name str

A filter to return only resources that match the entire display name given.

effective_detector_rules GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRule]

List of effective detector rules for the detector type for recipe after applying defaults

id str

Unique identifier of TargetResponderRecipe that can't be changed after creation.

owner str

Owner of ResponderRecipe

state str

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

time_created str

The date and time the target was created. Format defined by RFC3339.

time_updated str

The date and time the target was updated. Format defined by RFC3339.

compartmentId String

The ID of the compartment in which to list resources.

description String

ResponderRule description.

detector String

detector for the rule

detectorRecipeId String

Unique identifier for Detector Recipe of which this is an extension

detectorRules List<Property Map>

List of detector rules for the detector type for recipe - user input

displayName String

A filter to return only resources that match the entire display name given.

effectiveDetectorRules List<Property Map>

List of effective detector rules for the detector type for recipe after applying defaults

id String

Unique identifier of TargetResponderRecipe that can't be changed after creation.

owner String

Owner of ResponderRecipe

state String

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

timeCreated String

The date and time the target was created. Format defined by RFC3339.

timeUpdated String

The date and time the target was updated. Format defined by RFC3339.

GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRule

DataSourceId string

The id of the attached DataSource.

Description string

ResponderRule description.

Details List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetail>

Details of ResponderRule.

Detector string

detector for the rule

DetectorRuleId string

The unique identifier of the detector rule.

DisplayName string

A filter to return only resources that match the entire display name given.

EntitiesMappings List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleEntitiesMapping>

Data Source entities mapping for a Detector Rule

LifecycleDetails string

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

ManagedListTypes List<string>

List of cloudguard managed list types related to this rule

Recommendation string

Recommendation for TargetDetectorRecipeDetectorRule

ResourceType string

resource type of the configuration to which the rule is applied

ServiceType string

service type of the configuration to which the rule is applied

State string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

TimeCreated string

The date and time the target was created. Format defined by RFC3339.

TimeUpdated string

The date and time the target was updated. Format defined by RFC3339.

DataSourceId string

The id of the attached DataSource.

Description string

ResponderRule description.

Details []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetail

Details of ResponderRule.

Detector string

detector for the rule

DetectorRuleId string

The unique identifier of the detector rule.

DisplayName string

A filter to return only resources that match the entire display name given.

EntitiesMappings []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleEntitiesMapping

Data Source entities mapping for a Detector Rule

LifecycleDetails string

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

ManagedListTypes []string

List of cloudguard managed list types related to this rule

Recommendation string

Recommendation for TargetDetectorRecipeDetectorRule

ResourceType string

resource type of the configuration to which the rule is applied

ServiceType string

service type of the configuration to which the rule is applied

State string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

TimeCreated string

The date and time the target was created. Format defined by RFC3339.

TimeUpdated string

The date and time the target was updated. Format defined by RFC3339.

dataSourceId String

The id of the attached DataSource.

description String

ResponderRule description.

details List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetail>

Details of ResponderRule.

detector String

detector for the rule

detectorRuleId String

The unique identifier of the detector rule.

displayName String

A filter to return only resources that match the entire display name given.

entitiesMappings List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleEntitiesMapping>

Data Source entities mapping for a Detector Rule

lifecycleDetails String

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

managedListTypes List<String>

List of cloudguard managed list types related to this rule

recommendation String

Recommendation for TargetDetectorRecipeDetectorRule

resourceType String

resource type of the configuration to which the rule is applied

serviceType String

service type of the configuration to which the rule is applied

state String

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

timeCreated String

The date and time the target was created. Format defined by RFC3339.

timeUpdated String

The date and time the target was updated. Format defined by RFC3339.

dataSourceId string

The id of the attached DataSource.

description string

ResponderRule description.

details GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetail[]

Details of ResponderRule.

detector string

detector for the rule

detectorRuleId string

The unique identifier of the detector rule.

displayName string

A filter to return only resources that match the entire display name given.

entitiesMappings GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleEntitiesMapping[]

Data Source entities mapping for a Detector Rule

lifecycleDetails string

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

managedListTypes string[]

List of cloudguard managed list types related to this rule

recommendation string

Recommendation for TargetDetectorRecipeDetectorRule

resourceType string

resource type of the configuration to which the rule is applied

serviceType string

service type of the configuration to which the rule is applied

state string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

timeCreated string

The date and time the target was created. Format defined by RFC3339.

timeUpdated string

The date and time the target was updated. Format defined by RFC3339.

data_source_id str

The id of the attached DataSource.

description str

ResponderRule description.

details GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetail]

Details of ResponderRule.

detector str

detector for the rule

detector_rule_id str

The unique identifier of the detector rule.

display_name str

A filter to return only resources that match the entire display name given.

entities_mappings GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleEntitiesMapping]

Data Source entities mapping for a Detector Rule

lifecycle_details str

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

managed_list_types Sequence[str]

List of cloudguard managed list types related to this rule

recommendation str

Recommendation for TargetDetectorRecipeDetectorRule

resource_type str

resource type of the configuration to which the rule is applied

service_type str

service type of the configuration to which the rule is applied

state str

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

time_created str

The date and time the target was created. Format defined by RFC3339.

time_updated str

The date and time the target was updated. Format defined by RFC3339.

dataSourceId String

The id of the attached DataSource.

description String

ResponderRule description.

details List<Property Map>

Details of ResponderRule.

detector String

detector for the rule

detectorRuleId String

The unique identifier of the detector rule.

displayName String

A filter to return only resources that match the entire display name given.

entitiesMappings List<Property Map>

Data Source entities mapping for a Detector Rule

lifecycleDetails String

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

managedListTypes List<String>

List of cloudguard managed list types related to this rule

recommendation String

Recommendation for TargetDetectorRecipeDetectorRule

resourceType String

resource type of the configuration to which the rule is applied

serviceType String

service type of the configuration to which the rule is applied

state String

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

timeCreated String

The date and time the target was created. Format defined by RFC3339.

timeUpdated String

The date and time the target was updated. Format defined by RFC3339.

GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetail

ConditionGroups List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConditionGroup>

Condition group corresponding to each compartment

Configurations List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfiguration>

ResponderRule configurations

IsConfigurationAllowed bool

configuration allowed or not

IsEnabled bool

Identifies state for ResponderRule

Labels List<string>

user defined labels for a detector rule

RiskLevel string

The Risk Level

ConditionGroups []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConditionGroup

Condition group corresponding to each compartment

Configurations []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfiguration

ResponderRule configurations

IsConfigurationAllowed bool

configuration allowed or not

IsEnabled bool

Identifies state for ResponderRule

Labels []string

user defined labels for a detector rule

RiskLevel string

The Risk Level

conditionGroups List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConditionGroup>

Condition group corresponding to each compartment

configurations List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfiguration>

ResponderRule configurations

isConfigurationAllowed Boolean

configuration allowed or not

isEnabled Boolean

Identifies state for ResponderRule

labels List<String>

user defined labels for a detector rule

riskLevel String

The Risk Level

conditionGroups GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConditionGroup[]

Condition group corresponding to each compartment

configurations GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfiguration[]

ResponderRule configurations

isConfigurationAllowed boolean

configuration allowed or not

isEnabled boolean

Identifies state for ResponderRule

labels string[]

user defined labels for a detector rule

riskLevel string

The Risk Level

condition_groups GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConditionGroup]

Condition group corresponding to each compartment

configurations GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfiguration]

ResponderRule configurations

is_configuration_allowed bool

configuration allowed or not

is_enabled bool

Identifies state for ResponderRule

labels Sequence[str]

user defined labels for a detector rule

risk_level str

The Risk Level

conditionGroups List<Property Map>

Condition group corresponding to each compartment

configurations List<Property Map>

ResponderRule configurations

isConfigurationAllowed Boolean

configuration allowed or not

isEnabled Boolean

Identifies state for ResponderRule

labels List<String>

user defined labels for a detector rule

riskLevel String

The Risk Level

GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConditionGroup

CompartmentId string

The ID of the compartment in which to list resources.

Condition string

Base condition object

CompartmentId string

The ID of the compartment in which to list resources.

Condition string

Base condition object

compartmentId String

The ID of the compartment in which to list resources.

condition String

Base condition object

compartmentId string

The ID of the compartment in which to list resources.

condition string

Base condition object

compartment_id str

The ID of the compartment in which to list resources.

condition str

Base condition object

compartmentId String

The ID of the compartment in which to list resources.

condition String

Base condition object

GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfiguration

ConfigKey string

Unique name of the configuration

DataType string

configuration data type

Name string

configuration name

Value string

configuration value

Values List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfigurationValue>

List of configuration values

ConfigKey string

Unique name of the configuration

DataType string

configuration data type

Name string

configuration name

Value string

configuration value

Values []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfigurationValue

List of configuration values

configKey String

Unique name of the configuration

dataType String

configuration data type

name String

configuration name

value String

configuration value

values List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfigurationValue>

List of configuration values

configKey string

Unique name of the configuration

dataType string

configuration data type

name string

configuration name

value string

configuration value

values GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfigurationValue[]

List of configuration values

config_key str

Unique name of the configuration

data_type str

configuration data type

name str

configuration name

value str

configuration value

values GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfigurationValue]

List of configuration values

configKey String

Unique name of the configuration

dataType String

configuration data type

name String

configuration name

value String

configuration value

values List<Property Map>

List of configuration values

GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfigurationValue

ListType string

configuration list item type, either CUSTOM or MANAGED

ManagedListType string

type of the managed list

Value string

configuration value

ListType string

configuration list item type, either CUSTOM or MANAGED

ManagedListType string

type of the managed list

Value string

configuration value

listType String

configuration list item type, either CUSTOM or MANAGED

managedListType String

type of the managed list

value String

configuration value

listType string

configuration list item type, either CUSTOM or MANAGED

managedListType string

type of the managed list

value string

configuration value

list_type str

configuration list item type, either CUSTOM or MANAGED

managed_list_type str

type of the managed list

value str

configuration value

listType String

configuration list item type, either CUSTOM or MANAGED

managedListType String

type of the managed list

value String

configuration value

GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleEntitiesMapping

DisplayName string

A filter to return only resources that match the entire display name given.

EntityType string

Possible type of entity

QueryField string

The entity value mapped to a data source query

DisplayName string

A filter to return only resources that match the entire display name given.

EntityType string

Possible type of entity

QueryField string

The entity value mapped to a data source query

displayName String

A filter to return only resources that match the entire display name given.

entityType String

Possible type of entity

queryField String

The entity value mapped to a data source query

displayName string

A filter to return only resources that match the entire display name given.

entityType string

Possible type of entity

queryField string

The entity value mapped to a data source query

display_name str

A filter to return only resources that match the entire display name given.

entity_type str

Possible type of entity

query_field str

The entity value mapped to a data source query

displayName String

A filter to return only resources that match the entire display name given.

entityType String

Possible type of entity

queryField String

The entity value mapped to a data source query

GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRule

DataSourceId string

The id of the attached DataSource.

Description string

ResponderRule description.

Details List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetail>

Details of ResponderRule.

Detector string

detector for the rule

DetectorRuleId string

The unique identifier of the detector rule.

DisplayName string

A filter to return only resources that match the entire display name given.

EntitiesMappings List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleEntitiesMapping>

Data Source entities mapping for a Detector Rule

LifecycleDetails string

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

ManagedListTypes List<string>

List of cloudguard managed list types related to this rule

Recommendation string

Recommendation for TargetDetectorRecipeDetectorRule

ResourceType string

resource type of the configuration to which the rule is applied

ServiceType string

service type of the configuration to which the rule is applied

State string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

TimeCreated string

The date and time the target was created. Format defined by RFC3339.

TimeUpdated string

The date and time the target was updated. Format defined by RFC3339.

DataSourceId string

The id of the attached DataSource.

Description string

ResponderRule description.

Details []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetail

Details of ResponderRule.

Detector string

detector for the rule

DetectorRuleId string

The unique identifier of the detector rule.

DisplayName string

A filter to return only resources that match the entire display name given.

EntitiesMappings []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleEntitiesMapping

Data Source entities mapping for a Detector Rule

LifecycleDetails string

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

ManagedListTypes []string

List of cloudguard managed list types related to this rule

Recommendation string

Recommendation for TargetDetectorRecipeDetectorRule

ResourceType string

resource type of the configuration to which the rule is applied

ServiceType string

service type of the configuration to which the rule is applied

State string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

TimeCreated string

The date and time the target was created. Format defined by RFC3339.

TimeUpdated string

The date and time the target was updated. Format defined by RFC3339.

dataSourceId String

The id of the attached DataSource.

description String

ResponderRule description.

details List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetail>

Details of ResponderRule.

detector String

detector for the rule

detectorRuleId String

The unique identifier of the detector rule.

displayName String

A filter to return only resources that match the entire display name given.

entitiesMappings List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleEntitiesMapping>

Data Source entities mapping for a Detector Rule

lifecycleDetails String

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

managedListTypes List<String>

List of cloudguard managed list types related to this rule

recommendation String

Recommendation for TargetDetectorRecipeDetectorRule

resourceType String

resource type of the configuration to which the rule is applied

serviceType String

service type of the configuration to which the rule is applied

state String

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

timeCreated String

The date and time the target was created. Format defined by RFC3339.

timeUpdated String

The date and time the target was updated. Format defined by RFC3339.

dataSourceId string

The id of the attached DataSource.

description string

ResponderRule description.

details GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetail[]

Details of ResponderRule.

detector string

detector for the rule

detectorRuleId string

The unique identifier of the detector rule.

displayName string

A filter to return only resources that match the entire display name given.

entitiesMappings GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleEntitiesMapping[]

Data Source entities mapping for a Detector Rule

lifecycleDetails string

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

managedListTypes string[]

List of cloudguard managed list types related to this rule

recommendation string

Recommendation for TargetDetectorRecipeDetectorRule

resourceType string

resource type of the configuration to which the rule is applied

serviceType string

service type of the configuration to which the rule is applied

state string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

timeCreated string

The date and time the target was created. Format defined by RFC3339.

timeUpdated string

The date and time the target was updated. Format defined by RFC3339.

data_source_id str

The id of the attached DataSource.

description str

ResponderRule description.

details GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetail]

Details of ResponderRule.

detector str

detector for the rule

detector_rule_id str

The unique identifier of the detector rule.

display_name str

A filter to return only resources that match the entire display name given.

entities_mappings GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleEntitiesMapping]

Data Source entities mapping for a Detector Rule

lifecycle_details str

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

managed_list_types Sequence[str]

List of cloudguard managed list types related to this rule

recommendation str

Recommendation for TargetDetectorRecipeDetectorRule

resource_type str

resource type of the configuration to which the rule is applied

service_type str

service type of the configuration to which the rule is applied

state str

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

time_created str

The date and time the target was created. Format defined by RFC3339.

time_updated str

The date and time the target was updated. Format defined by RFC3339.

dataSourceId String

The id of the attached DataSource.

description String

ResponderRule description.

details List<Property Map>

Details of ResponderRule.

detector String

detector for the rule

detectorRuleId String

The unique identifier of the detector rule.

displayName String

A filter to return only resources that match the entire display name given.

entitiesMappings List<Property Map>

Data Source entities mapping for a Detector Rule

lifecycleDetails String

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

managedListTypes List<String>

List of cloudguard managed list types related to this rule

recommendation String

Recommendation for TargetDetectorRecipeDetectorRule

resourceType String

resource type of the configuration to which the rule is applied

serviceType String

service type of the configuration to which the rule is applied

state String

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

timeCreated String

The date and time the target was created. Format defined by RFC3339.

timeUpdated String

The date and time the target was updated. Format defined by RFC3339.

GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetail

ConditionGroups List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroup>

Condition group corresponding to each compartment

Configurations List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfiguration>

ResponderRule configurations

IsConfigurationAllowed bool

configuration allowed or not

IsEnabled bool

Identifies state for ResponderRule

Labels List<string>

user defined labels for a detector rule

RiskLevel string

The Risk Level

ConditionGroups []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroup

Condition group corresponding to each compartment

Configurations []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfiguration

ResponderRule configurations

IsConfigurationAllowed bool

configuration allowed or not

IsEnabled bool

Identifies state for ResponderRule

Labels []string

user defined labels for a detector rule

RiskLevel string

The Risk Level

conditionGroups List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroup>

Condition group corresponding to each compartment

configurations List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfiguration>

ResponderRule configurations

isConfigurationAllowed Boolean

configuration allowed or not

isEnabled Boolean

Identifies state for ResponderRule

labels List<String>

user defined labels for a detector rule

riskLevel String

The Risk Level

conditionGroups GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroup[]

Condition group corresponding to each compartment

configurations GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfiguration[]

ResponderRule configurations

isConfigurationAllowed boolean

configuration allowed or not

isEnabled boolean

Identifies state for ResponderRule

labels string[]

user defined labels for a detector rule

riskLevel string

The Risk Level

condition_groups GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroup]

Condition group corresponding to each compartment

configurations GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfiguration]

ResponderRule configurations

is_configuration_allowed bool

configuration allowed or not

is_enabled bool

Identifies state for ResponderRule

labels Sequence[str]

user defined labels for a detector rule

risk_level str

The Risk Level

conditionGroups List<Property Map>

Condition group corresponding to each compartment

configurations List<Property Map>

ResponderRule configurations

isConfigurationAllowed Boolean

configuration allowed or not

isEnabled Boolean

Identifies state for ResponderRule

labels List<String>

user defined labels for a detector rule

riskLevel String

The Risk Level

GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroup

CompartmentId string

The ID of the compartment in which to list resources.

Condition string

Base condition object

CompartmentId string

The ID of the compartment in which to list resources.

Condition string

Base condition object

compartmentId String

The ID of the compartment in which to list resources.

condition String

Base condition object

compartmentId string

The ID of the compartment in which to list resources.

condition string

Base condition object

compartment_id str

The ID of the compartment in which to list resources.

condition str

Base condition object

compartmentId String

The ID of the compartment in which to list resources.

condition String

Base condition object

GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfiguration

ConfigKey string

Unique name of the configuration

DataType string

configuration data type

Name string

configuration name

Value string

configuration value

Values List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValue>

List of configuration values

ConfigKey string

Unique name of the configuration

DataType string

configuration data type

Name string

configuration name

Value string

configuration value

Values []GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValue

List of configuration values

configKey String

Unique name of the configuration

dataType String

configuration data type

name String

configuration name

value String

configuration value

values List<GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValue>

List of configuration values

configKey string

Unique name of the configuration

dataType string

configuration data type

name string

configuration name

value string

configuration value

values GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValue[]

List of configuration values

config_key str

Unique name of the configuration

data_type str

configuration data type

name str

configuration name

value str

configuration value

values GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValue]

List of configuration values

configKey String

Unique name of the configuration

dataType String

configuration data type

name String

configuration name

value String

configuration value

values List<Property Map>

List of configuration values

GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValue

ListType string

configuration list item type, either CUSTOM or MANAGED

ManagedListType string

type of the managed list

Value string

configuration value

ListType string

configuration list item type, either CUSTOM or MANAGED

ManagedListType string

type of the managed list

Value string

configuration value

listType String

configuration list item type, either CUSTOM or MANAGED

managedListType String

type of the managed list

value String

configuration value

listType string

configuration list item type, either CUSTOM or MANAGED

managedListType string

type of the managed list

value string

configuration value

list_type str

configuration list item type, either CUSTOM or MANAGED

managed_list_type str

type of the managed list

value str

configuration value

listType String

configuration list item type, either CUSTOM or MANAGED

managedListType String

type of the managed list

value String

configuration value

GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleEntitiesMapping

DisplayName string

A filter to return only resources that match the entire display name given.

EntityType string

Possible type of entity

QueryField string

The entity value mapped to a data source query

DisplayName string

A filter to return only resources that match the entire display name given.

EntityType string

Possible type of entity

QueryField string

The entity value mapped to a data source query

displayName String

A filter to return only resources that match the entire display name given.

entityType String

Possible type of entity

queryField String

The entity value mapped to a data source query

displayName string

A filter to return only resources that match the entire display name given.

entityType string

Possible type of entity

queryField string

The entity value mapped to a data source query

display_name str

A filter to return only resources that match the entire display name given.

entity_type str

Possible type of entity

query_field str

The entity value mapped to a data source query

displayName String

A filter to return only resources that match the entire display name given.

entityType String

Possible type of entity

queryField String

The entity value mapped to a data source query

GetGuardTargetsTargetCollectionItemTargetResponderRecipe

CompartmentId string

The ID of the compartment in which to list resources.

Description string

ResponderRule description.

DisplayName string

A filter to return only resources that match the entire display name given.

EffectiveResponderRules List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRule>

List of responder rules associated with the recipe after applying all defaults

Id string

Unique identifier of TargetResponderRecipe that can't be changed after creation.

Owner string

Owner of ResponderRecipe

ResponderRecipeId string

Unique identifier for Responder Recipe of which this is an extension.

ResponderRules List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRule>

List of responder rules associated with the recipe - user input

TimeCreated string

The date and time the target was created. Format defined by RFC3339.

TimeUpdated string

The date and time the target was updated. Format defined by RFC3339.

CompartmentId string

The ID of the compartment in which to list resources.

Description string

ResponderRule description.

DisplayName string

A filter to return only resources that match the entire display name given.

EffectiveResponderRules []GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRule

List of responder rules associated with the recipe after applying all defaults

Id string

Unique identifier of TargetResponderRecipe that can't be changed after creation.

Owner string

Owner of ResponderRecipe

ResponderRecipeId string

Unique identifier for Responder Recipe of which this is an extension.

ResponderRules []GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRule

List of responder rules associated with the recipe - user input

TimeCreated string

The date and time the target was created. Format defined by RFC3339.

TimeUpdated string

The date and time the target was updated. Format defined by RFC3339.

compartmentId String

The ID of the compartment in which to list resources.

description String

ResponderRule description.

displayName String

A filter to return only resources that match the entire display name given.

effectiveResponderRules List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRule>

List of responder rules associated with the recipe after applying all defaults

id String

Unique identifier of TargetResponderRecipe that can't be changed after creation.

owner String

Owner of ResponderRecipe

responderRecipeId String

Unique identifier for Responder Recipe of which this is an extension.

responderRules List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRule>

List of responder rules associated with the recipe - user input

timeCreated String

The date and time the target was created. Format defined by RFC3339.

timeUpdated String

The date and time the target was updated. Format defined by RFC3339.

compartmentId string

The ID of the compartment in which to list resources.

description string

ResponderRule description.

displayName string

A filter to return only resources that match the entire display name given.

effectiveResponderRules GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRule[]

List of responder rules associated with the recipe after applying all defaults

id string

Unique identifier of TargetResponderRecipe that can't be changed after creation.

owner string

Owner of ResponderRecipe

responderRecipeId string

Unique identifier for Responder Recipe of which this is an extension.

responderRules GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRule[]

List of responder rules associated with the recipe - user input

timeCreated string

The date and time the target was created. Format defined by RFC3339.

timeUpdated string

The date and time the target was updated. Format defined by RFC3339.

compartment_id str

The ID of the compartment in which to list resources.

description str

ResponderRule description.

display_name str

A filter to return only resources that match the entire display name given.

effective_responder_rules GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRule]

List of responder rules associated with the recipe after applying all defaults

id str

Unique identifier of TargetResponderRecipe that can't be changed after creation.

owner str

Owner of ResponderRecipe

responder_recipe_id str

Unique identifier for Responder Recipe of which this is an extension.

responder_rules GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRule]

List of responder rules associated with the recipe - user input

time_created str

The date and time the target was created. Format defined by RFC3339.

time_updated str

The date and time the target was updated. Format defined by RFC3339.

compartmentId String

The ID of the compartment in which to list resources.

description String

ResponderRule description.

displayName String

A filter to return only resources that match the entire display name given.

effectiveResponderRules List<Property Map>

List of responder rules associated with the recipe after applying all defaults

id String

Unique identifier of TargetResponderRecipe that can't be changed after creation.

owner String

Owner of ResponderRecipe

responderRecipeId String

Unique identifier for Responder Recipe of which this is an extension.

responderRules List<Property Map>

List of responder rules associated with the recipe - user input

timeCreated String

The date and time the target was created. Format defined by RFC3339.

timeUpdated String

The date and time the target was updated. Format defined by RFC3339.

GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRule

CompartmentId string

The ID of the compartment in which to list resources.

Description string

ResponderRule description.

Details List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetail>

Details of ResponderRule.

DisplayName string

A filter to return only resources that match the entire display name given.

LifecycleDetails string

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

Policies List<string>

List of Policy

ResponderRuleId string

Unique ResponderRule identifier.

State string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

SupportedModes List<string>

Supported Execution Modes

TimeCreated string

The date and time the target was created. Format defined by RFC3339.

TimeUpdated string

The date and time the target was updated. Format defined by RFC3339.

Type string

Type of Responder

CompartmentId string

The ID of the compartment in which to list resources.

Description string

ResponderRule description.

Details []GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetail

Details of ResponderRule.

DisplayName string

A filter to return only resources that match the entire display name given.

LifecycleDetails string

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

Policies []string

List of Policy

ResponderRuleId string

Unique ResponderRule identifier.

State string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

SupportedModes []string

Supported Execution Modes

TimeCreated string

The date and time the target was created. Format defined by RFC3339.

TimeUpdated string

The date and time the target was updated. Format defined by RFC3339.

Type string

Type of Responder

compartmentId String

The ID of the compartment in which to list resources.

description String

ResponderRule description.

details List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetail>

Details of ResponderRule.

displayName String

A filter to return only resources that match the entire display name given.

lifecycleDetails String

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

policies List<String>

List of Policy

responderRuleId String

Unique ResponderRule identifier.

state String

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

supportedModes List<String>

Supported Execution Modes

timeCreated String

The date and time the target was created. Format defined by RFC3339.

timeUpdated String

The date and time the target was updated. Format defined by RFC3339.

type String

Type of Responder

compartmentId string

The ID of the compartment in which to list resources.

description string

ResponderRule description.

details GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetail[]

Details of ResponderRule.

displayName string

A filter to return only resources that match the entire display name given.

lifecycleDetails string

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

policies string[]

List of Policy

responderRuleId string

Unique ResponderRule identifier.

state string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

supportedModes string[]

Supported Execution Modes

timeCreated string

The date and time the target was created. Format defined by RFC3339.

timeUpdated string

The date and time the target was updated. Format defined by RFC3339.

type string

Type of Responder

compartment_id str

The ID of the compartment in which to list resources.

description str

ResponderRule description.

details GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetail]

Details of ResponderRule.

display_name str

A filter to return only resources that match the entire display name given.

lifecycle_details str

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

policies Sequence[str]

List of Policy

responder_rule_id str

Unique ResponderRule identifier.

state str

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

supported_modes Sequence[str]

Supported Execution Modes

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 updated. Format defined by RFC3339.

type str

Type of Responder

compartmentId String

The ID of the compartment in which to list resources.

description String

ResponderRule description.

details List<Property Map>

Details of ResponderRule.

displayName String

A filter to return only resources that match the entire display name given.

lifecycleDetails String

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

policies List<String>

List of Policy

responderRuleId String

Unique ResponderRule identifier.

state String

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

supportedModes List<String>

Supported Execution Modes

timeCreated String

The date and time the target was created. Format defined by RFC3339.

timeUpdated String

The date and time the target was updated. Format defined by RFC3339.

type String

Type of Responder

GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetail

Condition string

Base condition object

Configurations List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetailConfiguration>

ResponderRule configurations

IsEnabled bool

Identifies state for ResponderRule

Mode string

Execution Mode for ResponderRule

Condition string

Base condition object

Configurations []GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetailConfiguration

ResponderRule configurations

IsEnabled bool

Identifies state for ResponderRule

Mode string

Execution Mode for ResponderRule

condition String

Base condition object

configurations List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetailConfiguration>

ResponderRule configurations

isEnabled Boolean

Identifies state for ResponderRule

mode String

Execution Mode for ResponderRule

condition string

Base condition object

configurations GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetailConfiguration[]

ResponderRule configurations

isEnabled boolean

Identifies state for ResponderRule

mode string

Execution Mode for ResponderRule

condition str

Base condition object

configurations GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetailConfiguration]

ResponderRule configurations

is_enabled bool

Identifies state for ResponderRule

mode str

Execution Mode for ResponderRule

condition String

Base condition object

configurations List<Property Map>

ResponderRule configurations

isEnabled Boolean

Identifies state for ResponderRule

mode String

Execution Mode for ResponderRule

GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetailConfiguration

ConfigKey string

Unique name of the configuration

Name string

configuration name

Value string

configuration value

ConfigKey string

Unique name of the configuration

Name string

configuration name

Value string

configuration value

configKey String

Unique name of the configuration

name String

configuration name

value String

configuration value

configKey string

Unique name of the configuration

name string

configuration name

value string

configuration value

config_key str

Unique name of the configuration

name str

configuration name

value str

configuration value

configKey String

Unique name of the configuration

name String

configuration name

value String

configuration value

GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRule

CompartmentId string

The ID of the compartment in which to list resources.

Description string

ResponderRule description.

Details List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetail>

Details of ResponderRule.

DisplayName string

A filter to return only resources that match the entire display name given.

LifecycleDetails string

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

Policies List<string>

List of Policy

ResponderRuleId string

Unique ResponderRule identifier.

State string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

SupportedModes List<string>

Supported Execution Modes

TimeCreated string

The date and time the target was created. Format defined by RFC3339.

TimeUpdated string

The date and time the target was updated. Format defined by RFC3339.

Type string

Type of Responder

CompartmentId string

The ID of the compartment in which to list resources.

Description string

ResponderRule description.

Details []GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetail

Details of ResponderRule.

DisplayName string

A filter to return only resources that match the entire display name given.

LifecycleDetails string

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

Policies []string

List of Policy

ResponderRuleId string

Unique ResponderRule identifier.

State string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

SupportedModes []string

Supported Execution Modes

TimeCreated string

The date and time the target was created. Format defined by RFC3339.

TimeUpdated string

The date and time the target was updated. Format defined by RFC3339.

Type string

Type of Responder

compartmentId String

The ID of the compartment in which to list resources.

description String

ResponderRule description.

details List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetail>

Details of ResponderRule.

displayName String

A filter to return only resources that match the entire display name given.

lifecycleDetails String

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

policies List<String>

List of Policy

responderRuleId String

Unique ResponderRule identifier.

state String

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

supportedModes List<String>

Supported Execution Modes

timeCreated String

The date and time the target was created. Format defined by RFC3339.

timeUpdated String

The date and time the target was updated. Format defined by RFC3339.

type String

Type of Responder

compartmentId string

The ID of the compartment in which to list resources.

description string

ResponderRule description.

details GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetail[]

Details of ResponderRule.

displayName string

A filter to return only resources that match the entire display name given.

lifecycleDetails string

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

policies string[]

List of Policy

responderRuleId string

Unique ResponderRule identifier.

state string

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

supportedModes string[]

Supported Execution Modes

timeCreated string

The date and time the target was created. Format defined by RFC3339.

timeUpdated string

The date and time the target was updated. Format defined by RFC3339.

type string

Type of Responder

compartment_id str

The ID of the compartment in which to list resources.

description str

ResponderRule description.

details GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetail]

Details of ResponderRule.

display_name str

A filter to return only resources that match the entire display name given.

lifecycle_details str

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

policies Sequence[str]

List of Policy

responder_rule_id str

Unique ResponderRule identifier.

state str

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

supported_modes Sequence[str]

Supported Execution Modes

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 updated. Format defined by RFC3339.

type str

Type of Responder

compartmentId String

The ID of the compartment in which to list resources.

description String

ResponderRule description.

details List<Property Map>

Details of ResponderRule.

displayName String

A filter to return only resources that match the entire display name given.

lifecycleDetails String

A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.

policies List<String>

List of Policy

responderRuleId String

Unique ResponderRule identifier.

state String

The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.

supportedModes List<String>

Supported Execution Modes

timeCreated String

The date and time the target was created. Format defined by RFC3339.

timeUpdated String

The date and time the target was updated. Format defined by RFC3339.

type String

Type of Responder

GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetail

Condition string

Base condition object

Configurations List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetailConfiguration>

ResponderRule configurations

IsEnabled bool

Identifies state for ResponderRule

Mode string

Execution Mode for ResponderRule

Condition string

Base condition object

Configurations []GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetailConfiguration

ResponderRule configurations

IsEnabled bool

Identifies state for ResponderRule

Mode string

Execution Mode for ResponderRule

condition String

Base condition object

configurations List<GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetailConfiguration>

ResponderRule configurations

isEnabled Boolean

Identifies state for ResponderRule

mode String

Execution Mode for ResponderRule

condition string

Base condition object

configurations GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetailConfiguration[]

ResponderRule configurations

isEnabled boolean

Identifies state for ResponderRule

mode string

Execution Mode for ResponderRule

condition str

Base condition object

configurations GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetailConfiguration]

ResponderRule configurations

is_enabled bool

Identifies state for ResponderRule

mode str

Execution Mode for ResponderRule

condition String

Base condition object

configurations List<Property Map>

ResponderRule configurations

isEnabled Boolean

Identifies state for ResponderRule

mode String

Execution Mode for ResponderRule

GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetailConfiguration

ConfigKey string

Unique name of the configuration

Name string

configuration name

Value string

configuration value

ConfigKey string

Unique name of the configuration

Name string

configuration name

Value string

configuration value

configKey String

Unique name of the configuration

name String

configuration name

value String

configuration value

configKey string

Unique name of the configuration

name string

configuration name

value string

configuration value

config_key str

Unique name of the configuration

name str

configuration name

value str

configuration value

configKey String

Unique name of the configuration

name String

configuration name

value String

configuration value

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes

This Pulumi package is based on the oci Terraform Provider.