1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. Core
  5. getComputeClusters
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.Core.getComputeClusters

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    This data source provides the list of Compute Clusters in Oracle Cloud Infrastructure Core service.

    Lists the compute clusters in the specified compartment. A compute cluster is a remote direct memory access (RDMA) network group.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testComputeClusters = oci.Core.getComputeClusters({
        compartmentId: _var.compartment_id,
        availabilityDomain: _var.compute_cluster_availability_domain,
        displayName: _var.compute_cluster_display_name,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_compute_clusters = oci.Core.get_compute_clusters(compartment_id=var["compartment_id"],
        availability_domain=var["compute_cluster_availability_domain"],
        display_name=var["compute_cluster_display_name"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/Core"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := Core.GetComputeClusters(ctx, &core.GetComputeClustersArgs{
    			CompartmentId:      _var.Compartment_id,
    			AvailabilityDomain: pulumi.StringRef(_var.Compute_cluster_availability_domain),
    			DisplayName:        pulumi.StringRef(_var.Compute_cluster_display_name),
    		}, 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 testComputeClusters = Oci.Core.GetComputeClusters.Invoke(new()
        {
            CompartmentId = @var.Compartment_id,
            AvailabilityDomain = @var.Compute_cluster_availability_domain,
            DisplayName = @var.Compute_cluster_display_name,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.Core.CoreFunctions;
    import com.pulumi.oci.Core.inputs.GetComputeClustersArgs;
    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 testComputeClusters = CoreFunctions.getComputeClusters(GetComputeClustersArgs.builder()
                .compartmentId(var_.compartment_id())
                .availabilityDomain(var_.compute_cluster_availability_domain())
                .displayName(var_.compute_cluster_display_name())
                .build());
    
        }
    }
    
    variables:
      testComputeClusters:
        fn::invoke:
          Function: oci:Core:getComputeClusters
          Arguments:
            compartmentId: ${var.compartment_id}
            availabilityDomain: ${var.compute_cluster_availability_domain}
            displayName: ${var.compute_cluster_display_name}
    

    Using getComputeClusters

    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 getComputeClusters(args: GetComputeClustersArgs, opts?: InvokeOptions): Promise<GetComputeClustersResult>
    function getComputeClustersOutput(args: GetComputeClustersOutputArgs, opts?: InvokeOptions): Output<GetComputeClustersResult>
    def get_compute_clusters(availability_domain: Optional[str] = None,
                             compartment_id: Optional[str] = None,
                             display_name: Optional[str] = None,
                             filters: Optional[Sequence[_core.GetComputeClustersFilter]] = None,
                             opts: Optional[InvokeOptions] = None) -> GetComputeClustersResult
    def get_compute_clusters_output(availability_domain: Optional[pulumi.Input[str]] = None,
                             compartment_id: Optional[pulumi.Input[str]] = None,
                             display_name: Optional[pulumi.Input[str]] = None,
                             filters: Optional[pulumi.Input[Sequence[pulumi.Input[_core.GetComputeClustersFilterArgs]]]] = None,
                             opts: Optional[InvokeOptions] = None) -> Output[GetComputeClustersResult]
    func GetComputeClusters(ctx *Context, args *GetComputeClustersArgs, opts ...InvokeOption) (*GetComputeClustersResult, error)
    func GetComputeClustersOutput(ctx *Context, args *GetComputeClustersOutputArgs, opts ...InvokeOption) GetComputeClustersResultOutput

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

    public static class GetComputeClusters 
    {
        public static Task<GetComputeClustersResult> InvokeAsync(GetComputeClustersArgs args, InvokeOptions? opts = null)
        public static Output<GetComputeClustersResult> Invoke(GetComputeClustersInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetComputeClustersResult> getComputeClusters(GetComputeClustersArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:Core/getComputeClusters:getComputeClusters
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CompartmentId string
    The OCID of the compartment.
    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters List<GetComputeClustersFilter>
    CompartmentId string
    The OCID of the compartment.
    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    Filters []GetComputeClustersFilter
    compartmentId String
    The OCID of the compartment.
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<GetComputeClustersFilter>
    compartmentId string
    The OCID of the compartment.
    availabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    displayName string
    A filter to return only resources that match the given display name exactly.
    filters GetComputeClustersFilter[]
    compartment_id str
    The OCID of the compartment.
    availability_domain str
    The name of the availability domain. Example: Uocm:PHX-AD-1
    display_name str
    A filter to return only resources that match the given display name exactly.
    filters Sequence[core.GetComputeClustersFilter]
    compartmentId String
    The OCID of the compartment.
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    displayName String
    A filter to return only resources that match the given display name exactly.
    filters List<Property Map>

    getComputeClusters Result

    The following output properties are available:

    CompartmentId string
    The OCID of the compartment that contains the compute cluster.
    ComputeClusterCollections List<GetComputeClustersComputeClusterCollection>
    The list of compute_cluster_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    AvailabilityDomain string
    The availability domain the compute cluster is running in. Example: Uocm:PHX-AD-1
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters List<GetComputeClustersFilter>
    CompartmentId string
    The OCID of the compartment that contains the compute cluster.
    ComputeClusterCollections []GetComputeClustersComputeClusterCollection
    The list of compute_cluster_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    AvailabilityDomain string
    The availability domain the compute cluster is running in. Example: Uocm:PHX-AD-1
    DisplayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    Filters []GetComputeClustersFilter
    compartmentId String
    The OCID of the compartment that contains the compute cluster.
    computeClusterCollections List<GetComputeClustersComputeClusterCollection>
    The list of compute_cluster_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    availabilityDomain String
    The availability domain the compute cluster is running in. Example: Uocm:PHX-AD-1
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<GetComputeClustersFilter>
    compartmentId string
    The OCID of the compartment that contains the compute cluster.
    computeClusterCollections GetComputeClustersComputeClusterCollection[]
    The list of compute_cluster_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    availabilityDomain string
    The availability domain the compute cluster is running in. Example: Uocm:PHX-AD-1
    displayName string
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters GetComputeClustersFilter[]
    compartment_id str
    The OCID of the compartment that contains the compute cluster.
    compute_cluster_collections Sequence[core.GetComputeClustersComputeClusterCollection]
    The list of compute_cluster_collection.
    id str
    The provider-assigned unique ID for this managed resource.
    availability_domain str
    The availability domain the compute cluster is running in. Example: Uocm:PHX-AD-1
    display_name str
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters Sequence[core.GetComputeClustersFilter]
    compartmentId String
    The OCID of the compartment that contains the compute cluster.
    computeClusterCollections List<Property Map>
    The list of compute_cluster_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    availabilityDomain String
    The availability domain the compute cluster is running in. Example: Uocm:PHX-AD-1
    displayName String
    A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
    filters List<Property Map>

    Supporting Types

    GetComputeClustersComputeClusterCollection

    GetComputeClustersComputeClusterCollectionItem

    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    CompartmentId string
    The OCID of the compartment.
    DefinedTags Dictionary<string, object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    FreeformTags Dictionary<string, object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the compute cluster.
    State string
    The current state of the compute cluster.
    TimeCreated string
    The date and time the compute cluster was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    AvailabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    CompartmentId string
    The OCID of the compartment.
    DefinedTags map[string]interface{}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    DisplayName string
    A filter to return only resources that match the given display name exactly.
    FreeformTags map[string]interface{}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    Id string
    The OCID of the compute cluster.
    State string
    The current state of the compute cluster.
    TimeCreated string
    The date and time the compute cluster was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    compartmentId String
    The OCID of the compartment.
    definedTags Map<String,Object>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    freeformTags Map<String,Object>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the compute cluster.
    state String
    The current state of the compute cluster.
    timeCreated String
    The date and time the compute cluster was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    availabilityDomain string
    The name of the availability domain. Example: Uocm:PHX-AD-1
    compartmentId string
    The OCID of the compartment.
    definedTags {[key: string]: any}
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName string
    A filter to return only resources that match the given display name exactly.
    freeformTags {[key: string]: any}
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id string
    The OCID of the compute cluster.
    state string
    The current state of the compute cluster.
    timeCreated string
    The date and time the compute cluster was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    availability_domain str
    The name of the availability domain. Example: Uocm:PHX-AD-1
    compartment_id str
    The OCID of the compartment.
    defined_tags Mapping[str, Any]
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    display_name str
    A filter to return only resources that match the given display name exactly.
    freeform_tags Mapping[str, Any]
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id str
    The OCID of the compute cluster.
    state str
    The current state of the compute cluster.
    time_created str
    The date and time the compute cluster was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z
    availabilityDomain String
    The name of the availability domain. Example: Uocm:PHX-AD-1
    compartmentId String
    The OCID of the compartment.
    definedTags Map<Any>
    Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. Example: {"Operations.CostCenter": "42"}
    displayName String
    A filter to return only resources that match the given display name exactly.
    freeformTags Map<Any>
    Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see Resource Tags. Example: {"Department": "Finance"}
    id String
    The OCID of the compute cluster.
    state String
    The current state of the compute cluster.
    timeCreated String
    The date and time the compute cluster was created, in the format defined by RFC3339. Example: 2016-08-25T21:10:29.600Z

    GetComputeClustersFilter

    Name string
    Values List<string>
    Regex bool
    Name string
    Values []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
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi