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

oci.BigDataService.getBdsInstanceNodeReplaceConfigurations

Explore with Pulumi AI

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

    This data source provides the list of Bds Instance Node Replace Configurations in Oracle Cloud Infrastructure Big Data Service service.

    Returns information about the NodeReplaceConfiguration.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testBdsInstanceNodeReplaceConfigurations = oci.BigDataService.getBdsInstanceNodeReplaceConfigurations({
        bdsInstanceId: testBdsInstance.id,
        displayName: bdsInstanceNodeReplaceConfigurationDisplayName,
        state: bdsInstanceNodeReplaceConfigurationState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_bds_instance_node_replace_configurations = oci.BigDataService.get_bds_instance_node_replace_configurations(bds_instance_id=test_bds_instance["id"],
        display_name=bds_instance_node_replace_configuration_display_name,
        state=bds_instance_node_replace_configuration_state)
    
    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.GetBdsInstanceNodeReplaceConfigurations(ctx, &bigdataservice.GetBdsInstanceNodeReplaceConfigurationsArgs{
    			BdsInstanceId: testBdsInstance.Id,
    			DisplayName:   pulumi.StringRef(bdsInstanceNodeReplaceConfigurationDisplayName),
    			State:         pulumi.StringRef(bdsInstanceNodeReplaceConfigurationState),
    		}, 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 testBdsInstanceNodeReplaceConfigurations = Oci.BigDataService.GetBdsInstanceNodeReplaceConfigurations.Invoke(new()
        {
            BdsInstanceId = testBdsInstance.Id,
            DisplayName = bdsInstanceNodeReplaceConfigurationDisplayName,
            State = bdsInstanceNodeReplaceConfigurationState,
        });
    
    });
    
    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.GetBdsInstanceNodeReplaceConfigurationsArgs;
    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 testBdsInstanceNodeReplaceConfigurations = BigDataServiceFunctions.getBdsInstanceNodeReplaceConfigurations(GetBdsInstanceNodeReplaceConfigurationsArgs.builder()
                .bdsInstanceId(testBdsInstance.id())
                .displayName(bdsInstanceNodeReplaceConfigurationDisplayName)
                .state(bdsInstanceNodeReplaceConfigurationState)
                .build());
    
        }
    }
    
    variables:
      testBdsInstanceNodeReplaceConfigurations:
        fn::invoke:
          function: oci:BigDataService:getBdsInstanceNodeReplaceConfigurations
          arguments:
            bdsInstanceId: ${testBdsInstance.id}
            displayName: ${bdsInstanceNodeReplaceConfigurationDisplayName}
            state: ${bdsInstanceNodeReplaceConfigurationState}
    

    Using getBdsInstanceNodeReplaceConfigurations

    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 getBdsInstanceNodeReplaceConfigurations(args: GetBdsInstanceNodeReplaceConfigurationsArgs, opts?: InvokeOptions): Promise<GetBdsInstanceNodeReplaceConfigurationsResult>
    function getBdsInstanceNodeReplaceConfigurationsOutput(args: GetBdsInstanceNodeReplaceConfigurationsOutputArgs, opts?: InvokeOptions): Output<GetBdsInstanceNodeReplaceConfigurationsResult>
    def get_bds_instance_node_replace_configurations(bds_instance_id: Optional[str] = None,
                                                     display_name: Optional[str] = None,
                                                     filters: Optional[Sequence[GetBdsInstanceNodeReplaceConfigurationsFilter]] = None,
                                                     state: Optional[str] = None,
                                                     opts: Optional[InvokeOptions] = None) -> GetBdsInstanceNodeReplaceConfigurationsResult
    def get_bds_instance_node_replace_configurations_output(bds_instance_id: Optional[pulumi.Input[str]] = None,
                                                     display_name: Optional[pulumi.Input[str]] = None,
                                                     filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetBdsInstanceNodeReplaceConfigurationsFilterArgs]]]] = None,
                                                     state: Optional[pulumi.Input[str]] = None,
                                                     opts: Optional[InvokeOptions] = None) -> Output[GetBdsInstanceNodeReplaceConfigurationsResult]
    func GetBdsInstanceNodeReplaceConfigurations(ctx *Context, args *GetBdsInstanceNodeReplaceConfigurationsArgs, opts ...InvokeOption) (*GetBdsInstanceNodeReplaceConfigurationsResult, error)
    func GetBdsInstanceNodeReplaceConfigurationsOutput(ctx *Context, args *GetBdsInstanceNodeReplaceConfigurationsOutputArgs, opts ...InvokeOption) GetBdsInstanceNodeReplaceConfigurationsResultOutput

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

    public static class GetBdsInstanceNodeReplaceConfigurations 
    {
        public static Task<GetBdsInstanceNodeReplaceConfigurationsResult> InvokeAsync(GetBdsInstanceNodeReplaceConfigurationsArgs args, InvokeOptions? opts = null)
        public static Output<GetBdsInstanceNodeReplaceConfigurationsResult> Invoke(GetBdsInstanceNodeReplaceConfigurationsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetBdsInstanceNodeReplaceConfigurationsResult> getBdsInstanceNodeReplaceConfigurations(GetBdsInstanceNodeReplaceConfigurationsArgs args, InvokeOptions options)
    public static Output<GetBdsInstanceNodeReplaceConfigurationsResult> getBdsInstanceNodeReplaceConfigurations(GetBdsInstanceNodeReplaceConfigurationsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:BigDataService/getBdsInstanceNodeReplaceConfigurations:getBdsInstanceNodeReplaceConfigurations
      arguments:
        # arguments dictionary

    The following arguments are supported:

    BdsInstanceId string
    The OCID of the cluster.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters List<GetBdsInstanceNodeReplaceConfigurationsFilter>
    State string
    The state of the NodeReplaceConfiguration.
    BdsInstanceId string
    The OCID of the cluster.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters []GetBdsInstanceNodeReplaceConfigurationsFilter
    State string
    The state of the NodeReplaceConfiguration.
    bdsInstanceId String
    The OCID of the cluster.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<GetBdsInstanceNodeReplaceConfigurationsFilter>
    state String
    The state of the NodeReplaceConfiguration.
    bdsInstanceId string
    The OCID of the cluster.
    displayName string
    A filter to return only resources that match the entire display name given.
    filters GetBdsInstanceNodeReplaceConfigurationsFilter[]
    state string
    The state of the NodeReplaceConfiguration.
    bds_instance_id str
    The OCID of the cluster.
    display_name str
    A filter to return only resources that match the entire display name given.
    filters Sequence[GetBdsInstanceNodeReplaceConfigurationsFilter]
    state str
    The state of the NodeReplaceConfiguration.
    bdsInstanceId String
    The OCID of the cluster.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<Property Map>
    state String
    The state of the NodeReplaceConfiguration.

    getBdsInstanceNodeReplaceConfigurations Result

    The following output properties are available:

    BdsInstanceId string
    The OCID of the bdsInstance which is the parent resource id.
    Id string
    The provider-assigned unique ID for this managed resource.
    NodeReplaceConfigurations List<GetBdsInstanceNodeReplaceConfigurationsNodeReplaceConfiguration>
    The list of node_replace_configurations.
    DisplayName string
    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.
    Filters List<GetBdsInstanceNodeReplaceConfigurationsFilter>
    State string
    The state of the NodeReplaceConfiguration.
    BdsInstanceId string
    The OCID of the bdsInstance which is the parent resource id.
    Id string
    The provider-assigned unique ID for this managed resource.
    NodeReplaceConfigurations []GetBdsInstanceNodeReplaceConfigurationsNodeReplaceConfiguration
    The list of node_replace_configurations.
    DisplayName string
    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.
    Filters []GetBdsInstanceNodeReplaceConfigurationsFilter
    State string
    The state of the NodeReplaceConfiguration.
    bdsInstanceId String
    The OCID of the bdsInstance which is the parent resource id.
    id String
    The provider-assigned unique ID for this managed resource.
    nodeReplaceConfigurations List<GetBdsInstanceNodeReplaceConfigurationsNodeReplaceConfiguration>
    The list of node_replace_configurations.
    displayName String
    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.
    filters List<GetBdsInstanceNodeReplaceConfigurationsFilter>
    state String
    The state of the NodeReplaceConfiguration.
    bdsInstanceId string
    The OCID of the bdsInstance which is the parent resource id.
    id string
    The provider-assigned unique ID for this managed resource.
    nodeReplaceConfigurations GetBdsInstanceNodeReplaceConfigurationsNodeReplaceConfiguration[]
    The list of node_replace_configurations.
    displayName string
    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.
    filters GetBdsInstanceNodeReplaceConfigurationsFilter[]
    state string
    The state of the NodeReplaceConfiguration.
    bds_instance_id str
    The OCID of the bdsInstance which is the parent resource id.
    id str
    The provider-assigned unique ID for this managed resource.
    node_replace_configurations Sequence[GetBdsInstanceNodeReplaceConfigurationsNodeReplaceConfiguration]
    The list of node_replace_configurations.
    display_name str
    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.
    filters Sequence[GetBdsInstanceNodeReplaceConfigurationsFilter]
    state str
    The state of the NodeReplaceConfiguration.
    bdsInstanceId String
    The OCID of the bdsInstance which is the parent resource id.
    id String
    The provider-assigned unique ID for this managed resource.
    nodeReplaceConfigurations List<Property Map>
    The list of node_replace_configurations.
    displayName String
    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.
    filters List<Property Map>
    state String
    The state of the NodeReplaceConfiguration.

    Supporting Types

    GetBdsInstanceNodeReplaceConfigurationsFilter

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

    GetBdsInstanceNodeReplaceConfigurationsNodeReplaceConfiguration

    BdsInstanceId string
    The OCID of the cluster.
    ClusterAdminPassword string
    DisplayName string
    A filter to return only resources that match the entire display name given.
    DurationInMinutes int
    This value is the minimum period of time to wait for metric emission before triggering node replacement. The value is in minutes.
    Id string
    The unique identifier for the NodeReplaceConfiguration.
    LevelTypeDetails List<GetBdsInstanceNodeReplaceConfigurationsNodeReplaceConfigurationLevelTypeDetail>
    Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    MetricType string
    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
    DisplayName string
    A filter to return only resources that match the entire display name given.
    DurationInMinutes int
    This value is the minimum period of time to wait for metric emission before triggering node replacement. The value is in minutes.
    Id string
    The unique identifier for the NodeReplaceConfiguration.
    LevelTypeDetails []GetBdsInstanceNodeReplaceConfigurationsNodeReplaceConfigurationLevelTypeDetail
    Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    MetricType string
    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
    displayName String
    A filter to return only resources that match the entire display name given.
    durationInMinutes Integer
    This value is the minimum period of time to wait for metric emission before triggering node replacement. The value is in minutes.
    id String
    The unique identifier for the NodeReplaceConfiguration.
    levelTypeDetails List<GetBdsInstanceNodeReplaceConfigurationsNodeReplaceConfigurationLevelTypeDetail>
    Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    metricType String
    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
    displayName string
    A filter to return only resources that match the entire display name given.
    durationInMinutes number
    This value is the minimum period of time to wait for metric emission before triggering node replacement. The value is in minutes.
    id string
    The unique identifier for the NodeReplaceConfiguration.
    levelTypeDetails GetBdsInstanceNodeReplaceConfigurationsNodeReplaceConfigurationLevelTypeDetail[]
    Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    metricType string
    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
    display_name str
    A filter to return only resources that match the entire display name given.
    duration_in_minutes int
    This value is the minimum period of time to wait for metric emission before triggering node replacement. The value is in minutes.
    id str
    The unique identifier for the NodeReplaceConfiguration.
    level_type_details Sequence[GetBdsInstanceNodeReplaceConfigurationsNodeReplaceConfigurationLevelTypeDetail]
    Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    metric_type str
    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
    displayName String
    A filter to return only resources that match the entire display name given.
    durationInMinutes Number
    This value is the minimum period of time to wait for metric emission before triggering node replacement. The value is in minutes.
    id String
    The unique identifier for the NodeReplaceConfiguration.
    levelTypeDetails List<Property Map>
    Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
    metricType String
    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.

    GetBdsInstanceNodeReplaceConfigurationsNodeReplaceConfigurationLevelTypeDetail

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

    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