1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. BigDataService
  5. getBdsInstanceNodeBackup
Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi

oci.BigDataService.getBdsInstanceNodeBackup

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi

    This data source provides details about a specific Bds Instance Node Backup resource in Oracle Cloud Infrastructure Big Data Service service.

    Returns details of NodeBackup identified by the given ID.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testBdsInstanceNodeBackup = oci.BigDataService.getBdsInstanceNodeBackup({
        bdsInstanceId: testBdsInstance.id,
        nodeBackupId: testBackup.id,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_bds_instance_node_backup = oci.BigDataService.get_bds_instance_node_backup(bds_instance_id=test_bds_instance["id"],
        node_backup_id=test_backup["id"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/bigdataservice"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := bigdataservice.GetBdsInstanceNodeBackup(ctx, &bigdataservice.GetBdsInstanceNodeBackupArgs{
    			BdsInstanceId: testBdsInstance.Id,
    			NodeBackupId:  testBackup.Id,
    		}, 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 testBdsInstanceNodeBackup = Oci.BigDataService.GetBdsInstanceNodeBackup.Invoke(new()
        {
            BdsInstanceId = testBdsInstance.Id,
            NodeBackupId = testBackup.Id,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.BigDataService.BigDataServiceFunctions;
    import com.pulumi.oci.BigDataService.inputs.GetBdsInstanceNodeBackupArgs;
    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 testBdsInstanceNodeBackup = BigDataServiceFunctions.getBdsInstanceNodeBackup(GetBdsInstanceNodeBackupArgs.builder()
                .bdsInstanceId(testBdsInstance.id())
                .nodeBackupId(testBackup.id())
                .build());
    
        }
    }
    
    variables:
      testBdsInstanceNodeBackup:
        fn::invoke:
          function: oci:BigDataService:getBdsInstanceNodeBackup
          arguments:
            bdsInstanceId: ${testBdsInstance.id}
            nodeBackupId: ${testBackup.id}
    

    Using getBdsInstanceNodeBackup

    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 getBdsInstanceNodeBackup(args: GetBdsInstanceNodeBackupArgs, opts?: InvokeOptions): Promise<GetBdsInstanceNodeBackupResult>
    function getBdsInstanceNodeBackupOutput(args: GetBdsInstanceNodeBackupOutputArgs, opts?: InvokeOptions): Output<GetBdsInstanceNodeBackupResult>
    def get_bds_instance_node_backup(bds_instance_id: Optional[str] = None,
                                     node_backup_id: Optional[str] = None,
                                     opts: Optional[InvokeOptions] = None) -> GetBdsInstanceNodeBackupResult
    def get_bds_instance_node_backup_output(bds_instance_id: Optional[pulumi.Input[str]] = None,
                                     node_backup_id: Optional[pulumi.Input[str]] = None,
                                     opts: Optional[InvokeOptions] = None) -> Output[GetBdsInstanceNodeBackupResult]
    func LookupBdsInstanceNodeBackup(ctx *Context, args *LookupBdsInstanceNodeBackupArgs, opts ...InvokeOption) (*LookupBdsInstanceNodeBackupResult, error)
    func LookupBdsInstanceNodeBackupOutput(ctx *Context, args *LookupBdsInstanceNodeBackupOutputArgs, opts ...InvokeOption) LookupBdsInstanceNodeBackupResultOutput

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

    public static class GetBdsInstanceNodeBackup 
    {
        public static Task<GetBdsInstanceNodeBackupResult> InvokeAsync(GetBdsInstanceNodeBackupArgs args, InvokeOptions? opts = null)
        public static Output<GetBdsInstanceNodeBackupResult> Invoke(GetBdsInstanceNodeBackupInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetBdsInstanceNodeBackupResult> getBdsInstanceNodeBackup(GetBdsInstanceNodeBackupArgs args, InvokeOptions options)
    public static Output<GetBdsInstanceNodeBackupResult> getBdsInstanceNodeBackup(GetBdsInstanceNodeBackupArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:BigDataService/getBdsInstanceNodeBackup:getBdsInstanceNodeBackup
      arguments:
        # arguments dictionary

    The following arguments are supported:

    BdsInstanceId string
    The OCID of the cluster.
    NodeBackupId string
    Unique assigned identifier of the nodeBackupId.
    BdsInstanceId string
    The OCID of the cluster.
    NodeBackupId string
    Unique assigned identifier of the nodeBackupId.
    bdsInstanceId String
    The OCID of the cluster.
    nodeBackupId String
    Unique assigned identifier of the nodeBackupId.
    bdsInstanceId string
    The OCID of the cluster.
    nodeBackupId string
    Unique assigned identifier of the nodeBackupId.
    bds_instance_id str
    The OCID of the cluster.
    node_backup_id str
    Unique assigned identifier of the nodeBackupId.
    bdsInstanceId String
    The OCID of the cluster.
    nodeBackupId String
    Unique assigned identifier of the nodeBackupId.

    getBdsInstanceNodeBackup Result

    The following output properties are available:

    BackupTriggerType string
    type based on how backup action was initiated.
    BackupType string
    Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
    BdsInstanceId string
    DisplayName string
    BDS generated name for the backup. Format is nodeHostName_timeCreated.
    Id string
    The provider-assigned unique ID for this managed resource.
    NodeBackupConfigId string
    The ID of the nodeBackupConfiguration if the NodeBackup is automatically created by applying the configuration.
    NodeBackupId string
    NodeHostName string
    Host name of the node to which this backup belongs.
    NodeInstanceId string
    The instance OCID of the node, which is the resource from which the node backup was acquired.
    State string
    The state of the NodeBackup.
    TimeCreated string
    The time the cluster was created, shown as an RFC 3339 formatted datetime string.
    BackupTriggerType string
    type based on how backup action was initiated.
    BackupType string
    Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
    BdsInstanceId string
    DisplayName string
    BDS generated name for the backup. Format is nodeHostName_timeCreated.
    Id string
    The provider-assigned unique ID for this managed resource.
    NodeBackupConfigId string
    The ID of the nodeBackupConfiguration if the NodeBackup is automatically created by applying the configuration.
    NodeBackupId string
    NodeHostName string
    Host name of the node to which this backup belongs.
    NodeInstanceId string
    The instance OCID of the node, which is the resource from which the node backup was acquired.
    State string
    The state of the NodeBackup.
    TimeCreated string
    The time the cluster was created, shown as an RFC 3339 formatted datetime string.
    backupTriggerType String
    type based on how backup action was initiated.
    backupType String
    Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
    bdsInstanceId String
    displayName String
    BDS generated name for the backup. Format is nodeHostName_timeCreated.
    id String
    The provider-assigned unique ID for this managed resource.
    nodeBackupConfigId String
    The ID of the nodeBackupConfiguration if the NodeBackup is automatically created by applying the configuration.
    nodeBackupId String
    nodeHostName String
    Host name of the node to which this backup belongs.
    nodeInstanceId String
    The instance OCID of the node, which is the resource from which the node backup was acquired.
    state String
    The state of the NodeBackup.
    timeCreated String
    The time the cluster was created, shown as an RFC 3339 formatted datetime string.
    backupTriggerType string
    type based on how backup action was initiated.
    backupType string
    Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
    bdsInstanceId string
    displayName string
    BDS generated name for the backup. Format is nodeHostName_timeCreated.
    id string
    The provider-assigned unique ID for this managed resource.
    nodeBackupConfigId string
    The ID of the nodeBackupConfiguration if the NodeBackup is automatically created by applying the configuration.
    nodeBackupId string
    nodeHostName string
    Host name of the node to which this backup belongs.
    nodeInstanceId string
    The instance OCID of the node, which is the resource from which the node backup was acquired.
    state string
    The state of the NodeBackup.
    timeCreated string
    The time the cluster was created, shown as an RFC 3339 formatted datetime string.
    backup_trigger_type str
    type based on how backup action was initiated.
    backup_type str
    Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
    bds_instance_id str
    display_name str
    BDS generated name for the backup. Format is nodeHostName_timeCreated.
    id str
    The provider-assigned unique ID for this managed resource.
    node_backup_config_id str
    The ID of the nodeBackupConfiguration if the NodeBackup is automatically created by applying the configuration.
    node_backup_id str
    node_host_name str
    Host name of the node to which this backup belongs.
    node_instance_id str
    The instance OCID of the node, which is the resource from which the node backup was acquired.
    state str
    The state of the NodeBackup.
    time_created str
    The time the cluster was created, shown as an RFC 3339 formatted datetime string.
    backupTriggerType String
    type based on how backup action was initiated.
    backupType String
    Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
    bdsInstanceId String
    displayName String
    BDS generated name for the backup. Format is nodeHostName_timeCreated.
    id String
    The provider-assigned unique ID for this managed resource.
    nodeBackupConfigId String
    The ID of the nodeBackupConfiguration if the NodeBackup is automatically created by applying the configuration.
    nodeBackupId String
    nodeHostName String
    Host name of the node to which this backup belongs.
    nodeInstanceId String
    The instance OCID of the node, which is the resource from which the node backup was acquired.
    state String
    The state of the NodeBackup.
    timeCreated String
    The time the cluster was created, shown as an RFC 3339 formatted datetime string.

    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.3.0 published on Thursday, Jul 17, 2025 by Pulumi