Viewing docs for Oracle Cloud Infrastructure v5.0.0
published on Thursday, Sep 17, 2026 by Pulumi
published on Thursday, Sep 17, 2026 by Pulumi
Viewing docs for Oracle Cloud Infrastructure v5.0.0
published on Thursday, Sep 17, 2026 by Pulumi
published on Thursday, Sep 17, 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/v5/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 dictionarydata "oci_big_data_service_get_bds_capacity_reservation_associated_configurations" "name" {
# arguments
}The following arguments are supported:
- Bds
Capacity stringReservation Id - 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<Get
Bds Capacity Reservation Associated Configurations Filter> - State string
- The lifecycle state of the BDS capacity reservation configuration.
- Bds
Capacity stringReservation Id - 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
[]Get
Bds Capacity Reservation Associated Configurations Filter - State string
- The lifecycle state of the BDS capacity reservation configuration.
- bds_
capacity_ stringreservation_ id - 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.
- bds
Capacity StringReservation Id - 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<Get
Bds Capacity Reservation Associated Configurations Filter> - state String
- The lifecycle state of the BDS capacity reservation configuration.
- bds
Capacity stringReservation Id - 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
Get
Bds Capacity Reservation Associated Configurations Filter[] - state string
- The lifecycle state of the BDS capacity reservation configuration.
- bds_
capacity_ strreservation_ id - 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[Get
Bds Capacity Reservation Associated Configurations Filter] - state str
- The lifecycle state of the BDS capacity reservation configuration.
- bds
Capacity StringReservation Id - 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<Property Map>
- state String
- The lifecycle state of the BDS capacity reservation configuration.
getBdsCapacityReservationAssociatedConfigurations Result
The following output properties are available:
- Bds
Capacity List<GetReservation Associated Configuration Collections Bds Capacity Reservation Associated Configurations Bds Capacity Reservation Associated Configuration Collection> - The list of bds_capacity_reservation_associated_configuration_collection.
- Bds
Capacity stringReservation Id - 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<Get
Bds Capacity Reservation Associated Configurations Filter> - State string
- The lifecycle state of the BDS capacity reservation configuration.
- Bds
Capacity []GetReservation Associated Configuration Collections Bds Capacity Reservation Associated Configurations Bds Capacity Reservation Associated Configuration Collection - The list of bds_capacity_reservation_associated_configuration_collection.
- Bds
Capacity stringReservation Id - 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
[]Get
Bds Capacity Reservation Associated Configurations Filter - State string
- The lifecycle state of the BDS capacity reservation configuration.
- bds_
capacity_ list(object)reservation_ associated_ configuration_ collections - The list of bds_capacity_reservation_associated_configuration_collection.
- bds_
capacity_ stringreservation_ id - 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.
- bds
Capacity List<GetReservation Associated Configuration Collections Bds Capacity Reservation Associated Configurations Bds Capacity Reservation Associated Configuration Collection> - The list of bds_capacity_reservation_associated_configuration_collection.
- bds
Capacity StringReservation Id - 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<Get
Bds Capacity Reservation Associated Configurations Filter> - state String
- The lifecycle state of the BDS capacity reservation configuration.
- bds
Capacity GetReservation Associated Configuration Collections Bds Capacity Reservation Associated Configurations Bds Capacity Reservation Associated Configuration Collection[] - The list of bds_capacity_reservation_associated_configuration_collection.
- bds
Capacity stringReservation Id - 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
Get
Bds Capacity Reservation Associated Configurations Filter[] - state string
- The lifecycle state of the BDS capacity reservation configuration.
- bds_
capacity_ Sequence[Getreservation_ associated_ configuration_ collections Bds Capacity Reservation Associated Configurations Bds Capacity Reservation Associated Configuration Collection] - The list of bds_capacity_reservation_associated_configuration_collection.
- bds_
capacity_ strreservation_ id - 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[Get
Bds Capacity Reservation Associated Configurations Filter] - state str
- The lifecycle state of the BDS capacity reservation configuration.
- bds
Capacity List<Property Map>Reservation Associated Configuration Collections - The list of bds_capacity_reservation_associated_configuration_collection.
- bds
Capacity StringReservation Id - 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<Property Map>
- state String
- The lifecycle state of the BDS capacity reservation configuration.
Supporting Types
GetBdsCapacityReservationAssociatedConfigurationsBdsCapacityReservationAssociatedConfigurationCollection
- Items
List<Get
Bds Capacity Reservation Associated Configurations Bds Capacity Reservation Associated Configuration Collection Item> - List of BDS capacity reservation configuration summaries associated with a BDS capacity reservation.
- Items
[]Get
Bds Capacity Reservation Associated Configurations Bds Capacity Reservation Associated Configuration Collection Item - 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<Get
Bds Capacity Reservation Associated Configurations Bds Capacity Reservation Associated Configuration Collection Item> - List of BDS capacity reservation configuration summaries associated with a BDS capacity reservation.
- items
Get
Bds Capacity Reservation Associated Configurations Bds Capacity Reservation Associated Configuration Collection Item[] - List of BDS capacity reservation configuration summaries associated with a BDS capacity reservation.
- items
Sequence[Get
Bds Capacity Reservation Associated Configurations Bds Capacity Reservation Associated Configuration Collection Item] - 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
- Bds
Instance stringId - 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.
- Bds
Instance stringId - 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.
- bds_
instance_ stringid - 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.
- bds
Instance StringId - 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.
- bds
Instance stringId - 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.
- bds_
instance_ strid - 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.
- bds
Instance StringId - 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.
GetBdsCapacityReservationAssociatedConfigurationsFilter
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
ociTerraform Provider.
Viewing docs for Oracle Cloud Infrastructure v5.0.0
published on Thursday, Sep 17, 2026 by Pulumi
published on Thursday, Sep 17, 2026 by Pulumi