import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Vulnerability Scan resource in Oracle Cloud Infrastructure Dblm service. * * > **WARNING:** End of Life: Database Lifecycle Management is deprecated and will reach end of life in January 2027. DBLM Terraform resources and data sources will no longer be supported after that date. * * Gets information about a VulnerabilityScan. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVulnerabilityScan = oci.dblm.getVulnerabilityScan({ * vulnerabilityScanId: testVulnerabilityScanOciDblmVulnerabilityScan.id, * }); * ``` */ export declare function getVulnerabilityScan(args: GetVulnerabilityScanArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVulnerabilityScan. */ export interface GetVulnerabilityScanArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VulnerabilityScan. */ vulnerabilityScanId: string; } /** * A collection of values returned by getVulnerabilityScan. */ export interface GetVulnerabilityScanResult { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment. */ 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; }; /** * A user-friendly name. It does not have to be unique, and it is changeable. */ 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; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VulnerabilityScan. */ readonly id: string; /** * The current state of the VulnerabilityScan. */ readonly state: string; /** * System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}` */ readonly systemTags: { [key: string]: string; }; /** * The date and time the VulnerabilityScan was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The date and time the VulnerabilityScan was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z` */ readonly timeEnded: string; readonly vulnerabilityScanId: string; /** * The message of the vulnerability scan status. */ readonly vulnerabilityScanMessage: string; /** * The status of the vulnerability scan. */ readonly vulnerabilityScanStatus: string; /** * Scan type is CVE, PATCH or IMAGE_PATCH */ readonly vulnerabilityScanType: string; } /** * This data source provides details about a specific Vulnerability Scan resource in Oracle Cloud Infrastructure Dblm service. * * > **WARNING:** End of Life: Database Lifecycle Management is deprecated and will reach end of life in January 2027. DBLM Terraform resources and data sources will no longer be supported after that date. * * Gets information about a VulnerabilityScan. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVulnerabilityScan = oci.dblm.getVulnerabilityScan({ * vulnerabilityScanId: testVulnerabilityScanOciDblmVulnerabilityScan.id, * }); * ``` */ export declare function getVulnerabilityScanOutput(args: GetVulnerabilityScanOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVulnerabilityScan. */ export interface GetVulnerabilityScanOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VulnerabilityScan. */ vulnerabilityScanId: pulumi.Input; } //# sourceMappingURL=getVulnerabilityScan.d.ts.map