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

oci.BigDataService.BdsInstanceNodeReplaceConfiguration

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 Replace Configuration resource in Oracle Cloud Infrastructure Big Data Service service.

    Add a nodeReplaceConfigurations to the cluster.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testBdsInstanceNodeReplaceConfiguration = new oci.bigdataservice.BdsInstanceNodeReplaceConfiguration("test_bds_instance_node_replace_configuration", {
        bdsInstanceId: testBdsInstance.id,
        clusterAdminPassword: bdsInstanceNodeReplaceConfigurationClusterAdminPassword,
        durationInMinutes: bdsInstanceNodeReplaceConfigurationDurationInMinutes,
        levelTypeDetails: {
            levelType: bdsInstanceNodeReplaceConfigurationLevelTypeDetailsLevelType,
            nodeHostName: bdsInstanceNodeReplaceConfigurationLevelTypeDetailsNodeHostName,
            nodeType: bdsInstanceNodeReplaceConfigurationLevelTypeDetailsNodeType,
        },
        metricType: bdsInstanceNodeReplaceConfigurationMetricType,
        displayName: bdsInstanceNodeReplaceConfigurationDisplayName,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_bds_instance_node_replace_configuration = oci.big_data_service.BdsInstanceNodeReplaceConfiguration("test_bds_instance_node_replace_configuration",
        bds_instance_id=test_bds_instance["id"],
        cluster_admin_password=bds_instance_node_replace_configuration_cluster_admin_password,
        duration_in_minutes=bds_instance_node_replace_configuration_duration_in_minutes,
        level_type_details={
            "level_type": bds_instance_node_replace_configuration_level_type_details_level_type,
            "node_host_name": bds_instance_node_replace_configuration_level_type_details_node_host_name,
            "node_type": bds_instance_node_replace_configuration_level_type_details_node_type,
        },
        metric_type=bds_instance_node_replace_configuration_metric_type,
        display_name=bds_instance_node_replace_configuration_display_name)
    
    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.NewBdsInstanceNodeReplaceConfiguration(ctx, "test_bds_instance_node_replace_configuration", &bigdataservice.BdsInstanceNodeReplaceConfigurationArgs{
    			BdsInstanceId:        pulumi.Any(testBdsInstance.Id),
    			ClusterAdminPassword: pulumi.Any(bdsInstanceNodeReplaceConfigurationClusterAdminPassword),
    			DurationInMinutes:    pulumi.Any(bdsInstanceNodeReplaceConfigurationDurationInMinutes),
    			LevelTypeDetails: &bigdataservice.BdsInstanceNodeReplaceConfigurationLevelTypeDetailsArgs{
    				LevelType:    pulumi.Any(bdsInstanceNodeReplaceConfigurationLevelTypeDetailsLevelType),
    				NodeHostName: pulumi.Any(bdsInstanceNodeReplaceConfigurationLevelTypeDetailsNodeHostName),
    				NodeType:     pulumi.Any(bdsInstanceNodeReplaceConfigurationLevelTypeDetailsNodeType),
    			},
    			MetricType:  pulumi.Any(bdsInstanceNodeReplaceConfigurationMetricType),
    			DisplayName: pulumi.Any(bdsInstanceNodeReplaceConfigurationDisplayName),
    		})
    		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 testBdsInstanceNodeReplaceConfiguration = new Oci.BigDataService.BdsInstanceNodeReplaceConfiguration("test_bds_instance_node_replace_configuration", new()
        {
            BdsInstanceId = testBdsInstance.Id,
            ClusterAdminPassword = bdsInstanceNodeReplaceConfigurationClusterAdminPassword,
            DurationInMinutes = bdsInstanceNodeReplaceConfigurationDurationInMinutes,
            LevelTypeDetails = new Oci.BigDataService.Inputs.BdsInstanceNodeReplaceConfigurationLevelTypeDetailsArgs
            {
                LevelType = bdsInstanceNodeReplaceConfigurationLevelTypeDetailsLevelType,
                NodeHostName = bdsInstanceNodeReplaceConfigurationLevelTypeDetailsNodeHostName,
                NodeType = bdsInstanceNodeReplaceConfigurationLevelTypeDetailsNodeType,
            },
            MetricType = bdsInstanceNodeReplaceConfigurationMetricType,
            DisplayName = bdsInstanceNodeReplaceConfigurationDisplayName,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.BigDataService.BdsInstanceNodeReplaceConfiguration;
    import com.pulumi.oci.BigDataService.BdsInstanceNodeReplaceConfigurationArgs;
    import com.pulumi.oci.BigDataService.inputs.BdsInstanceNodeReplaceConfigurationLevelTypeDetailsArgs;
    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 testBdsInstanceNodeReplaceConfiguration = new BdsInstanceNodeReplaceConfiguration("testBdsInstanceNodeReplaceConfiguration", BdsInstanceNodeReplaceConfigurationArgs.builder()
                .bdsInstanceId(testBdsInstance.id())
                .clusterAdminPassword(bdsInstanceNodeReplaceConfigurationClusterAdminPassword)
                .durationInMinutes(bdsInstanceNodeReplaceConfigurationDurationInMinutes)
                .levelTypeDetails(BdsInstanceNodeReplaceConfigurationLevelTypeDetailsArgs.builder()
                    .levelType(bdsInstanceNodeReplaceConfigurationLevelTypeDetailsLevelType)
                    .nodeHostName(bdsInstanceNodeReplaceConfigurationLevelTypeDetailsNodeHostName)
                    .nodeType(bdsInstanceNodeReplaceConfigurationLevelTypeDetailsNodeType)
                    .build())
                .metricType(bdsInstanceNodeReplaceConfigurationMetricType)
                .displayName(bdsInstanceNodeReplaceConfigurationDisplayName)
                .build());
    
        }
    }
    
    resources:
      testBdsInstanceNodeReplaceConfiguration:
        type: oci:BigDataService:BdsInstanceNodeReplaceConfiguration
        name: test_bds_instance_node_replace_configuration
        properties:
          bdsInstanceId: ${testBdsInstance.id}
          clusterAdminPassword: ${bdsInstanceNodeReplaceConfigurationClusterAdminPassword}
          durationInMinutes: ${bdsInstanceNodeReplaceConfigurationDurationInMinutes}
          levelTypeDetails:
            levelType: ${bdsInstanceNodeReplaceConfigurationLevelTypeDetailsLevelType}
            nodeHostName: ${bdsInstanceNodeReplaceConfigurationLevelTypeDetailsNodeHostName}
            nodeType: ${bdsInstanceNodeReplaceConfigurationLevelTypeDetailsNodeType}
          metricType: ${bdsInstanceNodeReplaceConfigurationMetricType}
          displayName: ${bdsInstanceNodeReplaceConfigurationDisplayName}
    

    Create BdsInstanceNodeReplaceConfiguration Resource

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

    Constructor syntax

    new BdsInstanceNodeReplaceConfiguration(name: string, args: BdsInstanceNodeReplaceConfigurationArgs, opts?: CustomResourceOptions);
    @overload
    def BdsInstanceNodeReplaceConfiguration(resource_name: str,
                                            args: BdsInstanceNodeReplaceConfigurationArgs,
                                            opts: Optional[ResourceOptions] = None)
    
    @overload
    def BdsInstanceNodeReplaceConfiguration(resource_name: str,
                                            opts: Optional[ResourceOptions] = None,
                                            bds_instance_id: Optional[str] = None,
                                            cluster_admin_password: Optional[str] = None,
                                            duration_in_minutes: Optional[int] = None,
                                            level_type_details: Optional[BdsInstanceNodeReplaceConfigurationLevelTypeDetailsArgs] = None,
                                            metric_type: Optional[str] = None,
                                            display_name: Optional[str] = None)
    func NewBdsInstanceNodeReplaceConfiguration(ctx *Context, name string, args BdsInstanceNodeReplaceConfigurationArgs, opts ...ResourceOption) (*BdsInstanceNodeReplaceConfiguration, error)
    public BdsInstanceNodeReplaceConfiguration(string name, BdsInstanceNodeReplaceConfigurationArgs args, CustomResourceOptions? opts = null)
    public BdsInstanceNodeReplaceConfiguration(String name, BdsInstanceNodeReplaceConfigurationArgs args)
    public BdsInstanceNodeReplaceConfiguration(String name, BdsInstanceNodeReplaceConfigurationArgs args, CustomResourceOptions options)
    
    type: oci:BigDataService:BdsInstanceNodeReplaceConfiguration
    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 BdsInstanceNodeReplaceConfigurationArgs
    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 BdsInstanceNodeReplaceConfigurationArgs
    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 BdsInstanceNodeReplaceConfigurationArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args BdsInstanceNodeReplaceConfigurationArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args BdsInstanceNodeReplaceConfigurationArgs
    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 bdsInstanceNodeReplaceConfigurationResource = new Oci.BigDataService.BdsInstanceNodeReplaceConfiguration("bdsInstanceNodeReplaceConfigurationResource", new()
    {
        BdsInstanceId = "string",
        ClusterAdminPassword = "string",
        DurationInMinutes = 0,
        LevelTypeDetails = new Oci.BigDataService.Inputs.BdsInstanceNodeReplaceConfigurationLevelTypeDetailsArgs
        {
            LevelType = "string",
            NodeHostName = "string",
            NodeType = "string",
        },
        MetricType = "string",
        DisplayName = "string",
    });
    
    example, err := bigdataservice.NewBdsInstanceNodeReplaceConfiguration(ctx, "bdsInstanceNodeReplaceConfigurationResource", &bigdataservice.BdsInstanceNodeReplaceConfigurationArgs{
    	BdsInstanceId:        pulumi.String("string"),
    	ClusterAdminPassword: pulumi.String("string"),
    	DurationInMinutes:    pulumi.Int(0),
    	LevelTypeDetails: &bigdataservice.BdsInstanceNodeReplaceConfigurationLevelTypeDetailsArgs{
    		LevelType:    pulumi.String("string"),
    		NodeHostName: pulumi.String("string"),
    		NodeType:     pulumi.String("string"),
    	},
    	MetricType:  pulumi.String("string"),
    	DisplayName: pulumi.String("string"),
    })
    
    var bdsInstanceNodeReplaceConfigurationResource = new BdsInstanceNodeReplaceConfiguration("bdsInstanceNodeReplaceConfigurationResource", BdsInstanceNodeReplaceConfigurationArgs.builder()
        .bdsInstanceId("string")
        .clusterAdminPassword("string")
        .durationInMinutes(0)
        .levelTypeDetails(BdsInstanceNodeReplaceConfigurationLevelTypeDetailsArgs.builder()
            .levelType("string")
            .nodeHostName("string")
            .nodeType("string")
            .build())
        .metricType("string")
        .displayName("string")
        .build());
    
    bds_instance_node_replace_configuration_resource = oci.bigdataservice.BdsInstanceNodeReplaceConfiguration("bdsInstanceNodeReplaceConfigurationResource",
        bds_instance_id="string",
        cluster_admin_password="string",
        duration_in_minutes=0,
        level_type_details={
            "level_type": "string",
            "node_host_name": "string",
            "node_type": "string",
        },
        metric_type="string",
        display_name="string")
    
    const bdsInstanceNodeReplaceConfigurationResource = new oci.bigdataservice.BdsInstanceNodeReplaceConfiguration("bdsInstanceNodeReplaceConfigurationResource", {
        bdsInstanceId: "string",
        clusterAdminPassword: "string",
        durationInMinutes: 0,
        levelTypeDetails: {
            levelType: "string",
            nodeHostName: "string",
            nodeType: "string",
        },
        metricType: "string",
        displayName: "string",
    });
    
    type: oci:BigDataService:BdsInstanceNodeReplaceConfiguration
    properties:
        bdsInstanceId: string
        clusterAdminPassword: string
        displayName: string
        durationInMinutes: 0
        levelTypeDetails:
            levelType: string
            nodeHostName: string
            nodeType: string
        metricType: string
    

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

    BdsInstanceId string
    The OCID of the cluster.
    ClusterAdminPassword string
    Base-64 encoded password for the cluster admin user.
    DurationInMinutes int
    (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
    LevelTypeDetails BdsInstanceNodeReplaceConfigurationLevelTypeDetails
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    MetricType string
    (Updatable) Type of compute instance health metric to use for node replacement
    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.
    BdsInstanceId string
    The OCID of the cluster.
    ClusterAdminPassword string
    Base-64 encoded password for the cluster admin user.
    DurationInMinutes int
    (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
    LevelTypeDetails BdsInstanceNodeReplaceConfigurationLevelTypeDetailsArgs
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    MetricType string
    (Updatable) Type of compute instance health metric to use for node replacement
    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.
    bdsInstanceId String
    The OCID of the cluster.
    clusterAdminPassword String
    Base-64 encoded password for the cluster admin user.
    durationInMinutes Integer
    (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
    levelTypeDetails BdsInstanceNodeReplaceConfigurationLevelTypeDetails
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    metricType String
    (Updatable) Type of compute instance health metric to use for node replacement
    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.
    bdsInstanceId string
    The OCID of the cluster.
    clusterAdminPassword string
    Base-64 encoded password for the cluster admin user.
    durationInMinutes number
    (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
    levelTypeDetails BdsInstanceNodeReplaceConfigurationLevelTypeDetails
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    metricType string
    (Updatable) Type of compute instance health metric to use for node replacement
    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.
    bds_instance_id str
    The OCID of the cluster.
    cluster_admin_password str
    Base-64 encoded password for the cluster admin user.
    duration_in_minutes int
    (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
    level_type_details BdsInstanceNodeReplaceConfigurationLevelTypeDetailsArgs
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    metric_type str
    (Updatable) Type of compute instance health metric to use for node replacement
    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.
    bdsInstanceId String
    The OCID of the cluster.
    clusterAdminPassword String
    Base-64 encoded password for the cluster admin user.
    durationInMinutes Number
    (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
    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.
    metricType String
    (Updatable) Type of compute instance health metric to use for node replacement
    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.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the BdsInstanceNodeReplaceConfiguration resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    State string
    The state of the NodeReplaceConfiguration.
    TimeCreated string
    The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
    TimeUpdated string
    The time the NodeReplaceConfiguration 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 NodeReplaceConfiguration.
    TimeCreated string
    The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
    TimeUpdated string
    The time the NodeReplaceConfiguration 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 NodeReplaceConfiguration.
    timeCreated String
    The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
    timeUpdated String
    The time the NodeReplaceConfiguration 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 NodeReplaceConfiguration.
    timeCreated string
    The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
    timeUpdated string
    The time the NodeReplaceConfiguration 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 NodeReplaceConfiguration.
    time_created str
    The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
    time_updated str
    The time the NodeReplaceConfiguration 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 NodeReplaceConfiguration.
    timeCreated String
    The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
    timeUpdated String
    The time the NodeReplaceConfiguration was updated, shown as an RFC 3339 formatted datetime string.

    Look up Existing BdsInstanceNodeReplaceConfiguration Resource

    Get an existing BdsInstanceNodeReplaceConfiguration 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?: BdsInstanceNodeReplaceConfigurationState, opts?: CustomResourceOptions): BdsInstanceNodeReplaceConfiguration
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            bds_instance_id: Optional[str] = None,
            cluster_admin_password: Optional[str] = None,
            display_name: Optional[str] = None,
            duration_in_minutes: Optional[int] = None,
            level_type_details: Optional[BdsInstanceNodeReplaceConfigurationLevelTypeDetailsArgs] = None,
            metric_type: Optional[str] = None,
            state: Optional[str] = None,
            time_created: Optional[str] = None,
            time_updated: Optional[str] = None) -> BdsInstanceNodeReplaceConfiguration
    func GetBdsInstanceNodeReplaceConfiguration(ctx *Context, name string, id IDInput, state *BdsInstanceNodeReplaceConfigurationState, opts ...ResourceOption) (*BdsInstanceNodeReplaceConfiguration, error)
    public static BdsInstanceNodeReplaceConfiguration Get(string name, Input<string> id, BdsInstanceNodeReplaceConfigurationState? state, CustomResourceOptions? opts = null)
    public static BdsInstanceNodeReplaceConfiguration get(String name, Output<String> id, BdsInstanceNodeReplaceConfigurationState state, CustomResourceOptions options)
    resources:  _:    type: oci:BigDataService:BdsInstanceNodeReplaceConfiguration    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:
    BdsInstanceId string
    The OCID of the cluster.
    ClusterAdminPassword string
    Base-64 encoded password for the cluster admin user.
    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.
    DurationInMinutes int
    (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
    LevelTypeDetails BdsInstanceNodeReplaceConfigurationLevelTypeDetails
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    MetricType string
    (Updatable) Type of compute instance health metric to use for node replacement
    State string
    The state of the NodeReplaceConfiguration.
    TimeCreated string
    The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
    TimeUpdated string
    The time the NodeReplaceConfiguration was updated, shown as an RFC 3339 formatted datetime string.
    BdsInstanceId string
    The OCID of the cluster.
    ClusterAdminPassword string
    Base-64 encoded password for the cluster admin user.
    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.
    DurationInMinutes int
    (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
    LevelTypeDetails BdsInstanceNodeReplaceConfigurationLevelTypeDetailsArgs
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    MetricType string
    (Updatable) Type of compute instance health metric to use for node replacement
    State string
    The state of the NodeReplaceConfiguration.
    TimeCreated string
    The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
    TimeUpdated string
    The time the NodeReplaceConfiguration was updated, shown as an RFC 3339 formatted datetime string.
    bdsInstanceId String
    The OCID of the cluster.
    clusterAdminPassword String
    Base-64 encoded password for the cluster admin user.
    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.
    durationInMinutes Integer
    (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
    levelTypeDetails BdsInstanceNodeReplaceConfigurationLevelTypeDetails
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    metricType String
    (Updatable) Type of compute instance health metric to use for node replacement
    state String
    The state of the NodeReplaceConfiguration.
    timeCreated String
    The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
    timeUpdated String
    The time the NodeReplaceConfiguration was updated, shown as an RFC 3339 formatted datetime string.
    bdsInstanceId string
    The OCID of the cluster.
    clusterAdminPassword string
    Base-64 encoded password for the cluster admin user.
    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.
    durationInMinutes number
    (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
    levelTypeDetails BdsInstanceNodeReplaceConfigurationLevelTypeDetails
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    metricType string
    (Updatable) Type of compute instance health metric to use for node replacement
    state string
    The state of the NodeReplaceConfiguration.
    timeCreated string
    The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
    timeUpdated string
    The time the NodeReplaceConfiguration was updated, shown as an RFC 3339 formatted datetime string.
    bds_instance_id str
    The OCID of the cluster.
    cluster_admin_password str
    Base-64 encoded password for the cluster admin user.
    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.
    duration_in_minutes int
    (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
    level_type_details BdsInstanceNodeReplaceConfigurationLevelTypeDetailsArgs
    (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    metric_type str
    (Updatable) Type of compute instance health metric to use for node replacement
    state str
    The state of the NodeReplaceConfiguration.
    time_created str
    The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
    time_updated str
    The time the NodeReplaceConfiguration was updated, shown as an RFC 3339 formatted datetime string.
    bdsInstanceId String
    The OCID of the cluster.
    clusterAdminPassword String
    Base-64 encoded password for the cluster admin user.
    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.
    durationInMinutes Number
    (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
    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.
    metricType String
    (Updatable) Type of compute instance health metric to use for node replacement
    state String
    The state of the NodeReplaceConfiguration.
    timeCreated String
    The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
    timeUpdated String
    The time the NodeReplaceConfiguration was updated, shown as an RFC 3339 formatted datetime string.

    Supporting Types

    BdsInstanceNodeReplaceConfigurationLevelTypeDetails, BdsInstanceNodeReplaceConfigurationLevelTypeDetailsArgs

    LevelType string
    (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration. Accepted values are NODE_LEVEL and NODE_TYPE_LEVEL.
    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.
    LevelType string
    (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration. Accepted values are NODE_LEVEL and NODE_TYPE_LEVEL.
    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.
    levelType String
    (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration. Accepted values are NODE_LEVEL and NODE_TYPE_LEVEL.
    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.
    levelType string
    (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration. Accepted values are NODE_LEVEL and NODE_TYPE_LEVEL.
    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.
    level_type str
    (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration. Accepted values are NODE_LEVEL and NODE_TYPE_LEVEL.
    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.
    levelType String
    (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration. Accepted values are NODE_LEVEL and NODE_TYPE_LEVEL.
    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.

    Import

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

    $ pulumi import oci:BigDataService/bdsInstanceNodeReplaceConfiguration:BdsInstanceNodeReplaceConfiguration test_bds_instance_node_replace_configuration "bdsInstances/{bdsInstanceId}/nodeReplaceConfigurations/{nodeReplaceConfigurationId}"
    

    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