1. Registry
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. BigDataService
  6. getBdsInstanceBdsCapacityReservationConfigurations
Viewing docs for Oracle Cloud Infrastructure v4.22.0
published on Wednesday, Aug 26, 2026 by Pulumi
oci logo oci logo
Viewing docs for Oracle Cloud Infrastructure v4.22.0
published on Wednesday, Aug 26, 2026 by Pulumi

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

    Returns a list of BDS capacity reservation configurations for the specified BDS cluster.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testBdsInstanceBdsCapacityReservationConfigurations = oci.bigdataservice.getBdsInstanceBdsCapacityReservationConfigurations({
        bdsInstanceId: testBdsInstance.id,
        displayName: bdsInstanceBdsCapacityReservationConfigurationDisplayName,
        state: bdsInstanceBdsCapacityReservationConfigurationState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_bds_instance_bds_capacity_reservation_configurations = oci.bigdataservice.get_bds_instance_bds_capacity_reservation_configurations(bds_instance_id=test_bds_instance["id"],
        display_name=bds_instance_bds_capacity_reservation_configuration_display_name,
        state=bds_instance_bds_capacity_reservation_configuration_state)
    
    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.GetBdsInstanceBdsCapacityReservationConfigurations(ctx, &bigdataservice.GetBdsInstanceBdsCapacityReservationConfigurationsArgs{
    			BdsInstanceId: testBdsInstance.Id,
    			DisplayName:   pulumi.StringRef(bdsInstanceBdsCapacityReservationConfigurationDisplayName),
    			State:         pulumi.StringRef(bdsInstanceBdsCapacityReservationConfigurationState),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testBdsInstanceBdsCapacityReservationConfigurations = Oci.BigDataService.GetBdsInstanceBdsCapacityReservationConfigurations.Invoke(new()
        {
            BdsInstanceId = testBdsInstance.Id,
            DisplayName = bdsInstanceBdsCapacityReservationConfigurationDisplayName,
            State = bdsInstanceBdsCapacityReservationConfigurationState,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.BigDataService.BigDataServiceFunctions;
    import com.pulumi.oci.BigDataService.inputs.GetBdsInstanceBdsCapacityReservationConfigurationsArgs;
    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) {
            final var testBdsInstanceBdsCapacityReservationConfigurations = BigDataServiceFunctions.getBdsInstanceBdsCapacityReservationConfigurations(GetBdsInstanceBdsCapacityReservationConfigurationsArgs.builder()
                .bdsInstanceId(testBdsInstance.id())
                .displayName(bdsInstanceBdsCapacityReservationConfigurationDisplayName)
                .state(bdsInstanceBdsCapacityReservationConfigurationState)
                .build());
    
        }
    }
    
    variables:
      testBdsInstanceBdsCapacityReservationConfigurations:
        fn::invoke:
          function: oci:BigDataService:getBdsInstanceBdsCapacityReservationConfigurations
          arguments:
            bdsInstanceId: ${testBdsInstance.id}
            displayName: ${bdsInstanceBdsCapacityReservationConfigurationDisplayName}
            state: ${bdsInstanceBdsCapacityReservationConfigurationState}
    
    pulumi {
      required_providers {
        oci = {
          source = "pulumi/oci"
        }
      }
    }
    
    data "oci_bigdataservice_getbdsinstancebdscapacityreservationconfigurations" "testBdsInstanceBdsCapacityReservationConfigurations" {
      bds_instance_id = testBdsInstance.id
      display_name    = bdsInstanceBdsCapacityReservationConfigurationDisplayName
      state           = bdsInstanceBdsCapacityReservationConfigurationState
    }
    

    Using getBdsInstanceBdsCapacityReservationConfigurations

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getBdsInstanceBdsCapacityReservationConfigurations(args: GetBdsInstanceBdsCapacityReservationConfigurationsArgs, opts?: InvokeOptions): Promise<GetBdsInstanceBdsCapacityReservationConfigurationsResult>
    function getBdsInstanceBdsCapacityReservationConfigurationsOutput(args: GetBdsInstanceBdsCapacityReservationConfigurationsOutputArgs, opts?: InvokeOutputOptions): Output<GetBdsInstanceBdsCapacityReservationConfigurationsResult>
    def get_bds_instance_bds_capacity_reservation_configurations(bds_instance_id: Optional[str] = None,
                                                                 display_name: Optional[str] = None,
                                                                 filters: Optional[Sequence[GetBdsInstanceBdsCapacityReservationConfigurationsFilter]] = None,
                                                                 state: Optional[str] = None,
                                                                 opts: Optional[InvokeOptions] = None) -> GetBdsInstanceBdsCapacityReservationConfigurationsResult
    def get_bds_instance_bds_capacity_reservation_configurations_output(bds_instance_id: pulumi.Input[Optional[str]] = None,
                                                                 display_name: pulumi.Input[Optional[str]] = None,
                                                                 filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetBdsInstanceBdsCapacityReservationConfigurationsFilterArgs]]]] = None,
                                                                 state: pulumi.Input[Optional[str]] = None,
                                                                 opts: Optional[InvokeOutputOptions] = None) -> Output[GetBdsInstanceBdsCapacityReservationConfigurationsResult]
    func GetBdsInstanceBdsCapacityReservationConfigurations(ctx *Context, args *GetBdsInstanceBdsCapacityReservationConfigurationsArgs, opts ...InvokeOption) (*GetBdsInstanceBdsCapacityReservationConfigurationsResult, error)
    func GetBdsInstanceBdsCapacityReservationConfigurationsOutput(ctx *Context, args *GetBdsInstanceBdsCapacityReservationConfigurationsOutputArgs, opts ...InvokeOption) GetBdsInstanceBdsCapacityReservationConfigurationsResultOutput

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

    public static class GetBdsInstanceBdsCapacityReservationConfigurations 
    {
        public static Task<GetBdsInstanceBdsCapacityReservationConfigurationsResult> InvokeAsync(GetBdsInstanceBdsCapacityReservationConfigurationsArgs args, InvokeOptions? opts = null)
        public static Output<GetBdsInstanceBdsCapacityReservationConfigurationsResult> Invoke(GetBdsInstanceBdsCapacityReservationConfigurationsInvokeArgs args, InvokeOptions? opts = null)
        public static Output<GetBdsInstanceBdsCapacityReservationConfigurationsResult> Invoke(GetBdsInstanceBdsCapacityReservationConfigurationsInvokeArgs args, InvokeOutputOptions opts)
    }
    public static CompletableFuture<GetBdsInstanceBdsCapacityReservationConfigurationsResult> getBdsInstanceBdsCapacityReservationConfigurations(GetBdsInstanceBdsCapacityReservationConfigurationsArgs args, InvokeOptions options)
    public static Output<GetBdsInstanceBdsCapacityReservationConfigurationsResult> getBdsInstanceBdsCapacityReservationConfigurations(GetBdsInstanceBdsCapacityReservationConfigurationsArgs args, InvokeOptions options)
    public static Output<GetBdsInstanceBdsCapacityReservationConfigurationsResult> getBdsInstanceBdsCapacityReservationConfigurations(GetBdsInstanceBdsCapacityReservationConfigurationsArgs args, InvokeOutputOptions options)
    
    fn::invoke:
      function: oci:BigDataService/getBdsInstanceBdsCapacityReservationConfigurations:getBdsInstanceBdsCapacityReservationConfigurations
      arguments:
        # arguments dictionary
    data "oci_big_data_service_get_bds_instance_bds_capacity_reservation_configurations" "name" {
        # arguments
    }

    The following arguments are supported:

    BdsInstanceId string
    The OCID of the cluster.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters List<GetBdsInstanceBdsCapacityReservationConfigurationsFilter>
    State string
    The lifecycle state of the BDS capacity reservation configuration.
    BdsInstanceId string
    The OCID of the cluster.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters []GetBdsInstanceBdsCapacityReservationConfigurationsFilter
    State string
    The lifecycle state of the BDS capacity reservation configuration.
    bds_instance_id string
    The OCID of the cluster.
    display_name string
    A filter to return only resources that match the entire display name given.
    filters list(object)
    state string
    The lifecycle state of the BDS capacity reservation configuration.
    bdsInstanceId String
    The OCID of the cluster.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<GetBdsInstanceBdsCapacityReservationConfigurationsFilter>
    state String
    The lifecycle state of the BDS capacity reservation configuration.
    bdsInstanceId string
    The OCID of the cluster.
    displayName string
    A filter to return only resources that match the entire display name given.
    filters GetBdsInstanceBdsCapacityReservationConfigurationsFilter[]
    state string
    The lifecycle state of the BDS capacity reservation configuration.
    bds_instance_id str
    The OCID of the cluster.
    display_name str
    A filter to return only resources that match the entire display name given.
    filters Sequence[GetBdsInstanceBdsCapacityReservationConfigurationsFilter]
    state str
    The lifecycle state of the BDS capacity reservation configuration.
    bdsInstanceId String
    The OCID of the cluster.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<Property Map>
    state String
    The lifecycle state of the BDS capacity reservation configuration.

    getBdsInstanceBdsCapacityReservationConfigurations Result

    The following output properties are available:

    BdsCapacityReservationConfigurationCollections List<GetBdsInstanceBdsCapacityReservationConfigurationsBdsCapacityReservationConfigurationCollection>
    The list of bds_capacity_reservation_configuration_collection.
    BdsInstanceId string
    The OCID of the BDS cluster associated with the BDS capacity reservation.
    Id string
    The provider-assigned unique ID for this managed resource.
    DisplayName string
    The display name of the BDS capacity reservation configuration.
    Filters List<GetBdsInstanceBdsCapacityReservationConfigurationsFilter>
    State string
    The lifecycle state of the BDS capacity reservation configuration.
    BdsCapacityReservationConfigurationCollections []GetBdsInstanceBdsCapacityReservationConfigurationsBdsCapacityReservationConfigurationCollection
    The list of bds_capacity_reservation_configuration_collection.
    BdsInstanceId string
    The OCID of the BDS cluster associated with the BDS capacity reservation.
    Id string
    The provider-assigned unique ID for this managed resource.
    DisplayName string
    The display name of the BDS capacity reservation configuration.
    Filters []GetBdsInstanceBdsCapacityReservationConfigurationsFilter
    State string
    The lifecycle state of the BDS capacity reservation configuration.
    bds_capacity_reservation_configuration_collections list(object)
    The list of bds_capacity_reservation_configuration_collection.
    bds_instance_id string
    The OCID of the BDS cluster associated with the BDS capacity reservation.
    id string
    The provider-assigned unique ID for this managed resource.
    display_name string
    The display name of the BDS capacity reservation configuration.
    filters list(object)
    state string
    The lifecycle state of the BDS capacity reservation configuration.
    bdsCapacityReservationConfigurationCollections List<GetBdsInstanceBdsCapacityReservationConfigurationsBdsCapacityReservationConfigurationCollection>
    The list of bds_capacity_reservation_configuration_collection.
    bdsInstanceId String
    The OCID of the BDS cluster associated with the BDS capacity reservation.
    id String
    The provider-assigned unique ID for this managed resource.
    displayName String
    The display name of the BDS capacity reservation configuration.
    filters List<GetBdsInstanceBdsCapacityReservationConfigurationsFilter>
    state String
    The lifecycle state of the BDS capacity reservation configuration.
    bdsCapacityReservationConfigurationCollections GetBdsInstanceBdsCapacityReservationConfigurationsBdsCapacityReservationConfigurationCollection[]
    The list of bds_capacity_reservation_configuration_collection.
    bdsInstanceId string
    The OCID of the BDS cluster associated with the BDS capacity reservation.
    id string
    The provider-assigned unique ID for this managed resource.
    displayName string
    The display name of the BDS capacity reservation configuration.
    filters GetBdsInstanceBdsCapacityReservationConfigurationsFilter[]
    state string
    The lifecycle state of the BDS capacity reservation configuration.
    bds_capacity_reservation_configuration_collections Sequence[GetBdsInstanceBdsCapacityReservationConfigurationsBdsCapacityReservationConfigurationCollection]
    The list of bds_capacity_reservation_configuration_collection.
    bds_instance_id str
    The OCID of the BDS cluster associated with the BDS capacity reservation.
    id str
    The provider-assigned unique ID for this managed resource.
    display_name str
    The display name of the BDS capacity reservation configuration.
    filters Sequence[GetBdsInstanceBdsCapacityReservationConfigurationsFilter]
    state str
    The lifecycle state of the BDS capacity reservation configuration.
    bdsCapacityReservationConfigurationCollections List<Property Map>
    The list of bds_capacity_reservation_configuration_collection.
    bdsInstanceId String
    The OCID of the BDS cluster associated with the BDS capacity reservation.
    id String
    The provider-assigned unique ID for this managed resource.
    displayName String
    The display name of the BDS capacity reservation configuration.
    filters List<Property Map>
    state String
    The lifecycle state of the BDS capacity reservation configuration.

    Supporting Types

    GetBdsInstanceBdsCapacityReservationConfigurationsBdsCapacityReservationConfigurationCollection

    Items List<GetBdsInstanceBdsCapacityReservationConfigurationsBdsCapacityReservationConfigurationCollectionItem>
    List of BDS capacity reservation configuration summaries for the specified BDS cluster.
    Items []GetBdsInstanceBdsCapacityReservationConfigurationsBdsCapacityReservationConfigurationCollectionItem
    List of BDS capacity reservation configuration summaries for the specified BDS cluster.
    items list(object)
    List of BDS capacity reservation configuration summaries for the specified BDS cluster.
    items List<GetBdsInstanceBdsCapacityReservationConfigurationsBdsCapacityReservationConfigurationCollectionItem>
    List of BDS capacity reservation configuration summaries for the specified BDS cluster.
    items GetBdsInstanceBdsCapacityReservationConfigurationsBdsCapacityReservationConfigurationCollectionItem[]
    List of BDS capacity reservation configuration summaries for the specified BDS cluster.
    items Sequence[GetBdsInstanceBdsCapacityReservationConfigurationsBdsCapacityReservationConfigurationCollectionItem]
    List of BDS capacity reservation configuration summaries for the specified BDS cluster.
    items List<Property Map>
    List of BDS capacity reservation configuration summaries for the specified BDS cluster.

    GetBdsInstanceBdsCapacityReservationConfigurationsBdsCapacityReservationConfigurationCollectionItem

    ActivateTrigger int
    BdsCapacityReservationId string
    The OCID of the BDS capacity reservation associated with the BDS cluster.
    BdsInstanceId string
    The OCID of the cluster.
    DeactivateTrigger int
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Id string
    The OCID of 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
    BdsCapacityReservationId string
    The OCID of the BDS capacity reservation associated with the BDS cluster.
    BdsInstanceId string
    The OCID of the cluster.
    DeactivateTrigger int
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Id string
    The OCID of 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
    bds_capacity_reservation_id string
    The OCID of the BDS capacity reservation associated with the BDS cluster.
    bds_instance_id string
    The OCID of the cluster.
    deactivate_trigger number
    display_name string
    A filter to return only resources that match the entire display name given.
    id string
    The OCID of 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
    bdsCapacityReservationId String
    The OCID of the BDS capacity reservation associated with the BDS cluster.
    bdsInstanceId String
    The OCID of the cluster.
    deactivateTrigger Integer
    displayName String
    A filter to return only resources that match the entire display name given.
    id String
    The OCID of 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
    bdsCapacityReservationId string
    The OCID of the BDS capacity reservation associated with the BDS cluster.
    bdsInstanceId string
    The OCID of the cluster.
    deactivateTrigger number
    displayName string
    A filter to return only resources that match the entire display name given.
    id string
    The OCID of 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
    bds_capacity_reservation_id str
    The OCID of the BDS capacity reservation associated with the BDS cluster.
    bds_instance_id str
    The OCID of the cluster.
    deactivate_trigger int
    display_name str
    A filter to return only resources that match the entire display name given.
    id str
    The OCID of 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
    bdsCapacityReservationId String
    The OCID of the BDS capacity reservation associated with the BDS cluster.
    bdsInstanceId String
    The OCID of the cluster.
    deactivateTrigger Number
    displayName String
    A filter to return only resources that match the entire display name given.
    id String
    The OCID of 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.

    GetBdsInstanceBdsCapacityReservationConfigurationsFilter

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

    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 v4.22.0
    published on Wednesday, Aug 26, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial