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[_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:
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Access
Level string - Valid values are
RESTRICTED
andACCESSIBLE
. Default isRESTRICTED
. Setting this toACCESSIBLE
returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTED
permissions are checked and no partial results are displayed. - Compartment
Id boolIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of
accessLevel
. - Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
List<Get
Responder 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 string
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Access
Level string - Valid values are
RESTRICTED
andACCESSIBLE
. Default isRESTRICTED
. Setting this toACCESSIBLE
returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTED
permissions are checked and no partial results are displayed. - Compartment
Id boolIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of
accessLevel
. - Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
[]Get
Responder 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 string
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- compartment
Id String - The OCID of the compartment in which to list resources.
- access
Level String - Valid values are
RESTRICTED
andACCESSIBLE
. Default isRESTRICTED
. Setting this toACCESSIBLE
returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTED
permissions are checked and no partial results are displayed. - compartment
Id BooleanIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of
accessLevel
. - display
Name String - A filter to return only resources that match the entire display name given.
- filters
List<Get
Responder Recipes Filter> - resource
Metadata 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 string - The OCID of the compartment in which to list resources.
- access
Level string - Valid values are
RESTRICTED
andACCESSIBLE
. Default isRESTRICTED
. Setting this toACCESSIBLE
returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTED
permissions are checked and no partial results are displayed. - compartment
Id booleanIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of
accessLevel
. - display
Name string - A filter to return only resources that match the entire display name given.
- filters
Get
Responder Recipes Filter[] - resource
Metadata 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
RESTRICTED
andACCESSIBLE
. Default isRESTRICTED
. Setting this toACCESSIBLE
returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTED
permissions are checked and no partial results are displayed. - compartment_
id_ boolin_ subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of
accessLevel
. - display_
name str - A filter to return only resources that match the entire display name given.
- filters
Sequence[cloudguard.
Get Responder 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.
- compartment
Id String - The OCID of the compartment in which to list resources.
- access
Level String - Valid values are
RESTRICTED
andACCESSIBLE
. Default isRESTRICTED
. Setting this toACCESSIBLE
returns only those compartments for which the user has INSPECT permissions directly or indirectly (permissions can be on a resource in a subcompartment). When set toRESTRICTED
permissions are checked and no partial results are displayed. - compartment
Id BooleanIn Subtree - Default is false. When set to true, the hierarchy of compartments is traversed and all compartments and subcompartments in the tenancy are returned depending on the setting of
accessLevel
. - display
Name String - A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- resource
Metadata 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:
- Compartment
Id string - Compartment OCID
- Id string
- The provider-assigned unique ID for this managed resource.
- Responder
Recipe List<GetCollections Responder Recipes Responder Recipe Collection> - The list of responder_recipe_collection.
- Access
Level string - Compartment
Id boolIn Subtree - Display
Name string - Responder rule display name
- Filters
List<Get
Responder Recipes Filter> - Resource
Metadata boolOnly - State string
- The current lifecycle state of the example
- Compartment
Id string - Compartment OCID
- Id string
- The provider-assigned unique ID for this managed resource.
- Responder
Recipe []GetCollections Responder Recipes Responder Recipe Collection - The list of responder_recipe_collection.
- Access
Level string - Compartment
Id boolIn Subtree - Display
Name string - Responder rule display name
- Filters
[]Get
Responder Recipes Filter - Resource
Metadata boolOnly - State string
- The current lifecycle state of the example
- compartment
Id String - Compartment OCID
- id String
- The provider-assigned unique ID for this managed resource.
- responder
Recipe List<GetCollections Responder Recipes Responder Recipe Collection> - The list of responder_recipe_collection.
- access
Level String - compartment
Id BooleanIn Subtree - display
Name String - Responder rule display name
- filters
List<Get
Responder Recipes Filter> - resource
Metadata BooleanOnly - state String
- The current lifecycle state of the example
- compartment
Id string - Compartment OCID
- id string
- The provider-assigned unique ID for this managed resource.
- responder
Recipe GetCollections Responder Recipes Responder Recipe Collection[] - The list of responder_recipe_collection.
- access
Level string - compartment
Id booleanIn Subtree - display
Name string - Responder rule display name
- filters
Get
Responder Recipes Filter[] - resource
Metadata 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[cloudguard.collections Get 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[cloudguard.
Get Responder Recipes Filter] - resource_
metadata_ boolonly - state str
- The current lifecycle state of the example
- compartment
Id String - Compartment OCID
- id String
- The provider-assigned unique ID for this managed resource.
- responder
Recipe List<Property Map>Collections - The list of responder_recipe_collection.
- access
Level String - compartment
Id BooleanIn Subtree - display
Name String - Responder rule display name
- filters List<Property Map>
- resource
Metadata BooleanOnly - state String
- The current lifecycle state of the example
Supporting Types
GetResponderRecipesFilter
GetResponderRecipesResponderRecipeCollection
GetResponderRecipesResponderRecipeCollectionItem
- Compartment
Id 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
- Display
Name string - A filter to return only resources that match the entire display name given.
- Effective
Responder 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
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Owner string
- Owner of responder recipe
- Responder
Rules List<GetResponder Recipes Responder Recipe Collection Item Responder Rule> - List of responder rules associated with the recipe
- Source
Responder 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"}
- Time
Created string - The date and time the responder recipe was created. Format defined by RFC3339.
- Time
Updated string - The date and time the responder recipe was last updated. Format defined by RFC3339.
- Compartment
Id 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
- Display
Name string - A filter to return only resources that match the entire display name given.
- Effective
Responder []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
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Owner string
- Owner of responder recipe
- Responder
Rules []GetResponder Recipes Responder Recipe Collection Item Responder Rule - List of responder rules associated with the recipe
- Source
Responder 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"}
- Time
Created string - The date and time the responder recipe was created. Format defined by RFC3339.
- Time
Updated string - The date and time the responder recipe was last updated. Format defined by RFC3339.
- compartment
Id 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
- display
Name String - A filter to return only resources that match the entire display name given.
- effective
Responder 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
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- owner String
- Owner of responder recipe
- responder
Rules List<GetResponder Recipes Responder Recipe Collection Item Responder Rule> - List of responder rules associated with the recipe
- source
Responder 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"}
- time
Created String - The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated String - The date and time the responder recipe was last updated. Format defined by RFC3339.
- compartment
Id 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
- display
Name string - A filter to return only resources that match the entire display name given.
- effective
Responder 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
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- owner string
- Owner of responder recipe
- responder
Rules GetResponder Recipes Responder Recipe Collection Item Responder Rule[] - List of responder rules associated with the recipe
- source
Responder 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"}
- time
Created string - The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated 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[cloudguard.rules Get 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[cloudguard.Get Responder 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.
- compartment
Id 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
- display
Name String - A filter to return only resources that match the entire display name given.
- effective
Responder List<Property Map>Rules - List of currently enabled responder rules for the responder type, for recipe after applying defaults
- 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
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- owner String
- Owner of responder recipe
- responder
Rules List<Property Map> - List of responder rules associated with the recipe
- source
Responder 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"}
- time
Created String - The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated String - The date and time the responder recipe was last updated. Format defined by RFC3339.
GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRule
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Description string
- Responder rule description
- Details
List<Get
Responder Recipes Responder Recipe Collection Item Effective Responder Rule Detail> - Detailed information for a responder rule
- Display
Name string - A filter to return only resources that match the entire display name given.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Policies List<string>
- List of policies
- Responder
Rule stringId - Unique identifier for the responder rule
- State string
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Supported
Modes List<string> - Supported execution modes for the responder rule
- Time
Created string - The date and time the responder recipe was created. Format defined by RFC3339.
- Time
Updated string - The date and time the responder recipe was last updated. Format defined by RFC3339.
- Type string
- Type of responder
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Description string
- Responder rule description
- Details
[]Get
Responder Recipes Responder Recipe Collection Item Effective Responder Rule Detail - Detailed information for a responder rule
- Display
Name string - A filter to return only resources that match the entire display name given.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Policies []string
- List of policies
- Responder
Rule stringId - Unique identifier for the responder rule
- State string
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Supported
Modes []string - Supported execution modes for the responder rule
- Time
Created string - The date and time the responder recipe was created. Format defined by RFC3339.
- Time
Updated string - The date and time the responder recipe was last updated. Format defined by RFC3339.
- Type string
- Type of responder
- compartment
Id String - The OCID of the compartment in which to list resources.
- description String
- Responder rule description
- details
List<Get
Responder Recipes Responder Recipe Collection Item Effective Responder Rule Detail> - Detailed information for a responder rule
- display
Name String - A filter to return only resources that match the entire display name given.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies List<String>
- List of policies
- responder
Rule StringId - Unique identifier for the responder rule
- state String
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- supported
Modes List<String> - Supported execution modes for the responder rule
- time
Created String - The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated String - The date and time the responder recipe was last updated. Format defined by RFC3339.
- type String
- Type of responder
- compartment
Id string - The OCID of the compartment in which to list resources.
- description string
- Responder rule description
- details
Get
Responder Recipes Responder Recipe Collection Item Effective Responder Rule Detail[] - Detailed information for a responder rule
- display
Name string - A filter to return only resources that match the entire display name given.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies string[]
- List of policies
- responder
Rule stringId - Unique identifier for the responder rule
- state string
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- supported
Modes string[] - Supported execution modes for the responder rule
- time
Created string - The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated 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.
Get Responder 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
- compartment
Id String - The OCID of the compartment in which to list resources.
- description String
- Responder rule description
- details List<Property Map>
- Detailed information for a responder rule
- display
Name String - A filter to return only resources that match the entire display name given.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies List<String>
- List of policies
- responder
Rule StringId - Unique identifier for the responder rule
- state String
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- supported
Modes List<String> - Supported execution modes for the responder rule
- time
Created String - The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated 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<Get
Responder 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 string
- Execution mode for the responder rule
- Condition string
- The base condition resource.
- Configurations
[]Get
Responder 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 string
- Execution mode for the responder rule
- condition String
- The base condition resource.
- configurations
List<Get
Responder Recipes Responder Recipe Collection Item Effective Responder Rule Detail Configuration> - List of responder rule configurations
- is
Enabled Boolean - Enabled state for the responder rule
- mode String
- Execution mode for the responder rule
- condition string
- The base condition resource.
- configurations
Get
Responder Recipes Responder Recipe Collection Item Effective Responder Rule Detail Configuration[] - List of responder rule configurations
- is
Enabled boolean - Enabled state for the responder rule
- mode string
- Execution mode for the responder rule
- condition str
- The base condition resource.
- configurations
Sequence[cloudguard.
Get Responder 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
- is
Enabled 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
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Description string
- Responder rule description
- Details
List<Get
Responder Recipes Responder Recipe Collection Item Responder Rule Detail> - Detailed information for a responder rule
- Display
Name string - A filter to return only resources that match the entire display name given.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Policies List<string>
- List of policies
- Responder
Rule stringId - Unique identifier for the responder rule
- State string
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Supported
Modes List<string> - Supported execution modes for the responder rule
- Time
Created string - The date and time the responder recipe was created. Format defined by RFC3339.
- Time
Updated string - The date and time the responder recipe was last updated. Format defined by RFC3339.
- Type string
- Type of responder
- Compartment
Id string - The OCID of the compartment in which to list resources.
- Description string
- Responder rule description
- Details
[]Get
Responder Recipes Responder Recipe Collection Item Responder Rule Detail - Detailed information for a responder rule
- Display
Name string - A filter to return only resources that match the entire display name given.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Policies []string
- List of policies
- Responder
Rule stringId - Unique identifier for the responder rule
- State string
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Supported
Modes []string - Supported execution modes for the responder rule
- Time
Created string - The date and time the responder recipe was created. Format defined by RFC3339.
- Time
Updated string - The date and time the responder recipe was last updated. Format defined by RFC3339.
- Type string
- Type of responder
- compartment
Id String - The OCID of the compartment in which to list resources.
- description String
- Responder rule description
- details
List<Get
Responder Recipes Responder Recipe Collection Item Responder Rule Detail> - Detailed information for a responder rule
- display
Name String - A filter to return only resources that match the entire display name given.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies List<String>
- List of policies
- responder
Rule StringId - Unique identifier for the responder rule
- state String
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- supported
Modes List<String> - Supported execution modes for the responder rule
- time
Created String - The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated String - The date and time the responder recipe was last updated. Format defined by RFC3339.
- type String
- Type of responder
- compartment
Id string - The OCID of the compartment in which to list resources.
- description string
- Responder rule description
- details
Get
Responder Recipes Responder Recipe Collection Item Responder Rule Detail[] - Detailed information for a responder rule
- display
Name string - A filter to return only resources that match the entire display name given.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies string[]
- List of policies
- responder
Rule stringId - Unique identifier for the responder rule
- state string
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- supported
Modes string[] - Supported execution modes for the responder rule
- time
Created string - The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated 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.
Get Responder 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
- compartment
Id String - The OCID of the compartment in which to list resources.
- description String
- Responder rule description
- details List<Property Map>
- Detailed information for a responder rule
- display
Name String - A filter to return only resources that match the entire display name given.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies List<String>
- List of policies
- responder
Rule StringId - Unique identifier for the responder rule
- state String
- The field lifecycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- supported
Modes List<String> - Supported execution modes for the responder rule
- time
Created String - The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated 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<Get
Responder Recipes Responder Recipe Collection Item Responder Rule Detail Configuration> - List of responder rule configurations
- Is
Enabled bool - Enabled state for the responder rule
- Mode string
- Execution mode for the responder rule
- Condition string
- The base condition resource.
- Configurations
[]Get
Responder Recipes Responder Recipe Collection Item Responder Rule Detail Configuration - List of responder rule configurations
- Is
Enabled bool - Enabled state for the responder rule
- Mode string
- Execution mode for the responder rule
- condition String
- The base condition resource.
- configurations
List<Get
Responder Recipes Responder Recipe Collection Item Responder Rule Detail Configuration> - List of responder rule configurations
- is
Enabled Boolean - Enabled state for the responder rule
- mode String
- Execution mode for the responder rule
- condition string
- The base condition resource.
- configurations
Get
Responder Recipes Responder Recipe Collection Item Responder Rule Detail Configuration[] - List of responder rule configurations
- is
Enabled boolean - Enabled state for the responder rule
- mode string
- Execution mode for the responder rule
- condition str
- The base condition resource.
- configurations
Sequence[cloudguard.
Get Responder 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
- is
Enabled 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
oci
Terraform Provider.