Oracle Cloud Infrastructure v2.31.0 published on Thursday, Apr 17, 2025 by Pulumi
oci.Dblm.getVulnerabilityResources
Explore with Pulumi AI
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 dictionaryThe 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<GetVulnerability Resources Filter> 
- 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
[]GetVulnerability Resources Filter 
- 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<GetVulnerability Resources Filter> 
- 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
GetVulnerability Resources Filter[] 
- 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.Get Vulnerability Resources Filter] 
- 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.
- VulnerabilityResource List<GetCollections Vulnerability Resources Vulnerability Resource Collection> 
- The list of vulnerability_resource_collection.
- CveId string
- DatabaseRelease string
- DisplayName string
- Filters
List<GetVulnerability Resources Filter> 
- PatchRecommendations List<string>
- SeverityTypes List<string>
- State string
- CompartmentId string
- Id string
- The provider-assigned unique ID for this managed resource.
- VulnerabilityResource []GetCollections Vulnerability Resources Vulnerability Resource Collection 
- The list of vulnerability_resource_collection.
- CveId string
- DatabaseRelease string
- DisplayName string
- Filters
[]GetVulnerability Resources Filter 
- PatchRecommendations []string
- SeverityTypes []string
- State string
- compartmentId String
- id String
- The provider-assigned unique ID for this managed resource.
- vulnerabilityResource List<GetCollections Vulnerability Resources Vulnerability Resource Collection> 
- The list of vulnerability_resource_collection.
- cveId String
- databaseRelease String
- displayName String
- filters
List<GetVulnerability Resources Filter> 
- patchRecommendations List<String>
- severityTypes List<String>
- state String
- compartmentId string
- id string
- The provider-assigned unique ID for this managed resource.
- vulnerabilityResource GetCollections Vulnerability Resources Vulnerability Resource Collection[] 
- The list of vulnerability_resource_collection.
- cveId string
- databaseRelease string
- displayName string
- filters
GetVulnerability Resources Filter[] 
- patchRecommendations string[]
- severityTypes string[]
- state string
- compartment_id str
- id str
- The provider-assigned unique ID for this managed resource.
- vulnerability_resource_ Sequence[dblm.collections Get Vulnerability Resources Vulnerability Resource Collection] 
- The list of vulnerability_resource_collection.
- cve_id str
- database_release str
- display_name str
- filters
Sequence[dblm.Get Vulnerability Resources Filter] 
- patch_recommendations Sequence[str]
- severity_types Sequence[str]
- state str
- compartmentId String
- id String
- The provider-assigned unique ID for this managed resource.
- vulnerabilityResource List<Property Map>Collections 
- 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   
GetVulnerabilityResourcesVulnerabilityResourceCollection     
- Items
List<GetVulnerability Resources Vulnerability Resource Collection Item> 
- Collection of assessed resources
- Items
[]GetVulnerability Resources Vulnerability Resource Collection Item 
- Collection of assessed resources
- items
List<GetVulnerability Resources Vulnerability Resource Collection Item> 
- Collection of assessed resources
- items
GetVulnerability Resources Vulnerability Resource Collection Item[] 
- Collection of assessed resources
- items
Sequence[dblm.Get Vulnerability Resources Vulnerability Resource Collection Item] 
- Collection of assessed resources
- items List<Property Map>
- Collection of assessed resources
GetVulnerabilityResourcesVulnerabilityResourceCollectionItem      
- ChildPdbs List<GetVulnerability Resources Vulnerability Resource Collection Item Child Pdb> 
- PDBs for a CDB.
- Id string
- The resource ID for this resource.
- ImageId string
- Identifier for the resource is subscribed to.
- MetricErrors List<GetVulnerability Resources Vulnerability Resource Collection Item Metric Error> 
- Metric errors.
- Name string
- The name of the resource.
- PatchRecommendations List<GetDetails Vulnerability Resources Vulnerability Resource Collection Item Patch Recommendations Detail> 
- List of the patch recommendations for databases
- PatchRecommendations List<GetSummaries Vulnerability Resources Vulnerability Resource Collection Item Patch Recommendations Summary> 
- 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.
- TimeConfig stringCollected 
- Time when the latest configuration collection happened.
- TimeScan stringEnded 
- Time when the latest scan happened for the resource.
- Version string
- A string representing the version of the resource.
- VulnerabilitiesSummaries List<GetVulnerability Resources Vulnerability Resource Collection Item Vulnerabilities Summary> 
- Summary of the resources that are registered and may or may not have vulnerabilities.
- ChildPdbs []GetVulnerability Resources Vulnerability Resource Collection Item Child Pdb 
- PDBs for a CDB.
- Id string
- The resource ID for this resource.
- ImageId string
- Identifier for the resource is subscribed to.
- MetricErrors []GetVulnerability Resources Vulnerability Resource Collection Item Metric Error 
- Metric errors.
- Name string
- The name of the resource.
- PatchRecommendations []GetDetails Vulnerability Resources Vulnerability Resource Collection Item Patch Recommendations Detail 
- List of the patch recommendations for databases
- PatchRecommendations []GetSummaries Vulnerability Resources Vulnerability Resource Collection Item Patch Recommendations Summary 
- 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.
- TimeConfig stringCollected 
- Time when the latest configuration collection happened.
- TimeScan stringEnded 
- Time when the latest scan happened for the resource.
- Version string
- A string representing the version of the resource.
- VulnerabilitiesSummaries []GetVulnerability Resources Vulnerability Resource Collection Item Vulnerabilities Summary 
- Summary of the resources that are registered and may or may not have vulnerabilities.
- childPdbs List<GetVulnerability Resources Vulnerability Resource Collection Item Child Pdb> 
- PDBs for a CDB.
- id String
- The resource ID for this resource.
- imageId String
- Identifier for the resource is subscribed to.
- metricErrors List<GetVulnerability Resources Vulnerability Resource Collection Item Metric Error> 
- Metric errors.
- name String
- The name of the resource.
- patchRecommendations List<GetDetails Vulnerability Resources Vulnerability Resource Collection Item Patch Recommendations Detail> 
- List of the patch recommendations for databases
- patchRecommendations List<GetSummaries Vulnerability Resources Vulnerability Resource Collection Item Patch Recommendations Summary> 
- 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.
- timeConfig StringCollected 
- Time when the latest configuration collection happened.
- timeScan StringEnded 
- Time when the latest scan happened for the resource.
- version String
- A string representing the version of the resource.
- vulnerabilitiesSummaries List<GetVulnerability Resources Vulnerability Resource Collection Item Vulnerabilities Summary> 
- Summary of the resources that are registered and may or may not have vulnerabilities.
- childPdbs GetVulnerability Resources Vulnerability Resource Collection Item Child Pdb[] 
- PDBs for a CDB.
- id string
- The resource ID for this resource.
- imageId string
- Identifier for the resource is subscribed to.
- metricErrors GetVulnerability Resources Vulnerability Resource Collection Item Metric Error[] 
- Metric errors.
- name string
- The name of the resource.
- patchRecommendations GetDetails Vulnerability Resources Vulnerability Resource Collection Item Patch Recommendations Detail[] 
- List of the patch recommendations for databases
- patchRecommendations GetSummaries Vulnerability Resources Vulnerability Resource Collection Item Patch Recommendations Summary[] 
- 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.
- timeConfig stringCollected 
- Time when the latest configuration collection happened.
- timeScan stringEnded 
- Time when the latest scan happened for the resource.
- version string
- A string representing the version of the resource.
- vulnerabilitiesSummaries GetVulnerability Resources Vulnerability Resource Collection Item Vulnerabilities Summary[] 
- Summary of the resources that are registered and may or may not have vulnerabilities.
- child_pdbs Sequence[dblm.Get Vulnerability Resources Vulnerability Resource Collection Item Child Pdb] 
- 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.Get Vulnerability Resources Vulnerability Resource Collection Item Metric Error] 
- Metric errors.
- name str
- The name of the resource.
- patch_recommendations_ Sequence[dblm.details Get Vulnerability Resources Vulnerability Resource Collection Item Patch Recommendations Detail] 
- List of the patch recommendations for databases
- patch_recommendations_ Sequence[dblm.summaries Get Vulnerability Resources Vulnerability Resource Collection Item Patch Recommendations Summary] 
- 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_ strcollected 
- Time when the latest configuration collection happened.
- time_scan_ strended 
- Time when the latest scan happened for the resource.
- version str
- A string representing the version of the resource.
- vulnerabilities_summaries Sequence[dblm.Get Vulnerability Resources Vulnerability Resource Collection Item Vulnerabilities Summary] 
- 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.
- patchRecommendations List<Property Map>Details 
- List of the patch recommendations for databases
- patchRecommendations List<Property Map>Summaries 
- 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.
- timeConfig StringCollected 
- Time when the latest configuration collection happened.
- timeScan StringEnded 
- 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        
- LastChanged stringBy 
- 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
- LastChanged stringBy 
- 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
- lastChanged StringBy 
- 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
- lastChanged stringBy 
- 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_ strby 
- 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
- lastChanged StringBy 
- 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.
- HasFix boolFor Cve 
- 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.
- HasFix boolFor Cve 
- 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.
- hasFix BooleanFor Cve 
- 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.
- hasFix booleanFor Cve 
- 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_ boolfor_ cve 
- 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.
- hasFix BooleanFor Cve 
- 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 int
- Total int
- UpTo intDate 
- PatchAvailable int
- Total int
- UpTo intDate 
- patchAvailable Integer
- total Integer
- upTo IntegerDate 
- patchAvailable number
- total number
- upTo numberDate 
- patch_available int
- total int
- up_to_ intdate 
- patchAvailable Number
- total Number
- upTo NumberDate 
GetVulnerabilityResourcesVulnerabilityResourceCollectionItemVulnerabilitiesSummary        
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.