import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Host Scan Recipe resource in Oracle Cloud Infrastructure Vulnerability Scanning service. * * Retrieves a HostScanRecipe identified by the recipe ID. 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 testHostScanRecipe = oci.vulnerabilityscanning.getHostScanRecipe({ * hostScanRecipeId: testHostScanRecipeOciVulnerabilityScanningHostScanRecipe.id, * }); * ``` */ export declare function getHostScanRecipe(args: GetHostScanRecipeArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getHostScanRecipe. */ export interface GetHostScanRecipeArgs { /** * unique HostScanRecipe identifier */ hostScanRecipeId: string; } /** * A collection of values returned by getHostScanRecipe. */ export interface GetHostScanRecipeResult { /** * Agent scan settings for a host scan */ readonly agentSettings: outputs.VulnerabilityScanning.GetHostScanRecipeAgentSetting[]; /** * Agent scan settings for an application scan (as a part of a host scan) */ readonly applicationSettings: outputs.VulnerabilityScanning.GetHostScanRecipeApplicationSetting[]; /** * Compartment ID of the scan 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; }; /** * Recipe identifier, which can be renamed */ 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; }; readonly hostScanRecipeId: string; /** * Unique identifier of the config that is immutable on creation */ readonly id: string; /** * Port scan settings for a host scan */ readonly portSettings: outputs.VulnerabilityScanning.GetHostScanRecipePortSetting[]; /** * A scanning schedule */ readonly schedules: outputs.VulnerabilityScanning.GetHostScanRecipeSchedule[]; /** * The current state of the config. */ readonly state: string; /** * Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * Date and time the recipe was created, format as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) */ readonly timeCreated: string; /** * Date and time the recipe was last updated, format as described in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) */ readonly timeUpdated: string; } /** * This data source provides details about a specific Host Scan Recipe resource in Oracle Cloud Infrastructure Vulnerability Scanning service. * * Retrieves a HostScanRecipe identified by the recipe ID. 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 testHostScanRecipe = oci.vulnerabilityscanning.getHostScanRecipe({ * hostScanRecipeId: testHostScanRecipeOciVulnerabilityScanningHostScanRecipe.id, * }); * ``` */ export declare function getHostScanRecipeOutput(args: GetHostScanRecipeOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getHostScanRecipe. */ export interface GetHostScanRecipeOutputArgs { /** * unique HostScanRecipe identifier */ hostScanRecipeId: pulumi.Input; } //# sourceMappingURL=getHostScanRecipe.d.ts.map