oci.Dblm.VulnerabilityScan
Explore with Pulumi AI
This resource provides the Vulnerability Scan resource in Oracle Cloud Infrastructure Dblm service.
Creates a VulnerabilityScan.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testVulnerabilityScan = new oci.dblm.VulnerabilityScan("test_vulnerability_scan", {
compartmentId: compartmentId,
vulnerabilityScanType: vulnerabilityScanVulnerabilityScanType,
});
import pulumi
import pulumi_oci as oci
test_vulnerability_scan = oci.dblm.VulnerabilityScan("test_vulnerability_scan",
compartment_id=compartment_id,
vulnerability_scan_type=vulnerability_scan_vulnerability_scan_type)
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.NewVulnerabilityScan(ctx, "test_vulnerability_scan", &dblm.VulnerabilityScanArgs{
CompartmentId: pulumi.Any(compartmentId),
VulnerabilityScanType: pulumi.Any(vulnerabilityScanVulnerabilityScanType),
})
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 testVulnerabilityScan = new Oci.Dblm.VulnerabilityScan("test_vulnerability_scan", new()
{
CompartmentId = compartmentId,
VulnerabilityScanType = vulnerabilityScanVulnerabilityScanType,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.Dblm.VulnerabilityScan;
import com.pulumi.oci.Dblm.VulnerabilityScanArgs;
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) {
var testVulnerabilityScan = new VulnerabilityScan("testVulnerabilityScan", VulnerabilityScanArgs.builder()
.compartmentId(compartmentId)
.vulnerabilityScanType(vulnerabilityScanVulnerabilityScanType)
.build());
}
}
resources:
testVulnerabilityScan:
type: oci:Dblm:VulnerabilityScan
name: test_vulnerability_scan
properties:
compartmentId: ${compartmentId}
vulnerabilityScanType: ${vulnerabilityScanVulnerabilityScanType}
Create VulnerabilityScan Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new VulnerabilityScan(name: string, args: VulnerabilityScanArgs, opts?: CustomResourceOptions);
@overload
def VulnerabilityScan(resource_name: str,
args: VulnerabilityScanArgs,
opts: Optional[ResourceOptions] = None)
@overload
def VulnerabilityScan(resource_name: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
vulnerability_scan_type: Optional[str] = None)
func NewVulnerabilityScan(ctx *Context, name string, args VulnerabilityScanArgs, opts ...ResourceOption) (*VulnerabilityScan, error)
public VulnerabilityScan(string name, VulnerabilityScanArgs args, CustomResourceOptions? opts = null)
public VulnerabilityScan(String name, VulnerabilityScanArgs args)
public VulnerabilityScan(String name, VulnerabilityScanArgs args, CustomResourceOptions options)
type: oci:Dblm:VulnerabilityScan
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args VulnerabilityScanArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- resource_name str
- The unique name of the resource.
- args VulnerabilityScanArgs
- The arguments to resource properties.
- opts ResourceOptions
- Bag of options to control resource's behavior.
- ctx Context
- Context object for the current deployment.
- name string
- The unique name of the resource.
- args VulnerabilityScanArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VulnerabilityScanArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VulnerabilityScanArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var vulnerabilityScanResource = new Oci.Dblm.VulnerabilityScan("vulnerabilityScanResource", new()
{
CompartmentId = "string",
VulnerabilityScanType = "string",
});
example, err := Dblm.NewVulnerabilityScan(ctx, "vulnerabilityScanResource", &Dblm.VulnerabilityScanArgs{
CompartmentId: pulumi.String("string"),
VulnerabilityScanType: pulumi.String("string"),
})
var vulnerabilityScanResource = new VulnerabilityScan("vulnerabilityScanResource", VulnerabilityScanArgs.builder()
.compartmentId("string")
.vulnerabilityScanType("string")
.build());
vulnerability_scan_resource = oci.dblm.VulnerabilityScan("vulnerabilityScanResource",
compartment_id="string",
vulnerability_scan_type="string")
const vulnerabilityScanResource = new oci.dblm.VulnerabilityScan("vulnerabilityScanResource", {
compartmentId: "string",
vulnerabilityScanType: "string",
});
type: oci:Dblm:VulnerabilityScan
properties:
compartmentId: string
vulnerabilityScanType: string
VulnerabilityScan Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.
The VulnerabilityScan resource accepts the following input properties:
- Compartment
Id string - Compartment Identifier
- Vulnerability
Scan stringType Vulnerability Scan type is CVE, PATCH or IMAGE_PATCH
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Compartment
Id string - Compartment Identifier
- Vulnerability
Scan stringType Vulnerability Scan type is CVE, PATCH or IMAGE_PATCH
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id String - Compartment Identifier
- vulnerability
Scan StringType Vulnerability Scan type is CVE, PATCH or IMAGE_PATCH
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id string - Compartment Identifier
- vulnerability
Scan stringType Vulnerability Scan type is CVE, PATCH or IMAGE_PATCH
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment_
id str - Compartment Identifier
- vulnerability_
scan_ strtype Vulnerability Scan type is CVE, PATCH or IMAGE_PATCH
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id String - Compartment Identifier
- vulnerability
Scan StringType Vulnerability Scan type is CVE, PATCH or IMAGE_PATCH
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Outputs
All input properties are implicitly available as output properties. Additionally, the VulnerabilityScan resource produces the following output properties:
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - A user-friendly name. It does not have to be unique, and it is changeable.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of the VulnerabilityScan.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the VulnerabilityScan was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Time
Ended string - The date and time the VulnerabilityScan was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Vulnerability
Scan stringMessage - The message of the vulnerability scan status.
- Vulnerability
Scan stringStatus - The status of the vulnerability scan.
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - A user-friendly name. It does not have to be unique, and it is changeable.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The current state of the VulnerabilityScan.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the VulnerabilityScan was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Time
Ended string - The date and time the VulnerabilityScan was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Vulnerability
Scan stringMessage - The message of the vulnerability scan status.
- Vulnerability
Scan stringStatus - The status of the vulnerability scan.
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - A user-friendly name. It does not have to be unique, and it is changeable.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of the VulnerabilityScan.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the VulnerabilityScan was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- time
Ended String - The date and time the VulnerabilityScan was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- vulnerability
Scan StringMessage - The message of the vulnerability scan status.
- vulnerability
Scan StringStatus - The status of the vulnerability scan.
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name string - A user-friendly name. It does not have to be unique, and it is changeable.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- The current state of the VulnerabilityScan.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The date and time the VulnerabilityScan was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- time
Ended string - The date and time the VulnerabilityScan was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- vulnerability
Scan stringMessage - The message of the vulnerability scan status.
- vulnerability
Scan stringStatus - The status of the vulnerability scan.
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display_
name str - A user-friendly name. It does not have to be unique, and it is changeable.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id str
- The provider-assigned unique ID for this managed resource.
- state str
- The current state of the VulnerabilityScan.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The date and time the VulnerabilityScan was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- time_
ended str - The date and time the VulnerabilityScan was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- vulnerability_
scan_ strmessage - The message of the vulnerability scan status.
- vulnerability_
scan_ strstatus - The status of the vulnerability scan.
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - A user-friendly name. It does not have to be unique, and it is changeable.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The current state of the VulnerabilityScan.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the VulnerabilityScan was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- time
Ended String - The date and time the VulnerabilityScan was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- vulnerability
Scan StringMessage - The message of the vulnerability scan status.
- vulnerability
Scan StringStatus - The status of the vulnerability scan.
Look up Existing VulnerabilityScan Resource
Get an existing VulnerabilityScan resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.
public static get(name: string, id: Input<ID>, state?: VulnerabilityScanState, opts?: CustomResourceOptions): VulnerabilityScan
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
compartment_id: Optional[str] = None,
defined_tags: Optional[Mapping[str, str]] = None,
display_name: Optional[str] = None,
freeform_tags: Optional[Mapping[str, str]] = None,
state: Optional[str] = None,
system_tags: Optional[Mapping[str, str]] = None,
time_created: Optional[str] = None,
time_ended: Optional[str] = None,
vulnerability_scan_message: Optional[str] = None,
vulnerability_scan_status: Optional[str] = None,
vulnerability_scan_type: Optional[str] = None) -> VulnerabilityScan
func GetVulnerabilityScan(ctx *Context, name string, id IDInput, state *VulnerabilityScanState, opts ...ResourceOption) (*VulnerabilityScan, error)
public static VulnerabilityScan Get(string name, Input<string> id, VulnerabilityScanState? state, CustomResourceOptions? opts = null)
public static VulnerabilityScan get(String name, Output<String> id, VulnerabilityScanState state, CustomResourceOptions options)
resources: _: type: oci:Dblm:VulnerabilityScan get: id: ${id}
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- resource_name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- name
- The unique name of the resulting resource.
- id
- The unique provider ID of the resource to lookup.
- state
- Any extra arguments used during the lookup.
- opts
- A bag of options that control this resource's behavior.
- Compartment
Id string - Compartment Identifier
- Dictionary<string, string>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - A user-friendly name. It does not have to be unique, and it is changeable.
- Dictionary<string, string>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- State string
- The current state of the VulnerabilityScan.
- Dictionary<string, string>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the VulnerabilityScan was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Time
Ended string - The date and time the VulnerabilityScan was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Vulnerability
Scan stringMessage - The message of the vulnerability scan status.
- Vulnerability
Scan stringStatus - The status of the vulnerability scan.
- Vulnerability
Scan stringType Vulnerability Scan type is CVE, PATCH or IMAGE_PATCH
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- Compartment
Id string - Compartment Identifier
- map[string]string
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- Display
Name string - A user-friendly name. It does not have to be unique, and it is changeable.
- map[string]string
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- State string
- The current state of the VulnerabilityScan.
- map[string]string
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- Time
Created string - The date and time the VulnerabilityScan was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Time
Ended string - The date and time the VulnerabilityScan was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- Vulnerability
Scan stringMessage - The message of the vulnerability scan status.
- Vulnerability
Scan stringStatus - The status of the vulnerability scan.
- Vulnerability
Scan stringType Vulnerability Scan type is CVE, PATCH or IMAGE_PATCH
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id String - Compartment Identifier
- Map<String,String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - A user-friendly name. It does not have to be unique, and it is changeable.
- Map<String,String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- state String
- The current state of the VulnerabilityScan.
- Map<String,String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the VulnerabilityScan was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- time
Ended String - The date and time the VulnerabilityScan was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- vulnerability
Scan StringMessage - The message of the vulnerability scan status.
- vulnerability
Scan StringStatus - The status of the vulnerability scan.
- vulnerability
Scan StringType Vulnerability Scan type is CVE, PATCH or IMAGE_PATCH
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id string - Compartment Identifier
- {[key: string]: string}
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name string - A user-friendly name. It does not have to be unique, and it is changeable.
- {[key: string]: string}
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- state string
- The current state of the VulnerabilityScan.
- {[key: string]: string}
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created string - The date and time the VulnerabilityScan was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- time
Ended string - The date and time the VulnerabilityScan was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- vulnerability
Scan stringMessage - The message of the vulnerability scan status.
- vulnerability
Scan stringStatus - The status of the vulnerability scan.
- vulnerability
Scan stringType Vulnerability Scan type is CVE, PATCH or IMAGE_PATCH
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment_
id str - Compartment Identifier
- Mapping[str, str]
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display_
name str - A user-friendly name. It does not have to be unique, and it is changeable.
- Mapping[str, str]
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- state str
- The current state of the VulnerabilityScan.
- Mapping[str, str]
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time_
created str - The date and time the VulnerabilityScan was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- time_
ended str - The date and time the VulnerabilityScan was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- vulnerability_
scan_ strmessage - The message of the vulnerability scan status.
- vulnerability_
scan_ strstatus - The status of the vulnerability scan.
- vulnerability_
scan_ strtype Vulnerability Scan type is CVE, PATCH or IMAGE_PATCH
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
- compartment
Id String - Compartment Identifier
- Map<String>
- Defined tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"foo-namespace.bar-key": "value"}
- display
Name String - A user-friendly name. It does not have to be unique, and it is changeable.
- Map<String>
- Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example:
{"bar-key": "value"}
- state String
- The current state of the VulnerabilityScan.
- Map<String>
- System tags for this resource. Each key is predefined and scoped to a namespace. Example:
{"orcl-cloud.free-tier-retained": "true"}
- time
Created String - The date and time the VulnerabilityScan was created, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- time
Ended String - The date and time the VulnerabilityScan was updated, in the format defined by RFC 3339. Example:
2016-08-25T21:10:29.600Z
- vulnerability
Scan StringMessage - The message of the vulnerability scan status.
- vulnerability
Scan StringStatus - The status of the vulnerability scan.
- vulnerability
Scan StringType Vulnerability Scan type is CVE, PATCH or IMAGE_PATCH
** IMPORTANT ** Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
Import
VulnerabilityScans can be imported using the id
, e.g.
$ pulumi import oci:Dblm/vulnerabilityScan:VulnerabilityScan test_vulnerability_scan "id"
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
oci
Terraform Provider.