1. Registry
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. BigDataService
  6. BdsInstanceBdsCapacityReservationConfiguration
Viewing docs for Oracle Cloud Infrastructure v5.0.0
published on Thursday, Sep 17, 2026 by Pulumi
oci logo oci logo
Viewing docs for Oracle Cloud Infrastructure v5.0.0
published on Thursday, Sep 17, 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/v5/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:

    BdsCapacityReservationId string
    (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
    BdsInstanceId string
    The OCID of the cluster.
    DisplayName string
    (Updatable) A user-friendly name for the BDS capacity reservation configuration.
    ActivateTrigger 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.
    DeactivateTrigger 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

    BdsCapacityReservationId string
    (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
    BdsInstanceId string
    The OCID of the cluster.
    DisplayName string
    (Updatable) A user-friendly name for the BDS capacity reservation configuration.
    ActivateTrigger 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.
    DeactivateTrigger 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_reservation_id string
    (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
    bds_instance_id string
    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

    bdsCapacityReservationId String
    (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
    bdsInstanceId String
    The OCID of the cluster.
    displayName String
    (Updatable) A user-friendly name for the BDS capacity reservation configuration.
    activateTrigger 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.
    deactivateTrigger 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

    bdsCapacityReservationId string
    (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
    bdsInstanceId string
    The OCID of the cluster.
    displayName string
    (Updatable) A user-friendly name for the BDS capacity reservation configuration.
    activateTrigger 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.
    deactivateTrigger 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_reservation_id str
    (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
    bds_instance_id str
    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

    bdsCapacityReservationId String
    (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
    bdsInstanceId String
    The OCID of the cluster.
    displayName String
    (Updatable) A user-friendly name for the BDS capacity reservation configuration.
    activateTrigger 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.
    deactivateTrigger 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.
    TimeCreated string
    The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
    TimeUpdated 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.
    TimeCreated string
    The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
    TimeUpdated 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.
    timeCreated String
    The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
    timeUpdated 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.
    timeCreated string
    The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
    timeUpdated 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.
    timeCreated String
    The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
    timeUpdated 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) -> BdsInstanceBdsCapacityReservationConfiguration
    func 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.
    The following state arguments are supported:
    ActivateTrigger 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.
    BdsCapacityReservationId string
    (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
    BdsInstanceId string
    The OCID of the cluster.
    DeactivateTrigger 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

    DisplayName string
    (Updatable) A user-friendly name for the BDS capacity reservation configuration.
    State string
    The lifecycle state of the BDS capacity reservation configuration.
    TimeCreated string
    The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
    TimeUpdated string
    The time the BDS capacity reservation configuration was updated, shown as an RFC 3339 formatted datetime string.
    ActivateTrigger 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.
    BdsCapacityReservationId string
    (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
    BdsInstanceId string
    The OCID of the cluster.
    DeactivateTrigger 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

    DisplayName string
    (Updatable) A user-friendly name for the BDS capacity reservation configuration.
    State string
    The lifecycle state of the BDS capacity reservation configuration.
    TimeCreated string
    The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
    TimeUpdated 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_reservation_id string
    (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
    bds_instance_id string
    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.
    activateTrigger 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.
    bdsCapacityReservationId String
    (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
    bdsInstanceId String
    The OCID of the cluster.
    deactivateTrigger 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

    displayName String
    (Updatable) A user-friendly name for the BDS capacity reservation configuration.
    state String
    The lifecycle state of the BDS capacity reservation configuration.
    timeCreated String
    The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
    timeUpdated String
    The time the BDS capacity reservation configuration was updated, shown as an RFC 3339 formatted datetime string.
    activateTrigger 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.
    bdsCapacityReservationId string
    (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
    bdsInstanceId string
    The OCID of the cluster.
    deactivateTrigger 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

    displayName string
    (Updatable) A user-friendly name for the BDS capacity reservation configuration.
    state string
    The lifecycle state of the BDS capacity reservation configuration.
    timeCreated string
    The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
    timeUpdated 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_reservation_id str
    (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
    bds_instance_id str
    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.
    activateTrigger 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.
    bdsCapacityReservationId String
    (Updatable) The OCID of the BDS capacity reservation to associate with the BDS cluster.
    bdsInstanceId String
    The OCID of the cluster.
    deactivateTrigger 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

    displayName String
    (Updatable) A user-friendly name for the BDS capacity reservation configuration.
    state String
    The lifecycle state of the BDS capacity reservation configuration.
    timeCreated String
    The time the BDS capacity reservation configuration was created, shown as an RFC 3339 formatted datetime string.
    timeUpdated 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 oci Terraform Provider.
    oci logo oci logo
    Viewing docs for Oracle Cloud Infrastructure v5.0.0
    published on Thursday, Sep 17, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial