1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Dblm
  5. getVulnerabilityResources
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

oci.Dblm.getVulnerabilityResources

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi

    This data source provides the list of Vulnerability Resources in Oracle Cloud Infrastructure Dblm service.

    Lists the summary of vulnerable and clean resourcees

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testVulnerabilityResources = oci.Dblm.getVulnerabilityResources({
        compartmentId: compartmentId,
        cveId: testCve.id,
        databaseRelease: vulnerabilityResourceDatabaseRelease,
        displayName: vulnerabilityResourceDisplayName,
        patchRecommendations: vulnerabilityResourcePatchRecommendation,
        severityTypes: vulnerabilityResourceSeverityType,
        state: vulnerabilityResourceState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_vulnerability_resources = oci.Dblm.get_vulnerability_resources(compartment_id=compartment_id,
        cve_id=test_cve["id"],
        database_release=vulnerability_resource_database_release,
        display_name=vulnerability_resource_display_name,
        patch_recommendations=vulnerability_resource_patch_recommendation,
        severity_types=vulnerability_resource_severity_type,
        state=vulnerability_resource_state)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/dblm"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := dblm.GetVulnerabilityResources(ctx, &dblm.GetVulnerabilityResourcesArgs{
    			CompartmentId:        compartmentId,
    			CveId:                pulumi.StringRef(testCve.Id),
    			DatabaseRelease:      pulumi.StringRef(vulnerabilityResourceDatabaseRelease),
    			DisplayName:          pulumi.StringRef(vulnerabilityResourceDisplayName),
    			PatchRecommendations: vulnerabilityResourcePatchRecommendation,
    			SeverityTypes:        vulnerabilityResourceSeverityType,
    			State:                pulumi.StringRef(vulnerabilityResourceState),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testVulnerabilityResources = Oci.Dblm.GetVulnerabilityResources.Invoke(new()
        {
            CompartmentId = compartmentId,
            CveId = testCve.Id,
            DatabaseRelease = vulnerabilityResourceDatabaseRelease,
            DisplayName = vulnerabilityResourceDisplayName,
            PatchRecommendations = vulnerabilityResourcePatchRecommendation,
            SeverityTypes = vulnerabilityResourceSeverityType,
            State = vulnerabilityResourceState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Dblm.DblmFunctions;
    import com.pulumi.oci.Dblm.inputs.GetVulnerabilityResourcesArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var testVulnerabilityResources = DblmFunctions.getVulnerabilityResources(GetVulnerabilityResourcesArgs.builder()
                .compartmentId(compartmentId)
                .cveId(testCve.id())
                .databaseRelease(vulnerabilityResourceDatabaseRelease)
                .displayName(vulnerabilityResourceDisplayName)
                .patchRecommendations(vulnerabilityResourcePatchRecommendation)
                .severityTypes(vulnerabilityResourceSeverityType)
                .state(vulnerabilityResourceState)
                .build());
    
        }
    }
    
    variables:
      testVulnerabilityResources:
        fn::invoke:
          function: oci:Dblm:getVulnerabilityResources
          arguments:
            compartmentId: ${compartmentId}
            cveId: ${testCve.id}
            databaseRelease: ${vulnerabilityResourceDatabaseRelease}
            displayName: ${vulnerabilityResourceDisplayName}
            patchRecommendations: ${vulnerabilityResourcePatchRecommendation}
            severityTypes: ${vulnerabilityResourceSeverityType}
            state: ${vulnerabilityResourceState}
    

    Using getVulnerabilityResources

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getVulnerabilityResources(args: GetVulnerabilityResourcesArgs, opts?: InvokeOptions): Promise<GetVulnerabilityResourcesResult>
    function getVulnerabilityResourcesOutput(args: GetVulnerabilityResourcesOutputArgs, opts?: InvokeOptions): Output<GetVulnerabilityResourcesResult>
    def get_vulnerability_resources(compartment_id: Optional[str] = None,
                                    cve_id: Optional[str] = None,
                                    database_release: Optional[str] = None,
                                    display_name: Optional[str] = None,
                                    filters: Optional[Sequence[_dblm.GetVulnerabilityResourcesFilter]] = None,
                                    patch_recommendations: Optional[Sequence[str]] = None,
                                    severity_types: Optional[Sequence[str]] = None,
                                    state: Optional[str] = None,
                                    opts: Optional[InvokeOptions] = None) -> GetVulnerabilityResourcesResult
    def get_vulnerability_resources_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                    cve_id: Optional[pulumi.Input[str]] = None,
                                    database_release: Optional[pulumi.Input[str]] = None,
                                    display_name: Optional[pulumi.Input[str]] = None,
                                    filters: Optional[pulumi.Input[Sequence[pulumi.Input[_dblm.GetVulnerabilityResourcesFilterArgs]]]] = None,
                                    patch_recommendations: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                    severity_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                    state: Optional[pulumi.Input[str]] = None,
                                    opts: Optional[InvokeOptions] = None) -> Output[GetVulnerabilityResourcesResult]
    func GetVulnerabilityResources(ctx *Context, args *GetVulnerabilityResourcesArgs, opts ...InvokeOption) (*GetVulnerabilityResourcesResult, error)
    func GetVulnerabilityResourcesOutput(ctx *Context, args *GetVulnerabilityResourcesOutputArgs, opts ...InvokeOption) GetVulnerabilityResourcesResultOutput

    > Note: This function is named GetVulnerabilityResources in the Go SDK.

    public static class GetVulnerabilityResources 
    {
        public static Task<GetVulnerabilityResourcesResult> InvokeAsync(GetVulnerabilityResourcesArgs args, InvokeOptions? opts = null)
        public static Output<GetVulnerabilityResourcesResult> Invoke(GetVulnerabilityResourcesInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetVulnerabilityResourcesResult> getVulnerabilityResources(GetVulnerabilityResourcesArgs args, InvokeOptions options)
    public static Output<GetVulnerabilityResourcesResult> getVulnerabilityResources(GetVulnerabilityResourcesArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:Dblm/getVulnerabilityResources:getVulnerabilityResources
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The required ID of the compartment in which to list resources.
    CveId string
    The id of a CVE.
    DatabaseRelease string
    A filter to return only database that match the given release version.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters List<GetVulnerabilityResourcesFilter>
    PatchRecommendations List<string>
    Filter by one or more severity types. Possible values are upToDate, patchAvailable
    SeverityTypes List<string>
    Filter by one or more severity types. Possible values are critical, high, medium, low, info and none.
    State string
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    CompartmentId string
    The required ID of the compartment in which to list resources.
    CveId string
    The id of a CVE.
    DatabaseRelease string
    A filter to return only database that match the given release version.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters []GetVulnerabilityResourcesFilter
    PatchRecommendations []string
    Filter by one or more severity types. Possible values are upToDate, patchAvailable
    SeverityTypes []string
    Filter by one or more severity types. Possible values are critical, high, medium, low, info and none.
    State string
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    compartmentId String
    The required ID of the compartment in which to list resources.
    cveId String
    The id of a CVE.
    databaseRelease String
    A filter to return only database that match the given release version.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<GetVulnerabilityResourcesFilter>
    patchRecommendations List<String>
    Filter by one or more severity types. Possible values are upToDate, patchAvailable
    severityTypes List<String>
    Filter by one or more severity types. Possible values are critical, high, medium, low, info and none.
    state String
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    compartmentId string
    The required ID of the compartment in which to list resources.
    cveId string
    The id of a CVE.
    databaseRelease string
    A filter to return only database that match the given release version.
    displayName string
    A filter to return only resources that match the entire display name given.
    filters GetVulnerabilityResourcesFilter[]
    patchRecommendations string[]
    Filter by one or more severity types. Possible values are upToDate, patchAvailable
    severityTypes string[]
    Filter by one or more severity types. Possible values are critical, high, medium, low, info and none.
    state string
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    compartment_id str
    The required ID of the compartment in which to list resources.
    cve_id str
    The id of a CVE.
    database_release str
    A filter to return only database that match the given release version.
    display_name str
    A filter to return only resources that match the entire display name given.
    filters Sequence[dblm.GetVulnerabilityResourcesFilter]
    patch_recommendations Sequence[str]
    Filter by one or more severity types. Possible values are upToDate, patchAvailable
    severity_types Sequence[str]
    Filter by one or more severity types. Possible values are critical, high, medium, low, info and none.
    state str
    A filter to return only resources their lifecycleState matches the given lifecycleState.
    compartmentId String
    The required ID of the compartment in which to list resources.
    cveId String
    The id of a CVE.
    databaseRelease String
    A filter to return only database that match the given release version.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<Property Map>
    patchRecommendations List<String>
    Filter by one or more severity types. Possible values are upToDate, patchAvailable
    severityTypes List<String>
    Filter by one or more severity types. Possible values are critical, high, medium, low, info and none.
    state String
    A filter to return only resources their lifecycleState matches the given lifecycleState.

    getVulnerabilityResources Result

    The following output properties are available:

    CompartmentId string
    Id string
    The provider-assigned unique ID for this managed resource.
    VulnerabilityResourceCollections List<GetVulnerabilityResourcesVulnerabilityResourceCollection>
    The list of vulnerability_resource_collection.
    CveId string
    DatabaseRelease string
    DisplayName string
    Filters List<GetVulnerabilityResourcesFilter>
    PatchRecommendations List<string>
    SeverityTypes List<string>
    State string
    CompartmentId string
    Id string
    The provider-assigned unique ID for this managed resource.
    VulnerabilityResourceCollections []GetVulnerabilityResourcesVulnerabilityResourceCollection
    The list of vulnerability_resource_collection.
    CveId string
    DatabaseRelease string
    DisplayName string
    Filters []GetVulnerabilityResourcesFilter
    PatchRecommendations []string
    SeverityTypes []string
    State string
    compartmentId String
    id String
    The provider-assigned unique ID for this managed resource.
    vulnerabilityResourceCollections List<GetVulnerabilityResourcesVulnerabilityResourceCollection>
    The list of vulnerability_resource_collection.
    cveId String
    databaseRelease String
    displayName String
    filters List<GetVulnerabilityResourcesFilter>
    patchRecommendations List<String>
    severityTypes List<String>
    state String
    compartmentId string
    id string
    The provider-assigned unique ID for this managed resource.
    vulnerabilityResourceCollections GetVulnerabilityResourcesVulnerabilityResourceCollection[]
    The list of vulnerability_resource_collection.
    cveId string
    databaseRelease string
    displayName string
    filters GetVulnerabilityResourcesFilter[]
    patchRecommendations string[]
    severityTypes string[]
    state string
    compartmentId String
    id String
    The provider-assigned unique ID for this managed resource.
    vulnerabilityResourceCollections List<Property Map>
    The list of vulnerability_resource_collection.
    cveId String
    databaseRelease String
    displayName String
    filters List<Property Map>
    patchRecommendations List<String>
    severityTypes List<String>
    state String

    Supporting Types

    GetVulnerabilityResourcesFilter

    Name string
    The name of the resource.
    Values List<string>
    Regex bool
    Name string
    The name of the resource.
    Values []string
    Regex bool
    name String
    The name of the resource.
    values List<String>
    regex Boolean
    name string
    The name of the resource.
    values string[]
    regex boolean
    name str
    The name of the resource.
    values Sequence[str]
    regex bool
    name String
    The name of the resource.
    values List<String>
    regex Boolean

    GetVulnerabilityResourcesVulnerabilityResourceCollection

    items List<Property Map>
    Collection of assessed resources

    GetVulnerabilityResourcesVulnerabilityResourceCollectionItem

    ChildPdbs List<GetVulnerabilityResourcesVulnerabilityResourceCollectionItemChildPdb>
    PDBs for a CDB.
    Id string
    The resource ID for this resource.
    ImageId string
    Identifier for the resource is subscribed to.
    MetricErrors List<GetVulnerabilityResourcesVulnerabilityResourceCollectionItemMetricError>
    Metric errors.
    Name string
    The name of the resource.
    PatchRecommendationsDetails List<GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsDetail>
    List of the patch recommendations for databases
    PatchRecommendationsSummaries List<GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsSummary>
    Summary of the patch recommendations for databases.
    Platform string
    A string representing the platform of the resource.
    Release string
    A string representing the release of the resource.
    SubscribedImage string
    Image the resource is subscribed to.
    TimeConfigCollected string
    Time when the latest configuration collection happened.
    TimeScanEnded string
    Time when the latest scan happened for the resource.
    Version string
    A string representing the version of the resource.
    VulnerabilitiesSummaries List<GetVulnerabilityResourcesVulnerabilityResourceCollectionItemVulnerabilitiesSummary>
    Summary of the resources that are registered and may or may not have vulnerabilities.
    ChildPdbs []GetVulnerabilityResourcesVulnerabilityResourceCollectionItemChildPdb
    PDBs for a CDB.
    Id string
    The resource ID for this resource.
    ImageId string
    Identifier for the resource is subscribed to.
    MetricErrors []GetVulnerabilityResourcesVulnerabilityResourceCollectionItemMetricError
    Metric errors.
    Name string
    The name of the resource.
    PatchRecommendationsDetails []GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsDetail
    List of the patch recommendations for databases
    PatchRecommendationsSummaries []GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsSummary
    Summary of the patch recommendations for databases.
    Platform string
    A string representing the platform of the resource.
    Release string
    A string representing the release of the resource.
    SubscribedImage string
    Image the resource is subscribed to.
    TimeConfigCollected string
    Time when the latest configuration collection happened.
    TimeScanEnded string
    Time when the latest scan happened for the resource.
    Version string
    A string representing the version of the resource.
    VulnerabilitiesSummaries []GetVulnerabilityResourcesVulnerabilityResourceCollectionItemVulnerabilitiesSummary
    Summary of the resources that are registered and may or may not have vulnerabilities.
    childPdbs List<GetVulnerabilityResourcesVulnerabilityResourceCollectionItemChildPdb>
    PDBs for a CDB.
    id String
    The resource ID for this resource.
    imageId String
    Identifier for the resource is subscribed to.
    metricErrors List<GetVulnerabilityResourcesVulnerabilityResourceCollectionItemMetricError>
    Metric errors.
    name String
    The name of the resource.
    patchRecommendationsDetails List<GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsDetail>
    List of the patch recommendations for databases
    patchRecommendationsSummaries List<GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsSummary>
    Summary of the patch recommendations for databases.
    platform String
    A string representing the platform of the resource.
    release String
    A string representing the release of the resource.
    subscribedImage String
    Image the resource is subscribed to.
    timeConfigCollected String
    Time when the latest configuration collection happened.
    timeScanEnded String
    Time when the latest scan happened for the resource.
    version String
    A string representing the version of the resource.
    vulnerabilitiesSummaries List<GetVulnerabilityResourcesVulnerabilityResourceCollectionItemVulnerabilitiesSummary>
    Summary of the resources that are registered and may or may not have vulnerabilities.
    childPdbs GetVulnerabilityResourcesVulnerabilityResourceCollectionItemChildPdb[]
    PDBs for a CDB.
    id string
    The resource ID for this resource.
    imageId string
    Identifier for the resource is subscribed to.
    metricErrors GetVulnerabilityResourcesVulnerabilityResourceCollectionItemMetricError[]
    Metric errors.
    name string
    The name of the resource.
    patchRecommendationsDetails GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsDetail[]
    List of the patch recommendations for databases
    patchRecommendationsSummaries GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsSummary[]
    Summary of the patch recommendations for databases.
    platform string
    A string representing the platform of the resource.
    release string
    A string representing the release of the resource.
    subscribedImage string
    Image the resource is subscribed to.
    timeConfigCollected string
    Time when the latest configuration collection happened.
    timeScanEnded string
    Time when the latest scan happened for the resource.
    version string
    A string representing the version of the resource.
    vulnerabilitiesSummaries GetVulnerabilityResourcesVulnerabilityResourceCollectionItemVulnerabilitiesSummary[]
    Summary of the resources that are registered and may or may not have vulnerabilities.
    child_pdbs Sequence[dblm.GetVulnerabilityResourcesVulnerabilityResourceCollectionItemChildPdb]
    PDBs for a CDB.
    id str
    The resource ID for this resource.
    image_id str
    Identifier for the resource is subscribed to.
    metric_errors Sequence[dblm.GetVulnerabilityResourcesVulnerabilityResourceCollectionItemMetricError]
    Metric errors.
    name str
    The name of the resource.
    patch_recommendations_details Sequence[dblm.GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsDetail]
    List of the patch recommendations for databases
    patch_recommendations_summaries Sequence[dblm.GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsSummary]
    Summary of the patch recommendations for databases.
    platform str
    A string representing the platform of the resource.
    release str
    A string representing the release of the resource.
    subscribed_image str
    Image the resource is subscribed to.
    time_config_collected str
    Time when the latest configuration collection happened.
    time_scan_ended str
    Time when the latest scan happened for the resource.
    version str
    A string representing the version of the resource.
    vulnerabilities_summaries Sequence[dblm.GetVulnerabilityResourcesVulnerabilityResourceCollectionItemVulnerabilitiesSummary]
    Summary of the resources that are registered and may or may not have vulnerabilities.
    childPdbs List<Property Map>
    PDBs for a CDB.
    id String
    The resource ID for this resource.
    imageId String
    Identifier for the resource is subscribed to.
    metricErrors List<Property Map>
    Metric errors.
    name String
    The name of the resource.
    patchRecommendationsDetails List<Property Map>
    List of the patch recommendations for databases
    patchRecommendationsSummaries List<Property Map>
    Summary of the patch recommendations for databases.
    platform String
    A string representing the platform of the resource.
    release String
    A string representing the release of the resource.
    subscribedImage String
    Image the resource is subscribed to.
    timeConfigCollected String
    Time when the latest configuration collection happened.
    timeScanEnded String
    Time when the latest scan happened for the resource.
    version String
    A string representing the version of the resource.
    vulnerabilitiesSummaries List<Property Map>
    Summary of the resources that are registered and may or may not have vulnerabilities.

    GetVulnerabilityResourcesVulnerabilityResourceCollectionItemChildPdb

    LastChangedBy string
    Last changed by
    Name string
    The name of the resource.
    OpenMode string
    Open mode
    PdbId string
    Identifier for the pluggable database.
    RecoveryStatus string
    Recovery status
    Restricted string
    Restricted
    LastChangedBy string
    Last changed by
    Name string
    The name of the resource.
    OpenMode string
    Open mode
    PdbId string
    Identifier for the pluggable database.
    RecoveryStatus string
    Recovery status
    Restricted string
    Restricted
    lastChangedBy String
    Last changed by
    name String
    The name of the resource.
    openMode String
    Open mode
    pdbId String
    Identifier for the pluggable database.
    recoveryStatus String
    Recovery status
    restricted String
    Restricted
    lastChangedBy string
    Last changed by
    name string
    The name of the resource.
    openMode string
    Open mode
    pdbId string
    Identifier for the pluggable database.
    recoveryStatus string
    Recovery status
    restricted string
    Restricted
    last_changed_by str
    Last changed by
    name str
    The name of the resource.
    open_mode str
    Open mode
    pdb_id str
    Identifier for the pluggable database.
    recovery_status str
    Recovery status
    restricted str
    Restricted
    lastChangedBy String
    Last changed by
    name String
    The name of the resource.
    openMode String
    Open mode
    pdbId String
    Identifier for the pluggable database.
    recoveryStatus String
    Recovery status
    restricted String
    Restricted

    GetVulnerabilityResourcesVulnerabilityResourceCollectionItemMetricError

    ContentType string
    Content type
    Data string
    Data
    ErrorType string
    Error type
    Level string
    Level
    Subject string
    Subject
    TimeGenerated string
    Time the error record was generated
    ContentType string
    Content type
    Data string
    Data
    ErrorType string
    Error type
    Level string
    Level
    Subject string
    Subject
    TimeGenerated string
    Time the error record was generated
    contentType String
    Content type
    data String
    Data
    errorType String
    Error type
    level String
    Level
    subject String
    Subject
    timeGenerated String
    Time the error record was generated
    contentType string
    Content type
    data string
    Data
    errorType string
    Error type
    level string
    Level
    subject string
    Subject
    timeGenerated string
    Time the error record was generated
    content_type str
    Content type
    data str
    Data
    error_type str
    Error type
    level str
    Level
    subject str
    Subject
    time_generated str
    Time the error record was generated
    contentType String
    Content type
    data String
    Data
    errorType String
    Error type
    level String
    Level
    subject String
    Subject
    timeGenerated String
    Time the error record was generated

    GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsDetail

    AbstractText string
    Description of the patch recommendation.
    ClassificationName string
    Classification of the patch recommendation.
    HasFixForCve bool
    If the patch has a fix for a CVE.
    PatchName string
    Name of the patch recommendation.
    TimeEvaluated string
    Evaluation date for the patch recommendation.
    TimeReleased string
    Release date for the patch.
    AbstractText string
    Description of the patch recommendation.
    ClassificationName string
    Classification of the patch recommendation.
    HasFixForCve bool
    If the patch has a fix for a CVE.
    PatchName string
    Name of the patch recommendation.
    TimeEvaluated string
    Evaluation date for the patch recommendation.
    TimeReleased string
    Release date for the patch.
    abstractText String
    Description of the patch recommendation.
    classificationName String
    Classification of the patch recommendation.
    hasFixForCve Boolean
    If the patch has a fix for a CVE.
    patchName String
    Name of the patch recommendation.
    timeEvaluated String
    Evaluation date for the patch recommendation.
    timeReleased String
    Release date for the patch.
    abstractText string
    Description of the patch recommendation.
    classificationName string
    Classification of the patch recommendation.
    hasFixForCve boolean
    If the patch has a fix for a CVE.
    patchName string
    Name of the patch recommendation.
    timeEvaluated string
    Evaluation date for the patch recommendation.
    timeReleased string
    Release date for the patch.
    abstract_text str
    Description of the patch recommendation.
    classification_name str
    Classification of the patch recommendation.
    has_fix_for_cve bool
    If the patch has a fix for a CVE.
    patch_name str
    Name of the patch recommendation.
    time_evaluated str
    Evaluation date for the patch recommendation.
    time_released str
    Release date for the patch.
    abstractText String
    Description of the patch recommendation.
    classificationName String
    Classification of the patch recommendation.
    hasFixForCve Boolean
    If the patch has a fix for a CVE.
    patchName String
    Name of the patch recommendation.
    timeEvaluated String
    Evaluation date for the patch recommendation.
    timeReleased String
    Release date for the patch.

    GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsSummary

    patchAvailable Integer
    total Integer
    upToDate Integer
    patchAvailable number
    total number
    upToDate number
    patchAvailable Number
    total Number
    upToDate Number

    GetVulnerabilityResourcesVulnerabilityResourceCollectionItemVulnerabilitiesSummary

    Critical int
    High int
    Info int
    Low int
    Medium int
    Total int
    Critical int
    High int
    Info int
    Low int
    Medium int
    Total int
    critical Integer
    high Integer
    info Integer
    low Integer
    medium Integer
    total Integer
    critical number
    high number
    info number
    low number
    medium number
    total number
    critical int
    high int
    info int
    low int
    medium int
    total int
    critical Number
    high Number
    info Number
    low Number
    medium Number
    total Number

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v2.28.0 published on Thursday, Mar 27, 2025 by Pulumi