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 targets (TargetCollection resource with page of TargetSummary resources) for the target identified by compartmentId. By default, only the target associated with the compartment is returned. Setting compartmentIdInSubtree to true returns the entire hierarchy of targets in subcompartments.
The parameter accessLevel
specifies whether to return only those compartments for which the
requestor has INSPECT permissions on at least one resource directly
or indirectly (ACCESSIBLE) (the resource can be in a subcompartment) or to return Not Authorized if
Principal doesn’t have access to even one of the child compartments. This is valid only when
compartmentIdInSubtree
is set to true
.
The parameter compartmentIdInSubtree
applies when you perform ListTargets on the
compartmentId
passed and when it is set to true, the entire hierarchy of compartments can be returned.
To get a full list of all targets in compartments and subcompartments in the tenancy (root compartment),
set the parameter compartmentIdInSubtree
to true and accessLevel
to ACCESSIBLE.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testTargets = oci.CloudGuard.getGuardTargets({
compartmentId: compartmentId,
accessLevel: targetAccessLevel,
compartmentIdInSubtree: targetCompartmentIdInSubtree,
displayName: targetDisplayName,
isNonSecurityZoneTargetsOnlyQuery: targetIsNonSecurityZoneTargetsOnlyQuery,
state: targetState,
});
import pulumi
import pulumi_oci as oci
test_targets = oci.CloudGuard.get_guard_targets(compartment_id=compartment_id,
access_level=target_access_level,
compartment_id_in_subtree=target_compartment_id_in_subtree,
display_name=target_display_name,
is_non_security_zone_targets_only_query=target_is_non_security_zone_targets_only_query,
state=target_state)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/cloudguard"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := cloudguard.GetGuardTargets(ctx, &cloudguard.GetGuardTargetsArgs{
CompartmentId: compartmentId,
AccessLevel: pulumi.StringRef(targetAccessLevel),
CompartmentIdInSubtree: pulumi.BoolRef(targetCompartmentIdInSubtree),
DisplayName: pulumi.StringRef(targetDisplayName),
IsNonSecurityZoneTargetsOnlyQuery: pulumi.BoolRef(targetIsNonSecurityZoneTargetsOnlyQuery),
State: pulumi.StringRef(targetState),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testTargets = Oci.CloudGuard.GetGuardTargets.Invoke(new()
{
CompartmentId = compartmentId,
AccessLevel = targetAccessLevel,
CompartmentIdInSubtree = targetCompartmentIdInSubtree,
DisplayName = targetDisplayName,
IsNonSecurityZoneTargetsOnlyQuery = targetIsNonSecurityZoneTargetsOnlyQuery,
State = targetState,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.CloudGuard.CloudGuardFunctions;
import com.pulumi.oci.CloudGuard.inputs.GetGuardTargetsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var testTargets = CloudGuardFunctions.getGuardTargets(GetGuardTargetsArgs.builder()
.compartmentId(compartmentId)
.accessLevel(targetAccessLevel)
.compartmentIdInSubtree(targetCompartmentIdInSubtree)
.displayName(targetDisplayName)
.isNonSecurityZoneTargetsOnlyQuery(targetIsNonSecurityZoneTargetsOnlyQuery)
.state(targetState)
.build());
}
}
variables:
testTargets:
fn::invoke:
function: oci:CloudGuard:getGuardTargets
arguments:
compartmentId: ${compartmentId}
accessLevel: ${targetAccessLevel}
compartmentIdInSubtree: ${targetCompartmentIdInSubtree}
displayName: ${targetDisplayName}
isNonSecurityZoneTargetsOnlyQuery: ${targetIsNonSecurityZoneTargetsOnlyQuery}
state: ${targetState}
Using getGuardTargets
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getGuardTargets(args: GetGuardTargetsArgs, opts?: InvokeOptions): Promise<GetGuardTargetsResult>
function getGuardTargetsOutput(args: GetGuardTargetsOutputArgs, opts?: InvokeOptions): Output<GetGuardTargetsResult>
def get_guard_targets(access_level: Optional[str] = None,
compartment_id: Optional[str] = None,
compartment_id_in_subtree: Optional[bool] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[_cloudguard.GetGuardTargetsFilter]] = None,
is_non_security_zone_targets_only_query: Optional[bool] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetGuardTargetsResult
def get_guard_targets_output(access_level: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_cloudguard.GetGuardTargetsFilterArgs]]]] = None,
is_non_security_zone_targets_only_query: Optional[pulumi.Input[bool]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetGuardTargetsResult]
func GetGuardTargets(ctx *Context, args *GetGuardTargetsArgs, opts ...InvokeOption) (*GetGuardTargetsResult, error)
func GetGuardTargetsOutput(ctx *Context, args *GetGuardTargetsOutputArgs, opts ...InvokeOption) GetGuardTargetsResultOutput
> Note: This function is named GetGuardTargets
in the Go SDK.
public static class GetGuardTargets
{
public static Task<GetGuardTargetsResult> InvokeAsync(GetGuardTargetsArgs args, InvokeOptions? opts = null)
public static Output<GetGuardTargetsResult> Invoke(GetGuardTargetsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetGuardTargetsResult> getGuardTargets(GetGuardTargetsArgs args, InvokeOptions options)
public static Output<GetGuardTargetsResult> getGuardTargets(GetGuardTargetsArgs args, InvokeOptions options)
fn::invoke:
function: oci:CloudGuard/getGuardTargets:getGuardTargets
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
- Access
Level string - Valid values are
RESTRICTED
andACCESSIBLE
. Default isRESTRICTED
. Setting this toACCESSIBLE
returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTED
permissions are checked and no partial results are displayed. - Compartment
Id boolIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of
accessLevel
. - Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
Changes to this property will trigger replacement.
Guard Targets Filter> - Is
Non boolSecurity Zone Targets Only Query - Default is false. When set to true, only the targets that would be deleted as part of security zone creation will be returned.
- State string
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
- Access
Level string - Valid values are
RESTRICTED
andACCESSIBLE
. Default isRESTRICTED
. Setting this toACCESSIBLE
returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTED
permissions are checked and no partial results are displayed. - Compartment
Id boolIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of
accessLevel
. - Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
Changes to this property will trigger replacement.
Guard Targets Filter - Is
Non boolSecurity Zone Targets Only Query - Default is false. When set to true, only the targets that would be deleted as part of security zone creation will be returned.
- State string
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- compartment
Id This property is required. String - The OCID of the compartment in which to list resources.
- access
Level String - Valid values are
RESTRICTED
andACCESSIBLE
. Default isRESTRICTED
. Setting this toACCESSIBLE
returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTED
permissions are checked and no partial results are displayed. - compartment
Id BooleanIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of
accessLevel
. - display
Name String - A filter to return only resources that match the entire display name given.
- filters
Changes to this property will trigger replacement.
Guard Targets Filter> - is
Non BooleanSecurity Zone Targets Only Query - Default is false. When set to true, only the targets that would be deleted as part of security zone creation will be returned.
- state String
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
- access
Level string - Valid values are
RESTRICTED
andACCESSIBLE
. Default isRESTRICTED
. Setting this toACCESSIBLE
returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTED
permissions are checked and no partial results are displayed. - compartment
Id booleanIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of
accessLevel
. - display
Name string - A filter to return only resources that match the entire display name given.
- filters
Changes to this property will trigger replacement.
Guard Targets Filter[] - is
Non booleanSecurity Zone Targets Only Query - Default is false. When set to true, only the targets that would be deleted as part of security zone creation will be returned.
- state string
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- compartment_
id This property is required. str - The OCID of the compartment in which to list resources.
- access_
level str - Valid values are
RESTRICTED
andACCESSIBLE
. Default isRESTRICTED
. Setting this toACCESSIBLE
returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTED
permissions are checked and no partial results are displayed. - compartment_
id_ boolin_ subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of
accessLevel
. - display_
name str - A filter to return only resources that match the entire display name given.
- filters
Changes to this property will trigger replacement.
Get Guard Targets Filter] - is_
non_ boolsecurity_ zone_ targets_ only_ query - Default is false. When set to true, only the targets that would be deleted as part of security zone creation will be returned.
- state str
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- compartment
Id This property is required. String - The OCID of the compartment in which to list resources.
- access
Level String - Valid values are
RESTRICTED
andACCESSIBLE
. Default isRESTRICTED
. Setting this toACCESSIBLE
returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTED
permissions are checked and no partial results are displayed. - compartment
Id BooleanIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of
accessLevel
. - display
Name String - A filter to return only resources that match the entire display name given.
- filters
Changes to this property will trigger replacement.
- is
Non BooleanSecurity Zone Targets Only Query - Default is false. When set to true, only the targets that would be deleted as part of security zone creation will be returned.
- state String
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
getGuardTargets Result
The following output properties are available:
- Compartment
Id string - Compartment OCID
- Id string
- The provider-assigned unique ID for this managed resource.
- Target
Collections List<GetGuard Targets Target Collection> - The list of target_collection.
- Access
Level string - Compartment
Id boolIn Subtree - Display
Name string - Responder rule display name
- Filters
List<Get
Guard Targets Filter> - Is
Non boolSecurity Zone Targets Only Query - State string
- The current lifecycle state of the responder rule
- Compartment
Id string - Compartment OCID
- Id string
- The provider-assigned unique ID for this managed resource.
- Target
Collections []GetGuard Targets Target Collection - The list of target_collection.
- Access
Level string - Compartment
Id boolIn Subtree - Display
Name string - Responder rule display name
- Filters
[]Get
Guard Targets Filter - Is
Non boolSecurity Zone Targets Only Query - State string
- The current lifecycle state of the responder rule
- compartment
Id String - Compartment OCID
- id String
- The provider-assigned unique ID for this managed resource.
- target
Collections List<GetGuard Targets Target Collection> - The list of target_collection.
- access
Level String - compartment
Id BooleanIn Subtree - display
Name String - Responder rule display name
- filters
List<Get
Guard Targets Filter> - is
Non BooleanSecurity Zone Targets Only Query - state String
- The current lifecycle state of the responder rule
- compartment
Id string - Compartment OCID
- id string
- The provider-assigned unique ID for this managed resource.
- target
Collections GetGuard Targets Target Collection[] - The list of target_collection.
- access
Level string - compartment
Id booleanIn Subtree - display
Name string - Responder rule display name
- filters
Get
Guard Targets Filter[] - is
Non booleanSecurity Zone Targets Only Query - state string
- The current lifecycle state of the responder rule
- compartment_
id str - Compartment OCID
- id str
- The provider-assigned unique ID for this managed resource.
- target_
collections Sequence[cloudguard.Get Guard Targets Target Collection] - The list of target_collection.
- access_
level str - compartment_
id_ boolin_ subtree - display_
name str - Responder rule display name
- filters
Sequence[cloudguard.
Get Guard Targets Filter] - is_
non_ boolsecurity_ zone_ targets_ only_ query - state str
- The current lifecycle state of the responder rule
- compartment
Id String - Compartment OCID
- id String
- The provider-assigned unique ID for this managed resource.
- target
Collections List<Property Map> - The list of target_collection.
- access
Level String - compartment
Id BooleanIn Subtree - display
Name String - Responder rule display name
- filters List<Property Map>
- is
Non BooleanSecurity Zone Targets Only Query - state String
- The current lifecycle state of the responder rule
Supporting Types
GetGuardTargetsFilter
GetGuardTargetsTargetCollection
- Items
This property is required. List<GetGuard Targets Target Collection Item>
- Items
This property is required. []GetGuard Targets Target Collection Item
- items
This property is required. List<GetGuard Targets Target Collection Item>
- items
This property is required. GetGuard Targets Target Collection Item[]
- items
This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item]
- items
This property is required. List<Property Map>
GetGuardTargetsTargetCollectionItem
- Compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
This property is required. Dictionary<string, string>- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description
This property is required. string - Responder rule description
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given.
This property is required. Dictionary<string, string>- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id
This property is required. string - Unique identifier of target responder recipe that can't be changed after creation
- Inherited
By Compartments This property is required. List<string> - List of inherited compartments
- Lifecyle
Details This property is required. string - A message describing the current lifecycle state in more detail. For example, can be used to provide actionable information for a resource in Failed state. [DEPRECATE]
- Recipe
Count This property is required. int - Total number of recipes attached to target
- State
This property is required. string - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
This property is required. Dictionary<string, string>- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Target
Details This property is required. List<GetGuard Targets Target Collection Item Target Detail> - Details specific to the target type.
- Target
Detector Recipes This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe> - List of detector recipes attached to target
- Target
Resource Id This property is required. string - Resource ID which the target uses to monitor
- Target
Resource Type This property is required. string - Type of target
- Target
Responder Recipes This property is required. List<GetGuard Targets Target Collection Item Target Responder Recipe> - List of responder recipes attached to target
- Time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- Compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
This property is required. map[string]string- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description
This property is required. string - Responder rule description
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given.
This property is required. map[string]string- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id
This property is required. string - Unique identifier of target responder recipe that can't be changed after creation
- Inherited
By Compartments This property is required. []string - List of inherited compartments
- Lifecyle
Details This property is required. string - A message describing the current lifecycle state in more detail. For example, can be used to provide actionable information for a resource in Failed state. [DEPRECATE]
- Recipe
Count This property is required. int - Total number of recipes attached to target
- State
This property is required. string - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
This property is required. map[string]string- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Target
Details This property is required. []GetGuard Targets Target Collection Item Target Detail - Details specific to the target type.
- Target
Detector Recipes This property is required. []GetGuard Targets Target Collection Item Target Detector Recipe - List of detector recipes attached to target
- Target
Resource Id This property is required. string - Resource ID which the target uses to monitor
- Target
Resource Type This property is required. string - Type of target
- Target
Responder Recipes This property is required. []GetGuard Targets Target Collection Item Target Responder Recipe - List of responder recipes attached to target
- Time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id This property is required. String - The OCID of the compartment in which to list resources.
This property is required. Map<String,String>- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description
This property is required. String - Responder rule description
- display
Name This property is required. String - A filter to return only resources that match the entire display name given.
This property is required. Map<String,String>- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id
This property is required. String - Unique identifier of target responder recipe that can't be changed after creation
- inherited
By Compartments This property is required. List<String> - List of inherited compartments
- lifecyle
Details This property is required. String - A message describing the current lifecycle state in more detail. For example, can be used to provide actionable information for a resource in Failed state. [DEPRECATE]
- recipe
Count This property is required. Integer - Total number of recipes attached to target
- state
This property is required. String - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
This property is required. Map<String,String>- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Details This property is required. List<GetGuard Targets Target Collection Item Target Detail> - Details specific to the target type.
- target
Detector Recipes This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe> - List of detector recipes attached to target
- target
Resource Id This property is required. String - Resource ID which the target uses to monitor
- target
Resource Type This property is required. String - Type of target
- target
Responder Recipes This property is required. List<GetGuard Targets Target Collection Item Target Responder Recipe> - List of responder recipes attached to target
- time
Created This property is required. String - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. String - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
This property is required. {[key: string]: string}- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description
This property is required. string - Responder rule description
- display
Name This property is required. string - A filter to return only resources that match the entire display name given.
This property is required. {[key: string]: string}- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id
This property is required. string - Unique identifier of target responder recipe that can't be changed after creation
- inherited
By Compartments This property is required. string[] - List of inherited compartments
- lifecyle
Details This property is required. string - A message describing the current lifecycle state in more detail. For example, can be used to provide actionable information for a resource in Failed state. [DEPRECATE]
- recipe
Count This property is required. number - Total number of recipes attached to target
- state
This property is required. string - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
This property is required. {[key: string]: string}- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Details This property is required. GetGuard Targets Target Collection Item Target Detail[] - Details specific to the target type.
- target
Detector Recipes This property is required. GetGuard Targets Target Collection Item Target Detector Recipe[] - List of detector recipes attached to target
- target
Resource Id This property is required. string - Resource ID which the target uses to monitor
- target
Resource Type This property is required. string - Type of target
- target
Responder Recipes This property is required. GetGuard Targets Target Collection Item Target Responder Recipe[] - List of responder recipes attached to target
- time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- compartment_
id This property is required. str - The OCID of the compartment in which to list resources.
This property is required. Mapping[str, str]- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description
This property is required. str - Responder rule description
- display_
name This property is required. str - A filter to return only resources that match the entire display name given.
This property is required. Mapping[str, str]- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id
This property is required. str - Unique identifier of target responder recipe that can't be changed after creation
- inherited_
by_ compartments This property is required. Sequence[str] - List of inherited compartments
- lifecyle_
details This property is required. str - A message describing the current lifecycle state in more detail. For example, can be used to provide actionable information for a resource in Failed state. [DEPRECATE]
- recipe_
count This property is required. int - Total number of recipes attached to target
- state
This property is required. str - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
This property is required. Mapping[str, str]- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target_
details This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Detail] - Details specific to the target type.
- target_
detector_ recipes This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Detector Recipe] - List of detector recipes attached to target
- target_
resource_ id This property is required. str - Resource ID which the target uses to monitor
- target_
resource_ type This property is required. str - Type of target
- target_
responder_ recipes This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Responder Recipe] - List of responder recipes attached to target
- time_
created This property is required. str - The date and time the target was created. Format defined by RFC3339.
- time_
updated This property is required. str - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id This property is required. String - The OCID of the compartment in which to list resources.
This property is required. Map<String>- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description
This property is required. String - Responder rule description
- display
Name This property is required. String - A filter to return only resources that match the entire display name given.
This property is required. Map<String>- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id
This property is required. String - Unique identifier of target responder recipe that can't be changed after creation
- inherited
By Compartments This property is required. List<String> - List of inherited compartments
- lifecyle
Details This property is required. String - A message describing the current lifecycle state in more detail. For example, can be used to provide actionable information for a resource in Failed state. [DEPRECATE]
- recipe
Count This property is required. Number - Total number of recipes attached to target
- state
This property is required. String - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
This property is required. Map<String>- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Details This property is required. List<Property Map> - Details specific to the target type.
- target
Detector Recipes This property is required. List<Property Map> - List of detector recipes attached to target
- target
Resource Id This property is required. String - Resource ID which the target uses to monitor
- target
Resource Type This property is required. String - Type of target
- target
Responder Recipes This property is required. List<Property Map> - List of responder recipes attached to target
- time
Created This property is required. String - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. String - The date and time the target was last updated. Format defined by RFC3339.
GetGuardTargetsTargetCollectionItemTargetDetail
- Security
Zone Display Name This property is required. string - The name of the security zone to associate with this compartment.
- Security
Zone Id This property is required. string - The OCID of the security zone to associate with this compartment
- Target
Resource Type This property is required. string - Type of target
- Target
Security Zone Recipes This property is required. List<GetGuard Targets Target Collection Item Target Detail Target Security Zone Recipe> - The list of security zone recipes to associate with this compartment
- Security
Zone Display Name This property is required. string - The name of the security zone to associate with this compartment.
- Security
Zone Id This property is required. string - The OCID of the security zone to associate with this compartment
- Target
Resource Type This property is required. string - Type of target
- Target
Security Zone Recipes This property is required. []GetGuard Targets Target Collection Item Target Detail Target Security Zone Recipe - The list of security zone recipes to associate with this compartment
- security
Zone Display Name This property is required. String - The name of the security zone to associate with this compartment.
- security
Zone Id This property is required. String - The OCID of the security zone to associate with this compartment
- target
Resource Type This property is required. String - Type of target
- target
Security Zone Recipes This property is required. List<GetGuard Targets Target Collection Item Target Detail Target Security Zone Recipe> - The list of security zone recipes to associate with this compartment
- security
Zone Display Name This property is required. string - The name of the security zone to associate with this compartment.
- security
Zone Id This property is required. string - The OCID of the security zone to associate with this compartment
- target
Resource Type This property is required. string - Type of target
- target
Security Zone Recipes This property is required. GetGuard Targets Target Collection Item Target Detail Target Security Zone Recipe[] - The list of security zone recipes to associate with this compartment
- security_
zone_ display_ name This property is required. str - The name of the security zone to associate with this compartment.
- security_
zone_ id This property is required. str - The OCID of the security zone to associate with this compartment
- target_
resource_ type This property is required. str - Type of target
- target_
security_ zone_ recipes This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Detail Target Security Zone Recipe] - The list of security zone recipes to associate with this compartment
- security
Zone Display Name This property is required. String - The name of the security zone to associate with this compartment.
- security
Zone Id This property is required. String - The OCID of the security zone to associate with this compartment
- target
Resource Type This property is required. String - Type of target
- target
Security Zone Recipes This property is required. List<Property Map> - The list of security zone recipes to associate with this compartment
GetGuardTargetsTargetCollectionItemTargetDetailTargetSecurityZoneRecipe
- Compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
This property is required. Dictionary<string, string>- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description
This property is required. string - Responder rule description
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given.
This property is required. Dictionary<string, string>- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id
This property is required. string - Unique identifier of target responder recipe that can't be changed after creation
- Lifecycle
Details This property is required. 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
This property is required. string - Owner of target responder recipe
- Security
Policies This property is required. List<string> - The list of security policy IDs that are included in the recipe
- State
This property is required. string - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
This property is required. Dictionary<string, string>- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- Compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
This property is required. map[string]string- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description
This property is required. string - Responder rule description
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given.
This property is required. map[string]string- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id
This property is required. string - Unique identifier of target responder recipe that can't be changed after creation
- Lifecycle
Details This property is required. 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
This property is required. string - Owner of target responder recipe
- Security
Policies This property is required. []string - The list of security policy IDs that are included in the recipe
- State
This property is required. string - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
This property is required. map[string]string- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id This property is required. String - The OCID of the compartment in which to list resources.
This property is required. Map<String,String>- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description
This property is required. String - Responder rule description
- display
Name This property is required. String - A filter to return only resources that match the entire display name given.
This property is required. Map<String,String>- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id
This property is required. String - Unique identifier of target responder recipe that can't be changed after creation
- lifecycle
Details This property is required. 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
This property is required. String - Owner of target responder recipe
- security
Policies This property is required. List<String> - The list of security policy IDs that are included in the recipe
- state
This property is required. String - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
This property is required. Map<String,String>- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created This property is required. String - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. String - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
This property is required. {[key: string]: string}- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description
This property is required. string - Responder rule description
- display
Name This property is required. string - A filter to return only resources that match the entire display name given.
This property is required. {[key: string]: string}- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id
This property is required. string - Unique identifier of target responder recipe that can't be changed after creation
- lifecycle
Details This property is required. 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
This property is required. string - Owner of target responder recipe
- security
Policies This property is required. string[] - The list of security policy IDs that are included in the recipe
- state
This property is required. string - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
This property is required. {[key: string]: string}- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- compartment_
id This property is required. str - The OCID of the compartment in which to list resources.
This property is required. Mapping[str, str]- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description
This property is required. str - Responder rule description
- display_
name This property is required. str - A filter to return only resources that match the entire display name given.
This property is required. Mapping[str, str]- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id
This property is required. str - Unique identifier of target responder recipe that can't be changed after creation
- lifecycle_
details This property is required. 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
This property is required. str - Owner of target responder recipe
- security_
policies This property is required. Sequence[str] - The list of security policy IDs that are included in the recipe
- state
This property is required. str - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
This property is required. Mapping[str, str]- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created This property is required. str - The date and time the target was created. Format defined by RFC3339.
- time_
updated This property is required. str - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id This property is required. String - The OCID of the compartment in which to list resources.
This property is required. Map<String>- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description
This property is required. String - Responder rule description
- display
Name This property is required. String - A filter to return only resources that match the entire display name given.
This property is required. Map<String>- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id
This property is required. String - Unique identifier of target responder recipe that can't be changed after creation
- lifecycle
Details This property is required. 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
This property is required. String - Owner of target responder recipe
- security
Policies This property is required. List<String> - The list of security policy IDs that are included in the recipe
- state
This property is required. String - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
This property is required. Map<String>- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created This property is required. String - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. String - The date and time the target was last updated. Format defined by RFC3339.
GetGuardTargetsTargetCollectionItemTargetDetectorRecipe
- Compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
- Description
This property is required. string - Responder rule description
- Detector
This property is required. string - Detector type for the rule
- Detector
Recipe Id This property is required. string - Unique identifier for of original Oracle-managed detector recipe on which the TargetDetectorRecipe is based
- Detector
Recipe Type This property is required. string - Recipe type ( STANDARD, ENTERPRISE )
- Detector
Rules This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule> - List of detector rules for the detector recipe - user input
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- Effective
Detector Rules This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule> - List of currently enabled detector rules for the detector type for recipe after applying defaults
- Id
This property is required. string - Unique identifier of target responder recipe that can't be changed after creation
- Owner
This property is required. string - Owner of target responder recipe
- State
This property is required. string - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- Compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
- Description
This property is required. string - Responder rule description
- Detector
This property is required. string - Detector type for the rule
- Detector
Recipe Id This property is required. string - Unique identifier for of original Oracle-managed detector recipe on which the TargetDetectorRecipe is based
- Detector
Recipe Type This property is required. string - Recipe type ( STANDARD, ENTERPRISE )
- Detector
Rules This property is required. []GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule - List of detector rules for the detector recipe - user input
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- Effective
Detector Rules This property is required. []GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule - List of currently enabled detector rules for the detector type for recipe after applying defaults
- Id
This property is required. string - Unique identifier of target responder recipe that can't be changed after creation
- Owner
This property is required. string - Owner of target responder recipe
- State
This property is required. string - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id This property is required. String - The OCID of the compartment in which to list resources.
- description
This property is required. String - Responder rule description
- detector
This property is required. String - Detector type for the rule
- detector
Recipe Id This property is required. String - Unique identifier for of original Oracle-managed detector recipe on which the TargetDetectorRecipe is based
- detector
Recipe Type This property is required. String - Recipe type ( STANDARD, ENTERPRISE )
- detector
Rules This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule> - List of detector rules for the detector recipe - user input
- display
Name This property is required. String - A filter to return only resources that match the entire display name given.
- effective
Detector Rules This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule> - List of currently enabled detector rules for the detector type for recipe after applying defaults
- id
This property is required. String - Unique identifier of target responder recipe that can't be changed after creation
- owner
This property is required. String - Owner of target responder recipe
- state
This property is required. String - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- time
Created This property is required. String - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. String - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
- description
This property is required. string - Responder rule description
- detector
This property is required. string - Detector type for the rule
- detector
Recipe Id This property is required. string - Unique identifier for of original Oracle-managed detector recipe on which the TargetDetectorRecipe is based
- detector
Recipe Type This property is required. string - Recipe type ( STANDARD, ENTERPRISE )
- detector
Rules This property is required. GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule[] - List of detector rules for the detector recipe - user input
- display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- effective
Detector Rules This property is required. GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule[] - List of currently enabled detector rules for the detector type for recipe after applying defaults
- id
This property is required. string - Unique identifier of target responder recipe that can't be changed after creation
- owner
This property is required. string - Owner of target responder recipe
- state
This property is required. string - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- compartment_
id This property is required. str - The OCID of the compartment in which to list resources.
- description
This property is required. str - Responder rule description
- detector
This property is required. str - Detector type for the rule
- detector_
recipe_ id This property is required. str - Unique identifier for of original Oracle-managed detector recipe on which the TargetDetectorRecipe is based
- detector_
recipe_ type This property is required. str - Recipe type ( STANDARD, ENTERPRISE )
- detector_
rules This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Detector Recipe Detector Rule] - List of detector rules for the detector recipe - user input
- display_
name This property is required. str - A filter to return only resources that match the entire display name given.
- effective_
detector_ rules This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Detector Recipe Effective Detector Rule] - List of currently enabled detector rules for the detector type for recipe after applying defaults
- id
This property is required. str - Unique identifier of target responder recipe that can't be changed after creation
- owner
This property is required. str - Owner of target responder recipe
- state
This property is required. str - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- time_
created This property is required. str - The date and time the target was created. Format defined by RFC3339.
- time_
updated This property is required. str - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id This property is required. String - The OCID of the compartment in which to list resources.
- description
This property is required. String - Responder rule description
- detector
This property is required. String - Detector type for the rule
- detector
Recipe Id This property is required. String - Unique identifier for of original Oracle-managed detector recipe on which the TargetDetectorRecipe is based
- detector
Recipe Type This property is required. String - Recipe type ( STANDARD, ENTERPRISE )
- detector
Rules This property is required. List<Property Map> - List of detector rules for the detector recipe - user input
- display
Name This property is required. String - A filter to return only resources that match the entire display name given.
- effective
Detector Rules This property is required. List<Property Map> - List of currently enabled detector rules for the detector type for recipe after applying defaults
- id
This property is required. String - Unique identifier of target responder recipe that can't be changed after creation
- owner
This property is required. String - Owner of target responder recipe
- state
This property is required. String - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- time
Created This property is required. String - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. String - The date and time the target was last updated. Format defined by RFC3339.
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRule
- Data
Source Id This property is required. string - The ID of the attached data source
- Description
This property is required. string - Responder rule description
- Details
This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Detail> - Detailed information for a responder rule
- Detector
This property is required. string - Detector type for the rule
- Detector
Rule Id This property is required. string - The unique identifier of the detector rule
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- Entities
Mappings This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Entities Mapping> - Data source entities mapping for a detector rule
- Lifecycle
Details This property is required. string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Managed
List Types This property is required. List<string> - List of managed list types related to this rule
- Recommendation
This property is required. string - Recommendation for TargetDetectorRecipeDetectorRule resource
- Resource
Type This property is required. string - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- Service
Type This property is required. string - Service type of the configuration to which the rule is applied
- State
This property is required. string - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- Data
Source Id This property is required. string - The ID of the attached data source
- Description
This property is required. string - Responder rule description
- Details
This property is required. []GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Detail - Detailed information for a responder rule
- Detector
This property is required. string - Detector type for the rule
- Detector
Rule Id This property is required. string - The unique identifier of the detector rule
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- Entities
Mappings This property is required. []GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Entities Mapping - Data source entities mapping for a detector rule
- Lifecycle
Details This property is required. string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Managed
List Types This property is required. []string - List of managed list types related to this rule
- Recommendation
This property is required. string - Recommendation for TargetDetectorRecipeDetectorRule resource
- Resource
Type This property is required. string - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- Service
Type This property is required. string - Service type of the configuration to which the rule is applied
- State
This property is required. string - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- data
Source Id This property is required. String - The ID of the attached data source
- description
This property is required. String - Responder rule description
- details
This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Detail> - Detailed information for a responder rule
- detector
This property is required. String - Detector type for the rule
- detector
Rule Id This property is required. String - The unique identifier of the detector rule
- display
Name This property is required. String - A filter to return only resources that match the entire display name given.
- entities
Mappings This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Entities Mapping> - Data source entities mapping for a detector rule
- lifecycle
Details This property is required. String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed
List Types This property is required. List<String> - List of managed list types related to this rule
- recommendation
This property is required. String - Recommendation for TargetDetectorRecipeDetectorRule resource
- resource
Type This property is required. String - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- service
Type This property is required. String - Service type of the configuration to which the rule is applied
- state
This property is required. String - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- time
Created This property is required. String - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. String - The date and time the target was last updated. Format defined by RFC3339.
- data
Source Id This property is required. string - The ID of the attached data source
- description
This property is required. string - Responder rule description
- details
This property is required. GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Detail[] - Detailed information for a responder rule
- detector
This property is required. string - Detector type for the rule
- detector
Rule Id This property is required. string - The unique identifier of the detector rule
- display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- entities
Mappings This property is required. GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Entities Mapping[] - Data source entities mapping for a detector rule
- lifecycle
Details This property is required. string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed
List Types This property is required. string[] - List of managed list types related to this rule
- recommendation
This property is required. string - Recommendation for TargetDetectorRecipeDetectorRule resource
- resource
Type This property is required. string - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- service
Type This property is required. string - Service type of the configuration to which the rule is applied
- state
This property is required. string - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- data_
source_ id This property is required. str - The ID of the attached data source
- description
This property is required. str - Responder rule description
- details
This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Detector Recipe Detector Rule Detail] - Detailed information for a responder rule
- detector
This property is required. str - Detector type for the rule
- detector_
rule_ id This property is required. str - The unique identifier of the detector rule
- display_
name This property is required. str - A filter to return only resources that match the entire display name given.
- entities_
mappings This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Detector Recipe Detector Rule Entities Mapping] - Data source entities mapping for a detector rule
- lifecycle_
details This property is required. 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 This property is required. Sequence[str] - List of managed list types related to this rule
- recommendation
This property is required. str - Recommendation for TargetDetectorRecipeDetectorRule resource
- resource_
type This property is required. str - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- service_
type This property is required. str - Service type of the configuration to which the rule is applied
- state
This property is required. str - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- time_
created This property is required. str - The date and time the target was created. Format defined by RFC3339.
- time_
updated This property is required. str - The date and time the target was last updated. Format defined by RFC3339.
- data
Source Id This property is required. String - The ID of the attached data source
- description
This property is required. String - Responder rule description
- details
This property is required. List<Property Map> - Detailed information for a responder rule
- detector
This property is required. String - Detector type for the rule
- detector
Rule Id This property is required. String - The unique identifier of the detector rule
- display
Name This property is required. String - A filter to return only resources that match the entire display name given.
- entities
Mappings This property is required. List<Property Map> - Data source entities mapping for a detector rule
- lifecycle
Details This property is required. String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed
List Types This property is required. List<String> - List of managed list types related to this rule
- recommendation
This property is required. String - Recommendation for TargetDetectorRecipeDetectorRule resource
- resource
Type This property is required. String - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- service
Type This property is required. String - Service type of the configuration to which the rule is applied
- state
This property is required. String - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- time
Created This property is required. String - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. String - The date and time the target was last updated. Format defined by RFC3339.
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetail
- Condition
Groups This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Condition Group> - Condition group corresponding to each compartment
- Configurations
This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Configuration> - List of responder rule configurations
- Is
Configuration Allowed This property is required. bool - Configuration allowed or not
- Is
Enabled This property is required. bool - Enabled state for the responder rule
- Labels
This property is required. List<string> - User-defined labels for a detector rule
- Risk
Level This property is required. string - The risk level of the detector rule
- Condition
Groups This property is required. []GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Condition Group - Condition group corresponding to each compartment
- Configurations
This property is required. []GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Configuration - List of responder rule configurations
- Is
Configuration Allowed This property is required. bool - Configuration allowed or not
- Is
Enabled This property is required. bool - Enabled state for the responder rule
- Labels
This property is required. []string - User-defined labels for a detector rule
- Risk
Level This property is required. string - The risk level of the detector rule
- condition
Groups This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Condition Group> - Condition group corresponding to each compartment
- configurations
This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Configuration> - List of responder rule configurations
- is
Configuration Allowed This property is required. Boolean - Configuration allowed or not
- is
Enabled This property is required. Boolean - Enabled state for the responder rule
- labels
This property is required. List<String> - User-defined labels for a detector rule
- risk
Level This property is required. String - The risk level of the detector rule
- condition
Groups This property is required. GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Condition Group[] - Condition group corresponding to each compartment
- configurations
This property is required. GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Configuration[] - List of responder rule configurations
- is
Configuration Allowed This property is required. boolean - Configuration allowed or not
- is
Enabled This property is required. boolean - Enabled state for the responder rule
- labels
This property is required. string[] - User-defined labels for a detector rule
- risk
Level This property is required. string - The risk level of the detector rule
- condition_
groups This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Condition Group] - Condition group corresponding to each compartment
- configurations
This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Configuration] - List of responder rule configurations
- is_
configuration_ allowed This property is required. bool - Configuration allowed or not
- is_
enabled This property is required. bool - Enabled state for the responder rule
- labels
This property is required. Sequence[str] - User-defined labels for a detector rule
- risk_
level This property is required. str - The risk level of the detector rule
- condition
Groups This property is required. List<Property Map> - Condition group corresponding to each compartment
- configurations
This property is required. List<Property Map> - List of responder rule configurations
- is
Configuration Allowed This property is required. Boolean - Configuration allowed or not
- is
Enabled This property is required. Boolean - Enabled state for the responder rule
- labels
This property is required. List<String> - User-defined labels for a detector rule
- risk
Level This property is required. String - The risk level of the detector rule
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConditionGroup
- Compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
- Condition
This property is required. string - The base condition resource.
- Compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
- Condition
This property is required. string - The base condition resource.
- compartment
Id This property is required. String - The OCID of the compartment in which to list resources.
- condition
This property is required. String - The base condition resource.
- compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
- condition
This property is required. string - The base condition resource.
- compartment_
id This property is required. str - The OCID of the compartment in which to list resources.
- condition
This property is required. str - The base condition resource.
- compartment
Id This property is required. String - The OCID of the compartment in which to list resources.
- condition
This property is required. String - The base condition resource.
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfiguration
- Config
Key This property is required. string - Unique identifier of the configuration
- Data
Type This property is required. string - Configuration data type
- Name
This property is required. string - Configuration name
- Value
This property is required. string - Configuration value
- Values
This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Configuration Value> - List of configuration values
- Config
Key This property is required. string - Unique identifier of the configuration
- Data
Type This property is required. string - Configuration data type
- Name
This property is required. string - Configuration name
- Value
This property is required. string - Configuration value
- Values
This property is required. []GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Configuration Value - List of configuration values
- config
Key This property is required. String - Unique identifier of the configuration
- data
Type This property is required. String - Configuration data type
- name
This property is required. String - Configuration name
- value
This property is required. String - Configuration value
- values
This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Configuration Value> - List of configuration values
- config
Key This property is required. string - Unique identifier of the configuration
- data
Type This property is required. string - Configuration data type
- name
This property is required. string - Configuration name
- value
This property is required. string - Configuration value
- values
This property is required. GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Configuration Value[] - List of configuration values
- config_
key This property is required. str - Unique identifier of the configuration
- data_
type This property is required. str - Configuration data type
- name
This property is required. str - Configuration name
- value
This property is required. str - Configuration value
- values
This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Configuration Value] - List of configuration values
- config
Key This property is required. String - Unique identifier of the configuration
- data
Type This property is required. String - Configuration data type
- name
This property is required. String - Configuration name
- value
This property is required. String - Configuration value
- values
This property is required. List<Property Map> - List of configuration values
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfigurationValue
- List
Type This property is required. string - Configuration list item type (CUSTOM or MANAGED)
- Managed
List Type This property is required. string - Type of content in the managed list
- Value
This property is required. string - Configuration value
- List
Type This property is required. string - Configuration list item type (CUSTOM or MANAGED)
- Managed
List Type This property is required. string - Type of content in the managed list
- Value
This property is required. string - Configuration value
- list
Type This property is required. String - Configuration list item type (CUSTOM or MANAGED)
- managed
List Type This property is required. String - Type of content in the managed list
- value
This property is required. String - Configuration value
- list
Type This property is required. string - Configuration list item type (CUSTOM or MANAGED)
- managed
List Type This property is required. string - Type of content in the managed list
- value
This property is required. string - Configuration value
- list_
type This property is required. str - Configuration list item type (CUSTOM or MANAGED)
- managed_
list_ type This property is required. str - Type of content in the managed list
- value
This property is required. str - Configuration value
- list
Type This property is required. String - Configuration list item type (CUSTOM or MANAGED)
- managed
List Type This property is required. String - Type of content in the managed list
- value
This property is required. String - Configuration value
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleEntitiesMapping
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- Entity
Type This property is required. string - Type of entity
- Query
Field This property is required. string - The entity value mapped to a data source query
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- Entity
Type This property is required. string - Type of entity
- Query
Field This property is required. string - The entity value mapped to a data source query
- display
Name This property is required. String - A filter to return only resources that match the entire display name given.
- entity
Type This property is required. String - Type of entity
- query
Field This property is required. String - The entity value mapped to a data source query
- display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- entity
Type This property is required. string - Type of entity
- query
Field This property is required. string - The entity value mapped to a data source query
- display_
name This property is required. str - A filter to return only resources that match the entire display name given.
- entity_
type This property is required. str - Type of entity
- query_
field This property is required. str - The entity value mapped to a data source query
- display
Name This property is required. String - A filter to return only resources that match the entire display name given.
- entity
Type This property is required. String - Type of entity
- query
Field This property is required. String - The entity value mapped to a data source query
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRule
- Data
Source Id This property is required. string - The ID of the attached data source
- Description
This property is required. string - Responder rule description
- Details
This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail> - Detailed information for a responder rule
- Detector
This property is required. string - Detector type for the rule
- Detector
Rule Id This property is required. string - The unique identifier of the detector rule
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- Entities
Mappings This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Entities Mapping> - Data source entities mapping for a detector rule
- Lifecycle
Details This property is required. string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Managed
List Types This property is required. List<string> - List of managed list types related to this rule
- Recommendation
This property is required. string - Recommendation for TargetDetectorRecipeDetectorRule resource
- Resource
Type This property is required. string - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- Service
Type This property is required. string - Service type of the configuration to which the rule is applied
- State
This property is required. string - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- Data
Source Id This property is required. string - The ID of the attached data source
- Description
This property is required. string - Responder rule description
- Details
This property is required. []GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail - Detailed information for a responder rule
- Detector
This property is required. string - Detector type for the rule
- Detector
Rule Id This property is required. string - The unique identifier of the detector rule
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- Entities
Mappings This property is required. []GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Entities Mapping - Data source entities mapping for a detector rule
- Lifecycle
Details This property is required. string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Managed
List Types This property is required. []string - List of managed list types related to this rule
- Recommendation
This property is required. string - Recommendation for TargetDetectorRecipeDetectorRule resource
- Resource
Type This property is required. string - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- Service
Type This property is required. string - Service type of the configuration to which the rule is applied
- State
This property is required. string - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- data
Source Id This property is required. String - The ID of the attached data source
- description
This property is required. String - Responder rule description
- details
This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail> - Detailed information for a responder rule
- detector
This property is required. String - Detector type for the rule
- detector
Rule Id This property is required. String - The unique identifier of the detector rule
- display
Name This property is required. String - A filter to return only resources that match the entire display name given.
- entities
Mappings This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Entities Mapping> - Data source entities mapping for a detector rule
- lifecycle
Details This property is required. String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed
List Types This property is required. List<String> - List of managed list types related to this rule
- recommendation
This property is required. String - Recommendation for TargetDetectorRecipeDetectorRule resource
- resource
Type This property is required. String - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- service
Type This property is required. String - Service type of the configuration to which the rule is applied
- state
This property is required. String - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- time
Created This property is required. String - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. String - The date and time the target was last updated. Format defined by RFC3339.
- data
Source Id This property is required. string - The ID of the attached data source
- description
This property is required. string - Responder rule description
- details
This property is required. GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail[] - Detailed information for a responder rule
- detector
This property is required. string - Detector type for the rule
- detector
Rule Id This property is required. string - The unique identifier of the detector rule
- display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- entities
Mappings This property is required. GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Entities Mapping[] - Data source entities mapping for a detector rule
- lifecycle
Details This property is required. string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed
List Types This property is required. string[] - List of managed list types related to this rule
- recommendation
This property is required. string - Recommendation for TargetDetectorRecipeDetectorRule resource
- resource
Type This property is required. string - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- service
Type This property is required. string - Service type of the configuration to which the rule is applied
- state
This property is required. string - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- data_
source_ id This property is required. str - The ID of the attached data source
- description
This property is required. str - Responder rule description
- details
This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail] - Detailed information for a responder rule
- detector
This property is required. str - Detector type for the rule
- detector_
rule_ id This property is required. str - The unique identifier of the detector rule
- display_
name This property is required. str - A filter to return only resources that match the entire display name given.
- entities_
mappings This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Entities Mapping] - Data source entities mapping for a detector rule
- lifecycle_
details This property is required. 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 This property is required. Sequence[str] - List of managed list types related to this rule
- recommendation
This property is required. str - Recommendation for TargetDetectorRecipeDetectorRule resource
- resource_
type This property is required. str - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- service_
type This property is required. str - Service type of the configuration to which the rule is applied
- state
This property is required. str - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- time_
created This property is required. str - The date and time the target was created. Format defined by RFC3339.
- time_
updated This property is required. str - The date and time the target was last updated. Format defined by RFC3339.
- data
Source Id This property is required. String - The ID of the attached data source
- description
This property is required. String - Responder rule description
- details
This property is required. List<Property Map> - Detailed information for a responder rule
- detector
This property is required. String - Detector type for the rule
- detector
Rule Id This property is required. String - The unique identifier of the detector rule
- display
Name This property is required. String - A filter to return only resources that match the entire display name given.
- entities
Mappings This property is required. List<Property Map> - Data source entities mapping for a detector rule
- lifecycle
Details This property is required. String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed
List Types This property is required. List<String> - List of managed list types related to this rule
- recommendation
This property is required. String - Recommendation for TargetDetectorRecipeDetectorRule resource
- resource
Type This property is required. String - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- service
Type This property is required. String - Service type of the configuration to which the rule is applied
- state
This property is required. String - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- time
Created This property is required. String - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. String - The date and time the target was last updated. Format defined by RFC3339.
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetail
- Condition
Groups This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Condition Group> - Condition group corresponding to each compartment
- Configurations
This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Configuration> - List of responder rule configurations
- Is
Configuration Allowed This property is required. bool - Configuration allowed or not
- Is
Enabled This property is required. bool - Enabled state for the responder rule
- Labels
This property is required. List<string> - User-defined labels for a detector rule
- Risk
Level This property is required. string - The risk level of the detector rule
- Condition
Groups This property is required. []GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Condition Group - Condition group corresponding to each compartment
- Configurations
This property is required. []GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Configuration - List of responder rule configurations
- Is
Configuration Allowed This property is required. bool - Configuration allowed or not
- Is
Enabled This property is required. bool - Enabled state for the responder rule
- Labels
This property is required. []string - User-defined labels for a detector rule
- Risk
Level This property is required. string - The risk level of the detector rule
- condition
Groups This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Condition Group> - Condition group corresponding to each compartment
- configurations
This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Configuration> - List of responder rule configurations
- is
Configuration Allowed This property is required. Boolean - Configuration allowed or not
- is
Enabled This property is required. Boolean - Enabled state for the responder rule
- labels
This property is required. List<String> - User-defined labels for a detector rule
- risk
Level This property is required. String - The risk level of the detector rule
- condition
Groups This property is required. GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Condition Group[] - Condition group corresponding to each compartment
- configurations
This property is required. GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Configuration[] - List of responder rule configurations
- is
Configuration Allowed This property is required. boolean - Configuration allowed or not
- is
Enabled This property is required. boolean - Enabled state for the responder rule
- labels
This property is required. string[] - User-defined labels for a detector rule
- risk
Level This property is required. string - The risk level of the detector rule
- condition_
groups This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Condition Group] - Condition group corresponding to each compartment
- configurations
This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Configuration] - List of responder rule configurations
- is_
configuration_ allowed This property is required. bool - Configuration allowed or not
- is_
enabled This property is required. bool - Enabled state for the responder rule
- labels
This property is required. Sequence[str] - User-defined labels for a detector rule
- risk_
level This property is required. str - The risk level of the detector rule
- condition
Groups This property is required. List<Property Map> - Condition group corresponding to each compartment
- configurations
This property is required. List<Property Map> - List of responder rule configurations
- is
Configuration Allowed This property is required. Boolean - Configuration allowed or not
- is
Enabled This property is required. Boolean - Enabled state for the responder rule
- labels
This property is required. List<String> - User-defined labels for a detector rule
- risk
Level This property is required. String - The risk level of the detector rule
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroup
- Compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
- Condition
This property is required. string - The base condition resource.
- Compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
- Condition
This property is required. string - The base condition resource.
- compartment
Id This property is required. String - The OCID of the compartment in which to list resources.
- condition
This property is required. String - The base condition resource.
- compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
- condition
This property is required. string - The base condition resource.
- compartment_
id This property is required. str - The OCID of the compartment in which to list resources.
- condition
This property is required. str - The base condition resource.
- compartment
Id This property is required. String - The OCID of the compartment in which to list resources.
- condition
This property is required. String - The base condition resource.
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfiguration
- Config
Key This property is required. string - Unique identifier of the configuration
- Data
Type This property is required. string - Configuration data type
- Name
This property is required. string - Configuration name
- Value
This property is required. string - Configuration value
- Values
This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Configuration Value> - List of configuration values
- Config
Key This property is required. string - Unique identifier of the configuration
- Data
Type This property is required. string - Configuration data type
- Name
This property is required. string - Configuration name
- Value
This property is required. string - Configuration value
- Values
This property is required. []GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Configuration Value - List of configuration values
- config
Key This property is required. String - Unique identifier of the configuration
- data
Type This property is required. String - Configuration data type
- name
This property is required. String - Configuration name
- value
This property is required. String - Configuration value
- values
This property is required. List<GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Configuration Value> - List of configuration values
- config
Key This property is required. string - Unique identifier of the configuration
- data
Type This property is required. string - Configuration data type
- name
This property is required. string - Configuration name
- value
This property is required. string - Configuration value
- values
This property is required. GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Configuration Value[] - List of configuration values
- config_
key This property is required. str - Unique identifier of the configuration
- data_
type This property is required. str - Configuration data type
- name
This property is required. str - Configuration name
- value
This property is required. str - Configuration value
- values
This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Configuration Value] - List of configuration values
- config
Key This property is required. String - Unique identifier of the configuration
- data
Type This property is required. String - Configuration data type
- name
This property is required. String - Configuration name
- value
This property is required. String - Configuration value
- values
This property is required. List<Property Map> - List of configuration values
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValue
- List
Type This property is required. string - Configuration list item type (CUSTOM or MANAGED)
- Managed
List Type This property is required. string - Type of content in the managed list
- Value
This property is required. string - Configuration value
- List
Type This property is required. string - Configuration list item type (CUSTOM or MANAGED)
- Managed
List Type This property is required. string - Type of content in the managed list
- Value
This property is required. string - Configuration value
- list
Type This property is required. String - Configuration list item type (CUSTOM or MANAGED)
- managed
List Type This property is required. String - Type of content in the managed list
- value
This property is required. String - Configuration value
- list
Type This property is required. string - Configuration list item type (CUSTOM or MANAGED)
- managed
List Type This property is required. string - Type of content in the managed list
- value
This property is required. string - Configuration value
- list_
type This property is required. str - Configuration list item type (CUSTOM or MANAGED)
- managed_
list_ type This property is required. str - Type of content in the managed list
- value
This property is required. str - Configuration value
- list
Type This property is required. String - Configuration list item type (CUSTOM or MANAGED)
- managed
List Type This property is required. String - Type of content in the managed list
- value
This property is required. String - Configuration value
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleEntitiesMapping
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- Entity
Type This property is required. string - Type of entity
- Query
Field This property is required. string - The entity value mapped to a data source query
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- Entity
Type This property is required. string - Type of entity
- Query
Field This property is required. string - The entity value mapped to a data source query
- display
Name This property is required. String - A filter to return only resources that match the entire display name given.
- entity
Type This property is required. String - Type of entity
- query
Field This property is required. String - The entity value mapped to a data source query
- display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- entity
Type This property is required. string - Type of entity
- query
Field This property is required. string - The entity value mapped to a data source query
- display_
name This property is required. str - A filter to return only resources that match the entire display name given.
- entity_
type This property is required. str - Type of entity
- query_
field This property is required. str - The entity value mapped to a data source query
- display
Name This property is required. String - A filter to return only resources that match the entire display name given.
- entity
Type This property is required. String - Type of entity
- query
Field This property is required. String - The entity value mapped to a data source query
GetGuardTargetsTargetCollectionItemTargetResponderRecipe
- Compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
- Description
This property is required. string - Responder rule description
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- Effective
Responder Rules This property is required. List<GetGuard Targets Target Collection Item Target Responder Recipe Effective Responder Rule> - List of currently enabled responder rules for the responder type for recipe after applying defaults
- Id
This property is required. string - Unique identifier of target responder recipe that can't be changed after creation
- Owner
This property is required. string - Owner of target responder recipe
- Responder
Recipe Id This property is required. string - Unique identifier for the Oracle-managed responder recipe from which this recipe was cloned
- Responder
Rules This property is required. List<GetGuard Targets Target Collection Item Target Responder Recipe Responder Rule> - List of responder rules associated with the recipe - user input
- Time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- Compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
- Description
This property is required. string - Responder rule description
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- Effective
Responder Rules This property is required. []GetGuard Targets Target Collection Item Target Responder Recipe Effective Responder Rule - List of currently enabled responder rules for the responder type for recipe after applying defaults
- Id
This property is required. string - Unique identifier of target responder recipe that can't be changed after creation
- Owner
This property is required. string - Owner of target responder recipe
- Responder
Recipe Id This property is required. string - Unique identifier for the Oracle-managed responder recipe from which this recipe was cloned
- Responder
Rules This property is required. []GetGuard Targets Target Collection Item Target Responder Recipe Responder Rule - List of responder rules associated with the recipe - user input
- Time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id This property is required. String - The OCID of the compartment in which to list resources.
- description
This property is required. String - Responder rule description
- display
Name This property is required. String - A filter to return only resources that match the entire display name given.
- effective
Responder Rules This property is required. List<GetGuard Targets Target Collection Item Target Responder Recipe Effective Responder Rule> - List of currently enabled responder rules for the responder type for recipe after applying defaults
- id
This property is required. String - Unique identifier of target responder recipe that can't be changed after creation
- owner
This property is required. String - Owner of target responder recipe
- responder
Recipe Id This property is required. String - Unique identifier for the Oracle-managed responder recipe from which this recipe was cloned
- responder
Rules This property is required. List<GetGuard Targets Target Collection Item Target Responder Recipe Responder Rule> - List of responder rules associated with the recipe - user input
- time
Created This property is required. String - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. String - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
- description
This property is required. string - Responder rule description
- display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- effective
Responder Rules This property is required. GetGuard Targets Target Collection Item Target Responder Recipe Effective Responder Rule[] - List of currently enabled responder rules for the responder type for recipe after applying defaults
- id
This property is required. string - Unique identifier of target responder recipe that can't be changed after creation
- owner
This property is required. string - Owner of target responder recipe
- responder
Recipe Id This property is required. string - Unique identifier for the Oracle-managed responder recipe from which this recipe was cloned
- responder
Rules This property is required. GetGuard Targets Target Collection Item Target Responder Recipe Responder Rule[] - List of responder rules associated with the recipe - user input
- time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- compartment_
id This property is required. str - The OCID of the compartment in which to list resources.
- description
This property is required. str - Responder rule description
- display_
name This property is required. str - A filter to return only resources that match the entire display name given.
- effective_
responder_ rules This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Responder Recipe Effective Responder Rule] - List of currently enabled responder rules for the responder type for recipe after applying defaults
- id
This property is required. str - Unique identifier of target responder recipe that can't be changed after creation
- owner
This property is required. str - Owner of target responder recipe
- responder_
recipe_ id This property is required. str - Unique identifier for the Oracle-managed responder recipe from which this recipe was cloned
- responder_
rules This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Responder Recipe Responder Rule] - List of responder rules associated with the recipe - user input
- time_
created This property is required. str - The date and time the target was created. Format defined by RFC3339.
- time_
updated This property is required. str - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id This property is required. String - The OCID of the compartment in which to list resources.
- description
This property is required. String - Responder rule description
- display
Name This property is required. String - A filter to return only resources that match the entire display name given.
- effective
Responder Rules This property is required. List<Property Map> - List of currently enabled responder rules for the responder type for recipe after applying defaults
- id
This property is required. String - Unique identifier of target responder recipe that can't be changed after creation
- owner
This property is required. String - Owner of target responder recipe
- responder
Recipe Id This property is required. String - Unique identifier for the Oracle-managed responder recipe from which this recipe was cloned
- responder
Rules This property is required. List<Property Map> - List of responder rules associated with the recipe - user input
- time
Created This property is required. String - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. String - The date and time the target was last updated. Format defined by RFC3339.
GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRule
- Compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
- Description
This property is required. string - Responder rule description
- Details
This property is required. List<GetGuard Targets Target Collection Item Target Responder Recipe Effective Responder Rule Detail> - Detailed information for a responder rule
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- Lifecycle
Details This property is required. 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
This property is required. List<string> - List of policies
- Responder
Rule Id This property is required. string - Unique identifier for the responder rule
- State
This property is required. string - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Supported
Modes This property is required. List<string> - Supported execution modes for the responder rule
- Time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- Type
This property is required. string - Type of responder
- Compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
- Description
This property is required. string - Responder rule description
- Details
This property is required. []GetGuard Targets Target Collection Item Target Responder Recipe Effective Responder Rule Detail - Detailed information for a responder rule
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- Lifecycle
Details This property is required. 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
This property is required. []string - List of policies
- Responder
Rule Id This property is required. string - Unique identifier for the responder rule
- State
This property is required. string - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Supported
Modes This property is required. []string - Supported execution modes for the responder rule
- Time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- Type
This property is required. string - Type of responder
- compartment
Id This property is required. String - The OCID of the compartment in which to list resources.
- description
This property is required. String - Responder rule description
- details
This property is required. List<GetGuard Targets Target Collection Item Target Responder Recipe Effective Responder Rule Detail> - Detailed information for a responder rule
- display
Name This property is required. String - A filter to return only resources that match the entire display name given.
- lifecycle
Details This property is required. 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
This property is required. List<String> - List of policies
- responder
Rule Id This property is required. String - Unique identifier for the responder rule
- state
This property is required. String - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- supported
Modes This property is required. List<String> - Supported execution modes for the responder rule
- time
Created This property is required. String - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. String - The date and time the target was last updated. Format defined by RFC3339.
- type
This property is required. String - Type of responder
- compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
- description
This property is required. string - Responder rule description
- details
This property is required. GetGuard Targets Target Collection Item Target Responder Recipe Effective Responder Rule Detail[] - Detailed information for a responder rule
- display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- lifecycle
Details This property is required. 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
This property is required. string[] - List of policies
- responder
Rule Id This property is required. string - Unique identifier for the responder rule
- state
This property is required. string - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- supported
Modes This property is required. string[] - Supported execution modes for the responder rule
- time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- type
This property is required. string - Type of responder
- compartment_
id This property is required. str - The OCID of the compartment in which to list resources.
- description
This property is required. str - Responder rule description
- details
This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Responder Recipe Effective Responder Rule Detail] - Detailed information for a responder rule
- display_
name This property is required. str - A filter to return only resources that match the entire display name given.
- lifecycle_
details This property is required. 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
This property is required. Sequence[str] - List of policies
- responder_
rule_ id This property is required. str - Unique identifier for the responder rule
- state
This property is required. str - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- supported_
modes This property is required. Sequence[str] - Supported execution modes for the responder rule
- time_
created This property is required. str - The date and time the target was created. Format defined by RFC3339.
- time_
updated This property is required. str - The date and time the target was last updated. Format defined by RFC3339.
- type
This property is required. str - Type of responder
- compartment
Id This property is required. String - The OCID of the compartment in which to list resources.
- description
This property is required. String - Responder rule description
- details
This property is required. List<Property Map> - Detailed information for a responder rule
- display
Name This property is required. String - A filter to return only resources that match the entire display name given.
- lifecycle
Details This property is required. 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
This property is required. List<String> - List of policies
- responder
Rule Id This property is required. String - Unique identifier for the responder rule
- state
This property is required. String - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- supported
Modes This property is required. List<String> - Supported execution modes for the responder rule
- time
Created This property is required. String - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. String - The date and time the target was last updated. Format defined by RFC3339.
- type
This property is required. String - Type of responder
GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetail
- Condition
This property is required. string - The base condition resource.
- Configurations
This property is required. List<GetGuard Targets Target Collection Item Target Responder Recipe Effective Responder Rule Detail Configuration> - List of responder rule configurations
- Is
Enabled This property is required. bool - Enabled state for the responder rule
- Mode
This property is required. string - Execution mode for the responder rule
- Condition
This property is required. string - The base condition resource.
- Configurations
This property is required. []GetGuard Targets Target Collection Item Target Responder Recipe Effective Responder Rule Detail Configuration - List of responder rule configurations
- Is
Enabled This property is required. bool - Enabled state for the responder rule
- Mode
This property is required. string - Execution mode for the responder rule
- condition
This property is required. String - The base condition resource.
- configurations
This property is required. List<GetGuard Targets Target Collection Item Target Responder Recipe Effective Responder Rule Detail Configuration> - List of responder rule configurations
- is
Enabled This property is required. Boolean - Enabled state for the responder rule
- mode
This property is required. String - Execution mode for the responder rule
- condition
This property is required. string - The base condition resource.
- configurations
This property is required. GetGuard Targets Target Collection Item Target Responder Recipe Effective Responder Rule Detail Configuration[] - List of responder rule configurations
- is
Enabled This property is required. boolean - Enabled state for the responder rule
- mode
This property is required. string - Execution mode for the responder rule
- condition
This property is required. str - The base condition resource.
- configurations
This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Responder Recipe Effective Responder Rule Detail Configuration] - List of responder rule configurations
- is_
enabled This property is required. bool - Enabled state for the responder rule
- mode
This property is required. str - Execution mode for the responder rule
- condition
This property is required. String - The base condition resource.
- configurations
This property is required. List<Property Map> - List of responder rule configurations
- is
Enabled This property is required. Boolean - Enabled state for the responder rule
- mode
This property is required. String - Execution mode for the responder rule
GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetailConfiguration
- config_
key This property is required. str - Unique identifier of the configuration
- name
This property is required. str - Configuration name
- value
This property is required. str - Configuration value
GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRule
- Compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
- Description
This property is required. string - Responder rule description
- Details
This property is required. List<GetGuard Targets Target Collection Item Target Responder Recipe Responder Rule Detail> - Detailed information for a responder rule
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- Lifecycle
Details This property is required. 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
This property is required. List<string> - List of policies
- Responder
Rule Id This property is required. string - Unique identifier for the responder rule
- State
This property is required. string - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Supported
Modes This property is required. List<string> - Supported execution modes for the responder rule
- Time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- Type
This property is required. string - Type of responder
- Compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
- Description
This property is required. string - Responder rule description
- Details
This property is required. []GetGuard Targets Target Collection Item Target Responder Recipe Responder Rule Detail - Detailed information for a responder rule
- Display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- Lifecycle
Details This property is required. 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
This property is required. []string - List of policies
- Responder
Rule Id This property is required. string - Unique identifier for the responder rule
- State
This property is required. string - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Supported
Modes This property is required. []string - Supported execution modes for the responder rule
- Time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- Type
This property is required. string - Type of responder
- compartment
Id This property is required. String - The OCID of the compartment in which to list resources.
- description
This property is required. String - Responder rule description
- details
This property is required. List<GetGuard Targets Target Collection Item Target Responder Recipe Responder Rule Detail> - Detailed information for a responder rule
- display
Name This property is required. String - A filter to return only resources that match the entire display name given.
- lifecycle
Details This property is required. 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
This property is required. List<String> - List of policies
- responder
Rule Id This property is required. String - Unique identifier for the responder rule
- state
This property is required. String - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- supported
Modes This property is required. List<String> - Supported execution modes for the responder rule
- time
Created This property is required. String - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. String - The date and time the target was last updated. Format defined by RFC3339.
- type
This property is required. String - Type of responder
- compartment
Id This property is required. string - The OCID of the compartment in which to list resources.
- description
This property is required. string - Responder rule description
- details
This property is required. GetGuard Targets Target Collection Item Target Responder Recipe Responder Rule Detail[] - Detailed information for a responder rule
- display
Name This property is required. string - A filter to return only resources that match the entire display name given.
- lifecycle
Details This property is required. 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
This property is required. string[] - List of policies
- responder
Rule Id This property is required. string - Unique identifier for the responder rule
- state
This property is required. string - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- supported
Modes This property is required. string[] - Supported execution modes for the responder rule
- time
Created This property is required. string - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. string - The date and time the target was last updated. Format defined by RFC3339.
- type
This property is required. string - Type of responder
- compartment_
id This property is required. str - The OCID of the compartment in which to list resources.
- description
This property is required. str - Responder rule description
- details
This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Responder Recipe Responder Rule Detail] - Detailed information for a responder rule
- display_
name This property is required. str - A filter to return only resources that match the entire display name given.
- lifecycle_
details This property is required. 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
This property is required. Sequence[str] - List of policies
- responder_
rule_ id This property is required. str - Unique identifier for the responder rule
- state
This property is required. str - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- supported_
modes This property is required. Sequence[str] - Supported execution modes for the responder rule
- time_
created This property is required. str - The date and time the target was created. Format defined by RFC3339.
- time_
updated This property is required. str - The date and time the target was last updated. Format defined by RFC3339.
- type
This property is required. str - Type of responder
- compartment
Id This property is required. String - The OCID of the compartment in which to list resources.
- description
This property is required. String - Responder rule description
- details
This property is required. List<Property Map> - Detailed information for a responder rule
- display
Name This property is required. String - A filter to return only resources that match the entire display name given.
- lifecycle
Details This property is required. 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
This property is required. List<String> - List of policies
- responder
Rule Id This property is required. String - Unique identifier for the responder rule
- state
This property is required. String - The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- supported
Modes This property is required. List<String> - Supported execution modes for the responder rule
- time
Created This property is required. String - The date and time the target was created. Format defined by RFC3339.
- time
Updated This property is required. String - The date and time the target was last updated. Format defined by RFC3339.
- type
This property is required. String - Type of responder
GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetail
- Condition
This property is required. string - The base condition resource.
- Configurations
This property is required. List<GetGuard Targets Target Collection Item Target Responder Recipe Responder Rule Detail Configuration> - List of responder rule configurations
- Is
Enabled This property is required. bool - Enabled state for the responder rule
- Mode
This property is required. string - Execution mode for the responder rule
- Condition
This property is required. string - The base condition resource.
- Configurations
This property is required. []GetGuard Targets Target Collection Item Target Responder Recipe Responder Rule Detail Configuration - List of responder rule configurations
- Is
Enabled This property is required. bool - Enabled state for the responder rule
- Mode
This property is required. string - Execution mode for the responder rule
- condition
This property is required. String - The base condition resource.
- configurations
This property is required. List<GetGuard Targets Target Collection Item Target Responder Recipe Responder Rule Detail Configuration> - List of responder rule configurations
- is
Enabled This property is required. Boolean - Enabled state for the responder rule
- mode
This property is required. String - Execution mode for the responder rule
- condition
This property is required. string - The base condition resource.
- configurations
This property is required. GetGuard Targets Target Collection Item Target Responder Recipe Responder Rule Detail Configuration[] - List of responder rule configurations
- is
Enabled This property is required. boolean - Enabled state for the responder rule
- mode
This property is required. string - Execution mode for the responder rule
- condition
This property is required. str - The base condition resource.
- configurations
This property is required. Sequence[cloudguard.Get Guard Targets Target Collection Item Target Responder Recipe Responder Rule Detail Configuration] - List of responder rule configurations
- is_
enabled This property is required. bool - Enabled state for the responder rule
- mode
This property is required. str - Execution mode for the responder rule
- condition
This property is required. String - The base condition resource.
- configurations
This property is required. List<Property Map> - List of responder rule configurations
- is
Enabled This property is required. Boolean - Enabled state for the responder rule
- mode
This property is required. String - Execution mode for the responder rule
GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetailConfiguration
- config_
key This property is required. str - Unique identifier of the configuration
- name
This property is required. str - Configuration name
- value
This property is required. str - Configuration value
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.