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 Aggregated Vulnerability Data 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 an AggregatedVulnerabilityData * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVulnerabilityAggregatedVulnerabilityData = oci.dblm.getVulnerabilityAggregatedVulnerabilityData({ * compartmentId: compartmentId, * databaseRelease: vulnerabilityAggregatedVulnerabilityDataDatabaseRelease, * state: vulnerabilityAggregatedVulnerabilityDataState, * timeCreatedGreaterThan: vulnerabilityAggregatedVulnerabilityDataTimeCreatedGreaterThan, * timeEndedLessThan: vulnerabilityAggregatedVulnerabilityDataTimeEndedLessThan, * }); * ``` */ export declare function getVulnerabilityAggregatedVulnerabilityData(args: GetVulnerabilityAggregatedVulnerabilityDataArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getVulnerabilityAggregatedVulnerabilityData. */ export interface GetVulnerabilityAggregatedVulnerabilityDataArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: string; /** * A filter to return only database that match the given release version. */ databaseRelease?: string; filters?: inputs.Dblm.GetVulnerabilityAggregatedVulnerabilityDataFilter[]; /** * A filter to return only resources their lifecycleState matches the given lifecycleState. */ state?: string; /** * The created greater than. */ timeCreatedGreaterThan?: string; /** * The time ended less than. */ timeEndedLessThan?: string; } /** * A collection of values returned by getVulnerabilityAggregatedVulnerabilityData. */ export interface GetVulnerabilityAggregatedVulnerabilityDataResult { /** * The list of aggregated_vulnerability_collection. */ readonly aggregatedVulnerabilityCollections: outputs.Dblm.GetVulnerabilityAggregatedVulnerabilityDataAggregatedVulnerabilityCollection[]; readonly compartmentId: string; readonly databaseRelease?: string; readonly filters?: outputs.Dblm.GetVulnerabilityAggregatedVulnerabilityDataFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly state?: string; readonly timeCreatedGreaterThan?: string; readonly timeEndedLessThan?: string; } /** * This data source provides the list of Vulnerability Aggregated Vulnerability Data 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 an AggregatedVulnerabilityData * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testVulnerabilityAggregatedVulnerabilityData = oci.dblm.getVulnerabilityAggregatedVulnerabilityData({ * compartmentId: compartmentId, * databaseRelease: vulnerabilityAggregatedVulnerabilityDataDatabaseRelease, * state: vulnerabilityAggregatedVulnerabilityDataState, * timeCreatedGreaterThan: vulnerabilityAggregatedVulnerabilityDataTimeCreatedGreaterThan, * timeEndedLessThan: vulnerabilityAggregatedVulnerabilityDataTimeEndedLessThan, * }); * ``` */ export declare function getVulnerabilityAggregatedVulnerabilityDataOutput(args: GetVulnerabilityAggregatedVulnerabilityDataOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getVulnerabilityAggregatedVulnerabilityData. */ export interface GetVulnerabilityAggregatedVulnerabilityDataOutputArgs { /** * The ID of the compartment in which to list resources. */ compartmentId: pulumi.Input; /** * A filter to return only database that match the given release version. */ databaseRelease?: pulumi.Input; filters?: pulumi.Input[] | undefined>; /** * A filter to return only resources their lifecycleState matches the given lifecycleState. */ state?: pulumi.Input; /** * The created greater than. */ timeCreatedGreaterThan?: pulumi.Input; /** * The time ended less than. */ timeEndedLessThan?: pulumi.Input; } //# sourceMappingURL=getVulnerabilityAggregatedVulnerabilityData.d.ts.map