Oracle Cloud Infrastructure v2.27.0 published on Thursday, Mar 20, 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 dictionary
The following arguments are supported:
- Compartment
Id string - The required ID of the compartment in which to list resources.
- Cve
Id string - The id of a CVE.
- Database
Release string - A filter to return only database that match the given release version.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
List<Get
Vulnerability Resources Filter> - Patch
Recommendations List<string> - Filter by one or more severity types. Possible values are upToDate, patchAvailable
- Severity
Types 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.
- Compartment
Id string - The required ID of the compartment in which to list resources.
- Cve
Id string - The id of a CVE.
- Database
Release string - A filter to return only database that match the given release version.
- Display
Name string - A filter to return only resources that match the entire display name given.
- Filters
[]Get
Vulnerability Resources Filter - Patch
Recommendations []string - Filter by one or more severity types. Possible values are upToDate, patchAvailable
- Severity
Types []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 String - The required ID of the compartment in which to list resources.
- cve
Id String - The id of a CVE.
- database
Release String - A filter to return only database that match the given release version.
- display
Name String - A filter to return only resources that match the entire display name given.
- filters
List<Get
Vulnerability Resources Filter> - patch
Recommendations List<String> - Filter by one or more severity types. Possible values are upToDate, patchAvailable
- severity
Types 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.
- compartment
Id string - The required ID of the compartment in which to list resources.
- cve
Id string - The id of a CVE.
- database
Release string - A filter to return only database that match the given release version.
- display
Name string - A filter to return only resources that match the entire display name given.
- filters
Get
Vulnerability Resources Filter[] - patch
Recommendations string[] - Filter by one or more severity types. Possible values are upToDate, patchAvailable
- severity
Types 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.
- compartment
Id String - The required ID of the compartment in which to list resources.
- cve
Id String - The id of a CVE.
- database
Release String - A filter to return only database that match the given release version.
- display
Name String - A filter to return only resources that match the entire display name given.
- filters List<Property Map>
- patch
Recommendations List<String> - Filter by one or more severity types. Possible values are upToDate, patchAvailable
- severity
Types 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:
- Compartment
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- Vulnerability
Resource List<GetCollections Vulnerability Resources Vulnerability Resource Collection> - The list of vulnerability_resource_collection.
- Cve
Id string - Database
Release string - Display
Name string - Filters
List<Get
Vulnerability Resources Filter> - Patch
Recommendations List<string> - Severity
Types List<string> - State string
- Compartment
Id string - Id string
- The provider-assigned unique ID for this managed resource.
- Vulnerability
Resource []GetCollections Vulnerability Resources Vulnerability Resource Collection - The list of vulnerability_resource_collection.
- Cve
Id string - Database
Release string - Display
Name string - Filters
[]Get
Vulnerability Resources Filter - Patch
Recommendations []string - Severity
Types []string - State string
- compartment
Id String - id String
- The provider-assigned unique ID for this managed resource.
- vulnerability
Resource List<GetCollections Vulnerability Resources Vulnerability Resource Collection> - The list of vulnerability_resource_collection.
- cve
Id String - database
Release String - display
Name String - filters
List<Get
Vulnerability Resources Filter> - patch
Recommendations List<String> - severity
Types List<String> - state String
- compartment
Id string - id string
- The provider-assigned unique ID for this managed resource.
- vulnerability
Resource GetCollections Vulnerability Resources Vulnerability Resource Collection[] - The list of vulnerability_resource_collection.
- cve
Id string - database
Release string - display
Name string - filters
Get
Vulnerability Resources Filter[] - patch
Recommendations string[] - severity
Types 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
- compartment
Id String - id String
- The provider-assigned unique ID for this managed resource.
- vulnerability
Resource List<Property Map>Collections - The list of vulnerability_resource_collection.
- cve
Id String - database
Release String - display
Name String - filters List<Property Map>
- patch
Recommendations List<String> - severity
Types List<String> - state String
Supporting Types
GetVulnerabilityResourcesFilter
GetVulnerabilityResourcesVulnerabilityResourceCollection
- Items
List<Get
Vulnerability Resources Vulnerability Resource Collection Item> - Collection of assessed resources
- Items
[]Get
Vulnerability Resources Vulnerability Resource Collection Item - Collection of assessed resources
- items
List<Get
Vulnerability Resources Vulnerability Resource Collection Item> - Collection of assessed resources
- items
Get
Vulnerability 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
- Child
Pdbs List<GetVulnerability Resources Vulnerability Resource Collection Item Child Pdb> - PDBs for a CDB.
- Id string
- The resource ID for this resource.
- Image
Id string - Identifier for the resource is subscribed to.
- Metric
Errors List<GetVulnerability Resources Vulnerability Resource Collection Item Metric Error> - Metric errors.
- Name string
- The name of the resource.
- Patch
Recommendations List<GetDetails Vulnerability Resources Vulnerability Resource Collection Item Patch Recommendations Detail> - List of the patch recommendations for databases
- Patch
Recommendations 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.
- Subscribed
Image string - Image the resource is subscribed to.
- Time
Config stringCollected - Time when the latest configuration collection happened.
- Time
Scan stringEnded - Time when the latest scan happened for the resource.
- Version string
- A string representing the version of the resource.
- Vulnerabilities
Summaries List<GetVulnerability Resources Vulnerability Resource Collection Item Vulnerabilities Summary> - Summary of the resources that are registered and may or may not have vulnerabilities.
- Child
Pdbs []GetVulnerability Resources Vulnerability Resource Collection Item Child Pdb - PDBs for a CDB.
- Id string
- The resource ID for this resource.
- Image
Id string - Identifier for the resource is subscribed to.
- Metric
Errors []GetVulnerability Resources Vulnerability Resource Collection Item Metric Error - Metric errors.
- Name string
- The name of the resource.
- Patch
Recommendations []GetDetails Vulnerability Resources Vulnerability Resource Collection Item Patch Recommendations Detail - List of the patch recommendations for databases
- Patch
Recommendations []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.
- Subscribed
Image string - Image the resource is subscribed to.
- Time
Config stringCollected - Time when the latest configuration collection happened.
- Time
Scan stringEnded - Time when the latest scan happened for the resource.
- Version string
- A string representing the version of the resource.
- Vulnerabilities
Summaries []GetVulnerability Resources Vulnerability Resource Collection Item Vulnerabilities Summary - Summary of the resources that are registered and may or may not have vulnerabilities.
- child
Pdbs List<GetVulnerability Resources Vulnerability Resource Collection Item Child Pdb> - PDBs for a CDB.
- id String
- The resource ID for this resource.
- image
Id String - Identifier for the resource is subscribed to.
- metric
Errors List<GetVulnerability Resources Vulnerability Resource Collection Item Metric Error> - Metric errors.
- name String
- The name of the resource.
- patch
Recommendations List<GetDetails Vulnerability Resources Vulnerability Resource Collection Item Patch Recommendations Detail> - List of the patch recommendations for databases
- patch
Recommendations 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.
- subscribed
Image String - Image the resource is subscribed to.
- time
Config StringCollected - Time when the latest configuration collection happened.
- time
Scan StringEnded - Time when the latest scan happened for the resource.
- version String
- A string representing the version of the resource.
- vulnerabilities
Summaries List<GetVulnerability Resources Vulnerability Resource Collection Item Vulnerabilities Summary> - Summary of the resources that are registered and may or may not have vulnerabilities.
- child
Pdbs GetVulnerability Resources Vulnerability Resource Collection Item Child Pdb[] - PDBs for a CDB.
- id string
- The resource ID for this resource.
- image
Id string - Identifier for the resource is subscribed to.
- metric
Errors GetVulnerability Resources Vulnerability Resource Collection Item Metric Error[] - Metric errors.
- name string
- The name of the resource.
- patch
Recommendations GetDetails Vulnerability Resources Vulnerability Resource Collection Item Patch Recommendations Detail[] - List of the patch recommendations for databases
- patch
Recommendations 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.
- subscribed
Image string - Image the resource is subscribed to.
- time
Config stringCollected - Time when the latest configuration collection happened.
- time
Scan stringEnded - Time when the latest scan happened for the resource.
- version string
- A string representing the version of the resource.
- vulnerabilities
Summaries 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.
- child
Pdbs List<Property Map> - PDBs for a CDB.
- id String
- The resource ID for this resource.
- image
Id String - Identifier for the resource is subscribed to.
- metric
Errors List<Property Map> - Metric errors.
- name String
- The name of the resource.
- patch
Recommendations List<Property Map>Details - List of the patch recommendations for databases
- patch
Recommendations 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.
- subscribed
Image String - Image the resource is subscribed to.
- time
Config StringCollected - Time when the latest configuration collection happened.
- time
Scan StringEnded - Time when the latest scan happened for the resource.
- version String
- A string representing the version of the resource.
- vulnerabilities
Summaries List<Property Map> - Summary of the resources that are registered and may or may not have vulnerabilities.
GetVulnerabilityResourcesVulnerabilityResourceCollectionItemChildPdb
- Last
Changed stringBy - Last changed by
- Name string
- The name of the resource.
- Open
Mode string - Open mode
- Pdb
Id string - Identifier for the pluggable database.
- Recovery
Status string - Recovery status
- Restricted string
- Restricted
- Last
Changed stringBy - Last changed by
- Name string
- The name of the resource.
- Open
Mode string - Open mode
- Pdb
Id string - Identifier for the pluggable database.
- Recovery
Status string - Recovery status
- Restricted string
- Restricted
- last
Changed StringBy - Last changed by
- name String
- The name of the resource.
- open
Mode String - Open mode
- pdb
Id String - Identifier for the pluggable database.
- recovery
Status String - Recovery status
- restricted String
- Restricted
- last
Changed stringBy - Last changed by
- name string
- The name of the resource.
- open
Mode string - Open mode
- pdb
Id string - Identifier for the pluggable database.
- recovery
Status 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
- last
Changed StringBy - Last changed by
- name String
- The name of the resource.
- open
Mode String - Open mode
- pdb
Id String - Identifier for the pluggable database.
- recovery
Status String - Recovery status
- restricted String
- Restricted
GetVulnerabilityResourcesVulnerabilityResourceCollectionItemMetricError
- Content
Type string - Content type
- Data string
- Data
- Error
Type string - Error type
- Level string
- Level
- Subject string
- Subject
- Time
Generated string - Time the error record was generated
- Content
Type string - Content type
- Data string
- Data
- Error
Type string - Error type
- Level string
- Level
- Subject string
- Subject
- Time
Generated string - Time the error record was generated
- content
Type String - Content type
- data String
- Data
- error
Type String - Error type
- level String
- Level
- subject String
- Subject
- time
Generated String - Time the error record was generated
- content
Type string - Content type
- data string
- Data
- error
Type string - Error type
- level string
- Level
- subject string
- Subject
- time
Generated 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
- content
Type String - Content type
- data String
- Data
- error
Type String - Error type
- level String
- Level
- subject String
- Subject
- time
Generated String - Time the error record was generated
GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsDetail
- Abstract
Text string - Description of the patch recommendation.
- Classification
Name string - Classification of the patch recommendation.
- Has
Fix boolFor Cve - If the patch has a fix for a CVE.
- Patch
Name string - Name of the patch recommendation.
- Time
Evaluated string - Evaluation date for the patch recommendation.
- Time
Released string - Release date for the patch.
- Abstract
Text string - Description of the patch recommendation.
- Classification
Name string - Classification of the patch recommendation.
- Has
Fix boolFor Cve - If the patch has a fix for a CVE.
- Patch
Name string - Name of the patch recommendation.
- Time
Evaluated string - Evaluation date for the patch recommendation.
- Time
Released string - Release date for the patch.
- abstract
Text String - Description of the patch recommendation.
- classification
Name String - Classification of the patch recommendation.
- has
Fix BooleanFor Cve - If the patch has a fix for a CVE.
- patch
Name String - Name of the patch recommendation.
- time
Evaluated String - Evaluation date for the patch recommendation.
- time
Released String - Release date for the patch.
- abstract
Text string - Description of the patch recommendation.
- classification
Name string - Classification of the patch recommendation.
- has
Fix booleanFor Cve - If the patch has a fix for a CVE.
- patch
Name string - Name of the patch recommendation.
- time
Evaluated string - Evaluation date for the patch recommendation.
- time
Released 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.
- abstract
Text String - Description of the patch recommendation.
- classification
Name String - Classification of the patch recommendation.
- has
Fix BooleanFor Cve - If the patch has a fix for a CVE.
- patch
Name String - Name of the patch recommendation.
- time
Evaluated String - Evaluation date for the patch recommendation.
- time
Released String - Release date for the patch.
GetVulnerabilityResourcesVulnerabilityResourceCollectionItemPatchRecommendationsSummary
- Patch
Available int - Total int
- Up
To intDate
- Patch
Available int - Total int
- Up
To intDate
- patch
Available Integer - total Integer
- up
To IntegerDate
- patch
Available number - total number
- up
To numberDate
- patch_
available int - total int
- up_
to_ intdate
- patch
Available Number - total Number
- up
To NumberDate
GetVulnerabilityResourcesVulnerabilityResourceCollectionItemVulnerabilitiesSummary
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.