oci.CloudGuard.ResponderRecipe
Explore with Pulumi AI
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, str]] = None,
description: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = 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", "string" },
},
Description = "string",
FreeformTags =
{
{ "string", "string" },
},
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.StringMap{
"string": pulumi.String("string"),
},
Description: pulumi.String("string"),
FreeformTags: pulumi.StringMap{
"string": pulumi.String("string"),
},
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", "string"))
.description("string")
.freeformTags(Map.of("string", "string"))
.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": "string",
},
description="string",
freeform_tags={
"string": "string",
},
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: "string",
},
description: "string",
freeformTags: {
string: "string",
},
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: string
description: string
displayName: string
freeformTags:
string: string
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:
- Compartment
Id string - (Updatable) Compartment OCID
- Display
Name string (Updatable) Responder recipe display name.
Avoid entering confidential information.
- Source
Responder stringRecipe Id 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
- Dictionary<string, string>
- (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.
- Dictionary<string, string>
(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 List<ResponderRecipe Responder Rule> - (Updatable) List of responder rules to override from source responder recipe
- Compartment
Id string - (Updatable) Compartment OCID
- Display
Name string (Updatable) Responder recipe display name.
Avoid entering confidential information.
- Source
Responder stringRecipe Id 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
- map[string]string
- (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.
- map[string]string
(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 []ResponderRecipe Responder Rule Args - (Updatable) List of responder rules to override from source responder recipe
- compartment
Id String - (Updatable) Compartment OCID
- display
Name String (Updatable) Responder recipe display name.
Avoid entering confidential information.
- source
Responder StringRecipe Id 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
- Map<String,String>
- (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.
- Map<String,String>
(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 List<ResponderRecipe Responder Rule> - (Updatable) List of responder rules to override from source responder recipe
- compartment
Id string - (Updatable) Compartment OCID
- display
Name string (Updatable) Responder recipe display name.
Avoid entering confidential information.
- source
Responder stringRecipe Id 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
- {[key: string]: string}
- (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.
- {[key: string]: string}
(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 ResponderRecipe Responder Rule[] - (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_ strrecipe_ id 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
- Mapping[str, str]
- (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.
- Mapping[str, str]
(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.Responder Recipe Responder Rule Args] - (Updatable) List of responder rules to override from source responder recipe
- compartment
Id String - (Updatable) Compartment OCID
- display
Name String (Updatable) Responder recipe display name.
Avoid entering confidential information.
- source
Responder StringRecipe Id 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
- Map<String>
- (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.
- Map<String>
(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 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:
- Effective
Responder List<ResponderRules Recipe Effective Responder Rule> - 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.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Owner string
- Owner of responder recipe
- State string
- The current lifecycle state of the example
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the responder recipe was created. Format defined by RFC3339.
- Time
Updated string - The date and time the responder recipe was last updated. Format defined by RFC3339.
- Effective
Responder []ResponderRules Recipe Effective Responder Rule - 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.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Owner string
- Owner of responder recipe
- State string
- The current lifecycle state of the example
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the responder recipe was created. Format defined by RFC3339.
- Time
Updated string - The date and time the responder recipe was last updated. Format defined by RFC3339.
- effective
Responder List<ResponderRules Recipe Effective Responder Rule> - 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.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- owner String
- Owner of responder recipe
- state String
- The current lifecycle state of the example
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated String - The date and time the responder recipe was last updated. Format defined by RFC3339.
- effective
Responder ResponderRules Recipe Effective Responder Rule[] - 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.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- owner string
- Owner of responder recipe
- state string
- The current lifecycle state of the example
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated string - The date and time the responder recipe was last updated. Format defined by RFC3339.
- effective_
responder_ Sequence[cloudguard.rules Responder Recipe Effective Responder Rule] - 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
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The date and time the responder recipe was created. Format defined by RFC3339.
- time_
updated str - The date and time the responder recipe was last updated. Format defined by RFC3339.
- effective
Responder List<Property Map>Rules - 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.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- owner String
- Owner of responder recipe
- state String
- The current lifecycle state of the example
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated String - The date and time the responder recipe was last updated. Format defined by RFC3339.
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, str]] = None,
description: Optional[str] = None,
display_name: Optional[str] = None,
effective_responder_rules: Optional[Sequence[_cloudguard.ResponderRecipeEffectiveResponderRuleArgs]] = None,
freeform_tags: Optional[Mapping[str, str]] = 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, str]] = 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.
- Compartment
Id string - (Updatable) Compartment OCID
- Dictionary<string, string>
- (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.
- Display
Name string (Updatable) Responder recipe display name.
Avoid entering confidential information.
- Effective
Responder List<ResponderRules Recipe Effective Responder Rule> - List of currently enabled responder rules for the responder type, for recipe after applying defaults
- Dictionary<string, string>
(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 string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Owner string
- Owner of responder recipe
- Responder
Rules List<ResponderRecipe Responder Rule> - (Updatable) List of responder rules to override from source responder recipe
- Source
Responder stringRecipe Id 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
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the responder recipe was created. Format defined by RFC3339.
- Time
Updated string - The date and time the responder recipe was last updated. Format defined by RFC3339.
- Compartment
Id string - (Updatable) Compartment OCID
- map[string]string
- (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.
- Display
Name string (Updatable) Responder recipe display name.
Avoid entering confidential information.
- Effective
Responder []ResponderRules Recipe Effective Responder Rule Args - List of currently enabled responder rules for the responder type, for recipe after applying defaults
- map[string]string
(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 string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Owner string
- Owner of responder recipe
- Responder
Rules []ResponderRecipe Responder Rule Args - (Updatable) List of responder rules to override from source responder recipe
- Source
Responder stringRecipe Id 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
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the responder recipe was created. Format defined by RFC3339.
- Time
Updated string - The date and time the responder recipe was last updated. Format defined by RFC3339.
- compartment
Id String - (Updatable) Compartment OCID
- Map<String,String>
- (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.
- display
Name String (Updatable) Responder recipe display name.
Avoid entering confidential information.
- effective
Responder List<ResponderRules Recipe Effective Responder Rule> - List of currently enabled responder rules for the responder type, for recipe after applying defaults
- Map<String,String>
(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 String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- owner String
- Owner of responder recipe
- responder
Rules List<ResponderRecipe Responder Rule> - (Updatable) List of responder rules to override from source responder recipe
- source
Responder StringRecipe Id 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
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated String - The date and time the responder recipe was last updated. Format defined by RFC3339.
- compartment
Id string - (Updatable) Compartment OCID
- {[key: string]: string}
- (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.
- display
Name string (Updatable) Responder recipe display name.
Avoid entering confidential information.
- effective
Responder ResponderRules Recipe Effective Responder Rule[] - List of currently enabled responder rules for the responder type, for recipe after applying defaults
- {[key: string]: string}
(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 string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- owner string
- Owner of responder recipe
- responder
Rules ResponderRecipe Responder Rule[] - (Updatable) List of responder rules to override from source responder recipe
- source
Responder stringRecipe Id 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
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated string - The date and time the responder recipe was last updated. Format defined by RFC3339.
- compartment_
id str - (Updatable) Compartment OCID
- Mapping[str, str]
- (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_ Sequence[cloudguard.rules Responder Recipe Effective Responder Rule Args] - List of currently enabled responder rules for the responder type, for recipe after applying defaults
- Mapping[str, str]
(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.Responder Recipe Responder Rule Args] - (Updatable) List of responder rules to override from source responder recipe
- source_
responder_ strrecipe_ id 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
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The date and time the responder recipe was created. Format defined by RFC3339.
- time_
updated str - The date and time the responder recipe was last updated. Format defined by RFC3339.
- compartment
Id String - (Updatable) Compartment OCID
- Map<String>
- (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.
- display
Name String (Updatable) Responder recipe display name.
Avoid entering confidential information.
- effective
Responder List<Property Map>Rules - List of currently enabled responder rules for the responder type, for recipe after applying defaults
- Map<String>
(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 String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- owner String
- Owner of responder recipe
- responder
Rules List<Property Map> - (Updatable) List of responder rules to override from source responder recipe
- source
Responder StringRecipe Id 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
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated String - The date and time the responder recipe was last updated. Format defined by RFC3339.
Supporting Types
ResponderRecipeEffectiveResponderRule, ResponderRecipeEffectiveResponderRuleArgs
- Compartment
Id string - (Updatable) Compartment OCID
- Description string
(Updatable) Responder recipe description.
Avoid entering confidential information.
- Details
List<Responder
Recipe Effective Responder Rule Detail> - Detailed information for a responder rule
- Display
Name string (Updatable) Responder recipe display name.
Avoid entering confidential information.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Policies List<string>
- List of policies
- Responder
Rule stringId - Unique identifier for the responder rule
- State string
- The current lifecycle state of the example
- Supported
Modes List<string> - Supported execution modes for the responder rule
- Time
Created string - The date and time the responder recipe was created. Format defined by RFC3339.
- Time
Updated string - The date and time the responder recipe was last updated. Format defined by RFC3339.
- Type string
- Type of responder
- Compartment
Id string - (Updatable) Compartment OCID
- Description string
(Updatable) Responder recipe description.
Avoid entering confidential information.
- Details
[]Responder
Recipe Effective Responder Rule Detail - Detailed information for a responder rule
- Display
Name string (Updatable) Responder recipe display name.
Avoid entering confidential information.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Policies []string
- List of policies
- Responder
Rule stringId - Unique identifier for the responder rule
- State string
- The current lifecycle state of the example
- Supported
Modes []string - Supported execution modes for the responder rule
- Time
Created string - The date and time the responder recipe was created. Format defined by RFC3339.
- Time
Updated string - The date and time the responder recipe was last updated. Format defined by RFC3339.
- Type string
- Type of responder
- compartment
Id String - (Updatable) Compartment OCID
- description String
(Updatable) Responder recipe description.
Avoid entering confidential information.
- details
List<Responder
Recipe Effective Responder Rule Detail> - Detailed information for a responder rule
- display
Name String (Updatable) Responder recipe display name.
Avoid entering confidential information.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies List<String>
- List of policies
- responder
Rule StringId - Unique identifier for the responder rule
- state String
- The current lifecycle state of the example
- supported
Modes List<String> - Supported execution modes for the responder rule
- time
Created String - The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated String - The date and time the responder recipe was last updated. Format defined by RFC3339.
- type String
- Type of responder
- compartment
Id string - (Updatable) Compartment OCID
- description string
(Updatable) Responder recipe description.
Avoid entering confidential information.
- details
Responder
Recipe Effective Responder Rule Detail[] - Detailed information for a responder rule
- display
Name string (Updatable) Responder recipe display name.
Avoid entering confidential information.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies string[]
- List of policies
- responder
Rule stringId - Unique identifier for the responder rule
- state string
- The current lifecycle state of the example
- supported
Modes string[] - Supported execution modes for the responder rule
- time
Created string - The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated string - The date and time the responder recipe was last updated. Format defined by RFC3339.
- type string
- Type of responder
- compartment_
id str - (Updatable) Compartment OCID
- description str
(Updatable) Responder recipe description.
Avoid entering confidential information.
- details
Sequence[cloudguard.
Responder Recipe Effective Responder Rule Detail] - 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_ strid - 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
- compartment
Id String - (Updatable) Compartment OCID
- description String
(Updatable) Responder recipe description.
Avoid entering confidential information.
- details List<Property Map>
- Detailed information for a responder rule
- display
Name String (Updatable) Responder recipe display name.
Avoid entering confidential information.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies List<String>
- List of policies
- responder
Rule StringId - Unique identifier for the responder rule
- state String
- The current lifecycle state of the example
- supported
Modes List<String> - Supported execution modes for the responder rule
- time
Created String - The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated String - The date and time the responder recipe was last updated. Format defined by RFC3339.
- type String
- Type of responder
ResponderRecipeEffectiveResponderRuleDetail, ResponderRecipeEffectiveResponderRuleDetailArgs
- Condition string
- The base condition resource.
- Configurations
List<Responder
Recipe Effective Responder Rule Detail Configuration> - List of responder rule configurations
- Is
Enabled bool - Enabled state for the responder rule
- Mode string
- Execution mode for the responder rule
- Condition string
- The base condition resource.
- Configurations
[]Responder
Recipe Effective Responder Rule Detail Configuration - List of responder rule configurations
- Is
Enabled bool - Enabled state for the responder rule
- Mode string
- Execution mode for the responder rule
- condition String
- The base condition resource.
- configurations
List<Responder
Recipe Effective Responder Rule Detail Configuration> - List of responder rule configurations
- is
Enabled Boolean - Enabled state for the responder rule
- mode String
- Execution mode for the responder rule
- condition string
- The base condition resource.
- configurations
Responder
Recipe Effective Responder Rule Detail Configuration[] - List of responder rule configurations
- is
Enabled boolean - Enabled state for the responder rule
- mode string
- Execution mode for the responder rule
- condition str
- The base condition resource.
- configurations
Sequence[cloudguard.
Responder Recipe Effective Responder Rule Detail Configuration] - List of responder rule configurations
- is_
enabled bool - Enabled state for the responder rule
- mode str
- Execution mode for the responder rule
- condition String
- The base condition resource.
- configurations List<Property Map>
- List of responder rule configurations
- is
Enabled Boolean - Enabled state for the responder rule
- mode String
- Execution mode for the responder rule
ResponderRecipeEffectiveResponderRuleDetailConfiguration, ResponderRecipeEffectiveResponderRuleDetailConfigurationArgs
- config_
key str - Unique identifier of the configuration
- name str
- Configuration name
- value str
- Configuration value
ResponderRecipeResponderRule, ResponderRecipeResponderRuleArgs
- Details
Responder
Recipe Responder Rule Details - (Updatable) Parameters to be updated for a responder rule within a responder recipe.
- Responder
Rule stringId - (Updatable) Unique identifier for the responder rule
- Compartment
Id string - (Updatable) Compartment OCID
- Description string
(Updatable) Responder recipe description.
Avoid entering confidential information.
- Display
Name string (Updatable) Responder recipe display name.
Avoid entering confidential information.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Policies List<string>
- List of policies
- State string
- The current lifecycle state of the example
- Supported
Modes List<string> - Supported execution modes for the responder rule
- Time
Created string - The date and time the responder recipe was created. Format defined by RFC3339.
- Time
Updated string - The date and time the responder recipe was last updated. Format defined by RFC3339.
- Type string
- Type of responder
- Details
Responder
Recipe Responder Rule Details - (Updatable) Parameters to be updated for a responder rule within a responder recipe.
- Responder
Rule stringId - (Updatable) Unique identifier for the responder rule
- Compartment
Id string - (Updatable) Compartment OCID
- Description string
(Updatable) Responder recipe description.
Avoid entering confidential information.
- Display
Name string (Updatable) Responder recipe display name.
Avoid entering confidential information.
- Lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- Policies []string
- List of policies
- State string
- The current lifecycle state of the example
- Supported
Modes []string - Supported execution modes for the responder rule
- Time
Created string - The date and time the responder recipe was created. Format defined by RFC3339.
- Time
Updated string - The date and time the responder recipe was last updated. Format defined by RFC3339.
- Type string
- Type of responder
- details
Responder
Recipe Responder Rule Details - (Updatable) Parameters to be updated for a responder rule within a responder recipe.
- responder
Rule StringId - (Updatable) Unique identifier for the responder rule
- compartment
Id String - (Updatable) Compartment OCID
- description String
(Updatable) Responder recipe description.
Avoid entering confidential information.
- display
Name String (Updatable) Responder recipe display name.
Avoid entering confidential information.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies List<String>
- List of policies
- state String
- The current lifecycle state of the example
- supported
Modes List<String> - Supported execution modes for the responder rule
- time
Created String - The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated String - The date and time the responder recipe was last updated. Format defined by RFC3339.
- type String
- Type of responder
- details
Responder
Recipe Responder Rule Details - (Updatable) Parameters to be updated for a responder rule within a responder recipe.
- responder
Rule stringId - (Updatable) Unique identifier for the responder rule
- compartment
Id string - (Updatable) Compartment OCID
- description string
(Updatable) Responder recipe description.
Avoid entering confidential information.
- display
Name string (Updatable) Responder recipe display name.
Avoid entering confidential information.
- lifecycle
Details string - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies string[]
- List of policies
- state string
- The current lifecycle state of the example
- supported
Modes string[] - Supported execution modes for the responder rule
- time
Created string - The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated string - The date and time the responder recipe was last updated. Format defined by RFC3339.
- type string
- Type of responder
- details
cloudguard.
Responder Recipe Responder Rule Details - (Updatable) Parameters to be updated for a responder rule within a responder recipe.
- responder_
rule_ strid - (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.
- responder
Rule StringId - (Updatable) Unique identifier for the responder rule
- compartment
Id String - (Updatable) Compartment OCID
- description String
(Updatable) Responder recipe description.
Avoid entering confidential information.
- display
Name String (Updatable) Responder recipe display name.
Avoid entering confidential information.
- lifecycle
Details String - A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
- policies List<String>
- List of policies
- state String
- The current lifecycle state of the example
- supported
Modes List<String> - Supported execution modes for the responder rule
- time
Created String - The date and time the responder recipe was created. Format defined by RFC3339.
- time
Updated String - The date and time the responder recipe was last updated. Format defined by RFC3339.
- type String
- Type of responder
ResponderRecipeResponderRuleDetails, ResponderRecipeResponderRuleDetailsArgs
- Is
Enabled bool - (Updatable) Enablement state for the responder rule
- Condition string
- The base condition resource.
- Configurations
List<Responder
Recipe Responder Rule Details Configuration> - List of responder rule configurations
- Mode string
- Execution mode for the responder rule
- Is
Enabled bool - (Updatable) Enablement state for the responder rule
- Condition string
- The base condition resource.
- Configurations
[]Responder
Recipe Responder Rule Details Configuration - List of responder rule configurations
- Mode string
- Execution mode for the responder rule
- is
Enabled Boolean - (Updatable) Enablement state for the responder rule
- condition String
- The base condition resource.
- configurations
List<Responder
Recipe Responder Rule Details Configuration> - List of responder rule configurations
- mode String
- Execution mode for the responder rule
- is
Enabled boolean - (Updatable) Enablement state for the responder rule
- condition string
- The base condition resource.
- configurations
Responder
Recipe Responder Rule Details Configuration[] - 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.
Responder Recipe Responder Rule Details Configuration] - List of responder rule configurations
- mode str
- Execution mode for the responder rule
- is
Enabled 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
- config_
key str - Unique identifier of the configuration
- name str
- Configuration name
- value str
- 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.