oci.Adm.getVulnerabilityAuditApplicationDependencyVulnerability
This data source provides details about a specific Vulnerability Audit Application Dependency Vulnerability resource in Oracle Cloud Infrastructure ADM service.
Returns a list of Application Dependencies with their associated vulnerabilities.
Example Usage
using System.Collections.Generic;
using Pulumi;
using Oci = Pulumi.Oci;
return await Deployment.RunAsync(() =>
{
var testVulnerabilityAuditApplicationDependencyVulnerability = Oci.Adm.GetVulnerabilityAuditApplicationDependencyVulnerability.Invoke(new()
{
VulnerabilityAuditId = oci_adm_vulnerability_audit.Test_vulnerability_audit.Id,
CvssV2greaterThanOrEqual = @var.Vulnerability_audit_application_dependency_vulnerability_cvss_v2greater_than_or_equal,
CvssV3greaterThanOrEqual = @var.Vulnerability_audit_application_dependency_vulnerability_cvss_v3greater_than_or_equal,
Depth = @var.Vulnerability_audit_application_dependency_vulnerability_depth,
Gav = @var.Vulnerability_audit_application_dependency_vulnerability_gav,
RootNodeId = oci_adm_root_node.Test_root_node.Id,
VulnerabilityId = oci_adm_vulnerability.Test_vulnerability.Id,
});
});
package main
import (
"github.com/pulumi/pulumi-oci/sdk/go/oci/Adm"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := Adm.GetVulnerabilityAuditApplicationDependencyVulnerability(ctx, &adm.GetVulnerabilityAuditApplicationDependencyVulnerabilityArgs{
VulnerabilityAuditId: oci_adm_vulnerability_audit.Test_vulnerability_audit.Id,
CvssV2greaterThanOrEqual: pulumi.Float64Ref(_var.Vulnerability_audit_application_dependency_vulnerability_cvss_v2greater_than_or_equal),
CvssV3greaterThanOrEqual: pulumi.Float64Ref(_var.Vulnerability_audit_application_dependency_vulnerability_cvss_v3greater_than_or_equal),
Depth: pulumi.IntRef(_var.Vulnerability_audit_application_dependency_vulnerability_depth),
Gav: pulumi.StringRef(_var.Vulnerability_audit_application_dependency_vulnerability_gav),
RootNodeId: pulumi.StringRef(oci_adm_root_node.Test_root_node.Id),
VulnerabilityId: pulumi.StringRef(oci_adm_vulnerability.Test_vulnerability.Id),
}, nil)
if err != nil {
return err
}
return nil
})
}
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Adm.AdmFunctions;
import com.pulumi.oci.Adm.inputs.GetVulnerabilityAuditApplicationDependencyVulnerabilityArgs;
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 testVulnerabilityAuditApplicationDependencyVulnerability = AdmFunctions.getVulnerabilityAuditApplicationDependencyVulnerability(GetVulnerabilityAuditApplicationDependencyVulnerabilityArgs.builder()
.vulnerabilityAuditId(oci_adm_vulnerability_audit.test_vulnerability_audit().id())
.cvssV2greaterThanOrEqual(var_.vulnerability_audit_application_dependency_vulnerability_cvss_v2greater_than_or_equal())
.cvssV3greaterThanOrEqual(var_.vulnerability_audit_application_dependency_vulnerability_cvss_v3greater_than_or_equal())
.depth(var_.vulnerability_audit_application_dependency_vulnerability_depth())
.gav(var_.vulnerability_audit_application_dependency_vulnerability_gav())
.rootNodeId(oci_adm_root_node.test_root_node().id())
.vulnerabilityId(oci_adm_vulnerability.test_vulnerability().id())
.build());
}
}
import pulumi
import pulumi_oci as oci
test_vulnerability_audit_application_dependency_vulnerability = oci.Adm.get_vulnerability_audit_application_dependency_vulnerability(vulnerability_audit_id=oci_adm_vulnerability_audit["test_vulnerability_audit"]["id"],
cvss_v2greater_than_or_equal=var["vulnerability_audit_application_dependency_vulnerability_cvss_v2greater_than_or_equal"],
cvss_v3greater_than_or_equal=var["vulnerability_audit_application_dependency_vulnerability_cvss_v3greater_than_or_equal"],
depth=var["vulnerability_audit_application_dependency_vulnerability_depth"],
gav=var["vulnerability_audit_application_dependency_vulnerability_gav"],
root_node_id=oci_adm_root_node["test_root_node"]["id"],
vulnerability_id=oci_adm_vulnerability["test_vulnerability"]["id"])
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testVulnerabilityAuditApplicationDependencyVulnerability = oci.Adm.getVulnerabilityAuditApplicationDependencyVulnerability({
vulnerabilityAuditId: oci_adm_vulnerability_audit.test_vulnerability_audit.id,
cvssV2greaterThanOrEqual: _var.vulnerability_audit_application_dependency_vulnerability_cvss_v2greater_than_or_equal,
cvssV3greaterThanOrEqual: _var.vulnerability_audit_application_dependency_vulnerability_cvss_v3greater_than_or_equal,
depth: _var.vulnerability_audit_application_dependency_vulnerability_depth,
gav: _var.vulnerability_audit_application_dependency_vulnerability_gav,
rootNodeId: oci_adm_root_node.test_root_node.id,
vulnerabilityId: oci_adm_vulnerability.test_vulnerability.id,
});
variables:
testVulnerabilityAuditApplicationDependencyVulnerability:
fn::invoke:
Function: oci:Adm:getVulnerabilityAuditApplicationDependencyVulnerability
Arguments:
vulnerabilityAuditId: ${oci_adm_vulnerability_audit.test_vulnerability_audit.id}
cvssV2greaterThanOrEqual: ${var.vulnerability_audit_application_dependency_vulnerability_cvss_v2greater_than_or_equal}
cvssV3greaterThanOrEqual: ${var.vulnerability_audit_application_dependency_vulnerability_cvss_v3greater_than_or_equal}
depth: ${var.vulnerability_audit_application_dependency_vulnerability_depth}
gav: ${var.vulnerability_audit_application_dependency_vulnerability_gav}
rootNodeId: ${oci_adm_root_node.test_root_node.id}
vulnerabilityId: ${oci_adm_vulnerability.test_vulnerability.id}
Using getVulnerabilityAuditApplicationDependencyVulnerability
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 getVulnerabilityAuditApplicationDependencyVulnerability(args: GetVulnerabilityAuditApplicationDependencyVulnerabilityArgs, opts?: InvokeOptions): Promise<GetVulnerabilityAuditApplicationDependencyVulnerabilityResult>
function getVulnerabilityAuditApplicationDependencyVulnerabilityOutput(args: GetVulnerabilityAuditApplicationDependencyVulnerabilityOutputArgs, opts?: InvokeOptions): Output<GetVulnerabilityAuditApplicationDependencyVulnerabilityResult>
def get_vulnerability_audit_application_dependency_vulnerability(cvss_v2greater_than_or_equal: Optional[float] = None,
cvss_v3greater_than_or_equal: Optional[float] = None,
depth: Optional[int] = None,
gav: Optional[str] = None,
root_node_id: Optional[str] = None,
sort_by: Optional[str] = None,
vulnerability_audit_id: Optional[str] = None,
vulnerability_id: Optional[str] = None,
opts: Optional[InvokeOptions] = None) -> GetVulnerabilityAuditApplicationDependencyVulnerabilityResult
def get_vulnerability_audit_application_dependency_vulnerability_output(cvss_v2greater_than_or_equal: Optional[pulumi.Input[float]] = None,
cvss_v3greater_than_or_equal: Optional[pulumi.Input[float]] = None,
depth: Optional[pulumi.Input[int]] = None,
gav: Optional[pulumi.Input[str]] = None,
root_node_id: Optional[pulumi.Input[str]] = None,
sort_by: Optional[pulumi.Input[str]] = None,
vulnerability_audit_id: Optional[pulumi.Input[str]] = None,
vulnerability_id: Optional[pulumi.Input[str]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetVulnerabilityAuditApplicationDependencyVulnerabilityResult]
func GetVulnerabilityAuditApplicationDependencyVulnerability(ctx *Context, args *GetVulnerabilityAuditApplicationDependencyVulnerabilityArgs, opts ...InvokeOption) (*GetVulnerabilityAuditApplicationDependencyVulnerabilityResult, error)
func GetVulnerabilityAuditApplicationDependencyVulnerabilityOutput(ctx *Context, args *GetVulnerabilityAuditApplicationDependencyVulnerabilityOutputArgs, opts ...InvokeOption) GetVulnerabilityAuditApplicationDependencyVulnerabilityResultOutput
> Note: This function is named GetVulnerabilityAuditApplicationDependencyVulnerability
in the Go SDK.
public static class GetVulnerabilityAuditApplicationDependencyVulnerability
{
public static Task<GetVulnerabilityAuditApplicationDependencyVulnerabilityResult> InvokeAsync(GetVulnerabilityAuditApplicationDependencyVulnerabilityArgs args, InvokeOptions? opts = null)
public static Output<GetVulnerabilityAuditApplicationDependencyVulnerabilityResult> Invoke(GetVulnerabilityAuditApplicationDependencyVulnerabilityInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetVulnerabilityAuditApplicationDependencyVulnerabilityResult> getVulnerabilityAuditApplicationDependencyVulnerability(GetVulnerabilityAuditApplicationDependencyVulnerabilityArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: oci:Adm/getVulnerabilityAuditApplicationDependencyVulnerability:getVulnerabilityAuditApplicationDependencyVulnerability
arguments:
# arguments dictionary
The following arguments are supported:
- Vulnerability
Audit stringId Unique Vulnerability Audit identifier path parameter.
- Cvss
V2greater doubleThan Or Equal A filter that returns only Vulnerability Audits that have a Common Vulnerability Scoring System Version 2 (CVSS V2) greater or equal than the specified value.
- Cvss
V3greater doubleThan Or Equal A filter that returns only Vulnerability Audits that have a Common Vulnerability Scoring System Version 3 (CVSS V3) greater or equal than the specified value.
- Depth int
A filter to limit depth of the application dependencies tree traversal. Additionally query parameters such as "cvssV2GreaterThanOrEqual", "cvssV3GreaterThanOrEqual", "gav" and "vulnerabilityId" can't be used in conjunction with this latter.
- Gav string
A filter to return only resources that match the entire GAV (Group Artifact Version) identifier given.
- Root
Node stringId A filter to override the top level root identifier with the new given value. The application dependency tree will only be traversed from the given node. Query parameters "cvssV2GreaterThanOrEqual", "cvssV3GreaterThanOrEqual", "gav" and "vulnerabilityId" cannot be used in conjunction with this parameter.
- Sort
By string - Vulnerability
Id string A filter to return only Vulnerability Audits that match the specified id.
- Vulnerability
Audit stringId Unique Vulnerability Audit identifier path parameter.
- Cvss
V2greater float64Than Or Equal A filter that returns only Vulnerability Audits that have a Common Vulnerability Scoring System Version 2 (CVSS V2) greater or equal than the specified value.
- Cvss
V3greater float64Than Or Equal A filter that returns only Vulnerability Audits that have a Common Vulnerability Scoring System Version 3 (CVSS V3) greater or equal than the specified value.
- Depth int
A filter to limit depth of the application dependencies tree traversal. Additionally query parameters such as "cvssV2GreaterThanOrEqual", "cvssV3GreaterThanOrEqual", "gav" and "vulnerabilityId" can't be used in conjunction with this latter.
- Gav string
A filter to return only resources that match the entire GAV (Group Artifact Version) identifier given.
- Root
Node stringId A filter to override the top level root identifier with the new given value. The application dependency tree will only be traversed from the given node. Query parameters "cvssV2GreaterThanOrEqual", "cvssV3GreaterThanOrEqual", "gav" and "vulnerabilityId" cannot be used in conjunction with this parameter.
- Sort
By string - Vulnerability
Id string A filter to return only Vulnerability Audits that match the specified id.
- vulnerability
Audit StringId Unique Vulnerability Audit identifier path parameter.
- cvss
V2greater DoubleThan Or Equal A filter that returns only Vulnerability Audits that have a Common Vulnerability Scoring System Version 2 (CVSS V2) greater or equal than the specified value.
- cvss
V3greater DoubleThan Or Equal A filter that returns only Vulnerability Audits that have a Common Vulnerability Scoring System Version 3 (CVSS V3) greater or equal than the specified value.
- depth Integer
A filter to limit depth of the application dependencies tree traversal. Additionally query parameters such as "cvssV2GreaterThanOrEqual", "cvssV3GreaterThanOrEqual", "gav" and "vulnerabilityId" can't be used in conjunction with this latter.
- gav String
A filter to return only resources that match the entire GAV (Group Artifact Version) identifier given.
- root
Node StringId A filter to override the top level root identifier with the new given value. The application dependency tree will only be traversed from the given node. Query parameters "cvssV2GreaterThanOrEqual", "cvssV3GreaterThanOrEqual", "gav" and "vulnerabilityId" cannot be used in conjunction with this parameter.
- sort
By String - vulnerability
Id String A filter to return only Vulnerability Audits that match the specified id.
- vulnerability
Audit stringId Unique Vulnerability Audit identifier path parameter.
- cvss
V2greater numberThan Or Equal A filter that returns only Vulnerability Audits that have a Common Vulnerability Scoring System Version 2 (CVSS V2) greater or equal than the specified value.
- cvss
V3greater numberThan Or Equal A filter that returns only Vulnerability Audits that have a Common Vulnerability Scoring System Version 3 (CVSS V3) greater or equal than the specified value.
- depth number
A filter to limit depth of the application dependencies tree traversal. Additionally query parameters such as "cvssV2GreaterThanOrEqual", "cvssV3GreaterThanOrEqual", "gav" and "vulnerabilityId" can't be used in conjunction with this latter.
- gav string
A filter to return only resources that match the entire GAV (Group Artifact Version) identifier given.
- root
Node stringId A filter to override the top level root identifier with the new given value. The application dependency tree will only be traversed from the given node. Query parameters "cvssV2GreaterThanOrEqual", "cvssV3GreaterThanOrEqual", "gav" and "vulnerabilityId" cannot be used in conjunction with this parameter.
- sort
By string - vulnerability
Id string A filter to return only Vulnerability Audits that match the specified id.
- vulnerability_
audit_ strid Unique Vulnerability Audit identifier path parameter.
- cvss_
v2greater_ floatthan_ or_ equal A filter that returns only Vulnerability Audits that have a Common Vulnerability Scoring System Version 2 (CVSS V2) greater or equal than the specified value.
- cvss_
v3greater_ floatthan_ or_ equal A filter that returns only Vulnerability Audits that have a Common Vulnerability Scoring System Version 3 (CVSS V3) greater or equal than the specified value.
- depth int
A filter to limit depth of the application dependencies tree traversal. Additionally query parameters such as "cvssV2GreaterThanOrEqual", "cvssV3GreaterThanOrEqual", "gav" and "vulnerabilityId" can't be used in conjunction with this latter.
- gav str
A filter to return only resources that match the entire GAV (Group Artifact Version) identifier given.
- root_
node_ strid A filter to override the top level root identifier with the new given value. The application dependency tree will only be traversed from the given node. Query parameters "cvssV2GreaterThanOrEqual", "cvssV3GreaterThanOrEqual", "gav" and "vulnerabilityId" cannot be used in conjunction with this parameter.
- sort_
by str - vulnerability_
id str A filter to return only Vulnerability Audits that match the specified id.
- vulnerability
Audit StringId Unique Vulnerability Audit identifier path parameter.
- cvss
V2greater NumberThan Or Equal A filter that returns only Vulnerability Audits that have a Common Vulnerability Scoring System Version 2 (CVSS V2) greater or equal than the specified value.
- cvss
V3greater NumberThan Or Equal A filter that returns only Vulnerability Audits that have a Common Vulnerability Scoring System Version 3 (CVSS V3) greater or equal than the specified value.
- depth Number
A filter to limit depth of the application dependencies tree traversal. Additionally query parameters such as "cvssV2GreaterThanOrEqual", "cvssV3GreaterThanOrEqual", "gav" and "vulnerabilityId" can't be used in conjunction with this latter.
- gav String
A filter to return only resources that match the entire GAV (Group Artifact Version) identifier given.
- root
Node StringId A filter to override the top level root identifier with the new given value. The application dependency tree will only be traversed from the given node. Query parameters "cvssV2GreaterThanOrEqual", "cvssV3GreaterThanOrEqual", "gav" and "vulnerabilityId" cannot be used in conjunction with this parameter.
- sort
By String - vulnerability
Id String A filter to return only Vulnerability Audits that match the specified id.
getVulnerabilityAuditApplicationDependencyVulnerability Result
The following output properties are available:
- Id string
The provider-assigned unique ID for this managed resource.
- Items
List<Get
Vulnerability Audit Application Dependency Vulnerability Item> List of Vulnerability Audit summaries.
- Vulnerability
Audit stringId - Cvss
V2greater doubleThan Or Equal - Cvss
V3greater doubleThan Or Equal - Depth int
- Gav string
Group Artifact Version (GAV) identifier (Group:Artifact:Version), for example org.graalvm.nativeimage:svm:21.1.0.
- Root
Node stringId - Sort
By string - Vulnerability
Id string
- Id string
The provider-assigned unique ID for this managed resource.
- Items
[]Get
Vulnerability Audit Application Dependency Vulnerability Item List of Vulnerability Audit summaries.
- Vulnerability
Audit stringId - Cvss
V2greater float64Than Or Equal - Cvss
V3greater float64Than Or Equal - Depth int
- Gav string
Group Artifact Version (GAV) identifier (Group:Artifact:Version), for example org.graalvm.nativeimage:svm:21.1.0.
- Root
Node stringId - Sort
By string - Vulnerability
Id string
- id String
The provider-assigned unique ID for this managed resource.
- items
List<Get
Vulnerability Audit Application Dependency Vulnerability Item> List of Vulnerability Audit summaries.
- vulnerability
Audit StringId - cvss
V2greater DoubleThan Or Equal - cvss
V3greater DoubleThan Or Equal - depth Integer
- gav String
Group Artifact Version (GAV) identifier (Group:Artifact:Version), for example org.graalvm.nativeimage:svm:21.1.0.
- root
Node StringId - sort
By String - vulnerability
Id String
- id string
The provider-assigned unique ID for this managed resource.
- items
Get
Vulnerability Audit Application Dependency Vulnerability Item[] List of Vulnerability Audit summaries.
- vulnerability
Audit stringId - cvss
V2greater numberThan Or Equal - cvss
V3greater numberThan Or Equal - depth number
- gav string
Group Artifact Version (GAV) identifier (Group:Artifact:Version), for example org.graalvm.nativeimage:svm:21.1.0.
- root
Node stringId - sort
By string - vulnerability
Id string
- id str
The provider-assigned unique ID for this managed resource.
- items
Get
Vulnerability Audit Application Dependency Vulnerability Item] List of Vulnerability Audit summaries.
- vulnerability_
audit_ strid - cvss_
v2greater_ floatthan_ or_ equal - cvss_
v3greater_ floatthan_ or_ equal - depth int
- gav str
Group Artifact Version (GAV) identifier (Group:Artifact:Version), for example org.graalvm.nativeimage:svm:21.1.0.
- root_
node_ strid - sort_
by str - vulnerability_
id str
- id String
The provider-assigned unique ID for this managed resource.
- items List<Property Map>
List of Vulnerability Audit summaries.
- vulnerability
Audit StringId - cvss
V2greater NumberThan Or Equal - cvss
V3greater NumberThan Or Equal - depth Number
- gav String
Group Artifact Version (GAV) identifier (Group:Artifact:Version), for example org.graalvm.nativeimage:svm:21.1.0.
- root
Node StringId - sort
By String - vulnerability
Id String
Supporting Types
GetVulnerabilityAuditApplicationDependencyVulnerabilityItem
- Application
Dependency List<string>Node Ids List of Application Dependencies on which this Application Dependency depends, each identified by its nodeId.
- Gav string
A filter to return only resources that match the entire GAV (Group Artifact Version) identifier given.
- Is
Found boolIn Knowledge Base Indicates if the artifact is found in the knowledge base.
- Node
Id string Unique identifier of an Application Dependency, for example nodeId1.
- Vulnerabilities
List<Get
Vulnerability Audit Application Dependency Vulnerability Item Vulnerability> List of vulnerabilities for the Application Dependency.
- Application
Dependency []stringNode Ids List of Application Dependencies on which this Application Dependency depends, each identified by its nodeId.
- Gav string
A filter to return only resources that match the entire GAV (Group Artifact Version) identifier given.
- Is
Found boolIn Knowledge Base Indicates if the artifact is found in the knowledge base.
- Node
Id string Unique identifier of an Application Dependency, for example nodeId1.
- Vulnerabilities
[]Get
Vulnerability Audit Application Dependency Vulnerability Item Vulnerability List of vulnerabilities for the Application Dependency.
- application
Dependency List<String>Node Ids List of Application Dependencies on which this Application Dependency depends, each identified by its nodeId.
- gav String
A filter to return only resources that match the entire GAV (Group Artifact Version) identifier given.
- is
Found BooleanIn Knowledge Base Indicates if the artifact is found in the knowledge base.
- node
Id String Unique identifier of an Application Dependency, for example nodeId1.
- vulnerabilities
List<Get
Vulnerability Audit Application Dependency Vulnerability Item Vulnerability> List of vulnerabilities for the Application Dependency.
- application
Dependency string[]Node Ids List of Application Dependencies on which this Application Dependency depends, each identified by its nodeId.
- gav string
A filter to return only resources that match the entire GAV (Group Artifact Version) identifier given.
- is
Found booleanIn Knowledge Base Indicates if the artifact is found in the knowledge base.
- node
Id string Unique identifier of an Application Dependency, for example nodeId1.
- vulnerabilities
Get
Vulnerability Audit Application Dependency Vulnerability Item Vulnerability[] List of vulnerabilities for the Application Dependency.
- application_
dependency_ Sequence[str]node_ ids List of Application Dependencies on which this Application Dependency depends, each identified by its nodeId.
- gav str
A filter to return only resources that match the entire GAV (Group Artifact Version) identifier given.
- is_
found_ boolin_ knowledge_ base Indicates if the artifact is found in the knowledge base.
- node_
id str Unique identifier of an Application Dependency, for example nodeId1.
- vulnerabilities
Get
Vulnerability Audit Application Dependency Vulnerability Item Vulnerability] List of vulnerabilities for the Application Dependency.
- application
Dependency List<String>Node Ids List of Application Dependencies on which this Application Dependency depends, each identified by its nodeId.
- gav String
A filter to return only resources that match the entire GAV (Group Artifact Version) identifier given.
- is
Found BooleanIn Knowledge Base Indicates if the artifact is found in the knowledge base.
- node
Id String Unique identifier of an Application Dependency, for example nodeId1.
- vulnerabilities List<Property Map>
List of vulnerabilities for the Application Dependency.
GetVulnerabilityAuditApplicationDependencyVulnerabilityItemVulnerability
- Cvss
V2score double Common Vulnerability Scoring System (CVSS) Version 2.
- Cvss
V3score double Common Vulnerability Scoring System (CVSS) Version 3.
- Id string
Unique vulnerability identifier, e.g. CVE-1999-0067.
- Is
Ignored bool Indicates if the vulnerability was ignored according to the audit configuration.
- Cvss
V2score float64 Common Vulnerability Scoring System (CVSS) Version 2.
- Cvss
V3score float64 Common Vulnerability Scoring System (CVSS) Version 3.
- Id string
Unique vulnerability identifier, e.g. CVE-1999-0067.
- Is
Ignored bool Indicates if the vulnerability was ignored according to the audit configuration.
- cvss
V2score Double Common Vulnerability Scoring System (CVSS) Version 2.
- cvss
V3score Double Common Vulnerability Scoring System (CVSS) Version 3.
- id String
Unique vulnerability identifier, e.g. CVE-1999-0067.
- is
Ignored Boolean Indicates if the vulnerability was ignored according to the audit configuration.
- cvss
V2score number Common Vulnerability Scoring System (CVSS) Version 2.
- cvss
V3score number Common Vulnerability Scoring System (CVSS) Version 3.
- id string
Unique vulnerability identifier, e.g. CVE-1999-0067.
- is
Ignored boolean Indicates if the vulnerability was ignored according to the audit configuration.
- cvss_
v2score float Common Vulnerability Scoring System (CVSS) Version 2.
- cvss_
v3score float Common Vulnerability Scoring System (CVSS) Version 3.
- id str
Unique vulnerability identifier, e.g. CVE-1999-0067.
- is_
ignored bool Indicates if the vulnerability was ignored according to the audit configuration.
- cvss
V2score Number Common Vulnerability Scoring System (CVSS) Version 2.
- cvss
V3score Number Common Vulnerability Scoring System (CVSS) Version 3.
- id String
Unique vulnerability identifier, e.g. CVE-1999-0067.
- is
Ignored Boolean Indicates if the vulnerability was ignored according to the audit configuration.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
oci
Terraform Provider.