Oracle Cloud Infrastructure v2.33.0 published on Thursday, May 1, 2025 by Pulumi
oci.BigDataService.getBdsClusterVersions
Explore with Pulumi AI
This data source provides the list of Bds Cluster Versions in Oracle Cloud Infrastructure Big Data Service service.
Returns a list of cluster versions with associated odh and bds versions.
Example Usage
import * as pulumi from "@pulumi/pulumi";
import * as oci from "@pulumi/oci";
const testBdsClusterVersions = oci.BigDataService.getBdsClusterVersions({});
import pulumi
import pulumi_oci as oci
test_bds_cluster_versions = oci.BigDataService.get_bds_cluster_versions()
package main
import (
	"github.com/pulumi/pulumi-oci/sdk/v2/go/oci/bigdataservice"
	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
	pulumi.Run(func(ctx *pulumi.Context) error {
		_, err := bigdataservice.GetBdsClusterVersions(ctx, &bigdataservice.GetBdsClusterVersionsArgs{}, 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 testBdsClusterVersions = Oci.BigDataService.GetBdsClusterVersions.Invoke();
});
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.GetBdsClusterVersionsArgs;
import java.util.List;
import java.util.ArrayList;
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 testBdsClusterVersions = BigDataServiceFunctions.getBdsClusterVersions(GetBdsClusterVersionsArgs.builder()
            .build());
    }
}
variables:
  testBdsClusterVersions:
    fn::invoke:
      function: oci:BigDataService:getBdsClusterVersions
      arguments: {}
Using getBdsClusterVersions
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 getBdsClusterVersions(args: GetBdsClusterVersionsArgs, opts?: InvokeOptions): Promise<GetBdsClusterVersionsResult>
function getBdsClusterVersionsOutput(args: GetBdsClusterVersionsOutputArgs, opts?: InvokeOptions): Output<GetBdsClusterVersionsResult>def get_bds_cluster_versions(filters: Optional[Sequence[GetBdsClusterVersionsFilter]] = None,
                             opts: Optional[InvokeOptions] = None) -> GetBdsClusterVersionsResult
def get_bds_cluster_versions_output(filters: Optional[pulumi.Input[Sequence[pulumi.Input[GetBdsClusterVersionsFilterArgs]]]] = None,
                             opts: Optional[InvokeOptions] = None) -> Output[GetBdsClusterVersionsResult]func GetBdsClusterVersions(ctx *Context, args *GetBdsClusterVersionsArgs, opts ...InvokeOption) (*GetBdsClusterVersionsResult, error)
func GetBdsClusterVersionsOutput(ctx *Context, args *GetBdsClusterVersionsOutputArgs, opts ...InvokeOption) GetBdsClusterVersionsResultOutput> Note: This function is named GetBdsClusterVersions in the Go SDK.
public static class GetBdsClusterVersions 
{
    public static Task<GetBdsClusterVersionsResult> InvokeAsync(GetBdsClusterVersionsArgs args, InvokeOptions? opts = null)
    public static Output<GetBdsClusterVersionsResult> Invoke(GetBdsClusterVersionsInvokeArgs args, InvokeOptions? opts = null)
}public static CompletableFuture<GetBdsClusterVersionsResult> getBdsClusterVersions(GetBdsClusterVersionsArgs args, InvokeOptions options)
public static Output<GetBdsClusterVersionsResult> getBdsClusterVersions(GetBdsClusterVersionsArgs args, InvokeOptions options)
fn::invoke:
  function: oci:BigDataService/getBdsClusterVersions:getBdsClusterVersions
  arguments:
    # arguments dictionaryThe following arguments are supported:
getBdsClusterVersions Result
The following output properties are available:
- BdsCluster List<GetVersions Bds Cluster Versions Bds Cluster Version> 
- The list of bds_cluster_versions.
- Id string
- The provider-assigned unique ID for this managed resource.
- Filters
List<GetBds Cluster Versions Filter> 
- BdsCluster []GetVersions Bds Cluster Versions Bds Cluster Version 
- The list of bds_cluster_versions.
- Id string
- The provider-assigned unique ID for this managed resource.
- Filters
[]GetBds Cluster Versions Filter 
- bdsCluster List<GetVersions Bds Cluster Versions Bds Cluster Version> 
- The list of bds_cluster_versions.
- id String
- The provider-assigned unique ID for this managed resource.
- filters
List<GetBds Cluster Versions Filter> 
- bdsCluster GetVersions Bds Cluster Versions Bds Cluster Version[] 
- The list of bds_cluster_versions.
- id string
- The provider-assigned unique ID for this managed resource.
- filters
GetBds Cluster Versions Filter[] 
- bds_cluster_ Sequence[Getversions Bds Cluster Versions Bds Cluster Version] 
- The list of bds_cluster_versions.
- id str
- The provider-assigned unique ID for this managed resource.
- filters
Sequence[GetBds Cluster Versions Filter] 
- bdsCluster List<Property Map>Versions 
- The list of bds_cluster_versions.
- id String
- The provider-assigned unique ID for this managed resource.
- filters List<Property Map>
Supporting Types
GetBdsClusterVersionsBdsClusterVersion      
- BdsVersion string
- BDS version to be used for cluster creation
- OdhVersion string
- ODH version to be used for cluster creation
- BdsVersion string
- BDS version to be used for cluster creation
- OdhVersion string
- ODH version to be used for cluster creation
- bdsVersion String
- BDS version to be used for cluster creation
- odhVersion String
- ODH version to be used for cluster creation
- bdsVersion string
- BDS version to be used for cluster creation
- odhVersion string
- ODH version to be used for cluster creation
- bds_version str
- BDS version to be used for cluster creation
- odh_version str
- ODH version to be used for cluster creation
- bdsVersion String
- BDS version to be used for cluster creation
- odhVersion String
- ODH version to be used for cluster creation
GetBdsClusterVersionsFilter    
Package Details
- Repository
- oci pulumi/pulumi-oci
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the ociTerraform Provider.