1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DatabaseManagement
  5. getCloudClusters
Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi

oci.DatabaseManagement.getCloudClusters

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi

    This data source provides the list of Cloud Clusters in Oracle Cloud Infrastructure Database Management service.

    Lists the clusters in the specified cloud DB system.

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testCloudClusters = oci.DatabaseManagement.getCloudClusters({
        cloudDbSystemId: testCloudDbSystem.id,
        compartmentId: compartmentId,
        displayName: cloudClusterDisplayName,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_cloud_clusters = oci.DatabaseManagement.get_cloud_clusters(cloud_db_system_id=test_cloud_db_system["id"],
        compartment_id=compartment_id,
        display_name=cloud_cluster_display_name)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/v3/go/oci/databasemanagement"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := databasemanagement.GetCloudClusters(ctx, &databasemanagement.GetCloudClustersArgs{
    			CloudDbSystemId: pulumi.StringRef(testCloudDbSystem.Id),
    			CompartmentId:   pulumi.StringRef(compartmentId),
    			DisplayName:     pulumi.StringRef(cloudClusterDisplayName),
    		}, 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 testCloudClusters = Oci.DatabaseManagement.GetCloudClusters.Invoke(new()
        {
            CloudDbSystemId = testCloudDbSystem.Id,
            CompartmentId = compartmentId,
            DisplayName = cloudClusterDisplayName,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DatabaseManagement.DatabaseManagementFunctions;
    import com.pulumi.oci.DatabaseManagement.inputs.GetCloudClustersArgs;
    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 testCloudClusters = DatabaseManagementFunctions.getCloudClusters(GetCloudClustersArgs.builder()
                .cloudDbSystemId(testCloudDbSystem.id())
                .compartmentId(compartmentId)
                .displayName(cloudClusterDisplayName)
                .build());
    
        }
    }
    
    variables:
      testCloudClusters:
        fn::invoke:
          function: oci:DatabaseManagement:getCloudClusters
          arguments:
            cloudDbSystemId: ${testCloudDbSystem.id}
            compartmentId: ${compartmentId}
            displayName: ${cloudClusterDisplayName}
    

    Using getCloudClusters

    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 getCloudClusters(args: GetCloudClustersArgs, opts?: InvokeOptions): Promise<GetCloudClustersResult>
    function getCloudClustersOutput(args: GetCloudClustersOutputArgs, opts?: InvokeOptions): Output<GetCloudClustersResult>
    def get_cloud_clusters(cloud_db_system_id: Optional[str] = None,
                           compartment_id: Optional[str] = None,
                           display_name: Optional[str] = None,
                           filters: Optional[Sequence[GetCloudClustersFilter]] = None,
                           opts: Optional[InvokeOptions] = None) -> GetCloudClustersResult
    def get_cloud_clusters_output(cloud_db_system_id: 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[GetCloudClustersFilterArgs]]]] = None,
                           opts: Optional[InvokeOptions] = None) -> Output[GetCloudClustersResult]
    func GetCloudClusters(ctx *Context, args *GetCloudClustersArgs, opts ...InvokeOption) (*GetCloudClustersResult, error)
    func GetCloudClustersOutput(ctx *Context, args *GetCloudClustersOutputArgs, opts ...InvokeOption) GetCloudClustersResultOutput

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

    public static class GetCloudClusters 
    {
        public static Task<GetCloudClustersResult> InvokeAsync(GetCloudClustersArgs args, InvokeOptions? opts = null)
        public static Output<GetCloudClustersResult> Invoke(GetCloudClustersInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetCloudClustersResult> getCloudClusters(GetCloudClustersArgs args, InvokeOptions options)
    public static Output<GetCloudClustersResult> getCloudClusters(GetCloudClustersArgs args, InvokeOptions options)
    
    fn::invoke:
      function: oci:DatabaseManagement/getCloudClusters:getCloudClusters
      arguments:
        # arguments dictionary

    The following arguments are supported:

    CloudDbSystemId string
    The OCID of the cloud DB system.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A filter to only return the resources that match the entire display name.
    Filters List<GetCloudClustersFilter>
    CloudDbSystemId string
    The OCID of the cloud DB system.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    A filter to only return the resources that match the entire display name.
    Filters []GetCloudClustersFilter
    cloudDbSystemId String
    The OCID of the cloud DB system.
    compartmentId String
    The OCID of the compartment.
    displayName String
    A filter to only return the resources that match the entire display name.
    filters List<GetCloudClustersFilter>
    cloudDbSystemId string
    The OCID of the cloud DB system.
    compartmentId string
    The OCID of the compartment.
    displayName string
    A filter to only return the resources that match the entire display name.
    filters GetCloudClustersFilter[]
    cloud_db_system_id str
    The OCID of the cloud DB system.
    compartment_id str
    The OCID of the compartment.
    display_name str
    A filter to only return the resources that match the entire display name.
    filters Sequence[GetCloudClustersFilter]
    cloudDbSystemId String
    The OCID of the cloud DB system.
    compartmentId String
    The OCID of the compartment.
    displayName String
    A filter to only return the resources that match the entire display name.
    filters List<Property Map>

    getCloudClusters Result

    The following output properties are available:

    CloudClusterCollections List<GetCloudClustersCloudClusterCollection>
    The list of cloud_cluster_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    CloudDbSystemId string
    The OCID of the cloud DB system that the cluster is a part of.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    The user-friendly name for the cloud cluster. The name does not have to be unique.
    Filters List<GetCloudClustersFilter>
    CloudClusterCollections []GetCloudClustersCloudClusterCollection
    The list of cloud_cluster_collection.
    Id string
    The provider-assigned unique ID for this managed resource.
    CloudDbSystemId string
    The OCID of the cloud DB system that the cluster is a part of.
    CompartmentId string
    The OCID of the compartment.
    DisplayName string
    The user-friendly name for the cloud cluster. The name does not have to be unique.
    Filters []GetCloudClustersFilter
    cloudClusterCollections List<GetCloudClustersCloudClusterCollection>
    The list of cloud_cluster_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    cloudDbSystemId String
    The OCID of the cloud DB system that the cluster is a part of.
    compartmentId String
    The OCID of the compartment.
    displayName String
    The user-friendly name for the cloud cluster. The name does not have to be unique.
    filters List<GetCloudClustersFilter>
    cloudClusterCollections GetCloudClustersCloudClusterCollection[]
    The list of cloud_cluster_collection.
    id string
    The provider-assigned unique ID for this managed resource.
    cloudDbSystemId string
    The OCID of the cloud DB system that the cluster is a part of.
    compartmentId string
    The OCID of the compartment.
    displayName string
    The user-friendly name for the cloud cluster. The name does not have to be unique.
    filters GetCloudClustersFilter[]
    cloud_cluster_collections Sequence[GetCloudClustersCloudClusterCollection]
    The list of cloud_cluster_collection.
    id str
    The provider-assigned unique ID for this managed resource.
    cloud_db_system_id str
    The OCID of the cloud DB system that the cluster is a part of.
    compartment_id str
    The OCID of the compartment.
    display_name str
    The user-friendly name for the cloud cluster. The name does not have to be unique.
    filters Sequence[GetCloudClustersFilter]
    cloudClusterCollections List<Property Map>
    The list of cloud_cluster_collection.
    id String
    The provider-assigned unique ID for this managed resource.
    cloudDbSystemId String
    The OCID of the cloud DB system that the cluster is a part of.
    compartmentId String
    The OCID of the compartment.
    displayName String
    The user-friendly name for the cloud cluster. The name does not have to be unique.
    filters List<Property Map>

    Supporting Types

    GetCloudClustersCloudClusterCollection

    GetCloudClustersCloudClusterCollectionItem

    AdditionalDetails Dictionary<string, string>
    The additional details of the cloud cluster defined in {"key": "value"} format. Example: {"bar-key": "value"}
    CloudClusterId string
    CloudConnectorId string
    The OCID of the cloud connector.
    CloudDbSystemId string
    The OCID of the cloud DB system.
    CompartmentId string
    The OCID of the compartment.
    ComponentName string
    The name of the cloud cluster.
    DbaasId string
    The OCID in DBaas service.
    DefinedTags Dictionary<string, string>
    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 only return the resources that match the entire display name.
    FreeformTags Dictionary<string, string>
    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"}
    GridHome string
    The directory in which Oracle Grid Infrastructure is installed.
    Id string
    The OCID of the cloud cluster.
    IsFlexCluster bool
    Indicates whether the cluster is Oracle Flex Cluster or not.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    NetworkConfigurations List<GetCloudClustersCloudClusterCollectionItemNetworkConfiguration>
    The list of network address configurations of the cloud cluster.
    OcrFileLocation string
    The location of the Oracle Cluster Registry (OCR).
    ScanConfigurations List<GetCloudClustersCloudClusterCollectionItemScanConfiguration>
    The list of Single Client Access Name (SCAN) configurations of the cloud cluster.
    State string
    The current lifecycle state of the cloud cluster.
    SystemTags Dictionary<string, string>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the cloud cluster was created.
    TimeUpdated string
    The date and time the cloud cluster was last updated.
    Version string
    The cluster version.
    VipConfigurations List<GetCloudClustersCloudClusterCollectionItemVipConfiguration>
    The list of Virtual IP (VIP) configurations of the cloud cluster.
    AdditionalDetails map[string]string
    The additional details of the cloud cluster defined in {"key": "value"} format. Example: {"bar-key": "value"}
    CloudClusterId string
    CloudConnectorId string
    The OCID of the cloud connector.
    CloudDbSystemId string
    The OCID of the cloud DB system.
    CompartmentId string
    The OCID of the compartment.
    ComponentName string
    The name of the cloud cluster.
    DbaasId string
    The OCID in DBaas service.
    DefinedTags map[string]string
    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 only return the resources that match the entire display name.
    FreeformTags map[string]string
    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"}
    GridHome string
    The directory in which Oracle Grid Infrastructure is installed.
    Id string
    The OCID of the cloud cluster.
    IsFlexCluster bool
    Indicates whether the cluster is Oracle Flex Cluster or not.
    LifecycleDetails string
    Additional information about the current lifecycle state.
    NetworkConfigurations []GetCloudClustersCloudClusterCollectionItemNetworkConfiguration
    The list of network address configurations of the cloud cluster.
    OcrFileLocation string
    The location of the Oracle Cluster Registry (OCR).
    ScanConfigurations []GetCloudClustersCloudClusterCollectionItemScanConfiguration
    The list of Single Client Access Name (SCAN) configurations of the cloud cluster.
    State string
    The current lifecycle state of the cloud cluster.
    SystemTags map[string]string
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    TimeCreated string
    The date and time the cloud cluster was created.
    TimeUpdated string
    The date and time the cloud cluster was last updated.
    Version string
    The cluster version.
    VipConfigurations []GetCloudClustersCloudClusterCollectionItemVipConfiguration
    The list of Virtual IP (VIP) configurations of the cloud cluster.
    additionalDetails Map<String,String>
    The additional details of the cloud cluster defined in {"key": "value"} format. Example: {"bar-key": "value"}
    cloudClusterId String
    cloudConnectorId String
    The OCID of the cloud connector.
    cloudDbSystemId String
    The OCID of the cloud DB system.
    compartmentId String
    The OCID of the compartment.
    componentName String
    The name of the cloud cluster.
    dbaasId String
    The OCID in DBaas service.
    definedTags Map<String,String>
    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 only return the resources that match the entire display name.
    freeformTags Map<String,String>
    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"}
    gridHome String
    The directory in which Oracle Grid Infrastructure is installed.
    id String
    The OCID of the cloud cluster.
    isFlexCluster Boolean
    Indicates whether the cluster is Oracle Flex Cluster or not.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    networkConfigurations List<GetCloudClustersCloudClusterCollectionItemNetworkConfiguration>
    The list of network address configurations of the cloud cluster.
    ocrFileLocation String
    The location of the Oracle Cluster Registry (OCR).
    scanConfigurations List<GetCloudClustersCloudClusterCollectionItemScanConfiguration>
    The list of Single Client Access Name (SCAN) configurations of the cloud cluster.
    state String
    The current lifecycle state of the cloud cluster.
    systemTags Map<String,String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the cloud cluster was created.
    timeUpdated String
    The date and time the cloud cluster was last updated.
    version String
    The cluster version.
    vipConfigurations List<GetCloudClustersCloudClusterCollectionItemVipConfiguration>
    The list of Virtual IP (VIP) configurations of the cloud cluster.
    additionalDetails {[key: string]: string}
    The additional details of the cloud cluster defined in {"key": "value"} format. Example: {"bar-key": "value"}
    cloudClusterId string
    cloudConnectorId string
    The OCID of the cloud connector.
    cloudDbSystemId string
    The OCID of the cloud DB system.
    compartmentId string
    The OCID of the compartment.
    componentName string
    The name of the cloud cluster.
    dbaasId string
    The OCID in DBaas service.
    definedTags {[key: string]: string}
    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 only return the resources that match the entire display name.
    freeformTags {[key: string]: string}
    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"}
    gridHome string
    The directory in which Oracle Grid Infrastructure is installed.
    id string
    The OCID of the cloud cluster.
    isFlexCluster boolean
    Indicates whether the cluster is Oracle Flex Cluster or not.
    lifecycleDetails string
    Additional information about the current lifecycle state.
    networkConfigurations GetCloudClustersCloudClusterCollectionItemNetworkConfiguration[]
    The list of network address configurations of the cloud cluster.
    ocrFileLocation string
    The location of the Oracle Cluster Registry (OCR).
    scanConfigurations GetCloudClustersCloudClusterCollectionItemScanConfiguration[]
    The list of Single Client Access Name (SCAN) configurations of the cloud cluster.
    state string
    The current lifecycle state of the cloud cluster.
    systemTags {[key: string]: string}
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated string
    The date and time the cloud cluster was created.
    timeUpdated string
    The date and time the cloud cluster was last updated.
    version string
    The cluster version.
    vipConfigurations GetCloudClustersCloudClusterCollectionItemVipConfiguration[]
    The list of Virtual IP (VIP) configurations of the cloud cluster.
    additional_details Mapping[str, str]
    The additional details of the cloud cluster defined in {"key": "value"} format. Example: {"bar-key": "value"}
    cloud_cluster_id str
    cloud_connector_id str
    The OCID of the cloud connector.
    cloud_db_system_id str
    The OCID of the cloud DB system.
    compartment_id str
    The OCID of the compartment.
    component_name str
    The name of the cloud cluster.
    dbaas_id str
    The OCID in DBaas service.
    defined_tags Mapping[str, str]
    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 only return the resources that match the entire display name.
    freeform_tags Mapping[str, str]
    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"}
    grid_home str
    The directory in which Oracle Grid Infrastructure is installed.
    id str
    The OCID of the cloud cluster.
    is_flex_cluster bool
    Indicates whether the cluster is Oracle Flex Cluster or not.
    lifecycle_details str
    Additional information about the current lifecycle state.
    network_configurations Sequence[GetCloudClustersCloudClusterCollectionItemNetworkConfiguration]
    The list of network address configurations of the cloud cluster.
    ocr_file_location str
    The location of the Oracle Cluster Registry (OCR).
    scan_configurations Sequence[GetCloudClustersCloudClusterCollectionItemScanConfiguration]
    The list of Single Client Access Name (SCAN) configurations of the cloud cluster.
    state str
    The current lifecycle state of the cloud cluster.
    system_tags Mapping[str, str]
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    time_created str
    The date and time the cloud cluster was created.
    time_updated str
    The date and time the cloud cluster was last updated.
    version str
    The cluster version.
    vip_configurations Sequence[GetCloudClustersCloudClusterCollectionItemVipConfiguration]
    The list of Virtual IP (VIP) configurations of the cloud cluster.
    additionalDetails Map<String>
    The additional details of the cloud cluster defined in {"key": "value"} format. Example: {"bar-key": "value"}
    cloudClusterId String
    cloudConnectorId String
    The OCID of the cloud connector.
    cloudDbSystemId String
    The OCID of the cloud DB system.
    compartmentId String
    The OCID of the compartment.
    componentName String
    The name of the cloud cluster.
    dbaasId String
    The OCID in DBaas service.
    definedTags Map<String>
    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 only return the resources that match the entire display name.
    freeformTags Map<String>
    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"}
    gridHome String
    The directory in which Oracle Grid Infrastructure is installed.
    id String
    The OCID of the cloud cluster.
    isFlexCluster Boolean
    Indicates whether the cluster is Oracle Flex Cluster or not.
    lifecycleDetails String
    Additional information about the current lifecycle state.
    networkConfigurations List<Property Map>
    The list of network address configurations of the cloud cluster.
    ocrFileLocation String
    The location of the Oracle Cluster Registry (OCR).
    scanConfigurations List<Property Map>
    The list of Single Client Access Name (SCAN) configurations of the cloud cluster.
    state String
    The current lifecycle state of the cloud cluster.
    systemTags Map<String>
    System tags for this resource. Each key is predefined and scoped to a namespace. For more information, see Resource Tags. System tags can be viewed by users, but can only be created by the system. Example: {"orcl-cloud.free-tier-retained": "true"}
    timeCreated String
    The date and time the cloud cluster was created.
    timeUpdated String
    The date and time the cloud cluster was last updated.
    version String
    The cluster version.
    vipConfigurations List<Property Map>
    The list of Virtual IP (VIP) configurations of the cloud cluster.

    GetCloudClustersCloudClusterCollectionItemNetworkConfiguration

    NetworkNumber int
    The network number from which VIPs are obtained.
    NetworkType string
    The network type.
    Subnet string
    The subnet for the network.
    NetworkNumber int
    The network number from which VIPs are obtained.
    NetworkType string
    The network type.
    Subnet string
    The subnet for the network.
    networkNumber Integer
    The network number from which VIPs are obtained.
    networkType String
    The network type.
    subnet String
    The subnet for the network.
    networkNumber number
    The network number from which VIPs are obtained.
    networkType string
    The network type.
    subnet string
    The subnet for the network.
    network_number int
    The network number from which VIPs are obtained.
    network_type str
    The network type.
    subnet str
    The subnet for the network.
    networkNumber Number
    The network number from which VIPs are obtained.
    networkType String
    The network type.
    subnet String
    The subnet for the network.

    GetCloudClustersCloudClusterCollectionItemScanConfiguration

    NetworkNumber int
    The network number from which VIPs are obtained.
    ScanName string
    The name of the SCAN listener.
    ScanPort int
    The port number of the SCAN listener.
    ScanProtocol string
    The protocol of the SCAN listener.
    NetworkNumber int
    The network number from which VIPs are obtained.
    ScanName string
    The name of the SCAN listener.
    ScanPort int
    The port number of the SCAN listener.
    ScanProtocol string
    The protocol of the SCAN listener.
    networkNumber Integer
    The network number from which VIPs are obtained.
    scanName String
    The name of the SCAN listener.
    scanPort Integer
    The port number of the SCAN listener.
    scanProtocol String
    The protocol of the SCAN listener.
    networkNumber number
    The network number from which VIPs are obtained.
    scanName string
    The name of the SCAN listener.
    scanPort number
    The port number of the SCAN listener.
    scanProtocol string
    The protocol of the SCAN listener.
    network_number int
    The network number from which VIPs are obtained.
    scan_name str
    The name of the SCAN listener.
    scan_port int
    The port number of the SCAN listener.
    scan_protocol str
    The protocol of the SCAN listener.
    networkNumber Number
    The network number from which VIPs are obtained.
    scanName String
    The name of the SCAN listener.
    scanPort Number
    The port number of the SCAN listener.
    scanProtocol String
    The protocol of the SCAN listener.

    GetCloudClustersCloudClusterCollectionItemVipConfiguration

    Address string
    The VIP name or IP address.
    NetworkNumber int
    The network number from which VIPs are obtained.
    NodeName string
    The name of the node with the VIP.
    Address string
    The VIP name or IP address.
    NetworkNumber int
    The network number from which VIPs are obtained.
    NodeName string
    The name of the node with the VIP.
    address String
    The VIP name or IP address.
    networkNumber Integer
    The network number from which VIPs are obtained.
    nodeName String
    The name of the node with the VIP.
    address string
    The VIP name or IP address.
    networkNumber number
    The network number from which VIPs are obtained.
    nodeName string
    The name of the node with the VIP.
    address str
    The VIP name or IP address.
    network_number int
    The network number from which VIPs are obtained.
    node_name str
    The name of the node with the VIP.
    address String
    The VIP name or IP address.
    networkNumber Number
    The network number from which VIPs are obtained.
    nodeName String
    The name of the node with the VIP.

    GetCloudClustersFilter

    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 v3.7.0 published on Saturday, Sep 13, 2025 by Pulumi