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

oci.Dblm.getVulnerabilityScans

Explore with Pulumi AI

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

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

    Gets a list of VulnerabilityScans.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testVulnerabilityScans = oci.Dblm.getVulnerabilityScans({
        compartmentId: compartmentId,
        displayName: vulnerabilityScanDisplayName,
        timeCreatedGreaterThan: vulnerabilityScanTimeCreatedGreaterThan,
        timeEndedLessThan: vulnerabilityScanTimeEndedLessThan,
        vulnerabilityScanId: testVulnerabilityScan.id,
        vulnerabilityScanStatuses: vulnerabilityScanVulnerabilityScanStatus,
        vulnerabilityScanType: vulnerabilityScanVulnerabilityScanType,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_vulnerability_scans = oci.Dblm.get_vulnerability_scans(compartment_id=compartment_id,
        display_name=vulnerability_scan_display_name,
        time_created_greater_than=vulnerability_scan_time_created_greater_than,
        time_ended_less_than=vulnerability_scan_time_ended_less_than,
        vulnerability_scan_id=test_vulnerability_scan["id"],
        vulnerability_scan_statuses=vulnerability_scan_vulnerability_scan_status,
        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.GetVulnerabilityScans(ctx, &dblm.GetVulnerabilityScansArgs{
    			CompartmentId:             pulumi.StringRef(compartmentId),
    			DisplayName:               pulumi.StringRef(vulnerabilityScanDisplayName),
    			TimeCreatedGreaterThan:    pulumi.StringRef(vulnerabilityScanTimeCreatedGreaterThan),
    			TimeEndedLessThan:         pulumi.StringRef(vulnerabilityScanTimeEndedLessThan),
    			VulnerabilityScanId:       pulumi.StringRef(testVulnerabilityScan.Id),
    			VulnerabilityScanStatuses: vulnerabilityScanVulnerabilityScanStatus,
    			VulnerabilityScanType:     pulumi.StringRef(vulnerabilityScanVulnerabilityScanType),
    		}, 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 testVulnerabilityScans = Oci.Dblm.GetVulnerabilityScans.Invoke(new()
        {
            CompartmentId = compartmentId,
            DisplayName = vulnerabilityScanDisplayName,
            TimeCreatedGreaterThan = vulnerabilityScanTimeCreatedGreaterThan,
            TimeEndedLessThan = vulnerabilityScanTimeEndedLessThan,
            VulnerabilityScanId = testVulnerabilityScan.Id,
            VulnerabilityScanStatuses = vulnerabilityScanVulnerabilityScanStatus,
            VulnerabilityScanType = vulnerabilityScanVulnerabilityScanType,
        });
    
    });
    
    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.GetVulnerabilityScansArgs;
    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 testVulnerabilityScans = DblmFunctions.getVulnerabilityScans(GetVulnerabilityScansArgs.builder()
                .compartmentId(compartmentId)
                .displayName(vulnerabilityScanDisplayName)
                .timeCreatedGreaterThan(vulnerabilityScanTimeCreatedGreaterThan)
                .timeEndedLessThan(vulnerabilityScanTimeEndedLessThan)
                .vulnerabilityScanId(testVulnerabilityScan.id())
                .vulnerabilityScanStatuses(vulnerabilityScanVulnerabilityScanStatus)
                .vulnerabilityScanType(vulnerabilityScanVulnerabilityScanType)
                .build());
    
        }
    }
    
    variables:
      testVulnerabilityScans:
        fn::invoke:
          function: oci:Dblm:getVulnerabilityScans
          arguments:
            compartmentId: ${compartmentId}
            displayName: ${vulnerabilityScanDisplayName}
            timeCreatedGreaterThan: ${vulnerabilityScanTimeCreatedGreaterThan}
            timeEndedLessThan: ${vulnerabilityScanTimeEndedLessThan}
            vulnerabilityScanId: ${testVulnerabilityScan.id}
            vulnerabilityScanStatuses: ${vulnerabilityScanVulnerabilityScanStatus}
            vulnerabilityScanType: ${vulnerabilityScanVulnerabilityScanType}
    

    Using getVulnerabilityScans

    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 getVulnerabilityScans(args: GetVulnerabilityScansArgs, opts?: InvokeOptions): Promise<GetVulnerabilityScansResult>
    function getVulnerabilityScansOutput(args: GetVulnerabilityScansOutputArgs, opts?: InvokeOptions): Output<GetVulnerabilityScansResult>
    def get_vulnerability_scans(compartment_id: Optional[str] = None,
                                display_name: Optional[str] = None,
                                filters: Optional[Sequence[_dblm.GetVulnerabilityScansFilter]] = None,
                                time_created_greater_than: Optional[str] = None,
                                time_ended_less_than: Optional[str] = None,
                                vulnerability_scan_id: Optional[str] = None,
                                vulnerability_scan_statuses: Optional[Sequence[str]] = None,
                                vulnerability_scan_type: Optional[str] = None,
                                opts: Optional[InvokeOptions] = None) -> GetVulnerabilityScansResult
    def get_vulnerability_scans_output(compartment_id: Optional[pulumi.Input[str]] = None,
                                display_name: Optional[pulumi.Input[str]] = None,
                                filters: Optional[pulumi.Input[Sequence[pulumi.Input[_dblm.GetVulnerabilityScansFilterArgs]]]] = None,
                                time_created_greater_than: Optional[pulumi.Input[str]] = None,
                                time_ended_less_than: Optional[pulumi.Input[str]] = None,
                                vulnerability_scan_id: Optional[pulumi.Input[str]] = None,
                                vulnerability_scan_statuses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                                vulnerability_scan_type: Optional[pulumi.Input[str]] = None,
                                opts: Optional[InvokeOptions] = None) -> Output[GetVulnerabilityScansResult]
    func GetVulnerabilityScans(ctx *Context, args *GetVulnerabilityScansArgs, opts ...InvokeOption) (*GetVulnerabilityScansResult, error)
    func GetVulnerabilityScansOutput(ctx *Context, args *GetVulnerabilityScansOutputArgs, opts ...InvokeOption) GetVulnerabilityScansResultOutput

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

    public static class GetVulnerabilityScans 
    {
        public static Task<GetVulnerabilityScansResult> InvokeAsync(GetVulnerabilityScansArgs args, InvokeOptions? opts = null)
        public static Output<GetVulnerabilityScansResult> Invoke(GetVulnerabilityScansInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetVulnerabilityScansResult> getVulnerabilityScans(GetVulnerabilityScansArgs args, InvokeOptions options)
    public static Output<GetVulnerabilityScansResult> getVulnerabilityScans(GetVulnerabilityScansArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:Dblm/getVulnerabilityScans:getVulnerabilityScans
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The ID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters List<GetVulnerabilityScansFilter>
    TimeCreatedGreaterThan string
    The created greater than.
    TimeEndedLessThan string
    The time ended less than.
    VulnerabilityScanId string
    The ID of the vulnerability scan.
    VulnerabilityScanStatuses List<string>
    Filter by one or more vulnerability scan status. Possible values are completed, running, completed with error, aborted.
    VulnerabilityScanType string
    The scan type to use is 'CVE', 'PATCH' or 'IMAGE_PATCH'.
    CompartmentId string
    The ID of the compartment in which to list resources.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters []GetVulnerabilityScansFilter
    TimeCreatedGreaterThan string
    The created greater than.
    TimeEndedLessThan string
    The time ended less than.
    VulnerabilityScanId string
    The ID of the vulnerability scan.
    VulnerabilityScanStatuses []string
    Filter by one or more vulnerability scan status. Possible values are completed, running, completed with error, aborted.
    VulnerabilityScanType string
    The scan type to use is 'CVE', 'PATCH' or 'IMAGE_PATCH'.
    compartmentId String
    The ID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<GetVulnerabilityScansFilter>
    timeCreatedGreaterThan String
    The created greater than.
    timeEndedLessThan String
    The time ended less than.
    vulnerabilityScanId String
    The ID of the vulnerability scan.
    vulnerabilityScanStatuses List<String>
    Filter by one or more vulnerability scan status. Possible values are completed, running, completed with error, aborted.
    vulnerabilityScanType String
    The scan type to use is 'CVE', 'PATCH' or 'IMAGE_PATCH'.
    compartmentId string
    The ID of the compartment in which to list resources.
    displayName string
    A filter to return only resources that match the entire display name given.
    filters GetVulnerabilityScansFilter[]
    timeCreatedGreaterThan string
    The created greater than.
    timeEndedLessThan string
    The time ended less than.
    vulnerabilityScanId string
    The ID of the vulnerability scan.
    vulnerabilityScanStatuses string[]
    Filter by one or more vulnerability scan status. Possible values are completed, running, completed with error, aborted.
    vulnerabilityScanType string
    The scan type to use is 'CVE', 'PATCH' or 'IMAGE_PATCH'.
    compartment_id str
    The ID of the compartment in which to list resources.
    display_name str
    A filter to return only resources that match the entire display name given.
    filters Sequence[dblm.GetVulnerabilityScansFilter]
    time_created_greater_than str
    The created greater than.
    time_ended_less_than str
    The time ended less than.
    vulnerability_scan_id str
    The ID of the vulnerability scan.
    vulnerability_scan_statuses Sequence[str]
    Filter by one or more vulnerability scan status. Possible values are completed, running, completed with error, aborted.
    vulnerability_scan_type str
    The scan type to use is 'CVE', 'PATCH' or 'IMAGE_PATCH'.
    compartmentId String
    The ID of the compartment in which to list resources.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<Property Map>
    timeCreatedGreaterThan String
    The created greater than.
    timeEndedLessThan String
    The time ended less than.
    vulnerabilityScanId String
    The ID of the vulnerability scan.
    vulnerabilityScanStatuses List<String>
    Filter by one or more vulnerability scan status. Possible values are completed, running, completed with error, aborted.
    vulnerabilityScanType String
    The scan type to use is 'CVE', 'PATCH' or 'IMAGE_PATCH'.

    getVulnerabilityScans Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    VulnerabilityScanCollections List<GetVulnerabilityScansVulnerabilityScanCollection>
    The list of vulnerability_scan_collection.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A user-friendly name. It does not have to be unique, and it is changeable.
    Filters List<GetVulnerabilityScansFilter>
    TimeCreatedGreaterThan string
    TimeEndedLessThan string
    VulnerabilityScanId string
    VulnerabilityScanStatuses List<string>
    The status of the vulnerability scan.
    VulnerabilityScanType string
    Scan type is CVE, PATCH or IMAGE_PATCH
    Id string
    The provider-assigned unique ID for this managed resource.
    VulnerabilityScanCollections []GetVulnerabilityScansVulnerabilityScanCollection
    The list of vulnerability_scan_collection.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A user-friendly name. It does not have to be unique, and it is changeable.
    Filters []GetVulnerabilityScansFilter
    TimeCreatedGreaterThan string
    TimeEndedLessThan string
    VulnerabilityScanId string
    VulnerabilityScanStatuses []string
    The status of the vulnerability scan.
    VulnerabilityScanType string
    Scan type is CVE, PATCH or IMAGE_PATCH
    id String
    The provider-assigned unique ID for this managed resource.
    vulnerabilityScanCollections List<GetVulnerabilityScansVulnerabilityScanCollection>
    The list of vulnerability_scan_collection.
    compartmentId String
    The OCID of the compartment.
    displayName String
    A user-friendly name. It does not have to be unique, and it is changeable.
    filters List<GetVulnerabilityScansFilter>
    timeCreatedGreaterThan String
    timeEndedLessThan String
    vulnerabilityScanId String
    vulnerabilityScanStatuses List<String>
    The status of the vulnerability scan.
    vulnerabilityScanType String
    Scan type is CVE, PATCH or IMAGE_PATCH
    id string
    The provider-assigned unique ID for this managed resource.
    vulnerabilityScanCollections GetVulnerabilityScansVulnerabilityScanCollection[]
    The list of vulnerability_scan_collection.
    compartmentId string
    The OCID of the compartment.
    displayName string
    A user-friendly name. It does not have to be unique, and it is changeable.
    filters GetVulnerabilityScansFilter[]
    timeCreatedGreaterThan string
    timeEndedLessThan string
    vulnerabilityScanId string
    vulnerabilityScanStatuses string[]
    The status of the vulnerability scan.
    vulnerabilityScanType string
    Scan type is CVE, PATCH or IMAGE_PATCH
    id str
    The provider-assigned unique ID for this managed resource.
    vulnerability_scan_collections Sequence[dblm.GetVulnerabilityScansVulnerabilityScanCollection]
    The list of vulnerability_scan_collection.
    compartment_id str
    The OCID of the compartment.
    display_name str
    A user-friendly name. It does not have to be unique, and it is changeable.
    filters Sequence[dblm.GetVulnerabilityScansFilter]
    time_created_greater_than str
    time_ended_less_than str
    vulnerability_scan_id str
    vulnerability_scan_statuses Sequence[str]
    The status of the vulnerability scan.
    vulnerability_scan_type str
    Scan type is CVE, PATCH or IMAGE_PATCH
    id String
    The provider-assigned unique ID for this managed resource.
    vulnerabilityScanCollections List<Property Map>
    The list of vulnerability_scan_collection.
    compartmentId String
    The OCID of the compartment.
    displayName String
    A user-friendly name. It does not have to be unique, and it is changeable.
    filters List<Property Map>
    timeCreatedGreaterThan String
    timeEndedLessThan String
    vulnerabilityScanId String
    vulnerabilityScanStatuses List<String>
    The status of the vulnerability scan.
    vulnerabilityScanType String
    Scan type is CVE, PATCH or IMAGE_PATCH

    Supporting Types

    GetVulnerabilityScansFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []string
    Regex bool
    name String
    values List<String>
    regex Boolean
    name string
    values string[]
    regex boolean
    name str
    values Sequence[str]
    regex bool
    name String
    values List<String>
    regex Boolean

    GetVulnerabilityScansVulnerabilityScanCollection

    GetVulnerabilityScansVulnerabilityScanCollectionItem

    CompartmentId string
    The ID of the compartment in which to list resources.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName string
    A filter to return only resources that match the entire display name given.
    FreeformTags 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 OCID of the VulnerabilityScan.
    State string
    The current state of the VulnerabilityScan.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the VulnerabilityScan was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeEnded string
    The date and time the VulnerabilityScan was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    VulnerabilityScanMessage string
    The message of the vulnerability scan status.
    VulnerabilityScanStatus string
    Filter by one or more vulnerability scan status. Possible values are completed, running, completed with error, aborted.
    VulnerabilityScanType string
    The scan type to use is 'CVE', 'PATCH' or 'IMAGE_PATCH'.
    CompartmentId string
    The ID of the compartment in which to list resources.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    DisplayName string
    A filter to return only resources that match the entire display name given.
    FreeformTags 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 OCID of the VulnerabilityScan.
    State string
    The current state of the VulnerabilityScan.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the VulnerabilityScan was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    TimeEnded string
    The date and time the VulnerabilityScan was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    VulnerabilityScanMessage string
    The message of the vulnerability scan status.
    VulnerabilityScanStatus string
    Filter by one or more vulnerability scan status. Possible values are completed, running, completed with error, aborted.
    VulnerabilityScanType string
    The scan type to use is 'CVE', 'PATCH' or 'IMAGE_PATCH'.
    compartmentId String
    The ID of the compartment in which to list resources.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName String
    A filter to return only resources that match the entire display name given.
    freeformTags 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 OCID of the VulnerabilityScan.
    state String
    The current state of the VulnerabilityScan.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the VulnerabilityScan was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeEnded String
    The date and time the VulnerabilityScan was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    vulnerabilityScanMessage String
    The message of the vulnerability scan status.
    vulnerabilityScanStatus String
    Filter by one or more vulnerability scan status. Possible values are completed, running, completed with error, aborted.
    vulnerabilityScanType String
    The scan type to use is 'CVE', 'PATCH' or 'IMAGE_PATCH'.
    compartmentId string
    The ID of the compartment in which to list resources.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName string
    A filter to return only resources that match the entire display name given.
    freeformTags {[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 OCID of the VulnerabilityScan.
    state string
    The current state of the VulnerabilityScan.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the VulnerabilityScan was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeEnded string
    The date and time the VulnerabilityScan was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    vulnerabilityScanMessage string
    The message of the vulnerability scan status.
    vulnerabilityScanStatus string
    Filter by one or more vulnerability scan status. Possible values are completed, running, completed with error, aborted.
    vulnerabilityScanType string
    The scan type to use is 'CVE', 'PATCH' or 'IMAGE_PATCH'.
    compartment_id str
    The ID of the compartment in which to list resources.
    defined_tags 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 filter to return only resources that match the entire display name given.
    freeform_tags 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 OCID of the VulnerabilityScan.
    state str
    The current state of the VulnerabilityScan.
    system_tags 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_message str
    The message of the vulnerability scan status.
    vulnerability_scan_status str
    Filter by one or more vulnerability scan status. Possible values are completed, running, completed with error, aborted.
    vulnerability_scan_type str
    The scan type to use is 'CVE', 'PATCH' or 'IMAGE_PATCH'.
    compartmentId String
    The ID of the compartment in which to list resources.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: {"foo-namespace.bar-key": "value"}
    displayName String
    A filter to return only resources that match the entire display name given.
    freeformTags 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 OCID of the VulnerabilityScan.
    state String
    The current state of the VulnerabilityScan.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the VulnerabilityScan was created, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    timeEnded String
    The date and time the VulnerabilityScan was updated, in the format defined by RFC 3339. Example: 2016-08-25T21:10:29.600Z
    vulnerabilityScanMessage String
    The message of the vulnerability scan status.
    vulnerabilityScanStatus String
    Filter by one or more vulnerability scan status. Possible values are completed, running, completed with error, aborted.
    vulnerabilityScanType String
    The scan type to use is 'CVE', 'PATCH' or 'IMAGE_PATCH'.

    Package Details

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