import * as pulumi from "@pulumi/pulumi"; import * as inputs from "../types/input"; import * as outputs from "../types/output"; /** * This data source provides the list of Host Scan Recipes in Oracle Cloud Infrastructure Vulnerability Scanning service. * * Retrieves a list of HostScanRecipeSummary objects in a compartment. A recipe determines the types of security issues that you want scanned, and how often to scan. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testHostScanRecipes = oci.vulnerabilityscanning.getHostScanRecipes({ * compartmentId: compartmentId, * displayName: hostScanRecipeDisplayName, * state: hostScanRecipeState, * }); * ``` */ export declare function getHostScanRecipes(args: GetHostScanRecipesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getHostScanRecipes. */ export interface GetHostScanRecipesArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only resources that match the entire display name given. */ displayName?: string; filters?: inputs.VulnerabilityScanning.GetHostScanRecipesFilter[]; /** * A filter to return only resources whose lifecycleState matches the given lifecycleState. */ state?: string; } /** * A collection of values returned by getHostScanRecipes. */ export interface GetHostScanRecipesResult { /** * Compartment ID of the scan recipe */ readonly compartmentId: string; /** * Recipe identifier, which can be renamed */ readonly displayName?: string; readonly filters?: outputs.VulnerabilityScanning.GetHostScanRecipesFilter[]; /** * The list of host_scan_recipe_summary_collection. */ readonly hostScanRecipeSummaryCollections: outputs.VulnerabilityScanning.GetHostScanRecipesHostScanRecipeSummaryCollection[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The current state of the config. */ readonly state?: string; } /** * This data source provides the list of Host Scan Recipes in Oracle Cloud Infrastructure Vulnerability Scanning service. * * Retrieves a list of HostScanRecipeSummary objects in a compartment. A recipe determines the types of security issues that you want scanned, and how often to scan. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testHostScanRecipes = oci.vulnerabilityscanning.getHostScanRecipes({ * compartmentId: compartmentId, * displayName: hostScanRecipeDisplayName, * state: hostScanRecipeState, * }); * ``` */ export declare function getHostScanRecipesOutput(args: GetHostScanRecipesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getHostScanRecipes. */ export interface GetHostScanRecipesOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only resources that match the entire display name given. */ displayName?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources whose lifecycleState matches the given lifecycleState. */ state?: pulumi.Input; } //# sourceMappingURL=getHostScanRecipes.d.ts.map