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 Vulnerability Notifications 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. * * List of notifications * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVulnerabilityNotifications = oci.dblm.getVulnerabilityNotifications({ * compartmentId: compartmentId, * }); * ``` */ export declare function getVulnerabilityNotifications(args: GetVulnerabilityNotificationsArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVulnerabilityNotifications. */ export interface GetVulnerabilityNotificationsArgs { /** * The required ID of the compartment in which to list resources. */ compartmentId: string; filters?: inputs.Dblm.GetVulnerabilityNotificationsFilter[]; } /** * A collection of values returned by getVulnerabilityNotifications. */ export interface GetVulnerabilityNotificationsResult { readonly compartmentId: string; readonly filters?: outputs.Dblm.GetVulnerabilityNotificationsFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * The list of notification_collection. */ readonly notificationCollections: outputs.Dblm.GetVulnerabilityNotificationsNotificationCollection[]; } /** * This data source provides the list of Vulnerability Notifications 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. * * List of notifications * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVulnerabilityNotifications = oci.dblm.getVulnerabilityNotifications({ * compartmentId: compartmentId, * }); * ``` */ export declare function getVulnerabilityNotificationsOutput(args: GetVulnerabilityNotificationsOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVulnerabilityNotifications. */ export interface GetVulnerabilityNotificationsOutputArgs { /** * The required ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; filters?: pulumi.Input[] | undefined>; } //# sourceMappingURL=getVulnerabilityNotifications.d.ts.map