1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. CloudGuard
  5. getResponderRecipes
Oracle Cloud Infrastructure v2.4.0 published on Thursday, Jul 25, 2024 by Pulumi

oci.CloudGuard.getResponderRecipes

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.4.0 published on Thursday, Jul 25, 2024 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,
    });
    
    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[_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]
    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)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:CloudGuard/getResponderRecipes:getResponderRecipes
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId 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 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 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 []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 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 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 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 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 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 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 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 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 string
    Configuration name
    Values List<string>
    Regex bool
    Name string
    Configuration name
    Values []string
    Regex bool
    name String
    Configuration name
    values List<String>
    regex Boolean
    name string
    Configuration name
    values string[]
    regex boolean
    name str
    Configuration name
    values Sequence[str]
    regex bool
    name String
    Configuration name
    values List<String>
    regex Boolean

    GetResponderRecipesResponderRecipeCollection

    GetResponderRecipesResponderRecipeCollectionItem

    CompartmentId string
    The OCID of the compartment in which to list resources.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    Responder rule description
    DisplayName string
    A filter to return only resources that match the entire display name given.
    EffectiveResponderRules List<GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRule>
    List of currently enabled responder rules for the responder type, for recipe after applying defaults
    FreeformTags Dictionary<string, object>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    Unique identifier 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<GetResponderRecipesResponderRecipeCollectionItemResponderRule>
    List of responder rules associated with the recipe
    SourceResponderRecipeId string
    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.
    SystemTags Dictionary<string, object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the 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.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string
    Responder rule description
    DisplayName string
    A filter to return only resources that match the entire display name given.
    EffectiveResponderRules []GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRule
    List of currently enabled responder rules for the responder type, for recipe after applying defaults
    FreeformTags map[string]interface{}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    Id string
    Unique identifier 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 []GetResponderRecipesResponderRecipeCollectionItemResponderRule
    List of responder rules associated with the recipe
    SourceResponderRecipeId string
    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.
    SystemTags map[string]interface{}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the 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.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    Responder rule description
    displayName String
    A filter to return only resources that match the entire display name given.
    effectiveResponderRules List<GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRule>
    List of currently enabled responder rules for the responder type, for recipe after applying defaults
    freeformTags Map<String,Object>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    Unique identifier 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<GetResponderRecipesResponderRecipeCollectionItemResponderRule>
    List of responder rules associated with the recipe
    sourceResponderRecipeId String
    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.
    systemTags Map<String,Object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the 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.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string
    Responder rule description
    displayName string
    A filter to return only resources that match the entire display name given.
    effectiveResponderRules GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRule[]
    List of currently enabled responder rules for the responder type, for recipe after applying defaults
    freeformTags {[key: string]: any}
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id string
    Unique identifier 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 GetResponderRecipesResponderRecipeCollectionItemResponderRule[]
    List of responder rules associated with the recipe
    sourceResponderRecipeId string
    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.
    systemTags {[key: string]: any}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the 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.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str
    Responder rule description
    display_name str
    A filter to return only resources that match the entire display name given.
    effective_responder_rules Sequence[cloudguard.GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRule]
    List of currently enabled responder rules for the responder type, for recipe after applying defaults
    freeform_tags Mapping[str, Any]
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id str
    Unique identifier 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[cloudguard.GetResponderRecipesResponderRecipeCollectionItemResponderRule]
    List of responder rules associated with the recipe
    source_responder_recipe_id str
    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.
    system_tags Mapping[str, Any]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The date and time the 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.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String
    Responder rule description
    displayName String
    A filter to return only resources that match the entire display name given.
    effectiveResponderRules List<Property Map>
    List of currently enabled responder rules for the responder type, for recipe after applying defaults
    freeformTags Map<Any>
    Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}
    id String
    Unique identifier 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
    sourceResponderRecipeId String
    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.
    systemTags Map<Any>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the 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<GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetail>
    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
    ResponderRuleId string
    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 []GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetail
    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
    ResponderRuleId string
    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<GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetail>
    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
    responderRuleId String
    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 GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetail[]
    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
    responderRuleId string
    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[cloudguard.GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetail]
    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_id str
    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
    responderRuleId String
    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<GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetailConfiguration>
    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 []GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetailConfiguration
    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<GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetailConfiguration>
    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 GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetailConfiguration[]
    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[cloudguard.GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetailConfiguration]
    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

    ConfigKey string
    Unique identifier of the configuration
    Name string
    Configuration name
    Value string
    Configuration value
    ConfigKey string
    Unique identifier of the configuration
    Name string
    Configuration name
    Value string
    Configuration value
    configKey String
    Unique identifier of the configuration
    name String
    Configuration name
    value String
    Configuration value
    configKey string
    Unique identifier of the configuration
    name string
    Configuration name
    value string
    Configuration value
    config_key str
    Unique identifier of the configuration
    name str
    Configuration name
    value str
    Configuration value
    configKey String
    Unique identifier of the configuration
    name String
    Configuration name
    value String
    Configuration value

    GetResponderRecipesResponderRecipeCollectionItemResponderRule

    CompartmentId string
    The OCID of the compartment in which to list resources.
    Description string
    Responder rule description
    Details List<GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetail>
    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
    ResponderRuleId string
    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 []GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetail
    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
    ResponderRuleId string
    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<GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetail>
    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
    responderRuleId String
    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 GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetail[]
    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
    responderRuleId string
    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[cloudguard.GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetail]
    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_id str
    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
    responderRuleId String
    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<GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetailConfiguration>
    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 []GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetailConfiguration
    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<GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetailConfiguration>
    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 GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetailConfiguration[]
    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[cloudguard.GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetailConfiguration]
    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

    ConfigKey string
    Unique identifier of the configuration
    Name string
    Configuration name
    Value string
    Configuration value
    ConfigKey string
    Unique identifier of the configuration
    Name string
    Configuration name
    Value string
    Configuration value
    configKey String
    Unique identifier of the configuration
    name String
    Configuration name
    value String
    Configuration value
    configKey string
    Unique identifier of the configuration
    name string
    Configuration name
    value string
    Configuration value
    config_key str
    Unique identifier of the configuration
    name str
    Configuration name
    value str
    Configuration value
    configKey String
    Unique identifier of the configuration
    name String
    Configuration name
    value String
    Configuration value

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v2.4.0 published on Thursday, Jul 25, 2024 by Pulumi