oci.CloudGuard.getResponderRecipes
Explore with Pulumi AI
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,
});
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)
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
	})
}
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,
    });
});
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());
    }
}
variables:
  testResponderRecipes:
    fn::invoke:
      function: oci:CloudGuard:getResponderRecipes
      arguments:
        compartmentId: ${compartmentId}
        accessLevel: ${responderRecipeAccessLevel}
        compartmentIdInSubtree: ${responderRecipeCompartmentIdInSubtree}
        displayName: ${responderRecipeDisplayName}
        resourceMetadataOnly: ${responderRecipeResourceMetadataOnly}
        state: ${responderRecipeState}
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>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[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[GetResponderRecipesFilterArgs]]]] = None,
                          resource_metadata_only: Optional[pulumi.Input[bool]] = None,
                          state: Optional[pulumi.Input[str]] = None,
                          opts: Optional[InvokeOptions] = None) -> Output[GetResponderRecipesResult]func GetResponderRecipes(ctx *Context, args *GetResponderRecipesArgs, opts ...InvokeOption) (*GetResponderRecipesResult, error)
func GetResponderRecipesOutput(ctx *Context, args *GetResponderRecipesOutputArgs, opts ...InvokeOption) GetResponderRecipesResultOutput> 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)
}public static CompletableFuture<GetResponderRecipesResult> getResponderRecipes(GetResponderRecipesArgs args, InvokeOptions options)
public static Output<GetResponderRecipesResult> getResponderRecipes(GetResponderRecipesArgs args, InvokeOptions options)
fn::invoke:
  function: oci:CloudGuard/getResponderRecipes:getResponderRecipes
  arguments:
    # arguments dictionaryThe following arguments are supported:
- CompartmentId string
- The OCID of the compartment in which to list resources.
- AccessLevel string
- Valid values are RESTRICTEDandACCESSIBLE. Default isRESTRICTED. Setting this toACCESSIBLEreturns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTEDpermissions are checked and no partial results are displayed.
- CompartmentId 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.
- DisplayName string
- A filter to return only resources that match the entire display name given.
- Filters
List<GetResponder Recipes Filter> 
- ResourceMetadata boolOnly 
- 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 string
- The OCID of the compartment in which to list resources.
- AccessLevel string
- Valid values are RESTRICTEDandACCESSIBLE. Default isRESTRICTED. Setting this toACCESSIBLEreturns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTEDpermissions are checked and no partial results are displayed.
- CompartmentId 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.
- DisplayName string
- A filter to return only resources that match the entire display name given.
- Filters
[]GetResponder Recipes Filter 
- ResourceMetadata boolOnly 
- 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 String
- The OCID of the compartment in which to list resources.
- accessLevel String
- Valid values are RESTRICTEDandACCESSIBLE. Default isRESTRICTED. Setting this toACCESSIBLEreturns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTEDpermissions are checked and no partial results are displayed.
- compartmentId 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.
- displayName String
- A filter to return only resources that match the entire display name given.
- filters
List<GetResponder Recipes Filter> 
- resourceMetadata BooleanOnly 
- 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 string
- The OCID of the compartment in which to list resources.
- accessLevel string
- Valid values are RESTRICTEDandACCESSIBLE. Default isRESTRICTED. Setting this toACCESSIBLEreturns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTEDpermissions are checked and no partial results are displayed.
- compartmentId 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.
- displayName string
- A filter to return only resources that match the entire display name given.
- filters
GetResponder Recipes Filter[] 
- resourceMetadata booleanOnly 
- 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 str
- The OCID of the compartment in which to list resources.
- access_level str
- Valid values are RESTRICTEDandACCESSIBLE. Default isRESTRICTED. Setting this toACCESSIBLEreturns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTEDpermissions 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[GetResponder Recipes Filter] 
- resource_metadata_ boolonly 
- 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 String
- The OCID of the compartment in which to list resources.
- accessLevel String
- Valid values are RESTRICTEDandACCESSIBLE. Default isRESTRICTED. Setting this toACCESSIBLEreturns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTEDpermissions are checked and no partial results are displayed.
- compartmentId 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.
- displayName String
- A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- resourceMetadata BooleanOnly 
- 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.
- ResponderRecipe List<GetCollections Responder Recipes Responder Recipe Collection> 
- The list of responder_recipe_collection.
- AccessLevel string
- CompartmentId boolIn Subtree 
- DisplayName string
- Responder rule display name
- Filters
List<GetResponder Recipes Filter> 
- ResourceMetadata boolOnly 
- State string
- The current lifecycle state of the example
- CompartmentId string
- Compartment OCID
- Id string
- The provider-assigned unique ID for this managed resource.
- ResponderRecipe []GetCollections Responder Recipes Responder Recipe Collection 
- The list of responder_recipe_collection.
- AccessLevel string
- CompartmentId boolIn Subtree 
- DisplayName string
- Responder rule display name
- Filters
[]GetResponder Recipes Filter 
- ResourceMetadata boolOnly 
- State string
- The current lifecycle state of the example
- compartmentId String
- Compartment OCID
- id String
- The provider-assigned unique ID for this managed resource.
- responderRecipe List<GetCollections Responder Recipes Responder Recipe Collection> 
- The list of responder_recipe_collection.
- accessLevel String
- compartmentId BooleanIn Subtree 
- displayName String
- Responder rule display name
- filters
List<GetResponder Recipes Filter> 
- resourceMetadata BooleanOnly 
- state String
- The current lifecycle state of the example
- compartmentId string
- Compartment OCID
- id string
- The provider-assigned unique ID for this managed resource.
- responderRecipe GetCollections Responder Recipes Responder Recipe Collection[] 
- The list of responder_recipe_collection.
- accessLevel string
- compartmentId booleanIn Subtree 
- displayName string
- Responder rule display name
- filters
GetResponder Recipes Filter[] 
- resourceMetadata booleanOnly 
- 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_ Sequence[Getcollections Responder Recipes Responder Recipe Collection] 
- The list of responder_recipe_collection.
- access_level str
- compartment_id_ boolin_ subtree 
- display_name str
- Responder rule display name
- filters
Sequence[GetResponder Recipes Filter] 
- resource_metadata_ boolonly 
- state str
- The current lifecycle state of the example
- compartmentId String
- Compartment OCID
- id String
- The provider-assigned unique ID for this managed resource.
- responderRecipe List<Property Map>Collections 
- The list of responder_recipe_collection.
- accessLevel String
- compartmentId BooleanIn Subtree 
- displayName String
- Responder rule display name
- filters List<Property Map>
- resourceMetadata BooleanOnly 
- state String
- The current lifecycle state of the example
Supporting Types
GetResponderRecipesFilter   
GetResponderRecipesResponderRecipeCollection     
GetResponderRecipesResponderRecipeCollectionItem      
- CompartmentId string
- The OCID of the compartment in which to list resources.
- Dictionary<string, string>
- 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
- DisplayName string
- A filter to return only resources that match the entire display name given.
- EffectiveResponder List<GetRules Responder Recipes Responder Recipe Collection Item Effective Responder Rule> 
- List of currently enabled responder rules for the responder type, for recipe after applying defaults
- 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 string
- Unique identifier for the responder recip
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Owner string
- Owner of responder recipe
- ResponderRules List<GetResponder Recipes Responder Recipe Collection Item Responder Rule> 
- List of responder rules associated with the recipe
- SourceResponder stringRecipe Id 
- The unique identifier of the source 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.
- 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 string
- The date and time the responder recipe was created. Format defined by RFC3339.
- TimeUpdated string
- The date and time the responder recipe was last updated. Format defined by RFC3339.
- CompartmentId string
- The OCID of the compartment in which to list resources.
- map[string]string
- 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
- DisplayName string
- A filter to return only resources that match the entire display name given.
- EffectiveResponder []GetRules Responder Recipes Responder Recipe Collection Item Effective Responder Rule 
- List of currently enabled responder rules for the responder type, for recipe after applying defaults
- 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 string
- Unique identifier for the responder recip
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Owner string
- Owner of responder recipe
- ResponderRules []GetResponder Recipes Responder Recipe Collection Item Responder Rule 
- List of responder rules associated with the recipe
- SourceResponder stringRecipe Id 
- The unique identifier of the source 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.
- 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 string
- The date and time the responder recipe was created. Format defined by RFC3339.
- TimeUpdated string
- The date and time the responder recipe was last updated. Format defined by RFC3339.
- compartmentId String
- The OCID of the compartment in which to list resources.
- Map<String,String>
- 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
- displayName String
- A filter to return only resources that match the entire display name given.
- effectiveResponder List<GetRules Responder Recipes Responder Recipe Collection Item Effective Responder Rule> 
- List of currently enabled responder rules for the responder type, for recipe after applying defaults
- 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 String
- Unique identifier for the responder recip
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- owner String
- Owner of responder recipe
- responderRules List<GetResponder Recipes Responder Recipe Collection Item Responder Rule> 
- List of responder rules associated with the recipe
- sourceResponder StringRecipe Id 
- The unique identifier of the source 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.
- 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 String
- The date and time the responder recipe was created. Format defined by RFC3339.
- timeUpdated String
- The date and time the responder recipe was last updated. Format defined by RFC3339.
- compartmentId string
- The OCID of the compartment in which to list resources.
- {[key: string]: string}
- 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
- displayName string
- A filter to return only resources that match the entire display name given.
- effectiveResponder GetRules Responder Recipes Responder Recipe Collection Item Effective Responder Rule[] 
- List of currently enabled responder rules for the responder type, for recipe after applying defaults
- {[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 string
- Unique identifier for the responder recip
- lifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- owner string
- Owner of responder recipe
- responderRules GetResponder Recipes Responder Recipe Collection Item Responder Rule[] 
- List of responder rules associated with the recipe
- sourceResponder stringRecipe Id 
- The unique identifier of the source 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.
- {[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 string
- The date and time the responder recipe was created. Format defined by RFC3339.
- timeUpdated string
- The date and time the responder recipe was last updated. Format defined by RFC3339.
- compartment_id str
- The OCID of the compartment in which to list resources.
- Mapping[str, str]
- 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.
- effective_responder_ Sequence[Getrules Responder Recipes Responder Recipe Collection Item Effective Responder Rule] 
- List of currently enabled responder rules for the responder type, for recipe after applying defaults
- 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 str
- Unique identifier for the responder recip
- 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 responder recipe
- responder_rules Sequence[GetResponder Recipes Responder Recipe Collection Item Responder Rule] 
- List of responder rules associated with the recipe
- source_responder_ strrecipe_ id 
- The unique identifier of the source 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.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
- time_created str
- The date and time the responder recipe was created. Format defined by RFC3339.
- time_updated str
- The date and time the responder recipe was last updated. Format defined by RFC3339.
- compartmentId String
- The OCID of the compartment in which to list resources.
- Map<String>
- 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
- displayName String
- A filter to return only resources that match the entire display name given.
- effectiveResponder List<Property Map>Rules 
- List of currently enabled responder rules for the responder type, for recipe after applying defaults
- 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 String
- Unique identifier for the responder recip
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- owner String
- Owner of responder recipe
- responderRules List<Property Map>
- List of responder rules associated with the recipe
- sourceResponder StringRecipe Id 
- The unique identifier of the source 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.
- 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 String
- The date and time the responder recipe was created. Format defined by RFC3339.
- timeUpdated String
- The date and time the responder recipe was last updated. Format defined by RFC3339.
GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRule         
- CompartmentId string
- The OCID of the compartment in which to list resources.
- Description string
- Responder rule description
- Details
List<GetResponder Recipes Responder Recipe Collection Item Effective Responder Rule Detail> 
- Detailed information for a responder rule
- DisplayName string
- A filter to return only resources that match the entire display name given.
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Policies List<string>
- List of policies
- ResponderRule 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.
- SupportedModes List<string>
- Supported execution modes for the responder rule
- TimeCreated string
- The date and time the responder recipe was created. Format defined by RFC3339.
- TimeUpdated string
- The date and time the responder recipe was last updated. Format defined by RFC3339.
- Type string
- Type of responder
- CompartmentId string
- The OCID of the compartment in which to list resources.
- Description string
- Responder rule description
- Details
[]GetResponder Recipes Responder Recipe Collection Item Effective Responder Rule Detail 
- Detailed information for a responder rule
- DisplayName string
- A filter to return only resources that match the entire display name given.
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Policies []string
- List of policies
- ResponderRule 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.
- SupportedModes []string
- Supported execution modes for the responder rule
- TimeCreated string
- The date and time the responder recipe was created. Format defined by RFC3339.
- TimeUpdated string
- The date and time the responder recipe was last updated. Format defined by RFC3339.
- Type string
- Type of responder
- compartmentId String
- The OCID of the compartment in which to list resources.
- description String
- Responder rule description
- details
List<GetResponder Recipes Responder Recipe Collection Item Effective Responder Rule Detail> 
- Detailed information for a responder rule
- displayName String
- A filter to return only resources that match the entire display name given.
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies List<String>
- List of policies
- responderRule 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.
- supportedModes List<String>
- Supported execution modes for the responder rule
- timeCreated String
- The date and time the responder recipe was created. Format defined by RFC3339.
- timeUpdated String
- The date and time the responder recipe was last updated. Format defined by RFC3339.
- type String
- Type of responder
- compartmentId string
- The OCID of the compartment in which to list resources.
- description string
- Responder rule description
- details
GetResponder Recipes Responder Recipe Collection Item Effective Responder Rule Detail[] 
- Detailed information for a responder rule
- displayName string
- A filter to return only resources that match the entire display name given.
- lifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies string[]
- List of policies
- responderRule 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.
- supportedModes string[]
- Supported execution modes for the responder rule
- timeCreated string
- The date and time the responder recipe was created. Format defined by RFC3339.
- timeUpdated string
- The date and time the responder recipe 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[GetResponder Recipes Responder Recipe Collection Item 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 responder recipe was created. Format defined by RFC3339.
- time_updated str
- The date and time the responder recipe was last updated. Format defined by RFC3339.
- type str
- Type of responder
- compartmentId 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
- displayName String
- A filter to return only resources that match the entire display name given.
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies List<String>
- List of policies
- responderRule 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.
- supportedModes List<String>
- Supported execution modes for the responder rule
- timeCreated String
- The date and time the responder recipe was created. Format defined by RFC3339.
- timeUpdated String
- The date and time the responder recipe was last updated. Format defined by RFC3339.
- type String
- Type of responder
GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetail          
- Condition string
- The base condition resource.
- Configurations
List<GetResponder Recipes Responder Recipe Collection Item Effective Responder Rule Detail Configuration> 
- List of responder rule configurations
- IsEnabled bool
- Enabled state for the responder rule
- Mode string
- Execution mode for the responder rule
- Condition string
- The base condition resource.
- Configurations
[]GetResponder Recipes Responder Recipe Collection Item Effective Responder Rule Detail Configuration 
- List of responder rule configurations
- IsEnabled bool
- Enabled state for the responder rule
- Mode string
- Execution mode for the responder rule
- condition String
- The base condition resource.
- configurations
List<GetResponder Recipes Responder Recipe Collection Item Effective Responder Rule Detail Configuration> 
- List of responder rule configurations
- isEnabled Boolean
- Enabled state for the responder rule
- mode String
- Execution mode for the responder rule
- condition string
- The base condition resource.
- configurations
GetResponder Recipes Responder Recipe Collection Item Effective Responder Rule Detail Configuration[] 
- List of responder rule configurations
- isEnabled boolean
- Enabled state for the responder rule
- mode string
- Execution mode for the responder rule
- condition str
- The base condition resource.
- configurations
Sequence[GetResponder Recipes Responder Recipe Collection Item 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
- isEnabled Boolean
- Enabled state for the responder rule
- mode String
- Execution mode for the responder rule
GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetailConfiguration           
- config_key str
- Unique identifier of the configuration
- name str
- Configuration name
- value str
- Configuration value
GetResponderRecipesResponderRecipeCollectionItemResponderRule        
- CompartmentId string
- The OCID of the compartment in which to list resources.
- Description string
- Responder rule description
- Details
List<GetResponder Recipes Responder Recipe Collection Item Responder Rule Detail> 
- Detailed information for a responder rule
- DisplayName string
- A filter to return only resources that match the entire display name given.
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Policies List<string>
- List of policies
- ResponderRule 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.
- SupportedModes List<string>
- Supported execution modes for the responder rule
- TimeCreated string
- The date and time the responder recipe was created. Format defined by RFC3339.
- TimeUpdated string
- The date and time the responder recipe was last updated. Format defined by RFC3339.
- Type string
- Type of responder
- CompartmentId string
- The OCID of the compartment in which to list resources.
- Description string
- Responder rule description
- Details
[]GetResponder Recipes Responder Recipe Collection Item Responder Rule Detail 
- Detailed information for a responder rule
- DisplayName string
- A filter to return only resources that match the entire display name given.
- LifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Policies []string
- List of policies
- ResponderRule 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.
- SupportedModes []string
- Supported execution modes for the responder rule
- TimeCreated string
- The date and time the responder recipe was created. Format defined by RFC3339.
- TimeUpdated string
- The date and time the responder recipe was last updated. Format defined by RFC3339.
- Type string
- Type of responder
- compartmentId String
- The OCID of the compartment in which to list resources.
- description String
- Responder rule description
- details
List<GetResponder Recipes Responder Recipe Collection Item Responder Rule Detail> 
- Detailed information for a responder rule
- displayName String
- A filter to return only resources that match the entire display name given.
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies List<String>
- List of policies
- responderRule 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.
- supportedModes List<String>
- Supported execution modes for the responder rule
- timeCreated String
- The date and time the responder recipe was created. Format defined by RFC3339.
- timeUpdated String
- The date and time the responder recipe was last updated. Format defined by RFC3339.
- type String
- Type of responder
- compartmentId string
- The OCID of the compartment in which to list resources.
- description string
- Responder rule description
- details
GetResponder Recipes Responder Recipe Collection Item Responder Rule Detail[] 
- Detailed information for a responder rule
- displayName string
- A filter to return only resources that match the entire display name given.
- lifecycleDetails string
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies string[]
- List of policies
- responderRule 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.
- supportedModes string[]
- Supported execution modes for the responder rule
- timeCreated string
- The date and time the responder recipe was created. Format defined by RFC3339.
- timeUpdated string
- The date and time the responder recipe 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[GetResponder Recipes Responder Recipe Collection Item 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 responder recipe was created. Format defined by RFC3339.
- time_updated str
- The date and time the responder recipe was last updated. Format defined by RFC3339.
- type str
- Type of responder
- compartmentId 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
- displayName String
- A filter to return only resources that match the entire display name given.
- lifecycleDetails String
- A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies List<String>
- List of policies
- responderRule 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.
- supportedModes List<String>
- Supported execution modes for the responder rule
- timeCreated String
- The date and time the responder recipe was created. Format defined by RFC3339.
- timeUpdated String
- The date and time the responder recipe was last updated. Format defined by RFC3339.
- type String
- Type of responder
GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetail         
- Condition string
- The base condition resource.
- Configurations
List<GetResponder Recipes Responder Recipe Collection Item Responder Rule Detail Configuration> 
- List of responder rule configurations
- IsEnabled bool
- Enabled state for the responder rule
- Mode string
- Execution mode for the responder rule
- Condition string
- The base condition resource.
- Configurations
[]GetResponder Recipes Responder Recipe Collection Item Responder Rule Detail Configuration 
- List of responder rule configurations
- IsEnabled bool
- Enabled state for the responder rule
- Mode string
- Execution mode for the responder rule
- condition String
- The base condition resource.
- configurations
List<GetResponder Recipes Responder Recipe Collection Item Responder Rule Detail Configuration> 
- List of responder rule configurations
- isEnabled Boolean
- Enabled state for the responder rule
- mode String
- Execution mode for the responder rule
- condition string
- The base condition resource.
- configurations
GetResponder Recipes Responder Recipe Collection Item Responder Rule Detail Configuration[] 
- List of responder rule configurations
- isEnabled boolean
- Enabled state for the responder rule
- mode string
- Execution mode for the responder rule
- condition str
- The base condition resource.
- configurations
Sequence[GetResponder Recipes Responder Recipe Collection Item 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
- isEnabled Boolean
- Enabled state for the responder rule
- mode String
- Execution mode for the responder rule
GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetailConfiguration          
- 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 ociTerraform Provider.