import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Security Recipe resource in Oracle Cloud Infrastructure Cloud Guard service. * * Returns a security zone recipe (SecurityRecipe resource) identified by securityRecipeId. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSecurityRecipe = oci.cloudguard.getSecurityRecipe({ * securityRecipeId: testSecurityRecipeOciCloudGuardSecurityRecipe.id, * }); * ``` */ export declare function getSecurityRecipe(args: GetSecurityRecipeArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getSecurityRecipe. */ export interface GetSecurityRecipeArgs { /** * The unique identifier of the security zone recipe. (`SecurityRecipe`) */ securityRecipeId: string; } /** * A collection of values returned by getSecurityRecipe. */ export interface GetSecurityRecipeResult { /** * The OCID of the compartment that contains the recipe */ readonly compartmentId: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}` */ readonly definedTags: { [key: string]: string; }; /** * The recipe's description */ readonly description: string; /** * The recipe's display name */ readonly displayName: string; /** * Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}` */ readonly freeformTags: { [key: string]: string; }; /** * Unique identifier that can’t be changed after creation */ readonly id: string; /** * A message describing the current state in more detail. For example, this can be used to provide actionable information for a recipe in the `Failed` state. */ readonly lifecycleDetails: string; /** * The owner of the recipe */ readonly owner: string; /** * The list of security policy IDs that are included in the recipe */ readonly securityPolicies: string[]; readonly securityRecipeId: string; /** * The current lifecycle state of the recipe */ readonly state: string; /** * The time the recipe was created. An RFC3339 formatted datetime string. */ readonly timeCreated: string; /** * The time the recipe was last updated. An RFC3339 formatted datetime string. */ readonly timeUpdated: string; } /** * This data source provides details about a specific Security Recipe resource in Oracle Cloud Infrastructure Cloud Guard service. * * Returns a security zone recipe (SecurityRecipe resource) identified by securityRecipeId. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testSecurityRecipe = oci.cloudguard.getSecurityRecipe({ * securityRecipeId: testSecurityRecipeOciCloudGuardSecurityRecipe.id, * }); * ``` */ export declare function getSecurityRecipeOutput(args: GetSecurityRecipeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getSecurityRecipe. */ export interface GetSecurityRecipeOutputArgs { /** * The unique identifier of the security zone recipe. (`SecurityRecipe`) */ securityRecipeId: pulumi.Input; } //# sourceMappingURL=getSecurityRecipe.d.ts.map