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

oci.BigDataService.BdsInstanceNodeBackupConfiguration

Explore with Pulumi AI

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

    This resource provides the Bds Instance Node Backup Configuration resource in Oracle Cloud Infrastructure Big Data Service service.

    Add a node volume backup configuration to the cluster for an indicated node type or node.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testBdsInstanceNodeBackupConfiguration = new oci.bigdataservice.BdsInstanceNodeBackupConfiguration("test_bds_instance_node_backup_configuration", {
        bdsInstanceId: testBdsInstance.id,
        levelTypeDetails: {
            levelType: bdsInstanceNodeBackupConfigurationLevelTypeDetailsLevelType,
            nodeHostName: bdsInstanceNodeBackupConfigurationLevelTypeDetailsNodeHostName,
            nodeType: bdsInstanceNodeBackupConfigurationLevelTypeDetailsNodeType,
        },
        schedule: bdsInstanceNodeBackupConfigurationSchedule,
        backupType: bdsInstanceNodeBackupConfigurationBackupType,
        displayName: bdsInstanceNodeBackupConfigurationDisplayName,
        numberOfBackupsToRetain: bdsInstanceNodeBackupConfigurationNumberOfBackupsToRetain,
        timezone: bdsInstanceNodeBackupConfigurationTimezone,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_bds_instance_node_backup_configuration = oci.big_data_service.BdsInstanceNodeBackupConfiguration("test_bds_instance_node_backup_configuration",
        bds_instance_id=test_bds_instance["id"],
        level_type_details={
            "level_type": bds_instance_node_backup_configuration_level_type_details_level_type,
            "node_host_name": bds_instance_node_backup_configuration_level_type_details_node_host_name,
            "node_type": bds_instance_node_backup_configuration_level_type_details_node_type,
        },
        schedule=bds_instance_node_backup_configuration_schedule,
        backup_type=bds_instance_node_backup_configuration_backup_type,
        display_name=bds_instance_node_backup_configuration_display_name,
        number_of_backups_to_retain=bds_instance_node_backup_configuration_number_of_backups_to_retain,
        timezone=bds_instance_node_backup_configuration_timezone)
    
    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.NewBdsInstanceNodeBackupConfiguration(ctx, "test_bds_instance_node_backup_configuration", &bigdataservice.BdsInstanceNodeBackupConfigurationArgs{
    			BdsInstanceId: pulumi.Any(testBdsInstance.Id),
    			LevelTypeDetails: &bigdataservice.BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs{
    				LevelType:    pulumi.Any(bdsInstanceNodeBackupConfigurationLevelTypeDetailsLevelType),
    				NodeHostName: pulumi.Any(bdsInstanceNodeBackupConfigurationLevelTypeDetailsNodeHostName),
    				NodeType:     pulumi.Any(bdsInstanceNodeBackupConfigurationLevelTypeDetailsNodeType),
    			},
    			Schedule:                pulumi.Any(bdsInstanceNodeBackupConfigurationSchedule),
    			BackupType:              pulumi.Any(bdsInstanceNodeBackupConfigurationBackupType),
    			DisplayName:             pulumi.Any(bdsInstanceNodeBackupConfigurationDisplayName),
    			NumberOfBackupsToRetain: pulumi.Any(bdsInstanceNodeBackupConfigurationNumberOfBackupsToRetain),
    			Timezone:                pulumi.Any(bdsInstanceNodeBackupConfigurationTimezone),
    		})
    		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 testBdsInstanceNodeBackupConfiguration = new Oci.BigDataService.BdsInstanceNodeBackupConfiguration("test_bds_instance_node_backup_configuration", new()
        {
            BdsInstanceId = testBdsInstance.Id,
            LevelTypeDetails = new Oci.BigDataService.Inputs.BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs
            {
                LevelType = bdsInstanceNodeBackupConfigurationLevelTypeDetailsLevelType,
                NodeHostName = bdsInstanceNodeBackupConfigurationLevelTypeDetailsNodeHostName,
                NodeType = bdsInstanceNodeBackupConfigurationLevelTypeDetailsNodeType,
            },
            Schedule = bdsInstanceNodeBackupConfigurationSchedule,
            BackupType = bdsInstanceNodeBackupConfigurationBackupType,
            DisplayName = bdsInstanceNodeBackupConfigurationDisplayName,
            NumberOfBackupsToRetain = bdsInstanceNodeBackupConfigurationNumberOfBackupsToRetain,
            Timezone = bdsInstanceNodeBackupConfigurationTimezone,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.BigDataService.BdsInstanceNodeBackupConfiguration;
    import com.pulumi.oci.BigDataService.BdsInstanceNodeBackupConfigurationArgs;
    import com.pulumi.oci.BigDataService.inputs.BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs;
    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 testBdsInstanceNodeBackupConfiguration = new BdsInstanceNodeBackupConfiguration("testBdsInstanceNodeBackupConfiguration", BdsInstanceNodeBackupConfigurationArgs.builder()
                .bdsInstanceId(testBdsInstance.id())
                .levelTypeDetails(BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs.builder()
                    .levelType(bdsInstanceNodeBackupConfigurationLevelTypeDetailsLevelType)
                    .nodeHostName(bdsInstanceNodeBackupConfigurationLevelTypeDetailsNodeHostName)
                    .nodeType(bdsInstanceNodeBackupConfigurationLevelTypeDetailsNodeType)
                    .build())
                .schedule(bdsInstanceNodeBackupConfigurationSchedule)
                .backupType(bdsInstanceNodeBackupConfigurationBackupType)
                .displayName(bdsInstanceNodeBackupConfigurationDisplayName)
                .numberOfBackupsToRetain(bdsInstanceNodeBackupConfigurationNumberOfBackupsToRetain)
                .timezone(bdsInstanceNodeBackupConfigurationTimezone)
                .build());
    
        }
    }
    
    resources:
      testBdsInstanceNodeBackupConfiguration:
        type: oci:BigDataService:BdsInstanceNodeBackupConfiguration
        name: test_bds_instance_node_backup_configuration
        properties:
          bdsInstanceId: ${testBdsInstance.id}
          levelTypeDetails:
            levelType: ${bdsInstanceNodeBackupConfigurationLevelTypeDetailsLevelType}
            nodeHostName: ${bdsInstanceNodeBackupConfigurationLevelTypeDetailsNodeHostName}
            nodeType: ${bdsInstanceNodeBackupConfigurationLevelTypeDetailsNodeType}
          schedule: ${bdsInstanceNodeBackupConfigurationSchedule}
          backupType: ${bdsInstanceNodeBackupConfigurationBackupType}
          displayName: ${bdsInstanceNodeBackupConfigurationDisplayName}
          numberOfBackupsToRetain: ${bdsInstanceNodeBackupConfigurationNumberOfBackupsToRetain}
          timezone: ${bdsInstanceNodeBackupConfigurationTimezone}
    

    Create BdsInstanceNodeBackupConfiguration Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new BdsInstanceNodeBackupConfiguration(name: string, args: BdsInstanceNodeBackupConfigurationArgs, opts?: CustomResourceOptions);
    @overload
    def BdsInstanceNodeBackupConfiguration(resource_name: str,
                                           args: BdsInstanceNodeBackupConfigurationArgs,
                                           opts: Optional[ResourceOptions] = None)
    
    @overload
    def BdsInstanceNodeBackupConfiguration(resource_name: str,
                                           opts: Optional[ResourceOptions] = None,
                                           bds_instance_id: Optional[str] = None,
                                           level_type_details: Optional[BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs] = None,
                                           schedule: Optional[str] = None,
                                           backup_type: Optional[str] = None,
                                           display_name: Optional[str] = None,
                                           number_of_backups_to_retain: Optional[int] = None,
                                           timezone: Optional[str] = None)
    func NewBdsInstanceNodeBackupConfiguration(ctx *Context, name string, args BdsInstanceNodeBackupConfigurationArgs, opts ...ResourceOption) (*BdsInstanceNodeBackupConfiguration, error)
    public BdsInstanceNodeBackupConfiguration(string name, BdsInstanceNodeBackupConfigurationArgs args, CustomResourceOptions? opts = null)
    public BdsInstanceNodeBackupConfiguration(String name, BdsInstanceNodeBackupConfigurationArgs args)
    public BdsInstanceNodeBackupConfiguration(String name, BdsInstanceNodeBackupConfigurationArgs args, CustomResourceOptions options)
    
    type: oci:BigDataService:BdsInstanceNodeBackupConfiguration
    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 BdsInstanceNodeBackupConfigurationArgs
    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 BdsInstanceNodeBackupConfigurationArgs
    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 BdsInstanceNodeBackupConfigurationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BdsInstanceNodeBackupConfigurationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BdsInstanceNodeBackupConfigurationArgs
    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 bdsInstanceNodeBackupConfigurationResource = new Oci.BigDataService.BdsInstanceNodeBackupConfiguration("bdsInstanceNodeBackupConfigurationResource", new()
    {
        BdsInstanceId = "string",
        LevelTypeDetails = new Oci.BigDataService.Inputs.BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs
        {
            LevelType = "string",
            NodeHostName = "string",
            NodeType = "string",
        },
        Schedule = "string",
        BackupType = "string",
        DisplayName = "string",
        NumberOfBackupsToRetain = 0,
        Timezone = "string",
    });
    
    example, err := bigdataservice.NewBdsInstanceNodeBackupConfiguration(ctx, "bdsInstanceNodeBackupConfigurationResource", &bigdataservice.BdsInstanceNodeBackupConfigurationArgs{
    	BdsInstanceId: pulumi.String("string"),
    	LevelTypeDetails: &bigdataservice.BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs{
    		LevelType:    pulumi.String("string"),
    		NodeHostName: pulumi.String("string"),
    		NodeType:     pulumi.String("string"),
    	},
    	Schedule:                pulumi.String("string"),
    	BackupType:              pulumi.String("string"),
    	DisplayName:             pulumi.String("string"),
    	NumberOfBackupsToRetain: pulumi.Int(0),
    	Timezone:                pulumi.String("string"),
    })
    
    var bdsInstanceNodeBackupConfigurationResource = new BdsInstanceNodeBackupConfiguration("bdsInstanceNodeBackupConfigurationResource", BdsInstanceNodeBackupConfigurationArgs.builder()
        .bdsInstanceId("string")
        .levelTypeDetails(BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs.builder()
            .levelType("string")
            .nodeHostName("string")
            .nodeType("string")
            .build())
        .schedule("string")
        .backupType("string")
        .displayName("string")
        .numberOfBackupsToRetain(0)
        .timezone("string")
        .build());
    
    bds_instance_node_backup_configuration_resource = oci.bigdataservice.BdsInstanceNodeBackupConfiguration("bdsInstanceNodeBackupConfigurationResource",
        bds_instance_id="string",
        level_type_details={
            "level_type": "string",
            "node_host_name": "string",
            "node_type": "string",
        },
        schedule="string",
        backup_type="string",
        display_name="string",
        number_of_backups_to_retain=0,
        timezone="string")
    
    const bdsInstanceNodeBackupConfigurationResource = new oci.bigdataservice.BdsInstanceNodeBackupConfiguration("bdsInstanceNodeBackupConfigurationResource", {
        bdsInstanceId: "string",
        levelTypeDetails: {
            levelType: "string",
            nodeHostName: "string",
            nodeType: "string",
        },
        schedule: "string",
        backupType: "string",
        displayName: "string",
        numberOfBackupsToRetain: 0,
        timezone: "string",
    });
    
    type: oci:BigDataService:BdsInstanceNodeBackupConfiguration
    properties:
        backupType: string
        bdsInstanceId: string
        displayName: string
        levelTypeDetails:
            levelType: string
            nodeHostName: string
            nodeType: string
        numberOfBackupsToRetain: 0
        schedule: string
        timezone: string
    

    BdsInstanceNodeBackupConfiguration 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 BdsInstanceNodeBackupConfiguration resource accepts the following input properties:

    BdsInstanceId string
    The OCID of the cluster.
    LevelTypeDetails BdsInstanceNodeBackupConfigurationLevelTypeDetails
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    Schedule string
    (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
    BackupType string
    (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
    DisplayName string
    (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
    NumberOfBackupsToRetain int
    (Updatable) Number of backup copies to retain.
    Timezone string

    (Updatable) The time zone of the execution schedule, in IANA time zone database name format

    ** 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

    BdsInstanceId string
    The OCID of the cluster.
    LevelTypeDetails BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    Schedule string
    (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
    BackupType string
    (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
    DisplayName string
    (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
    NumberOfBackupsToRetain int
    (Updatable) Number of backup copies to retain.
    Timezone string

    (Updatable) The time zone of the execution schedule, in IANA time zone database name format

    ** 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

    bdsInstanceId String
    The OCID of the cluster.
    levelTypeDetails BdsInstanceNodeBackupConfigurationLevelTypeDetails
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    schedule String
    (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
    backupType String
    (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
    displayName String
    (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
    numberOfBackupsToRetain Integer
    (Updatable) Number of backup copies to retain.
    timezone String

    (Updatable) The time zone of the execution schedule, in IANA time zone database name format

    ** 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

    bdsInstanceId string
    The OCID of the cluster.
    levelTypeDetails BdsInstanceNodeBackupConfigurationLevelTypeDetails
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    schedule string
    (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
    backupType string
    (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
    displayName string
    (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
    numberOfBackupsToRetain number
    (Updatable) Number of backup copies to retain.
    timezone string

    (Updatable) The time zone of the execution schedule, in IANA time zone database name format

    ** 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

    bds_instance_id str
    The OCID of the cluster.
    level_type_details BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    schedule str
    (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
    backup_type str
    (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
    display_name str
    (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
    number_of_backups_to_retain int
    (Updatable) Number of backup copies to retain.
    timezone str

    (Updatable) The time zone of the execution schedule, in IANA time zone database name format

    ** 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

    bdsInstanceId String
    The OCID of the cluster.
    levelTypeDetails Property Map
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    schedule String
    (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
    backupType String
    (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
    displayName String
    (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
    numberOfBackupsToRetain Number
    (Updatable) Number of backup copies to retain.
    timezone String

    (Updatable) The time zone of the execution schedule, in IANA time zone database name format

    ** 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 BdsInstanceNodeBackupConfiguration resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    State string
    The state of the NodeBackupConfiguration.
    TimeCreated string
    The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
    TimeUpdated string
    The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.
    Id string
    The provider-assigned unique ID for this managed resource.
    State string
    The state of the NodeBackupConfiguration.
    TimeCreated string
    The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
    TimeUpdated string
    The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.
    id String
    The provider-assigned unique ID for this managed resource.
    state String
    The state of the NodeBackupConfiguration.
    timeCreated String
    The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
    timeUpdated String
    The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.
    id string
    The provider-assigned unique ID for this managed resource.
    state string
    The state of the NodeBackupConfiguration.
    timeCreated string
    The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
    timeUpdated string
    The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.
    id str
    The provider-assigned unique ID for this managed resource.
    state str
    The state of the NodeBackupConfiguration.
    time_created str
    The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
    time_updated str
    The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.
    id String
    The provider-assigned unique ID for this managed resource.
    state String
    The state of the NodeBackupConfiguration.
    timeCreated String
    The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
    timeUpdated String
    The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.

    Look up Existing BdsInstanceNodeBackupConfiguration Resource

    Get an existing BdsInstanceNodeBackupConfiguration 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?: BdsInstanceNodeBackupConfigurationState, opts?: CustomResourceOptions): BdsInstanceNodeBackupConfiguration
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            backup_type: Optional[str] = None,
            bds_instance_id: Optional[str] = None,
            display_name: Optional[str] = None,
            level_type_details: Optional[BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs] = None,
            number_of_backups_to_retain: Optional[int] = None,
            schedule: Optional[str] = None,
            state: Optional[str] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None,
            timezone: Optional[str] = None) -> BdsInstanceNodeBackupConfiguration
    func GetBdsInstanceNodeBackupConfiguration(ctx *Context, name string, id IDInput, state *BdsInstanceNodeBackupConfigurationState, opts ...ResourceOption) (*BdsInstanceNodeBackupConfiguration, error)
    public static BdsInstanceNodeBackupConfiguration Get(string name, Input<string> id, BdsInstanceNodeBackupConfigurationState? state, CustomResourceOptions? opts = null)
    public static BdsInstanceNodeBackupConfiguration get(String name, Output<String> id, BdsInstanceNodeBackupConfigurationState state, CustomResourceOptions options)
    resources:  _:    type: oci:BigDataService:BdsInstanceNodeBackupConfiguration    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.
    The following state arguments are supported:
    BackupType string
    (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
    BdsInstanceId string
    The OCID of the cluster.
    DisplayName string
    (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
    LevelTypeDetails BdsInstanceNodeBackupConfigurationLevelTypeDetails
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    NumberOfBackupsToRetain int
    (Updatable) Number of backup copies to retain.
    Schedule string
    (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
    State string
    The state of the NodeBackupConfiguration.
    TimeCreated string
    The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
    TimeUpdated string
    The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.
    Timezone string

    (Updatable) The time zone of the execution schedule, in IANA time zone database name format

    ** 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

    BackupType string
    (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
    BdsInstanceId string
    The OCID of the cluster.
    DisplayName string
    (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
    LevelTypeDetails BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    NumberOfBackupsToRetain int
    (Updatable) Number of backup copies to retain.
    Schedule string
    (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
    State string
    The state of the NodeBackupConfiguration.
    TimeCreated string
    The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
    TimeUpdated string
    The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.
    Timezone string

    (Updatable) The time zone of the execution schedule, in IANA time zone database name format

    ** 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

    backupType String
    (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
    bdsInstanceId String
    The OCID of the cluster.
    displayName String
    (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
    levelTypeDetails BdsInstanceNodeBackupConfigurationLevelTypeDetails
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    numberOfBackupsToRetain Integer
    (Updatable) Number of backup copies to retain.
    schedule String
    (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
    state String
    The state of the NodeBackupConfiguration.
    timeCreated String
    The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
    timeUpdated String
    The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.
    timezone String

    (Updatable) The time zone of the execution schedule, in IANA time zone database name format

    ** 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

    backupType string
    (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
    bdsInstanceId string
    The OCID of the cluster.
    displayName string
    (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
    levelTypeDetails BdsInstanceNodeBackupConfigurationLevelTypeDetails
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    numberOfBackupsToRetain number
    (Updatable) Number of backup copies to retain.
    schedule string
    (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
    state string
    The state of the NodeBackupConfiguration.
    timeCreated string
    The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
    timeUpdated string
    The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.
    timezone string

    (Updatable) The time zone of the execution schedule, in IANA time zone database name format

    ** 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

    backup_type str
    (Updatable) 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
    The OCID of the cluster.
    display_name str
    (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
    level_type_details BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    number_of_backups_to_retain int
    (Updatable) Number of backup copies to retain.
    schedule str
    (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
    state str
    The state of the NodeBackupConfiguration.
    time_created str
    The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
    time_updated str
    The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.
    timezone str

    (Updatable) The time zone of the execution schedule, in IANA time zone database name format

    ** 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

    backupType String
    (Updatable) Incremental backup type includes only the changes since the last backup. Full backup type includes all changes since the volume was created.
    bdsInstanceId String
    The OCID of the cluster.
    displayName String
    (Updatable) A user-friendly name. Only ASCII alphanumeric characters with no spaces allowed. The name does not have to be unique, and it may be changed. Avoid entering confidential information.
    levelTypeDetails Property Map
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    numberOfBackupsToRetain Number
    (Updatable) Number of backup copies to retain.
    schedule String
    (Updatable) Day/time recurrence (specified following RFC 5545) at which to trigger the backup process. Currently only DAILY, WEEKLY and MONTHLY frequency is supported. Days of the week are specified using BYDAY field. Time of the day is specified using BYHOUR. Other fields are not supported.
    state String
    The state of the NodeBackupConfiguration.
    timeCreated String
    The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
    timeUpdated String
    The time the NodeBackupConfiguration was updated, shown as an RFC 3339 formatted datetime string.
    timezone String

    (Updatable) The time zone of the execution schedule, in IANA time zone database name format

    ** 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

    Supporting Types

    BdsInstanceNodeBackupConfigurationLevelTypeDetails, BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs

    LevelType string
    (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    NodeHostName string
    (Updatable) Host name of the node to create backup configuration.
    NodeType string
    (Updatable) Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created. Accepted values are MASTER and UTILITY.
    LevelType string
    (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    NodeHostName string
    (Updatable) Host name of the node to create backup configuration.
    NodeType string
    (Updatable) Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created. Accepted values are MASTER and UTILITY.
    levelType String
    (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    nodeHostName String
    (Updatable) Host name of the node to create backup configuration.
    nodeType String
    (Updatable) Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created. Accepted values are MASTER and UTILITY.
    levelType string
    (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    nodeHostName string
    (Updatable) Host name of the node to create backup configuration.
    nodeType string
    (Updatable) Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created. Accepted values are MASTER and UTILITY.
    level_type str
    (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    node_host_name str
    (Updatable) Host name of the node to create backup configuration.
    node_type str
    (Updatable) Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created. Accepted values are MASTER and UTILITY.
    levelType String
    (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    nodeHostName String
    (Updatable) Host name of the node to create backup configuration.
    nodeType String
    (Updatable) Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created. Accepted values are MASTER and UTILITY.

    Import

    BdsInstanceNodeBackupConfigurations can be imported using the id, e.g.

    $ pulumi import oci:BigDataService/bdsInstanceNodeBackupConfiguration:BdsInstanceNodeBackupConfiguration test_bds_instance_node_backup_configuration "bdsInstances/{bdsInstanceId}/nodeBackupConfigurations/{nodeBackupConfigurationId}"
    

    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.
    oci logo
    Oracle Cloud Infrastructure v3.3.0 published on Thursday, Jul 17, 2025 by Pulumi