1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. CloudGuard
  5. getResponderRecipes
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

oci.CloudGuard.getResponderRecipes

Explore with Pulumi AI

Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi

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

Returns a list (ResponderRecipeCollection resource, with a page of ResponderRecipeSummary resources) of all responder recipes (RespponderRecipe resources) in a compartment, identified by compartmentId. The ListResponderRecipe operation returns only the targets in compartmentId passed. The list does not include any subcompartments of the compartmentId passed.

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

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

Example Usage

import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";

const testResponderRecipes = oci.CloudGuard.getResponderRecipes({
    compartmentId: compartmentId,
    accessLevel: responderRecipeAccessLevel,
    compartmentIdInSubtree: responderRecipeCompartmentIdInSubtree,
    displayName: responderRecipeDisplayName,
    resourceMetadataOnly: responderRecipeResourceMetadataOnly,
    state: responderRecipeState,
});
Copy
import pulumi
import pulumi_oci as oci

test_responder_recipes = oci.CloudGuard.get_responder_recipes(compartment_id=compartment_id,
    access_level=responder_recipe_access_level,
    compartment_id_in_subtree=responder_recipe_compartment_id_in_subtree,
    display_name=responder_recipe_display_name,
    resource_metadata_only=responder_recipe_resource_metadata_only,
    state=responder_recipe_state)
Copy
package main

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

func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := cloudguard.GetResponderRecipes(ctx, &cloudguard.GetResponderRecipesArgs{
			CompartmentId:          compartmentId,
			AccessLevel:            pulumi.StringRef(responderRecipeAccessLevel),
			CompartmentIdInSubtree: pulumi.BoolRef(responderRecipeCompartmentIdInSubtree),
			DisplayName:            pulumi.StringRef(responderRecipeDisplayName),
			ResourceMetadataOnly:   pulumi.BoolRef(responderRecipeResourceMetadataOnly),
			State:                  pulumi.StringRef(responderRecipeState),
		}, nil)
		if err != nil {
			return err
		}
		return nil
	})
}
Copy
using System.Collections.Generic;
using System.Linq;
using Pulumi;
using Oci = Pulumi.Oci;

return await Deployment.RunAsync(() => 
{
    var testResponderRecipes = Oci.CloudGuard.GetResponderRecipes.Invoke(new()
    {
        CompartmentId = compartmentId,
        AccessLevel = responderRecipeAccessLevel,
        CompartmentIdInSubtree = responderRecipeCompartmentIdInSubtree,
        DisplayName = responderRecipeDisplayName,
        ResourceMetadataOnly = responderRecipeResourceMetadataOnly,
        State = responderRecipeState,
    });

});
Copy
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.GetResponderRecipesArgs;
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 testResponderRecipes = CloudGuardFunctions.getResponderRecipes(GetResponderRecipesArgs.builder()
            .compartmentId(compartmentId)
            .accessLevel(responderRecipeAccessLevel)
            .compartmentIdInSubtree(responderRecipeCompartmentIdInSubtree)
            .displayName(responderRecipeDisplayName)
            .resourceMetadataOnly(responderRecipeResourceMetadataOnly)
            .state(responderRecipeState)
            .build());

    }
}
Copy
variables:
  testResponderRecipes:
    fn::invoke:
      function: oci:CloudGuard:getResponderRecipes
      arguments:
        compartmentId: ${compartmentId}
        accessLevel: ${responderRecipeAccessLevel}
        compartmentIdInSubtree: ${responderRecipeCompartmentIdInSubtree}
        displayName: ${responderRecipeDisplayName}
        resourceMetadataOnly: ${responderRecipeResourceMetadataOnly}
        state: ${responderRecipeState}
Copy

Using getResponderRecipes

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 getResponderRecipes(args: GetResponderRecipesArgs, opts?: InvokeOptions): Promise<GetResponderRecipesResult>
function getResponderRecipesOutput(args: GetResponderRecipesOutputArgs, opts?: InvokeOptions): Output<GetResponderRecipesResult>
Copy
def get_responder_recipes(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.GetResponderRecipesFilter]] = None,
                          resource_metadata_only: Optional[bool] = None,
                          state: Optional[str] = None,
                          opts: Optional[InvokeOptions] = None) -> GetResponderRecipesResult
def get_responder_recipes_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.GetResponderRecipesFilterArgs]]]] = None,
                          resource_metadata_only: Optional[pulumi.Input[bool]] = None,
                          state: Optional[pulumi.Input[str]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetResponderRecipesResult]
Copy
func GetResponderRecipes(ctx *Context, args *GetResponderRecipesArgs, opts ...InvokeOption) (*GetResponderRecipesResult, error)
func GetResponderRecipesOutput(ctx *Context, args *GetResponderRecipesOutputArgs, opts ...InvokeOption) GetResponderRecipesResultOutput
Copy

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

public static class GetResponderRecipes 
{
    public static Task<GetResponderRecipesResult> InvokeAsync(GetResponderRecipesArgs args, InvokeOptions? opts = null)
    public static Output<GetResponderRecipesResult> Invoke(GetResponderRecipesInvokeArgs args, InvokeOptions? opts = null)
}
Copy
public static CompletableFuture<GetResponderRecipesResult> getResponderRecipes(GetResponderRecipesArgs args, InvokeOptions options)
public static Output<GetResponderRecipesResult> getResponderRecipes(GetResponderRecipesArgs args, InvokeOptions options)
Copy
fn::invoke:
  function: oci:CloudGuard/getResponderRecipes:getResponderRecipes
  arguments:
    # arguments dictionary
Copy

The following arguments are supported:

CompartmentId This property is required. string
The OCID of the compartment in which to list resources.
AccessLevel string
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
CompartmentIdInSubtree bool
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of accessLevel.
DisplayName string
A filter to return only resources that match the entire display name given.
Filters Changes to this property will trigger replacement. List<GetResponderRecipesFilter>
ResourceMetadataOnly bool
Default is false. When set to true, the list of all Oracle-managed resources metadata supported by Cloud Guard is 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.
CompartmentId This property is required. string
The OCID of the compartment in which to list resources.
AccessLevel string
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
CompartmentIdInSubtree bool
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of accessLevel.
DisplayName string
A filter to return only resources that match the entire display name given.
Filters Changes to this property will trigger replacement. []GetResponderRecipesFilter
ResourceMetadataOnly bool
Default is false. When set to true, the list of all Oracle-managed resources metadata supported by Cloud Guard is 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.
compartmentId This property is required. String
The OCID of the compartment in which to list resources.
accessLevel String
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
compartmentIdInSubtree Boolean
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of accessLevel.
displayName String
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. List<GetResponderRecipesFilter>
resourceMetadataOnly Boolean
Default is false. When set to true, the list of all Oracle-managed resources metadata supported by Cloud Guard is 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.
compartmentId This property is required. string
The OCID of the compartment in which to list resources.
accessLevel string
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
compartmentIdInSubtree boolean
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of accessLevel.
displayName string
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. GetResponderRecipesFilter[]
resourceMetadataOnly boolean
Default is false. When set to true, the list of all Oracle-managed resources metadata supported by Cloud Guard is returned.
state string
The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
compartment_id This property is required. str
The OCID of the compartment in which to list resources.
access_level str
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
compartment_id_in_subtree bool
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of accessLevel.
display_name str
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. Sequence[cloudguard.GetResponderRecipesFilter]
resource_metadata_only bool
Default is false. When set to true, the list of all Oracle-managed resources metadata supported by Cloud Guard is 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.
compartmentId This property is required. String
The OCID of the compartment in which to list resources.
accessLevel String
Valid values are RESTRICTED and ACCESSIBLE. Default is RESTRICTED. Setting this to ACCESSIBLE returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set to RESTRICTED permissions are checked and no partial results are displayed.
compartmentIdInSubtree Boolean
Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of accessLevel.
displayName String
A filter to return only resources that match the entire display name given.
filters Changes to this property will trigger replacement. List<Property Map>
resourceMetadataOnly Boolean
Default is false. When set to true, the list of all Oracle-managed resources metadata supported by Cloud Guard is 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.

getResponderRecipes Result

The following output properties are available:

CompartmentId string
Compartment OCID
Id string
The provider-assigned unique ID for this managed resource.
ResponderRecipeCollections List<GetResponderRecipesResponderRecipeCollection>
The list of responder_recipe_collection.
AccessLevel string
CompartmentIdInSubtree bool
DisplayName string
Responder rule display name
Filters List<GetResponderRecipesFilter>
ResourceMetadataOnly bool
State string
The current lifecycle state of the example
CompartmentId string
Compartment OCID
Id string
The provider-assigned unique ID for this managed resource.
ResponderRecipeCollections []GetResponderRecipesResponderRecipeCollection
The list of responder_recipe_collection.
AccessLevel string
CompartmentIdInSubtree bool
DisplayName string
Responder rule display name
Filters []GetResponderRecipesFilter
ResourceMetadataOnly bool
State string
The current lifecycle state of the example
compartmentId String
Compartment OCID
id String
The provider-assigned unique ID for this managed resource.
responderRecipeCollections List<GetResponderRecipesResponderRecipeCollection>
The list of responder_recipe_collection.
accessLevel String
compartmentIdInSubtree Boolean
displayName String
Responder rule display name
filters List<GetResponderRecipesFilter>
resourceMetadataOnly Boolean
state String
The current lifecycle state of the example
compartmentId string
Compartment OCID
id string
The provider-assigned unique ID for this managed resource.
responderRecipeCollections GetResponderRecipesResponderRecipeCollection[]
The list of responder_recipe_collection.
accessLevel string
compartmentIdInSubtree boolean
displayName string
Responder rule display name
filters GetResponderRecipesFilter[]
resourceMetadataOnly boolean
state string
The current lifecycle state of the example
compartment_id str
Compartment OCID
id str
The provider-assigned unique ID for this managed resource.
responder_recipe_collections Sequence[cloudguard.GetResponderRecipesResponderRecipeCollection]
The list of responder_recipe_collection.
access_level str
compartment_id_in_subtree bool
display_name str
Responder rule display name
filters Sequence[cloudguard.GetResponderRecipesFilter]
resource_metadata_only bool
state str
The current lifecycle state of the example
compartmentId String
Compartment OCID
id String
The provider-assigned unique ID for this managed resource.
responderRecipeCollections List<Property Map>
The list of responder_recipe_collection.
accessLevel String
compartmentIdInSubtree Boolean
displayName String
Responder rule display name
filters List<Property Map>
resourceMetadataOnly Boolean
state String
The current lifecycle state of the example

Supporting Types

GetResponderRecipesFilter

Name This property is required. string
Configuration name
Values This property is required. List<string>
Regex bool
Name This property is required. string
Configuration name
Values This property is required. []string
Regex bool
name This property is required. String
Configuration name
values This property is required. List<String>
regex Boolean
name This property is required. string
Configuration name
values This property is required. string[]
regex boolean
name This property is required. str
Configuration name
values This property is required. Sequence[str]
regex bool
name This property is required. String
Configuration name
values This property is required. List<String>
regex Boolean

GetResponderRecipesResponderRecipeCollection

items This property is required. List<Property Map>

GetResponderRecipesResponderRecipeCollectionItem

CompartmentId This property is required. string
The OCID of the compartment in which to list resources.
DefinedTags This property is required. Dictionary<string, string>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
Description This property is required. string
Responder rule description
DisplayName This property is required. string
A filter to return only resources that match the entire display name given.
EffectiveResponderRules This property is required. List<GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRule>
List of currently enabled responder rules for the responder type, for recipe after applying defaults
FreeformTags This property is required. Dictionary<string, string>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
Id This property is required. string
Unique identifier for the responder recip
LifecycleDetails This property is required. string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
Owner This property is required. string
Owner of responder recipe
ResponderRules This property is required. List<GetResponderRecipesResponderRecipeCollectionItemResponderRule>
List of responder rules associated with the recipe
SourceResponderRecipeId This property is required. string
The unique identifier of the source responder recipe
State This property is required. string
The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
SystemTags This property is required. Dictionary<string, string>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The date and time the responder recipe was created. Format defined by RFC3339.
TimeUpdated This property is required. string
The date and time the responder recipe was last updated. Format defined by RFC3339.
CompartmentId This property is required. string
The OCID of the compartment in which to list resources.
DefinedTags This property is required. map[string]string
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
Description This property is required. string
Responder rule description
DisplayName This property is required. string
A filter to return only resources that match the entire display name given.
EffectiveResponderRules This property is required. []GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRule
List of currently enabled responder rules for the responder type, for recipe after applying defaults
FreeformTags This property is required. map[string]string
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
Id This property is required. string
Unique identifier for the responder recip
LifecycleDetails This property is required. string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
Owner This property is required. string
Owner of responder recipe
ResponderRules This property is required. []GetResponderRecipesResponderRecipeCollectionItemResponderRule
List of responder rules associated with the recipe
SourceResponderRecipeId This property is required. string
The unique identifier of the source responder recipe
State This property is required. string
The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
SystemTags This property is required. map[string]string
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
TimeCreated This property is required. string
The date and time the responder recipe was created. Format defined by RFC3339.
TimeUpdated This property is required. string
The date and time the responder recipe was last updated. Format defined by RFC3339.
compartmentId This property is required. String
The OCID of the compartment in which to list resources.
definedTags This property is required. Map<String,String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. String
Responder rule description
displayName This property is required. String
A filter to return only resources that match the entire display name given.
effectiveResponderRules This property is required. List<GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRule>
List of currently enabled responder rules for the responder type, for recipe after applying defaults
freeformTags This property is required. Map<String,String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. String
Unique identifier for the responder recip
lifecycleDetails This property is required. String
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
owner This property is required. String
Owner of responder recipe
responderRules This property is required. List<GetResponderRecipesResponderRecipeCollectionItemResponderRule>
List of responder rules associated with the recipe
sourceResponderRecipeId This property is required. String
The unique identifier of the source responder recipe
state This property is required. String
The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
systemTags This property is required. Map<String,String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The date and time the responder recipe was created. Format defined by RFC3339.
timeUpdated This property is required. String
The date and time the responder recipe was last updated. Format defined by RFC3339.
compartmentId This property is required. string
The OCID of the compartment in which to list resources.
definedTags This property is required. {[key: string]: string}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. string
Responder rule description
displayName This property is required. string
A filter to return only resources that match the entire display name given.
effectiveResponderRules This property is required. GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRule[]
List of currently enabled responder rules for the responder type, for recipe after applying defaults
freeformTags This property is required. {[key: string]: string}
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. string
Unique identifier for the responder recip
lifecycleDetails This property is required. string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
owner This property is required. string
Owner of responder recipe
responderRules This property is required. GetResponderRecipesResponderRecipeCollectionItemResponderRule[]
List of responder rules associated with the recipe
sourceResponderRecipeId This property is required. string
The unique identifier of the source responder recipe
state This property is required. string
The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
systemTags This property is required. {[key: string]: string}
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. string
The date and time the responder recipe was created. Format defined by RFC3339.
timeUpdated This property is required. string
The date and time the responder recipe was last updated. Format defined by RFC3339.
compartment_id This property is required. str
The OCID of the compartment in which to list resources.
defined_tags This property is required. Mapping[str, str]
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. str
Responder rule description
display_name This property is required. str
A filter to return only resources that match the entire display name given.
effective_responder_rules This property is required. Sequence[cloudguard.GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRule]
List of currently enabled responder rules for the responder type, for recipe after applying defaults
freeform_tags This property is required. Mapping[str, str]
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. str
Unique identifier for the responder recip
lifecycle_details This property is required. str
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
owner This property is required. str
Owner of responder recipe
responder_rules This property is required. Sequence[cloudguard.GetResponderRecipesResponderRecipeCollectionItemResponderRule]
List of responder rules associated with the recipe
source_responder_recipe_id This property is required. str
The unique identifier of the source responder recipe
state This property is required. str
The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
system_tags This property is required. Mapping[str, str]
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
time_created This property is required. str
The date and time the responder recipe was created. Format defined by RFC3339.
time_updated This property is required. str
The date and time the responder recipe was last updated. Format defined by RFC3339.
compartmentId This property is required. String
The OCID of the compartment in which to list resources.
definedTags This property is required. Map<String>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
description This property is required. String
Responder rule description
displayName This property is required. String
A filter to return only resources that match the entire display name given.
effectiveResponderRules This property is required. List<Property Map>
List of currently enabled responder rules for the responder type, for recipe after applying defaults
freeformTags This property is required. Map<String>
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
id This property is required. String
Unique identifier for the responder recip
lifecycleDetails This property is required. String
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
owner This property is required. String
Owner of responder recipe
responderRules This property is required. List<Property Map>
List of responder rules associated with the recipe
sourceResponderRecipeId This property is required. String
The unique identifier of the source responder recipe
state This property is required. String
The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
systemTags This property is required. Map<String>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
timeCreated This property is required. String
The date and time the responder recipe was created. Format defined by RFC3339.
timeUpdated This property is required. String
The date and time the responder recipe was last updated. Format defined by RFC3339.

GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRule

CompartmentId This property is required. string
The OCID of the compartment in which to list resources.
Description This property is required. string
Responder rule description
Details This property is required. List<GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetail>
Detailed information for a responder rule
DisplayName This property is required. string
A filter to return only resources that match the entire display name given.
LifecycleDetails This property is required. string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
Policies This property is required. List<string>
List of policies
ResponderRuleId This property is required. string
Unique identifier for the responder rule
State This property is required. string
The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
SupportedModes This property is required. List<string>
Supported execution modes for the responder rule
TimeCreated This property is required. string
The date and time the responder recipe was created. Format defined by RFC3339.
TimeUpdated This property is required. string
The date and time the responder recipe was last updated. Format defined by RFC3339.
Type This property is required. string
Type of responder
CompartmentId This property is required. string
The OCID of the compartment in which to list resources.
Description This property is required. string
Responder rule description
Details This property is required. []GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetail
Detailed information for a responder rule
DisplayName This property is required. string
A filter to return only resources that match the entire display name given.
LifecycleDetails This property is required. string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
Policies This property is required. []string
List of policies
ResponderRuleId This property is required. string
Unique identifier for the responder rule
State This property is required. string
The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
SupportedModes This property is required. []string
Supported execution modes for the responder rule
TimeCreated This property is required. string
The date and time the responder recipe was created. Format defined by RFC3339.
TimeUpdated This property is required. string
The date and time the responder recipe was last updated. Format defined by RFC3339.
Type This property is required. string
Type of responder
compartmentId This property is required. String
The OCID of the compartment in which to list resources.
description This property is required. String
Responder rule description
details This property is required. List<GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetail>
Detailed information for a responder rule
displayName This property is required. String
A filter to return only resources that match the entire display name given.
lifecycleDetails This property is required. String
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
policies This property is required. List<String>
List of policies
responderRuleId This property is required. String
Unique identifier for the responder rule
state This property is required. String
The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
supportedModes This property is required. List<String>
Supported execution modes for the responder rule
timeCreated This property is required. String
The date and time the responder recipe was created. Format defined by RFC3339.
timeUpdated This property is required. String
The date and time the responder recipe was last updated. Format defined by RFC3339.
type This property is required. String
Type of responder
compartmentId This property is required. string
The OCID of the compartment in which to list resources.
description This property is required. string
Responder rule description
details This property is required. GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetail[]
Detailed information for a responder rule
displayName This property is required. string
A filter to return only resources that match the entire display name given.
lifecycleDetails This property is required. string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
policies This property is required. string[]
List of policies
responderRuleId This property is required. string
Unique identifier for the responder rule
state This property is required. string
The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
supportedModes This property is required. string[]
Supported execution modes for the responder rule
timeCreated This property is required. string
The date and time the responder recipe was created. Format defined by RFC3339.
timeUpdated This property is required. string
The date and time the responder recipe was last updated. Format defined by RFC3339.
type This property is required. string
Type of responder
compartment_id This property is required. str
The OCID of the compartment in which to list resources.
description This property is required. str
Responder rule description
details This property is required. Sequence[cloudguard.GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetail]
Detailed information for a responder rule
display_name This property is required. str
A filter to return only resources that match the entire display name given.
lifecycle_details This property is required. str
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
policies This property is required. Sequence[str]
List of policies
responder_rule_id This property is required. str
Unique identifier for the responder rule
state This property is required. str
The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
supported_modes This property is required. Sequence[str]
Supported execution modes for the responder rule
time_created This property is required. str
The date and time the responder recipe was created. Format defined by RFC3339.
time_updated This property is required. str
The date and time the responder recipe was last updated. Format defined by RFC3339.
type This property is required. str
Type of responder
compartmentId This property is required. String
The OCID of the compartment in which to list resources.
description This property is required. String
Responder rule description
details This property is required. List<Property Map>
Detailed information for a responder rule
displayName This property is required. String
A filter to return only resources that match the entire display name given.
lifecycleDetails This property is required. String
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
policies This property is required. List<String>
List of policies
responderRuleId This property is required. String
Unique identifier for the responder rule
state This property is required. String
The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
supportedModes This property is required. List<String>
Supported execution modes for the responder rule
timeCreated This property is required. String
The date and time the responder recipe was created. Format defined by RFC3339.
timeUpdated This property is required. String
The date and time the responder recipe was last updated. Format defined by RFC3339.
type This property is required. String
Type of responder

GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetail

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

GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetailConfiguration

ConfigKey This property is required. string
Unique identifier of the configuration
Name This property is required. string
Configuration name
Value This property is required. string
Configuration value
ConfigKey This property is required. string
Unique identifier of the configuration
Name This property is required. string
Configuration name
Value This property is required. string
Configuration value
configKey This property is required. String
Unique identifier of the configuration
name This property is required. String
Configuration name
value This property is required. String
Configuration value
configKey This property is required. string
Unique identifier of the configuration
name This property is required. string
Configuration name
value This property is required. string
Configuration value
config_key This property is required. str
Unique identifier of the configuration
name This property is required. str
Configuration name
value This property is required. str
Configuration value
configKey This property is required. String
Unique identifier of the configuration
name This property is required. String
Configuration name
value This property is required. String
Configuration value

GetResponderRecipesResponderRecipeCollectionItemResponderRule

CompartmentId This property is required. string
The OCID of the compartment in which to list resources.
Description This property is required. string
Responder rule description
Details This property is required. List<GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetail>
Detailed information for a responder rule
DisplayName This property is required. string
A filter to return only resources that match the entire display name given.
LifecycleDetails This property is required. string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
Policies This property is required. List<string>
List of policies
ResponderRuleId This property is required. string
Unique identifier for the responder rule
State This property is required. string
The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
SupportedModes This property is required. List<string>
Supported execution modes for the responder rule
TimeCreated This property is required. string
The date and time the responder recipe was created. Format defined by RFC3339.
TimeUpdated This property is required. string
The date and time the responder recipe was last updated. Format defined by RFC3339.
Type This property is required. string
Type of responder
CompartmentId This property is required. string
The OCID of the compartment in which to list resources.
Description This property is required. string
Responder rule description
Details This property is required. []GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetail
Detailed information for a responder rule
DisplayName This property is required. string
A filter to return only resources that match the entire display name given.
LifecycleDetails This property is required. string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
Policies This property is required. []string
List of policies
ResponderRuleId This property is required. string
Unique identifier for the responder rule
State This property is required. string
The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
SupportedModes This property is required. []string
Supported execution modes for the responder rule
TimeCreated This property is required. string
The date and time the responder recipe was created. Format defined by RFC3339.
TimeUpdated This property is required. string
The date and time the responder recipe was last updated. Format defined by RFC3339.
Type This property is required. string
Type of responder
compartmentId This property is required. String
The OCID of the compartment in which to list resources.
description This property is required. String
Responder rule description
details This property is required. List<GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetail>
Detailed information for a responder rule
displayName This property is required. String
A filter to return only resources that match the entire display name given.
lifecycleDetails This property is required. String
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
policies This property is required. List<String>
List of policies
responderRuleId This property is required. String
Unique identifier for the responder rule
state This property is required. String
The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
supportedModes This property is required. List<String>
Supported execution modes for the responder rule
timeCreated This property is required. String
The date and time the responder recipe was created. Format defined by RFC3339.
timeUpdated This property is required. String
The date and time the responder recipe was last updated. Format defined by RFC3339.
type This property is required. String
Type of responder
compartmentId This property is required. string
The OCID of the compartment in which to list resources.
description This property is required. string
Responder rule description
details This property is required. GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetail[]
Detailed information for a responder rule
displayName This property is required. string
A filter to return only resources that match the entire display name given.
lifecycleDetails This property is required. string
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
policies This property is required. string[]
List of policies
responderRuleId This property is required. string
Unique identifier for the responder rule
state This property is required. string
The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
supportedModes This property is required. string[]
Supported execution modes for the responder rule
timeCreated This property is required. string
The date and time the responder recipe was created. Format defined by RFC3339.
timeUpdated This property is required. string
The date and time the responder recipe was last updated. Format defined by RFC3339.
type This property is required. string
Type of responder
compartment_id This property is required. str
The OCID of the compartment in which to list resources.
description This property is required. str
Responder rule description
details This property is required. Sequence[cloudguard.GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetail]
Detailed information for a responder rule
display_name This property is required. str
A filter to return only resources that match the entire display name given.
lifecycle_details This property is required. str
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
policies This property is required. Sequence[str]
List of policies
responder_rule_id This property is required. str
Unique identifier for the responder rule
state This property is required. str
The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
supported_modes This property is required. Sequence[str]
Supported execution modes for the responder rule
time_created This property is required. str
The date and time the responder recipe was created. Format defined by RFC3339.
time_updated This property is required. str
The date and time the responder recipe was last updated. Format defined by RFC3339.
type This property is required. str
Type of responder
compartmentId This property is required. String
The OCID of the compartment in which to list resources.
description This property is required. String
Responder rule description
details This property is required. List<Property Map>
Detailed information for a responder rule
displayName This property is required. String
A filter to return only resources that match the entire display name given.
lifecycleDetails This property is required. String
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
policies This property is required. List<String>
List of policies
responderRuleId This property is required. String
Unique identifier for the responder rule
state This property is required. String
The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
supportedModes This property is required. List<String>
Supported execution modes for the responder rule
timeCreated This property is required. String
The date and time the responder recipe was created. Format defined by RFC3339.
timeUpdated This property is required. String
The date and time the responder recipe was last updated. Format defined by RFC3339.
type This property is required. String
Type of responder

GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetail

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

GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetailConfiguration

ConfigKey This property is required. string
Unique identifier of the configuration
Name This property is required. string
Configuration name
Value This property is required. string
Configuration value
ConfigKey This property is required. string
Unique identifier of the configuration
Name This property is required. string
Configuration name
Value This property is required. string
Configuration value
configKey This property is required. String
Unique identifier of the configuration
name This property is required. String
Configuration name
value This property is required. String
Configuration value
configKey This property is required. string
Unique identifier of the configuration
name This property is required. string
Configuration name
value This property is required. string
Configuration value
config_key This property is required. str
Unique identifier of the configuration
name This property is required. str
Configuration name
value This property is required. str
Configuration value
configKey This property is required. String
Unique identifier of the configuration
name This property is required. String
Configuration name
value This property is required. String
Configuration value

Package Details

Repository
oci pulumi/pulumi-oci
License
Apache-2.0
Notes
This Pulumi package is based on the oci Terraform Provider.
Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi