oci.BigDataService.BdsInstanceNodeBackupConfiguration
Explore with Pulumi AI
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:
- Bds
Instance stringId - The OCID of the cluster.
- Level
Type BdsDetails Instance Node Backup 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.
- 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.
- Backup
Type string - (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 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.
- Number
Of intBackups To Retain - (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 stringId - The OCID of the cluster.
- Level
Type BdsDetails Instance Node Backup 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.
- 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.
- Backup
Type string - (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 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.
- Number
Of intBackups To Retain - (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 StringId - The OCID of the cluster.
- level
Type BdsDetails Instance Node Backup 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.
- 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.
- backup
Type String - (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 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.
- number
Of IntegerBackups To Retain - (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 stringId - The OCID of the cluster.
- level
Type BdsDetails Instance Node Backup 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.
- 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.
- backup
Type string - (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 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.
- number
Of numberBackups To Retain - (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_ strid - The OCID of the cluster.
- level_
type_ Bdsdetails Instance Node Backup 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.
- 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_ intbackups_ to_ retain - (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
- bds
Instance StringId - The OCID of the cluster.
- 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.
- 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.
- backup
Type String - (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 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.
- number
Of NumberBackups To Retain - (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.
- Time
Created string - The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
- Time
Updated 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.
- Time
Created string - The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
- Time
Updated 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.
- time
Created String - The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
- time
Updated 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.
- time
Created string - The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
- time
Updated 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.
- time
Created String - The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
- time
Updated 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.
- Backup
Type string - (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 stringId - The OCID of the cluster.
- 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.
- Level
Type BdsDetails Instance Node Backup 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.
- Number
Of intBackups To Retain - (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.
- Time
Created string - The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
- Time
Updated 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 string - (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 stringId - The OCID of the cluster.
- 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.
- Level
Type BdsDetails Instance Node Backup 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.
- Number
Of intBackups To Retain - (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.
- Time
Created string - The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
- Time
Updated 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 String - (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 StringId - The OCID of the cluster.
- 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.
- level
Type BdsDetails Instance Node Backup 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.
- number
Of IntegerBackups To Retain - (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.
- time
Created String - The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
- time
Updated 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 string - (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 stringId - The OCID of the cluster.
- 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.
- level
Type BdsDetails Instance Node Backup 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.
- number
Of numberBackups To Retain - (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.
- time
Created string - The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
- time
Updated 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_ strid - 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_ Bdsdetails Instance Node Backup 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.
- number_
of_ intbackups_ to_ retain - (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
- backup
Type String - (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 StringId - The OCID of the cluster.
- 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.
- 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.
- number
Of NumberBackups To Retain - (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.
- time
Created String - The time the NodeBackupConfiguration was created, shown as an RFC 3339 formatted datetime string.
- time
Updated 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
- Level
Type string - (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
- 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. Accepted values are MASTER and UTILITY.
- Level
Type string - (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
- 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. Accepted values are MASTER and UTILITY.
- level
Type String - (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
- 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. Accepted values are MASTER and UTILITY.
- level
Type string - (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
- 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. 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_ 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. Accepted values are MASTER and UTILITY.
- level
Type String - (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
- 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. 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.