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/go/oci/CloudGuard"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := CloudGuard.GetGuardTargets(ctx, &cloudguard.GetGuardTargetsArgs{
CompartmentId: compartmentId,
AccessLevel: pulumi.StringRef(targetAccessLevel),
CompartmentIdInSubtree: pulumi.BoolRef(targetCompartmentIdInSubtree),
DisplayName: pulumi.StringRef(targetDisplayName),
IsNonSecurityZoneTargetsOnlyQuery: pulumi.BoolRef(targetIsNonSecurityZoneTargetsOnlyQuery),
State: pulumi.StringRef(targetState),
}, nil)
if err != nil {
return err
}
return nil
})
}
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testTargets = Oci.CloudGuard.GetGuardTargets.Invoke(new()
{
CompartmentId = compartmentId,
AccessLevel = targetAccessLevel,
CompartmentIdInSubtree = targetCompartmentIdInSubtree,
DisplayName = targetDisplayName,
IsNonSecurityZoneTargetsOnlyQuery = targetIsNonSecurityZoneTargetsOnlyQuery,
State = targetState,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.CloudGuard.CloudGuardFunctions;
import com.pulumi.oci.CloudGuard.inputs.GetGuardTargetsArgs;
import java.util.List;
import java.util.ArrayList;
import java.util.Map;
import java.io.File;
import java.nio.file.Files;
import java.nio.file.Paths;
public class App {
public static void main(String[] args) {
Pulumi.run(App::stack);
}
public static void stack(Context ctx) {
final var testTargets = CloudGuardFunctions.getGuardTargets(GetGuardTargetsArgs.builder()
.compartmentId(compartmentId)
.accessLevel(targetAccessLevel)
.compartmentIdInSubtree(targetCompartmentIdInSubtree)
.displayName(targetDisplayName)
.isNonSecurityZoneTargetsOnlyQuery(targetIsNonSecurityZoneTargetsOnlyQuery)
.state(targetState)
.build());
}
}
variables:
testTargets:
fn::invoke:
Function: oci:CloudGuard:getGuardTargets
Arguments:
compartmentId: ${compartmentId}
accessLevel: ${targetAccessLevel}
compartmentIdInSubtree: ${targetCompartmentIdInSubtree}
displayName: ${targetDisplayName}
isNonSecurityZoneTargetsOnlyQuery: ${targetIsNonSecurityZoneTargetsOnlyQuery}
state: ${targetState}
Using getGuardTargets
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getGuardTargets(args: GetGuardTargetsArgs, opts?: InvokeOptions): Promise<GetGuardTargetsResult>
function getGuardTargetsOutput(args: GetGuardTargetsOutputArgs, opts?: InvokeOptions): Output<GetGuardTargetsResult>
def get_guard_targets(access_level: Optional[str] = None,
compartment_id: Optional[str] = None,
compartment_id_in_subtree: Optional[bool] = None,
display_name: Optional[str] = None,
filters: Optional[Sequence[_cloudguard.GetGuardTargetsFilter]] = None,
is_non_security_zone_targets_only_query: Optional[bool] = None,
state: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetGuardTargetsResult
def get_guard_targets_output(access_level: Optional[pulumi.Input[str]] = None,
compartment_id: Optional[pulumi.Input[str]] = None,
compartment_id_in_subtree: Optional[pulumi.Input[bool]] = None,
display_name: Optional[pulumi.Input[str]] = None,
filters: Optional[pulumi.Input[Sequence[pulumi.Input[_cloudguard.GetGuardTargetsFilterArgs]]]] = None,
is_non_security_zone_targets_only_query: Optional[pulumi.Input[bool]] = None,
state: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetGuardTargetsResult]
func GetGuardTargets(ctx *Context, args *GetGuardTargetsArgs, opts ...InvokeOption) (*GetGuardTargetsResult, error)
func GetGuardTargetsOutput(ctx *Context, args *GetGuardTargetsOutputArgs, opts ...InvokeOption) GetGuardTargetsResultOutput
> Note: This function is named GetGuardTargets
in the Go SDK.
public static class GetGuardTargets
{
public static Task<GetGuardTargetsResult> InvokeAsync(GetGuardTargetsArgs args, InvokeOptions? opts = null)
public static Output<GetGuardTargetsResult> Invoke(GetGuardTargetsInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetGuardTargetsResult> getGuardTargets(GetGuardTargetsArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:CloudGuard/getGuardTargets:getGuardTargets
arguments:
# arguments dictionary
The following arguments are supported:
- Compartment
Id 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
List<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 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 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
[]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 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 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
List<Get
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 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
Get
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 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
Sequence[cloudguard.
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 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 List<Property Map>
- 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
GetGuardTargetsTargetCollectionItem
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Dictionary<string, object>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- Responder rule description
- Display
Name string - A filter to return only resources that match the entire display name given.
- Dictionary<string, object>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id string
- Unique identifier of target responder recipe that can't be changed after creation
- Inherited
By List<string>Compartments - List of inherited compartments
- Lifecyle
Details string - A message describing the current lifecycle state in more detail. For example, can be used to provide actionable information for a resource in Failed state. [DEPRECATE]
- Recipe
Count int - Total number of recipes attached to target
- State string
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Dictionary<string, object>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Target
Details List<GetGuard Targets Target Collection Item Target Detail> - Details specific to the target type.
- Target
Detector List<GetRecipes Guard Targets Target Collection Item Target Detector Recipe> - List of detector recipes attached to target
- Target
Resource stringId - Resource ID which the target uses to monitor
- Target
Resource stringType - Type of target
- Target
Responder List<GetRecipes Guard Targets Target Collection Item Target Responder Recipe> - List of responder recipes attached to target
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- map[string]interface{}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- Responder rule description
- Display
Name string - A filter to return only resources that match the entire display name given.
- map[string]interface{}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id string
- Unique identifier of target responder recipe that can't be changed after creation
- Inherited
By []stringCompartments - List of inherited compartments
- Lifecyle
Details string - A message describing the current lifecycle state in more detail. For example, can be used to provide actionable information for a resource in Failed state. [DEPRECATE]
- Recipe
Count int - Total number of recipes attached to target
- State string
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- map[string]interface{}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Target
Details []GetGuard Targets Target Collection Item Target Detail - Details specific to the target type.
- Target
Detector []GetRecipes Guard Targets Target Collection Item Target Detector Recipe - List of detector recipes attached to target
- Target
Resource stringId - Resource ID which the target uses to monitor
- Target
Resource stringType - Type of target
- Target
Responder []GetRecipes Guard Targets Target Collection Item Target Responder Recipe - List of responder recipes attached to target
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id String - The OCID of the compartment in which to list resources.
- Map<String,Object>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- Responder rule description
- display
Name String - A filter to return only resources that match the entire display name given.
- Map<String,Object>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id String
- Unique identifier of target responder recipe that can't be changed after creation
- inherited
By List<String>Compartments - List of inherited compartments
- lifecyle
Details String - A message describing the current lifecycle state in more detail. For example, can be used to provide actionable information for a resource in Failed state. [DEPRECATE]
- recipe
Count Integer - Total number of recipes attached to target
- state String
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Map<String,Object>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Details List<GetGuard Targets Target Collection Item Target Detail> - Details specific to the target type.
- target
Detector List<GetRecipes Guard Targets Target Collection Item Target Detector Recipe> - List of detector recipes attached to target
- target
Resource StringId - Resource ID which the target uses to monitor
- target
Resource StringType - Type of target
- target
Responder List<GetRecipes Guard Targets Target Collection Item Target Responder Recipe> - List of responder recipes attached to target
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id string - The OCID of the compartment in which to list resources.
- {[key: string]: any}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- Responder rule description
- display
Name string - A filter to return only resources that match the entire display name given.
- {[key: string]: any}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id string
- Unique identifier of target responder recipe that can't be changed after creation
- inherited
By string[]Compartments - List of inherited compartments
- lifecyle
Details string - A message describing the current lifecycle state in more detail. For example, can be used to provide actionable information for a resource in Failed state. [DEPRECATE]
- recipe
Count number - Total number of recipes attached to target
- state string
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- {[key: string]: any}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Details GetGuard Targets Target Collection Item Target Detail[] - Details specific to the target type.
- target
Detector GetRecipes Guard Targets Target Collection Item Target Detector Recipe[] - List of detector recipes attached to target
- target
Resource stringId - Resource ID which the target uses to monitor
- target
Resource stringType - Type of target
- target
Responder GetRecipes Guard Targets Target Collection Item Target Responder Recipe[] - List of responder recipes attached to target
- time
Created string - The date and time the target was created. Format defined by RFC3339.
- time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- compartment_
id str - The OCID of the compartment in which to list resources.
- Mapping[str, Any]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- Responder rule description
- display_
name str - A filter to return only resources that match the entire display name given.
- Mapping[str, Any]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id str
- Unique identifier of target responder recipe that can't be changed after creation
- inherited_
by_ Sequence[str]compartments - List of inherited compartments
- lifecyle_
details str - A message describing the current lifecycle state in more detail. For example, can be used to provide actionable information for a resource in Failed state. [DEPRECATE]
- recipe_
count int - Total number of recipes attached to target
- state str
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Mapping[str, Any]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target_
details Sequence[cloudguard.Get Guard Targets Target Collection Item Target Detail] - Details specific to the target type.
- target_
detector_ Sequence[cloudguard.recipes Get Guard Targets Target Collection Item Target Detector Recipe] - List of detector recipes attached to target
- target_
resource_ strid - Resource ID which the target uses to monitor
- target_
resource_ strtype - Type of target
- target_
responder_ Sequence[cloudguard.recipes Get Guard Targets Target Collection Item Target Responder Recipe] - List of responder recipes attached to target
- time_
created str - The date and time the target was created. Format defined by RFC3339.
- time_
updated str - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id String - The OCID of the compartment in which to list resources.
- Map<Any>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- Responder rule description
- display
Name String - A filter to return only resources that match the entire display name given.
- Map<Any>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id String
- Unique identifier of target responder recipe that can't be changed after creation
- inherited
By List<String>Compartments - List of inherited compartments
- lifecyle
Details String - A message describing the current lifecycle state in more detail. For example, can be used to provide actionable information for a resource in Failed state. [DEPRECATE]
- recipe
Count Number - Total number of recipes attached to target
- state String
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Map<Any>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- target
Details List<Property Map> - Details specific to the target type.
- target
Detector List<Property Map>Recipes - List of detector recipes attached to target
- target
Resource StringId - Resource ID which the target uses to monitor
- target
Resource StringType - Type of target
- target
Responder List<Property Map>Recipes - List of responder recipes attached to target
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
GetGuardTargetsTargetCollectionItemTargetDetail
- Security
Zone stringDisplay Name - The name of the security zone to associate with this compartment.
- Security
Zone stringId - The OCID of the security zone to associate with this compartment
- Target
Resource stringType - Type of target
- Target
Security List<GetZone Recipes Guard Targets Target Collection Item Target Detail Target Security Zone Recipe> - The list of security zone recipes to associate with this compartment
- Security
Zone stringDisplay Name - The name of the security zone to associate with this compartment.
- Security
Zone stringId - The OCID of the security zone to associate with this compartment
- Target
Resource stringType - Type of target
- Target
Security []GetZone Recipes Guard Targets Target Collection Item Target Detail Target Security Zone Recipe - The list of security zone recipes to associate with this compartment
- security
Zone StringDisplay Name - The name of the security zone to associate with this compartment.
- security
Zone StringId - The OCID of the security zone to associate with this compartment
- target
Resource StringType - Type of target
- target
Security List<GetZone Recipes Guard Targets Target Collection Item Target Detail Target Security Zone Recipe> - The list of security zone recipes to associate with this compartment
- security
Zone stringDisplay Name - The name of the security zone to associate with this compartment.
- security
Zone stringId - The OCID of the security zone to associate with this compartment
- target
Resource stringType - Type of target
- target
Security GetZone Recipes Guard Targets Target Collection Item Target Detail Target Security Zone Recipe[] - The list of security zone recipes to associate with this compartment
- security_
zone_ strdisplay_ name - The name of the security zone to associate with this compartment.
- security_
zone_ strid - The OCID of the security zone to associate with this compartment
- target_
resource_ strtype - Type of target
- target_
security_ Sequence[cloudguard.zone_ recipes 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 StringDisplay Name - The name of the security zone to associate with this compartment.
- security
Zone StringId - The OCID of the security zone to associate with this compartment
- target
Resource StringType - Type of target
- target
Security List<Property Map>Zone Recipes - The list of security zone recipes to associate with this compartment
GetGuardTargetsTargetCollectionItemTargetDetailTargetSecurityZoneRecipe
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Dictionary<string, object>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- Responder rule description
- Display
Name string - A filter to return only resources that match the entire display name given.
- Dictionary<string, object>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id string
- Unique identifier of target responder recipe that can't be changed after creation
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Owner string
- Owner of target responder recipe
- Security
Policies List<string> - The list of security policy IDs that are included in the recipe
- State string
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Dictionary<string, object>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- map[string]interface{}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
- Responder rule description
- Display
Name string - A filter to return only resources that match the entire display name given.
- map[string]interface{}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id string
- Unique identifier of target responder recipe that can't be changed after creation
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Owner string
- Owner of target responder recipe
- Security
Policies []string - The list of security policy IDs that are included in the recipe
- State string
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- map[string]interface{}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id String - The OCID of the compartment in which to list resources.
- Map<String,Object>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- Responder rule description
- display
Name String - A filter to return only resources that match the entire display name given.
- Map<String,Object>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id String
- Unique identifier of target responder recipe that can't be changed after creation
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- owner String
- Owner of target responder recipe
- security
Policies List<String> - The list of security policy IDs that are included in the recipe
- state String
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Map<String,Object>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id string - The OCID of the compartment in which to list resources.
- {[key: string]: any}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
- Responder rule description
- display
Name string - A filter to return only resources that match the entire display name given.
- {[key: string]: any}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id string
- Unique identifier of target responder recipe that can't be changed after creation
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- owner string
- Owner of target responder recipe
- security
Policies string[] - The list of security policy IDs that are included in the recipe
- state string
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- {[key: string]: any}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The date and time the target was created. Format defined by RFC3339.
- time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- compartment_
id str - The OCID of the compartment in which to list resources.
- Mapping[str, Any]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
- Responder rule description
- display_
name str - A filter to return only resources that match the entire display name given.
- Mapping[str, Any]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id str
- Unique identifier of target responder recipe that can't be changed after creation
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- owner str
- Owner of target responder recipe
- security_
policies Sequence[str] - The list of security policy IDs that are included in the recipe
- state str
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Mapping[str, Any]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The date and time the target was created. Format defined by RFC3339.
- time_
updated str - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id String - The OCID of the compartment in which to list resources.
- Map<Any>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
- Responder rule description
- display
Name String - A filter to return only resources that match the entire display name given.
- Map<Any>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id String
- Unique identifier of target responder recipe that can't be changed after creation
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- owner String
- Owner of target responder recipe
- security
Policies List<String> - The list of security policy IDs that are included in the recipe
- state String
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Map<Any>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
GetGuardTargetsTargetCollectionItemTargetDetectorRecipe
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Description string
- Responder rule description
- Detector string
- Detector type for the rule
- Detector
Recipe stringId - Unique identifier for of original Oracle-managed detector recipe on which the TargetDetectorRecipe is based
- Detector
Recipe stringType - Recipe type ( STANDARD, ENTERPRISE )
- Detector
Rules List<GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule> - List of detector rules for the detector recipe - user input
- Display
Name string - A filter to return only resources that match the entire display name given.
- Effective
Detector List<GetRules 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 string
- Unique identifier of target responder recipe that can't be changed after creation
- Owner string
- Owner of target responder recipe
- State string
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Description string
- Responder rule description
- Detector string
- Detector type for the rule
- Detector
Recipe stringId - Unique identifier for of original Oracle-managed detector recipe on which the TargetDetectorRecipe is based
- Detector
Recipe stringType - Recipe type ( STANDARD, ENTERPRISE )
- Detector
Rules []GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule - List of detector rules for the detector recipe - user input
- Display
Name string - A filter to return only resources that match the entire display name given.
- Effective
Detector []GetRules 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 string
- Unique identifier of target responder recipe that can't be changed after creation
- Owner string
- Owner of target responder recipe
- State string
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id String - The OCID of the compartment in which to list resources.
- description String
- Responder rule description
- detector String
- Detector type for the rule
- detector
Recipe StringId - Unique identifier for of original Oracle-managed detector recipe on which the TargetDetectorRecipe is based
- detector
Recipe StringType - Recipe type ( STANDARD, ENTERPRISE )
- detector
Rules List<GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule> - List of detector rules for the detector recipe - user input
- display
Name String - A filter to return only resources that match the entire display name given.
- effective
Detector List<GetRules 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 String
- Unique identifier of target responder recipe that can't be changed after creation
- owner String
- Owner of target responder recipe
- state String
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id string - The OCID of the compartment in which to list resources.
- description string
- Responder rule description
- detector string
- Detector type for the rule
- detector
Recipe stringId - Unique identifier for of original Oracle-managed detector recipe on which the TargetDetectorRecipe is based
- detector
Recipe stringType - Recipe type ( STANDARD, ENTERPRISE )
- detector
Rules GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule[] - List of detector rules for the detector recipe - user input
- display
Name string - A filter to return only resources that match the entire display name given.
- effective
Detector GetRules 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 string
- Unique identifier of target responder recipe that can't be changed after creation
- owner string
- Owner of target responder recipe
- state string
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- time
Created string - The date and time the target was created. Format defined by RFC3339.
- time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- compartment_
id str - The OCID of the compartment in which to list resources.
- description str
- Responder rule description
- detector str
- Detector type for the rule
- detector_
recipe_ strid - Unique identifier for of original Oracle-managed detector recipe on which the TargetDetectorRecipe is based
- detector_
recipe_ strtype - Recipe type ( STANDARD, ENTERPRISE )
- detector_
rules 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 str - A filter to return only resources that match the entire display name given.
- effective_
detector_ Sequence[cloudguard.rules 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 str
- Unique identifier of target responder recipe that can't be changed after creation
- owner str
- Owner of target responder recipe
- state str
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- time_
created str - The date and time the target was created. Format defined by RFC3339.
- time_
updated str - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id String - The OCID of the compartment in which to list resources.
- description String
- Responder rule description
- detector String
- Detector type for the rule
- detector
Recipe StringId - Unique identifier for of original Oracle-managed detector recipe on which the TargetDetectorRecipe is based
- detector
Recipe StringType - Recipe type ( STANDARD, ENTERPRISE )
- detector
Rules List<Property Map> - List of detector rules for the detector recipe - user input
- display
Name String - A filter to return only resources that match the entire display name given.
- effective
Detector List<Property Map>Rules - List of currently enabled detector rules for the detector type for recipe after applying defaults
- id String
- Unique identifier of target responder recipe that can't be changed after creation
- owner String
- Owner of target responder recipe
- state String
- 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 String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRule
- Data
Source stringId - The ID of the attached data source
- Description string
- Responder rule description
- Details
List<Get
Guard Targets Target Collection Item Target Detector Recipe Detector Rule Detail> - Detailed information for a responder rule
- Detector string
- Detector type for the rule
- Detector
Rule stringId - The unique identifier of the detector rule
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entities
Mappings List<GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Entities Mapping> - Data source entities mapping for a detector rule
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Managed
List List<string>Types - List of managed list types related to this rule
- Recommendation string
- Recommendation for TargetDetectorRecipeDetectorRule resource
- Resource
Type string - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- Service
Type string - Service type of the configuration to which the rule is applied
- State string
- 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 string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- Data
Source stringId - The ID of the attached data source
- Description string
- Responder rule description
- Details
[]Get
Guard Targets Target Collection Item Target Detector Recipe Detector Rule Detail - Detailed information for a responder rule
- Detector string
- Detector type for the rule
- Detector
Rule stringId - The unique identifier of the detector rule
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entities
Mappings []GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Entities Mapping - Data source entities mapping for a detector rule
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Managed
List []stringTypes - List of managed list types related to this rule
- Recommendation string
- Recommendation for TargetDetectorRecipeDetectorRule resource
- Resource
Type string - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- Service
Type string - Service type of the configuration to which the rule is applied
- State string
- 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 string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- data
Source StringId - The ID of the attached data source
- description String
- Responder rule description
- details
List<Get
Guard Targets Target Collection Item Target Detector Recipe Detector Rule Detail> - Detailed information for a responder rule
- detector String
- Detector type for the rule
- detector
Rule StringId - The unique identifier of the detector rule
- display
Name String - A filter to return only resources that match the entire display name given.
- entities
Mappings List<GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Entities Mapping> - Data source entities mapping for a detector rule
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed
List List<String>Types - List of managed list types related to this rule
- recommendation String
- Recommendation for TargetDetectorRecipeDetectorRule resource
- resource
Type String - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- service
Type String - Service type of the configuration to which the rule is applied
- state String
- 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 String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
- data
Source stringId - The ID of the attached data source
- description string
- Responder rule description
- details
Get
Guard Targets Target Collection Item Target Detector Recipe Detector Rule Detail[] - Detailed information for a responder rule
- detector string
- Detector type for the rule
- detector
Rule stringId - The unique identifier of the detector rule
- display
Name string - A filter to return only resources that match the entire display name given.
- entities
Mappings GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Entities Mapping[] - Data source entities mapping for a detector rule
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed
List string[]Types - List of managed list types related to this rule
- recommendation string
- Recommendation for TargetDetectorRecipeDetectorRule resource
- resource
Type string - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- service
Type string - Service type of the configuration to which the rule is applied
- state string
- 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 string - The date and time the target was created. Format defined by RFC3339.
- time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- data_
source_ strid - The ID of the attached data source
- description str
- Responder rule description
- details
Sequence[cloudguard.
Get Guard Targets Target Collection Item Target Detector Recipe Detector Rule Detail] - Detailed information for a responder rule
- detector str
- Detector type for the rule
- detector_
rule_ strid - The unique identifier of the detector rule
- display_
name str - A filter to return only resources that match the entire display name given.
- entities_
mappings 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 str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed_
list_ Sequence[str]types - List of managed list types related to this rule
- recommendation str
- Recommendation for TargetDetectorRecipeDetectorRule resource
- resource_
type str - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- service_
type str - Service type of the configuration to which the rule is applied
- state str
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- time_
created str - The date and time the target was created. Format defined by RFC3339.
- time_
updated str - The date and time the target was last updated. Format defined by RFC3339.
- data
Source StringId - The ID of the attached data source
- description String
- Responder rule description
- details List<Property Map>
- Detailed information for a responder rule
- detector String
- Detector type for the rule
- detector
Rule StringId - The unique identifier of the detector rule
- display
Name String - A filter to return only resources that match the entire display name given.
- entities
Mappings List<Property Map> - Data source entities mapping for a detector rule
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed
List List<String>Types - List of managed list types related to this rule
- recommendation String
- Recommendation for TargetDetectorRecipeDetectorRule resource
- resource
Type String - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- service
Type String - Service type of the configuration to which the rule is applied
- state String
- 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 String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetail
- Condition
Groups List<GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Condition Group> - Condition group corresponding to each compartment
- Configurations
List<Get
Guard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Configuration> - List of responder rule configurations
- Is
Configuration boolAllowed - Configuration allowed or not
- Is
Enabled bool - Enabled state for the responder rule
- Labels List<string>
- User-defined labels for a detector rule
- Risk
Level string - The risk level of the detector rule
- Condition
Groups []GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Condition Group - Condition group corresponding to each compartment
- Configurations
[]Get
Guard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Configuration - List of responder rule configurations
- Is
Configuration boolAllowed - Configuration allowed or not
- Is
Enabled bool - Enabled state for the responder rule
- Labels []string
- User-defined labels for a detector rule
- Risk
Level string - The risk level of the detector rule
- condition
Groups List<GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Condition Group> - Condition group corresponding to each compartment
- configurations
List<Get
Guard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Configuration> - List of responder rule configurations
- is
Configuration BooleanAllowed - Configuration allowed or not
- is
Enabled Boolean - Enabled state for the responder rule
- labels List<String>
- User-defined labels for a detector rule
- risk
Level String - The risk level of the detector rule
- condition
Groups GetGuard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Condition Group[] - Condition group corresponding to each compartment
- configurations
Get
Guard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Configuration[] - List of responder rule configurations
- is
Configuration booleanAllowed - Configuration allowed or not
- is
Enabled boolean - Enabled state for the responder rule
- labels string[]
- User-defined labels for a detector rule
- risk
Level string - The risk level of the detector rule
- condition_
groups Sequence[cloudguard.Get Guard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Condition Group] - Condition group corresponding to each compartment
- configurations
Sequence[cloudguard.
Get Guard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Configuration] - List of responder rule configurations
- is_
configuration_ boolallowed - Configuration allowed or not
- is_
enabled bool - Enabled state for the responder rule
- labels Sequence[str]
- User-defined labels for a detector rule
- risk_
level str - The risk level of the detector rule
- condition
Groups List<Property Map> - Condition group corresponding to each compartment
- configurations List<Property Map>
- List of responder rule configurations
- is
Configuration BooleanAllowed - Configuration allowed or not
- is
Enabled Boolean - Enabled state for the responder rule
- labels List<String>
- User-defined labels for a detector rule
- risk
Level String - The risk level of the detector rule
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConditionGroup
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Condition string
- The base condition resource.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Condition string
- The base condition resource.
- compartment
Id String - The OCID of the compartment in which to list resources.
- condition String
- The base condition resource.
- compartment
Id string - The OCID of the compartment in which to list resources.
- condition string
- The base condition resource.
- compartment_
id str - The OCID of the compartment in which to list resources.
- condition str
- The base condition resource.
- compartment
Id String - The OCID of the compartment in which to list resources.
- condition String
- The base condition resource.
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfiguration
- config_
key str - Unique identifier of the configuration
- data_
type str - Configuration data type
- name str
- Configuration name
- value str
- Configuration value
- values
Sequence[cloudguard.
Get Guard Targets Target Collection Item Target Detector Recipe Detector Rule Detail Configuration Value] - List of configuration values
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleDetailConfigurationValue
- List
Type string - Configuration list item type (CUSTOM or MANAGED)
- Managed
List stringType - Type of content in the managed list
- Value string
- Configuration value
- List
Type string - Configuration list item type (CUSTOM or MANAGED)
- Managed
List stringType - Type of content in the managed list
- Value string
- Configuration value
- list
Type String - Configuration list item type (CUSTOM or MANAGED)
- managed
List StringType - Type of content in the managed list
- value String
- Configuration value
- list
Type string - Configuration list item type (CUSTOM or MANAGED)
- managed
List stringType - Type of content in the managed list
- value string
- Configuration value
- list_
type str - Configuration list item type (CUSTOM or MANAGED)
- managed_
list_ strtype - Type of content in the managed list
- value str
- Configuration value
- list
Type String - Configuration list item type (CUSTOM or MANAGED)
- managed
List StringType - Type of content in the managed list
- value String
- Configuration value
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeDetectorRuleEntitiesMapping
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entity
Type string - Type of entity
- Query
Field string - The entity value mapped to a data source query
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entity
Type string - Type of entity
- Query
Field string - The entity value mapped to a data source query
- display
Name String - A filter to return only resources that match the entire display name given.
- entity
Type String - Type of entity
- query
Field String - The entity value mapped to a data source query
- display
Name string - A filter to return only resources that match the entire display name given.
- entity
Type string - Type of entity
- query
Field string - The entity value mapped to a data source query
- display_
name str - A filter to return only resources that match the entire display name given.
- entity_
type str - Type of entity
- query_
field str - The entity value mapped to a data source query
- display
Name String - A filter to return only resources that match the entire display name given.
- entity
Type String - Type of entity
- query
Field String - The entity value mapped to a data source query
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRule
- Data
Source stringId - The ID of the attached data source
- Description string
- Responder rule description
- Details
List<Get
Guard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail> - Detailed information for a responder rule
- Detector string
- Detector type for the rule
- Detector
Rule stringId - The unique identifier of the detector rule
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entities
Mappings List<GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Entities Mapping> - Data source entities mapping for a detector rule
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Managed
List List<string>Types - List of managed list types related to this rule
- Recommendation string
- Recommendation for TargetDetectorRecipeDetectorRule resource
- Resource
Type string - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- Service
Type string - Service type of the configuration to which the rule is applied
- State string
- 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 string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- Data
Source stringId - The ID of the attached data source
- Description string
- Responder rule description
- Details
[]Get
Guard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail - Detailed information for a responder rule
- Detector string
- Detector type for the rule
- Detector
Rule stringId - The unique identifier of the detector rule
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entities
Mappings []GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Entities Mapping - Data source entities mapping for a detector rule
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Managed
List []stringTypes - List of managed list types related to this rule
- Recommendation string
- Recommendation for TargetDetectorRecipeDetectorRule resource
- Resource
Type string - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- Service
Type string - Service type of the configuration to which the rule is applied
- State string
- 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 string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- data
Source StringId - The ID of the attached data source
- description String
- Responder rule description
- details
List<Get
Guard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail> - Detailed information for a responder rule
- detector String
- Detector type for the rule
- detector
Rule StringId - The unique identifier of the detector rule
- display
Name String - A filter to return only resources that match the entire display name given.
- entities
Mappings List<GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Entities Mapping> - Data source entities mapping for a detector rule
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed
List List<String>Types - List of managed list types related to this rule
- recommendation String
- Recommendation for TargetDetectorRecipeDetectorRule resource
- resource
Type String - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- service
Type String - Service type of the configuration to which the rule is applied
- state String
- 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 String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
- data
Source stringId - The ID of the attached data source
- description string
- Responder rule description
- details
Get
Guard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail[] - Detailed information for a responder rule
- detector string
- Detector type for the rule
- detector
Rule stringId - The unique identifier of the detector rule
- display
Name string - A filter to return only resources that match the entire display name given.
- entities
Mappings GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Entities Mapping[] - Data source entities mapping for a detector rule
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed
List string[]Types - List of managed list types related to this rule
- recommendation string
- Recommendation for TargetDetectorRecipeDetectorRule resource
- resource
Type string - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- service
Type string - Service type of the configuration to which the rule is applied
- state string
- 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 string - The date and time the target was created. Format defined by RFC3339.
- time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- data_
source_ strid - The ID of the attached data source
- description str
- Responder rule description
- details
Sequence[cloudguard.
Get Guard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail] - Detailed information for a responder rule
- detector str
- Detector type for the rule
- detector_
rule_ strid - The unique identifier of the detector rule
- display_
name str - A filter to return only resources that match the entire display name given.
- entities_
mappings 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 str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed_
list_ Sequence[str]types - List of managed list types related to this rule
- recommendation str
- Recommendation for TargetDetectorRecipeDetectorRule resource
- resource_
type str - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- service_
type str - Service type of the configuration to which the rule is applied
- state str
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- time_
created str - The date and time the target was created. Format defined by RFC3339.
- time_
updated str - The date and time the target was last updated. Format defined by RFC3339.
- data
Source StringId - The ID of the attached data source
- description String
- Responder rule description
- details List<Property Map>
- Detailed information for a responder rule
- detector String
- Detector type for the rule
- detector
Rule StringId - The unique identifier of the detector rule
- display
Name String - A filter to return only resources that match the entire display name given.
- entities
Mappings List<Property Map> - Data source entities mapping for a detector rule
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- managed
List List<String>Types - List of managed list types related to this rule
- recommendation String
- Recommendation for TargetDetectorRecipeDetectorRule resource
- resource
Type String - The type of resource which is monitored by the detector rule. For example, Instance, Database, VCN, Policy. To find the resource type for a particular rule, see [Detector Recipe Reference] (/iaas/cloud-guard/using/detect-recipes.htm#detect-recipes-reference).
- service
Type String - Service type of the configuration to which the rule is applied
- state String
- 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 String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetail
- Condition
Groups List<GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Condition Group> - Condition group corresponding to each compartment
- Configurations
List<Get
Guard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Configuration> - List of responder rule configurations
- Is
Configuration boolAllowed - Configuration allowed or not
- Is
Enabled bool - Enabled state for the responder rule
- Labels List<string>
- User-defined labels for a detector rule
- Risk
Level string - The risk level of the detector rule
- Condition
Groups []GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Condition Group - Condition group corresponding to each compartment
- Configurations
[]Get
Guard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Configuration - List of responder rule configurations
- Is
Configuration boolAllowed - Configuration allowed or not
- Is
Enabled bool - Enabled state for the responder rule
- Labels []string
- User-defined labels for a detector rule
- Risk
Level string - The risk level of the detector rule
- condition
Groups List<GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Condition Group> - Condition group corresponding to each compartment
- configurations
List<Get
Guard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Configuration> - List of responder rule configurations
- is
Configuration BooleanAllowed - Configuration allowed or not
- is
Enabled Boolean - Enabled state for the responder rule
- labels List<String>
- User-defined labels for a detector rule
- risk
Level String - The risk level of the detector rule
- condition
Groups GetGuard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Condition Group[] - Condition group corresponding to each compartment
- configurations
Get
Guard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Configuration[] - List of responder rule configurations
- is
Configuration booleanAllowed - Configuration allowed or not
- is
Enabled boolean - Enabled state for the responder rule
- labels string[]
- User-defined labels for a detector rule
- risk
Level string - The risk level of the detector rule
- condition_
groups Sequence[cloudguard.Get Guard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Condition Group] - Condition group corresponding to each compartment
- configurations
Sequence[cloudguard.
Get Guard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Configuration] - List of responder rule configurations
- is_
configuration_ boolallowed - Configuration allowed or not
- is_
enabled bool - Enabled state for the responder rule
- labels Sequence[str]
- User-defined labels for a detector rule
- risk_
level str - The risk level of the detector rule
- condition
Groups List<Property Map> - Condition group corresponding to each compartment
- configurations List<Property Map>
- List of responder rule configurations
- is
Configuration BooleanAllowed - Configuration allowed or not
- is
Enabled Boolean - Enabled state for the responder rule
- labels List<String>
- User-defined labels for a detector rule
- risk
Level String - The risk level of the detector rule
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConditionGroup
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Condition string
- The base condition resource.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Condition string
- The base condition resource.
- compartment
Id String - The OCID of the compartment in which to list resources.
- condition String
- The base condition resource.
- compartment
Id string - The OCID of the compartment in which to list resources.
- condition string
- The base condition resource.
- compartment_
id str - The OCID of the compartment in which to list resources.
- condition str
- The base condition resource.
- compartment
Id String - The OCID of the compartment in which to list resources.
- condition String
- The base condition resource.
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfiguration
- config_
key str - Unique identifier of the configuration
- data_
type str - Configuration data type
- name str
- Configuration name
- value str
- Configuration value
- values
Sequence[cloudguard.
Get Guard Targets Target Collection Item Target Detector Recipe Effective Detector Rule Detail Configuration Value] - List of configuration values
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleDetailConfigurationValue
- List
Type string - Configuration list item type (CUSTOM or MANAGED)
- Managed
List stringType - Type of content in the managed list
- Value string
- Configuration value
- List
Type string - Configuration list item type (CUSTOM or MANAGED)
- Managed
List stringType - Type of content in the managed list
- Value string
- Configuration value
- list
Type String - Configuration list item type (CUSTOM or MANAGED)
- managed
List StringType - Type of content in the managed list
- value String
- Configuration value
- list
Type string - Configuration list item type (CUSTOM or MANAGED)
- managed
List stringType - Type of content in the managed list
- value string
- Configuration value
- list_
type str - Configuration list item type (CUSTOM or MANAGED)
- managed_
list_ strtype - Type of content in the managed list
- value str
- Configuration value
- list
Type String - Configuration list item type (CUSTOM or MANAGED)
- managed
List StringType - Type of content in the managed list
- value String
- Configuration value
GetGuardTargetsTargetCollectionItemTargetDetectorRecipeEffectiveDetectorRuleEntitiesMapping
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entity
Type string - Type of entity
- Query
Field string - The entity value mapped to a data source query
- Display
Name string - A filter to return only resources that match the entire display name given.
- Entity
Type string - Type of entity
- Query
Field string - The entity value mapped to a data source query
- display
Name String - A filter to return only resources that match the entire display name given.
- entity
Type String - Type of entity
- query
Field String - The entity value mapped to a data source query
- display
Name string - A filter to return only resources that match the entire display name given.
- entity
Type string - Type of entity
- query
Field string - The entity value mapped to a data source query
- display_
name str - A filter to return only resources that match the entire display name given.
- entity_
type str - Type of entity
- query_
field str - The entity value mapped to a data source query
- display
Name String - A filter to return only resources that match the entire display name given.
- entity
Type String - Type of entity
- query
Field String - The entity value mapped to a data source query
GetGuardTargetsTargetCollectionItemTargetResponderRecipe
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Description string
- Responder rule description
- Display
Name string - A filter to return only resources that match the entire display name given.
- Effective
Responder List<GetRules 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 string
- Unique identifier of target responder recipe that can't be changed after creation
- Owner string
- Owner of target responder recipe
- Responder
Recipe stringId - Unique identifier for the Oracle-managed responder recipe from which this recipe was cloned
- Responder
Rules List<GetGuard Targets Target Collection Item Target Responder Recipe Responder Rule> - List of responder rules associated with the recipe - user input
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Description string
- Responder rule description
- Display
Name string - A filter to return only resources that match the entire display name given.
- Effective
Responder []GetRules 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 string
- Unique identifier of target responder recipe that can't be changed after creation
- Owner string
- Owner of target responder recipe
- Responder
Recipe stringId - Unique identifier for the Oracle-managed responder recipe from which this recipe was cloned
- Responder
Rules []GetGuard Targets Target Collection Item Target Responder Recipe Responder Rule - List of responder rules associated with the recipe - user input
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id String - The OCID of the compartment in which to list resources.
- description String
- Responder rule description
- display
Name String - A filter to return only resources that match the entire display name given.
- effective
Responder List<GetRules 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 String
- Unique identifier of target responder recipe that can't be changed after creation
- owner String
- Owner of target responder recipe
- responder
Recipe StringId - Unique identifier for the Oracle-managed responder recipe from which this recipe was cloned
- responder
Rules List<GetGuard Targets Target Collection Item Target Responder Recipe Responder Rule> - List of responder rules associated with the recipe - user input
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id string - The OCID of the compartment in which to list resources.
- description string
- Responder rule description
- display
Name string - A filter to return only resources that match the entire display name given.
- effective
Responder GetRules 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 string
- Unique identifier of target responder recipe that can't be changed after creation
- owner string
- Owner of target responder recipe
- responder
Recipe stringId - Unique identifier for the Oracle-managed responder recipe from which this recipe was cloned
- responder
Rules GetGuard Targets Target Collection Item Target Responder Recipe Responder Rule[] - List of responder rules associated with the recipe - user input
- time
Created string - The date and time the target was created. Format defined by RFC3339.
- time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- compartment_
id str - The OCID of the compartment in which to list resources.
- description str
- Responder rule description
- display_
name str - A filter to return only resources that match the entire display name given.
- effective_
responder_ Sequence[cloudguard.rules 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 str
- Unique identifier of target responder recipe that can't be changed after creation
- owner str
- Owner of target responder recipe
- responder_
recipe_ strid - Unique identifier for the Oracle-managed responder recipe from which this recipe was cloned
- responder_
rules 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 str - The date and time the target was created. Format defined by RFC3339.
- time_
updated str - The date and time the target was last updated. Format defined by RFC3339.
- compartment
Id String - The OCID of the compartment in which to list resources.
- description String
- Responder rule description
- display
Name String - A filter to return only resources that match the entire display name given.
- effective
Responder List<Property Map>Rules - List of currently enabled responder rules for the responder type for recipe after applying defaults
- id String
- Unique identifier of target responder recipe that can't be changed after creation
- owner String
- Owner of target responder recipe
- responder
Recipe StringId - Unique identifier for the Oracle-managed responder recipe from which this recipe was cloned
- responder
Rules List<Property Map> - List of responder rules associated with the recipe - user input
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRule
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Description string
- Responder rule description
- Details
List<Get
Guard Targets Target Collection Item Target Responder Recipe Effective Responder Rule Detail> - Detailed information for a responder rule
- Display
Name string - A filter to return only resources that match the entire display name given.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Policies List<string>
- List of policies
- Responder
Rule stringId - Unique identifier for the responder rule
- State string
- 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 List<string> - Supported execution modes for the responder rule
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- Type string
- Type of responder
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Description string
- Responder rule description
- Details
[]Get
Guard Targets Target Collection Item Target Responder Recipe Effective Responder Rule Detail - Detailed information for a responder rule
- Display
Name string - A filter to return only resources that match the entire display name given.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Policies []string
- List of policies
- Responder
Rule stringId - Unique identifier for the responder rule
- State string
- 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 []string - Supported execution modes for the responder rule
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- Type string
- Type of responder
- compartment
Id String - The OCID of the compartment in which to list resources.
- description String
- Responder rule description
- details
List<Get
Guard Targets Target Collection Item Target Responder Recipe Effective Responder Rule Detail> - Detailed information for a responder rule
- display
Name String - A filter to return only resources that match the entire display name given.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies List<String>
- List of policies
- responder
Rule StringId - Unique identifier for the responder rule
- state String
- 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 List<String> - Supported execution modes for the responder rule
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
- type String
- Type of responder
- compartment
Id string - The OCID of the compartment in which to list resources.
- description string
- Responder rule description
- details
Get
Guard Targets Target Collection Item Target Responder Recipe Effective Responder Rule Detail[] - Detailed information for a responder rule
- display
Name string - A filter to return only resources that match the entire display name given.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies string[]
- List of policies
- responder
Rule stringId - Unique identifier for the responder rule
- state string
- 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 string[] - Supported execution modes for the responder rule
- time
Created string - The date and time the target was created. Format defined by RFC3339.
- time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- type string
- Type of responder
- compartment_
id str - The OCID of the compartment in which to list resources.
- description str
- Responder rule description
- details
Sequence[cloudguard.
Get Guard Targets Target Collection Item Target Responder Recipe Effective Responder Rule Detail] - Detailed information for a responder rule
- display_
name str - A filter to return only resources that match the entire display name given.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies Sequence[str]
- List of policies
- responder_
rule_ strid - Unique identifier for the responder rule
- state str
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- supported_
modes Sequence[str] - Supported execution modes for the responder rule
- time_
created str - The date and time the target was created. Format defined by RFC3339.
- time_
updated str - The date and time the target was last updated. Format defined by RFC3339.
- type str
- Type of responder
- compartment
Id String - The OCID of the compartment in which to list resources.
- description String
- Responder rule description
- details List<Property Map>
- Detailed information for a responder rule
- display
Name String - A filter to return only resources that match the entire display name given.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies List<String>
- List of policies
- responder
Rule StringId - Unique identifier for the responder rule
- state String
- 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 List<String> - Supported execution modes for the responder rule
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
- type String
- Type of responder
GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetail
- Condition string
- The base condition resource.
- Configurations
List<Get
Guard Targets Target Collection Item Target Responder Recipe Effective Responder Rule Detail Configuration> - List of responder rule configurations
- Is
Enabled bool - Enabled state for the responder rule
- Mode string
- Execution mode for the responder rule
- Condition string
- The base condition resource.
- Configurations
[]Get
Guard Targets Target Collection Item Target Responder Recipe Effective Responder Rule Detail Configuration - List of responder rule configurations
- Is
Enabled bool - Enabled state for the responder rule
- Mode string
- Execution mode for the responder rule
- condition String
- The base condition resource.
- configurations
List<Get
Guard Targets Target Collection Item Target Responder Recipe Effective Responder Rule Detail Configuration> - List of responder rule configurations
- is
Enabled Boolean - Enabled state for the responder rule
- mode String
- Execution mode for the responder rule
- condition string
- The base condition resource.
- configurations
Get
Guard Targets Target Collection Item Target Responder Recipe Effective Responder Rule Detail Configuration[] - List of responder rule configurations
- is
Enabled boolean - Enabled state for the responder rule
- mode string
- Execution mode for the responder rule
- condition str
- The base condition resource.
- configurations
Sequence[cloudguard.
Get Guard Targets Target Collection Item Target Responder Recipe Effective Responder Rule Detail Configuration] - List of responder rule configurations
- is_
enabled bool - Enabled state for the responder rule
- mode str
- Execution mode for the responder rule
- condition String
- The base condition resource.
- configurations List<Property Map>
- List of responder rule configurations
- is
Enabled Boolean - Enabled state for the responder rule
- mode String
- Execution mode for the responder rule
GetGuardTargetsTargetCollectionItemTargetResponderRecipeEffectiveResponderRuleDetailConfiguration
- config_
key str - Unique identifier of the configuration
- name str
- Configuration name
- value str
- Configuration value
GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRule
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Description string
- Responder rule description
- Details
List<Get
Guard Targets Target Collection Item Target Responder Recipe Responder Rule Detail> - Detailed information for a responder rule
- Display
Name string - A filter to return only resources that match the entire display name given.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Policies List<string>
- List of policies
- Responder
Rule stringId - Unique identifier for the responder rule
- State string
- 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 List<string> - Supported execution modes for the responder rule
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- Type string
- Type of responder
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Description string
- Responder rule description
- Details
[]Get
Guard Targets Target Collection Item Target Responder Recipe Responder Rule Detail - Detailed information for a responder rule
- Display
Name string - A filter to return only resources that match the entire display name given.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Policies []string
- List of policies
- Responder
Rule stringId - Unique identifier for the responder rule
- State string
- 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 []string - Supported execution modes for the responder rule
- Time
Created string - The date and time the target was created. Format defined by RFC3339.
- Time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- Type string
- Type of responder
- compartment
Id String - The OCID of the compartment in which to list resources.
- description String
- Responder rule description
- details
List<Get
Guard Targets Target Collection Item Target Responder Recipe Responder Rule Detail> - Detailed information for a responder rule
- display
Name String - A filter to return only resources that match the entire display name given.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies List<String>
- List of policies
- responder
Rule StringId - Unique identifier for the responder rule
- state String
- 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 List<String> - Supported execution modes for the responder rule
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
- type String
- Type of responder
- compartment
Id string - The OCID of the compartment in which to list resources.
- description string
- Responder rule description
- details
Get
Guard Targets Target Collection Item Target Responder Recipe Responder Rule Detail[] - Detailed information for a responder rule
- display
Name string - A filter to return only resources that match the entire display name given.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies string[]
- List of policies
- responder
Rule stringId - Unique identifier for the responder rule
- state string
- 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 string[] - Supported execution modes for the responder rule
- time
Created string - The date and time the target was created. Format defined by RFC3339.
- time
Updated string - The date and time the target was last updated. Format defined by RFC3339.
- type string
- Type of responder
- compartment_
id str - The OCID of the compartment in which to list resources.
- description str
- Responder rule description
- details
Sequence[cloudguard.
Get Guard Targets Target Collection Item Target Responder Recipe Responder Rule Detail] - Detailed information for a responder rule
- display_
name str - A filter to return only resources that match the entire display name given.
- lifecycle_
details str - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies Sequence[str]
- List of policies
- responder_
rule_ strid - Unique identifier for the responder rule
- state str
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- supported_
modes Sequence[str] - Supported execution modes for the responder rule
- time_
created str - The date and time the target was created. Format defined by RFC3339.
- time_
updated str - The date and time the target was last updated. Format defined by RFC3339.
- type str
- Type of responder
- compartment
Id String - The OCID of the compartment in which to list resources.
- description String
- Responder rule description
- details List<Property Map>
- Detailed information for a responder rule
- display
Name String - A filter to return only resources that match the entire display name given.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies List<String>
- List of policies
- responder
Rule StringId - Unique identifier for the responder rule
- state String
- 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 List<String> - Supported execution modes for the responder rule
- time
Created String - The date and time the target was created. Format defined by RFC3339.
- time
Updated String - The date and time the target was last updated. Format defined by RFC3339.
- type String
- Type of responder
GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetail
- Condition string
- The base condition resource.
- Configurations
List<Get
Guard Targets Target Collection Item Target Responder Recipe Responder Rule Detail Configuration> - List of responder rule configurations
- Is
Enabled bool - Enabled state for the responder rule
- Mode string
- Execution mode for the responder rule
- Condition string
- The base condition resource.
- Configurations
[]Get
Guard Targets Target Collection Item Target Responder Recipe Responder Rule Detail Configuration - List of responder rule configurations
- Is
Enabled bool - Enabled state for the responder rule
- Mode string
- Execution mode for the responder rule
- condition String
- The base condition resource.
- configurations
List<Get
Guard Targets Target Collection Item Target Responder Recipe Responder Rule Detail Configuration> - List of responder rule configurations
- is
Enabled Boolean - Enabled state for the responder rule
- mode String
- Execution mode for the responder rule
- condition string
- The base condition resource.
- configurations
Get
Guard Targets Target Collection Item Target Responder Recipe Responder Rule Detail Configuration[] - List of responder rule configurations
- is
Enabled boolean - Enabled state for the responder rule
- mode string
- Execution mode for the responder rule
- condition str
- The base condition resource.
- configurations
Sequence[cloudguard.
Get Guard Targets Target Collection Item Target Responder Recipe Responder Rule Detail Configuration] - List of responder rule configurations
- is_
enabled bool - Enabled state for the responder rule
- mode str
- Execution mode for the responder rule
- condition String
- The base condition resource.
- configurations List<Property Map>
- List of responder rule configurations
- is
Enabled Boolean - Enabled state for the responder rule
- mode String
- Execution mode for the responder rule
GetGuardTargetsTargetCollectionItemTargetResponderRecipeResponderRuleDetailConfiguration
- config_
key str - Unique identifier of the configuration
- name str
- Configuration name
- value 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.