oci.BigDataService.BdsInstanceNodeReplaceConfiguration
Explore with Pulumi AI
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:
- Bds
Instance stringId - The OCID of the cluster.
- Cluster
Admin stringPassword - Base-64 encoded password for the cluster admin user.
- Duration
In intMinutes - (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
- Level
Type BdsDetails Instance Node Replace Configuration Level Type Details - (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
- Metric
Type string - (Updatable) Type of compute instance health metric to use for node replacement
- Display
Name 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 stringId - The OCID of the cluster.
- Cluster
Admin stringPassword - Base-64 encoded password for the cluster admin user.
- Duration
In intMinutes - (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
- Level
Type BdsDetails Instance Node Replace Configuration Level Type Details Args - (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
- Metric
Type string - (Updatable) Type of compute instance health metric to use for node replacement
- Display
Name 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 StringId - The OCID of the cluster.
- cluster
Admin StringPassword - Base-64 encoded password for the cluster admin user.
- duration
In IntegerMinutes - (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
- level
Type BdsDetails Instance Node Replace Configuration Level Type Details - (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
- metric
Type String - (Updatable) Type of compute instance health metric to use for node replacement
- display
Name 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 stringId - The OCID of the cluster.
- cluster
Admin stringPassword - Base-64 encoded password for the cluster admin user.
- duration
In numberMinutes - (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
- level
Type BdsDetails Instance Node Replace Configuration Level Type Details - (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
- metric
Type string - (Updatable) Type of compute instance health metric to use for node replacement
- display
Name 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_ strid - The OCID of the cluster.
- cluster_
admin_ strpassword - Base-64 encoded password for the cluster admin user.
- duration_
in_ intminutes - (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
- level_
type_ Bdsdetails Instance Node Replace Configuration Level Type Details Args - (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.
- bds
Instance StringId - The OCID of the cluster.
- cluster
Admin StringPassword - Base-64 encoded password for the cluster admin user.
- duration
In NumberMinutes - (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
- level
Type Property MapDetails - (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
- metric
Type String - (Updatable) Type of compute instance health metric to use for node replacement
- display
Name 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.
- Time
Created string - The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
- Time
Updated 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.
- Time
Created string - The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
- Time
Updated 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.
- time
Created String - The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
- time
Updated 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.
- time
Created string - The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
- time
Updated 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.
- time
Created String - The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
- time
Updated 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.
- Bds
Instance stringId - The OCID of the cluster.
- Cluster
Admin stringPassword - Base-64 encoded password for the cluster admin user.
- Display
Name 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.
- Duration
In intMinutes - (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
- Level
Type BdsDetails Instance Node Replace Configuration Level Type Details - (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
- Metric
Type string - (Updatable) Type of compute instance health metric to use for node replacement
- State string
- The state of the NodeReplaceConfiguration.
- Time
Created string - The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
- Time
Updated string - The time the NodeReplaceConfiguration was updated, shown as an RFC 3339 formatted datetime string.
- Bds
Instance stringId - The OCID of the cluster.
- Cluster
Admin stringPassword - Base-64 encoded password for the cluster admin user.
- Display
Name 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.
- Duration
In intMinutes - (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
- Level
Type BdsDetails Instance Node Replace Configuration Level Type Details Args - (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
- Metric
Type string - (Updatable) Type of compute instance health metric to use for node replacement
- State string
- The state of the NodeReplaceConfiguration.
- Time
Created string - The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
- Time
Updated string - The time the NodeReplaceConfiguration was updated, shown as an RFC 3339 formatted datetime string.
- bds
Instance StringId - The OCID of the cluster.
- cluster
Admin StringPassword - Base-64 encoded password for the cluster admin user.
- display
Name 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.
- duration
In IntegerMinutes - (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
- level
Type BdsDetails Instance Node Replace Configuration Level Type Details - (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
- metric
Type String - (Updatable) Type of compute instance health metric to use for node replacement
- state String
- The state of the NodeReplaceConfiguration.
- time
Created String - The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
- time
Updated String - The time the NodeReplaceConfiguration was updated, shown as an RFC 3339 formatted datetime string.
- bds
Instance stringId - The OCID of the cluster.
- cluster
Admin stringPassword - Base-64 encoded password for the cluster admin user.
- display
Name 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.
- duration
In numberMinutes - (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
- level
Type BdsDetails Instance Node Replace Configuration Level Type Details - (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
- metric
Type string - (Updatable) Type of compute instance health metric to use for node replacement
- state string
- The state of the NodeReplaceConfiguration.
- time
Created string - The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
- time
Updated string - The time the NodeReplaceConfiguration was updated, shown as an RFC 3339 formatted datetime string.
- bds_
instance_ strid - The OCID of the cluster.
- cluster_
admin_ strpassword - 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_ intminutes - (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
- level_
type_ Bdsdetails Instance Node Replace Configuration Level Type Details Args - (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.
- bds
Instance StringId - The OCID of the cluster.
- cluster
Admin StringPassword - Base-64 encoded password for the cluster admin user.
- display
Name 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.
- duration
In NumberMinutes - (Updatable) This value is the minimum period of time to wait before triggering node replacement. The value is in minutes.
- level
Type Property MapDetails - (Updatable) Details of the type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
- metric
Type String - (Updatable) Type of compute instance health metric to use for node replacement
- state String
- The state of the NodeReplaceConfiguration.
- time
Created String - The time the NodeReplaceConfiguration was created, shown as an RFC 3339 formatted datetime string.
- time
Updated String - The time the NodeReplaceConfiguration was updated, shown as an RFC 3339 formatted datetime string.
Supporting Types
BdsInstanceNodeReplaceConfigurationLevelTypeDetails, BdsInstanceNodeReplaceConfigurationLevelTypeDetailsArgs
- Level
Type 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.
- Node
Host stringName - (Updatable) Host name of the node to create backup configuration.
- Node
Type 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 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.
- Node
Host stringName - (Updatable) Host name of the node to create backup configuration.
- Node
Type 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 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.
- node
Host StringName - (Updatable) Host name of the node to create backup configuration.
- node
Type 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 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.
- node
Host stringName - (Updatable) Host name of the node to create backup configuration.
- node
Type 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_ strname - (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.
- level
Type 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.
- node
Host StringName - (Updatable) Host name of the node to create backup configuration.
- node
Type 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.