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 Container Scan Recipes in Oracle Cloud Infrastructure Vulnerability Scanning service. * * Retrieves a list of ContainerScanRecipeSummary objects in a compartment. A recipe determines the types of security issues that you want scanned. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testContainerScanRecipes = oci.vulnerabilityscanning.getContainerScanRecipes({ * compartmentId: compartmentId, * displayName: containerScanRecipeDisplayName, * state: containerScanRecipeState, * }); * ``` */ export declare function getContainerScanRecipes(args: GetContainerScanRecipesArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getContainerScanRecipes. */ export interface GetContainerScanRecipesArgs { /** * 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.GetContainerScanRecipesFilter[]; /** * A filter to return only resources whose lifecycleState matches the given lifecycleState. */ state?: string; } /** * A collection of values returned by getContainerScanRecipes. */ export interface GetContainerScanRecipesResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the container scan recipe's compartment */ readonly compartmentId: string; /** * The list of container_scan_recipe_summary_collection. */ readonly containerScanRecipeSummaryCollections: outputs.VulnerabilityScanning.GetContainerScanRecipesContainerScanRecipeSummaryCollection[]; /** * User friendly name of container scan recipe */ readonly displayName?: string; readonly filters?: outputs.VulnerabilityScanning.GetContainerScanRecipesFilter[]; /** * 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 Container Scan Recipes in Oracle Cloud Infrastructure Vulnerability Scanning service. * * Retrieves a list of ContainerScanRecipeSummary objects in a compartment. A recipe determines the types of security issues that you want scanned. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testContainerScanRecipes = oci.vulnerabilityscanning.getContainerScanRecipes({ * compartmentId: compartmentId, * displayName: containerScanRecipeDisplayName, * state: containerScanRecipeState, * }); * ``` */ export declare function getContainerScanRecipesOutput(args: GetContainerScanRecipesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getContainerScanRecipes. */ export interface GetContainerScanRecipesOutputArgs { /** * 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=getContainerScanRecipes.d.ts.map