oci logo
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:

CompartmentId string

The ID 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 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 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.

CompartmentId string

The ID 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 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 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.

compartmentId String

The ID 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 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 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.

compartmentId string

The ID 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 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 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 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 the setting of accessLevel.

display_name str

A filter to return only resources that match the entire display name given.

filters GetResponderRecipesFilter]
resource_metadata_only bool

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.

compartmentId String

The ID 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 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 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:

CompartmentId string

Compartment Identifier

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

ResponderRule display name.

Filters List<GetResponderRecipesFilter>
ResourceMetadataOnly bool
State string

The current state of the Example.

CompartmentId string

Compartment Identifier

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

ResponderRule display name.

Filters []GetResponderRecipesFilter
ResourceMetadataOnly bool
State string

The current state of the Example.

compartmentId String

Compartment Identifier

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

ResponderRule display name.

filters List<GetResponderRecipesFilter>
resourceMetadataOnly Boolean
state String

The current state of the Example.

compartmentId string

Compartment Identifier

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

ResponderRule display name.

filters GetResponderRecipesFilter[]
resourceMetadataOnly boolean
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_collections GetResponderRecipesResponderRecipeCollection]

The list of responder_recipe_collection.

access_level str
compartment_id_in_subtree bool
display_name str

ResponderRule display name.

filters GetResponderRecipesFilter]
resource_metadata_only bool
state str

The current state of the Example.

compartmentId String

Compartment Identifier

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

ResponderRule display name.

filters List<Property Map>
resourceMetadataOnly Boolean
state String

The current 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 ID 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

ResponderRule description.

DisplayName string

A filter to return only resources that match the entire display name given.

EffectiveResponderRules List<GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRule>

List of responder rules associated with the recipe

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

Identifier for ResponderRecipe.

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 ResponderRecipe

ResponderRules List<GetResponderRecipesResponderRecipeCollectionItemResponderRule>

List of responder rules associated with the recipe

SourceResponderRecipeId string

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.

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 updated. Format defined by RFC3339.

CompartmentId string

The ID 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

ResponderRule description.

DisplayName string

A filter to return only resources that match the entire display name given.

EffectiveResponderRules []GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRule

List of responder rules associated with the recipe

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

Identifier for ResponderRecipe.

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 ResponderRecipe

ResponderRules []GetResponderRecipesResponderRecipeCollectionItemResponderRule

List of responder rules associated with the recipe

SourceResponderRecipeId string

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.

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 updated. Format defined by RFC3339.

compartmentId String

The ID 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

ResponderRule description.

displayName String

A filter to return only resources that match the entire display name given.

effectiveResponderRules List<GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRule>

List of responder rules associated with the recipe

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

Identifier for ResponderRecipe.

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 ResponderRecipe

responderRules List<GetResponderRecipesResponderRecipeCollectionItemResponderRule>

List of responder rules associated with the recipe

sourceResponderRecipeId String

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.

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 updated. Format defined by RFC3339.

compartmentId string

The ID 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

ResponderRule description.

displayName string

A filter to return only resources that match the entire display name given.

effectiveResponderRules GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRule[]

List of responder rules associated with the recipe

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

Identifier for ResponderRecipe.

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 ResponderRecipe

responderRules GetResponderRecipesResponderRecipeCollectionItemResponderRule[]

List of responder rules associated with the recipe

sourceResponderRecipeId string

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.

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 updated. Format defined by RFC3339.

compartment_id str

The ID 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

ResponderRule description.

display_name str

A filter to return only resources that match the entire display name given.

effective_responder_rules GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRule]

List of responder rules associated with the recipe

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

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 GetResponderRecipesResponderRecipeCollectionItemResponderRule]

List of responder rules associated with the recipe

source_responder_recipe_id str

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.

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 updated. Format defined by RFC3339.

compartmentId String

The ID 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

ResponderRule description.

displayName String

A filter to return only resources that match the entire display name given.

effectiveResponderRules List<Property Map>

List of responder rules associated with the recipe

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

Identifier for ResponderRecipe.

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 ResponderRecipe

responderRules List<Property Map>

List of responder rules associated with the recipe

sourceResponderRecipeId String

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.

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 updated. Format defined by RFC3339.

GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRule

CompartmentId string

The ID of the compartment in which to list resources.

Description string

ResponderRule description.

Details List<GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetail>

Details of ResponderRule.

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 Policy

ResponderRuleId string

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.

SupportedModes List<string>

Supported Execution Modes

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 updated. Format defined by RFC3339.

Type string

Type of Responder

CompartmentId string

The ID of the compartment in which to list resources.

Description string

ResponderRule description.

Details []GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetail

Details of ResponderRule.

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 Policy

ResponderRuleId string

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.

SupportedModes []string

Supported Execution Modes

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 updated. Format defined by RFC3339.

Type string

Type of Responder

compartmentId String

The ID of the compartment in which to list resources.

description String

ResponderRule description.

details List<GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetail>

Details of ResponderRule.

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 Policy

responderRuleId String

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.

supportedModes List<String>

Supported Execution Modes

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 updated. Format defined by RFC3339.

type String

Type of Responder

compartmentId string

The ID of the compartment in which to list resources.

description string

ResponderRule description.

details GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetail[]

Details of ResponderRule.

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 Policy

responderRuleId string

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.

supportedModes string[]

Supported Execution Modes

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 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 GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetail]

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_id str

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

compartmentId String

The ID of the compartment in which to list resources.

description String

ResponderRule description.

details List<Property Map>

Details of ResponderRule.

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 Policy

responderRuleId String

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.

supportedModes List<String>

Supported Execution Modes

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 updated. Format defined by RFC3339.

type String

Type of Responder

GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetail

Condition string

Base condition object

Configurations List<GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetailConfiguration>

ResponderRule configurations

IsEnabled bool

Identifies state for ResponderRule

Mode string

Execution Mode for ResponderRule

Condition string

Base condition object

Configurations []GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetailConfiguration

ResponderRule configurations

IsEnabled bool

Identifies state for ResponderRule

Mode string

Execution Mode for ResponderRule

condition String

Base condition object

configurations List<GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetailConfiguration>

ResponderRule configurations

isEnabled Boolean

Identifies state for ResponderRule

mode String

Execution Mode for ResponderRule

condition string

Base condition object

configurations GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetailConfiguration[]

ResponderRule configurations

isEnabled boolean

Identifies state for ResponderRule

mode string

Execution Mode for ResponderRule

condition str

Base condition object

configurations GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetailConfiguration]

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

isEnabled Boolean

Identifies state for ResponderRule

mode String

Execution Mode for ResponderRule

GetResponderRecipesResponderRecipeCollectionItemEffectiveResponderRuleDetailConfiguration

ConfigKey string

Unique name of the configuration

Name string

configuration name

Value string

configuration value

ConfigKey string

Unique name of the configuration

Name string

configuration name

Value string

configuration value

configKey String

Unique name of the configuration

name String

configuration name

value String

configuration value

configKey string

Unique name of the configuration

name string

configuration name

value string

configuration value

config_key str

Unique name of the configuration

name str

configuration name

value str

configuration value

configKey String

Unique name of the configuration

name String

configuration name

value String

configuration value

GetResponderRecipesResponderRecipeCollectionItemResponderRule

CompartmentId string

The ID of the compartment in which to list resources.

Description string

ResponderRule description.

Details List<GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetail>

Details of ResponderRule.

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 Policy

ResponderRuleId string

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.

SupportedModes List<string>

Supported Execution Modes

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 updated. Format defined by RFC3339.

Type string

Type of Responder

CompartmentId string

The ID of the compartment in which to list resources.

Description string

ResponderRule description.

Details []GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetail

Details of ResponderRule.

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 Policy

ResponderRuleId string

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.

SupportedModes []string

Supported Execution Modes

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 updated. Format defined by RFC3339.

Type string

Type of Responder

compartmentId String

The ID of the compartment in which to list resources.

description String

ResponderRule description.

details List<GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetail>

Details of ResponderRule.

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 Policy

responderRuleId String

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.

supportedModes List<String>

Supported Execution Modes

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 updated. Format defined by RFC3339.

type String

Type of Responder

compartmentId string

The ID of the compartment in which to list resources.

description string

ResponderRule description.

details GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetail[]

Details of ResponderRule.

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 Policy

responderRuleId string

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.

supportedModes string[]

Supported Execution Modes

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 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 GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetail]

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_id str

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

compartmentId String

The ID of the compartment in which to list resources.

description String

ResponderRule description.

details List<Property Map>

Details of ResponderRule.

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 Policy

responderRuleId String

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.

supportedModes List<String>

Supported Execution Modes

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 updated. Format defined by RFC3339.

type String

Type of Responder

GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetail

Condition string

Base condition object

Configurations List<GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetailConfiguration>

ResponderRule configurations

IsEnabled bool

Identifies state for ResponderRule

Mode string

Execution Mode for ResponderRule

Condition string

Base condition object

Configurations []GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetailConfiguration

ResponderRule configurations

IsEnabled bool

Identifies state for ResponderRule

Mode string

Execution Mode for ResponderRule

condition String

Base condition object

configurations List<GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetailConfiguration>

ResponderRule configurations

isEnabled Boolean

Identifies state for ResponderRule

mode String

Execution Mode for ResponderRule

condition string

Base condition object

configurations GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetailConfiguration[]

ResponderRule configurations

isEnabled boolean

Identifies state for ResponderRule

mode string

Execution Mode for ResponderRule

condition str

Base condition object

configurations GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetailConfiguration]

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

isEnabled Boolean

Identifies state for ResponderRule

mode String

Execution Mode for ResponderRule

GetResponderRecipesResponderRecipeCollectionItemResponderRuleDetailConfiguration

ConfigKey string

Unique name of the configuration

Name string

configuration name

Value string

configuration value

ConfigKey string

Unique name of the configuration

Name string

configuration name

Value string

configuration value

configKey String

Unique name of the configuration

name String

configuration name

value String

configuration value

configKey string

Unique name of the configuration

name string

configuration name

value string

configuration value

config_key str

Unique name of the configuration

name str

configuration name

value str

configuration value

configKey String

Unique name 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.