Oracle Cloud Infrastructure v0.20.0, May 31 23
Oracle Cloud Infrastructure v0.20.0, May 31 23
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 of all ResponderRecipes in a compartment
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
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 = @var.Compartment_id,
AccessLevel = @var.Responder_recipe_access_level,
CompartmentIdInSubtree = @var.Responder_recipe_compartment_id_in_subtree,
DisplayName = @var.Responder_recipe_display_name,
ResourceMetadataOnly = @var.Responder_recipe_resource_metadata_only,
State = @var.Responder_recipe_state,
});
});
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/CloudGuard"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := CloudGuard.GetResponderRecipes(ctx, &cloudguard.GetResponderRecipesArgs{
CompartmentId: _var.Compartment_id,
AccessLevel: pulumi.StringRef(_var.Responder_recipe_access_level),
CompartmentIdInSubtree: pulumi.BoolRef(_var.Responder_recipe_compartment_id_in_subtree),
DisplayName: pulumi.StringRef(_var.Responder_recipe_display_name),
ResourceMetadataOnly: pulumi.BoolRef(_var.Responder_recipe_resource_metadata_only),
State: pulumi.StringRef(_var.Responder_recipe_state),
}, nil)
if err != nil {
return err
}
return nil
})
}
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(var_.compartment_id())
.accessLevel(var_.responder_recipe_access_level())
.compartmentIdInSubtree(var_.responder_recipe_compartment_id_in_subtree())
.displayName(var_.responder_recipe_display_name())
.resourceMetadataOnly(var_.responder_recipe_resource_metadata_only())
.state(var_.responder_recipe_state())
.build());
}
}
import pulumi
import pulumi_oci as oci
test_responder_recipes = oci.CloudGuard.get_responder_recipes(compartment_id=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
access_level=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
compartment_id_in_subtree=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
display_name=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
resource_metadata_only=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference),
state=%!v(PANIC=Format method: runtime error: invalid memory address or nil pointer dereference))
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testResponderRecipes = oci.CloudGuard.getResponderRecipes({
compartmentId: _var.compartment_id,
accessLevel: _var.responder_recipe_access_level,
compartmentIdInSubtree: _var.responder_recipe_compartment_id_in_subtree,
displayName: _var.responder_recipe_display_name,
resourceMetadataOnly: _var.responder_recipe_resource_metadata_only,
state: _var.responder_recipe_state,
});
variables:
testResponderRecipes:
fn::invoke:
Function: oci:CloudGuard:getResponderRecipes
Arguments:
compartmentId: ${var.compartment_id}
accessLevel: ${var.responder_recipe_access_level}
compartmentIdInSubtree: ${var.responder_recipe_compartment_id_in_subtree}
displayName: ${var.responder_recipe_display_name}
resourceMetadataOnly: ${var.responder_recipe_resource_metadata_only}
state: ${var.responder_recipe_state}
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 ID 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 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 are returned.
- State string
The field life cycle 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 ID 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 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 are returned.
- State string
The field life cycle 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 ID 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 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 are returned.
- state String
The field life cycle 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 ID 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 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 are returned.
- state string
The field life cycle 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 ID 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 the setting of
accessLevel
.- display_
name str 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 are returned.
- state str
The field life cycle 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 ID 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 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 are returned.
- state String
The field life cycle 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 Identifier
- 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 ResponderRule display name.
- Filters
List<Get
Responder Recipes Filter> - Resource
Metadata boolOnly - State string
The current state of the Example.
- Compartment
Id string Compartment Identifier
- 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 ResponderRule display name.
- Filters
[]Get
Responder Recipes Filter - Resource
Metadata boolOnly - State string
The current state of the Example.
- compartment
Id String Compartment Identifier
- 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 ResponderRule display name.
- filters
List<Get
Responder Recipes Filter> - resource
Metadata BooleanOnly - state String
The current state of the Example.
- compartment
Id string Compartment Identifier
- 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 ResponderRule display name.
- filters
Get
Responder Recipes Filter[] - resource
Metadata booleanOnly - state string
The current state of the Example.
- compartment_
id str Compartment Identifier
- id str
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 str - compartment_
id_ boolin_ subtree - display_
name str ResponderRule display name.
- filters
Get
Responder Recipes Filter] - resource_
metadata_ boolonly - state str
The current state of the Example.
- compartment
Id String Compartment Identifier
- 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 ResponderRule display name.
- filters List<Property Map>
- resource
Metadata BooleanOnly - state String
The current state of the Example.
Supporting Types
GetResponderRecipesFilter
GetResponderRecipesResponderRecipeCollection
GetResponderRecipesResponderRecipeCollectionItem
- Compartment
Id string The ID of the compartment in which to list resources.
- Dictionary<string, object>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
ResponderRule 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 responder rules associated with the recipe
- 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
Identifier for ResponderRecipe.
- 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 ResponderRecipe
- Responder
Rules List<GetResponder Recipes Responder Recipe Collection Item Responder Rule> List of responder rules associated with the recipe
- Source
Responder stringRecipe Id The id of the source responder recipe.
- State string
The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Dictionary<string, object>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string The date and time the responder recipe was created. Format defined by RFC3339.
- Time
Updated string The date and time the responder recipe was updated. Format defined by RFC3339.
- Compartment
Id string The ID of the compartment in which to list resources.
- map[string]interface{}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Description string
ResponderRule 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 responder rules associated with the recipe
- 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
Identifier for ResponderRecipe.
- 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 ResponderRecipe
- Responder
Rules []GetResponder Recipes Responder Recipe Collection Item Responder Rule List of responder rules associated with the recipe
- Source
Responder stringRecipe Id The id of the source responder recipe.
- State string
The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- map[string]interface{}
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string The date and time the responder recipe was created. Format defined by RFC3339.
- Time
Updated string The date and time the responder recipe was updated. Format defined by RFC3339.
- compartment
Id String The ID of the compartment in which to list resources.
- Map<String,Object>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
ResponderRule 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 responder rules associated with the recipe
- 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
Identifier for ResponderRecipe.
- 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 ResponderRecipe
- responder
Rules List<GetResponder Recipes Responder Recipe Collection Item Responder Rule> List of responder rules associated with the recipe
- source
Responder StringRecipe Id The id of the source responder recipe.
- state String
The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Map<String,Object>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated String The date and time the responder recipe was updated. Format defined by RFC3339.
- compartment
Id string The ID of the compartment in which to list resources.
- {[key: string]: any}
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description string
ResponderRule 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 responder rules associated with the recipe
- {[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
Identifier for ResponderRecipe.
- 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 ResponderRecipe
- responder
Rules GetResponder Recipes Responder Recipe Collection Item Responder Rule[] List of responder rules associated with the recipe
- source
Responder stringRecipe Id The id of the source responder recipe.
- state string
The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- {[key: string]: any}
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated string The date and time the responder recipe was updated. Format defined by RFC3339.
- compartment_
id str The ID of the compartment in which to list resources.
- Mapping[str, Any]
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description str
ResponderRule description.
- display_
name str 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 responder rules associated with the recipe
- 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
Identifier for ResponderRecipe.
- 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 ResponderRecipe
- responder_
rules GetResponder Recipes Responder Recipe Collection Item Responder Rule] List of responder rules associated with the recipe
- source_
responder_ strrecipe_ id The id of the source responder recipe.
- state str
The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Mapping[str, Any]
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str The date and time the responder recipe was created. Format defined by RFC3339.
- time_
updated str The date and time the responder recipe was updated. Format defined by RFC3339.
- compartment
Id String The ID of the compartment in which to list resources.
- Map<Any>
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- description String
ResponderRule 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 responder rules associated with the recipe
- 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
Identifier for ResponderRecipe.
- 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 ResponderRecipe
- responder
Rules List<Property Map> List of responder rules associated with the recipe
- source
Responder StringRecipe Id The id of the source responder recipe.
- state String
The field life cycle state. Only one state can be provided. Default value for state is active. If no value is specified state is active.
- Map<Any>
System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated String The date and time the responder recipe was updated. Format defined by RFC3339.
GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRule
- Compartment
Id string The ID of the compartment in which to list resources.
- Description string
ResponderRule description.
- Details
List<Get
Responder Recipes Responder Recipe Collection Item Effective Responder Rule Detail> Details of ResponderRule.
- 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 Policy
- Responder
Rule stringId Identifier for ResponderRule.
- State string
The field life cycle 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
- 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 updated. Format defined by RFC3339.
- Type string
Type of Responder
- Compartment
Id string The ID of the compartment in which to list resources.
- Description string
ResponderRule description.
- Details
[]Get
Responder Recipes Responder Recipe Collection Item Effective Responder Rule Detail Details of ResponderRule.
- 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 Policy
- Responder
Rule stringId Identifier for ResponderRule.
- State string
The field life cycle 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
- 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 updated. Format defined by RFC3339.
- Type string
Type of Responder
- compartment
Id String The ID of the compartment in which to list resources.
- description String
ResponderRule description.
- details
List<Get
Responder Recipes Responder Recipe Collection Item Effective Responder Rule Detail> Details of ResponderRule.
- 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 Policy
- responder
Rule StringId Identifier for ResponderRule.
- state String
The field life cycle 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
- 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 updated. Format defined by RFC3339.
- type String
Type of Responder
- compartment
Id string The ID of the compartment in which to list resources.
- description string
ResponderRule description.
- details
Get
Responder Recipes Responder Recipe Collection Item Effective Responder Rule Detail[] Details of ResponderRule.
- 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 Policy
- responder
Rule stringId Identifier for ResponderRule.
- state string
The field life cycle 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
- 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 updated. Format defined by RFC3339.
- type string
Type of Responder
- compartment_
id str The ID of the compartment in which to list resources.
- description str
ResponderRule description.
- details
Get
Responder Recipes Responder Recipe Collection Item Effective Responder Rule Detail] Details of ResponderRule.
- 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 Policy
- responder_
rule_ strid Identifier for ResponderRule.
- state str
The field life cycle 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
- 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 updated. Format defined by RFC3339.
- type str
Type of Responder
- compartment
Id String The ID of the compartment in which to list resources.
- description String
ResponderRule description.
- details List<Property Map>
Details of ResponderRule.
- 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 Policy
- responder
Rule StringId Identifier for ResponderRule.
- state String
The field life cycle 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
- 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 updated. Format defined by RFC3339.
- type String
Type of Responder
GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetail
- Condition string
Base condition object
- Configurations
List<Get
Responder Recipes Responder Recipe Collection Item Effective Responder Rule Detail Configuration> ResponderRule configurations
- Is
Enabled bool Identifies state for ResponderRule
- Mode string
Execution Mode for ResponderRule
- Condition string
Base condition object
- Configurations
[]Get
Responder Recipes Responder Recipe Collection Item Effective Responder Rule Detail Configuration ResponderRule configurations
- Is
Enabled bool Identifies state for ResponderRule
- Mode string
Execution Mode for ResponderRule
- condition String
Base condition object
- configurations
List<Get
Responder Recipes Responder Recipe Collection Item Effective Responder Rule Detail Configuration> ResponderRule configurations
- is
Enabled Boolean Identifies state for ResponderRule
- mode String
Execution Mode for ResponderRule
- condition string
Base condition object
- configurations
Get
Responder Recipes Responder Recipe Collection Item Effective Responder Rule Detail Configuration[] ResponderRule configurations
- is
Enabled boolean Identifies state for ResponderRule
- mode string
Execution Mode for ResponderRule
- condition str
Base condition object
- configurations
Get
Responder Recipes Responder Recipe Collection Item Effective Responder Rule Detail Configuration] ResponderRule configurations
- is_
enabled bool Identifies state for ResponderRule
- mode str
Execution Mode for ResponderRule
- condition String
Base condition object
- configurations List<Property Map>
ResponderRule configurations
- is
Enabled Boolean Identifies state for ResponderRule
- mode String
Execution Mode for ResponderRule
GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetailConfiguration
- config_
key str Unique name of the configuration
- name str
configuration name
- value str
configuration value
GetResponderRecipesResponderRecipeCollectionItemResponderRule
- Compartment
Id string The ID of the compartment in which to list resources.
- Description string
ResponderRule description.
- Details
List<Get
Responder Recipes Responder Recipe Collection Item Responder Rule Detail> Details of ResponderRule.
- 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 Policy
- Responder
Rule stringId Identifier for ResponderRule.
- State string
The field life cycle 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
- 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 updated. Format defined by RFC3339.
- Type string
Type of Responder
- Compartment
Id string The ID of the compartment in which to list resources.
- Description string
ResponderRule description.
- Details
[]Get
Responder Recipes Responder Recipe Collection Item Responder Rule Detail Details of ResponderRule.
- 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 Policy
- Responder
Rule stringId Identifier for ResponderRule.
- State string
The field life cycle 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
- 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 updated. Format defined by RFC3339.
- Type string
Type of Responder
- compartment
Id String The ID of the compartment in which to list resources.
- description String
ResponderRule description.
- details
List<Get
Responder Recipes Responder Recipe Collection Item Responder Rule Detail> Details of ResponderRule.
- 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 Policy
- responder
Rule StringId Identifier for ResponderRule.
- state String
The field life cycle 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
- 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 updated. Format defined by RFC3339.
- type String
Type of Responder
- compartment
Id string The ID of the compartment in which to list resources.
- description string
ResponderRule description.
- details
Get
Responder Recipes Responder Recipe Collection Item Responder Rule Detail[] Details of ResponderRule.
- 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 Policy
- responder
Rule stringId Identifier for ResponderRule.
- state string
The field life cycle 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
- 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 updated. Format defined by RFC3339.
- type string
Type of Responder
- compartment_
id str The ID of the compartment in which to list resources.
- description str
ResponderRule description.
- details
Get
Responder Recipes Responder Recipe Collection Item Responder Rule Detail] Details of ResponderRule.
- 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 Policy
- responder_
rule_ strid Identifier for ResponderRule.
- state str
The field life cycle 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
- 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 updated. Format defined by RFC3339.
- type str
Type of Responder
- compartment
Id String The ID of the compartment in which to list resources.
- description String
ResponderRule description.
- details List<Property Map>
Details of ResponderRule.
- 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 Policy
- responder
Rule StringId Identifier for ResponderRule.
- state String
The field life cycle 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
- 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 updated. Format defined by RFC3339.
- type String
Type of Responder
GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetail
- Condition string
Base condition object
- Configurations
List<Get
Responder Recipes Responder Recipe Collection Item Responder Rule Detail Configuration> ResponderRule configurations
- Is
Enabled bool Identifies state for ResponderRule
- Mode string
Execution Mode for ResponderRule
- Condition string
Base condition object
- Configurations
[]Get
Responder Recipes Responder Recipe Collection Item Responder Rule Detail Configuration ResponderRule configurations
- Is
Enabled bool Identifies state for ResponderRule
- Mode string
Execution Mode for ResponderRule
- condition String
Base condition object
- configurations
List<Get
Responder Recipes Responder Recipe Collection Item Responder Rule Detail Configuration> ResponderRule configurations
- is
Enabled Boolean Identifies state for ResponderRule
- mode String
Execution Mode for ResponderRule
- condition string
Base condition object
- configurations
Get
Responder Recipes Responder Recipe Collection Item Responder Rule Detail Configuration[] ResponderRule configurations
- is
Enabled boolean Identifies state for ResponderRule
- mode string
Execution Mode for ResponderRule
- condition str
Base condition object
- configurations
Get
Responder Recipes Responder Recipe Collection Item Responder Rule Detail Configuration] ResponderRule configurations
- is_
enabled bool Identifies state for ResponderRule
- mode str
Execution Mode for ResponderRule
- condition String
Base condition object
- configurations List<Property Map>
ResponderRule configurations
- is
Enabled Boolean Identifies state for ResponderRule
- mode String
Execution Mode for ResponderRule
GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetailConfiguration
- config_
key str Unique name 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.