1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Database
  5. getDbNodeSnapshots
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi

oci.Database.getDbNodeSnapshots

Start a Neo task
Explain and create an oci.Database.getDbNodeSnapshots resource
oci logo
Oracle Cloud Infrastructure v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi

    This data source provides the list of Db Node Snapshots in Oracle Cloud Infrastructure Database service.

    Gets a list of the Exadata Database Node Snapshots in the specified compartment.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testDbNodeSnapshots = oci.Database.getDbNodeSnapshots({
        compartmentId: compartmentId,
        clusterId: testDbNodeSnapshotManagement.exadbVmClusterId,
        name: testDbNodeSnapshotManagement.snapshots[0].name,
        sourceDbnodeId: testDbNodeSnapshotManagement.snapshots[0].sourceDbnodeId,
        state: testDbNodeSnapshotManagement.snapshots[0].state,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_db_node_snapshots = oci.Database.get_db_node_snapshots(compartment_id=compartment_id,
        cluster_id=test_db_node_snapshot_management["exadbVmClusterId"],
        name=test_db_node_snapshot_management["snapshots"][0]["name"],
        source_dbnode_id=test_db_node_snapshot_management["snapshots"][0]["sourceDbnodeId"],
        state=test_db_node_snapshot_management["snapshots"][0]["state"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/database"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := database.GetDbNodeSnapshots(ctx, &database.GetDbNodeSnapshotsArgs{
    			CompartmentId:  compartmentId,
    			ClusterId:      pulumi.StringRef(testDbNodeSnapshotManagement.ExadbVmClusterId),
    			Name:           pulumi.StringRef(testDbNodeSnapshotManagement.Snapshots[0].Name),
    			SourceDbnodeId: pulumi.StringRef(testDbNodeSnapshotManagement.Snapshots[0].SourceDbnodeId),
    			State:          pulumi.StringRef(testDbNodeSnapshotManagement.Snapshots[0].State),
    		}, 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 testDbNodeSnapshots = Oci.Database.GetDbNodeSnapshots.Invoke(new()
        {
            CompartmentId = compartmentId,
            ClusterId = testDbNodeSnapshotManagement.ExadbVmClusterId,
            Name = testDbNodeSnapshotManagement.Snapshots[0].Name,
            SourceDbnodeId = testDbNodeSnapshotManagement.Snapshots[0].SourceDbnodeId,
            State = testDbNodeSnapshotManagement.Snapshots[0].State,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Database.DatabaseFunctions;
    import com.pulumi.oci.Database.inputs.GetDbNodeSnapshotsArgs;
    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 testDbNodeSnapshots = DatabaseFunctions.getDbNodeSnapshots(GetDbNodeSnapshotsArgs.builder()
                .compartmentId(compartmentId)
                .clusterId(testDbNodeSnapshotManagement.exadbVmClusterId())
                .name(testDbNodeSnapshotManagement.snapshots()[0].name())
                .sourceDbnodeId(testDbNodeSnapshotManagement.snapshots()[0].sourceDbnodeId())
                .state(testDbNodeSnapshotManagement.snapshots()[0].state())
                .build());
    
        }
    }
    
    variables:
      testDbNodeSnapshots:
        fn::invoke:
          function: oci:Database:getDbNodeSnapshots
          arguments:
            compartmentId: ${compartmentId}
            clusterId: ${testDbNodeSnapshotManagement.exadbVmClusterId}
            name: ${testDbNodeSnapshotManagement.snapshots[0].name}
            sourceDbnodeId: ${testDbNodeSnapshotManagement.snapshots[0].sourceDbnodeId}
            state: ${testDbNodeSnapshotManagement.snapshots[0].state}
    

    Using getDbNodeSnapshots

    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 getDbNodeSnapshots(args: GetDbNodeSnapshotsArgs, opts?: InvokeOptions): Promise<GetDbNodeSnapshotsResult>
    function getDbNodeSnapshotsOutput(args: GetDbNodeSnapshotsOutputArgs, opts?: InvokeOptions): Output<GetDbNodeSnapshotsResult>
    def get_db_node_snapshots(cluster_id: Optional[str] = None,
                              compartment_id: Optional[str] = None,
                              filters: Optional[Sequence[GetDbNodeSnapshotsFilter]] = None,
                              name: Optional[str] = None,
                              source_dbnode_id: Optional[str] = None,
                              state: Optional[str] = None,
                              opts: Optional[InvokeOptions] = None) -> GetDbNodeSnapshotsResult
    def get_db_node_snapshots_output(cluster_id: Optional[pulumi.Input[str]] = None,
                              compartment_id: Optional[pulumi.Input[str]] = None,
                              filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetDbNodeSnapshotsFilterArgs]]]] = None,
                              name: Optional[pulumi.Input[str]] = None,
                              source_dbnode_id: Optional[pulumi.Input[str]] = None,
                              state: Optional[pulumi.Input[str]] = None,
                              opts: Optional[InvokeOptions] = None) -> Output[GetDbNodeSnapshotsResult]
    func GetDbNodeSnapshots(ctx *Context, args *GetDbNodeSnapshotsArgs, opts ...InvokeOption) (*GetDbNodeSnapshotsResult, error)
    func GetDbNodeSnapshotsOutput(ctx *Context, args *GetDbNodeSnapshotsOutputArgs, opts ...InvokeOption) GetDbNodeSnapshotsResultOutput

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

    public static class GetDbNodeSnapshots 
    {
        public static Task<GetDbNodeSnapshotsResult> InvokeAsync(GetDbNodeSnapshotsArgs args, InvokeOptions? opts = null)
        public static Output<GetDbNodeSnapshotsResult> Invoke(GetDbNodeSnapshotsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetDbNodeSnapshotsResult> getDbNodeSnapshots(GetDbNodeSnapshotsArgs args, InvokeOptions options)
    public static Output<GetDbNodeSnapshotsResult> getDbNodeSnapshots(GetDbNodeSnapshotsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:Database/getDbNodeSnapshots:getDbNodeSnapshots
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The compartment OCID.
    ClusterId string
    A filter to return only Exadata Database Node Snapshots that match the given VM cluster.
    Filters List<GetDbNodeSnapshotsFilter>
    Name string
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    SourceDbnodeId string
    A filter to return only Exadata Database Snapshots that match the given database node.
    State string
    A filter to return only Exadata Database Snapshots that match the given lifecycle state exactly.
    CompartmentId string
    The compartment OCID.
    ClusterId string
    A filter to return only Exadata Database Node Snapshots that match the given VM cluster.
    Filters []GetDbNodeSnapshotsFilter
    Name string
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    SourceDbnodeId string
    A filter to return only Exadata Database Snapshots that match the given database node.
    State string
    A filter to return only Exadata Database Snapshots that match the given lifecycle state exactly.
    compartmentId String
    The compartment OCID.
    clusterId String
    A filter to return only Exadata Database Node Snapshots that match the given VM cluster.
    filters List<GetDbNodeSnapshotsFilter>
    name String
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    sourceDbnodeId String
    A filter to return only Exadata Database Snapshots that match the given database node.
    state String
    A filter to return only Exadata Database Snapshots that match the given lifecycle state exactly.
    compartmentId string
    The compartment OCID.
    clusterId string
    A filter to return only Exadata Database Node Snapshots that match the given VM cluster.
    filters GetDbNodeSnapshotsFilter[]
    name string
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    sourceDbnodeId string
    A filter to return only Exadata Database Snapshots that match the given database node.
    state string
    A filter to return only Exadata Database Snapshots that match the given lifecycle state exactly.
    compartment_id str
    The compartment OCID.
    cluster_id str
    A filter to return only Exadata Database Node Snapshots that match the given VM cluster.
    filters Sequence[GetDbNodeSnapshotsFilter]
    name str
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    source_dbnode_id str
    A filter to return only Exadata Database Snapshots that match the given database node.
    state str
    A filter to return only Exadata Database Snapshots that match the given lifecycle state exactly.
    compartmentId String
    The compartment OCID.
    clusterId String
    A filter to return only Exadata Database Node Snapshots that match the given VM cluster.
    filters List<Property Map>
    name String
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    sourceDbnodeId String
    A filter to return only Exadata Database Snapshots that match the given database node.
    state String
    A filter to return only Exadata Database Snapshots that match the given lifecycle state exactly.

    getDbNodeSnapshots Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment.
    DbnodeSnapshots List<GetDbNodeSnapshotsDbnodeSnapshot>
    The list of dbnode_snapshots.
    Id string
    The provider-assigned unique ID for this managed resource.
    ClusterId string
    The OCID of the VM cluster.
    Filters List<GetDbNodeSnapshotsFilter>
    Name string
    Volume Name
    SourceDbnodeId string
    The OCID of the Exadata Database Node.
    State string
    The current state of the Exadata Database Node Snapshot.
    CompartmentId string
    The OCID of the compartment.
    DbnodeSnapshots []GetDbNodeSnapshotsDbnodeSnapshot
    The list of dbnode_snapshots.
    Id string
    The provider-assigned unique ID for this managed resource.
    ClusterId string
    The OCID of the VM cluster.
    Filters []GetDbNodeSnapshotsFilter
    Name string
    Volume Name
    SourceDbnodeId string
    The OCID of the Exadata Database Node.
    State string
    The current state of the Exadata Database Node Snapshot.
    compartmentId String
    The OCID of the compartment.
    dbnodeSnapshots List<GetDbNodeSnapshotsDbnodeSnapshot>
    The list of dbnode_snapshots.
    id String
    The provider-assigned unique ID for this managed resource.
    clusterId String
    The OCID of the VM cluster.
    filters List<GetDbNodeSnapshotsFilter>
    name String
    Volume Name
    sourceDbnodeId String
    The OCID of the Exadata Database Node.
    state String
    The current state of the Exadata Database Node Snapshot.
    compartmentId string
    The OCID of the compartment.
    dbnodeSnapshots GetDbNodeSnapshotsDbnodeSnapshot[]
    The list of dbnode_snapshots.
    id string
    The provider-assigned unique ID for this managed resource.
    clusterId string
    The OCID of the VM cluster.
    filters GetDbNodeSnapshotsFilter[]
    name string
    Volume Name
    sourceDbnodeId string
    The OCID of the Exadata Database Node.
    state string
    The current state of the Exadata Database Node Snapshot.
    compartment_id str
    The OCID of the compartment.
    dbnode_snapshots Sequence[GetDbNodeSnapshotsDbnodeSnapshot]
    The list of dbnode_snapshots.
    id str
    The provider-assigned unique ID for this managed resource.
    cluster_id str
    The OCID of the VM cluster.
    filters Sequence[GetDbNodeSnapshotsFilter]
    name str
    Volume Name
    source_dbnode_id str
    The OCID of the Exadata Database Node.
    state str
    The current state of the Exadata Database Node Snapshot.
    compartmentId String
    The OCID of the compartment.
    dbnodeSnapshots List<Property Map>
    The list of dbnode_snapshots.
    id String
    The provider-assigned unique ID for this managed resource.
    clusterId String
    The OCID of the VM cluster.
    filters List<Property Map>
    name String
    Volume Name
    sourceDbnodeId String
    The OCID of the Exadata Database Node.
    state String
    The current state of the Exadata Database Node Snapshot.

    Supporting Types

    GetDbNodeSnapshotsDbnodeSnapshot

    ClusterId string
    A filter to return only Exadata Database Node Snapshots that match the given VM cluster.
    CompartmentId string
    The compartment OCID.
    DbnodeSnapshotId string
    The OCID of the Exadata Database Node Snapshot.
    DefinedTags Dictionary<string, string>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    FreeformTags Dictionary<string, string>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the Exadata Database Node Snapshot.
    LifecycleDetails string
    Additional information about the current lifecycle state of the Exadata Database Node Snapshot.
    MountDbnodeId string
    The OCID of the Exadata Database Node to which the snapshot is mounted. If the snapshot is not mounted to any node, then the value of mount_dbnode_id will be "null".
    MountPoints List<GetDbNodeSnapshotsDbnodeSnapshotMountPoint>
    Details of the mount points
    Name string
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    SourceDbnodeId string
    A filter to return only Exadata Database Snapshots that match the given database node.
    State string
    A filter to return only Exadata Database Snapshots that match the given lifecycle state exactly.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    TimeCreated string
    The date and time that the Exadata Database Node Snapshot was created.
    Volumes List<GetDbNodeSnapshotsDbnodeSnapshotVolume>
    Details of the volumes
    ClusterId string
    A filter to return only Exadata Database Node Snapshots that match the given VM cluster.
    CompartmentId string
    The compartment OCID.
    DbnodeSnapshotId string
    The OCID of the Exadata Database Node Snapshot.
    DefinedTags map[string]string
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    FreeformTags map[string]string
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the Exadata Database Node Snapshot.
    LifecycleDetails string
    Additional information about the current lifecycle state of the Exadata Database Node Snapshot.
    MountDbnodeId string
    The OCID of the Exadata Database Node to which the snapshot is mounted. If the snapshot is not mounted to any node, then the value of mount_dbnode_id will be "null".
    MountPoints []GetDbNodeSnapshotsDbnodeSnapshotMountPoint
    Details of the mount points
    Name string
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    SourceDbnodeId string
    A filter to return only Exadata Database Snapshots that match the given database node.
    State string
    A filter to return only Exadata Database Snapshots that match the given lifecycle state exactly.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    TimeCreated string
    The date and time that the Exadata Database Node Snapshot was created.
    Volumes []GetDbNodeSnapshotsDbnodeSnapshotVolume
    Details of the volumes
    clusterId String
    A filter to return only Exadata Database Node Snapshots that match the given VM cluster.
    compartmentId String
    The compartment OCID.
    dbnodeSnapshotId String
    The OCID of the Exadata Database Node Snapshot.
    definedTags Map<String,String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeformTags Map<String,String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the Exadata Database Node Snapshot.
    lifecycleDetails String
    Additional information about the current lifecycle state of the Exadata Database Node Snapshot.
    mountDbnodeId String
    The OCID of the Exadata Database Node to which the snapshot is mounted. If the snapshot is not mounted to any node, then the value of mount_dbnode_id will be "null".
    mountPoints List<GetDbNodeSnapshotsDbnodeSnapshotMountPoint>
    Details of the mount points
    name String
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    sourceDbnodeId String
    A filter to return only Exadata Database Snapshots that match the given database node.
    state String
    A filter to return only Exadata Database Snapshots that match the given lifecycle state exactly.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated String
    The date and time that the Exadata Database Node Snapshot was created.
    volumes List<GetDbNodeSnapshotsDbnodeSnapshotVolume>
    Details of the volumes
    clusterId string
    A filter to return only Exadata Database Node Snapshots that match the given VM cluster.
    compartmentId string
    The compartment OCID.
    dbnodeSnapshotId string
    The OCID of the Exadata Database Node Snapshot.
    definedTags {[key: string]: string}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeformTags {[key: string]: string}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id string
    The OCID of the Exadata Database Node Snapshot.
    lifecycleDetails string
    Additional information about the current lifecycle state of the Exadata Database Node Snapshot.
    mountDbnodeId string
    The OCID of the Exadata Database Node to which the snapshot is mounted. If the snapshot is not mounted to any node, then the value of mount_dbnode_id will be "null".
    mountPoints GetDbNodeSnapshotsDbnodeSnapshotMountPoint[]
    Details of the mount points
    name string
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    sourceDbnodeId string
    A filter to return only Exadata Database Snapshots that match the given database node.
    state string
    A filter to return only Exadata Database Snapshots that match the given lifecycle state exactly.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated string
    The date and time that the Exadata Database Node Snapshot was created.
    volumes GetDbNodeSnapshotsDbnodeSnapshotVolume[]
    Details of the volumes
    cluster_id str
    A filter to return only Exadata Database Node Snapshots that match the given VM cluster.
    compartment_id str
    The compartment OCID.
    dbnode_snapshot_id str
    The OCID of the Exadata Database Node Snapshot.
    defined_tags Mapping[str, str]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeform_tags Mapping[str, str]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id str
    The OCID of the Exadata Database Node Snapshot.
    lifecycle_details str
    Additional information about the current lifecycle state of the Exadata Database Node Snapshot.
    mount_dbnode_id str
    The OCID of the Exadata Database Node to which the snapshot is mounted. If the snapshot is not mounted to any node, then the value of mount_dbnode_id will be "null".
    mount_points Sequence[GetDbNodeSnapshotsDbnodeSnapshotMountPoint]
    Details of the mount points
    name str
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    source_dbnode_id str
    A filter to return only Exadata Database Snapshots that match the given database node.
    state str
    A filter to return only Exadata Database Snapshots that match the given lifecycle state exactly.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    time_created str
    The date and time that the Exadata Database Node Snapshot was created.
    volumes Sequence[GetDbNodeSnapshotsDbnodeSnapshotVolume]
    Details of the volumes
    clusterId String
    A filter to return only Exadata Database Node Snapshots that match the given VM cluster.
    compartmentId String
    The compartment OCID.
    dbnodeSnapshotId String
    The OCID of the Exadata Database Node Snapshot.
    definedTags Map<String>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    freeformTags Map<String>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the Exadata Database Node Snapshot.
    lifecycleDetails String
    Additional information about the current lifecycle state of the Exadata Database Node Snapshot.
    mountDbnodeId String
    The OCID of the Exadata Database Node to which the snapshot is mounted. If the snapshot is not mounted to any node, then the value of mount_dbnode_id will be "null".
    mountPoints List<Property Map>
    Details of the mount points
    name String
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    sourceDbnodeId String
    A filter to return only Exadata Database Snapshots that match the given database node.
    state String
    A filter to return only Exadata Database Snapshots that match the given lifecycle state exactly.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags.
    timeCreated String
    The date and time that the Exadata Database Node Snapshot was created.
    volumes List<Property Map>
    Details of the volumes

    GetDbNodeSnapshotsDbnodeSnapshotMountPoint

    DbNodeId string
    The OCID of the Exadata Database Node where snapshot was mounted.
    Name string
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    DbNodeId string
    The OCID of the Exadata Database Node where snapshot was mounted.
    Name string
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    dbNodeId String
    The OCID of the Exadata Database Node where snapshot was mounted.
    name String
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    dbNodeId string
    The OCID of the Exadata Database Node where snapshot was mounted.
    name string
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    db_node_id str
    The OCID of the Exadata Database Node where snapshot was mounted.
    name str
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    dbNodeId String
    The OCID of the Exadata Database Node where snapshot was mounted.
    name String
    A filter to return only resources that match the entire name given. The match is not case sensitive.

    GetDbNodeSnapshotsDbnodeSnapshotVolume

    Name string
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    Size int
    Volume Size
    Name string
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    Size int
    Volume Size
    name String
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    size Integer
    Volume Size
    name string
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    size number
    Volume Size
    name str
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    size int
    Volume Size
    name String
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    size Number
    Volume Size

    GetDbNodeSnapshotsFilter

    Name string
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    Values List<string>
    Regex bool
    Name string
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    Values []string
    Regex bool
    name String
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    values List<String>
    regex Boolean
    name string
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    values string[]
    regex boolean
    name str
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    values Sequence[str]
    regex bool
    name String
    A filter to return only resources that match the entire name given. The match is not case sensitive.
    values List<String>
    regex Boolean

    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 v3.10.0 published on Wednesday, Nov 5, 2025 by Pulumi
      Meet Neo: Your AI Platform Teammate