import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This resource provides the Responder Recipe resource in Oracle Cloud Infrastructure Cloud Guard service. * Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/cloud-guard/latest/ResponderRecipe * * Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/certificatesguard * * Creates a responder recipe (ResponderRecipe resource), from values passed in a * CreateResponderRecipeDetails resource. * * ## Import * * ResponderRecipes can be imported using the `id`, e.g. * * ```sh * $ pulumi import oci:CloudGuard/responderRecipe:ResponderRecipe test_responder_recipe "id" * ``` */ export declare class ResponderRecipe extends pulumi.CustomResource { /** * Get an existing ResponderRecipe resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: ResponderRecipeState, opts?: pulumi.CustomResourceOptions): ResponderRecipe; /** * Returns true if the given object is an instance of ResponderRecipe. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is ResponderRecipe; /** * (Updatable) Compartment OCID */ readonly compartmentId: pulumi.Output; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: pulumi.Output<{ [key: string]: string; }>; /** * (Updatable) Responder recipe description. * * Avoid entering confidential information. */ readonly description: pulumi.Output; /** * (Updatable) Responder recipe display name. * * Avoid entering confidential information. */ readonly displayName: pulumi.Output; /** * List of currently enabled responder rules for the responder type, for recipe after applying defaults */ readonly effectiveResponderRules: pulumi.Output; /** * (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. */ readonly freeformTags: pulumi.Output<{ [key: string]: 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. */ readonly lifecycleDetails: pulumi.Output; /** * Owner of responder recipe */ readonly owner: pulumi.Output; /** * (Updatable) List of responder rules to override from source responder recipe */ readonly responderRules: pulumi.Output; /** * 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 */ readonly sourceResponderRecipeId: pulumi.Output; /** * The current lifecycle state of the example */ readonly state: pulumi.Output; /** * System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: pulumi.Output<{ [key: string]: string; }>; /** * The date and time the responder recipe was created. Format defined by RFC3339. */ readonly timeCreated: pulumi.Output; /** * The date and time the responder recipe was last updated. Format defined by RFC3339. */ readonly timeUpdated: pulumi.Output; /** * Create a ResponderRecipe resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args: ResponderRecipeArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering ResponderRecipe resources. */ export interface ResponderRecipeState { /** * (Updatable) Compartment OCID */ compartmentId?: pulumi.Input; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) Responder recipe description. * * Avoid entering confidential information. */ description?: pulumi.Input; /** * (Updatable) Responder recipe display name. * * Avoid entering confidential information. */ displayName?: pulumi.Input; /** * List of currently enabled responder rules for the responder type, for recipe after applying defaults */ effectiveResponderRules?: pulumi.Input[] | undefined>; /** * (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. */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state. */ lifecycleDetails?: pulumi.Input; /** * Owner of responder recipe */ owner?: pulumi.Input; /** * (Updatable) List of responder rules to override from source responder recipe */ responderRules?: pulumi.Input[] | undefined>; /** * 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 */ sourceResponderRecipeId?: pulumi.Input; /** * The current lifecycle state of the example */ state?: pulumi.Input; /** * System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ systemTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * The date and time the responder recipe was created. Format defined by RFC3339. */ timeCreated?: pulumi.Input; /** * The date and time the responder recipe was last updated. Format defined by RFC3339. */ timeUpdated?: pulumi.Input; } /** * The set of arguments for constructing a ResponderRecipe resource. */ export interface ResponderRecipeArgs { /** * (Updatable) Compartment OCID */ compartmentId: pulumi.Input; /** * (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ definedTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) Responder recipe description. * * Avoid entering confidential information. */ description?: pulumi.Input; /** * (Updatable) Responder recipe display name. * * Avoid entering confidential information. */ displayName: pulumi.Input; /** * (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. */ freeformTags?: pulumi.Input<{ [key: string]: pulumi.Input; } | undefined>; /** * (Updatable) List of responder rules to override from source responder recipe */ responderRules?: pulumi.Input[] | undefined>; /** * 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 */ sourceResponderRecipeId: pulumi.Input; } //# sourceMappingURL=responderRecipe.d.ts.map