1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. CloudGuard
  5. ResponderRecipe
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi

oci.CloudGuard.ResponderRecipe

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi

    This resource provides the Responder Recipe resource in Oracle Cloud Infrastructure Cloud Guard service.

    Creates a responder recipe (ResponderRecipe resource), from values passed in a CreateResponderRecipeDetails resource.

    Create ResponderRecipe Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new ResponderRecipe(name: string, args: ResponderRecipeArgs, opts?: CustomResourceOptions);
    @overload
    def ResponderRecipe(resource_name: str,
                        args: ResponderRecipeArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def ResponderRecipe(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        compartment_id: Optional[str] = None,
                        display_name: Optional[str] = None,
                        source_responder_recipe_id: Optional[str] = None,
                        defined_tags: Optional[Mapping[str, Any]] = None,
                        description: Optional[str] = None,
                        freeform_tags: Optional[Mapping[str, Any]] = None,
                        responder_rules: Optional[Sequence[_cloudguard.ResponderRecipeResponderRuleArgs]] = None)
    func NewResponderRecipe(ctx *Context, name string, args ResponderRecipeArgs, opts ...ResourceOption) (*ResponderRecipe, error)
    public ResponderRecipe(string name, ResponderRecipeArgs args, CustomResourceOptions? opts = null)
    public ResponderRecipe(String name, ResponderRecipeArgs args)
    public ResponderRecipe(String name, ResponderRecipeArgs args, CustomResourceOptions options)
    
    type: oci:CloudGuard:ResponderRecipe
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args ResponderRecipeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ResponderRecipeArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ResponderRecipeArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ResponderRecipeArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ResponderRecipeArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var responderRecipeResource = new Oci.CloudGuard.ResponderRecipe("responderRecipeResource", new()
    {
        CompartmentId = "string",
        DisplayName = "string",
        SourceResponderRecipeId = "string",
        DefinedTags = 
        {
            { "string", "any" },
        },
        Description = "string",
        FreeformTags = 
        {
            { "string", "any" },
        },
        ResponderRules = new[]
        {
            new Oci.CloudGuard.Inputs.ResponderRecipeResponderRuleArgs
            {
                Details = new Oci.CloudGuard.Inputs.ResponderRecipeResponderRuleDetailsArgs
                {
                    IsEnabled = false,
                    Condition = "string",
                    Configurations = new[]
                    {
                        new Oci.CloudGuard.Inputs.ResponderRecipeResponderRuleDetailsConfigurationArgs
                        {
                            ConfigKey = "string",
                            Name = "string",
                            Value = "string",
                        },
                    },
                    Mode = "string",
                },
                ResponderRuleId = "string",
                CompartmentId = "string",
                Description = "string",
                DisplayName = "string",
                LifecycleDetails = "string",
                Policies = new[]
                {
                    "string",
                },
                State = "string",
                SupportedModes = new[]
                {
                    "string",
                },
                TimeCreated = "string",
                TimeUpdated = "string",
                Type = "string",
            },
        },
    });
    
    example, err := CloudGuard.NewResponderRecipe(ctx, "responderRecipeResource", &CloudGuard.ResponderRecipeArgs{
    	CompartmentId:           pulumi.String("string"),
    	DisplayName:             pulumi.String("string"),
    	SourceResponderRecipeId: pulumi.String("string"),
    	DefinedTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	Description: pulumi.String("string"),
    	FreeformTags: pulumi.Map{
    		"string": pulumi.Any("any"),
    	},
    	ResponderRules: cloudguard.ResponderRecipeResponderRuleArray{
    		&cloudguard.ResponderRecipeResponderRuleArgs{
    			Details: &cloudguard.ResponderRecipeResponderRuleDetailsArgs{
    				IsEnabled: pulumi.Bool(false),
    				Condition: pulumi.String("string"),
    				Configurations: cloudguard.ResponderRecipeResponderRuleDetailsConfigurationArray{
    					&cloudguard.ResponderRecipeResponderRuleDetailsConfigurationArgs{
    						ConfigKey: pulumi.String("string"),
    						Name:      pulumi.String("string"),
    						Value:     pulumi.String("string"),
    					},
    				},
    				Mode: pulumi.String("string"),
    			},
    			ResponderRuleId:  pulumi.String("string"),
    			CompartmentId:    pulumi.String("string"),
    			Description:      pulumi.String("string"),
    			DisplayName:      pulumi.String("string"),
    			LifecycleDetails: pulumi.String("string"),
    			Policies: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			State: pulumi.String("string"),
    			SupportedModes: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			TimeCreated: pulumi.String("string"),
    			TimeUpdated: pulumi.String("string"),
    			Type:        pulumi.String("string"),
    		},
    	},
    })
    
    var responderRecipeResource = new ResponderRecipe("responderRecipeResource", ResponderRecipeArgs.builder()
        .compartmentId("string")
        .displayName("string")
        .sourceResponderRecipeId("string")
        .definedTags(Map.of("string", "any"))
        .description("string")
        .freeformTags(Map.of("string", "any"))
        .responderRules(ResponderRecipeResponderRuleArgs.builder()
            .details(ResponderRecipeResponderRuleDetailsArgs.builder()
                .isEnabled(false)
                .condition("string")
                .configurations(ResponderRecipeResponderRuleDetailsConfigurationArgs.builder()
                    .configKey("string")
                    .name("string")
                    .value("string")
                    .build())
                .mode("string")
                .build())
            .responderRuleId("string")
            .compartmentId("string")
            .description("string")
            .displayName("string")
            .lifecycleDetails("string")
            .policies("string")
            .state("string")
            .supportedModes("string")
            .timeCreated("string")
            .timeUpdated("string")
            .type("string")
            .build())
        .build());
    
    responder_recipe_resource = oci.cloud_guard.ResponderRecipe("responderRecipeResource",
        compartment_id="string",
        display_name="string",
        source_responder_recipe_id="string",
        defined_tags={
            "string": "any",
        },
        description="string",
        freeform_tags={
            "string": "any",
        },
        responder_rules=[oci.cloud_guard.ResponderRecipeResponderRuleArgs(
            details=oci.cloud_guard.ResponderRecipeResponderRuleDetailsArgs(
                is_enabled=False,
                condition="string",
                configurations=[oci.cloud_guard.ResponderRecipeResponderRuleDetailsConfigurationArgs(
                    config_key="string",
                    name="string",
                    value="string",
                )],
                mode="string",
            ),
            responder_rule_id="string",
            compartment_id="string",
            description="string",
            display_name="string",
            lifecycle_details="string",
            policies=["string"],
            state="string",
            supported_modes=["string"],
            time_created="string",
            time_updated="string",
            type="string",
        )])
    
    const responderRecipeResource = new oci.cloudguard.ResponderRecipe("responderRecipeResource", {
        compartmentId: "string",
        displayName: "string",
        sourceResponderRecipeId: "string",
        definedTags: {
            string: "any",
        },
        description: "string",
        freeformTags: {
            string: "any",
        },
        responderRules: [{
            details: {
                isEnabled: false,
                condition: "string",
                configurations: [{
                    configKey: "string",
                    name: "string",
                    value: "string",
                }],
                mode: "string",
            },
            responderRuleId: "string",
            compartmentId: "string",
            description: "string",
            displayName: "string",
            lifecycleDetails: "string",
            policies: ["string"],
            state: "string",
            supportedModes: ["string"],
            timeCreated: "string",
            timeUpdated: "string",
            type: "string",
        }],
    });
    
    type: oci:CloudGuard:ResponderRecipe
    properties:
        compartmentId: string
        definedTags:
            string: any
        description: string
        displayName: string
        freeformTags:
            string: any
        responderRules:
            - compartmentId: string
              description: string
              details:
                condition: string
                configurations:
                    - configKey: string
                      name: string
                      value: string
                isEnabled: false
                mode: string
              displayName: string
              lifecycleDetails: string
              policies:
                - string
              responderRuleId: string
              state: string
              supportedModes:
                - string
              timeCreated: string
              timeUpdated: string
              type: string
        sourceResponderRecipeId: string
    

    ResponderRecipe Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ResponderRecipe resource accepts the following input properties:

    CompartmentId string
    (Updatable) Compartment OCID
    DisplayName string

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    SourceResponderRecipeId string

    The unique identifier of the source responder recipe

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    FreeformTags Dictionary<string, object>

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    ResponderRules List<ResponderRecipeResponderRule>
    (Updatable) List of responder rules to override from source responder recipe
    CompartmentId string
    (Updatable) Compartment OCID
    DisplayName string

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    SourceResponderRecipeId string

    The unique identifier of the source responder recipe

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    FreeformTags map[string]interface{}

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    ResponderRules []ResponderRecipeResponderRuleArgs
    (Updatable) List of responder rules to override from source responder recipe
    compartmentId String
    (Updatable) Compartment OCID
    displayName String

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    sourceResponderRecipeId String

    The unique identifier of the source responder recipe

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    freeformTags Map<String,Object>

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    responderRules List<ResponderRecipeResponderRule>
    (Updatable) List of responder rules to override from source responder recipe
    compartmentId string
    (Updatable) Compartment OCID
    displayName string

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    sourceResponderRecipeId string

    The unique identifier of the source responder recipe

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    freeformTags {[key: string]: any}

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    responderRules ResponderRecipeResponderRule[]
    (Updatable) List of responder rules to override from source responder recipe
    compartment_id str
    (Updatable) Compartment OCID
    display_name str

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    source_responder_recipe_id str

    The unique identifier of the source responder recipe

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    freeform_tags Mapping[str, Any]

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    responder_rules Sequence[cloudguard.ResponderRecipeResponderRuleArgs]
    (Updatable) List of responder rules to override from source responder recipe
    compartmentId String
    (Updatable) Compartment OCID
    displayName String

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    sourceResponderRecipeId String

    The unique identifier of the source responder recipe

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    freeformTags Map<Any>

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    responderRules List<Property Map>
    (Updatable) List of responder rules to override from source responder recipe

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ResponderRecipe resource produces the following output properties:

    EffectiveResponderRules List<ResponderRecipeEffectiveResponderRule>
    List of currently enabled responder rules for the responder type, for recipe after applying defaults
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Owner string
    Owner of responder recipe
    State string
    The current lifecycle state of the example
    SystemTags Dictionary<string, object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the responder recipe was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the responder recipe was last updated. Format defined by RFC3339.
    EffectiveResponderRules []ResponderRecipeEffectiveResponderRule
    List of currently enabled responder rules for the responder type, for recipe after applying defaults
    Id string
    The provider-assigned unique ID for this managed resource.
    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Owner string
    Owner of responder recipe
    State string
    The current lifecycle state of the example
    SystemTags map[string]interface{}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the responder recipe was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the responder recipe was last updated. Format defined by RFC3339.
    effectiveResponderRules List<ResponderRecipeEffectiveResponderRule>
    List of currently enabled responder rules for the responder type, for recipe after applying defaults
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    owner String
    Owner of responder recipe
    state String
    The current lifecycle state of the example
    systemTags Map<String,Object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the responder recipe was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the responder recipe was last updated. Format defined by RFC3339.
    effectiveResponderRules ResponderRecipeEffectiveResponderRule[]
    List of currently enabled responder rules for the responder type, for recipe after applying defaults
    id string
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    owner string
    Owner of responder recipe
    state string
    The current lifecycle state of the example
    systemTags {[key: string]: any}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the responder recipe was created. Format defined by RFC3339.
    timeUpdated string
    The date and time the responder recipe was last updated. Format defined by RFC3339.
    effective_responder_rules Sequence[cloudguard.ResponderRecipeEffectiveResponderRule]
    List of currently enabled responder rules for the responder type, for recipe after applying defaults
    id str
    The provider-assigned unique ID for this managed resource.
    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
    state str
    The current lifecycle state of the example
    system_tags Mapping[str, Any]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The date and time the responder recipe was created. Format defined by RFC3339.
    time_updated str
    The date and time the responder recipe was last updated. Format defined by RFC3339.
    effectiveResponderRules List<Property Map>
    List of currently enabled responder rules for the responder type, for recipe after applying defaults
    id String
    The provider-assigned unique ID for this managed resource.
    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    owner String
    Owner of responder recipe
    state String
    The current lifecycle state of the example
    systemTags Map<Any>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the responder recipe was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the responder recipe was last updated. Format defined by RFC3339.

    Look up Existing ResponderRecipe Resource

    Get an existing ResponderRecipe resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ResponderRecipeState, opts?: CustomResourceOptions): ResponderRecipe
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            compartment_id: Optional[str] = None,
            defined_tags: Optional[Mapping[str, Any]] = None,
            description: Optional[str] = None,
            display_name: Optional[str] = None,
            effective_responder_rules: Optional[Sequence[_cloudguard.ResponderRecipeEffectiveResponderRuleArgs]] = None,
            freeform_tags: Optional[Mapping[str, Any]] = None,
            lifecycle_details: Optional[str] = None,
            owner: Optional[str] = None,
            responder_rules: Optional[Sequence[_cloudguard.ResponderRecipeResponderRuleArgs]] = None,
            source_responder_recipe_id: Optional[str] = None,
            state: Optional[str] = None,
            system_tags: Optional[Mapping[str, Any]] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> ResponderRecipe
    func GetResponderRecipe(ctx *Context, name string, id IDInput, state *ResponderRecipeState, opts ...ResourceOption) (*ResponderRecipe, error)
    public static ResponderRecipe Get(string name, Input<string> id, ResponderRecipeState? state, CustomResourceOptions? opts = null)
    public static ResponderRecipe get(String name, Output<String> id, ResponderRecipeState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    CompartmentId string
    (Updatable) Compartment OCID
    DefinedTags Dictionary<string, object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    DisplayName string

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    EffectiveResponderRules List<ResponderRecipeEffectiveResponderRule>
    List of currently enabled responder rules for the responder type, for recipe after applying defaults
    FreeformTags Dictionary<string, object>

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Owner string
    Owner of responder recipe
    ResponderRules List<ResponderRecipeResponderRule>
    (Updatable) List of responder rules to override from source responder recipe
    SourceResponderRecipeId string

    The unique identifier of the source responder recipe

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    State string
    The current lifecycle state of the example
    SystemTags Dictionary<string, object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the responder recipe was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the responder recipe was last updated. Format defined by RFC3339.
    CompartmentId string
    (Updatable) Compartment OCID
    DefinedTags map[string]interface{}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    Description string

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    DisplayName string

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    EffectiveResponderRules []ResponderRecipeEffectiveResponderRuleArgs
    List of currently enabled responder rules for the responder type, for recipe after applying defaults
    FreeformTags map[string]interface{}

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Owner string
    Owner of responder recipe
    ResponderRules []ResponderRecipeResponderRuleArgs
    (Updatable) List of responder rules to override from source responder recipe
    SourceResponderRecipeId string

    The unique identifier of the source responder recipe

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    State string
    The current lifecycle state of the example
    SystemTags map[string]interface{}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the responder recipe was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the responder recipe was last updated. Format defined by RFC3339.
    compartmentId String
    (Updatable) Compartment OCID
    definedTags Map<String,Object>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    displayName String

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    effectiveResponderRules List<ResponderRecipeEffectiveResponderRule>
    List of currently enabled responder rules for the responder type, for recipe after applying defaults
    freeformTags Map<String,Object>

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    owner String
    Owner of responder recipe
    responderRules List<ResponderRecipeResponderRule>
    (Updatable) List of responder rules to override from source responder recipe
    sourceResponderRecipeId String

    The unique identifier of the source responder recipe

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    state String
    The current lifecycle state of the example
    systemTags Map<String,Object>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the responder recipe was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the responder recipe was last updated. Format defined by RFC3339.
    compartmentId string
    (Updatable) Compartment OCID
    definedTags {[key: string]: any}
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description string

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    displayName string

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    effectiveResponderRules ResponderRecipeEffectiveResponderRule[]
    List of currently enabled responder rules for the responder type, for recipe after applying defaults
    freeformTags {[key: string]: any}

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    lifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    owner string
    Owner of responder recipe
    responderRules ResponderRecipeResponderRule[]
    (Updatable) List of responder rules to override from source responder recipe
    sourceResponderRecipeId string

    The unique identifier of the source responder recipe

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    state string
    The current lifecycle state of the example
    systemTags {[key: string]: any}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the responder recipe was created. Format defined by RFC3339.
    timeUpdated string
    The date and time the responder recipe was last updated. Format defined by RFC3339.
    compartment_id str
    (Updatable) Compartment OCID
    defined_tags Mapping[str, Any]
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description str

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    display_name str

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    effective_responder_rules Sequence[cloudguard.ResponderRecipeEffectiveResponderRuleArgs]
    List of currently enabled responder rules for the responder type, for recipe after applying defaults
    freeform_tags Mapping[str, Any]

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    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.ResponderRecipeResponderRuleArgs]
    (Updatable) List of responder rules to override from source responder recipe
    source_responder_recipe_id str

    The unique identifier of the source responder recipe

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    state str
    The current lifecycle state of the example
    system_tags Mapping[str, Any]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The date and time the responder recipe was created. Format defined by RFC3339.
    time_updated str
    The date and time the responder recipe was last updated. Format defined by RFC3339.
    compartmentId String
    (Updatable) Compartment OCID
    definedTags Map<Any>
    (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    description String

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    displayName String

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    effectiveResponderRules List<Property Map>
    List of currently enabled responder rules for the responder type, for recipe after applying defaults
    freeformTags Map<Any>

    (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: {"bar-key": "value"}

    Avoid entering confidential information.

    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    owner String
    Owner of responder recipe
    responderRules List<Property Map>
    (Updatable) List of responder rules to override from source responder recipe
    sourceResponderRecipeId String

    The unique identifier of the source responder recipe

    ** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values

    state String
    The current lifecycle state of the example
    systemTags Map<Any>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the responder recipe was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the responder recipe was last updated. Format defined by RFC3339.

    Supporting Types

    ResponderRecipeEffectiveResponderRule, ResponderRecipeEffectiveResponderRuleArgs

    CompartmentId string
    (Updatable) Compartment OCID
    Description string

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    Details List<ResponderRecipeEffectiveResponderRuleDetail>
    Detailed information for a responder rule
    DisplayName string

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Policies List<string>
    List of policies
    ResponderRuleId string
    Unique identifier for the responder rule
    State string
    The current lifecycle state of the example
    SupportedModes List<string>
    Supported execution modes for the responder rule
    TimeCreated string
    The date and time the responder recipe was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the responder recipe was last updated. Format defined by RFC3339.
    Type string
    Type of responder
    CompartmentId string
    (Updatable) Compartment OCID
    Description string

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    Details []ResponderRecipeEffectiveResponderRuleDetail
    Detailed information for a responder rule
    DisplayName string

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Policies []string
    List of policies
    ResponderRuleId string
    Unique identifier for the responder rule
    State string
    The current lifecycle state of the example
    SupportedModes []string
    Supported execution modes for the responder rule
    TimeCreated string
    The date and time the responder recipe was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the responder recipe was last updated. Format defined by RFC3339.
    Type string
    Type of responder
    compartmentId String
    (Updatable) Compartment OCID
    description String

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    details List<ResponderRecipeEffectiveResponderRuleDetail>
    Detailed information for a responder rule
    displayName String

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    policies List<String>
    List of policies
    responderRuleId String
    Unique identifier for the responder rule
    state String
    The current lifecycle state of the example
    supportedModes List<String>
    Supported execution modes for the responder rule
    timeCreated String
    The date and time the responder recipe was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the responder recipe was last updated. Format defined by RFC3339.
    type String
    Type of responder
    compartmentId string
    (Updatable) Compartment OCID
    description string

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    details ResponderRecipeEffectiveResponderRuleDetail[]
    Detailed information for a responder rule
    displayName string

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    lifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    policies string[]
    List of policies
    responderRuleId string
    Unique identifier for the responder rule
    state string
    The current lifecycle state of the example
    supportedModes string[]
    Supported execution modes for the responder rule
    timeCreated string
    The date and time the responder recipe was created. Format defined by RFC3339.
    timeUpdated string
    The date and time the responder recipe was last updated. Format defined by RFC3339.
    type string
    Type of responder
    compartment_id str
    (Updatable) Compartment OCID
    description str

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    details Sequence[cloudguard.ResponderRecipeEffectiveResponderRuleDetail]
    Detailed information for a responder rule
    display_name str

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    lifecycle_details str
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    policies Sequence[str]
    List of policies
    responder_rule_id str
    Unique identifier for the responder rule
    state str
    The current lifecycle state of the example
    supported_modes Sequence[str]
    Supported execution modes for the responder rule
    time_created str
    The date and time the responder recipe was created. Format defined by RFC3339.
    time_updated str
    The date and time the responder recipe was last updated. Format defined by RFC3339.
    type str
    Type of responder
    compartmentId String
    (Updatable) Compartment OCID
    description String

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    details List<Property Map>
    Detailed information for a responder rule
    displayName String

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    policies List<String>
    List of policies
    responderRuleId String
    Unique identifier for the responder rule
    state String
    The current lifecycle state of the example
    supportedModes List<String>
    Supported execution modes for the responder rule
    timeCreated String
    The date and time the responder recipe was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the responder recipe was last updated. Format defined by RFC3339.
    type String
    Type of responder

    ResponderRecipeEffectiveResponderRuleDetail, ResponderRecipeEffectiveResponderRuleDetailArgs

    Condition string
    The base condition resource.
    Configurations List<ResponderRecipeEffectiveResponderRuleDetailConfiguration>
    List of responder rule configurations
    IsEnabled bool
    Enabled state for the responder rule
    Mode string
    Execution mode for the responder rule
    Condition string
    The base condition resource.
    Configurations []ResponderRecipeEffectiveResponderRuleDetailConfiguration
    List of responder rule configurations
    IsEnabled bool
    Enabled state for the responder rule
    Mode string
    Execution mode for the responder rule
    condition String
    The base condition resource.
    configurations List<ResponderRecipeEffectiveResponderRuleDetailConfiguration>
    List of responder rule configurations
    isEnabled Boolean
    Enabled state for the responder rule
    mode String
    Execution mode for the responder rule
    condition string
    The base condition resource.
    configurations ResponderRecipeEffectiveResponderRuleDetailConfiguration[]
    List of responder rule configurations
    isEnabled boolean
    Enabled state for the responder rule
    mode string
    Execution mode for the responder rule
    condition str
    The base condition resource.
    configurations Sequence[cloudguard.ResponderRecipeEffectiveResponderRuleDetailConfiguration]
    List of responder rule configurations
    is_enabled bool
    Enabled state for the responder rule
    mode str
    Execution mode for the responder rule
    condition String
    The base condition resource.
    configurations List<Property Map>
    List of responder rule configurations
    isEnabled Boolean
    Enabled state for the responder rule
    mode String
    Execution mode for the responder rule

    ResponderRecipeEffectiveResponderRuleDetailConfiguration, ResponderRecipeEffectiveResponderRuleDetailConfigurationArgs

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

    ResponderRecipeResponderRule, ResponderRecipeResponderRuleArgs

    Details ResponderRecipeResponderRuleDetails
    (Updatable) Parameters to be updated for a responder rule within a responder recipe.
    ResponderRuleId string
    (Updatable) Unique identifier for the responder rule
    CompartmentId string
    (Updatable) Compartment OCID
    Description string

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    DisplayName string

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Policies List<string>
    List of policies
    State string
    The current lifecycle state of the example
    SupportedModes List<string>
    Supported execution modes for the responder rule
    TimeCreated string
    The date and time the responder recipe was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the responder recipe was last updated. Format defined by RFC3339.
    Type string
    Type of responder
    Details ResponderRecipeResponderRuleDetails
    (Updatable) Parameters to be updated for a responder rule within a responder recipe.
    ResponderRuleId string
    (Updatable) Unique identifier for the responder rule
    CompartmentId string
    (Updatable) Compartment OCID
    Description string

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    DisplayName string

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    LifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    Policies []string
    List of policies
    State string
    The current lifecycle state of the example
    SupportedModes []string
    Supported execution modes for the responder rule
    TimeCreated string
    The date and time the responder recipe was created. Format defined by RFC3339.
    TimeUpdated string
    The date and time the responder recipe was last updated. Format defined by RFC3339.
    Type string
    Type of responder
    details ResponderRecipeResponderRuleDetails
    (Updatable) Parameters to be updated for a responder rule within a responder recipe.
    responderRuleId String
    (Updatable) Unique identifier for the responder rule
    compartmentId String
    (Updatable) Compartment OCID
    description String

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    displayName String

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    policies List<String>
    List of policies
    state String
    The current lifecycle state of the example
    supportedModes List<String>
    Supported execution modes for the responder rule
    timeCreated String
    The date and time the responder recipe was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the responder recipe was last updated. Format defined by RFC3339.
    type String
    Type of responder
    details ResponderRecipeResponderRuleDetails
    (Updatable) Parameters to be updated for a responder rule within a responder recipe.
    responderRuleId string
    (Updatable) Unique identifier for the responder rule
    compartmentId string
    (Updatable) Compartment OCID
    description string

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    displayName string

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    lifecycleDetails string
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    policies string[]
    List of policies
    state string
    The current lifecycle state of the example
    supportedModes string[]
    Supported execution modes for the responder rule
    timeCreated string
    The date and time the responder recipe was created. Format defined by RFC3339.
    timeUpdated string
    The date and time the responder recipe was last updated. Format defined by RFC3339.
    type string
    Type of responder
    details cloudguard.ResponderRecipeResponderRuleDetails
    (Updatable) Parameters to be updated for a responder rule within a responder recipe.
    responder_rule_id str
    (Updatable) Unique identifier for the responder rule
    compartment_id str
    (Updatable) Compartment OCID
    description str

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    display_name str

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    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
    state str
    The current lifecycle state of the example
    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
    details Property Map
    (Updatable) Parameters to be updated for a responder rule within a responder recipe.
    responderRuleId String
    (Updatable) Unique identifier for the responder rule
    compartmentId String
    (Updatable) Compartment OCID
    description String

    (Updatable) Responder recipe description.

    Avoid entering confidential information.

    displayName String

    (Updatable) Responder recipe display name.

    Avoid entering confidential information.

    lifecycleDetails String
    A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
    policies List<String>
    List of policies
    state String
    The current lifecycle state of the example
    supportedModes List<String>
    Supported execution modes for the responder rule
    timeCreated String
    The date and time the responder recipe was created. Format defined by RFC3339.
    timeUpdated String
    The date and time the responder recipe was last updated. Format defined by RFC3339.
    type String
    Type of responder

    ResponderRecipeResponderRuleDetails, ResponderRecipeResponderRuleDetailsArgs

    IsEnabled bool
    (Updatable) Enablement state for the responder rule
    Condition string
    The base condition resource.
    Configurations List<ResponderRecipeResponderRuleDetailsConfiguration>
    List of responder rule configurations
    Mode string
    Execution mode for the responder rule
    IsEnabled bool
    (Updatable) Enablement state for the responder rule
    Condition string
    The base condition resource.
    Configurations []ResponderRecipeResponderRuleDetailsConfiguration
    List of responder rule configurations
    Mode string
    Execution mode for the responder rule
    isEnabled Boolean
    (Updatable) Enablement state for the responder rule
    condition String
    The base condition resource.
    configurations List<ResponderRecipeResponderRuleDetailsConfiguration>
    List of responder rule configurations
    mode String
    Execution mode for the responder rule
    isEnabled boolean
    (Updatable) Enablement state for the responder rule
    condition string
    The base condition resource.
    configurations ResponderRecipeResponderRuleDetailsConfiguration[]
    List of responder rule configurations
    mode string
    Execution mode for the responder rule
    is_enabled bool
    (Updatable) Enablement state for the responder rule
    condition str
    The base condition resource.
    configurations Sequence[cloudguard.ResponderRecipeResponderRuleDetailsConfiguration]
    List of responder rule configurations
    mode str
    Execution mode for the responder rule
    isEnabled Boolean
    (Updatable) Enablement state for the responder rule
    condition String
    The base condition resource.
    configurations List<Property Map>
    List of responder rule configurations
    mode String
    Execution mode for the responder rule

    ResponderRecipeResponderRuleDetailsConfiguration, ResponderRecipeResponderRuleDetailsConfigurationArgs

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

    Import

    ResponderRecipes can be imported using the id, e.g.

    $ pulumi import oci:CloudGuard/responderRecipe:ResponderRecipe test_responder_recipe "id"
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.41.0 published on Wednesday, Jun 19, 2024 by Pulumi