published on Wednesday, Aug 26, 2026 by Pulumi
published on Wednesday, Aug 26, 2026 by Pulumi
This resource provides the Bds Instance Bds Capacity Reservation Configuration resource in Oracle Cloud Infrastructure Big Data Service service. Api doc link for the resource: https://docs.oracle.com/iaas/api/#/en/bigdata/latest/BdsCapacityReservationConfiguration
Example terraform configs related to the resource : https://github.com/oracle/terraform-provider-oci/tree/master/examples/big_data_service
Creates a configuration between the specified BDS cluster and a BDS capacity reservation.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testBdsInstanceBdsCapacityReservationConfiguration = new oci.bigdataservice.BdsInstanceBdsCapacityReservationConfiguration("test_bds_instance_bds_capacity_reservation_configuration", {
bdsCapacityReservationId: testBdsCapacityReservation.id,
bdsInstanceId: testBdsInstance.id,
displayName: bdsInstanceBdsCapacityReservationConfigurationDisplayName,
});
import pulumi
import pulumi_oci as oci
test_bds_instance_bds_capacity_reservation_configuration = oci.bigdataservice.BdsInstanceBdsCapacityReservationConfiguration("test_bds_instance_bds_capacity_reservation_configuration",
bds_capacity_reservation_id=test_bds_capacity_reservation["id"],
bds_instance_id=test_bds_instance["id"],
display_name=bds_instance_bds_capacity_reservation_configuration_display_name)
package main
import (
"github.com/pulumi/pulumi-oci/sdk/v4/go/oci/bigdataservice"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := bigdataservice.NewBdsInstanceBdsCapacityReservationConfiguration(ctx, "test_bds_instance_bds_capacity_reservation_configuration", &bigdataservice.BdsInstanceBdsCapacityReservationConfigurationArgs{
BdsCapacityReservationId: pulumi.Any(testBdsCapacityReservation.Id),
BdsInstanceId: pulumi.Any(testBdsInstance.Id),
DisplayName: pulumi.Any(bdsInstanceBdsCapacityReservationConfigurationDisplayName),
})
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 testBdsInstanceBdsCapacityReservationConfiguration = new Oci.BigDataService.BdsInstanceBdsCapacityReservationConfiguration("test_bds_instance_bds_capacity_reservation_configuration", new()
{
BdsCapacityReservationId = testBdsCapacityReservation.Id,
BdsInstanceId = testBdsInstance.Id,
DisplayName = bdsInstanceBdsCapacityReservationConfigurationDisplayName,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.oci.BigDataService.BdsInstanceBdsCapacityReservationConfiguration;
import com.pulumi.oci.BigDataService.BdsInstanceBdsCapacityReservationConfigurationArgs;
import java.util.ArrayList;
import java.util.Arrays;
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 testBdsInstanceBdsCapacityReservationConfiguration = new BdsInstanceBdsCapacityReservationConfiguration("testBdsInstanceBdsCapacityReservationConfiguration", BdsInstanceBdsCapacityReservationConfigurationArgs.builder()
.bdsCapacityReservationId(testBdsCapacityReservation.id())
.bdsInstanceId(testBdsInstance.id())
.displayName(bdsInstanceBdsCapacityReservationConfigurationDisplayName)
.build());
}
}
resources:
testBdsInstanceBdsCapacityReservationConfiguration:
type: oci:BigDataService:BdsInstanceBdsCapacityReservationConfiguration
name: test_bds_instance_bds_capacity_reservation_configuration
properties:
bdsCapacityReservationId: ${testBdsCapacityReservation.id}
bdsInstanceId: ${testBdsInstance.id}
displayName: ${bdsInstanceBdsCapacityReservationConfigurationDisplayName}
pulumi {
required_providers {
oci = {
source = "pulumi/oci"
}
}
}
resource "oci_bigdataservice_bdsinstancebdscapacityreservationconfiguration" "test_bds_instance_bds_capacity_reservation_configuration" {
bds_capacity_reservation_id = testBdsCapacityReservation.id
bds_instance_id = testBdsInstance.id
display_name = bdsInstanceBdsCapacityReservationConfigurationDisplayName
}
Create BdsInstanceBdsCapacityReservationConfiguration Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new BdsInstanceBdsCapacityReservationConfiguration(name: string, args: BdsInstanceBdsCapacityReservationConfigurationArgs, opts?: CustomResourceOptions);@overload
def BdsInstanceBdsCapacityReservationConfiguration(resource_name: str,
args: BdsInstanceBdsCapacityReservationConfigurationInitArgs,
opts: Optional[ResourceOptions] = None)
@overload
def BdsInstanceBdsCapacityReservationConfiguration(resource_name: str,
opts: Optional[ResourceOptions] = None,
bds_capacity_reservation_id: Optional[str] = None,
bds_instance_id: Optional[str] = None,
display_name: Optional[str] = None,
activate_trigger: Optional[int] = None,
deactivate_trigger: Optional[int] = None)func NewBdsInstanceBdsCapacityReservationConfiguration(ctx *Context, name string, args BdsInstanceBdsCapacityReservationConfigurationArgs, opts ...ResourceOption) (*BdsInstanceBdsCapacityReservationConfiguration, error)public BdsInstanceBdsCapacityReservationConfiguration(string name, BdsInstanceBdsCapacityReservationConfigurationArgs args, CustomResourceOptions? opts = null)
public BdsInstanceBdsCapacityReservationConfiguration(String name, BdsInstanceBdsCapacityReservationConfigurationArgs args)
public BdsInstanceBdsCapacityReservationConfiguration(String name, BdsInstanceBdsCapacityReservationConfigurationArgs args, CustomResourceOptions options)
type: oci:BigDataService:BdsInstanceBdsCapacityReservationConfiguration
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
resource "oci_big_data_service_bds_instance_bds_capacity_reservation_configuration" "name" {
# resource properties
}Parameters
- name string
- The unique name of the resource.
- args BdsInstanceBdsCapacityReservationConfigurationArgs
- 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 BdsInstanceBdsCapacityReservationConfigurationInitArgs
- 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 BdsInstanceBdsCapacityReservationConfigurationArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args BdsInstanceBdsCapacityReservationConfigurationArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args BdsInstanceBdsCapacityReservationConfigurationArgs
- 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 bdsInstanceBdsCapacityReservationConfigurationResource = new Oci.BigDataService.BdsInstanceBdsCapacityReservationConfiguration("bdsInstanceBdsCapacityReservationConfigurationResource", new()
{
BdsCapacityReservationId = "string",
BdsInstanceId = "string",
DisplayName = "string",
ActivateTrigger = 0,
DeactivateTrigger = 0,
});
example, err := bigdataservice.NewBdsInstanceBdsCapacityReservationConfiguration(ctx, "bdsInstanceBdsCapacityReservationConfigurationResource", &bigdataservice.BdsInstanceBdsCapacityReservationConfigurationArgs{
BdsCapacityReservationId: pulumi.String("string"),
BdsInstanceId: pulumi.String("string"),
DisplayName: pulumi.String("string"),
ActivateTrigger: pulumi.Int(0),
DeactivateTrigger: pulumi.Int(0),
})
resource "oci_big_data_service_bds_instance_bds_capacity_reservation_configuration" "bdsInstanceBdsCapacityReservationConfigurationResource" {
lifecycle {
create_before_destroy = true
}
bds_capacity_reservation_id = "string"
bds_instance_id = "string"
display_name = "string"
activate_trigger = 0
deactivate_trigger = 0
}
var bdsInstanceBdsCapacityReservationConfigurationResource = new BdsInstanceBdsCapacityReservationConfiguration("bdsInstanceBdsCapacityReservationConfigurationResource", BdsInstanceBdsCapacityReservationConfigurationArgs.builder()
.bdsCapacityReservationId("string")
.bdsInstanceId("string")
.displayName("string")
.activateTrigger(0)
.deactivateTrigger(0)
.build());
bds_instance_bds_capacity_reservation_configuration_resource = oci.bigdataservice.BdsInstanceBdsCapacityReservationConfiguration("bdsInstanceBdsCapacityReservationConfigurationResource",
bds_capacity_reservation_id="string",
bds_instance_id="string",
display_name="string",
activate_trigger=0,
deactivate_trigger=0)
const bdsInstanceBdsCapacityReservationConfigurationResource = new oci.bigdataservice.BdsInstanceBdsCapacityReservationConfiguration("bdsInstanceBdsCapacityReservationConfigurationResource", {
bdsCapacityReservationId: "string",
bdsInstanceId: "string",
displayName: "string",
activateTrigger: 0,
deactivateTrigger: 0,
});
type: oci:BigDataService:BdsInstanceBdsCapacityReservationConfiguration
properties:
activateTrigger: 0
bdsCapacityReservationId: string
bdsInstanceId: string
deactivateTrigger: 0
displayName: string
BdsInstanceBdsCapacityReservationConfiguration 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 BdsInstanceBdsCapacityReservationConfiguration resource accepts the following input properties:
- Bds
Capacity stringReservation Id - (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
- Bds
Instance stringId - The OCID of the cluster.
- Display
Name string - (Updatable) A user-friendly name for the BDS capacity reservation configuration.
- Activate
Trigger int - (Updatable) An optional property that triggers Activate when its value is increased. If set during creation, Activate is called after the configuration is created.
- Deactivate
Trigger int (Updatable) An optional property that triggers Deactivate when its value is increased. If set during creation, Deactivate is called after the configuration is created.
** 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
Capacity stringReservation Id - (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
- Bds
Instance stringId - The OCID of the cluster.
- Display
Name string - (Updatable) A user-friendly name for the BDS capacity reservation configuration.
- Activate
Trigger int - (Updatable) An optional property that triggers Activate when its value is increased. If set during creation, Activate is called after the configuration is created.
- Deactivate
Trigger int (Updatable) An optional property that triggers Deactivate when its value is increased. If set during creation, Deactivate is called after the configuration is created.
** 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_
capacity_ stringreservation_ id - (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
- bds_
instance_ stringid - The OCID of the cluster.
- display_
name string - (Updatable) A user-friendly name for the BDS capacity reservation configuration.
- activate_
trigger number - (Updatable) An optional property that triggers Activate when its value is increased. If set during creation, Activate is called after the configuration is created.
- deactivate_
trigger number (Updatable) An optional property that triggers Deactivate when its value is increased. If set during creation, Deactivate is called after the configuration is created.
** 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
Capacity StringReservation Id - (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
- bds
Instance StringId - The OCID of the cluster.
- display
Name String - (Updatable) A user-friendly name for the BDS capacity reservation configuration.
- activate
Trigger Integer - (Updatable) An optional property that triggers Activate when its value is increased. If set during creation, Activate is called after the configuration is created.
- deactivate
Trigger Integer (Updatable) An optional property that triggers Deactivate when its value is increased. If set during creation, Deactivate is called after the configuration is created.
** 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
Capacity stringReservation Id - (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
- bds
Instance stringId - The OCID of the cluster.
- display
Name string - (Updatable) A user-friendly name for the BDS capacity reservation configuration.
- activate
Trigger number - (Updatable) An optional property that triggers Activate when its value is increased. If set during creation, Activate is called after the configuration is created.
- deactivate
Trigger number (Updatable) An optional property that triggers Deactivate when its value is increased. If set during creation, Deactivate is called after the configuration is created.
** 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_
capacity_ strreservation_ id - (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
- bds_
instance_ strid - The OCID of the cluster.
- display_
name str - (Updatable) A user-friendly name for the BDS capacity reservation configuration.
- activate_
trigger int - (Updatable) An optional property that triggers Activate when its value is increased. If set during creation, Activate is called after the configuration is created.
- deactivate_
trigger int (Updatable) An optional property that triggers Deactivate when its value is increased. If set during creation, Deactivate is called after the configuration is created.
** 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
Capacity StringReservation Id - (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
- bds
Instance StringId - The OCID of the cluster.
- display
Name String - (Updatable) A user-friendly name for the BDS capacity reservation configuration.
- activate
Trigger Number - (Updatable) An optional property that triggers Activate when its value is increased. If set during creation, Activate is called after the configuration is created.
- deactivate
Trigger Number (Updatable) An optional property that triggers Deactivate when its value is increased. If set during creation, Deactivate is called after the configuration is created.
** 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 BdsInstanceBdsCapacityReservationConfiguration resource produces the following output properties:
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The lifecycle state of the BDS capacity reservation configuration.
- Time
Created string - The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
- Time
Updated string - The time the BDS capacity reservation configuration was updated, shown as an RFC 3339 formatted datetime string.
- Id string
- The provider-assigned unique ID for this managed resource.
- State string
- The lifecycle state of the BDS capacity reservation configuration.
- Time
Created string - The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
- Time
Updated string - The time the BDS capacity reservation configuration was updated, shown as an RFC 3339 formatted datetime string.
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- The lifecycle state of the BDS capacity reservation configuration.
- time_
created string - The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
- time_
updated string - The time the BDS capacity reservation configuration was updated, shown as an RFC 3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The lifecycle state of the BDS capacity reservation configuration.
- time
Created String - The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
- time
Updated String - The time the BDS capacity reservation configuration was updated, shown as an RFC 3339 formatted datetime string.
- id string
- The provider-assigned unique ID for this managed resource.
- state string
- The lifecycle state of the BDS capacity reservation configuration.
- time
Created string - The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
- time
Updated string - The time the BDS capacity reservation configuration was updated, shown as an RFC 3339 formatted datetime string.
- id str
- The provider-assigned unique ID for this managed resource.
- state str
- The lifecycle state of the BDS capacity reservation configuration.
- time_
created str - The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
- time_
updated str - The time the BDS capacity reservation configuration was updated, shown as an RFC 3339 formatted datetime string.
- id String
- The provider-assigned unique ID for this managed resource.
- state String
- The lifecycle state of the BDS capacity reservation configuration.
- time
Created String - The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
- time
Updated String - The time the BDS capacity reservation configuration was updated, shown as an RFC 3339 formatted datetime string.
Look up Existing BdsInstanceBdsCapacityReservationConfiguration Resource
Get an existing BdsInstanceBdsCapacityReservationConfiguration 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?: BdsInstanceBdsCapacityReservationConfigurationState, opts?: CustomResourceOptions): BdsInstanceBdsCapacityReservationConfiguration@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
activate_trigger: Optional[int] = None,
bds_capacity_reservation_id: Optional[str] = None,
bds_instance_id: Optional[str] = None,
deactivate_trigger: Optional[int] = None,
display_name: Optional[str] = None,
state: Optional[str] = None,
time_created: Optional[str] = None,
time_updated: Optional[str] = None) -> BdsInstanceBdsCapacityReservationConfigurationfunc GetBdsInstanceBdsCapacityReservationConfiguration(ctx *Context, name string, id IDInput, state *BdsInstanceBdsCapacityReservationConfigurationState, opts ...ResourceOption) (*BdsInstanceBdsCapacityReservationConfiguration, error)public static BdsInstanceBdsCapacityReservationConfiguration Get(string name, Input<string> id, BdsInstanceBdsCapacityReservationConfigurationState? state, CustomResourceOptions? opts = null)public static BdsInstanceBdsCapacityReservationConfiguration get(String name, Output<String> id, BdsInstanceBdsCapacityReservationConfigurationState state, CustomResourceOptions options)resources: _: type: oci:BigDataService:BdsInstanceBdsCapacityReservationConfiguration get: id: ${id}import {
to = oci_big_data_service_bds_instance_bds_capacity_reservation_configuration.example
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.
- Activate
Trigger int - (Updatable) An optional property that triggers Activate when its value is increased. If set during creation, Activate is called after the configuration is created.
- Bds
Capacity stringReservation Id - (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
- Bds
Instance stringId - The OCID of the cluster.
- Deactivate
Trigger int (Updatable) An optional property that triggers Deactivate when its value is increased. If set during creation, Deactivate is called after the configuration is created.
** 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
- Display
Name string - (Updatable) A user-friendly name for the BDS capacity reservation configuration.
- State string
- The lifecycle state of the BDS capacity reservation configuration.
- Time
Created string - The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
- Time
Updated string - The time the BDS capacity reservation configuration was updated, shown as an RFC 3339 formatted datetime string.
- Activate
Trigger int - (Updatable) An optional property that triggers Activate when its value is increased. If set during creation, Activate is called after the configuration is created.
- Bds
Capacity stringReservation Id - (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
- Bds
Instance stringId - The OCID of the cluster.
- Deactivate
Trigger int (Updatable) An optional property that triggers Deactivate when its value is increased. If set during creation, Deactivate is called after the configuration is created.
** 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
- Display
Name string - (Updatable) A user-friendly name for the BDS capacity reservation configuration.
- State string
- The lifecycle state of the BDS capacity reservation configuration.
- Time
Created string - The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
- Time
Updated string - The time the BDS capacity reservation configuration was updated, shown as an RFC 3339 formatted datetime string.
- activate_
trigger number - (Updatable) An optional property that triggers Activate when its value is increased. If set during creation, Activate is called after the configuration is created.
- bds_
capacity_ stringreservation_ id - (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
- bds_
instance_ stringid - The OCID of the cluster.
- deactivate_
trigger number (Updatable) An optional property that triggers Deactivate when its value is increased. If set during creation, Deactivate is called after the configuration is created.
** 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
- display_
name string - (Updatable) A user-friendly name for the BDS capacity reservation configuration.
- state string
- The lifecycle state of the BDS capacity reservation configuration.
- time_
created string - The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
- time_
updated string - The time the BDS capacity reservation configuration was updated, shown as an RFC 3339 formatted datetime string.
- activate
Trigger Integer - (Updatable) An optional property that triggers Activate when its value is increased. If set during creation, Activate is called after the configuration is created.
- bds
Capacity StringReservation Id - (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
- bds
Instance StringId - The OCID of the cluster.
- deactivate
Trigger Integer (Updatable) An optional property that triggers Deactivate when its value is increased. If set during creation, Deactivate is called after the configuration is created.
** 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
- display
Name String - (Updatable) A user-friendly name for the BDS capacity reservation configuration.
- state String
- The lifecycle state of the BDS capacity reservation configuration.
- time
Created String - The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
- time
Updated String - The time the BDS capacity reservation configuration was updated, shown as an RFC 3339 formatted datetime string.
- activate
Trigger number - (Updatable) An optional property that triggers Activate when its value is increased. If set during creation, Activate is called after the configuration is created.
- bds
Capacity stringReservation Id - (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
- bds
Instance stringId - The OCID of the cluster.
- deactivate
Trigger number (Updatable) An optional property that triggers Deactivate when its value is increased. If set during creation, Deactivate is called after the configuration is created.
** 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
- display
Name string - (Updatable) A user-friendly name for the BDS capacity reservation configuration.
- state string
- The lifecycle state of the BDS capacity reservation configuration.
- time
Created string - The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
- time
Updated string - The time the BDS capacity reservation configuration was updated, shown as an RFC 3339 formatted datetime string.
- activate_
trigger int - (Updatable) An optional property that triggers Activate when its value is increased. If set during creation, Activate is called after the configuration is created.
- bds_
capacity_ strreservation_ id - (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
- bds_
instance_ strid - The OCID of the cluster.
- deactivate_
trigger int (Updatable) An optional property that triggers Deactivate when its value is increased. If set during creation, Deactivate is called after the configuration is created.
** 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
- display_
name str - (Updatable) A user-friendly name for the BDS capacity reservation configuration.
- state str
- The lifecycle state of the BDS capacity reservation configuration.
- time_
created str - The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
- time_
updated str - The time the BDS capacity reservation configuration was updated, shown as an RFC 3339 formatted datetime string.
- activate
Trigger Number - (Updatable) An optional property that triggers Activate when its value is increased. If set during creation, Activate is called after the configuration is created.
- bds
Capacity StringReservation Id - (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
- bds
Instance StringId - The OCID of the cluster.
- deactivate
Trigger Number (Updatable) An optional property that triggers Deactivate when its value is increased. If set during creation, Deactivate is called after the configuration is created.
** 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
- display
Name String - (Updatable) A user-friendly name for the BDS capacity reservation configuration.
- state String
- The lifecycle state of the BDS capacity reservation configuration.
- time
Created String - The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
- time
Updated String - The time the BDS capacity reservation configuration was updated, shown as an RFC 3339 formatted datetime string.
Import
BdsInstanceBdsCapacityReservationConfigurations can be imported using the id, e.g.
$ pulumi import oci:BigDataService/bdsInstanceBdsCapacityReservationConfiguration:BdsInstanceBdsCapacityReservationConfiguration test_bds_instance_bds_capacity_reservation_configuration "bdsInstances/{bdsInstanceId}/bdsCapacityReservationConfigurations/{bdsCapacityReservationConfigurationId}"
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
ociTerraform Provider.
published on Wednesday, Aug 26, 2026 by Pulumi