1. Registry
  2. Packages
  3. Oracle Cloud Infrastructure
  4. API Docs
  5. BigDataService
  6. getBdsCapacityReservationAssociatedConfigurations
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 Capacity Reservation Associated Configurations in Oracle Cloud Infrastructure Big Data Service service.

    Returns a list of BDS capacity reservation configurations associated with the specified BDS capacity reservation.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testBdsCapacityReservationAssociatedConfigurations = oci.bigdataservice.getBdsCapacityReservationAssociatedConfigurations({
        bdsCapacityReservationId: testBdsCapacityReservation.id,
        compartmentId: compartmentId,
        displayName: bdsCapacityReservationAssociatedConfigurationDisplayName,
        state: bdsCapacityReservationAssociatedConfigurationState,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_bds_capacity_reservation_associated_configurations = oci.bigdataservice.get_bds_capacity_reservation_associated_configurations(bds_capacity_reservation_id=test_bds_capacity_reservation["id"],
        compartment_id=compartment_id,
        display_name=bds_capacity_reservation_associated_configuration_display_name,
        state=bds_capacity_reservation_associated_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.GetBdsCapacityReservationAssociatedConfigurations(ctx, &bigdataservice.GetBdsCapacityReservationAssociatedConfigurationsArgs{
    			BdsCapacityReservationId: testBdsCapacityReservation.Id,
    			CompartmentId:            compartmentId,
    			DisplayName:              pulumi.StringRef(bdsCapacityReservationAssociatedConfigurationDisplayName),
    			State:                    pulumi.StringRef(bdsCapacityReservationAssociatedConfigurationState),
    		}, 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 testBdsCapacityReservationAssociatedConfigurations = Oci.BigDataService.GetBdsCapacityReservationAssociatedConfigurations.Invoke(new()
        {
            BdsCapacityReservationId = testBdsCapacityReservation.Id,
            CompartmentId = compartmentId,
            DisplayName = bdsCapacityReservationAssociatedConfigurationDisplayName,
            State = bdsCapacityReservationAssociatedConfigurationState,
        });
    
    });
    
    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.GetBdsCapacityReservationAssociatedConfigurationsArgs;
    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 testBdsCapacityReservationAssociatedConfigurations = BigDataServiceFunctions.getBdsCapacityReservationAssociatedConfigurations(GetBdsCapacityReservationAssociatedConfigurationsArgs.builder()
                .bdsCapacityReservationId(testBdsCapacityReservation.id())
                .compartmentId(compartmentId)
                .displayName(bdsCapacityReservationAssociatedConfigurationDisplayName)
                .state(bdsCapacityReservationAssociatedConfigurationState)
                .build());
    
        }
    }
    
    variables:
      testBdsCapacityReservationAssociatedConfigurations:
        fn::invoke:
          function: oci:BigDataService:getBdsCapacityReservationAssociatedConfigurations
          arguments:
            bdsCapacityReservationId: ${testBdsCapacityReservation.id}
            compartmentId: ${compartmentId}
            displayName: ${bdsCapacityReservationAssociatedConfigurationDisplayName}
            state: ${bdsCapacityReservationAssociatedConfigurationState}
    
    pulumi {
      required_providers {
        oci = {
          source = "pulumi/oci"
        }
      }
    }
    
    data "oci_bigdataservice_getbdscapacityreservationassociatedconfigurations" "testBdsCapacityReservationAssociatedConfigurations" {
      bds_capacity_reservation_id = testBdsCapacityReservation.id
      compartment_id              = compartmentId
      display_name                = bdsCapacityReservationAssociatedConfigurationDisplayName
      state                       = bdsCapacityReservationAssociatedConfigurationState
    }
    

    Using getBdsCapacityReservationAssociatedConfigurations

    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 getBdsCapacityReservationAssociatedConfigurations(args: GetBdsCapacityReservationAssociatedConfigurationsArgs, opts?: InvokeOptions): Promise<GetBdsCapacityReservationAssociatedConfigurationsResult>
    function getBdsCapacityReservationAssociatedConfigurationsOutput(args: GetBdsCapacityReservationAssociatedConfigurationsOutputArgs, opts?: InvokeOutputOptions): Output<GetBdsCapacityReservationAssociatedConfigurationsResult>
    def get_bds_capacity_reservation_associated_configurations(bds_capacity_reservation_id: Optional[str] = None,
                                                               compartment_id: Optional[str] = None,
                                                               display_name: Optional[str] = None,
                                                               filters: Optional[Sequence[GetBdsCapacityReservationAssociatedConfigurationsFilter]] = None,
                                                               state: Optional[str] = None,
                                                               opts: Optional[InvokeOptions] = None) -> GetBdsCapacityReservationAssociatedConfigurationsResult
    def get_bds_capacity_reservation_associated_configurations_output(bds_capacity_reservation_id: pulumi.Input[Optional[str]] = None,
                                                               compartment_id: pulumi.Input[Optional[str]] = None,
                                                               display_name: pulumi.Input[Optional[str]] = None,
                                                               filters: pulumi.Input[Optional[Sequence[pulumi.Input[GetBdsCapacityReservationAssociatedConfigurationsFilterArgs]]]] = None,
                                                               state: pulumi.Input[Optional[str]] = None,
                                                               opts: Optional[InvokeOutputOptions] = None) -> Output[GetBdsCapacityReservationAssociatedConfigurationsResult]
    func GetBdsCapacityReservationAssociatedConfigurations(ctx *Context, args *GetBdsCapacityReservationAssociatedConfigurationsArgs, opts ...InvokeOption) (*GetBdsCapacityReservationAssociatedConfigurationsResult, error)
    func GetBdsCapacityReservationAssociatedConfigurationsOutput(ctx *Context, args *GetBdsCapacityReservationAssociatedConfigurationsOutputArgs, opts ...InvokeOption) GetBdsCapacityReservationAssociatedConfigurationsResultOutput

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

    public static class GetBdsCapacityReservationAssociatedConfigurations 
    {
        public static Task<GetBdsCapacityReservationAssociatedConfigurationsResult> InvokeAsync(GetBdsCapacityReservationAssociatedConfigurationsArgs args, InvokeOptions? opts = null)
        public static Output<GetBdsCapacityReservationAssociatedConfigurationsResult> Invoke(GetBdsCapacityReservationAssociatedConfigurationsInvokeArgs args, InvokeOptions? opts = null)
        public static Output<GetBdsCapacityReservationAssociatedConfigurationsResult> Invoke(GetBdsCapacityReservationAssociatedConfigurationsInvokeArgs args, InvokeOutputOptions opts)
    }
    public static CompletableFuture<GetBdsCapacityReservationAssociatedConfigurationsResult> getBdsCapacityReservationAssociatedConfigurations(GetBdsCapacityReservationAssociatedConfigurationsArgs args, InvokeOptions options)
    public static Output<GetBdsCapacityReservationAssociatedConfigurationsResult> getBdsCapacityReservationAssociatedConfigurations(GetBdsCapacityReservationAssociatedConfigurationsArgs args, InvokeOptions options)
    public static Output<GetBdsCapacityReservationAssociatedConfigurationsResult> getBdsCapacityReservationAssociatedConfigurations(GetBdsCapacityReservationAssociatedConfigurationsArgs args, InvokeOutputOptions options)
    
    fn::invoke:
      function: oci:BigDataService/getBdsCapacityReservationAssociatedConfigurations:getBdsCapacityReservationAssociatedConfigurations
      arguments:
        # arguments dictionary
    data "oci_big_data_service_get_bds_capacity_reservation_associated_configurations" "name" {
        # arguments
    }

    The following arguments are supported:

    BdsCapacityReservationId string
    The OCID of the BDS capacity reservation.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters List<GetBdsCapacityReservationAssociatedConfigurationsFilter>
    State string
    The lifecycle state of the BDS capacity reservation configuration.
    BdsCapacityReservationId string
    The OCID of the BDS capacity reservation.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A filter to return only resources that match the entire display name given.
    Filters []GetBdsCapacityReservationAssociatedConfigurationsFilter
    State string
    The lifecycle state of the BDS capacity reservation configuration.
    bds_capacity_reservation_id string
    The OCID of the BDS capacity reservation.
    compartment_id string
    The OCID of the compartment.
    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.
    bdsCapacityReservationId String
    The OCID of the BDS capacity reservation.
    compartmentId String
    The OCID of the compartment.
    displayName String
    A filter to return only resources that match the entire display name given.
    filters List<GetBdsCapacityReservationAssociatedConfigurationsFilter>
    state String
    The lifecycle state of the BDS capacity reservation configuration.
    bdsCapacityReservationId string
    The OCID of the BDS capacity reservation.
    compartmentId string
    The OCID of the compartment.
    displayName string
    A filter to return only resources that match the entire display name given.
    filters GetBdsCapacityReservationAssociatedConfigurationsFilter[]
    state string
    The lifecycle state of the BDS capacity reservation configuration.
    bds_capacity_reservation_id str
    The OCID of the BDS capacity reservation.
    compartment_id str
    The OCID of the compartment.
    display_name str
    A filter to return only resources that match the entire display name given.
    filters Sequence[GetBdsCapacityReservationAssociatedConfigurationsFilter]
    state str
    The lifecycle state of the BDS capacity reservation configuration.
    bdsCapacityReservationId String
    The OCID of the BDS capacity reservation.
    compartmentId String
    The OCID of the compartment.
    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.

    getBdsCapacityReservationAssociatedConfigurations Result

    The following output properties are available:

    BdsCapacityReservationAssociatedConfigurationCollections List<GetBdsCapacityReservationAssociatedConfigurationsBdsCapacityReservationAssociatedConfigurationCollection>
    The list of bds_capacity_reservation_associated_configuration_collection.
    BdsCapacityReservationId string
    CompartmentId string
    The OCID of the compartment that contains the BDS cluster.
    Id string
    The provider-assigned unique ID for this managed resource.
    DisplayName string
    The display name of the BDS capacity reservation configuration.
    Filters List<GetBdsCapacityReservationAssociatedConfigurationsFilter>
    State string
    The lifecycle state of the BDS capacity reservation configuration.
    BdsCapacityReservationAssociatedConfigurationCollections []GetBdsCapacityReservationAssociatedConfigurationsBdsCapacityReservationAssociatedConfigurationCollection
    The list of bds_capacity_reservation_associated_configuration_collection.
    BdsCapacityReservationId string
    CompartmentId string
    The OCID of the compartment that contains the BDS cluster.
    Id string
    The provider-assigned unique ID for this managed resource.
    DisplayName string
    The display name of the BDS capacity reservation configuration.
    Filters []GetBdsCapacityReservationAssociatedConfigurationsFilter
    State string
    The lifecycle state of the BDS capacity reservation configuration.
    bds_capacity_reservation_associated_configuration_collections list(object)
    The list of bds_capacity_reservation_associated_configuration_collection.
    bds_capacity_reservation_id string
    compartment_id string
    The OCID of the compartment that contains the BDS cluster.
    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.
    bdsCapacityReservationAssociatedConfigurationCollections List<GetBdsCapacityReservationAssociatedConfigurationsBdsCapacityReservationAssociatedConfigurationCollection>
    The list of bds_capacity_reservation_associated_configuration_collection.
    bdsCapacityReservationId String
    compartmentId String
    The OCID of the compartment that contains the BDS cluster.
    id String
    The provider-assigned unique ID for this managed resource.
    displayName String
    The display name of the BDS capacity reservation configuration.
    filters List<GetBdsCapacityReservationAssociatedConfigurationsFilter>
    state String
    The lifecycle state of the BDS capacity reservation configuration.
    bdsCapacityReservationAssociatedConfigurationCollections GetBdsCapacityReservationAssociatedConfigurationsBdsCapacityReservationAssociatedConfigurationCollection[]
    The list of bds_capacity_reservation_associated_configuration_collection.
    bdsCapacityReservationId string
    compartmentId string
    The OCID of the compartment that contains the BDS cluster.
    id string
    The provider-assigned unique ID for this managed resource.
    displayName string
    The display name of the BDS capacity reservation configuration.
    filters GetBdsCapacityReservationAssociatedConfigurationsFilter[]
    state string
    The lifecycle state of the BDS capacity reservation configuration.
    bds_capacity_reservation_associated_configuration_collections Sequence[GetBdsCapacityReservationAssociatedConfigurationsBdsCapacityReservationAssociatedConfigurationCollection]
    The list of bds_capacity_reservation_associated_configuration_collection.
    bds_capacity_reservation_id str
    compartment_id str
    The OCID of the compartment that contains the BDS cluster.
    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[GetBdsCapacityReservationAssociatedConfigurationsFilter]
    state str
    The lifecycle state of the BDS capacity reservation configuration.
    bdsCapacityReservationAssociatedConfigurationCollections List<Property Map>
    The list of bds_capacity_reservation_associated_configuration_collection.
    bdsCapacityReservationId String
    compartmentId String
    The OCID of the compartment that contains the BDS cluster.
    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

    GetBdsCapacityReservationAssociatedConfigurationsBdsCapacityReservationAssociatedConfigurationCollection

    Items List<GetBdsCapacityReservationAssociatedConfigurationsBdsCapacityReservationAssociatedConfigurationCollectionItem>
    List of BDS capacity reservation configuration summaries associated with a BDS capacity reservation.
    Items []GetBdsCapacityReservationAssociatedConfigurationsBdsCapacityReservationAssociatedConfigurationCollectionItem
    List of BDS capacity reservation configuration summaries associated with a BDS capacity reservation.
    items list(object)
    List of BDS capacity reservation configuration summaries associated with a BDS capacity reservation.
    items List<GetBdsCapacityReservationAssociatedConfigurationsBdsCapacityReservationAssociatedConfigurationCollectionItem>
    List of BDS capacity reservation configuration summaries associated with a BDS capacity reservation.
    items GetBdsCapacityReservationAssociatedConfigurationsBdsCapacityReservationAssociatedConfigurationCollectionItem[]
    List of BDS capacity reservation configuration summaries associated with a BDS capacity reservation.
    items Sequence[GetBdsCapacityReservationAssociatedConfigurationsBdsCapacityReservationAssociatedConfigurationCollectionItem]
    List of BDS capacity reservation configuration summaries associated with a BDS capacity reservation.
    items List<Property Map>
    List of BDS capacity reservation configuration summaries associated with a BDS capacity reservation.

    GetBdsCapacityReservationAssociatedConfigurationsBdsCapacityReservationAssociatedConfigurationCollectionItem

    BdsInstanceId string
    The OCID of the BDS cluster linked through the BDS capacity reservation configuration.
    CompartmentId string
    The OCID of the compartment.
    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 configuration was created, shown as an RFC 3339 formatted datetime string.
    TimeUpdated string
    The time the configuration was updated, shown as an RFC 3339 formatted datetime string.
    BdsInstanceId string
    The OCID of the BDS cluster linked through the BDS capacity reservation configuration.
    CompartmentId string
    The OCID of the compartment.
    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 configuration was created, shown as an RFC 3339 formatted datetime string.
    TimeUpdated string
    The time the configuration was updated, shown as an RFC 3339 formatted datetime string.
    bds_instance_id string
    The OCID of the BDS cluster linked through the BDS capacity reservation configuration.
    compartment_id string
    The OCID of the compartment.
    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 configuration was created, shown as an RFC 3339 formatted datetime string.
    time_updated string
    The time the configuration was updated, shown as an RFC 3339 formatted datetime string.
    bdsInstanceId String
    The OCID of the BDS cluster linked through the BDS capacity reservation configuration.
    compartmentId String
    The OCID of the compartment.
    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 configuration was created, shown as an RFC 3339 formatted datetime string.
    timeUpdated String
    The time the configuration was updated, shown as an RFC 3339 formatted datetime string.
    bdsInstanceId string
    The OCID of the BDS cluster linked through the BDS capacity reservation configuration.
    compartmentId string
    The OCID of the compartment.
    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 configuration was created, shown as an RFC 3339 formatted datetime string.
    timeUpdated string
    The time the configuration was updated, shown as an RFC 3339 formatted datetime string.
    bds_instance_id str
    The OCID of the BDS cluster linked through the BDS capacity reservation configuration.
    compartment_id str
    The OCID of the compartment.
    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 configuration was created, shown as an RFC 3339 formatted datetime string.
    time_updated str
    The time the configuration was updated, shown as an RFC 3339 formatted datetime string.
    bdsInstanceId String
    The OCID of the BDS cluster linked through the BDS capacity reservation configuration.
    compartmentId String
    The OCID of the compartment.
    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 configuration was created, shown as an RFC 3339 formatted datetime string.
    timeUpdated String
    The time the configuration was updated, shown as an RFC 3339 formatted datetime string.

    GetBdsCapacityReservationAssociatedConfigurationsFilter

    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